403Webshell
Server IP : 146.59.209.152  /  Your IP : 216.73.216.46
Web Server : Apache
System : Linux webm005.cluster131.gra.hosting.ovh.net 5.15.167-ovh-vps-grsec-zfs-classid #1 SMP Tue Sep 17 08:14:20 UTC 2024 x86_64
User : infrafs ( 43850)
PHP Version : 8.2.29
Disable Function : _dyuweyrj4,_dyuweyrj4r,dl
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /home/i/n/f/infrafs/INFRABIKEIT/wp-content/plugins/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /home/i/n/f/infrafs/INFRABIKEIT/wp-content/plugins/yith-woocommerce-wishlist.zip
PK`x1\�]�۰�
uninstall.phpnu�[���<?php
/**
 * Uninstall plugin
 *
 * @author YITH
 * @package YITH\Wishlist
 * @version 2.0.16
 */

// If uninstall not called from WordPress exit.
if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) {
	exit;
}

/**
 * Uninstall completely wishlist from the site
 *
 * @return void
 * @since 3.0.0
 */
function yith_wcwl_uninstall() {
	global $wpdb;

	if ( defined( 'YITH_WCWL_REMOVE_ALL_DATA' ) && true === YITH_WCWL_REMOVE_ALL_DATA && ! defined( 'YITH_WCWL_PREMIUM' ) ) {
		// define local private attribute.
		$wpdb->yith_wcwl_items     = $wpdb->prefix . 'yith_wcwl';
		$wpdb->yith_wcwl_wishlists = $wpdb->prefix . 'yith_wcwl_lists';

		// Delete option from options table.
		delete_option( 'yith_wcwl_version' );
		delete_option( 'yith_wcwl_db_version' );
		$wpdb->query( $wpdb->prepare( "DELETE FROM {$wpdb->options} WHERE option_name LIKE %s", 'yith_wcwl_%' ) );

		// delete pages created for this plugin.
		wp_delete_post( get_option( 'yith-wcwl-pageid' ), true );

		// remove any additional options and custom table.
		// phpcs:disable WordPress.DB.DirectDatabaseQuery, WordPress.DB.PreparedSQL.NotPrepared
		$sql = "DROP TABLE IF EXISTS `{$wpdb->yith_wcwl_items}`";
		$wpdb->query( $sql );
		$sql = "DROP TABLE IF EXISTS `{$wpdb->yith_wcwl_wishlists}`";
		$wpdb->query( $sql );
		// phpcs:enable WordPress.DB.DirectDatabaseQuery, WordPress.DB.PreparedSQL.NotPrepared
	}
}

if ( ! is_multisite() ) {
	yith_wcwl_uninstall();
} else {
	global $wpdb;
	$blog_ids = $wpdb->get_col( "SELECT blog_id FROM {$wpdb->blogs}" );
	$original_blog_id = get_current_blog_id();

	foreach ( $blog_ids as $blog_to_process ) {
		switch_to_blog( $blog_to_process );
		yith_wcwl_uninstall();
	}

	switch_to_blog( $original_blog_id );
}PK`x1\�W)templates/wishlist-view-footer-mobile.phpnu�[���<?php
/**
 * Wishlist footer
 *
 * @author YITH
 * @package YITH\Wishlist\Templates\Wishlist\View
 * @version 3.0.0
 */

/**
 * Template variables:
 *
 * @var $wishlist                      \YITH_WCWL_Wishlist
 * @var $wishlist_token                string Current wishlist token
 * @var $show_cb                       bool Whether to show checkbox column
 * @var $show_update                   bool Whether to show update button or not
 * @var $is_user_owner                 bool Whether current user is wishlist owner
 * @var $is_private                    bool Whether current wishlist is private
 * @var $share_enabled                 bool Whether share buttons should appear
 * @var $share_atts                    array Array of options; shows which share links should be shown
 * @var $show_ask_estimate_button      bool Whether to show Ask an Estimate form
 * @var $ask_estimate_url              string Ask an estimate destination url
 * @var $ask_an_estimate_icon          string Ask an estimate button icon
 * @var $ask_an_estimate_text          string Ask an estimate button text
 * @var $ask_an_estimate_classes       string Classes to use for Ask for an estimate button
 * @var $additional_info               bool Whether to show Additional info textarea in Ask an estimate form
 * @var $enable_add_all_to_cart        bool Whether to show "Add all to Cart" button
 * @var $move_to_another_wishlist      bool Whether to show Move to another wishlist select
 * @var $move_to_another_wishlist_type string Whether to show a select or a popup for wishlist change
 * @var $available_multi_wishlist      bool Whether multi wishlist is enabled and available
 * @var $users_wishlists               array Array of current user wishlists
 * @var $count                         int Count of items in wishlist
 * @var $var                           array Array of variable passed to the template
 */

if ( ! defined( 'YITH_WCWL' ) ) {
	exit;
} // Exit if accessed directly
?>
	<div class="yith_wcwl_wishlist_footer">
		<?php if ( $count && $show_cb ) : ?>
			<!-- Bulk actions form -->
			<div class="yith_wcwl_wishlist_bulk_action">
				<label for="bulk_actions"><?php echo esc_html( apply_filters( 'yith_wcwl_wishlist_bulk_actions_label', __( 'Apply this action to all the selected items:', 'yith-woocommerce-wishlist' ) ) ); ?></label>
				<select name="bulk_actions" id="bulk_actions">
					<option value="add_to_cart"><?php esc_html_e( 'Add to cart', 'yith-woocommerce-wishlist' ); ?></option>

					<?php if ( $wishlist->current_user_can( 'remove_from_wishlist' ) ) : ?>
						<option value="delete"><?php esc_html_e( 'Remove from wishlist', 'yith-woocommerce-wishlist' ); ?></option>
					<?php endif; ?>

					<?php if ( $available_multi_wishlist && count( $users_wishlists ) > 1 && $is_user_owner ) : ?>
						<?php
						foreach ( $users_wishlists as $wl ) :
							/**
							 * Each of the wishlists owned by current user.
							 *
							 * @var $wl \YITH_WCWL_Wishlist
							 */
							if ( $wl->get_token() === $wishlist_token ) {
								continue;
							}
							?>
							<option value="<?php echo esc_attr( $wl->get_token() ); ?>">
								<?php
								// translators: 1. Wishlist formatted name.
								echo esc_html( sprintf( __( 'Move to %s', 'yith-woocommerce-wishlist' ), $wl->get_formatted_name() ) );
								?>
							</option>
						<?php endforeach; ?>
					<?php endif; ?>
				</select>
				<input type="submit" name="apply_bulk_actions" value="<?php esc_html_e( 'Apply', 'yith-woocommerce-wishlist' ); ?>"/>
			</div>
		<?php endif; ?>

		<div class="wishlist-actions">
			<?php if ( $count && $show_update ) : ?>
				<!-- Update wishlist button -->
				<div class="yith_wcwl_wishlist_update">
					<input type="submit" name="update_wishlist" value="<?php esc_html_e( 'Update', 'yith-woocommerce-wishlist' ); ?>"/>
				</div>
			<?php endif; ?>

			<?php if ( $count && $enable_add_all_to_cart ) : ?>
				<!-- Add all to cart button -->
				<input type="submit" name="add_all_to_cart" value="<?php esc_html_e( 'Add all to cart', 'yith-woocommerce-wishlist' ); ?>"/>
			<?php endif; ?>
		</div>

		<?php if ( $count && ( $show_ask_estimate_button || $enable_add_all_to_cart ) ) : ?>
			<div class="yith_wcwl_footer_additional_action">
				<?php if ( $count && $show_ask_estimate_button ) : ?>
					<!-- Ask an estimate button -->
					<a
						href="<?php echo esc_url( ( $additional_info || ! is_user_logged_in() ) ? '#ask_an_estimate_popup' : $ask_estimate_url ); ?>"
						class="<?php echo esc_attr( $ask_an_estimate_classes ); ?> ask-an-estimate-button"
						<?php echo ( $additional_info || ! is_user_logged_in() ) ? 'data-rel="prettyPhoto[ask_an_estimate]"' : ''; ?>
					>
						<?php echo yith_wcwl_kses_icon( apply_filters( 'yith_wcwl_ask_an_estimate_icon', $ask_an_estimate_icon ) ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>
						<?php echo esc_html( apply_filters( 'yith_wcwl_ask_an_estimate_text', $ask_an_estimate_text ) ); ?>
					</a>
				<?php endif; ?>


			</div>
		<?php endif; ?>

		<?php if ( $count && $share_enabled ) : ?>
			<!-- Sharing section -->
			<?php yith_wcwl_get_template( 'share.php', array_merge( $share_atts, array( 'wishlist' => $wishlist ) ) ); ?>
		<?php endif; ?>
	</div>

	<?php wp_nonce_field( 'yith_wcwl_edit_wishlist_action', 'yith_wcwl_edit_wishlist' ); ?>
	<input type="hidden" value="<?php echo esc_attr( $wishlist_token ); ?>" name="wishlist_id" id="wishlist_id">

	<?php do_action( 'yith_wcwl_after_wishlist', $wishlist ); ?>

</form>

<?php do_action( 'yith_wcwl_after_wishlist_form', $wishlist ); ?>

<?php
if ( apply_filters( 'yith_wcwl_ask_an_estimate_conditions', $wishlist && $show_ask_estimate_button && ( ! is_user_logged_in() || $additional_info ) ) ) {
	yith_wcwl_get_template( 'wishlist-popup-ask-an-estimate.php', $var );
}
?>

<?php
if ( apply_filters( 'yith_wcwl_move_to_another_wishlist_popup_conditions', $wishlist && $move_to_another_wishlist && 'popup' === $move_to_another_wishlist_type && $available_multi_wishlist && count( $users_wishlists ) > 1, $wishlist ) ) {
	yith_wcwl_get_template( 'wishlist-popup-move.php', $var );
}
?>
PK`x1\���templates/wishlist.phpnu�[���<?php
/**
 * Wishlist pages template; load template parts basing on the url
 *
 * @author YITH
 * @package YITH\Wishlist\Templates\Wishlist
 * @version 3.0.0
 */

/**
 * Template Variables:
 *
 * @var $template_part string Sub-template to load
 * @var $var array Array of attributes that needs to be sent to sub-template
 */

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


<?php
/**
 * Hook: yith_wcwl_wishlist_before_wishlist_content.
 *
 * @hooked \YITH_WCWL_Frontend::wishlist_header - 10
 */
do_action( 'yith_wcwl_wishlist_before_wishlist_content', $var );
?>

<?php
/**
 * Hook: yith_wcwl_wishlist_main_wishlist_content.
 *
 * @hooked \YITH_WCWL_Frontend::main_wishlist_content - 10
 */
do_action( 'yith_wcwl_wishlist_main_wishlist_content', $var );
?>

<?php
/**
 * Hook: yith_wcwl_wishlist_after_wishlist_content.
 *
 * @hooked \YITH_WCWL_Frontend::wishlist_footer - 10
 */
do_action( 'yith_wcwl_wishlist_after_wishlist_content', $var );

PK`x1\���2�2*templates/admin/wishlist-panel-premium.phpnu�[���<style>
	.landing{
		margin-right: 15px;
		border: 1px solid #d8d8d8;
		border-top: 0;
	}
    .section{
	    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
	    background: #fafafa;
    }
    .section h1{
        text-align: center;
        text-transform: uppercase;
        color: #445674;
        font-size: 35px;
        font-weight: 700;
        line-height: normal;
        display: inline-block;
        width: 100%;
        margin: 50px 0 0;
    }
    .section .section-title h2{
        vertical-align: middle;
        padding: 0;
	    line-height: normal;
        font-size: 24px;
        font-weight: 700;
        color: #445674;
        text-transform: uppercase;
	    background: none;
	    border: none;
	    text-align: center;
    }
    .section p{
        margin: 15px 0;
	    font-size: 19px;
	    line-height: 32px;
	    font-weight: 300;
	    text-align: center;
    }
    .section ul li{
        margin-bottom: 4px;
    }
    .section.section-cta{
	    background: #fff;
    }
    .cta-container,
    .landing-container{
	    display: flex;
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
        padding: 30px 0;
	    align-items: center;
    }
    .landing-container-wide{
	    flex-direction: column;
    }
    .cta-container{
	    display: block;
	    max-width: 860px;
    }
    .landing-container:after{
        display: block;
        clear: both;
        content: '';
    }
    .landing-container .col-1,
    .landing-container .col-2{
        float: left;
        box-sizing: border-box;
        padding: 0 15px;
    }
    .landing-container .col-1{
	    width: 58.33333333%;
    }
    .landing-container .col-2{
	    width: 41.66666667%;
    }
    .landing-container .col-1 img,
    .landing-container .col-2 img,
    .landing-container .col-wide img{
        max-width: 100%;
    }
    .wishlist-cta{
        color: #4b4b4b;
        border-radius: 10px;
        padding: 30px 25px;
	    display: flex;
	    align-items: center;
	    justify-content: space-between;
	    width: 100%;
	    box-sizing: border-box;
    }
    .wishlist-cta:after{
        content: '';
        display: block;
        clear: both;
    }
    .wishlist-cta p{
        margin: 10px 0;
	    line-height: 1.5em;
        display: inline-block;
	    text-align: left;
    }
    .wishlist-cta a.button{
        border-radius: 25px;
        float: right;
        background: #e09004;
        box-shadow: none;
        outline: none;
        color: #fff;
        position: relative;
        padding: 10px 50px 8px;
	    text-align: center;
	    text-transform: uppercase;
	    font-weight: 600;
	    font-size: 20px;
		line-height: normal;
	    border: none;
    }
    .wishlist-cta a.button:hover,
    .wishlist-cta a.button:active,
    .wp-core-ui .yith-plugin-ui .wishlist-cta a.button:focus{
        color: #fff;
        background: #d28704;
        box-shadow: none;
        outline: none;
    }
    .wishlist-cta .highlight{
        text-transform: uppercase;
        background: none;
        font-weight: 500;
    }

    @media (max-width: 991px){
	    .landing-container{
		    display: block;
		    padding: 50px 0 30px;
	    }

	    .landing-container .col-1,
	    .landing-container .col-2{
		    float: none;
		    width: 100%;
	    }

	    .wishlist-cta{
		    display: block;
		    text-align: center;
	    }

	    .wishlist-cta p{
		    text-align: center;
		    display: block;
		    margin-bottom: 30px;
	    }
	    .wishlist-cta a.button{
		    float: none;
		    display: inline-block;
	    }
    }
</style>
<div class="landing">
    <div class="section section-cta section-odd">
        <div class="cta-container">
            <div class="wishlist-cta">
                <p><?php echo sprintf (__('Upgrade to the %1$spremium version%2$s%3$sof %1$sYITH WooCommerce Wishlist%2$s to benefit from all features!','yith-woocommerce-wishlist'),'<span class="highlight">','</span>','<br/>');?></p>
                <a href="<?php echo YITH_WCWL_Admin()->get_premium_landing_uri(); ?>" target="_blank" class="wishlist-cta-button button btn">
                   <?php _e('Upgrade','yith-woocommerce-wishlist');?>
                </a>
            </div>
        </div>
    </div>
    <div class="section section-even clear">
        <h1><?php _e('Premium Features', 'yith-woocommerce-wishlist');?></h1>
        <div class="landing-container">
            <div class="col-2">
	            <div class="section-title">
		            <h2><?php _e('Allow your customers to create multiple wishlists', 'yith-woocommerce-wishlist');?></h2>
	            </div>
	            <p><?php _e( 'Christmas, Birthday... users will be able to create and manage multiple wishlists, in case they prefer to keep the products sorted by category or other parameters.', 'yith-woocommerce-wishlist' ) ?></p>
            </div>
            <div class="col-1">
	            <img src="<?php echo YITH_WCWL_URL ?>assets/images/landing/01.png" alt="<?php _e('Multiple Wishlist', 'yith-woocommerce-wishlist');?>" />
            </div>
        </div>
    </div>
    <div class="section section-odd clear">
        <div class="landing-container">
	        <div class="col-1">
		        <img src="<?php echo YITH_WCWL_URL ?>assets/images/landing/02.png" alt="<?php _e('Wishlist Private', 'yith-woocommerce-wishlist');?>" />
	        </div>
            <div class="col-2">
                <div class="section-title">
                    <h2><?php _e('A transparent privacy management', 'yith-woocommerce-wishlist');?></h2>
                </div>
                <p><?php _e( 'Your customers can set a privacy option for each wishlist and choose whether sharing the wishlist or making it private.', 'yith-woocommerce-wishlist' ) ?></p>
            </div>
        </div>
    </div>
    <div class="section section-even clear">
        <div class="landing-container">
            <div class="col-2">
                <div class="section-title">
                    <h2><?php _e('Allow your customers to ask for an estimate, directly from their wishlist page', 'yith-woocommerce-wishlist');?></h2>
                </div>
                <p><?php _e( 'And give only registered users the privilege to use the wishlist functionalities.', 'yith-woocommerce-wishlist' ) ?></p>
            </div>
	        <div class="col-1">
		        <img src="<?php echo YITH_WCWL_URL ?>assets/images/landing/03.png" alt="<?php _e('Estimate Cost', 'yith-woocommerce-wishlist');?>" />
	        </div>
        </div>
    </div>
    <div class="section section-odd clear">
        <div class="landing-container">
            <div class="col-1">
                <img src="<?php echo YITH_WCWL_URL ?>assets/images/landing/04.png" alt="<?php _e('Admin Panel', 'yith-woocommerce-wishlist');?>" />
            </div>
	        <div class="col-2">
		        <div class="section-title">
			        <h2><?php _e('An advanced and more versatile management of the wishlist', 'yith-woocommerce-wishlist');?></h2>
		        </div>
		        <p><?php _e( 'Your customers can sort the products in the wishlist thanks to the drag&drop option, move products from one wishlist to another, manage product quantity, download the wishlist content to a .pdf file, share the wishlist on their social networks, and much more!', 'yith-woocommerce-wishlist' ) ?></p>
	        </div>
        </div>
    </div>
    <div class="section section-even clear">
        <div class="landing-container">
            <div class="col-2">
                <div class="section-title">
                    <h2><?php _e('Monitor your customers’ wishlists and the popular products', 'yith-woocommerce-wishlist');?></h2>
                </div>
                <p><?php _e( 'You can see your customers’ wishlists, gain insight into the products they are more interested in and plan targeted marketing strategies.', 'yith-woocommerce-wishlist' ) ?></p>
            </div>
	        <div class="col-1">
		        <img src="<?php echo YITH_WCWL_URL ?>assets/images/landing/05.png" alt="<?php _e('Search Wishlists', 'yith-woocommerce-wishlist');?>" />
	        </div>
        </div>
    </div>
    <div class="section section-odd clear">
        <div class="landing-container">
            <div class="col-1">
                <img src="<?php echo YITH_WCWL_URL ?>assets/images/landing/06.png" alt="<?php _e('\'ADD TO CART\'', 'yith-woocommerce-wishlist');?>" />
            </div>
	        <div class="col-2">
		        <div class="section-title">
			        <h2><?php _e('Send promotional emails for products in wishlists to push customers to buy', 'yith-woocommerce-wishlist');?></h2>
		        </div>
		        <p><?php _e( 'Just three clicks to send promotional emails with discount coupons to customers who have added specific products to their wishlist and push them to buy.', 'yith-woocommerce-wishlist' ) ?></p>
	        </div>
        </div>
    </div>
    <div class="section section-even clear">
        <div class="landing-container">
            <div class="col-2">
                <div class="section-title">
                    <h2><?php _e('Let users buy the product right from the wishlist page', 'yith-woocommerce-wishlist');?></h2>
                </div>
                <p><?php _e( 'Let them move products from one wishlist to the cart in one click, keeping also the information about the size, colour or quantity selected when added to the wishlist.', 'yith-woocommerce-wishlist' ) ?></p>
            </div>
	        <div class="col-1">
		        <img src="<?php echo YITH_WCWL_URL ?>assets/images/landing/07.png" alt="<?php _e('DISABLE WISHLIST', 'yith-woocommerce-wishlist');?>" />
	        </div>
        </div>
    </div>
    <div class="section section-odd clear">
        <div class="landing-container landing-container-wide">
            <div class="col-wide">
                <div class="section-title">
                    <h2><?php _e('Choose a charming layout for your wishlist page', 'yith-woocommerce-wishlist');?></h2>
                </div>
                <p><?php _e( 'The wishlist is one of the most used functionalities in an ecommerce store but often the page layout is not enhanced enough and looks unattractive to the user. With our plugin, you can choose among some alternative layouts and offer an even more interesting experience to users who creates a wishlist on your website.', 'yith-woocommerce-wishlist' ) ?></p>
            </div>
            <div class="col-wide">
                <img src="<?php echo YITH_WCWL_URL ?>assets/images/landing/08.png" alt="<?php _e('UNLOGGED USERS', 'yith-woocommerce-wishlist');?>" />
            </div>
        </div>
    </div>
    <div class="section section-even clear">
        <div class="landing-container">
            <div class="col-2">
                <div class="section-title">
                    <h2><?php _e('Wishlist widgets for the header and sidebars', 'yith-woocommerce-wishlist');?></h2>
                </div>
                <p><?php _e( 'Increase the wishlist visibility through our modern widgets that you can use in the header, in the sidebars, wherever you want.', 'yith-woocommerce-wishlist' ) ?></p>
            </div>
	        <div class="col-1">
		        <img src="<?php echo YITH_WCWL_URL ?>assets/images/landing/09.png" alt="<?php _e('POPULAR TABLE', 'yith-woocommerce-wishlist');?>" />
	        </div>
        </div>
    </div>
    <div class="section section-odd clear">
        <div class="landing-container">
            <div class="col-1">
                <img src="<?php echo YITH_WCWL_URL ?>assets/images/landing/10.png" alt="<?php _e('FUNCTIONALITIES', 'yith-woocommerce-wishlist');?>" />
            </div>
	        <div class="col-2">
		        <div class="section-title">
			        <h2><?php _e('Allow users to monitor the price of the products in their wishlist', 'yith-woocommerce-wishlist');?></h2>
		        </div>
		        <p><?php _e( 'We took inspiration from one of the most interesting features of Amazon product pages: from now on, users can realise what’s the best time to buy a product and how much they can save when there’s a promotion running or a discount on the product they’ve added to the wishlist.', 'yith-woocommerce-wishlist' ) ?></p>
	        </div>
        </div>
    </div>
    <div class="section section-cta section-odd">
        <div class="cta-container">
            <div class="wishlist-cta">
                <p><?php echo sprintf (__('Upgrade to the %1$spremium version%2$s%3$sof %1$sYITH WooCommerce Wishlist%2$s to benefit from all features!','yith-woocommerce-wishlist'),'<span class="highlight">','</span>','<br/>');?></p>
                <a href="<?php echo YITH_WCWL_Admin()->get_premium_landing_uri();?>" target="_blank" class="wishlist-cta-button button btn">
                    <?php _e( 'Upgrade', 'yith-woocommerce-wishlist' ); ?>
                </a>
            </div>
        </div>
    </div>
</div>
PK`x1\۰I%
%
"templates/wishlist-view-header.phpnu�[���<?php
/**
 * Wishlist header
 *
 * @author YITH
 * @package YITH\Wishlist\Templates\Wishlist\View
 * @version 3.0.0
 */

/**
 * Template variables:
 *
 * @var $wishlist \YITH_WCWL_Wishlist Current wishlist
 * @var $is_custom_list bool Whether current wishlist is custom
 * @var $can_user_edit_title bool Whether current user can edit title
 * @var $form_action string Action for the wishlist form
 * @var $page_title string Page title
 * @var $fragment_options array Array of items to use for fragment generation
 */

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

<?php do_action( 'yith_wcwl_before_wishlist_form', $wishlist ); ?>

<form
	id="yith-wcwl-form"
	action="<?php echo esc_attr( $form_action ); ?>"
	method="post"
	class="woocommerce yith-wcwl-form wishlist-fragment"
	data-fragment-options="<?php echo wc_esc_json( wp_json_encode( $fragment_options ) ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>"
>

	<!-- TITLE -->
	<?php
	do_action( 'yith_wcwl_before_wishlist_title', $wishlist );

	if ( ! empty( $page_title ) ) :
		?>
		<div class="wishlist-title-container">
			<div class="wishlist-title <?php echo ( $can_user_edit_title ) ? 'wishlist-title-with-form' : ''; ?>">
				<?php echo wp_kses_post( apply_filters( 'yith_wcwl_wishlist_title', '<h2>' . $page_title . '</h2>' ) ); ?>
				<?php if ( $can_user_edit_title ) : ?>
					<a class="btn button show-title-form">
						<?php echo yith_wcwl_kses_icon( apply_filters( 'yith_wcwl_edit_title_icon', '<i class="fa fa-pencil"></i>' ) ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>
						<?php esc_html_e( 'Edit title', 'yith-woocommerce-wishlist' ); ?>
					</a>
				<?php endif; ?>
			</div>
			<?php if ( $can_user_edit_title ) : ?>
				<div class="hidden-title-form">
					<input type="text" value="<?php echo esc_attr( $page_title ); ?>" name="wishlist_name"/>
					<div class="edit-title-buttons">
						<a role="button" href="#" class="hide-title-form">
							<?php echo yith_wcwl_kses_icon( apply_filters( 'yith_wcwl_cancel_wishlist_title_icon', '<i class="fa fa-remove"></i>' ) ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>
						</a>
						<a role="button" href="#" class="save-title-form">
							<?php echo yith_wcwl_kses_icon( apply_filters( 'yith_wcwl_save_wishlist_title_icon', '<i class="fa fa-check"></i>' ) ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>
						</a>
					</div>
				</div>
			<?php endif; ?>
		</div>
		<?php
	endif;

	do_action( 'yith_wcwl_before_wishlist', $wishlist );
	?>
PK`x1\�GWT		$templates/add-to-wishlist-browse.phpnu�[���<?php
/**
 * Add to wishlist button template - Browse list
 *
 * @author YITH
 * @package YITH\Wishlist\Templates\AddToWishlist
 * @version 3.0.12
 */

/**
 * Template variables:
 *
 * @var $wishlist_url              string Url to wishlist page
 * @var $exists                    bool Whether current product is already in wishlist
 * @var $show_exists               bool Whether to show already in wishlist link on multi wishlist
 * @var $product_id                int Current product id
 * @var $parent_product_id         int Parent for current product
 * @var $product_type              string Current product type
 * @var $label                     string Button label
 * @var $browse_wishlist_text      string Browse wishlist text
 * @var $already_in_wishslist_text string Already in wishlist text
 * @var $product_added_text        string Product added text
 * @var $icon                      string Icon for Add to Wishlist button
 * @var $link_classes              string Classed for Add to Wishlist button
 * @var $available_multi_wishlist  bool Whether add to wishlist is available or not
 * @var $disable_wishlist          bool Whether wishlist is disabled or not
 * @var $template_part             string Template part
 * @var $loop_position             string Loop position
 * @var $is_single                 bool Whether we're on single template
 */

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

global $product;
?>

<!-- BROWSE WISHLIST MESSAGE -->
<div class="yith-wcwl-wishlistexistsbrowse" data-product-id="<?php echo esc_attr( $product_id ); ?>" data-original-product-id="<?php echo esc_attr( $parent_product_id ); ?>">
	<span class="feedback">
		<?php echo yith_wcwl_kses_icon( $icon ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>
		<?php echo wp_kses_post( $already_in_wishslist_text ); ?>
	</span>
	<a href="<?php echo esc_url( $wishlist_url ); ?>" rel="nofollow" data-title="<?php echo esc_attr( $browse_wishlist_text ); ?>">
		<?php echo ( ! $is_single && 'before_image' === $loop_position ) ? yith_wcwl_kses_icon( $icon ) : false; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>
		<?php echo wp_kses_post( apply_filters( 'yith_wcwl_browse_wishlist_label', $browse_wishlist_text, $product_id, $icon ) ); ?>
	</a>
</div>
PK`x1\Ҙ�+6+6templates/wishlist-view.phpnu�[���<?php
/**
 * Wishlist page template - Standard Layout
 *
 * @author YITH
 * @package YITH\Wishlist\Templates\Wishlist\View
 * @version 3.0.0
 */

/**
 * Template variables:
 *
 * @var $wishlist                      \YITH_WCWL_Wishlist Current wishlist
 * @var $wishlist_items                array Array of items to show for current page
 * @var $wishlist_token                string Current wishlist token
 * @var $wishlist_id                   int Current wishlist id
 * @var $users_wishlists               array Array of current user wishlists
 * @var $pagination                    string yes/no
 * @var $per_page                      int Items per page
 * @var $current_page                  int Current page
 * @var $page_links                    array Array of page links
 * @var $is_user_owner                 bool Whether current user is wishlist owner
 * @var $show_price                    bool Whether to show price column
 * @var $show_dateadded                bool Whether to show item date of addition
 * @var $show_stock_status             bool Whether to show product stock status
 * @var $show_add_to_cart              bool Whether to show Add to Cart button
 * @var $show_remove_product           bool Whether to show Remove button
 * @var $show_price_variations         bool Whether to show price variation over time
 * @var $show_variation                bool Whether to show variation attributes when possible
 * @var $show_cb                       bool Whether to show checkbox column
 * @var $show_quantity                 bool Whether to show input quantity or not
 * @var $show_ask_estimate_button      bool Whether to show Ask an Estimate form
 * @var $show_last_column              bool Whether to show last column (calculated basing on previous flags)
 * @var $move_to_another_wishlist      bool Whether to show Move to another wishlist select
 * @var $move_to_another_wishlist_type string Whether to show a select or a popup for wishlist change
 * @var $additional_info               bool Whether to show Additional info textarea in Ask an estimate form
 * @var $price_excl_tax                bool Whether to show price excluding taxes
 * @var $enable_drag_n_drop            bool Whether to enable drag n drop feature
 * @var $repeat_remove_button          bool Whether to repeat remove button in last column
 * @var $available_multi_wishlist      bool Whether multi wishlist is enabled and available
 * @var $no_interactions               bool
 */

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

<!-- WISHLIST TABLE -->
<table
	class="shop_table cart wishlist_table wishlist_view traditional responsive <?php echo $no_interactions ? 'no-interactions' : ''; ?> <?php echo $enable_drag_n_drop ? 'sortable' : ''; ?> "
	data-pagination="<?php echo esc_attr( $pagination ); ?>" data-per-page="<?php echo esc_attr( $per_page ); ?>" data-page="<?php echo esc_attr( $current_page ); ?>"
	data-id="<?php echo esc_attr( $wishlist_id ); ?>" data-token="<?php echo esc_attr( $wishlist_token ); ?>">

	<?php $column_count = 2; ?>

	<thead>
	<tr>
		<?php if ( $show_cb ) : ?>
			<?php $column_count ++; ?>
			<th class="product-checkbox">
				<input type="checkbox" value="" name="" id="bulk_add_to_cart"/>
			</th>
		<?php endif; ?>

		<?php if ( $show_remove_product ) : ?>
			<?php $column_count ++; ?>
			<th class="product-remove">
				<span class="nobr">
					<?php echo esc_html( apply_filters( 'yith_wcwl_wishlist_view_remove_heading', '', $wishlist ) ); ?>
				</span>
			</th>
		<?php endif; ?>

		<th class="product-thumbnail"></th>

		<th class="product-name">
			<span class="nobr">
				<?php echo esc_html( apply_filters( 'yith_wcwl_wishlist_view_name_heading', __( 'Product name', 'yith-woocommerce-wishlist' ), $wishlist ) ); ?>
			</span>
		</th>

		<?php if ( $show_price || $show_price_variations ) : ?>
			<?php $column_count ++; ?>
			<th class="product-price">
				<span class="nobr">
					<?php echo esc_html( apply_filters( 'yith_wcwl_wishlist_view_price_heading', __( 'Unit price', 'yith-woocommerce-wishlist' ), $wishlist ) ); ?>
				</span>
			</th>
		<?php endif; ?>

		<?php if ( $show_quantity ) : ?>
			<?php $column_count ++; ?>
			<th class="product-quantity">
				<span class="nobr">
					<?php echo esc_html( apply_filters( 'yith_wcwl_wishlist_view_quantity_heading', __( 'Quantity', 'yith-woocommerce-wishlist' ), $wishlist ) ); ?>
				</span>
			</th>
		<?php endif; ?>

		<?php if ( $show_stock_status ) : ?>
			<?php $column_count ++; ?>
			<th class="product-stock-status">
				<span class="nobr">
					<?php echo esc_html( apply_filters( 'yith_wcwl_wishlist_view_stock_heading', __( 'Stock status', 'yith-woocommerce-wishlist' ), $wishlist ) ); ?>
				</span>
			</th>
		<?php endif; ?>

		<?php if ( $show_last_column ) : ?>
			<?php $column_count ++; ?>
			<th class="product-add-to-cart">
				<span class="nobr">
					<?php echo esc_html( apply_filters( 'yith_wcwl_wishlist_view_cart_heading', '', $wishlist ) ); ?>
				</span>
			</th>
		<?php endif; ?>

		<?php if ( $enable_drag_n_drop ) : ?>
			<?php $column_count ++; ?>
			<th class="product-arrange">
				<span class="nobr">
					<?php echo esc_html( apply_filters( 'yith_wcwl_wishlist_view_arrange_heading', __( 'Arrange', 'yith-woocommerce-wishlist' ), $wishlist ) ); ?>
				</span>
			</th>
		<?php endif; ?>
	</tr>
	</thead>

	<tbody class="wishlist-items-wrapper">
	<?php
	if ( $wishlist && $wishlist->has_items() ) :
		foreach ( $wishlist_items as $item ) :
			/**
			 * Each of the wishlist items
			 *
			 * @var $item \YITH_WCWL_Wishlist_Item
			 */
			global $product;

			$product      = $item->get_product();
			$availability = $product->get_availability();
			$stock_status = isset( $availability['class'] ) ? $availability['class'] : false;

			if ( $product && $product->exists() ) :
				?>
				<tr id="yith-wcwl-row-<?php echo esc_attr( $item->get_product_id() ); ?>" data-row-id="<?php echo esc_attr( $item->get_product_id() ); ?>">
					<?php if ( $show_cb ) : ?>
						<td class="product-checkbox">
							<input type="checkbox" value="yes" name="items[<?php echo esc_attr( $item->get_product_id() ); ?>][cb]"/>
						</td>
					<?php endif ?>

					<?php if ( $show_remove_product ) : ?>
						<td class="product-remove">
							<div>
								<a href="<?php echo esc_url( $item->get_remove_url() ); ?>" class="remove remove_from_wishlist" title="<?php echo esc_html( apply_filters( 'yith_wcwl_remove_product_wishlist_message_title', __( 'Remove this product', 'yith-woocommerce-wishlist' ) ) ); ?>">&times;</a>
							</div>
						</td>
					<?php endif; ?>

					<td class="product-thumbnail">
						<?php do_action( 'yith_wcwl_table_before_product_thumbnail', $item, $wishlist ); ?>

						<a href="<?php echo esc_url( get_permalink( apply_filters( 'woocommerce_in_cart_product', $item->get_product_id() ) ) ); ?>">
							<?php echo wp_kses_post( $product->get_image() ); ?>
						</a>

						<?php do_action( 'yith_wcwl_table_after_product_thumbnail', $item, $wishlist ); ?>
					</td>

					<td class="product-name">
						<?php do_action( 'yith_wcwl_table_before_product_name', $item, $wishlist ); ?>

						<a href="<?php echo esc_url( get_permalink( apply_filters( 'woocommerce_in_cart_product', $item->get_product_id() ) ) ); ?>">
							<?php echo wp_kses_post( apply_filters( 'woocommerce_in_cartproduct_obj_title', $product->get_title(), $product ) ); ?>
						</a>

						<?php
						if ( $show_variation && $product->is_type( 'variation' ) ) {
							/**
							 * Product is a Variation
							 *
							 * @var $product \WC_Product_Variation
							 */
							echo wp_kses_post( wc_get_formatted_variation( $product ) );
						}
						?>

						<?php do_action( 'yith_wcwl_table_after_product_name', $item, $wishlist ); ?>
					</td>

					<?php if ( $show_price || $show_price_variations ) : ?>
						<td class="product-price">
							<?php do_action( 'yith_wcwl_table_before_product_price', $item, $wishlist ); ?>

							<?php
							if ( $show_price ) {
								echo wp_kses_post( $item->get_formatted_product_price() );
							}

							if ( $show_price_variations ) {
								echo wp_kses_post( $item->get_price_variation() );
							}
							?>

							<?php do_action( 'yith_wcwl_table_after_product_price', $item, $wishlist ); ?>
						</td>
					<?php endif ?>

					<?php if ( $show_quantity ) : ?>
						<td class="product-quantity">
							<?php do_action( 'yith_wcwl_table_before_product_quantity', $item, $wishlist ); ?>

							<?php if ( ! $no_interactions && $wishlist->current_user_can( 'update_quantity' ) ) : ?>
								<input type="number" min="1" step="1" name="items[<?php echo esc_attr( $item->get_product_id() ); ?>][quantity]" value="<?php echo esc_attr( $item->get_quantity() ); ?>"/>
							<?php else : ?>
								<?php echo esc_html( $item->get_quantity() ); ?>
							<?php endif; ?>

							<?php do_action( 'yith_wcwl_table_after_product_quantity', $item, $wishlist ); ?>
						</td>
					<?php endif; ?>

					<?php if ( $show_stock_status ) : ?>
						<td class="product-stock-status">
							<?php do_action( 'yith_wcwl_table_before_product_stock', $item, $wishlist ); ?>

							<?php echo 'out-of-stock' === $stock_status ? '<span class="wishlist-out-of-stock">' . esc_html( apply_filters( 'yith_wcwl_out_of_stock_label', __( 'Out of stock', 'yith-woocommerce-wishlist' ) ) ) . '</span>' : '<span class="wishlist-in-stock">' . esc_html( apply_filters( 'yith_wcwl_in_stock_label', __( 'In Stock', 'yith-woocommerce-wishlist' ) ) ) . '</span>'; ?>

							<?php do_action( 'yith_wcwl_table_after_product_stock', $item, $wishlist ); ?>
						</td>
					<?php endif ?>

					<?php if ( $show_last_column ) : ?>
						<td class="product-add-to-cart">
							<?php do_action( 'yith_wcwl_table_before_product_cart', $item, $wishlist ); ?>

							<!-- Date added -->
							<?php
							if ( $show_dateadded && $item->get_date_added() ) :
								// translators: date added label: 1 date added.
								echo '<span class="dateadded">' . esc_html( sprintf( __( 'Added on: %s', 'yith-woocommerce-wishlist' ), $item->get_date_added_formatted() ) ) . '</span>';
							endif;
							?>

							<?php do_action( 'yith_wcwl_table_product_before_add_to_cart', $item, $wishlist ); ?>

							<!-- Add to cart button -->
							<?php $show_add_to_cart = apply_filters( 'yith_wcwl_table_product_show_add_to_cart', $show_add_to_cart, $item, $wishlist ); ?>
							<?php if ( $show_add_to_cart && isset( $stock_status ) && 'out-of-stock' !== $stock_status ) : ?>
								<?php woocommerce_template_loop_add_to_cart( array( 'quantity' => $show_quantity ? $item->get_quantity() : 1 ) ); ?>
							<?php endif ?>

							<?php do_action( 'yith_wcwl_table_product_after_add_to_cart', $item, $wishlist ); ?>

							<!-- Change wishlist -->
							<?php $move_to_another_wishlist = apply_filters( 'yith_wcwl_table_product_move_to_another_wishlist', $move_to_another_wishlist, $item, $wishlist ); ?>
							<?php if ( $move_to_another_wishlist && $available_multi_wishlist && count( $users_wishlists ) > 1 ) : ?>
								<?php if ( 'select' === $move_to_another_wishlist_type ) : ?>
									<select class="change-wishlist selectBox">
										<option value=""><?php esc_html_e( 'Move', 'yith-woocommerce-wishlist' ); ?></option>
										<?php
										foreach ( $users_wishlists as $wl ) :
											/**
											 * Each of customer's wishlists
											 *
											 * @var $wl \YITH_WCWL_Wishlist
											 */
											if ( $wl->get_token() === $wishlist_token ) {
												continue;
											}
											?>
											<option value="<?php echo esc_attr( $wl->get_token() ); ?>">
												<?php echo sprintf( '%s - %s', esc_html( $wl->get_formatted_name() ), esc_html( $wl->get_formatted_privacy() ) ); ?>
											</option>
											<?php
										endforeach;
										?>
									</select>
								<?php else : ?>
									<a href="#move_to_another_wishlist" class="move-to-another-wishlist-button" data-rel="prettyPhoto[move_to_another_wishlist]">
										<?php echo esc_html( apply_filters( 'yith_wcwl_move_to_another_list_label', __( 'Move to another list &rsaquo;', 'yith-woocommerce-wishlist' ) ) ); ?>
									</a>
								<?php endif; ?>

								<?php do_action( 'yith_wcwl_table_product_after_move_to_another_wishlist', $item, $wishlist ); ?>

							<?php endif; ?>

							<!-- Remove from wishlist -->
							<?php if ( $repeat_remove_button ) : ?>
								<a href="<?php echo esc_url( $item->get_remove_url() ); ?>" class="remove_from_wishlist button" title="<?php echo esc_html( apply_filters( 'yith_wcwl_remove_product_wishlist_message_title', __( 'Remove this product', 'yith-woocommerce-wishlist' ) ) ); ?>"><?php esc_html_e( 'Remove', 'yith-woocommerce-wishlist' ); ?></a>
							<?php endif; ?>

							<?php do_action( 'yith_wcwl_table_after_product_cart', $item, $wishlist ); ?>
						</td>
					<?php endif; ?>

					<?php if ( $enable_drag_n_drop ) : ?>
						<td class="product-arrange ">
							<i class="fa fa-arrows"></i>
							<input type="hidden" name="items[<?php echo esc_attr( $item->get_product_id() ); ?>][position]" value="<?php echo esc_attr( $item->get_position() ); ?>"/>
						</td>
					<?php endif; ?>
				</tr>
				<?php
			endif;
		endforeach;
	else :
		?>
		<tr>
			<td colspan="<?php echo esc_attr( $column_count ); ?>" class="wishlist-empty"><?php echo esc_html( apply_filters( 'yith_wcwl_no_product_to_remove_message', __( 'No products added to the wishlist', 'yith-woocommerce-wishlist' ), $wishlist ) ); ?></td>
		</tr>
		<?php
	endif;

	if ( ! empty( $page_links ) ) :
		?>
		<tr class="pagination-row wishlist-pagination">
			<td colspan="<?php echo esc_attr( $column_count ); ?>">
				<?php echo wp_kses_post( $page_links ); ?>
			</td>
		</tr>
	<?php endif ?>
	</tbody>

</table>
PK`x1\$�		templates/add-to-wishlist.phpnu�[���<?php
/**
 * Add to wishlist template
 *
 * @author YITH
 * @package YITH\Wishlist\Templates\AddToWishlist
 * @version 3.0.0
 */

/**
 * Template variables:
 *
 * @var $wishlist_url              string Url to wishlist page
 * @var $exists                    bool Whether current product is already in wishlist
 * @var $show_exists               bool Whether to show already in wishlist link on multi wishlist
 * @var $show_count                bool Whether to show count of times item was added to wishlist
 * @var $product_id                int Current product id
 * @var $product_type              string Current product type
 * @var $label                     string Button label
 * @var $browse_wishlist_text      string Browse wishlist text
 * @var $already_in_wishslist_text string Already in wishlist text
 * @var $product_added_text        string Product added text
 * @var $icon                      string Icon for Add to Wishlist button
 * @var $link_classes              string Classed for Add to Wishlist button
 * @var $available_multi_wishlist  bool Whether add to wishlist is available or not
 * @var $disable_wishlist          bool Whether wishlist is disabled or not
 * @var $template_part             string Template part
 * @var $container_classes         string Container classes
 * @var $fragment_options          array Array of data to send through ajax calls
 * @var $ajax_loading              bool Whether ajax loading is enabled or not
 * @var $var                       array Array of available template variables
 */

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

global $product;
?>

<div
	class="yith-wcwl-add-to-wishlist add-to-wishlist-<?php echo esc_attr( $product_id ); ?> <?php echo esc_attr( $container_classes ); ?> wishlist-fragment on-first-load"
	data-fragment-ref="<?php echo esc_attr( $product_id ); ?>"
	data-fragment-options="<?php echo wc_esc_json( wp_json_encode( $fragment_options ) ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>"
>
	<?php if ( ! $ajax_loading ) : ?>
		<?php if ( ! ( $disable_wishlist && ! is_user_logged_in() ) ) : ?>

			<!-- ADD TO WISHLIST -->
			<?php yith_wcwl_get_template( 'add-to-wishlist-' . $template_part . '.php', $var ); ?>

			<!-- COUNT TEXT -->
			<?php
			if ( $show_count ) :
				echo wp_kses_post( yith_wcwl_get_count_text( $product_id ) );
			endif;
			?>

		<?php else : ?>
			<?php
			$login_url = add_query_arg(
				array(
					'wishlist_notice' => 'true',
					'add_to_wishlist' => $product_id,
				),
				get_permalink( wc_get_page_id( 'myaccount' ) )
			);
			?>
			<div class="yith-wcwl-add-button">
				<a
					href="<?php echo esc_url( $login_url ); ?>"
					class="disabled_item <?php echo esc_attr( str_replace( array( 'add_to_wishlist', 'single_add_to_wishlist' ), '', $link_classes ) ); ?>"
					rel="nofollow"
				>
					<?php echo yith_wcwl_kses_icon( $icon ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>
					<?php echo esc_html( $label ); ?>
				</a>
			</div>
		<?php endif; ?>
	<?php endif; ?>
</div>
PK`x1\��w[**"templates/wishlist-view-mobile.phpnu�[���<?php
/**
 * Wishlist page template - Standard Layout
 *
 * @author YITH
 * @package YITH\Wishlist\Templates\Wishlist\View
 * @version 3.0.11
 */

/**
 * Template variables:
 *
 * @var $wishlist                      \YITH_WCWL_Wishlist Current wishlist
 * @var $wishlist_items                array Array of items to show for current page
 * @var $wishlist_token                string Current wishlist token
 * @var $wishlist_id                   int Current wishlist id
 * @var $users_wishlists               array Array of current user wishlists
 * @var $pagination                    string yes/no
 * @var $per_page                      int Items per page
 * @var $current_page                  int Current page
 * @var $page_links                    array Array of page links
 * @var $is_user_owner                 bool Whether current user is wishlist owner
 * @var $show_price                    bool Whether to show price column
 * @var $show_dateadded                bool Whether to show item date of addition
 * @var $show_stock_status             bool Whether to show product stock status
 * @var $show_add_to_cart              bool Whether to show Add to Cart button
 * @var $show_remove_product           bool Whether to show Remove button
 * @var $show_price_variations         bool Whether to show price variation over time
 * @var $show_variation                bool Whether to show variation attributes when possible
 * @var $show_cb                       bool Whether to show checkbox column
 * @var $show_quantity                 bool Whether to show input quantity or not
 * @var $show_ask_estimate_button      bool Whether to show Ask an Estimate form
 * @var $show_last_column              bool Whether to show last column (calculated basing on previous flags)
 * @var $move_to_another_wishlist      bool Whether to show Move to another wishlist select
 * @var $move_to_another_wishlist_type string Whether to show a select or a popup for wishlist change
 * @var $additional_info               bool Whether to show Additional info textarea in Ask an estimate form
 * @var $price_excl_tax                bool Whether to show price excluding taxes
 * @var $enable_drag_n_drop            bool Whether to enable drag n drop feature
 * @var $repeat_remove_button          bool Whether to repeat remove button in last column
 * @var $available_multi_wishlist      bool Whether multi wishlist is enabled and available
 * @var $no_interactions               bool
 */

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

<!-- WISHLIST MOBILE -->
<ul
	class="shop_table cart wishlist_table wishlist_view responsive mobile <?php echo $show_cb ? 'with-checkbox' : ''; ?> <?php echo $no_interactions ? 'no-interactions' : ''; ?>"
	data-pagination="<?php echo esc_attr( $pagination ); ?>" data-per-page="<?php echo esc_attr( $per_page ); ?>" data-page="<?php echo esc_attr( $current_page ); ?>"
	data-id="<?php echo esc_attr( $wishlist_id ); ?>" data-token="<?php echo esc_attr( $wishlist_token ); ?>">

	<?php
	if ( $wishlist && $wishlist->has_items() ) :
		foreach ( $wishlist_items as $item ) :
			/**
			 * Each of wishlist items
			 *
			 * @var $item \YITH_WCWL_Wishlist_Item
			 */
			global $product;

			$product      = $item->get_product();
			$availability = $product->get_availability();
			$stock_status = isset( $availability['class'] ) ? $availability['class'] : false;

			if ( $product && $product->exists() ) :
				?>
				<li id="yith-wcwl-row-<?php echo esc_attr( $item->get_product_id() ); ?>" data-row-id="<?php echo esc_attr( $item->get_product_id() ); ?>">
					<?php if ( $show_cb ) : ?>
						<div class="product-checkbox">
							<input type="checkbox" value="yes" name="items[<?php echo esc_attr( $item->get_product_id() ); ?>][cb]"/>
						</div>
					<?php endif ?>

					<div class="item-wrapper">
						<div class="product-thumbnail">
							<a href="<?php echo esc_url( get_permalink( apply_filters( 'woocommerce_in_cart_product', $item->get_product_id() ) ) ); ?>">
								<?php echo wp_kses_post( $product->get_image() ); ?>
							</a>
						</div>

						<div class="item-details">
							<div class="product-name">
								<h3>
									<a href="<?php echo esc_url( get_permalink( apply_filters( 'woocommerce_in_cart_product', $item->get_product_id() ) ) ); ?>">
										<?php echo wp_kses_post( apply_filters( 'woocommerce_in_cartproduct_obj_title', $product->get_title(), $product ) ); ?>
									</a>
								</h3>
								<?php do_action( 'yith_wcwl_table_after_product_name', $item ); ?>
							</div>

							<?php if ( $show_variation || $show_dateadded || $show_price ) : ?>
								<table class="item-details-table">

									<?php if ( $show_variation && $product->is_type( 'variation' ) ) : ?>
										<?php
										/**
										 * Product object representing variation for current item
										 *
										 * @var $product \WC_Product_Variation
										 */
										$attributes = $product->get_attributes();

										if ( ! empty( $attributes ) ) :
											foreach ( $attributes as $name => $value ) :
												if ( ! taxonomy_exists( $name ) ) {
													continue;
												}

												$attribute = get_term_by( 'slug', $value, $name );

												if ( ! is_wp_error( $attribute ) && ! empty( $attribute->name ) ) {
													$value = $attribute->name;
												}
												?>
												<tr>
													<td class="label">
														<?php echo esc_attr( wc_attribute_label( $name, $product ) ); ?>:
													</td>
													<td class="value">
														<?php echo esc_attr( rawurldecode( $value ) ); ?>
													</td>
												</tr>
												<?php
											endforeach;
										endif;
										?>
									<?php endif; ?>

									<?php if ( $show_dateadded && $item->get_date_added() ) : ?>
										<tr>
											<td class="label">
												<?php esc_html_e( 'Added on:', 'yith-woocommerce-wishlist' ); ?>
											</td>
											<td class="value">
												<?php echo esc_html( $item->get_date_added_formatted() ); ?>
											</td>
										</tr>
									<?php endif; ?>

									<?php if ( $show_price || $show_price_variations ) : ?>
										<tr>
											<td class="label">
												<?php esc_html_e( 'Price:', 'yith-woocommerce-wishlist' ); ?>
											</td>
											<td class="value">
												<?php
												if ( $show_price ) {
													echo wp_kses_post( $item->get_formatted_product_price() );
												}

												if ( $show_price_variations ) {
													echo wp_kses_post( $item->get_price_variation() );
												}
												?>
											</td>
										</tr>
									<?php endif ?>

								</table>
							<?php endif; ?>
						</div>
					</div>

					<div class="additional-info-wrapper">
						<?php if ( $show_quantity || $show_stock_status ) : ?>
							<table class="additional-info">
								<?php if ( $show_quantity ) : ?>
									<tr>
										<td class="label">
											<?php esc_html_e( 'Quantity:', 'yith-woocommerce-wishlist' ); ?>
										</td>
										<td class="value">
											<?php if ( ! $no_interactions && $wishlist->current_user_can( 'update_quantity' ) ) : ?>
												<input type="number" min="1" step="1" name="items[<?php echo esc_attr( $item->get_product_id() ); ?>][quantity]" value="<?php echo esc_attr( $item->get_quantity() ); ?>"/>
											<?php else : ?>
												<?php echo esc_html( $item->get_quantity() ); ?>
											<?php endif; ?>
										</td>
									</tr>
								<?php endif; ?>

								<?php if ( $show_stock_status ) : ?>
									<tr>
										<td class="label">
											<?php esc_html_e( 'Stock:', 'yith-woocommerce-wishlist' ); ?>
										</td>
										<td class="value">
											<?php echo 'out-of-stock' === $stock_status ? '<span class="wishlist-out-of-stock">' . esc_html__( 'Out of stock', 'yith-woocommerce-wishlist' ) . '</span>' : '<span class="wishlist-in-stock">' . esc_html__( 'In Stock', 'yith-woocommerce-wishlist' ) . '</span>'; ?>
										</td>
									</tr>
								<?php endif ?>
							</table>
						<?php endif; ?>

						<!-- Add to cart button -->
						<?php $show_add_to_cart = apply_filters( 'yith_wcwl_table_product_show_add_to_cart', $show_add_to_cart, $item, $wishlist ); ?>
						<?php if ( $show_add_to_cart && isset( $stock_status ) && 'out-of-stock' !== $stock_status ) : ?>
							<div class="product-add-to-cart">
								<?php woocommerce_template_loop_add_to_cart( array( 'quantity' => $show_quantity ? $item->get_quantity() : 1 ) ); ?>
							</div>
						<?php endif ?>

						<!-- Change wishlist -->
						<?php if ( $move_to_another_wishlist && $available_multi_wishlist && count( $users_wishlists ) > 1 ) : ?>
							<div class="move-to-another-wishlist">
								<?php if ( 'select' === $move_to_another_wishlist_type ) : ?>
									<select class="change-wishlist selectBox">
										<option value=""><?php esc_html_e( 'Move', 'yith-woocommerce-wishlist' ); ?></option>
										<?php
										foreach ( $users_wishlists as $wl ) :
											/**
											 * Each of customer wishlists
											 *
											 * @var $wl \YITH_WCWL_Wishlist
											 */
											if ( $wl->get_token() === $wishlist_token ) {
												continue;
											}
											?>
											<option value="<?php echo esc_attr( $wl->get_token() ); ?>">
												<?php echo esc_html( sprintf( '%s - %s', $wl->get_formatted_name(), $wl->get_formatted_privacy() ) ); ?>
											</option>
											<?php
										endforeach;
										?>
									</select>
								<?php else : ?>
									<a href="#move_to_another_wishlist" class="move-to-another-wishlist-button" data-rel="prettyPhoto[move_to_another_wishlist]">
										<?php echo esc_html( apply_filters( 'yith_wcwl_move_to_another_list_label', __( 'Move to another list &rsaquo;', 'yith-woocommerce-wishlist' ) ) ); ?>
									</a>
								<?php endif; ?>
							</div>
						<?php endif; ?>

						<?php if ( $show_remove_product || $repeat_remove_button ) : ?>
							<div class="product-remove">
								<a href="<?php echo esc_url( $item->get_remove_url() ); ?>" class="remove_from_wishlist" title="<?php echo esc_html( apply_filters( 'yith_wcwl_remove_product_wishlist_message_title', __( 'Remove this product', 'yith-woocommerce-wishlist' ) ) ); ?>"><i class="fa fa-trash"></i></a>
							</div>
						<?php endif; ?>
					</div>
				</li>
				<?php
			endif;
		endforeach;
	else :
		?>
		<p class="wishlist-empty">
			<?php echo esc_html( apply_filters( 'yith_wcwl_no_product_to_remove_message', __( 'No products added to the wishlist', 'yith-woocommerce-wishlist' ) ) ); ?>
		</p>
	<?php endif; ?>

</ul>

<?php if ( ! empty( $page_links ) ) : ?>
	<nav class="wishlist-pagination">
		<?php echo wp_kses_post( $page_links ); ?>
	</nav>
<?php endif; ?>
PK`x1\/��~		#templates/add-to-wishlist-added.phpnu�[���<?php
/**
 * Add to wishlist button template - Added to list
 *
 * @author YITH
 * @package YITH\Wishlist\Templates\AddToWishlist
 * @version 3.0.12
 */

/**
 * Template variables:
 *
 * @var $wishlist_url              string Url to wishlist page
 * @var $exists                    bool Whether current product is already in wishlist
 * @var $show_exists               bool Whether to show already in wishlist link on multi wishlist
 * @var $product_id                int Current product id
 * @var $parent_product_id         int Parent for current product
 * @var $product_type              string Current product type
 * @var $label                     string Button label
 * @var $browse_wishlist_text      string Browse wishlist text
 * @var $already_in_wishslist_text string Already in wishlist text
 * @var $product_added_text        string Product added text
 * @var $icon                      string Icon for Add to Wishlist button
 * @var $link_classes              string Classed for Add to Wishlist button
 * @var $available_multi_wishlist  bool Whether add to wishlist is available or not
 * @var $disable_wishlist          bool Whether wishlist is disabled or not
 * @var $template_part             string Template part
 * @var $loop_position             string Loop position
 * @var $is_single                 bool Whether we're on single template
 */

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

global $product;
?>

<!-- ADDED TO WISHLIST MESSAGE -->
<div class="yith-wcwl-wishlistaddedbrowse" data-product-id="<?php echo esc_attr( $product_id ); ?>" data-original-product-id="<?php echo esc_attr( $parent_product_id ); ?>">
	<span class="feedback">
		<?php echo yith_wcwl_kses_icon( $icon ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>
		<?php echo wp_kses_post( $product_added_text ); ?>
	</span>
	<a href="<?php echo esc_url( $wishlist_url ); ?>" rel="nofollow" data-title="<?php echo esc_attr( $browse_wishlist_text ); ?>">
		<?php echo ( ! $is_single && 'before_image' === $loop_position ) ? yith_wcwl_kses_icon( $icon ) : false; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>
		<?php echo wp_kses_post( apply_filters( 'yith_wcwl_browse_wishlist_label', $browse_wishlist_text, $product_id, $icon ) ); ?>
	</a>
</div>
PK`x1\\i�**templates/share.phpnu�[���<?php
/**
 * Share template
 *
 * @author YITH
 * @package YITH\Wishlist\Templates
 * @version 3.0.0
 */

/**
 * Template variables:
 *
 * @var $wishlist                YITH_WCWL_Wishlist Wishlist object
 * @var $share_title             string Title for share section
 * @var $share_facebook_enabled  bool Whether to enable FB sharing button
 * @var $share_twitter_enabled   bool Whether to enable Twitter sharing button
 * @var $share_pinterest_enabled bool Whether to enable Pintereset sharing button
 * @var $share_email_enabled     bool Whether to enable Email sharing button
 * @var $share_whatsapp_enabled  bool Whether to enable WhatsApp sharing button (mobile online)
 * @var $share_url_enabled       bool Whether to enable share via url
 * @var $share_link_title        string Title to use for post (where applicable)
 * @var $share_link_url          string Url to share
 * @var $share_summary           string Summary to use for sharing on social media
 * @var $share_image_url         string Image to use for sharing on social media
 * @var $share_twitter_summary   string Summary to use for sharing on Twitter
 * @var $share_facebook_icon     string Icon for facebook sharing button
 * @var $share_twitter_icon      string Icon for twitter sharing button
 * @var $share_pinterest_icon    string Icon for pinterest sharing button
 * @var $share_email_icon        string Icon for email sharing button
 * @var $share_whatsapp_icon     string Icon for whatsapp sharing button
 * @var $share_whatsapp_url      string Sharing url on whatsapp
 */

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

<?php
// we want spaces to be encoded as + instead of %20, so we use urlencode instead of rawurlencode.
// phpcs:disable WordPress.PHP.DiscouragedPHPFunctions.urlencode_urlencode

do_action( 'yith_wcwl_before_wishlist_share', $wishlist );
?>

<div class="yith-wcwl-share">
	<h4 class="yith-wcwl-share-title"><?php echo esc_html( $share_title ); ?></h4>
	<ul>
		<?php if ( $share_facebook_enabled ) : ?>
			<li class="share-button">
				<a target="_blank" rel="noopener" class="facebook" href="https://www.facebook.com/sharer.php?u=<?php echo urlencode( $share_link_url ); ?>&p[title]=<?php echo esc_attr( $share_link_title ); ?>" title="<?php esc_html_e( 'Facebook', 'yith-woocommerce-wishlist' ); ?>">
					<?php echo $share_facebook_icon ? yith_wcwl_kses_icon( $share_facebook_icon ) : esc_html__( 'Facebook', 'yith-woocommerce-wishlist' ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>
				</a>
			</li>
		<?php endif; ?>

		<?php if ( $share_twitter_enabled ) : ?>
			<li class="share-button">
				<a target="_blank" rel="noopener" class="twitter" href="https://twitter.com/share?url=<?php echo urlencode( $share_link_url ); ?>&amp;text=<?php echo esc_attr( $share_twitter_summary ); ?>" title="<?php esc_html_e( 'Twitter', 'yith-woocommerce-wishlist' ); ?>">
					<?php echo $share_twitter_icon ? yith_wcwl_kses_icon( $share_twitter_icon ) : esc_html__( 'Twitter', 'yith-woocommerce-wishlist' ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>
				</a>
			</li>
		<?php endif; ?>

		<?php if ( $share_pinterest_enabled ) : ?>
			<li class="share-button">
				<a target="_blank" rel="noopener" class="pinterest" href="http://pinterest.com/pin/create/button/?url=<?php echo urlencode( $share_link_url ); ?>&amp;description=<?php echo esc_attr( $share_summary ); ?>&amp;media=<?php echo esc_attr( $share_image_url ); ?>" title="<?php esc_html_e( 'Pinterest', 'yith-woocommerce-wishlist' ); ?>" onclick="window.open(this.href); return false;">
					<?php echo $share_pinterest_icon ? yith_wcwl_kses_icon( $share_pinterest_icon ) : esc_html__( 'Pinterest', 'yith-woocommerce-wishlist' ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>
				</a>
			</li>
		<?php endif; ?>

		<?php if ( $share_email_enabled ) : ?>
			<li class="share-button">
				<a class="email" href="mailto:?subject=<?php echo esc_attr( apply_filters( 'yith_wcwl_email_share_subject', $share_link_title ) ); ?>&amp;body=<?php echo esc_attr( apply_filters( 'yith_wcwl_email_share_body', urlencode( $share_link_url ) ) ); ?>&amp;title=<?php echo esc_attr( $share_link_title ); ?>" title="<?php esc_html_e( 'Email', 'yith-woocommerce-wishlist' ); ?>">
					<?php echo $share_email_icon ? yith_wcwl_kses_icon( $share_email_icon ) : __( 'Email', 'yith-woocommerce-wishlist' ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>
				</a>
			</li>
		<?php endif; ?>

		<?php if ( $share_whatsapp_enabled ) : ?>
			<li class="share-button">
				<a class="whatsapp" href="<?php echo esc_attr( $share_whatsapp_url ); ?>" data-action="share/whatsapp/share" target="_blank" rel="noopener" title="<?php esc_html_e( 'WhatsApp', 'yith-woocommerce-wishlist' ); ?>">
					<?php echo $share_whatsapp_icon ? yith_wcwl_kses_icon( $share_whatsapp_icon ) : esc_html__( 'Whatsapp', 'yith-woocommerce-wishlist' ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>
				</a>
			</li>
		<?php endif; ?>
	</ul>

	<?php if ( $share_url_enabled ) : ?>
		<div class="yith-wcwl-after-share-section">
			<input class="copy-target" readonly="readonly" type="url" name="yith_wcwl_share_url" id="yith_wcwl_share_url" value="<?php echo esc_attr( $share_link_url ); ?>"/>
			<?php echo ( ! empty( $share_link_url ) ) ? sprintf( '<small>%s <span class="copy-trigger">%s</span> %s</small>', esc_html__( '(Now', 'yith-woocommerce-wishlist' ), esc_html__( 'copy', 'yith-woocommerce-wishlist' ), esc_html__( 'this wishlist link and share it anywhere)', 'yith-woocommerce-wishlist' ) ) : ''; ?>
		</div>
	<?php endif; ?>

	<?php do_action( 'yith_wcwl_after_share_buttons', $share_link_url, $share_title, $share_link_title ); ?>
</div>

<?php
do_action( 'yith_wcwl_after_wishlist_share', $wishlist );

// phpcs:enable WordPress.PHP.DiscouragedPHPFunctions.urlencode_urlencode
?>
PK`x1\�_F_$templates/add-to-wishlist-remove.phpnu�[���<?php
/**
 * Add to wishlist button template - Remove button
 *
 * @author YITH
 * @package YITH\Wishlist\Templates\AddToWishlist
 * @version 3.0.12
 */

/**
 * Template variables:
 *
 * @var $base_url                  string Current page url
 * @var $wishlist_url              string Url to wishlist page
 * @var $exists                    bool Whether current product is already in wishlist
 * @var $show_exists               bool Whether to show already in wishlist link on multi wishlist
 * @var $show_count                bool Whether to show count of times item was added to wishlist
 * @var $show_view                 bool Whether to show view button or not
 * @var $product_id                int Current product id
 * @var $parent_product_id         int Parent for current product
 * @var $product_type              string Current product type
 * @var $label                     string Button label
 * @var $browse_wishlist_text      string Browse wishlist text
 * @var $already_in_wishslist_text string Already in wishlist text
 * @var $product_added_text        string Product added text
 * @var $icon                      string Icon for Add to Wishlist button
 * @var $link_classes              string Classed for Add to Wishlist button
 * @var $available_multi_wishlist  bool Whether add to wishlist is available or not
 * @var $disable_wishlist          bool Whether wishlist is disabled or not
 * @var $template_part             string Template part
 * @var $container_classes         string Container classes
 * @var $found_in_list             YITH_WCWL_Wishlist Wishlist
 * @var $found_item                YITH_WCWL_Wishlist_Item Wishlist item
 */

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

global $product;
?>

<div class="yith-wcwl-add-button">
	<a
		href="<?php echo esc_url( wp_nonce_url( add_query_arg( 'remove_from_wishlist', $product_id, $base_url ), 'remove_from_wishlist' ) ); ?>"
		class="delete_item <?php echo esc_attr( $link_classes ); ?>"
		data-item-id="<?php echo esc_attr( $found_item->get_id() ); ?>"
		data-product-id="<?php echo esc_attr( $product_id ); ?>"
		data-original-product-id="<?php echo esc_attr( $parent_product_id ); ?>"
		data-title="<?php echo esc_attr( apply_filters( 'yith_wcwl_add_to_wishlist_title', $label ) ); ?>"
		rel="nofollow"
	>
		<?php echo yith_wcwl_kses_icon( $icon ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>
		<?php echo wp_kses_post( $label ); ?>
	</a>

	<?php if ( $show_view ) : ?>
		<span class="separator"><?php esc_html_e( 'or', 'yith-woocommerce-wishlist' ); ?></span>
		<a href="<?php echo esc_url( $found_in_list->get_url() ); ?>" class="view-wishlist"><?php echo esc_html( apply_filters( 'yith_wcwl_view_wishlist_label', __( 'View &rsaquo;', 'yith-woocommerce-wishlist' ) ) ); ?></a>
	<?php endif; ?>
</div>
PK`x1\p�g���"templates/wishlist-view-footer.phpnu�[���<?php
/**
 * Wishlist footer
 *
 * @author YITH
 * @package YITH\Wishlist\Templates\Wishlist\View
 * @version 3.0.0
 */

/**
 * Template variables:
 *
 * @var $wishlist                      \YITH_WCWL_Wishlist
 * @var $wishlist_token                string Current wishlist token
 * @var $show_cb                       bool Whether to show checkbox column
 * @var $show_update                   bool Whether to show update button or not
 * @var $is_user_owner                 bool Whether current user is wishlist owner
 * @var $is_private                    bool Whether current wishlist is private
 * @var $share_enabled                 bool Whether share buttons should appear
 * @var $share_atts                    array Array of options; shows which share links should be shown
 * @var $show_ask_estimate_button      bool Whether to show Ask an Estimate form
 * @var $ask_estimate_url              string Ask an estimate destination url
 * @var $ask_an_estimate_icon          string Ask an estimate button icon
 * @var $ask_an_estimate_text          string Ask an estimate button text
 * @var $ask_an_estimate_classes       string Classes to use for Ask for an estimate button
 * @var $additional_info               bool Whether to show Additional info textarea in Ask an estimate form
 * @var $enable_add_all_to_cart        bool Whether to show "Add all to Cart" button
 * @var $move_to_another_wishlist      bool Whether to show Move to another wishlist select
 * @var $move_to_another_wishlist_type string Whether to show a select or a popup for wishlist change
 * @var $available_multi_wishlist      bool Whether multi wishlist is enabled and available
 * @var $users_wishlists               array Array of current user wishlists
 * @var $count                         int Count of items in wishlist
 * @var $var                           array Array of variable passed to the template
 */

if ( ! defined( 'YITH_WCWL' ) ) {
	exit;
} // Exit if accessed directly
?>
	<div class="yith_wcwl_wishlist_footer">
		<?php if ( $count && $show_cb ) : ?>
			<!-- Bulk actions form -->
			<div class="yith_wcwl_wishlist_bulk_action">
				<label for="bulk_actions"><?php echo esc_html( apply_filters( 'yith_wcwl_wishlist_bulk_actions_label', __( 'Apply this action to all the selected items:', 'yith-woocommerce-wishlist' ) ) ); ?></label>
				<select name="bulk_actions" id="bulk_actions">
					<option value="add_to_cart"><?php esc_html_e( 'Add to cart', 'yith-woocommerce-wishlist' ); ?></option>

					<?php if ( $wishlist->current_user_can( 'remove_from_wishlist' ) ) : ?>
						<option value="delete"><?php esc_html_e( 'Remove from wishlist', 'yith-woocommerce-wishlist' ); ?></option>
					<?php endif; ?>

					<?php if ( $available_multi_wishlist && count( $users_wishlists ) > 1 && $is_user_owner ) : ?>
						<?php
						foreach ( $users_wishlists as $wl ) :
							/**
							 * Each of the wishlists owned by current user.
							 *
							 * @var $wl \YITH_WCWL_Wishlist
							 */
							if ( $wl->get_token() === $wishlist_token ) {
								continue;
							}
							?>
							<option value="<?php echo esc_attr( $wl->get_token() ); ?>">
								<?php
								// translators: 1. Wishlist formatted name.
								echo esc_html( sprintf( __( 'Move to %s', 'yith-woocommerce-wishlist' ), $wl->get_formatted_name() ) );
								?>
							</option>
						<?php endforeach; ?>
					<?php endif; ?>
				</select>
				<input type="submit" name="apply_bulk_actions" value="<?php esc_html_e( 'Apply', 'yith-woocommerce-wishlist' ); ?>"/>
			</div>
		<?php endif; ?>


		<?php if ( $count && $show_update ) : ?>
			<!-- Update wishlist button -->
			<div class="yith_wcwl_wishlist_update">
				<input type="submit" name="update_wishlist" value="<?php esc_html_e( 'Update', 'yith-woocommerce-wishlist' ); ?>"/>
			</div>
		<?php endif; ?>


		<?php if ( $count && $share_enabled ) : ?>
			<!-- Sharing section -->
			<?php yith_wcwl_get_template( 'share.php', array_merge( $share_atts, array( 'wishlist' => $wishlist ) ) ); ?>
		<?php endif; ?>

		<?php if ( $count && ( $show_ask_estimate_button || $enable_add_all_to_cart ) ) : ?>
			<div class="yith_wcwl_footer_additional_action">
				<?php if ( $count && $show_ask_estimate_button ) : ?>
					<!-- Ask an estimate button -->
					<a href="<?php echo esc_url( ( $additional_info || ! is_user_logged_in() ) ? '#ask_an_estimate_popup' : $ask_estimate_url ); ?>" class="<?php echo esc_attr( $ask_an_estimate_classes ); ?> ask-an-estimate-button" <?php echo ( $additional_info || ! is_user_logged_in() ) ? 'data-rel="prettyPhoto[ask_an_estimate]"' : ''; ?> >
						<?php echo yith_wcwl_kses_icon( apply_filters( 'yith_wcwl_ask_an_estimate_icon', $ask_an_estimate_icon ) ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>
						<?php echo esc_html( apply_filters( 'yith_wcwl_ask_an_estimate_text', $ask_an_estimate_text ) ); ?>
					</a>
				<?php endif; ?>

				<?php if ( $count && $enable_add_all_to_cart ) : ?>
					<!-- Add all to cart button -->
					<input type="submit" name="add_all_to_cart" value="<?php esc_html_e( 'Add all to cart', 'yith-woocommerce-wishlist' ); ?>"/>
				<?php endif; ?>
			</div>
		<?php endif; ?>
	</div>

	<?php wp_nonce_field( 'yith_wcwl_edit_wishlist_action', 'yith_wcwl_edit_wishlist' ); ?>
	<input type="hidden" value="<?php echo esc_attr( $wishlist_token ); ?>" name="wishlist_id" id="wishlist_id">

	<?php do_action( 'yith_wcwl_after_wishlist', $wishlist ); ?>

</form>

<?php do_action( 'yith_wcwl_after_wishlist_form', $wishlist ); ?>

<?php
if ( apply_filters( 'yith_wcwl_ask_an_estimate_conditions', $wishlist && $show_ask_estimate_button && ( ! is_user_logged_in() || $additional_info ) ) ) {
	yith_wcwl_get_template( 'wishlist-popup-ask-an-estimate.php', $var );
}
?>

<?php
if ( apply_filters( 'yith_wcwl_move_to_another_wishlist_popup_conditions', $wishlist && $move_to_another_wishlist && 'popup' === $move_to_another_wishlist_type && $available_multi_wishlist && count( $users_wishlists ) > 1, $wishlist ) ) {
	yith_wcwl_get_template( 'wishlist-popup-move.php', $var );
}
?>
PK`x1\��O��$templates/add-to-wishlist-button.phpnu�[���<?php
/**
 * Add to wishlist button template
 *
 * @author YITH
 * @package YITH\Wishlist\Templates\AddToWishlist
 * @version 3.0.12
 */

/**
 * Template variables:
 *
 * @var $base_url string Current page url
 * @var $wishlist_url              string Url to wishlist page
 * @var $exists                    bool Whether current product is already in wishlist
 * @var $show_exists               bool Whether to show already in wishlist link on multi wishlist
 * @var $show_count                bool Whether to show count of times item was added to wishlist
 * @var $product_id                int Current product id
 * @var $parent_product_id         int Parent for current product
 * @var $product_type              string Current product type
 * @var $label                     string Button label
 * @var $browse_wishlist_text      string Browse wishlist text
 * @var $already_in_wishslist_text string Already in wishlist text
 * @var $product_added_text        string Product added text
 * @var $icon                      string Icon for Add to Wishlist button
 * @var $link_classes              string Classed for Add to Wishlist button
 * @var $available_multi_wishlist  bool Whether add to wishlist is available or not
 * @var $disable_wishlist          bool Whether wishlist is disabled or not
 * @var $template_part             string Template part
 * @var $container_classes         string Container classes
 */

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

global $product;
?>

<div class="yith-wcwl-add-button">
	<a
		href="<?php echo esc_url( wp_nonce_url( add_query_arg( 'add_to_wishlist', $product_id, $base_url ), 'add_to_wishlist' ) ); ?>"
		class="<?php echo esc_attr( $link_classes ); ?>"
		data-product-id="<?php echo esc_attr( $product_id ); ?>"
		data-product-type="<?php echo esc_attr( $product_type ); ?>"
		data-original-product-id="<?php echo esc_attr( $parent_product_id ); ?>"
		data-title="<?php echo esc_attr( apply_filters( 'yith_wcwl_add_to_wishlist_title', $label ) ); ?>"
		rel="nofollow"
	>
		<?php echo yith_wcwl_kses_icon( $icon ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>
		<span><?php echo wp_kses_post( $label ); ?></span>
	</a>
</div>
PK`x1\���init.phpnu�[���<?php
/**
 * Plugin Name: YITH WooCommerce Wishlist
 * Plugin URI: https://yithemes.com/themes/plugins/yith-woocommerce-wishlist/
 * Description: <code><strong>YITH WooCommerce Wishlist</strong></code> gives your users the possibility to create, fill, manage and share their wishlists allowing you to analyze their interests and needs to improve your marketing strategies. <a href="https://yithemes.com/" target="_blank">Get more plugins for your e-commerce on <strong>YITH</strong></a>
 * Version: 3.3.0
 * Author: YITH
 * Author URI: https://yithemes.com/
 * Text Domain: yith-woocommerce-wishlist
 * Domain Path: /languages/
 * WC requires at least: 5.6
 * WC tested up to: 5.9
 *
 * @author YITH
 * @package YITH\Wishlist
 * @version 3.0.0
 */

/**
 * Copyright 2020  Your Inspiration Solutions (email : plugins@yithemes.com)
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License, version 3, as
 * published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
 */

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

if ( ! function_exists( 'yith_plugin_registration_hook' ) ) {
	require_once 'plugin-fw/yit-plugin-registration-hook.php';
}
register_activation_hook( __FILE__, 'yith_plugin_registration_hook' );

if ( ! defined( 'YITH_WCWL' ) ) {
	define( 'YITH_WCWL', true );
}

if ( ! defined( 'YITH_WCWL_URL' ) ) {
	define( 'YITH_WCWL_URL', plugin_dir_url( __FILE__ ) );
}

if ( ! defined( 'YITH_WCWL_DIR' ) ) {
	define( 'YITH_WCWL_DIR', plugin_dir_path( __FILE__ ) );
}

if ( ! defined( 'YITH_WCWL_INC' ) ) {
	define( 'YITH_WCWL_INC', YITH_WCWL_DIR . 'includes/' );
}

if ( ! defined( 'YITH_WCWL_INIT' ) ) {
	define( 'YITH_WCWL_INIT', plugin_basename( __FILE__ ) );
}

if ( ! defined( 'YITH_WCWL_FREE_INIT' ) ) {
	define( 'YITH_WCWL_FREE_INIT', plugin_basename( __FILE__ ) );
}

if ( ! defined( 'YITH_WCWL_SLUG' ) ) {
	define( 'YITH_WCWL_SLUG', 'yith-woocommerce-wishlist' );
}

/* Plugin Framework Version Check */
if ( ! function_exists( 'yit_maybe_plugin_fw_loader' ) && file_exists( YITH_WCWL_DIR . 'plugin-fw/init.php' ) ) {
	require_once YITH_WCWL_DIR . 'plugin-fw/init.php';
}
yit_maybe_plugin_fw_loader( YITH_WCWL_DIR );

if ( ! function_exists( 'yith_wishlist_constructor' ) ) {
	/**
	 * Bootstrap function; loads all required dependencies and start the process
	 *
	 * @return void
	 * @since 2.0.0
	 */
	function yith_wishlist_constructor() {

		load_plugin_textdomain( 'yith-woocommerce-wishlist', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/' );

		// Load required classes and functions.
		require_once YITH_WCWL_INC . 'data-stores/class-yith-wcwl-wishlist-data-store.php';
		require_once YITH_WCWL_INC . 'data-stores/class-yith-wcwl-wishlist-item-data-store.php';
		require_once YITH_WCWL_INC . 'functions-yith-wcwl.php';
		require_once YITH_WCWL_INC . 'legacy/functions-yith-wcwl-legacy.php';
		require_once YITH_WCWL_INC . 'class-yith-wcwl-exception.php';
		require_once YITH_WCWL_INC . 'class-yith-wcwl-form-handler.php';
		require_once YITH_WCWL_INC . 'class-yith-wcwl-ajax-handler.php';
		require_once YITH_WCWL_INC . 'class-yith-wcwl-session.php';
		require_once YITH_WCWL_INC . 'class-yith-wcwl-cron.php';
		require_once YITH_WCWL_INC . 'class-yith-wcwl-wishlist.php';
		require_once YITH_WCWL_INC . 'class-yith-wcwl-wishlist-item.php';
		require_once YITH_WCWL_INC . 'class-yith-wcwl-wishlist-factory.php';
		require_once YITH_WCWL_INC . 'class-yith-wcwl.php';
		require_once YITH_WCWL_INC . 'class-yith-wcwl-frontend.php';
		require_once YITH_WCWL_INC . 'class-yith-wcwl-install.php';
		require_once YITH_WCWL_INC . 'class-yith-wcwl-shortcode.php';

		if ( is_admin() ) {
			require_once YITH_WCWL_INC . 'class-yith-wcwl-admin.php';
		}

		// Let's start the game!

		/**
		 * $yith_wcwl global was deprecated since 3.0.0
		 *
		 * @deprecated
		 */
		global $yith_wcwl;
		$yith_wcwl = YITH_WCWL();
	}
}
add_action( 'yith_wcwl_init', 'yith_wishlist_constructor' );

if ( ! function_exists( 'yith_wishlist_install' ) ) {
	/**
	 * Performs pre-flight checks, and gives green light for plugin bootstrap
	 *
	 * @return void
	 * @since 2.0.0
	 */
	function yith_wishlist_install() {

		if ( ! function_exists( 'is_plugin_active' ) ) {
			require_once ABSPATH . 'wp-admin/includes/plugin.php';
		}

		if ( ! function_exists( 'WC' ) ) {
			add_action( 'admin_notices', 'yith_wcwl_install_woocommerce_admin_notice' );
		} elseif ( defined( 'YITH_WCWL_PREMIUM' ) ) {
			add_action( 'admin_notices', 'yith_wcwl_install_free_admin_notice' );
			deactivate_plugins( plugin_basename( __FILE__ ) );
		} else {
			do_action( 'yith_wcwl_init' );
		}
	}
}
add_action( 'plugins_loaded', 'yith_wishlist_install', 11 );

if ( ! function_exists( 'yith_wcwl_install_woocommerce_admin_notice' ) ) {
	/**
	 * Shows admin notice when plugin is activated without WooCommerce
	 *
	 * @return void
	 * @since 2.0.0
	 */
	function yith_wcwl_install_woocommerce_admin_notice() {
		?>
		<div class="error">
			<p><?php echo esc_html( 'YITH WooCommerce Wishlist ' . __( 'is enabled but not effective. It requires WooCommerce to work.', 'yith-woocommerce-wishlist' ) ); ?></p>
		</div>
		<?php
	}
}

if ( ! function_exists( 'yith_wcwl_install_free_admin_notice' ) ) {
	/**
	 * Shows admin notice when plugin is activated together with premium version
	 *
	 * @return void
	 * @since 2.0.0
	 */
	function yith_wcwl_install_free_admin_notice() {
		?>
		<div class="error">
			<p><?php echo esc_html( __( 'You can\'t activate the free version of', 'yith-woocommerce-wishlist' ) . 'YITH WooCommerce Wishlist' . __( 'while you are using the premium one.', 'yith-woocommerce-wishlist' ) ); ?></p>
		</div>
		<?php
	}
}
PK`x1\Yr��� plugin-options/lists-options.phpnu�[���<?php
/**
 * Lists options page
 *
 * @author YITH
 * @package YITH\Wishlist\Options
 * @version 3.0.0
 */

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

return apply_filters(
	'yith_wcwl_list_options',
	array(
		'lists' => array(
			'lists_section_start' => array(
				'type' => 'title',
				'desc' => '',
				'id'   => 'yith_wcwl_lists_settings',
			),

			'wishlists'           => array(
				'name'                 => __( 'Wishlists', 'yith-woocommerce-wishlist' ),
				'type'                 => 'yith-field',
				'yith-type'            => 'list-table',

				'class'                => '',
				'list_table_class'     => 'YITH_WCWL_Admin_Table',
				'list_table_class_dir' => YITH_WCWL_INC . 'tables/class-yith-wcwl-admin-table.php',
				'title'                => __( 'Wishlists', 'yith-woocommerce-wishlist' ),
				'search_form'          => array(
					'text'     => __( 'Search list', 'yith-woocommerce-wishlist' ),
					'input_id' => 'search_list',
				),
				'id'                   => 'wishlist-filter',
			),

			'lists_section_end'   => array(
				'type' => 'sectionend',
				'id'   => 'yith_wcwl_lists_settings',
			),

		),
	)
);
PK`x1\�|�mm"plugin-options/premium-options.phpnu�[���<?php
/**
 * Color settings page
 *
 * @author  Your Inspiration Themes
 * @package YITH WooCommerce Wishlist
 * @version 2.0.0
 */

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

return array(
	'premium' => array(
		'landing' => array(
			'type' => 'custom_tab',
			'action' => 'yith_wcwl_premium_tab',
			'hide_sidebar' => true
		)
	)
);PK`x1\�ڳ��n�n(plugin-options/wishlist_page-options.phpnu�[���<?php // phpcs:ignore WordPress.Files.FileName.NotHyphenatedLowercase
/**
 * Wishlist Page settings
 *
 * @author YITH
 * @package YITH\Wishlist\Options
 * @version 3.0.0
 */

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

return apply_filters(
	'yith_wcwl_wishlist_page_options',
	array(
		'wishlist_page' => array(
			'manage_section_start'     => array(
				'name' => __( 'All your wishlists', 'yith-woocommerce-wishlist' ),
				'type' => 'title',
				'desc' => '',
				'id'   => 'yith_wcwl_manage_settings',
			),

			'wishlist_page'            => array(
				'name'    => __( 'Wishlist page', 'yith-woocommerce-wishlist' ),
				'desc'    => __( 'Pick a page as the main Wishlist page; make sure you add the <span class="code"><code>[yith_wcwl_wishlist]</code></span> shortcode into the page content', 'yith-woocommerce-wishlist' ),
				'id'      => 'yith_wcwl_wishlist_page_id',
				'type'    => 'single_select_page',
				'default' => '',
				'class'   => 'chosen_select_nostd',
			),

			'manage_section_end'       => array(
				'type' => 'sectionend',
				'id'   => 'yith_wcwl_manage_settings',
			),

			'wishlist_section_start'   => array(
				'name' => __( 'Wishlist Detail Page', 'yith-woocommerce-wishlist' ),
				'type' => 'title',
				'desc' => '',
				'id'   => 'yith_wcwl_wishlist_settings',
			),

			'show_product_variation'   => array(
				'name'          => __( 'In wishlist table show', 'yith-woocommerce-wishlist' ),
				'desc'          => __( 'Product variations selected by the user (example: size or color)', 'yith-woocommerce-wishlist' ),
				'id'            => 'yith_wcwl_variation_show',
				'type'          => 'checkbox',
				'default'       => '',
				'checkboxgroup' => 'start',
			),

			'show_unit_price'          => array(
				'name'          => __( 'In wishlist table show', 'yith-woocommerce-wishlist' ),
				'desc'          => __( 'Product price', 'yith-woocommerce-wishlist' ),
				'id'            => 'yith_wcwl_price_show',
				'type'          => 'checkbox',
				'default'       => 'yes',
				'checkboxgroup' => 'wishlist_info',
			),

			'show_stock_status'        => array(
				'name'          => __( 'In wishlist table show', 'yith-woocommerce-wishlist' ),
				'desc'          => __( 'Product stock (show if the product is available or not)', 'yith-woocommerce-wishlist' ),
				'id'            => 'yith_wcwl_stock_show',
				'type'          => 'checkbox',
				'default'       => 'yes',
				'checkboxgroup' => 'wishlist_info',
			),

			'show_dateadded'           => array(
				'name'          => __( 'In wishlist table show', 'yith-woocommerce-wishlist' ),
				'desc'          => __( 'Date on which the product was added to the wishlist', 'yith-woocommerce-wishlist' ),
				'id'            => 'yith_wcwl_show_dateadded',
				'type'          => 'checkbox',
				'default'       => '',
				'checkboxgroup' => 'wishlist_info',
			),

			'show_add_to_cart'         => array(
				'name'          => __( 'In wishlist table show', 'yith-woocommerce-wishlist' ),
				'desc'          => __( 'Add to cart option for each product', 'yith-woocommerce-wishlist' ),
				'id'            => 'yith_wcwl_add_to_cart_show',
				'type'          => 'checkbox',
				'default'       => 'yes',
				'checkboxgroup' => 'wishlist_info',
			),

			'show_remove_button'       => array(
				'name'          => __( 'In wishlist table show', 'yith-woocommerce-wishlist' ),
				'desc'          => __( 'Icon to remove the product from the wishlist - to the left of the product', 'yith-woocommerce-wishlist' ),
				'id'            => 'yith_wcwl_show_remove',
				'type'          => 'checkbox',
				'default'       => 'yes',
				'checkboxgroup' => 'wishlist_info',
			),

			'repeat_remove_button'     => array(
				'name'          => __( 'In wishlist table show', 'yith-woocommerce-wishlist' ),
				'desc'          => __( 'Button to remove the product from the wishlist - to the right of the product', 'yith-woocommerce-wishlist' ),
				'id'            => 'yith_wcwl_repeat_remove_button',
				'type'          => 'checkbox',
				'default'       => '',
				'checkboxgroup' => 'end',
			),

			'redirect_to_cart'         => array(
				'name'      => __( 'Redirect to cart', 'yith-woocommerce-wishlist' ),
				'desc'      => __( 'Redirect users to the cart page when they add a product to the cart from the wishlist page', 'yith-woocommerce-wishlist' ),
				'id'        => 'yith_wcwl_redirect_cart',
				'default'   => 'no',
				'type'      => 'yith-field',
				'yith-type' => 'onoff',
			),

			'remove_after_add_to_cart' => array(
				'name'      => __( 'Remove if added to the cart', 'yith-woocommerce-wishlist' ),
				'desc'      => __( 'Remove the product from the wishlist after it has been added to the cart', 'yith-woocommerce-wishlist' ),
				'id'        => 'yith_wcwl_remove_after_add_to_cart',
				'default'   => 'yes',
				'type'      => 'yith-field',
				'yith-type' => 'onoff',
			),

			'enable_wishlist_share'    => array(
				'name'      => __( 'Share wishlist', 'yith-woocommerce-wishlist' ),
				'desc'      => __( 'Enable this option to let users share their wishlist on social media', 'yith-woocommerce-wishlist' ),
				'id'        => 'yith_wcwl_enable_share',
				'type'      => 'yith-field',
				'yith-type' => 'onoff',
				'default'   => 'yes',
			),

			'share_on_facebook'        => array(
				'name'          => __( 'Share on social media', 'yith-woocommerce-wishlist' ),
				'desc'          => __( 'Share on Facebook', 'yith-woocommerce-wishlist' ),
				'id'            => 'yith_wcwl_share_fb',
				'default'       => 'yes',
				'type'          => 'checkbox',
				'checkboxgroup' => 'start',
			),

			'share_on_twitter'         => array(
				'name'          => __( 'Share on social media', 'yith-woocommerce-wishlist' ),
				'desc'          => __( 'Tweet on Twitter', 'yith-woocommerce-wishlist' ),
				'id'            => 'yith_wcwl_share_twitter',
				'default'       => 'yes',
				'type'          => 'checkbox',
				'checkboxgroup' => 'wishlist_share',
			),

			'share_on_pinterest'       => array(
				'name'          => __( 'Share on social media', 'yith-woocommerce-wishlist' ),
				'desc'          => __( 'Pin on Pinterest', 'yith-woocommerce-wishlist' ),
				'id'            => 'yith_wcwl_share_pinterest',
				'default'       => 'yes',
				'type'          => 'checkbox',
				'checkboxgroup' => 'wishlist_share',
			),

			'share_by_email'           => array(
				'name'          => __( 'Share on social media', 'yith-woocommerce-wishlist' ),
				'desc'          => __( 'Share by email', 'yith-woocommerce-wishlist' ),
				'id'            => 'yith_wcwl_share_email',
				'default'       => 'yes',
				'type'          => 'checkbox',
				'checkboxgroup' => 'wishlist_share',
			),

			'share_by_whatsapp'        => array(
				'name'          => __( 'Share on social media', 'yith-woocommerce-wishlist' ),
				'desc'          => __( 'Share on WhatsApp', 'yith-woocommerce-wishlist' ),
				'id'            => 'yith_wcwl_share_whatsapp',
				'default'       => 'yes',
				'type'          => 'checkbox',
				'checkboxgroup' => 'wishlist_share',
			),

			'share_by_url'             => array(
				'name'          => __( 'Share by URL', 'yith-woocommerce-wishlist' ),
				'desc'          => __( 'Show "Share URL" field on wishlist page', 'yith-woocommerce-wishlist' ),
				'id'            => 'yith_wcwl_share_url',
				'default'       => 'no',
				'type'          => 'checkbox',
				'checkboxgroup' => 'end',
			),

			'socials_title'            => array(
				'name'    => __( 'Sharing title', 'yith-woocommerce-wishlist' ),
				'desc'    => __( 'Wishlist title used for sharing (only used on Twitter and Pinterest)', 'yith-woocommerce-wishlist' ),
				'id'      => 'yith_wcwl_socials_title',
				// translators: 1. Blog name.
				'default' => sprintf( __( 'My wishlist on %s', 'yith-woocommerce-wishlist' ), get_bloginfo( 'name' ) ),
				'type'    => 'text',
			),

			'socials_text'             => array(
				'name'      => __( 'Social text', 'yith-woocommerce-wishlist' ),
				'desc'      => __( 'Type the message you want to publish when you share your wishlist on Twitter and Pinterest', 'yith-woocommerce-wishlist' ),
				'id'        => 'yith_wcwl_socials_text',
				'default'   => '',
				'type'      => 'yith-field',
				'yith-type' => 'textarea',
			),

			'socials_image'            => array(
				'name'    => __( 'Social image URL', 'yith-woocommerce-wishlist' ),
				'desc'    => __( 'It will be used to pin the wishlist on Pinterest.', 'yith-woocommerce-wishlist' ),
				'id'      => 'yith_wcwl_socials_image_url',
				'default' => '',
				'type'    => 'text',
			),

			'wishlist_section_end'     => array(
				'type' => 'sectionend',
				'id'   => 'yith_wcwl_wishlist_settings',
			),

			'text_section_start'       => array(
				'name' => __( 'Text customization', 'yith-woocommerce-wishlist' ),
				'type' => 'title',
				'desc' => '',
				'id'   => 'yith_wcwl_text_section_settings',
			),

			'default_wishlist_title'   => array(
				'name'    => __( 'Default wishlist name', 'yith-woocommerce-wishlist' ),
				'desc'    => __( 'Enter a name for the default wishlist. This is the wishlist that will be automatically generated for all users if they do not create any custom one', 'yith-woocommerce-wishlist' ),
				'id'      => 'yith_wcwl_wishlist_title',
				'default' => __( 'My wishlist', 'yith-woocommerce-wishlist' ),
				'type'    => 'text',
			),

			'add_to_cart_text'         => array(
				'name'    => __( '"Add to cart" text', 'yith-woocommerce-wishlist' ),
				'desc'    => __( 'Enter a text for the "Add to cart" button', 'yith-woocommerce-wishlist' ),
				'id'      => 'yith_wcwl_add_to_cart_text',
				'default' => __( 'Add to cart', 'yith-woocommerce-wishlist' ),
				'type'    => 'text',
			),

			'text_section_end'         => array(
				'type' => 'sectionend',
				'id'   => 'yith_wcwl_text_section_settings',
			),

			'style_section_start'      => array(
				'name' => __( 'Style & color customization', 'yith-woocommerce-wishlist' ),
				'type' => 'title',
				'desc' => '',
				'id'   => 'yith_wcwl_style_section_settings',
			),

			'use_buttons'              => array(
				'name'      => __( 'Style of "Add to cart"', 'yith-woocommerce-wishlist' ),
				'desc'      => __( 'Choose whether to show a textual "Add to cart" link or a button', 'yith-woocommerce-wishlist' ),
				'id'        => 'yith_wcwl_add_to_cart_style',
				'options'   => array(
					'link'           => __( 'Textual (anchor)', 'yith-woocommerce-wishlist' ),
					'button_default' => __( 'Button with theme style', 'yith-woocommerce-wishlist' ),
					'button_custom'  => __( 'Button with custom style', 'yith-woocommerce-wishlist' ),
				),
				'default'   => 'link',
				'type'      => 'yith-field',
				'yith-type' => 'radio',
			),

			'add_to_cart_colors'       => array(
				'name'         => __( '"Add to cart" button style', 'yith-woocommerce-wishlist' ),
				'id'           => 'yith_wcwl_color_add_to_cart',
				'type'         => 'yith-field',
				'yith-type'    => 'multi-colorpicker',
				'colorpickers' => array(
					array(
						'desc' => __( 'Choose the colors for the "Add to cart" button', 'yith-woocommerce-wishlist' ),
						array(
							'name'    => __( 'Background', 'yith-woocommerce-wishlist' ),
							'id'      => 'background',
							'default' => '#333333',
						),
						array(
							'name'    => __( 'Text', 'yith-woocommerce-wishlist' ),
							'id'      => 'text',
							'default' => '#FFFFFF',
						),
						array(
							'name'    => __( 'Border', 'yith-woocommerce-wishlist' ),
							'id'      => 'border',
							'default' => '#333333',
						),
					),
					array(
						'desc' => __( 'Choose colors for the "Add to cart" button on hover state', 'yith-woocommerce-wishlist' ),
						array(
							'name'    => __( 'Background Hover', 'yith-woocommerce-wishlist' ),
							'id'      => 'background_hover',
							'default' => '#4F4F4F',
						),
						array(
							'name'    => __( 'Text Hover', 'yith-woocommerce-wishlist' ),
							'id'      => 'text_hover',
							'default' => '#FFFFFF',
						),
						array(
							'name'    => __( 'Border Hover', 'yith-woocommerce-wishlist' ),
							'id'      => 'border_hover',
							'default' => '#4F4F4F',
						),
					),
				),
				'deps'         => array(
					'id'    => 'yith_wcwl_add_to_cart_style',
					'value' => 'button_custom',
				),
			),

			'rounded_buttons_radius'   => array(
				'name'      => __( 'Border radius', 'yith-woocommerce-wishlist' ),
				'desc'      => __( 'Set the radius for the "Add to cart" button', 'yith-woocommerce-wishlist' ),
				'id'        => 'yith_wcwl_add_to_cart_rounded_corners_radius',
				'default'   => 16,
				'type'      => 'yith-field',
				'yith-type' => 'slider',
				'min'       => 1,
				'max'       => 100,
				'deps'      => array(
					'id'    => 'yith_wcwl_add_to_cart_style',
					'value' => 'button_custom',
				),
			),

			'add_to_cart_icon'         => array(
				'name'      => __( '"Add to cart" icon', 'yith-woocommerce-wishlist' ),
				'desc'      => __( 'Select an icon for the "Add to cart" button (optional)', 'yith-woocommerce-wishlist' ),
				'id'        => 'yith_wcwl_add_to_cart_icon',
				'default'   => apply_filters( 'yith_wcwl_add_to_cart_std_icon', 'fa-shopping-cart' ),
				'type'      => 'yith-field',
				'yith-type' => 'select',
				'class'     => 'icon-select',
				'options'   => yith_wcwl_get_plugin_icons(),
				'deps'      => array(
					'id'    => 'yith_wcwl_add_to_cart_style',
					'value' => 'button_custom',
				),

			),

			'add_to_cart_custom_icon'  => array(
				'name'      => __( '"Add to cart" custom icon', 'yith-woocommerce-wishlist' ),
				'desc'      => __( 'Upload an icon you\'d like to use for the "Add to cart" button (suggested 32px x 32px)', 'yith-woocommerce-wishlist' ),
				'id'        => 'yith_wcwl_add_to_cart_custom_icon',
				'default'   => '',
				'type'      => 'yith-field',
				'yith-type' => 'upload',
			),

			'style_1_button_colors'    => array(
				'name'         => __( 'Primary button style', 'yith-woocommerce-wishlist' ),
				'id'           => 'yith_wcwl_color_button_style_1',
				'type'         => 'yith-field',
				'yith-type'    => 'multi-colorpicker',
				'colorpickers' => array(
					array(
						'desc' => __( 'Choose colors for the primary button<br/><small>This style will be applied to "Edit title" button on Wishlist view, "Submit Changes" button on Manage view and "Search wishlist" button on Search view</small>', 'yith-woocommerce-wishlist' ),
						array(
							'name'    => __( 'Background', 'yith-woocommerce-wishlist' ),
							'id'      => 'background',
							'default' => '#333333',
						),
						array(
							'name'    => __( 'Text', 'yith-woocommerce-wishlist' ),
							'id'      => 'text',
							'default' => '#FFFFFF',
						),
						array(
							'name'    => __( 'Border', 'yith-woocommerce-wishlist' ),
							'id'      => 'border',
							'default' => '#333333',
						),
					),
					array(
						'desc' => __( 'Choose colors for the primary button on hover state<br/><small>This style will be applied to "Edit title" button on Wishlist view, "Submit Changes" button on Manage view and "Search wishlist" button on Search view</small>', 'yith-woocommerce-wishlist' ),
						array(
							'name'    => __( 'Background Hover', 'yith-woocommerce-wishlist' ),
							'id'      => 'background_hover',
							'default' => '#4F4F4F',
						),
						array(
							'name'    => __( 'Text Hover', 'yith-woocommerce-wishlist' ),
							'id'      => 'text_hover',
							'default' => '#FFFFFF',
						),
						array(
							'name'    => __( 'Border Hover', 'yith-woocommerce-wishlist' ),
							'id'      => 'border_hover',
							'default' => '#4F4F4F',
						),
					),
				),
				'deps'         => array(
					'id'    => 'yith_wcwl_add_to_cart_style',
					'value' => 'button_custom',
				),
			),

			'style_2_button_colors'    => array(
				'name'         => __( 'Secondary button style', 'yith-woocommerce-wishlist' ),
				'id'           => 'yith_wcwl_color_button_style_2',
				'type'         => 'yith-field',
				'yith-type'    => 'multi-colorpicker',
				'colorpickers' => array(
					array(
						'desc' => __( 'Choose colors of the secondary button<br/><small>This style will be applied to the buttons that allow showing and hiding the Edit title form on Wishlist view and "Create new Wishlist" button on Manage view</small>', 'yith-woocommerce-wishlist' ),
						array(
							'name'    => __( 'Background', 'yith-woocommerce-wishlist' ),
							'id'      => 'background',
							'default' => '#333333',
						),
						array(
							'name'    => __( 'Text', 'yith-woocommerce-wishlist' ),
							'id'      => 'text',
							'default' => '#FFFFFF',
						),
						array(
							'name'    => __( 'Border', 'yith-woocommerce-wishlist' ),
							'id'      => 'border',
							'default' => '#333333',
						),
					),
					array(
						'desc' => __( 'Choose colors of the secondary button<br/><small>This style will be applied to the buttons that allow showing and hiding the Edit title form on Wishlist view and "Create new Wishlist" button on Manage view</small>', 'yith-woocommerce-wishlist' ),
						array(
							'name'    => __( 'Background Hover', 'yith-woocommerce-wishlist' ),
							'id'      => 'background_hover',
							'default' => '#4F4F4F',
						),
						array(
							'name'    => __( 'Text Hover', 'yith-woocommerce-wishlist' ),
							'id'      => 'text_hover',
							'default' => '#FFFFFF',
						),
						array(
							'name'    => __( 'Border Hover', 'yith-woocommerce-wishlist' ),
							'id'      => 'border_hover',
							'default' => '#4F4F4F',
						),
					),
				),
				'deps'         => array(
					'id'    => 'yith_wcwl_add_to_cart_style',
					'value' => 'button_custom',
				),
			),

			'wishlist_table_style'     => array(
				'name'         => __( 'Wishlist table style', 'yith-woocommerce-wishlist' ),
				'desc'         => __( 'Choose the colors for the wishlist table (when set to "Traditional" layout)', 'yith-woocommerce-wishlist' ),
				'id'           => 'yith_wcwl_color_wishlist_table',
				'type'         => 'yith-field',
				'yith-type'    => 'multi-colorpicker',
				'colorpickers' => array(
					array(
						'name'    => __( 'Background', 'yith-woocommerce-wishlist' ),
						'id'      => 'background',
						'default' => '#FFFFFF',
					),
					array(
						'name'    => __( 'Text', 'yith-woocommerce-wishlist' ),
						'id'      => 'text',
						'default' => '#6d6c6c',
					),
					array(
						'name'    => __( 'Border', 'yith-woocommerce-wishlist' ),
						'id'      => 'border',
						'default' => '#FFFFFF',
					),
				),
				'deps'         => array(
					'id'    => 'yith_wcwl_add_to_cart_style',
					'value' => 'button_custom',
				),
			),

			'headings_style'           => array(
				'name'      => __( 'Highlight color', 'yith-woocommerce-wishlist' ),
				'desc'      => __( 'Choose the color for all sections with background<br/><small>This color will be used as background for the wishlist table heading and footer (when set to "Traditional" layout), and for various form across wishlist views</small>', 'yith-woocommerce-wishlist' ),
				'id'        => 'yith_wcwl_color_headers_background',
				'type'      => 'yith-field',
				'yith-type' => 'colorpicker',
				'default'   => '#F4F4F4',
				'deps'      => array(
					'id'    => 'yith_wcwl_add_to_cart_style',
					'value' => 'button_custom',
				),
			),

			'share_colors'             => array(
				'name'         => __( 'Share button text color', 'yith-woocommerce-wishlist' ),
				'desc'         => __( 'Choose colors for share buttons text', 'yith-woocommerce-wishlist' ),
				'id'           => 'yith_wcwl_color_share_button',
				'type'         => 'yith-field',
				'yith-type'    => 'multi-colorpicker',
				'colorpickers' => array(
					array(
						'name'    => __( 'Text', 'yith-woocommerce-wishlist' ),
						'id'      => 'color',
						'default' => '#FFFFFF',
					),
					array(
						'name'    => __( 'Text hover', 'yith-woocommerce-wishlist' ),
						'id'      => 'color_hover',
						'default' => '#FFFFFF',
					),
				),
				'deps'         => array(
					'id'    => 'yith_wcwl_enable_share',
					'value' => 'yes',
				),

			),

			'fb_button_icon'           => array(
				'name'      => __( 'Facebook share button icon', 'yith-woocommerce-wishlist' ),
				'desc'      => __( 'Select an icon for the Facebook share button', 'yith-woocommerce-wishlist' ),
				'id'        => 'yith_wcwl_fb_button_icon',
				'default'   => 'fa-facebook',
				'type'      => 'yith-field',
				'yith-type' => 'select',
				'class'     => 'icon-select',
				'options'   => yith_wcwl_get_plugin_icons(),
			),

			'fb_button_custom_icon'    => array(
				'name'      => __( 'Facebook share button custom icon', 'yith-woocommerce-wishlist' ),
				'desc'      => __( 'Upload an icon you\'d like to use for Facebook share button (suggested 32px x 32px)', 'yith-woocommerce-wishlist' ),
				'id'        => 'yith_wcwl_fb_button_custom_icon',
				'default'   => '',
				'type'      => 'yith-field',
				'yith-type' => 'upload',
			),

			'fb_button_colors'         => array(
				'name'         => __( 'Facebook share button style', 'yith-woocommerce-wishlist' ),
				'desc'         => __( 'Choose colors for Facebook share button', 'yith-woocommerce-wishlist' ),
				'id'           => 'yith_wcwl_color_fb_button',
				'type'         => 'yith-field',
				'yith-type'    => 'multi-colorpicker',
				'colorpickers' => array(
					array(
						'name'    => __( 'Background', 'yith-woocommerce-wishlist' ),
						'id'      => 'background',
						'default' => '#39599E',
					),
					array(
						'name'    => __( 'Background hover', 'yith-woocommerce-wishlist' ),
						'id'      => 'background_hover',
						'default' => '#595A5A',
					),
				),
			),

			'tw_button_icon'           => array(
				'name'      => __( 'Twitter share button icon', 'yith-woocommerce-wishlist' ),
				'desc'      => __( 'Select an icon for the Twitter share button', 'yith-woocommerce-wishlist' ),
				'id'        => 'yith_wcwl_tw_button_icon',
				'default'   => 'fa-twitter',
				'type'      => 'yith-field',
				'yith-type' => 'select',
				'class'     => 'icon-select',
				'options'   => yith_wcwl_get_plugin_icons(),
			),

			'tw_button_custom_icon'    => array(
				'name'      => __( 'Twitter share button custom icon', 'yith-woocommerce-wishlist' ),
				'desc'      => __( 'Upload an icon you\'d like to use for Twitter share button (suggested 32px x 32px)', 'yith-woocommerce-wishlist' ),
				'id'        => 'yith_wcwl_tw_button_custom_icon',
				'default'   => '',
				'type'      => 'yith-field',
				'yith-type' => 'upload',
			),

			'tw_button_colors'         => array(
				'name'         => __( 'Twitter share button style', 'yith-woocommerce-wishlist' ),
				'desc'         => __( 'Choose colors for Twitter share button', 'yith-woocommerce-wishlist' ),
				'id'           => 'yith_wcwl_color_tw_button',
				'type'         => 'yith-field',
				'yith-type'    => 'multi-colorpicker',
				'colorpickers' => array(
					array(
						'name'    => __( 'Background', 'yith-woocommerce-wishlist' ),
						'id'      => 'background',
						'default' => '#45AFE2',
					),
					array(
						'name'    => __( 'Background hover', 'yith-woocommerce-wishlist' ),
						'id'      => 'background_hover',
						'default' => '#595A5A',
					),
				),
			),

			'pr_button_icon'           => array(
				'name'      => __( 'Pinterest share button icon', 'yith-woocommerce-wishlist' ),
				'desc'      => __( 'Select an icon for the Pinterest share button', 'yith-woocommerce-wishlist' ),
				'id'        => 'yith_wcwl_pr_button_icon',
				'default'   => 'fa-pinterest',
				'type'      => 'yith-field',
				'yith-type' => 'select',
				'class'     => 'icon-select',
				'options'   => yith_wcwl_get_plugin_icons(),
			),

			'pr_button_custom_icon'    => array(
				'name'      => __( 'Pinterest share button custom icon', 'yith-woocommerce-wishlist' ),
				'desc'      => __( 'Upload an icon you\'d like to use for Pinterest share button (suggested 32px x 32px)', 'yith-woocommerce-wishlist' ),
				'id'        => 'yith_wcwl_pr_button_custom_icon',
				'default'   => '',
				'type'      => 'yith-field',
				'yith-type' => 'upload',
			),

			'pr_button_colors'         => array(
				'name'         => __( 'Pinterest share button style', 'yith-woocommerce-wishlist' ),
				'desc'         => __( 'Choose colors for Pinterest share button', 'yith-woocommerce-wishlist' ),
				'id'           => 'yith_wcwl_color_pr_button',
				'type'         => 'yith-field',
				'yith-type'    => 'multi-colorpicker',
				'colorpickers' => array(
					array(
						'name'    => __( 'Background', 'yith-woocommerce-wishlist' ),
						'id'      => 'background',
						'default' => '#AB2E31',
					),
					array(
						'name'    => __( 'Background hover', 'yith-woocommerce-wishlist' ),
						'id'      => 'background_hover',
						'default' => '#595A5A',
					),
				),
			),

			'em_button_icon'           => array(
				'name'      => __( 'Email share button icon', 'yith-woocommerce-wishlist' ),
				'desc'      => __( 'Select an icon for the Email share button', 'yith-woocommerce-wishlist' ),
				'id'        => 'yith_wcwl_em_button_icon',
				'default'   => 'fa-envelope-o',
				'type'      => 'yith-field',
				'yith-type' => 'select',
				'class'     => 'icon-select',
				'options'   => yith_wcwl_get_plugin_icons(),
			),

			'em_button_custom_icon'    => array(
				'name'      => __( 'Email share button custom icon', 'yith-woocommerce-wishlist' ),
				'desc'      => __( 'Upload an icon you\'d like to use for the Email share button (suggested 32px x 32px)', 'yith-woocommerce-wishlist' ),
				'id'        => 'yith_wcwl_em_button_custom_icon',
				'default'   => '',
				'type'      => 'yith-field',
				'yith-type' => 'upload',
			),

			'em_button_colors'         => array(
				'name'         => __( 'Email share button style', 'yith-woocommerce-wishlist' ),
				'desc'         => __( 'Choose colors for the Email share button', 'yith-woocommerce-wishlist' ),
				'id'           => 'yith_wcwl_color_em_button',
				'type'         => 'yith-field',
				'yith-type'    => 'multi-colorpicker',
				'colorpickers' => array(
					array(
						'name'    => __( 'Background', 'yith-woocommerce-wishlist' ),
						'id'      => 'background',
						'default' => '#FBB102',
					),
					array(
						'name'    => __( 'Background hover', 'yith-woocommerce-wishlist' ),
						'id'      => 'background_hover',
						'default' => '#595A5A',
					),
				),
			),

			'wa_button_icon'           => array(
				'name'      => __( 'WhatsApp share button icon', 'yith-woocommerce-wishlist' ),
				'desc'      => __( 'Select an icon for the WhatsApp share button', 'yith-woocommerce-wishlist' ),
				'id'        => 'yith_wcwl_wa_button_icon',
				'default'   => 'fa-whatsapp',
				'type'      => 'yith-field',
				'yith-type' => 'select',
				'class'     => 'icon-select',
				'options'   => yith_wcwl_get_plugin_icons(),
			),

			'wa_button_custom_icon'    => array(
				'name'      => __( 'WhatsApp share button custom icon', 'yith-woocommerce-wishlist' ),
				'desc'      => __( 'Upload an icon you\'d like to use for WhatsApp share button (suggested 32px x 32px)', 'yith-woocommerce-wishlist' ),
				'id'        => 'yith_wcwl_wa_button_custom_icon',
				'default'   => '',
				'type'      => 'yith-field',
				'yith-type' => 'upload',
			),

			'wa_button_colors'         => array(
				'name'         => __( 'WhatsApp share button style', 'yith-woocommerce-wishlist' ),
				'desc'         => __( 'Choose colors for WhatsApp share button', 'yith-woocommerce-wishlist' ),
				'id'           => 'yith_wcwl_color_wa_button',
				'type'         => 'yith-field',
				'yith-type'    => 'multi-colorpicker',
				'colorpickers' => array(
					array(
						'name'    => __( 'Background', 'yith-woocommerce-wishlist' ),
						'id'      => 'background',
						'default' => '#00A901',
					),
					array(
						'name'    => __( 'Background hover', 'yith-woocommerce-wishlist' ),
						'id'      => 'background_hover',
						'default' => '#595A5A',
					),
				),
			),

			'style_section_end'        => array(
				'type' => 'sectionend',
				'id'   => 'yith_wcwl_style_section_settings',
			),
		),
	)
);
PK`x1\�w�99#plugin-options/settings-options.phpnu�[���<?php
/**
 * General settings page
 *
 * @author YITH
 * @package YITH\Wishlist\Options
 * @version 3.0.0
 */

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

$yith_wfbt_installed = ( defined( 'YITH_WFBT' ) && YITH_WFBT );
$yith_wfbt_landing   = 'https://yithemes.com/themes/plugins/yith-woocommerce-frequently-bought-together/';
$yith_wfbt_thickbox  = YITH_WCWL_URL . 'assets/images/landing/yith-wfbt-slider.jpg';

// translators: 1. Anchor to Frequently Bought Together landing page on yithemes.com.
$yith_wfbt_promo = sprintf( __( 'If you want to take advantage of this feature, you could consider purchasing the %s.', 'yith-woocommerce-wishlist' ), '<a href="' . $yith_wfbt_landing . '">YITH WooCommerce Frequently Bought Together Plugin</a>' );

return apply_filters(
	'yith_wcwl_settings_options',
	array(
		'settings' => array(

			'general_section_start'        => array(
				'name' => __( 'General Settings', 'yith-woocommerce-wishlist' ),
				'type' => 'title',
				'desc' => '',
				'id'   => 'yith_wcwl_general_settings',
			),

			'enable_ajax_loading'          => array(
				'name'      => __( 'Enable AJAX loading', 'yith-woocommerce-wishlist' ),
				'desc'      => __( 'Load any cacheable wishlist item via AJAX', 'yith-woocommerce-wishlist' ),
				'id'        => 'yith_wcwl_ajax_enable',
				'default'   => 'no',
				'type'      => 'yith-field',
				'yith-type' => 'onoff',
			),

			'general_section_end'          => array(
				'type' => 'sectionend',
				'id'   => 'yith_wcwl_general_settings',
			),

			'yith_wfbt_start'              => array(
				'name' => __( 'YITH WooCommerce Frequently Bought Together Integration', 'yith-woocommerce-wishlist' ),
				'type' => 'title',
				// translators: 1. Url to Frequently Bought Together landing page on yithemes.com.
				'desc' => ! $yith_wfbt_installed ? sprintf( __( 'In order to use this integration you have to install and activate YITH WooCommerce Frequently Bought Together. <a href="%s">Learn more</a>', 'yith-woocommerce-wishlist' ), $yith_wfbt_landing ) : '',
				'id'   => 'yith_wcwl_yith_wfbt',
			),

			'yith_wfbt_enable_integration' => array(
				'name'      => __( 'Enable slider in wishlist', 'yith-woocommerce-wishlist' ),
				// translators: 1. Example image of the integration. 2. CTA to buy Frequently Bought Together.
				'desc'      => sprintf( __( 'Enable the slider with linked products on the Wishlist page (<a href="%1$s" class="thickbox">Example</a>). %2$s', 'yith-woocommerce-wishlist' ), $yith_wfbt_thickbox, ( ! ( defined( 'YITH_WFBT' ) && YITH_WFBT ) ) ? $yith_wfbt_promo : '' ),
				'id'        => 'yith_wfbt_enable_integration',
				'default'   => 'yes',
				'type'      => 'yith-field',
				'yith-type' => 'onoff',
			),

			'yith_wfbt_end'                => array(
				'type' => 'sectionend',
				'id'   => 'yith_wcwl_yith_wfbt',
			),
		),
	)
);
PK`x1\w��x�1�1*plugin-options/add_to_wishlist-options.phpnu�[���<?php // phpcs:ignore WordPress.Files.FileName.NotHyphenatedLowercase
/**
 * Add to Wishlist settings
 *
 * @author YITH
 * @package YITH\Wishlist\Options
 * @version 3.0.0
 */

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

return apply_filters(
	'yith_wcwl_add_to_wishlist_options',
	array(
		'add_to_wishlist' => array(

			'general_section_start'           => array(
				'name' => __( 'General Settings', 'yith-woocommerce-wishlist' ),
				'type' => 'title',
				'desc' => '',
				'id'   => 'yith_wcwl_general_settings',
			),

			'after_add_to_wishlist_behaviour' => array(
				'name'      => __( 'After product is added to wishlist', 'yith-woocommerce-wishlist' ),
				'desc'      => __( 'Choose the look of the Wishlist button when the product has already been added to a wishlist', 'yith-woocommerce-wishlist' ),
				'id'        => 'yith_wcwl_after_add_to_wishlist_behaviour',
				'options'   => array_merge(
					array(
						'add'    => __( 'Show "Add to wishlist" button', 'yith-woocommerce-wishlist' ),
						'view'   => __( 'Show "View wishlist" link', 'yith-woocommerce-wishlist' ),
						'remove' => __( 'Show "Remove from list" link', 'yith-woocommerce-wishlist' ),
					)
				),
				'default'   => 'view',
				'type'      => 'yith-field',
				'yith-type' => 'radio',
			),

			'general_section_end'             => array(
				'type' => 'sectionend',
				'id'   => 'yith_wcwl_general_settings',
			),

			'shop_page_section_start'         => array(
				'name' => __( 'Loop settings', 'yith-woocommerce-wishlist' ),
				'type' => 'title',
				'desc' => __( 'Loop options will be visible on Shop page, category pages, product shortcodes, products sliders, and all the other places where the WooCommerce products\' loop is used', 'yith-woocommerce-wishlist' ),
				'id'   => 'yith_wcwl_shop_page_settings',
			),

			'show_on_loop'                    => array(
				'name'      => __( 'Show "Add to wishlist" in loop', 'yith-woocommerce-wishlist' ),
				'desc'      => __( 'Enable the "Add to wishlist" feature in WooCommerce products\' loop', 'yith-woocommerce-wishlist' ),
				'id'        => 'yith_wcwl_show_on_loop',
				'default'   => 'no',
				'type'      => 'yith-field',
				'yith-type' => 'onoff',
			),

			'loop_position'                   => array(
				'name'      => __( 'Position of "Add to wishlist" in loop', 'yith-woocommerce-wishlist' ),
				'desc'      => __( 'Choose where to show "Add to wishlist" button or link in WooCommerce products\' loop. <span class="addon">Copy this shortcode <span class="code"><code>[yith_wcwl_add_to_wishlist]</code></span> and paste it where you want to show the "Add to wishlist" link or button</span>', 'yith-woocommerce-wishlist' ),
				'id'        => 'yith_wcwl_loop_position',
				'default'   => 'after_add_to_cart',
				'type'      => 'yith-field',
				'yith-type' => 'select',
				'class'     => 'wc-enhanced-select',
				'options'   => array(
					'before_image'       => __( 'On top of the image', 'yith-woocommerce-wishlist' ),
					'before_add_to_cart' => __( 'Before "Add to cart" button', 'yith-woocommerce-wishlist' ),
					'after_add_to_cart'  => __( 'After "Add to cart" button', 'yith-woocommerce-wishlist' ),
					'shortcode'          => __( 'Use shortcode', 'yith-woocommerce-wishlist' ),
				),
				'deps'      => array(
					'id'    => 'yith_wcwl_show_on_loop',
					'value' => 'yes',
				),
			),

			'shop_page_section_end'           => array(
				'type' => 'sectionend',
				'id'   => 'yith_wcwl_shop_page_settings',
			),

			'product_page_section_start'      => array(
				'name' => __( 'Product page settings', 'yith-woocommerce-wishlist' ),
				'type' => 'title',
				'desc' => '',
				'id'   => 'yith_wcwl_product_page_settings',
			),

			'add_to_wishlist_position'        => array(
				'name'      => __( 'Position of "Add to wishlist" on product page', 'yith-woocommerce-wishlist' ),
				'desc'      => __( 'Choose where to show "Add to wishlist" button or link on the product page. <span class="addon">Copy this shortcode <span class="code"><code>[yith_wcwl_add_to_wishlist]</code></span> and paste it where you want to show the "Add to wishlist" link or button</span>', 'yith-woocommerce-wishlist' ),
				'id'        => 'yith_wcwl_button_position',
				'default'   => 'after_add_to_cart',
				'type'      => 'yith-field',
				'yith-type' => 'select',
				'class'     => 'wc-enhanced-select',
				'options'   => array(
					'add-to-cart' => __( 'After "Add to cart"', 'yith-woocommerce-wishlist' ),
					'thumbnails'  => __( 'After thumbnails', 'yith-woocommerce-wishlist' ),
					'summary'     => __( 'After summary', 'yith-woocommerce-wishlist' ),
					'shortcode'   => __( 'Use shortcode', 'yith-woocommerce-wishlist' ),
				),
			),

			'product_page_section_end'        => array(
				'type' => 'sectionend',
				'id'   => 'yith_wcwl_product_page_settings',
			),

			'text_section_start'              => array(
				'name' => __( 'Text customization', 'yith-woocommerce-wishlist' ),
				'type' => 'title',
				'desc' => '',
				'id'   => 'yith_wcwl_text_section_settings',
			),

			'add_to_wishlist_text'            => array(
				'name'    => __( '"Add to wishlist" text', 'yith-woocommerce-wishlist' ),
				'desc'    => __( 'Enter a text for "Add to wishlist" button', 'yith-woocommerce-wishlist' ),
				'id'      => 'yith_wcwl_add_to_wishlist_text',
				'default' => __( 'Add to wishlist', 'yith-woocommerce-wishlist' ),
				'type'    => 'text',
			),

			'product_added_text'              => array(
				'name'    => __( '"Product added" text', 'yith-woocommerce-wishlist' ),
				'desc'    => __( 'Enter the text of the message displayed when the user adds a product to the wishlist', 'yith-woocommerce-wishlist' ),
				'id'      => 'yith_wcwl_product_added_text',
				'default' => __( 'Product added!', 'yith-woocommerce-wishlist' ),
				'type'    => 'text',
			),

			'browse_wishlist_text'            => array(
				'name'    => __( '"Browse wishlist" text', 'yith-woocommerce-wishlist' ),
				'desc'    => __( 'Enter a text for the "Browse wishlist" link on the product page', 'yith-woocommerce-wishlist' ),
				'id'      => 'yith_wcwl_browse_wishlist_text',
				'default' => __( 'Browse wishlist', 'yith-woocommerce-wishlist' ),
				'type'    => 'text',
			),

			'already_in_wishlist_text'        => array(
				'name'    => __( '"Product already in wishlist" text', 'yith-woocommerce-wishlist' ),
				'desc'    => __( 'Enter the text for the message displayed when the user views a product that is already in the wishlist', 'yith-woocommerce-wishlist' ),
				'id'      => 'yith_wcwl_already_in_wishlist_text',
				'default' => __( 'The product is already in your wishlist!', 'yith-woocommerce-wishlist' ),
				'type'    => 'text',
			),

			'text_section_end'                => array(
				'type' => 'sectionend',
				'id'   => 'yith_wcwl_text_section_settings',
			),

			'style_section_start'             => array(
				'name' => __( 'Style & Color customization', 'yith-woocommerce-wishlist' ),
				'type' => 'title',
				'desc' => '',
				'id'   => 'yith_wcwl_style_section_settings',
			),

			'use_buttons'                     => array(
				'name'      => __( 'Style of "Add to wishlist"', 'yith-woocommerce-wishlist' ),
				'desc'      => __( 'Choose if you want to show a textual "Add to wishlist" link or a button', 'yith-woocommerce-wishlist' ),
				'id'        => 'yith_wcwl_add_to_wishlist_style',
				'options'   => array(
					'link'           => __( 'Textual (anchor)', 'yith-woocommerce-wishlist' ),
					'button_default' => __( 'Button with theme style', 'yith-woocommerce-wishlist' ),
					'button_custom'  => __( 'Button with custom style', 'yith-woocommerce-wishlist' ),
				),
				'default'   => 'link',
				'type'      => 'yith-field',
				'yith-type' => 'radio',
			),

			'add_to_wishlist_colors'          => array(
				'name'         => __( '"Add to wishlist" button style', 'yith-woocommerce-wishlist' ),
				'id'           => 'yith_wcwl_color_add_to_wishlist',
				'type'         => 'yith-field',
				'yith-type'    => 'multi-colorpicker',
				'colorpickers' => array(
					array(
						'desc' => __( 'Choose colors for the "Add to wishlist" button', 'yith-woocommerce-wishlist' ),
						array(
							'name'    => __( 'Background', 'yith-woocommerce-wishlist' ),
							'id'      => 'background',
							'default' => '#333333',
						),
						array(
							'name'    => __( 'Text', 'yith-woocommerce-wishlist' ),
							'id'      => 'text',
							'default' => '#FFFFFF',
						),
						array(
							'name'    => __( 'Border', 'yith-woocommerce-wishlist' ),
							'id'      => 'border',
							'default' => '#333333',
						),
					),
					array(
						'desc' => __( 'Choose colors for the "Add to wishlist" button on hover state', 'yith-woocommerce-wishlist' ),
						array(
							'name'    => __( 'Background Hover', 'yith-woocommerce-wishlist' ),
							'id'      => 'background_hover',
							'default' => '#333333',
						),
						array(
							'name'    => __( 'Text Hover', 'yith-woocommerce-wishlist' ),
							'id'      => 'text_hover',
							'default' => '#FFFFFF',
						),
						array(
							'name'    => __( 'Border Hover', 'yith-woocommerce-wishlist' ),
							'id'      => 'border_hover',
							'default' => '#333333',
						),
					),
				),
				'deps'         => array(
					'id'    => 'yith_wcwl_add_to_wishlist_style',
					'value' => 'button_custom',
				),
			),

			'rounded_buttons_radius'          => array(
				'name'      => __( 'Border radius', 'yith-woocommerce-wishlist' ),
				'desc'      => __( 'Choose radius for the "Add to wishlist" button', 'yith-woocommerce-wishlist' ),
				'id'        => 'yith_wcwl_rounded_corners_radius',
				'default'   => 16,
				'type'      => 'yith-field',
				'yith-type' => 'slider',
				'min'       => 1,
				'max'       => 100,
				'deps'      => array(
					'id'    => 'yith_wcwl_add_to_wishlist_style',
					'value' => 'button_custom',
				),
			),

			'add_to_wishlist_icon'            => array(
				'name'      => __( '"Add to wishlist" icon', 'yith-woocommerce-wishlist' ),
				'desc'      => __( 'Select an icon for the "Add to wishlist" button (optional)', 'yith-woocommerce-wishlist' ),
				'id'        => 'yith_wcwl_add_to_wishlist_icon',
				'default'   => apply_filters( 'yith_wcwl_add_to_wishlist_std_icon', 'fa-heart-o', 'yith_wcwl_add_to_wishlist_icon' ),
				'type'      => 'yith-field',
				'class'     => 'icon-select',
				'yith-type' => 'select',
				'options'   => yith_wcwl_get_plugin_icons(),
			),

			'add_to_wishlist_custom_icon'     => array(
				'name'      => __( '"Add to wishlist" custom icon', 'yith-woocommerce-wishlist' ),
				'desc'      => __( 'Upload an icon you\'d like to use for "Add to wishlist" button (suggested 32px x 32px)', 'yith-woocommerce-wishlist' ),
				'id'        => 'yith_wcwl_add_to_wishlist_custom_icon',
				'default'   => '',
				'type'      => 'yith-field',
				'yith-type' => 'upload',
				'deps'      => array(
					'id'    => 'yith_wcwl_add_to_wishlist_icon',
					'value' => 'custom',
				),
			),

			'added_to_wishlist_icon'          => array(
				'name'      => __( '"Added to wishlist" icon', 'yith-woocommerce-wishlist' ),
				'desc'      => __( 'Select an icon for the "Added to wishlist" button (optional)', 'yith-woocommerce-wishlist' ),
				'id'        => 'yith_wcwl_added_to_wishlist_icon',
				'default'   => apply_filters( 'yith_wcwl_add_to_wishlist_std_icon', 'fa-heart', 'yith_wcwl_added_to_wishlist_icon' ),
				'type'      => 'yith-field',
				'class'     => 'icon-select',
				'yith-type' => 'select',
				'options'   => yith_wcwl_get_plugin_icons( __( 'Same used for Add to wishlist', 'yith-woocommerce-wishlist' ) ),
			),

			'added_to_wishlist_custom_icon'   => array(
				'name'      => __( '"Added to wishlist" custom icon', 'yith-woocommerce-wishlist' ),
				'desc'      => __( 'Upload an icon you\'d like to use for "Add to wishlist" button (suggested 32px x 32px)', 'yith-woocommerce-wishlist' ),
				'id'        => 'yith_wcwl_added_to_wishlist_custom_icon',
				'default'   => '',
				'type'      => 'yith-field',
				'yith-type' => 'upload',
				'deps'      => array(
					'id'    => 'yith_wcwl_added_to_wishlist_icon',
					'value' => 'custom',
				),
			),

			'custom_css'                      => array(
				'name'      => __( 'Custom CSS', 'yith-woocommerce-wishlist' ),
				'desc'      => __( 'Enter custom CSS to be applied to Wishlist elements (optional)', 'yith-woocommerce-wishlist' ),
				'id'        => 'yith_wcwl_custom_css',
				'default'   => '',
				'type'      => 'yith-field',
				'yith-type' => 'textarea',
			),

			'style_section_end'               => array(
				'type' => 'sectionend',
				'id'   => 'yith_wcwl_style_section_settings',
			),

		),
	)
);
PK`x1\M\ٖ����
README.txtnu�[���=== YITH WooCommerce Wishlist ===

Contributors: yithemes
Tags: wishlist, woocommerce, products, yit, e-commerce, shop, ecommerce wishlist, yith, woocommerce wishlist, shop wishlist
Requires at least: 5.6
Tested up to: 5.8
Stable tag: 3.3.0
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

YITH WooCommerce Wishlist add all Wishlist features to your website. Needs WooCommerce to work.
WooCommerce 5.7.x compatible.

== Description ==

The wishlist is one of the most powerful and popular tools in an ecommerce shop. Thanks to the wishlist, users can:

* Save their favourite products, find them quickly and easily at a later time and buy them.
* Share the wishlist with relatives and friends for Christmas, birthdays and similar occasions so they can buy them one of the products from the list.
* Share the wishlist on social networks and get indirect advertising for your store.

This means that you’ll be able to loyalise customers, push them to buy and attract new customers any time a wishlist is shared. Not bad for one plugin only, don’t you think?

Our YITH WooCommerce Wishlist has more than **900,000 active installations** and that’s why it’s **the most popular wishlist plugin ever.**

To celebrate this record and say thanks to all the plugin users, we’ve decided to release a new 3.0 version that has improved the design tremendously  and added many new options.

**If you like the new design, please, leave a review to help the plugin grow!**

[Free version live demo >](https://plugins.yithemes.com/yith-woocommerce-wishlist-free/)
[Documentation >](https://docs.yithemes.com/yith-woocommerce-wishlist)

= Basic features =

* Select a page for your wishlist
* Select where to show the shortcode ‘Add to wishlist’
* Show the ‘Remove from wishlist’ button when the product is in the Wishlist
* Show the ‘Add to wishlist’ button also on the Shop page
* Customise columns that will be displayed in the wishlist table
* Product variation support (if the user selects a specific color or size and then adds it to the wishlist, this details will be saved)

= Premium features =

[Premium version live demo >](https://plugins.yithemes.com/yith-woocommerce-wishlist/)

The free version of our plugin works like a charm, but the premium one is an even more powerful tool to increase sales and conversions. By upgrading to the premium version, you can:

* View the wishlists created by logged-in customers
* View a list of popular products (added to wishlists)
* Send promotionals email to users who have added a specific product to their wishlist
* Show the ‘Ask for an estimate’ button to let customers send the content of their wishlist to the admin and get a quotation
* Add optional notes to the quote request
* Enable/disable the wishlist features for unlogged users
* Show a notice to unlogged users: invite them to log in to benefit from all the wishlist functionalities
* Allow users to create as many wishlists as they want
* Allow users to manage wishlists, rename and delete them, add or remove items
* Allow users to search and see registered wishlists
* Allow users to set visibility options for each wishlist, by making them either public (visible to everyone), private (visible to the owner only) or shared (visible only to people it has been shared with)
* Allow users to manage the item quantity in the wishlist
* Show multiple ‘Add to Cart’ buttons in the wishlist table
* Show product price variations (Amazon style)
* Allow users to move an element from one wishlist to another, right from the wishlist table
* Allow users to drag and drop products to arrange their order in the wishlist
* Choose modern & beautiful layouts for the wishlist page and tables
* Provide your customers with nice widgets to help them find their wishlist quickly and easily.

[GET THE PREMIUM VERSION HERE with a 100% Money Back guarantee >](https://yithemes.com/themes/plugins/yith-woocommerce-wishlist/)

== Installation ==

1. Unzip the downloaded zip file.
2. Upload the plugin folder into the `wp-content/plugins/` directory of your WordPress site.
3. Activate `YITH WooCommerce Wishlist` from Plugins page

YITH WooCommerce Wishlist will add a new submenu called "Wishlist" under "YITH Plugins" menu. Here you are able to configure all the plugin settings.

== Frequently Asked Questions ==

= Does YITH WooCommerce Wishlist allows adding an “add to wishlist” button on the products on shop page and archive pages? =
Yes, from version 3.0 the plugin also allows showing the Add to wishlist button on your **shop page, category pages, product shortcodes, product sliders,** and all the other places where the WooCommerce products’ loop is used.

= Can I customize the wishlist page? =
Yes, the page is a simple template and you can override it by putting the file template "wishlist.php" inside the "woocommerce" folder of the theme folder.

= Can I move the position of "Add to wishlist" button? =
Yes, you can move the button to another default position or you can also use the shortcode inside your theme code.

= Can I change the style of "Add to wishlist" button? =
Yes, you can change the colors of background, text and border or apply a custom css. You can also use a link or a button for the "Add to wishlist" feature.

= Wishlist page returns a 404 error? =
Try to regenerate permalinks from Settings -> Permalinks by simply saving them again.

= Have you encountered anomalies after plugin update, that did not exist in the previous version? =
This might depend on the fact that your theme overrides plugin templates. Check if the developer of your theme has released a compatibility update with version 3.0 or later of YITH WooCommerce Wishlist. As an alternative you can try the plugin in WordPress default theme to leave out any possible influences by the theme.

= I am currently using Wishlist plugin with Catalog Mode enabled in my site. Prices for products should disappear, yet they still appear in the wishlist page. Can I remove them? =
Yes, of course you can. To avoid Wishlist page to show product prices, you can hide price column from wishlist table. Go to YITH -> Wishlist -> Wishlist Page Options and disable option "Product price".

== Screenshots ==

1. The page with "Add to wishlist" button
2. The wishlist page
3. Show the ‘Add to Cart button in the Wishlist table
4. Show the date when the product has been added to the wishlist (only for logged-in users)
5. Share the wishlist on social channels (available also for guest users)
6. Fully customizable appearance
7. Responsive design
8. Wishlist settings page (1/3)
9. Wishlist settings page (2/3)
10. Wishlist settings page (3/3)


== Changelog ==

= 3.3.0 - Released on 11 November 2021 =

* New: support for WooCommerce 5.9
* Update: YITH plugin framework
* Dev: added yith_wcwl_table_product_show_add_to_cart filter to wishlist-view-mobile.php template

= 3.2.0 - Released on 13 October 2021 =

* New: support for WooCommerce 5.8
* Update: YITH plugin framework

= 3.1.1 - Released on 27 September 2021 =

* Update: YITH Plugin Framework
* Fix: debug info feature removed for all logged in users

= 3.1.0 - Released on 08 September 2021 =

* New: support for WooCommerce 5.7
* Update: YITH Plugin Framework
* Tweak: enforcing a more strict nonce verification
* Fix: use absolute URL in 'Remove from Wishlist' anchors, to avoid problems when template is loaded via AJAX
* Dev: added yith_wcwl_plugin_icons filter, to allow third party add custom icons (thanks to swallow2603)

= 3.0.25 - Released on 05 August 2021 =

* New: support for WooCommerce 5.6
* New: support for WordPress 5.8
* Update: YITH Plugin Framework

= 3.0.23 - Released on 18 June 2021 =

* New: support for WooCommerce 5.4
* Update: YITH plugin framework
* Fix: filters to alter resources dependencies not actually affecting assets loaded in the page (thanks to deothemes)
* Fix: better support for wishlist page with non-standard characters in slug

= 3.0.22 - Released on 17 May 2021 =

* New: support for WooCommerce 5.3
* Update: YITH plugin framework
* Tweak: use share link title for WhatsApp sharing link too
* Tweak: enqueue plugin scripts only when needed
* Fix: visibility param for wishlist queries not working correctly
* Fix: generic selectors used at found_variations (thanks to vivik93)

= 3.0.21 - Released on 21 April 2021 =

* New: support for WooCommerce 5.2
* New: added no-robots headers for add_to_wishlist url (thanks to brix720)
* Update: YITH plugin framework
* Tweak: code refactoring according to PHPCS
* Fix: avoid setting session_id, until guest performs any edit operation over the lists
* Fix: removed deprecated unbind from scripts
* Dev: added yith_wcwl_main_style_deps filter to allow devs remove unnecessary deps
* Dev: added yith_wcwl_custom_icon_alt and yith_wcwl_custom_width filters, to allow dev customize ATW custom icon

= 3.0.20 - Released on 22 February 2021 =

* New: support for WordPress 5.7
* New: support for WooCommerce 5.1
* Update: YITH plugin framework
* Fix: wrong data type for item insert query (thanks to jonatanmenendez)
* Dev: added new yith_wcwl_get_wishlist_on_remove filter

= 3.0.19 - Released on 18 February 2021 =

* New: support for WooCommerce 5.0
* Update: YITH plugin framework
* Tweak: added transient for hidden products
* Dev: fixed issue when unchecking all products in wishlist page
* Dev: added yith_wcwl_mobile_media_query filter
* Dev: added new filters yith_wcwl_remove_after_add_to_cart and yith_wcwl_allow_remove_after_add_to_cart

= 3.0.18 - Released on 13 January 2021 =

* New: support for WooCommerce 4.9
* Update: plugin framework
* Tweak: improved product name sanitization on wishlist template
* Dev: added fifth parameter for yith_wcwl_add_to_wishlist_button_html filter

= 3.0.17 - Released on 11 December 2020 =

* New: support for WooCommerce 4.8
* Update: plugin framework
* Update: Spanish translation
* Tweak: added rel="noopener" attribute to sharing links (thanks to onetimelord)
* Tweak: avoid slugs that overflow column width
* Tweak: changed set of default columns for wishlist table
* Tweak: improved style for Edit Title form in wishlist page
* Fix: prevent load_fragments ajax call when no fragment is found for current page (thanks to powernic)
* Fix: correctly sanitize fragments options

= 3.0.16 - Released on 10 November 2020 =

* New: support for WordPress 5.6
* New: support for WooCommerce 4.7
* New: possibility to update plugin via WP-CLI
* Update: plugin framework
* Tweak: default wishlist sorting now places last added item as heading item
* Fix: avoid using localized string as param name for bulk action on wishlists table
* Dev: added yith_wcwl_reload_on_found_variation filter to allow dev programmatically disable ATW reload on found_variation
* Dev: removed deprecated .ready method from scripts

= 3.0.15 - Released on 16 October 2020 =

* New: support for WooCommerce 4.6
* Update: plugin framework
* Tweak: return product price as float in item class
* Fix: prevent possible fatal error when printing ATW button
* Fix: original price being sent to database as int instead of float
* Dev: added new filter yith_wcwl_set_session_cookie
* Dev: added new filter yith_wcwl_privacy_value
* Dev: added new parameter to yith_wcwl_{privacy}_wishlist_visibility filter

= 3.0.14 - Released on 19 September 2020 =

* New: support for WooCommerce 4.5
* Update: plugin framework
* Tweak: filter fragments to update only visible ATW when reset_data js event occurs
* Tweak: added error message when trying to add variable products to cart
* Fix: issue with cart redirect when using YITH WCCL

= 3.0.13 - Released on 17 August 2020 =

* Fix: moved check over Ajax Loading option on first wishlist init only, to avoid problems when dynamically loading ATW on variable products

= 3.0.12 - Released on 14 August 2020 =

* New: support for WordPress 5.5
* New: support for WooCommerce 4.4
* New: support for Polylang PRO
* New: load correct Add to Wishlist (ATW) template for selected variation, and refresh it when changing variations on product page
* Update: plugin framework
* Fix: upsells are now correctly identified as loop by wishlist
* Fix: icon select at backend showing [Object object]
* Fix: changed fragments indexes to work with a greater set of configurations
* Fix: notice when using custom icons for ATW buttons
* Dev: added new filter yith_wcwl_fragments_index_glue

= 3.0.11 - Released on 08 Jun 2020 =

* New: support for WooCommerce 4.2
* Update: plugin framework
* Tweak: added WordPress among blocked bot user agents
* Tweak: make sure to finalize session when possible
* Tweak: added link to product in wishlist mobile template
* Fix: Prevent error if default wishlist doesn't exists
* Fix: correctly applied yith_wcwl_is_wishlist_responsive filter to yith_wcwl_is_mobile function
* Fix: avoid to use cache that cannot be invalidated (stop caching queries results, use cache for user wishlists)
* Fix: clear_caches method wasnt properly cleaning cache for guest users
* Dev: added yith_wcwl_add_to_wishlist_icon_html filter
* Dev: added yith_wcwl_add_to_wishlist_heading_icon_html filter
* Dev: added yith_wcwl_add_to_wishlist_data trigger, to allow third party code change data submitted with ATW ajax call

= 3.0.10 - Released on 07 May 2020 =

* New: support for WooCommerce 4.1
* New: prevent some UserAgents from triggering wishlist handling (avoid spam)
* New: added minor css fixes for Storefront theme
* Update: plugin framework
* Tweak: review add process, to avoid unnecessary items update
* Tweak: improved localized date on wishlist table
* Tweak: added wishlist as gutenberg block in new wishlist page
* Tweak: added "Wishlist page" post status
* Tweak: added new check to avoid "Cannot read property contains of undefined" error
* Tweak: added search box to All Wishlist view
* Fix: show remove button on list mobile when at least one of the two buttons is shown on desktop
* Fix: fatal error on empty wishlist page
* Dev: added yith_wcwl_is_wishlist_responsive filter, to allow developers disable responsive behaviour for the wishlist
* Dev: added yith_wcwl_generated_default_wishlist action
* Dev: added yith_wcwl_default_wishlist filter
* Dev: added yith_wcwl_add_notice wrapper function, to avoid possible fatal errors when calling wc_add_notice

= 3.0.9 - Released on 09 March 2020 =

* Tweak: use wp_kses_post instead of esc_html for browse wishlist text
* Update: plugin framework

= 3.0.8 - Released on 04 March 2020 =

* Tweak: use wp_kses_post sanitization instead of esc_html for button labels to allow developers to add HTML to them
* Tweak: minor improvements for OceanWP theme style
* Fix: notice on empty wishlist page (thanks to ashimhastech)

= 3.0.7 - Released on 03 March 2020 =

* New: support for WordPress 5.4
* New: support for WooCommerce 4.0
* New: improved checks on user capabilities
* New: added wishlist widgets to Elementor
* Update: plugin framework
* Tweak: added check on user permission level for all wishlist actions
* Tweak: escape output on templates
* Fix: custom css not being loaded in the page
* Fix: compatibility with YITH Infinite Scrolling when ajax loading is enabled
* Fix: hide share section on wishlist page when "Share wishlist" option is disabled
* Fix: assign correct css rule to border color for Wishlist Table
* Dev: added yith_wcwl_reload_fragments trigger to refresh wishlist fragments
* Dev: added yith_wcwl_remove_hidden_products_via_query filter
* Dev: added yith_wcwl_show_add_to_wishlist filter, to allow dev selectively hide Add to Wishlist buttons
* Dev: new actions on wishlist-view.php template (thanks to Jory)
* Dev: added .editorconfig (thanks to Jory)

= 3.0.6 – Released on 04 February 2020 =

* Tweak: avoid redirect for guest users if wishlist page is set to my-account
* Tweak: minor improvements to localization
* Tweak: update wrong text domains
* Tweak: changed default value for ATW icons
* Tweak: set wishlist session cookie JIT
* Tweak: use secure cookie for sessions, when possible (thanks to Ahmed)
* Tweak: improved cache handling for get_default_wishlist method
* Tweak: even if system cannot set session cookie, calculate session_id and use it for the entire execution
* Update: Italian language
* Update: plugin framework
* Fix: prevent error if list doesn't exists
* Fix: issue with wishlist_id query param
* Fix: items query now search for product in original language
* Fix: returning correct wishlist and user id to yith_wcwl_added_to_wishlist and yith_wcwl_removed_from_wishlist actions (thanks to danielbitzer)
* Fix: issue with default value for yith_wcwl_positions option
* Fix: added key name to avoid DB error during install or update procedure
* Dev: added yith_wcwl_shortcode_share_link_url filter

= 3.0.5 - Released on 23 December 2019 =

* New: support for WooCommerce 3.9
* Update: plugin framework
* Tweak: register original product id instead of translated one, when saving item in DB
* Fix: customer not being redirected to cart after clicking Add to Cart button in wishlist

= 3.0.4 - Released on 19 December 2019 =

* Tweak: added isset on wishlist data store, to prevent notice
* Tweak: removed transients for items count, to avoid load on wp-options table
* Tweak: improved dependencies animation
* Tweak: restored $atts variable inside template, for better compatibility with themes
* Tweak: handling for redirect_to param in $_REQUEST for form-handler class
* Update: plugin framework
* Fix: default variation not being added to wishlist
* Fix: add default variation to wishlist when Ajax loading is enabled
* Fix: count_all_products not retrieving correct number
* Dev: added yith_wcwl_wishlist_delete_url filter

= 3.0.3 - Released on 12 December 2019 =

* Tweak: prevent yith_setcookie to process if cookie name is not set
* Tweak: refactored session class to set up session cookie name on demand, when needed (avoid empty cookie name)
* Tweak: minor improvements to functions that require session (count_products, get_default_wishlist..) as a consequence of changes applied to session class

= 3.0.2 - Released on 10 December 2019 =

* Update: plugin framework
* Tweak: added defaults for yith_wcwl_add_to_cart_text option (thanks to ecksiteweb)
* Fix: prevent fatal error when switching from cookies to session

= 3.0.1 - Released on 10 December 2019 =

* Update: language files
* Tweak: restored global $yith_wcwl

= 3.0.0 - Released on 09 December 2019 =

* New: option to show Add to Wishlist button on loops
* New: Add to Wishlist button style when placed over product image
* New: Add to Wishlist button can now turn into Remove from Wishlist after addition
* New: plugin will add variation to wishlist, if user selected one before pressing the button
* New: option to load wishlist templates via Ajax
* New: select add to wishlist icon and/or upload  custom image
* New: guest wishlists are now stored on db, within session id
* New: unified experience for guests and logged in users
* Tweak: improved admin panel, and settings UX
* Dev: code refactoring of the entire plugin
* Dev: new YITH_WCWL_Wishlist and YITH_WCWL_Wishlist_Item objects
* Dev: now using Data_store classes to handle db operations
* Dev: added filter yith_wcwl_loop_positions
* Dev: added filter yith_wcwl_custom_css_rules
* Dev: added filter yith_wcwl_session_cookie
* Dev: added filter yith_wcwl_item_formatted_price
* Dev: added filter yith_wcwl_wishlist_formatted_title
* Dev: added filter yith_wcwl_wishlist_get_items
* Dev: added filter yith_wcwl_user_cannot_add_to_wishlist_message
* Dev: added filter yith_wcwl_can_user_add_to_wishlist
* Dev: added filters yith_wcwl_add_wishlist_{property}
* Dev: added filters yith_wcwl_adding_to_wishlist_{property}

= 2.2.17 – Released on 29 November 2019 =

* Update: notice handler
* Update: plugin framework

= 2.2.16 – Released on 11 November 2019 =

* New: support for WordPress 5.3
* New: support for WooCommerce 3.8
* Update: plugin framework
* Update: Italian language
* Update: Dutch language
* Tweak: wrapped Add to Wishlist button label into span HTML tag
* Fix: removed occurrences of deprecated properties on promotional email class
* Dev: added new yith_wcwl_product_already_in_wishlist_text_button and yith_wcwl_product_added_to_wishlist_message_button filters
* Dev: added new yith_wcwl_out_of_stock_label and yith_wcwl_in_stock_label filters

= 2.2.15 - Released on 05 November 2019  =

* Update: Plugin framework

= 2.2.14 - Released on 30 October 2019 =

* Update: Plugin framework

= 2.2.13 - Released on 12 August 2019 =

* New: WooCommerce 3.7.0 RC2 support
* New: input to copy wishlist link and share it anywhere
* Update: internal plugin framework
* Fix: redirect url if there is more than one parameter on the url
* Fix: changed escape for share link, to properly escape url special characters

= 2.2.12 - Released on 18 July 2019 =

* Update: internal plugin framework
* Tweak: improved performance on wishlist page, when user is a guest and store has huge catalog (thanks to Dave)
* Dev: add filter yith_wcwl_wishlist_correctly_created on add_wishlist function

= 2.2.11 - Released on 13 June 2019 =

* Update: internal plugin framework
* Tweak: Prevent undefined index user_id when user is logging
* Dev: New action yith_wcwl_default_user_wishlist

= 2.2.10 - Released on 23 April 2019 =

* Update: internal plugin framework

= 2.2.9 - Released on 11 April 2019 =

* New: WooCommerce 3.6.x support
* New: added a WhatsApp share button on mobile
* Tweak: using add_inline_style to include custom css code
* Tweak: no longer adding empty style tag to the page
* Update: Spanish language
* Fix: get the correct value for wishlist name
* Fix: deprecated notice caused by product id attribute being accessed directly

= 2.2.8 - Released on 11 February 2019 =

* New: added support to WooCommerce 3.5.4
* Update: internal plugin framework
* Fix: added explicit array casting on shortcode to avoid warning
* Fix: don't add custom classes to body if wishlist page is not set
* Fix: changed a wrong method in the enqueue style
* Dev: add filter yith_wcwl_email_share_subject

= 2.2.7 - Released on 21 December 2018 =

* Fix: possible warning when Add to Wishlist shortcode is called with no params

= 2.2.6 - Released on 21 December 2018 =

* New: added support to WordPress 5.0
* New: added support to WooCommerce 3.5.3
* New: added Gutenberg blocks for plugin shortcodes
* Update: internal plugin framework
* Update: italian language
* Fix: preventing sql error when hidden products list just contains 0 id
* Fix: problem with sprintf on backend
* Dev: added product param to yith_free_text filter

= 2.2.5 - Released on 24 October 2018 =

* New: updated plugin framework

= 2.2.4 - Released on 04 October 2018 =

* New: added support to WooCoommerce 3.5
* New: added support to WordPress 4.9.8
* New: updated plugin framework
* New: added method that returns localization variables
* Tweak: type attribute from <script> tag
* Update: Spanish language
* Update: Italian language
* Dev: added new filter yith_wcwl_localize_script to let third party dev filter localization variables
* Dev: added new filter yith_wcwl_share_conditions to display the share buttons for no logged users
* Dev: added new filter yith_wcwl_set_cookie to let third party code skip cookie saving
* Dev: added new filter yith_wcwl_wishlist_param to change query-string param
* Dev: added new filter yith_wcwl_remove_product_wishlist_message_title

= 2.2.3 - Released on 26 July 2018 =

* Update: Plugin core.
* Update: Translation file.

= 2.2.2 - Released on 28 May 2018 =

* New: WooCommerce 3.4 compatibility
* New: WordPress 4.9.6 compatibility
* New: updated plugin framework
* New: GDPR compliance
* Tweak: replaced create_function with a proper class method, to improve compatibility with PHP 7.2 and avoid warnings
* Fix: js error when switching from Premium version to Free
* Fix: preventing add_rewrite_rule when WPML is active, to avoid possible Internal Server Error (thanks to Adri & Bruno)
* Fix: icon replacement not working on variable Add to Cart
* Fix: preventing warning "Illegal string offset" when get_availability() returns empty string instead of array

= 2.2.1 - Released on 31 January 2018 =

* New: tested with WooCommerce 3.3.0
* Fix: issue with Add to Wishlist shortcode when global $product not defined

= 2.2.0 - Released on 11 January 2018 =

* New: WooCommerce 3.2.6 compatibility
* New: plugin-fw 3.0
* New: added js compatibility to Infinite Scrolling
* Tweak: improved wishlist-view template checks and params
* Tweak: wishlist now registers (and shows) "date added" param for unauthenticated users too
* Tweak: added check over product object, to avoid Fatal when printing Add to Wishlist shortcode
* Fix: fixed security vulnerability, causing possible SQL Injections (huge thanks to John C. and Sucuri Vulnerability Research team)
* Dev: added yith_wcwl_removing_from_wishlist / yith_wcwl_removed_from_wishlist hooks
* Dev: added params to main triggers in wishlist js code

= 2.1.2 - Released on 11 May 2017 =

* Tweak: updated FontAwesome to 4.7.0
* Fix: possible warning when empty rewrite rules
* Fix: problem with custom CSS inclusion, when not located in child theme
* Fix: using current_product instead of global product when retrieving product type (prevents a Fatal error when placing Add to Wishlist outside the loop)

= 2.1.1 - Released on 21 April 2017 =

* Tweak: improved endpoints creation, with dynamic flush
* Tweak: added check over wc_print_notices existence, to avoid possible fatal errors
* Tweak: updated plugin-fw
* Fix: problem with duplicated meta
* Fix: product created wince WC 3.0.x not being shown on wishlist

= 2.1.0 - Released on 03 April 2017 =

* New: WooCommerce 3.0-RC2 compatibility
* New: WordPress 4.7.3 compatibility
* New: Korean translation (thanks to kocne)
* New: Croatian translation (thanks to Barbara V.)
* New: flush rewrite rules when installing plugin
* Tweak: added urlencode to mail content in mailto share link
* Tweak: count query of count_all_products
* Tweak: improved WPML list content handling (thanks to Adri)
* Tweak: double check over wc_add_to_cart_params exists and not null
* Tweak: added wishlist meta inside wishlist table data attr also for not logged in users (used for shared wishlist)
* Tweak: remove prettyPhoto-init library
* Tweak: implemented custom code to enable prettyPhoto on Wishlist elements
* Tweak: fixed typo in wishlist-view template
* Tweak: added urlencode to all sharing links
* Tweak: minimized endpoint usage when not required
* Tweak: removed unused check for WC_Product_Bundle
* Fix: get_template_directory for custom wishlist js
* Fix: stock_status not existing when stock column isn't shown
* Dev: action as second param for yith_wcwl_wishlist_page_url filter
* Dev: applied filter yith_wcwl_no_product_to_remove_message also for message on wishlist-view template
* Dev: added filter yith_wcwl_add_wishlist_user_id
* Dev: added filter yith_wcwl_add_wishlist_slug

= 2.0.16 - Released on 14 June 2016 =

* Added: WooCommerce 2.6 support
* Tweak: changed uninstall procedure to work with multisite and delete plugin options
* Tweak: removed description and image from facebook share link (fb doesn't allow anymore)
* Fixed: product query (GROUP By and LIMIT statement conflicting)

= 2.0.15 - Released on 04 April 2016 =

* Added: filter yith_wcwl_is_product_in_wishlist to choose whether a product is in wishlist or not
* Added: filter yith_wcwl_cookie_expiration to set default wishlist cookie expiration time in seconds
* Tweak: updated plugin-fw
* Fixed: get_products query returning product multiple times when product has more then one visibility meta

= 2.0.14 - Released on 21 March 2016 =

* Added: Dutch translation (thanks to w.vankuipers)
* Added: Danish translation (thanks to Morten)
* Added: yith_wcwl_is_wishlist_page function to identify if current page is wishlist page
* Added: filter yith_wcwl_settings_panel_capability for panel capability
* Added: filter yith_wcwl_current_wishlist_view_params for shortcode view params
* Added: "defined YITH_WCWL" check before every template
* Added: check over existance of $.prettyPhoto.close before using it
* Added: method count_add_to_wishlist to YITH_WCWL class
* Added: function yith_wcwl_count_add_to_wishlist
* Tweak: Changed ajax url to "relative"
* Tweak: Removed yit-common (old plugin-fw) deprecated since 2.0
* Tweak: Removed deprecated WC functions
* Tweak: Skipped removed_from_wishlist query arg adding, when external product
* Tweak: Added transients for wishist counts
* Tweak: Removed DOM structure dependencies from js for wishlist table handling
* Tweak: All methods/functions that prints/counts products in wishlist now skip trashed or not visible products
* Fixed: shortcode callback setting global product in some conditions
* Fixed: typo in hook yith_wccl_table_after_product_name (now set to yith_wcwl_table_after_product_name)
* Fixed: notice appearing when wishlist page slug is empty

= 2.0.13 - Released on 17 December 2015 =

* Added: check over adding_to_cart event data existance in js procedures
* Added: 'yith_wcwl_added_to_cart_message' filter, to customize added to cart message in wishlist page
* Added: nofollow to "Add to Wishlist" links, where missing
* Added: 'yith_wcwl_email_share_subject' filter to customize share by email subject
* Added: 'yith_wcwl_email_share_body' filter to customize share by email body
* Added: function "yith_wcwl_count_all_products"
* Fixed: plugin-fw loading

= 2.0.12 - Released on 23 October 2015 =

* Added: method to count all products in wishlist
* Tweak: Added wishlist js handling on 'yith_wcwl_init' triggered on document
* Tweak: Performance improved with new plugin core 2.0
* Fixed: occasional fatal error for users with outdated version of plugin-fw on their theme

= 2.0.11 - Released on 21 September 2015 =

* Added: spanish translation (thanks to Arman S.)
* Added: polish translation (thanks to Roan)
* Added: swedish translation (thanks to Lallex)
* Updated: changed text domain from yit to yith-woocommerce-wishlist
* Updated: changed all language file for the new text domain

= 2.0.10 - Released on 12 August 2015 =

* Added: Compatibility with WC 2.4.2
* Tweak: added nonce field to wishlist-view form
* Tweak: added yith_wcwl_custom_add_to_cart_text and yith_wcwl_ask_an_estimate_text filters
* Tweak: added check for presence of required function in wishlist script
* Fixed: admin colorpicker field (for WC 2.4.x compatibility)

= 2.0.9 - Released on 24 July 2015 =

* Added: russian translation
* Added: WooCommerce class to wishlist view form
* Added: spinner to plugin assets
* Added: check on "user_logged_in" for sub-templates in wishlist-view
* Added: WordPress 4.2.3 compatibility
* Added: WPML 3.2.2 compatibility (removed deprecated function)
* Added: new check on is_product_in_wishlist (for unlogged users/default wishlist)
* Tweak: escaped urls on share template
* Tweak: removed new line between html attributes, to improve themes compatibility
* Fixed: WPML 3.2.2 compatibility (fix suggested by Konrad)
* Fixed: regex used to find class attr in "Add to Cart" button
* Fixed: usage of product_id for add_to_wishlist shortcode, when global $product is not defined
* Fixed: icon attribute for yith_wcwl_add_to_wishlist shortcode

= 2.0.8 - Released on 29 May 2015 =

* Added: support WP 4.2.2
* Added: Persian translation
* Added: check on cookie content
* Added: Frequently Bought Together integration
* Tweak: moved cookie update before first cookie usage
* Updated: Italian translation
* Removed: login_redirect_url variable

= 2.0.7 - Released on 30 April 2015 =

* Added: WP 4.2.1 support
* Added: WC 2.3.8 support
* Added: "Added to cart" message in wishlist page
* Added: Portuguese translation
* Updated: revision of all templates
* Fixed: vulnerability for unserialize of cookie content (Warning: in this way all the old serialized plugins will be deleted and all the wishlists of the non-logged users will be lost)
* Fixed: Escaped add_query_arg() and remove_query_arg()
* Removed: use of pretty permalinks if WPML enabled

= 2.0.6 - Released on 08 April 2015 =

* Added: system to overwrite wishlist js
* Added: trailingslashit() to wishlist permalink
* Added: chinese translation
* Added: "show_empty" filter to get_wishlists() method
* Fixed: count wishlist items
* Fixed: problem with price inclusive of tax
* Fixed: remove from wishlist for not logged user
* Fixed: twitter share summary

= 2.0.5 - Released on 19 March 2015 =

* Added: icl_object_id to wishlist page id, to translate pages
* Tweak: updated rewrite rules, to include child pages as wishlist pages
* Tweak: moved WC notices from wishlist template to yith_wcwl_before_wishlist_title hook
* Tweak: added wishlist table id to .load(), to update only that part of template
* Fixed: yith_wcwl_locate_template causing 500 Internal Server Error

= 2.0.4 - Released on 04 March 2015 =

* Added: Options for browse wishlist/already in wishlist/product added strings
* Added: rel nofollow to add to wishlist button
* Tweak: moved wishlist response popup handling to separate js file
* Updated: WPML xml configuration
* Updated: string revision

= 2.0.3 - Released on 19 February 2015 =

* Tweak: set correct protocol for admin-ajax requests
* Tweak: used wc core function to set cookie
* Tweak: let customization of add_to_wishlist shortcodes
* Fixed: show add to cart column when stock status disabled
* Fixed: product existing in wishlist

= 2.0.2 - Released on 17 February 2015 =

* Updated: font-awesome library
* Fixed: option with old font-awesome classes

= 2.0.1 - Released on 13 February 2015 =

* Added: spinner image on loading
* Added: flush rewrite rules on database upgrade
* Fixed: wc_add_to_cart_params not defined issue

= 2.0.0 - Released on 12 February 2015 =

* Added: Support to woocommerce 2.3
* Added: New color options
* Tweak: Add to cart button from woocommerce template
* Tweak: Share links on template
* Tweak: Code revision
* Tweak: Use wordpress API in ajax call instead of custom script
* Updated: Plugin core framework


= 1.1.7 - Released on 03 December 2014 =

* Added: Support to WooCommerce Endpoints (@use yit_wcwl_add_to_cart_redirect_url filter)
* Added: Filter to shortcode html
* Added: Title to share

= 1.1.6 - Released on 16 September 2014 =

* Updated: Plugin Core Framework
* Updated: Languages file
* Tweek:   WPML Support Improved

= 1.1.5 - Released on 30 June 2014 =

* Added: Share wishlist by email

= 1.1.4 - Released on 26 June 2014 =

* Fixed: wrong string for inline js on remove link
* Fixed: wrong string for inline js on add to cart link

= 1.1.3 - Released on 05 June 2014 =

* Added: Options Tabs Filter
* Fixed: Various Bugs

= 1.1.2 - Released on 21 March 2014 =

* Fixed: Warnings when Show Stock Status is disabled
* Fixed: Restored page options on WooCommerce 2.1.x

= 1.1.1 - Released on 26 February 2014 =

* Fixed: Inability to unistall plugin
* Fixed: Redirect to cart page from wishlist page

= 1.1.0 - Released on 13 February 2014 =

* Added: Support to WooCommerce 2.1.x
* Added: Spanish (Mexico) translation by Gabriel Dzul
* Added: French translation by Virginie Garcin
* Fixed: Revision Italian Language po/mo files

= 1.0.6 - Released on 18 November 2013 =

* Added: Spanish (Argentina) partial translation by Sebastian Jeremias
* Added: Portuguese (Brazil) translation by Lincoln Lemos
* Fixed: Share buttons show also when not logged in
* Fixed: Price shows including or excluding tax based on WooCommerce settings
* Fixed: Better compatibility for WPML
* Fixed: Price shows "Free!" if the product is without price
* Fixed: DB Table creation on plugin activation

= 1.0.5 - Released on 14 October 2013 =

* Added: Shared wishlists can be seens also by not logged in users
* Added: Support for WPML String translation
* Updated: German translation by Stephanie Schlieske
* Fixed: Add to cart button does not appear if the product is out of stock

= 1.0.4 - Released on 04 September 2013 =

* Added: partial Ukrainian translation
* Added: complete German translation. Thanks to Stephanie Schliesk
* Added: options to show/hide button add to cart, unit price and stock status in the wishlist page
* Added: Hebrew language (thanks to Gery Grinvald)

= 1.0.3 - Released on 31 July 2013 =

* Fixed: Minor bugs fixes

= 1.0.2 - Released on 24 June 2013 =

* Fixed: Fatal error to yit_debug with yit themes

= 1.0.1 - Released on 30 May 2013 =

* Tweak: Optimized images
* Updated: internal framework

= 1.0.0 - Released on 23 May 2013 =

* Initial release
PK`x1\<Th&includes/class-yith-wcwl-exception.phpnu�[���<?php
/**
 * Wishlist Exception class
 *
 * @author YITH
 * @package YITH\Wishlist\Classes
 * @version 3.0.0
 */

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

if ( ! class_exists( 'YITH_WCWL_Exception' ) ) {
	/**
	 * WooCommerce Wishlist Exception
	 *
	 * @since 1.0.0
	 */
	class YITH_WCWL_Exception extends Exception {
		/**
		 * Available error codes
		 *
		 * @var array
		 */
		private $error_codes = array(
			0 => 'error',
			1 => 'exists',
		);

		/**
		 * Returns textual code for the error
		 *
		 * @return string Textual code of the error.
		 */
		public function getTextualCode() {
			$code = $this->getCode();

			if ( array_key_exists( $code, $this->error_codes ) ) {
				return $this->error_codes[ $code ];
			}

			return 'error';
		}
	}
}
PK`x1\���=jjincludes/class-yith-wcwl.phpnu�[���<?php
/**
 * Main class
 *
 * @author YITH
 * @package YITH\Wishlist\Classes
 * @version 3.0.0
 */

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

if ( ! class_exists( 'YITH_WCWL' ) ) {
	/**
	 * WooCommerce Wishlist
	 *
	 * @since 1.0.0
	 */
	class YITH_WCWL {
		/**
		 * Single instance of the class
		 *
		 * @var \YITH_WCWL
		 * @since 2.0.0
		 */
		protected static $instance;

		/**
		 * Last operation token
		 *
		 * @var string
		 * @since 2.0.0
		 */
		public $last_operation_token;

		/**
		 * Query string parameter used to generate Wishlist urls
		 *
		 * @var string
		 * @since 2.1.2
		 */
		public $wishlist_param = 'wishlist-action';

		/**
		 * Returns single instance of the class
		 *
		 * @return \YITH_WCWL
		 * @since 2.0.0
		 */
		public static function get_instance() {
			if ( is_null( self::$instance ) ) {
				self::$instance = new self();
			}

			return self::$instance;
		}

		/**
		 * Constructor.
		 *
		 * @return \YITH_WCWL
		 * @since 1.0.0
		 */
		public function __construct() {
			// register data stores.
			add_filter( 'woocommerce_data_stores', array( $this, 'register_data_stores' ) );

			// init frontend class.
			$this->wcwl_frontend = YITH_WCWL_Frontend();

			// init crons.
			$this->wcwl_cron = YITH_WCWL_Cron();

			// init session.
			$this->wcwl_session = YITH_WCWL_Session();

			// init admin handling.
			if ( is_admin() ) {
				$this->wcwl_admin = YITH_WCWL_Admin();
			}

			// load plugin-fw.
			add_action( 'plugins_loaded', array( $this, 'plugin_fw_loader' ), 15 );
			add_action( 'plugins_loaded', array( $this, 'privacy_loader' ), 20 );

			// add rewrite rule.
			add_action( 'init', array( $this, 'add_rewrite_rules' ), 0 );
			add_filter( 'query_vars', array( $this, 'add_public_query_var' ) );

			// Polylang integration.
			add_filter( 'pll_translation_url', array( $this, 'get_pll_wishlist_url' ), 10, 1 );
		}

		/* === PLUGIN FW LOADER === */

		/**
		 * Loads plugin fw, if not yet created
		 *
		 * @return void
		 * @since 2.0.0
		 */
		public function plugin_fw_loader() {
			if ( ! defined( 'YIT_CORE_PLUGIN' ) ) {
				global $plugin_fw_data;
				if ( ! empty( $plugin_fw_data ) ) {
					$plugin_fw_file = array_shift( $plugin_fw_data );
					require_once $plugin_fw_file;
				}
			}
		}

		/* === PRIVACY LOADER === */

		/**
		 * Loads privacy class
		 *
		 * @return void
		 * @since 2.0.0
		 */
		public function privacy_loader() {
			if ( class_exists( 'YITH_Privacy_Plugin_Abstract' ) ) {
				require_once YITH_WCWL_INC . 'class-yith-wcwl-privacy.php';
				new YITH_WCWL_Privacy();
			}
		}

		/* === ITEMS METHODS === */

		/**
		 * Add a product in the wishlist.
		 *
		 * @param array $atts Array of parameters; when not passed, params will be searched in $_REQUEST.
		 * @return void
		 * @throws YITH_WCWL_Exception When an error occurs with Add to Wishlist operation.
		 *
		 * @since 1.0.0
		 */
		public function add( $atts = array() ) {
			$defaults = array(
				'add_to_wishlist'     => 0,
				'wishlist_id'         => 0,
				'quantity'            => 1,
				'user_id'             => false,
				'dateadded'           => '',
				'wishlist_name'       => '',
				'wishlist_visibility' => 0,
			);

			$atts = empty( $atts ) && ! empty( $this->details ) ? $this->details : $atts;
			$atts = ! empty( $atts ) ? $atts : $_REQUEST; // phpcs:ignore WordPress.Security.NonceVerification.Recommended
			$atts = wp_parse_args( $atts, $defaults );

			// filtering params.
			$prod_id     = apply_filters( 'yith_wcwl_adding_to_wishlist_prod_id', intval( $atts['add_to_wishlist'] ) );
			$wishlist_id = apply_filters( 'yith_wcwl_adding_to_wishlist_wishlist_id', $atts['wishlist_id'] );
			$quantity    = apply_filters( 'yith_wcwl_adding_to_wishlist_quantity', intval( $atts['quantity'] ) );
			$user_id     = apply_filters( 'yith_wcwl_adding_to_wishlist_user_id', intval( $atts['user_id'] ) );
			$dateadded   = apply_filters( 'yith_wcwl_adding_to_wishlist_dateadded', $atts['dateadded'] );

			do_action( 'yith_wcwl_adding_to_wishlist', $prod_id, $wishlist_id, $user_id );

			if ( ! $this->can_user_add_to_wishlist() ) {
				throw new YITH_WCWL_Exception( apply_filters( 'yith_wcwl_user_cannot_add_to_wishlist_message', __( 'The item cannot be added to this wishlist', 'yith-woocommerce-wishlist' ) ), 1 );
			}

			if ( ! $prod_id ) {
				throw new YITH_WCWL_Exception( __( 'An error occurred while adding the products to the wishlist.', 'yith-woocommerce-wishlist' ), 0 );
			}

			$wishlist = 'new' === $wishlist_id ? $this->add_wishlist( $atts ) : YITH_WCWL_Wishlist_Factory::get_wishlist( $wishlist_id, 'edit' );

			if ( ! $wishlist instanceof YITH_WCWL_Wishlist || ! $wishlist->current_user_can( 'add_to_wishlist' ) ) {
				throw new YITH_WCWL_Exception( __( 'An error occurred while adding the products to the wishlist.', 'yith-woocommerce-wishlist' ), 0 );
			}

			$this->last_operation_token = $wishlist->get_token();

			if ( $wishlist->has_product( $prod_id ) ) {
				throw new YITH_WCWL_Exception( apply_filters( 'yith_wcwl_product_already_in_wishlist_message', get_option( 'yith_wcwl_already_in_wishlist_text' ) ), 1 );
			}

			$item = new YITH_WCWL_Wishlist_Item();

			$item->set_product_id( $prod_id );
			$item->set_quantity( $quantity );
			$item->set_wishlist_id( $wishlist->get_id() );
			$item->set_user_id( $wishlist->get_user_id() );

			if ( $dateadded ) {
				$item->set_date_added( $dateadded );
			}

			$wishlist->add_item( $item );
			$wishlist->save();

			wp_cache_delete( 'wishlist-count-' . $wishlist->get_token(), 'wishlists' );

			$user_id = $wishlist->get_user_id();

			if ( $user_id ) {
				wp_cache_delete( 'wishlist-user-total-count-' . $user_id, 'wishlists' );
			}

			do_action( 'yith_wcwl_added_to_wishlist', $prod_id, $item->get_wishlist_id(), $item->get_user_id() );
		}

		/**
		 * Remove an entry from the wishlist.
		 *
		 * @param array $atts Array of parameters; when not passed, parameters will be retrieved from $_REQUEST.
		 *
		 * @return void
		 * @throws YITH_WCWL_Exception When something was wrong with removal.
		 * @since 1.0.0
		 */
		public function remove( $atts = array() ) {
			$defaults = array(
				'remove_from_wishlist' => 0,
				'wishlist_id'          => 0,
				'user_id'              => false,
			);

			$atts = empty( $atts ) && ! empty( $this->details ) ? $this->details : $atts;
			$atts = ! empty( $atts ) ? $atts : $_REQUEST; // phpcs:ignore WordPress.Security.NonceVerification.Recommended
			$atts = wp_parse_args( $atts, $defaults );

			$prod_id     = intval( $atts['remove_from_wishlist'] );
			$wishlist_id = intval( $atts['wishlist_id'] );
			$user_id     = intval( $atts['user_id'] );

			do_action( 'yith_wcwl_removing_from_wishlist', $prod_id, $wishlist_id, $user_id );

			if ( ! $prod_id ) {
				throw new YITH_WCWL_Exception( apply_filters( 'yith_wcwl_unable_to_remove_product_message', __( 'Error. Unable to remove the product from the wishlist.', 'yith-woocommerce-wishlist' ) ), 0 );
			}

			$wishlist = apply_filters( 'yith_wcwl_get_wishlist_on_remove', YITH_WCWL_Wishlist_Factory::get_wishlist( $wishlist_id ), $atts );

			if ( apply_filters( 'yith_wcwl_allow_remove_after_add_to_cart', ! $wishlist instanceof YITH_WCWL_Wishlist || ! $wishlist->current_user_can( 'remove_from_wishlist' ), $wishlist ) ) {
				throw new YITH_WCWL_Exception( apply_filters( 'yith_wcwl_unable_to_remove_product_message', __( 'Error. Unable to remove the product from the wishlist.', 'yith-woocommerce-wishlist' ) ), 0 );
			}

			$wishlist->remove_product( $prod_id );
			$wishlist->save();

			wp_cache_delete( 'wishlist-count-' . $wishlist->get_token(), 'wishlists' );

			$user_id = $wishlist->get_user_id();

			if ( $user_id ) {
				wp_cache_delete( 'wishlist-user-total-count-' . $user_id );
			}

			do_action( 'yith_wcwl_removed_from_wishlist', $prod_id, $wishlist->get_id(), $wishlist->get_user_id() );
		}

		/**
		 * Check if the product exists in the wishlist.
		 *
		 * @param int      $product_id  Product id to check.
		 * @param int|bool $wishlist_id Wishlist where to search (use false to search in default wishlist).
		 * @return bool
		 * @since 1.0.0
		 */
		public function is_product_in_wishlist( $product_id, $wishlist_id = false ) {
			$wishlist = YITH_WCWL_Wishlist_Factory::get_wishlist( $wishlist_id );

			if ( ! $wishlist ) {
				return false;
			}

			return apply_filters( 'yith_wcwl_is_product_in_wishlist', $wishlist->has_product( $product_id ), $product_id, $wishlist_id );
		}

		/**
		 * Retrieve elements of the wishlist for a specific user
		 *
		 * @param array $args Arguments array; it may contains any of the following:<br/>
		 * [<br/>
		 *     'user_id'             // Owner of the wishlist; default to current user logged in (if any), or false for cookie wishlist<br/>
		 *     'product_id'          // Product to search in the wishlist<br/>
		 *     'wishlist_id'         // wishlist_id for a specific wishlist, false for default, or all for any wishlist<br/>
		 *     'wishlist_token'      // wishlist token, or false as default<br/>
		 *     'wishlist_visibility' // all, visible, public, shared, private<br/>
		 *     'is_default' =>       // whether searched wishlist should be default one <br/>
		 *     'id' => false,        // only for table select<br/>
		 *     'limit' => false,     // pagination param; number of items per page. 0 to get all items<br/>
		 *     'offset' => 0         // pagination param; offset for the current set. 0 to start from the first item<br/>
		 * ].
		 *
		 * @return YITH_WCWL_Wishlist_Item[]|bool
		 * @since 2.0.0
		 */
		public function get_products( $args = array() ) {
			return YITH_WCWL_Wishlist_Factory::get_wishlist_items( $args );
		}

		/**
		 * Retrieve the number of products in the wishlist.
		 *
		 * @param string|bool $wishlist_token Wishlist token if any; false for default wishlist.
		 *
		 * @return int
		 * @since 1.0.0
		 */
		public function count_products( $wishlist_token = false ) {
			$wishlist = YITH_WCWL_Wishlist_Factory::get_wishlist( $wishlist_token );

			if ( ! $wishlist ) {
				return 0;
			}

			$count = wp_cache_get( 'wishlist-count-' . $wishlist->get_token(), 'wishlists' );

			if ( false === $count ) {
				$count = $wishlist->count_items();
				wp_cache_set( 'wishlist-count-' . $wishlist->get_token(), $count, 'wishlists' );
			}

			return $count;
		}

		/**
		 * Count all user items in wishlists
		 *
		 * @return int Count of items added all over wishlist from current user
		 * @since 2.0.12
		 */
		public function count_all_products() {
			$args = array(
				'wishlist_id' => 'all',
			);

			if ( is_user_logged_in() ) {
				$id              = get_current_user_id();
				$args['user_id'] = $id;
			} elseif ( YITH_WCWL_Session()->has_session() ) {
				$id                 = YITH_WCWL_Session()->get_session_id();
				$args['session_id'] = $id;
			}

			if ( ! isset( $id ) ) {
				return 0;
			}

			$count = wp_cache_get( 'wishlist-user-total-count-' . $id, 'wishlists' );

			if ( false === $count ) {
				$count = YITH_WCWL_Wishlist_Factory::get_wishlist_items_count( $args );
				wp_cache_set( 'wishlist-user-total-count-' . $id, $count, 'wishlists' );
			}

			return $count;
		}

		/**
		 * Count number of times a product was added to users wishlists
		 *
		 * @param int|bool $product_id Product id; false will force method to use global product.
		 *
		 * @return int Number of times the product was added to wishlist
		 * @since 2.0.13
		 */
		public function count_add_to_wishlist( $product_id = false ) {
			global $product;

			$product_id = ! ( $product_id ) ? yit_get_product_id( $product ) : $product_id;

			if ( ! $product_id ) {
				return 0;
			}

			$count = YITH_WCWL_Wishlist_Factory::get_times_added_count( $product_id );

			return $count;
		}

		/**
		 * Count product occurrences in users wishlists
		 *
		 * @param int|bool $product_id Product id; false will force method to use global product.
		 *
		 * @return int
		 * @since 2.0.0
		 */
		public function count_product_occurrences( $product_id = false ) {
			global $product;

			$product_id = ! ( $product_id ) ? yit_get_product_id( $product ) : $product_id;

			if ( ! $product_id ) {
				return 0;
			}

			$count = YITH_WCWL_Wishlist_Factory::get_wishlist_items_count(
				array(
					'product_id'  => $product_id,
					'user_id'     => false,
					'session_id'  => false,
					'wishlist_id' => 'all',
				)
			);

			return $count;
		}

		/**
		 * Retrieve details of a product in the wishlist.
		 *
		 * @param int      $product_id  Product id.
		 * @param int|bool $wishlist_id Wishlist id, or false when default should be applied.
		 * @return YITH_WCWL_Wishlist_Item|bool
		 * @since 1.0.0
		 */
		public function get_product_details( $product_id, $wishlist_id = false ) {
			$product = $this->get_products(
				array(
					'prod_id'     => $product_id,
					'wishlist_id' => $wishlist_id,
				)
			);

			if ( empty( $product ) ) {
				return false;
			}

			return array_shift( $product );
		}

		/* === WISHLISTS METHODS === */

		/**
		 * Add a new wishlist for the user.
		 *
		 * @param array $atts Array of params for wishlist creation.
		 * @return int Id of the wishlist created
		 * @since 2.0.0
		 */
		public function add_wishlist( $atts = array() ) {
			$defaults = array(
				'user_id' => false,
			);

			$atts = empty( $atts ) && ! empty( $this->details ) ? $this->details : $atts;
			$atts = ! empty( $atts ) ? $atts : $_REQUEST; // phpcs:ignore WordPress.Security.NonceVerification.Recommended
			$atts = wp_parse_args( $atts, $defaults );

			$user_id = ( ! empty( $atts['user_id'] ) ) ? $atts['user_id'] : false;

			return $this->generate_default_wishlist( $user_id );
		}

		/**
		 * Update wishlist with arguments passed as second parameter
		 *
		 * @param int   $wishlist_id Wishlist id.
		 * @param array $args Array of parameters to use in update process.
		 * @return void
		 * @since 2.0.0
		 */
		public function update_wishlist( $wishlist_id, $args = array() ) {}

		/**
		 * Delete indicated wishlist
		 *
		 * @param int $wishlist_id Wishlist id.
		 * @return void
		 * @since 2.0.0
		 */
		public function remove_wishlist( $wishlist_id ) {}

		/**
		 * Retrieve all the wishlist matching specified arguments
		 *
		 * @param array $args Array of valid arguments<br/>
		 * [<br/>
		 *     'id'                  // Wishlist id to search, if any<br/>
		 *     'user_id'             // User owner<br/>
		 *     'wishlist_slug'       // Slug of the wishlist to search<br/>
		 *     'wishlist_name'       // Name of the wishlist to search<br/>
		 *     'wishlist_token'      // Token of the wishlist to search<br/>
		 *     'wishlist_visibility' // Wishlist visibility: all, visible, public, shared, private<br/>
		 *     'user_search'         // String to match against first name / last name or email of the wishlist owner<br/>
		 *     'is_default'          // Whether wishlist should be default or not<br/>
		 *     'orderby'             // Column used to sort final result (could be any wishlist lists column)<br/>
		 *     'order'               // Sorting order<br/>
		 *     'limit'               // Pagination param: maximum number of elements in the set. 0 to retrieve all elements<br/>
		 *     'offset'              // Pagination param: offset for the current set. 0 to start from the first item<br/>
		 *     'show_empty'          // Whether to show empty lists os not<br/>
		 * ].
		 *
		 * @return YITH_WCWL_Wishlist[]
		 * @since 2.0.0
		 */
		public function get_wishlists( $args = array() ) {
			return YITH_WCWL_Wishlist_Factory::get_wishlists( $args );
		}

		/**
		 * Wrapper for \YITH_WCWL::get_wishlists, will return wishlists for current user
		 *
		 * @return YITH_WCWL_Wishlist[]
		 * @since 2.0.0
		 */
		public function get_current_user_wishlists() {
			$id = is_user_logged_in() ? get_current_user_id() : YITH_WCWL_Session()->maybe_get_session_id();

			if ( ! $id ) {
				return array();
			}

			$lists = wp_cache_get( 'user-wishlists-' . $id, 'wishlists' );

			if ( ! $lists ) {
				$lists = YITH_WCWL_Wishlist_Factory::get_wishlists(
					array(
						'orderby' => 'dateadded',
						'order'   => 'ASC',
					)
				);

				wp_cache_set( 'user-wishlists-' . $id, $lists, 'wishlists' );
			}

			return $lists;
		}

		/**
		 * Returns details of a wishlist, searching it by wishlist id
		 *
		 * @param int $wishlist_id Wishlist id.
		 * @return YITH_WCWL_Wishlist
		 * @since 2.0.0
		 */
		public function get_wishlist_detail( $wishlist_id ) {
			return YITH_WCWL_Wishlist_Factory::get_wishlist( $wishlist_id );
		}

		/**
		 * Returns details of a wishlist, searching it by wishlist token
		 *
		 * @param string $wishlist_token Wishlist token.
		 * @return YITH_WCWL_Wishlist
		 * @since 2.0.0
		 */
		public function get_wishlist_detail_by_token( $wishlist_token ) {
			return YITH_WCWL_Wishlist_Factory::get_wishlist( $wishlist_token );
		}

		/**
		 * Generate default wishlist for current user or session
		 *
		 * @param int|bool $id User or session id; false if you want to use current user/session.
		 *
		 * @return int Default wishlist id
		 * @since 2.0.0
		 */
		public function generate_default_wishlist( $id = false ) {
			$wishlist = YITH_WCWL_Wishlist_Factory::generate_default_wishlist( $id );

			if ( $wishlist ) {
				return $wishlist->get_id();
			}

			return false;
		}

		/**
		 * Generate a token to visit wishlist
		 *
		 * @return string token
		 * @since 2.0.0
		 */
		public function generate_wishlist_token() {
			return YITH_WCWL_Wishlist_Factory::generate_wishlist_token();
		}

		/**
		 * Returns an array of users that created and populated a public wishlist
		 *
		 * @param array $args Array of valid arguments<br/>
		 * [<br/>
		 *     'search' // String to match against first name / last name / user login or user email of wishlist owner<br/>
		 *     'limit'  // Pagination param: number of items to show in one page. 0 to show all items<br/>
		 *     'offset' // Pagination param: offset for the current set. 0 to start from the first item<br/>
		 * ].
		 * @return array
		 * @since 2.0.0
		 */
		public function get_users_with_wishlist( $args = array() ) {
			return YITH_WCWL_Wishlist_Factory::get_wishlist_users( $args );
		}

		/**
		 * Count users that have public wishlists
		 *
		 * @param string $search Search string.
		 * @return int
		 * @since 2.0.0
		 */
		public function count_users_with_wishlists( $search ) {
			return count( $this->get_users_with_wishlist( array( 'search' => $search ) ) );
		}

		/* === GENERAL METHODS === */

		/**
		 * Checks whether current user can add to the wishlist
		 *
		 * TODO: merge this into \YITH_WCWL_Wishlist::current_user_can
		 *
		 * @param int|bool $user_id User id to test; false to use current user id.
		 * @return bool Whether current user can add to wishlist
		 * @since 3.0.0
		 */
		public function can_user_add_to_wishlist( $user_id = false ) {
			$user_id                                    = $user_id ? $user_id : get_current_user_id();
			$disable_wishlist_for_unauthenticated_users = get_option( 'yith_wcwl_disable_wishlist_for_unauthenticated_users' );
			$return                                     = true;

			if ( 'yes' === $disable_wishlist_for_unauthenticated_users && ! $user_id ) {
				$return = false;
			}

			return apply_filters( 'yith_wcwl_can_user_add_to_wishlist', $return, $user_id );
		}

		/**
		 * Register custom plugin Data Stores classes
		 *
		 * @param array $data_stores Array of registered data stores.
		 * @return array Array of filtered data store
		 */
		public function register_data_stores( $data_stores ) {
			$data_stores['wishlist']      = 'YITH_WCWL_Wishlist_Data_Store';
			$data_stores['wishlist-item'] = 'YITH_WCWL_Wishlist_Item_Data_Store';

			return $data_stores;
		}

		/**
		 * Add rewrite rules for wishlist
		 *
		 * @return void
		 * @since 2.0.0
		 */
		public function add_rewrite_rules() {
			global $wp_query;

			// filter wishlist param.
			$this->wishlist_param = apply_filters( 'yith_wcwl_wishlist_param', $this->wishlist_param );

			$wishlist_page_id = get_option( 'yith_wcwl_wishlist_page_id' );
			$wishlist_page_id = yith_wcwl_object_id( $wishlist_page_id, 'page', true, 'default' );

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

			$wishlist_page      = get_post( $wishlist_page_id );
			$wishlist_page_slug = $wishlist_page ? $wishlist_page->post_name : false;

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

			if ( defined( 'POLYLANG_VERSION' ) || defined( 'ICL_PLUGIN_PATH' ) ) {
				return;
			}

			$regex_paged  = '(([^/]+/)*' . urldecode( $wishlist_page_slug ) . ')(/(.*))?/page/([0-9]{1,})/?$';
			$regex_simple = '(([^/]+/)*' . urldecode( $wishlist_page_slug ) . ')(/(.*))?/?$';

			add_rewrite_rule( $regex_paged, 'index.php?pagename=$matches[1]&' . $this->wishlist_param . '=$matches[4]&paged=$matches[5]', 'top' );
			add_rewrite_rule( $regex_simple, 'index.php?pagename=$matches[1]&' . $this->wishlist_param . '=$matches[4]', 'top' );

			$rewrite_rules = get_option( 'rewrite_rules' );

			if ( ! is_array( $rewrite_rules ) || ! array_key_exists( $regex_paged, $rewrite_rules ) || ! array_key_exists( $regex_simple, $rewrite_rules ) ) {
				flush_rewrite_rules();
			}
		}

		/**
		 * Adds public query var for wishlist
		 *
		 * @param array $public_var Array of available query vars.
		 * @return array
		 * @since 2.0.0
		 */
		public function add_public_query_var( $public_var ) {
			$public_var[] = $this->wishlist_param;
			$public_var[] = 'wishlist_id';

			return $public_var;
		}

		/**
		 * Return wishlist page id, if any
		 *
		 * @return int Wishlist page id.
		 */
		public function get_wishlist_page_id() {
			$wishlist_page_id = get_option( 'yith_wcwl_wishlist_page_id' );
			$wishlist_page_id = yith_wcwl_object_id( $wishlist_page_id );

			return (int) apply_filters( 'yith_wcwl_wishlist_page_id', $wishlist_page_id );
		}

		/**
		 * Build wishlist page URL.
		 *
		 * @param string $action Action string to use in the url.
		 *
		 * @return string
		 * @since 1.0.0
		 */
		public function get_wishlist_url( $action = '' ) {
			global $sitepress;
			$wishlist_page_id   = $this->get_wishlist_page_id();
			$wishlist_permalink = get_the_permalink( $wishlist_page_id );

			$action_params = explode( '/', $action );
			$view          = $action_params[0];
			$data          = isset( $action_params[1] ) ? $action_params[1] : '';

			if ( 'view' === $action && empty( $data ) ) {
				return $wishlist_permalink;
			}

			if ( get_option( 'permalink_structure' ) && ! defined( 'ICL_PLUGIN_PATH' ) && ! defined( 'POLYLANG_VERSION' ) ) {
				$wishlist_permalink = trailingslashit( $wishlist_permalink );
				$base_url           = trailingslashit( $wishlist_permalink . $action );
			} else {
				$base_url = $wishlist_permalink;
				$params   = array();

				if ( ! empty( $data ) ) {
					$params[ $this->wishlist_param ] = $view;

					if ( 'view' === $view ) {
						$params['wishlist_id'] = $data;
					} elseif ( 'user' === $view ) {
						$params['user_id'] = $data;
					}
				} else {
					$params[ $this->wishlist_param ] = $view;
				}

				$base_url = add_query_arg( $params, $base_url );
			}

			if ( defined( 'ICL_PLUGIN_PATH' ) && $sitepress->get_current_language() !== $sitepress->get_default_language() ) {
				$base_url = add_query_arg( 'lang', $sitepress->get_current_language(), $base_url );
			}

			return apply_filters( 'yith_wcwl_wishlist_page_url', esc_url_raw( $base_url ), $action );
		}

		/**
		 * Retrieve url for the wishlist that was affected by last operation
		 *
		 * @return string Url to view last operation wishlist
		 */
		public function get_last_operation_url() {
			$action = 'view';

			if ( ! empty( $this->last_operation_token ) ) {
				$action .= "/{$this->last_operation_token}";
			}

			return $this->get_wishlist_url( $action );
		}

		/**
		 * Generates Add to Wishlist url, to use when customer do not have js enabled
		 *
		 * @param int   $product_id Product id to add to wishlist.
		 * @param array $args       Any of the following parameters
		 * [
		 *     'base_url' => ''
		 *     'wishlist_id' => 0,
		 *     'quantity' => 1,
		 *     'user_id' => false,
		 *     'dateadded' => '',
		 *     'wishlist_name' => '',
		 *     'wishlist_visibility' => 0
		 * ].
		 * @return string Add to wishlist url
		 */
		public function get_add_to_wishlist_url( $product_id, $args = array() ) {
			$args = array_merge(
				array(
					'add_to_wishlist' => $product_id,
				),
				$args
			);

			if ( isset( $args['base_url'] ) ) {
				$base_url = $args['base_url'];
				unset( $args['base_url'] );

				$url = add_query_arg( $args, $base_url );
			} else {
				$url = add_query_arg( $args );
			}

			return apply_filters( 'yith_wcwl_add_to_wishlist_url', esc_url_raw( wp_nonce_url( $url, 'add_to_wishlist' ) ), $product_id, $args );
		}

		/**
		 * Build the URL used to remove an item from the wishlist.
		 *
		 * @param int $item_id Id of the item to remove.
		 * @return string
		 * @since 1.0.0
		 */
		public function get_remove_url( $item_id ) {
			return esc_url( wp_nonce_url( add_query_arg( 'remove_from_wishlist', $item_id ), 'remove_from_wishlist' ) );
		}

		/**
		 * Returns available views for wishlist page
		 *
		 * @return string[]
		 * @since 3.0.0
		 */
		public function get_available_views() {
			$available_views = apply_filters( 'yith_wcwl_available_wishlist_views', array( 'view', 'user' ) );
			return $available_views;
		}

		/**
		 * Checks whether multi-wishlist feature is enabled for current user
		 *
		 * @return bool Whether feature is enabled or not
		 */
		public function is_multi_wishlist_enabled() {
			return false;
		}

		/* === POLYLANG INTEGRATION === */

		/**
		 * Filters translation url for the wishlist page, when PolyLang is enabled
		 *
		 * @param  string $url Translation url.
		 * @return string Filtered translation url for current page/post.
		 */
		public function get_pll_wishlist_url( $url ) {
			// phpcs:disable WordPress.Security.NonceVerification.Recommended
			if ( yith_wcwl_is_wishlist_page() && isset( $_GET[ $this->wishlist_param ] ) ) {
				$wishlist_action = sanitize_text_field( wp_unslash( $_GET[ $this->wishlist_param ] ) );
				$user_id         = isset( $_GET['user_id'] ) ? sanitize_text_field( wp_unslash( $_GET['user_id'] ) ) : '';
				$wishlist_id     = isset( $_GET['wishlist_id'] ) ? sanitize_text_field( wp_unslash( $_GET['wishlist_id'] ) ) : '';

				$params = array_filter(
					array(
						$this->wishlist_param => $wishlist_action,
						'user_id'             => $user_id,
						'wishlist_id'         => $wishlist_id,
					)
				);

				$url = add_query_arg( $params, $url );
			}
			// phpcs:enable WordPress.Security.NonceVerification.Recommended

			return $url;
		}
	}
}

/**
 * Unique access to instance of YITH_WCWL class
 *
 * @return \YITH_WCWL|\YITH_WCWL_Premium
 * @since 2.0.0
 */
function YITH_WCWL() { // phpcs:ignore WordPress.NamingConventions.ValidFunctionName.FunctionNameInvalid
	return defined( 'YITH_WCWL_PREMIUM' ) ? YITH_WCWL_Premium::get_instance() : YITH_WCWL::get_instance();
}
PK`x1\
B
V�V�%includes/class-yith-wcwl-frontend.phpnu�[���<?php
/**
 * Init class
 *
 * @author YITH
 * @package YITH\Wishlist\Classes
 * @version 3.0.0
 */

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

if ( ! class_exists( 'YITH_WCWL_Frontend' ) ) {
	/**
	 * Initiator class. Install the plugin database and load all needed stuffs.
	 *
	 * @since 1.0.0
	 */
	class YITH_WCWL_Frontend {

		/**
		 * Single instance of the class
		 *
		 * @var \YITH_WCWL_Frontend
		 * @since 2.0.0
		 */
		protected static $instance;

		/**
		 * Plugin version
		 *
		 * @var string
		 * @since 1.0.0
		 */
		public $version = '3.3.0';

		/**
		 * Plugin database version
		 *
		 * @var string
		 * @since 1.0.0
		 */
		public $db_version = '3.0.0';

		/**
		 * Store class yith_WCWL_Install.
		 *
		 * @var object
		 * @access private
		 * @since 1.0.0
		 */
		protected $yith_wcwl_install;

		/**
		 * Returns single instance of the class
		 *
		 * @return \YITH_WCWL_Frontend
		 * @since 2.0.0
		 */
		public static function get_instance() {
			if ( is_null( self::$instance ) ) {
				self::$instance = new self();
			}

			return self::$instance;
		}

		/**
		 * Constructor
		 *
		 * @since 1.0.0
		 */
		public function __construct() {
			define( 'YITH_WCWL_VERSION', $this->version );
			define( 'YITH_WCWL_DB_VERSION', $this->db_version );

			$this->yith_wcwl_install = YITH_WCWL_Install();

			// add filter for font-awesome compatibility.
			add_filter( 'option_yith_wcwl_add_to_wishlist_icon', array( $this, 'update_font_awesome_classes' ) );
			add_filter( 'option_yith_wcwl_add_to_cart_icon', array( $this, 'update_font_awesome_classes' ) );

			// init class.
			add_action( 'init', array( $this, 'init' ), 0 );

			// templates.
			add_action( 'init', array( $this, 'add_button' ) );
			add_filter( 'body_class', array( $this, 'add_body_class' ) );
			add_action( 'template_redirect', array( $this, 'add_nocache_headers' ) );
			add_action( 'wp_head', array( $this, 'add_noindex_header' ) );
			add_filter( 'wp_robots', array( $this, 'add_noindex_robots' ) );
			add_action( 'yith_wcwl_before_wishlist_title', array( $this, 'print_notices' ) );
			add_action( 'yith_wcwl_wishlist_before_wishlist_content', array( $this, 'wishlist_header' ), 10, 1 );
			add_action( 'yith_wcwl_wishlist_main_wishlist_content', array( $this, 'main_wishlist_content' ), 10, 1 );
			add_action( 'yith_wcwl_wishlist_after_wishlist_content', array( $this, 'wishlist_footer' ), 10, 1 );

			// template modifications.
			add_filter( 'woocommerce_post_class', array( $this, 'add_products_class_on_loop' ) );

			// scripts.
			add_action( 'wp_head', array( $this, 'detect_javascript' ), 0 );
			add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_styles_and_stuffs' ) );

			// add YITH WooCommerce Frequently Bought Together Premium shortcode.
			add_action( 'yith_wcwl_after_wishlist_form', array( $this, 'yith_wcfbt_shortcode' ), 10, 1 );
			add_filter( 'woocommerce_add_to_cart_redirect', array( $this, 'yith_wfbt_redirect_after_add_to_cart' ), 10, 1 );

			// YITH WCWL Loaded.
			do_action( 'yith_wcwl_loaded' );
		}

		/**
		 * Initiator method.
		 *
		 * @return void
		 * @since 1.0.0
		 */
		public function init() {
			// update cookie from old version to new one.
			$this->update_cookies();
			$this->destroy_serialized_cookies();
			$this->convert_cookies_to_session();

			// register assets.
			$this->register_styles();
			$this->register_scripts();
		}

		/* === ADD TO WISHLIST */

		/**
		 * Add the "Add to Wishlist" button. Needed to use in wp_head hook.
		 *
		 * @return void
		 * @since 1.0.0
		 */
		public function add_button() {
			$positions = apply_filters(
				'yith_wcwl_positions',
				array(
					'after_add_to_cart' => array(
						'hook'     => 'woocommerce_single_product_summary',
						'priority' => 31,
					),
					'add-to-cart'       => array(
						'hook'     => 'woocommerce_single_product_summary',
						'priority' => 31,
					),
					'thumbnails'        => array(
						'hook'     => 'woocommerce_product_thumbnails',
						'priority' => 21,
					),
					'summary'           => array(
						'hook'     => 'woocommerce_after_single_product_summary',
						'priority' => 11,
					),
				)
			);

			// Add the link "Add to wishlist".
			$position = get_option( 'yith_wcwl_button_position', 'add-to-cart' );

			if ( 'shortcode' !== $position && isset( $positions[ $position ] ) ) {
				add_action( $positions[ $position ]['hook'], array( $this, 'print_button' ), $positions[ $position ]['priority'] );
			}

			// check if Add to wishlist button is enabled for loop.
			$enabled_on_loop = 'yes' === get_option( 'yith_wcwl_show_on_loop', 'no' );

			if ( ! $enabled_on_loop ) {
				return;
			}

			$positions = apply_filters(
				'yith_wcwl_loop_positions',
				array(
					'before_image'       => array(
						'hook'     => 'woocommerce_before_shop_loop_item',
						'priority' => 5,
					),
					'before_add_to_cart' => array(
						'hook'     => 'woocommerce_after_shop_loop_item',
						'priority' => 7,
					),
					'after_add_to_cart'  => array(
						'hook'     => 'woocommerce_after_shop_loop_item',
						'priority' => 15,
					),
				)
			);

			// Add the link "Add to wishlist".
			$position = get_option( 'yith_wcwl_loop_position', 'after_add_to_cart' );

			if ( 'shortcode' !== $position && isset( $positions[ $position ] ) ) {
				add_action( $positions[ $position ]['hook'], array( $this, 'print_button' ), $positions[ $position ]['priority'] );
			}
		}

		/**
		 * Print "Add to Wishlist" shortcode
		 *
		 * @return void
		 * @since 2.2.2
		 */
		public function print_button() {
			/**
			 * Developers can use this filter to remove ATW button selectively from specific pages or products
			 * You can use global $product or $post to execute checks
			 *
			 * @since 3.0.7
			 */
			if ( ! apply_filters( 'yith_wcwl_show_add_to_wishlist', true ) ) {
				return;
			}

			echo do_shortcode( '[yith_wcwl_add_to_wishlist]' );
		}

		/* === WISHLIST PAGE === */

		/**
		 * Prints wc notice for wishlist pages
		 *
		 * @return void
		 * @since 2.0.5
		 */
		public function print_notices() {
			if ( function_exists( 'wc_print_notices' ) ) {
				wc_print_notices();
			}
		}

		/**
		 * Add specific body class when the Wishlist page is opened
		 *
		 * @param array $classes Existing boy classes.
		 *
		 * @return array
		 * @since 1.0.0
		 */
		public function add_body_class( $classes ) {
			$wishlist_page_id = YITH_WCWL()->get_wishlist_page_id();

			if ( ! empty( $wishlist_page_id ) && is_page( $wishlist_page_id ) ) {
				$classes[] = 'woocommerce-wishlist';
				$classes[] = 'woocommerce';
				$classes[] = 'woocommerce-page';
			}

			return $classes;
		}

		/**
		 * Send nocache headers on wishlist page
		 *
		 * @return void
		 * @since 3.0.0
		 */
		public function add_nocache_headers() {
			if ( ! headers_sent() && yith_wcwl_is_wishlist_page() ) {
				wc_nocache_headers();
			}
		}

		/**
		 * Send noindex header on Add To Wishlist url (?add_to_wishlist=12345)
		 * Deprecated since version 5.7 of WordPress.
		 *
		 * @return void
		 * @since 3.0.20
		 */
		public function add_noindex_header() {
			if ( function_exists( 'wp_robots_no_robots' ) || ! isset( $_GET['add_to_wishlist'] ) || apply_filters( 'yith_wcwl_skip_noindex_headers', false ) ) { // phpcs:ignore WordPress.Security.NonceVerification.Recommended
				return;
			}

			wp_no_robots();
		}

		/**
		 * Disable search engines indexing for Add to Wishlist url.
		 * Uses "wp_robots" filter introduced in WP 5.7.
		 *
		 * @since 3.0.20
		 * @param array $robots Associative array of robots directives.
		 * @return array Filtered robots directives.
		 */
		public function add_noindex_robots( $robots ) {
			if ( ! isset( $_GET['add_to_wishlist'] ) || apply_filters( 'yith_wcwl_skip_noindex_headers', false ) ) { // phpcs:ignore WordPress.Security.NonceVerification.Recommended
				return $robots;
			}

			return wp_robots_no_robots( $robots );
		}

		/* === SCRIPTS AND ASSETS === */

		/**
		 * Register styles required by the plugin
		 *
		 * @return void
		 */
		public function register_styles() {
			$woocommerce_base = WC()->template_path();
			$assets_path      = str_replace( array( 'http:', 'https:' ), '', WC()->plugin_url() ) . '/assets/';

			// register dependencies.
			wp_register_style( 'jquery-selectBox', YITH_WCWL_URL . 'assets/css/jquery.selectBox.css', array(), '1.2.0' );
			wp_register_style( 'yith-wcwl-font-awesome', YITH_WCWL_URL . 'assets/css/font-awesome.css', array(), '4.7.0' );
			wp_register_style( 'woocommerce_prettyPhoto_css', $assets_path . 'css/prettyPhoto.css', array(), '3.1.6' );

			$deps = apply_filters( 'yith_wcwl_main_style_deps', array( 'jquery-selectBox', 'yith-wcwl-font-awesome', 'woocommerce_prettyPhoto_css' ) );

			// register main style.
			$located = locate_template(
				array(
					$woocommerce_base . 'wishlist.css',
					'wishlist.css',
				)
			);

			if ( ! $located ) {
				wp_register_style( 'yith-wcwl-main', YITH_WCWL_URL . 'assets/css/style.css', $deps, $this->version );
			} else {
				$stylesheet_directory     = get_stylesheet_directory();
				$stylesheet_directory_uri = get_stylesheet_directory_uri();
				$template_directory       = get_template_directory();
				$template_directory_uri   = get_template_directory_uri();

				$style_url = ( strpos( $located, $stylesheet_directory ) !== false ) ? str_replace( $stylesheet_directory, $stylesheet_directory_uri, $located ) : str_replace( $template_directory, $template_directory_uri, $located );

				wp_register_style( 'yith-wcwl-user-main', $style_url, $deps, $this->version );
			}

			// theme specific assets.
			$current_theme = wp_get_theme();

			if ( $current_theme->exists() ) {
				$theme_slug = $current_theme->Template; // phpcs:ignore WordPress.NamingConventions.ValidVariableName.UsedPropertyNotSnakeCase

				if ( file_exists( YITH_WCWL_DIR . 'assets/css/themes/' . $theme_slug . '.css' ) ) {
					wp_register_style( 'yith-wcwl-theme', YITH_WCWL_URL . 'assets/css/themes/' . $theme_slug . '.css', array( $located ? 'yith-wcwl-user-main' : 'yith-wcwl-main' ), $this->version );
				}
			}
		}

		/**
		 * Register scripts required by the plugin
		 *
		 * @return void
		 */
		public function register_scripts() {
			$woocommerce_base = WC()->template_path();
			$assets_path      = str_replace( array( 'http:', 'https:' ), '', WC()->plugin_url() ) . '/assets/';
			$suffix           = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min';
			$prefix           = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? 'unminified/' : '';

			// register dependencies.
			wp_register_script( 'prettyPhoto', $assets_path . 'js/prettyPhoto/jquery.prettyPhoto' . $suffix . '.js', array( 'jquery' ), '3.1.6', true );
			wp_register_script( 'jquery-selectBox', YITH_WCWL_URL . 'assets/js/jquery.selectBox.min.js', array( 'jquery' ), '1.2.0', true );

			$deps = apply_filters( 'yith_wcwl_main_script_deps', array( 'jquery', 'jquery-selectBox', 'prettyPhoto' ) );

			// get localized variables.
			$yith_wcwl_l10n = $this->get_localize();

			// register main script.
			$located = locate_template(
				array(
					$woocommerce_base . 'wishlist.js',
					'wishlist.js',
				)
			);

			if ( ! $located ) {
				wp_register_script( 'jquery-yith-wcwl', YITH_WCWL_URL . 'assets/js/' . $prefix . 'jquery.yith-wcwl' . $suffix . '.js', $deps, $this->version, true );
				wp_localize_script( 'jquery-yith-wcwl', 'yith_wcwl_l10n', $yith_wcwl_l10n );
			} else {
				wp_register_script( 'jquery-yith-wcwl-user', str_replace( get_stylesheet_directory(), get_stylesheet_directory_uri(), $located ), $deps, $this->version, true );
				wp_localize_script( 'jquery-yith-wcwl-user', 'yith_wcwl_l10n', $yith_wcwl_l10n );
			}
		}

		/**
		 * Enqueue styles, scripts and other stuffs needed in the <head>.
		 *
		 * @return void
		 * @since 1.0.0
		 */
		public function enqueue_styles_and_stuffs() {
			// main plugin style.
			if ( ! wp_style_is( 'yith-wcwl-user-main', 'registered' ) ) {
				wp_enqueue_style( 'yith-wcwl-main' );
			} else {
				wp_enqueue_style( 'yith-wcwl-user-main' );
			}

			// theme specific style.
			if ( wp_style_is( 'yith-wcwl-theme', 'registered' ) ) {
				wp_enqueue_style( 'yith-wcwl-theme' );
			}

			// custom style.
			$this->enqueue_custom_style();
		}

		/**
		 * Enqueue style dynamically generated by the plugin
		 *
		 * @return void
		 */
		public function enqueue_custom_style() {
			$custom_css = $this->build_custom_css();

			if ( $custom_css ) {
				$handle = wp_script_is( 'yith-wcwl-user-main' ) ? 'yith-wcwl-user-main' : 'yith-wcwl-main';

				wp_add_inline_style( $handle, $custom_css );
			}
		}

		/**
		 * Enqueue plugin scripts.
		 *
		 * @return void
		 * @since 1.0.0
		 */
		public function enqueue_scripts() {
			if ( ! wp_script_is( 'jquery-yith-wcwl-user', 'registered' ) ) {
				wp_enqueue_script( 'jquery-yith-wcwl' );
			} else {
				wp_enqueue_script( 'jquery-yith-wcwl-user' );
			}
		}

		/**
		 * Return localize array
		 *
		 * @return array Array with variables to be localized inside js
		 * @since 2.2.3
		 */
		public function get_localize() {
			return apply_filters(
				'yith_wcwl_localize_script',
				array(
					'ajax_url'                  => admin_url( 'admin-ajax.php', 'relative' ),
					'redirect_to_cart'          => get_option( 'yith_wcwl_redirect_cart' ),
					'multi_wishlist'            => false,
					'hide_add_button'           => apply_filters( 'yith_wcwl_hide_add_button', true ),
					'enable_ajax_loading'       => 'yes' === get_option( 'yith_wcwl_ajax_enable', 'no' ),
					'ajax_loader_url'           => YITH_WCWL_URL . 'assets/images/ajax-loader-alt.svg',
					'remove_from_wishlist_after_add_to_cart' => 'yes' === get_option( 'yith_wcwl_remove_after_add_to_cart' ),
					'is_wishlist_responsive'    => apply_filters( 'yith_wcwl_is_wishlist_responsive', true ),
					'time_to_close_prettyphoto' => apply_filters( 'yith_wcwl_time_to_close_prettyphoto', 3000 ),
					'fragments_index_glue'      => apply_filters( 'yith_wcwl_fragments_index_glue', '.' ),
					'reload_on_found_variation' => apply_filters( 'yith_wcwl_reload_on_found_variation', true ),
					'mobile_media_query'        => apply_filters( 'yith_wcwl_mobile_media_query', 768 ),
					'labels'                    => array(
						'cookie_disabled'       => __( 'We are sorry, but this feature is available only if cookies on your browser are enabled.', 'yith-woocommerce-wishlist' ),
						'added_to_cart_message' => sprintf( '<div class="woocommerce-notices-wrapper"><div class="woocommerce-message" role="alert">%s</div></div>', apply_filters( 'yith_wcwl_added_to_cart_message', __( 'Product added to cart successfully', 'yith-woocommerce-wishlist' ) ) ),
					),
					'actions'                   => array(
						'add_to_wishlist_action'      => 'add_to_wishlist',
						'remove_from_wishlist_action' => 'remove_from_wishlist',
						'reload_wishlist_and_adding_elem_action' => 'reload_wishlist_and_adding_elem',
						'load_mobile_action'          => 'load_mobile',
						'delete_item_action'          => 'delete_item',
						'save_title_action'           => 'save_title',
						'save_privacy_action'         => 'save_privacy',
						'load_fragments'              => 'load_fragments',
					),
					'nonce'                     => array(
						'add_to_wishlist_nonce'      => wp_create_nonce( 'add_to_wishlist' ),
						'remove_from_wishlist_nonce' => wp_create_nonce( 'remove_from_wishlist' ),
						'reload_wishlist_and_adding_elem_nonce' => wp_create_nonce( 'reload_wishlist_and_adding_elem' ),
						'load_mobile_nonce'          => wp_create_nonce( 'load_mobile' ),
						'delete_item_nonce'          => wp_create_nonce( 'delete_item' ),
						'save_title_nonce'           => wp_create_nonce( 'save_title' ),
						'save_privacy_nonce'         => wp_create_nonce( 'save_privacy' ),
						'load_fragments_nonce'       => wp_create_nonce( 'load_fragments' ),
					),
				)
			);
		}

		/**
		 * Remove the class no-js when javascript is activated
		 *
		 * We add the action at the start of head, to do this operation immediatly, without gap of all libraries loading
		 *
		 * @return void
		 * @since 1.0.0
		 */
		public function detect_javascript() {
			if ( ! defined( 'YIT' ) ) :
				?>
				<script>document.documentElement.className = document.documentElement.className + ' yes-js js_active js'</script>
				<?php
			endif;
		}

		/* === TEMPLATES === */

		/**
		 * Include main wishlist template
		 *
		 * @param array $var Array of variables to pass to the template.
		 *
		 * @var $var array Array of parameters for current view
		 * @return void
		 */
		public function main_wishlist_content( $var ) {
			$template = isset( $var['template_part'] ) ? $var['template_part'] : 'view';
			$layout   = ! empty( $var['layout'] ) ? $var['layout'] : '';

			yith_wcwl_get_template_part( $template, '', $layout, $var );
		}

		/**
		 * Include wishlist header template
		 *
		 * @param array $var Array of variables to pass to the template.
		 *
		 * @var $var array Array of parameters for current view
		 * @return void
		 */
		public function wishlist_header( $var ) {
			$template = isset( $var['template_part'] ) ? $var['template_part'] : 'view';
			$layout   = ! empty( $var['layout'] ) ? $var['layout'] : '';

			yith_wcwl_get_template_part( $template, 'header', $layout, $var );
		}

		/**
		 * Include wishlist footer template
		 *
		 * @param array $var Array of variables to pass to the template.
		 *
		 * @var $var array Array of parameters for current view
		 * @return void
		 */
		public function wishlist_footer( $var ) {
			$template = isset( $var['template_part'] ) ? $var['template_part'] : 'view';
			$layout   = ! empty( $var['layout'] ) ? $var['layout'] : '';

			yith_wcwl_get_template_part( $template, 'footer', $layout, $var );
		}

		/* === TEMPLATE MODIFICATIONS === */

		/**
		 * Add class to products when Add to Wishlist is shown on loop
		 *
		 * @param array $classes Array of available classes for the product.
		 * @return array Array of filtered classes for the product
		 * @since 3.0.0
		 */
		public function add_products_class_on_loop( $classes ) {
			if ( yith_wcwl_is_single() ) {
				return $classes;
			}

			$enabled_on_loop = 'yes' === get_option( 'yith_wcwl_show_on_loop', 'no' );

			if ( ! $enabled_on_loop ) {
				return $classes;
			}

			$position = get_option( 'yith_wcwl_loop_position', 'after_add_to_cart' );

			if ( 'shortcode' === $position ) {
				return $classes;
			}

			$classes[] = "add-to-wishlist-$position";

			return $classes;
		}

		/* === UTILS === */

		/**
		 * Format options that will sent through AJAX calls to refresh arguments
		 *
		 * @param array  $options Array of options.
		 * @param string $context Widget/Shortcode that will use the options.
		 * @return array Array of formatted options
		 * @since 3.0.0
		 */
		public function format_fragment_options( $options, $context = '' ) {
			// removes unusable values, and changes options common for all fragments.
			if ( ! empty( $options ) ) {
				foreach ( $options as $id => $value ) {
					if ( is_object( $value ) || is_array( $value ) ) {
						// remove item if type is not supported.
						unset( $options[ $id ] );
					} elseif ( 'ajax_loading' === $id ) {
						$options['ajax_loading'] = false;
					}
				}
			}

			// applies context specific changes.
			if ( ! empty( $context ) ) {
				$options['item'] = $context;

				switch ( $context ) {
					case 'add_to_wishlist':
						unset( $options['template_part'] );
						unset( $options['label'] );
						unset( $options['exists'] );
						unset( $options['icon'] );
						unset( $options['link_classes'] );
						unset( $options['link_popup_classes'] );
						unset( $options['container_classes'] );
						unset( $options['found_in_list'] );
						unset( $options['found_item'] );
						unset( $options['popup_title'] );
						unset( $options['wishlist_url'] );
						break;
				}
			}

			return $options;
		}

		/**
		 * Decode options that comes from the fragment
		 *
		 * @param array $options Options for the fragments.
		 * @return array Filtered options for the fragment
		 */
		public function decode_fragment_options( $options ) {
			if ( ! empty( $options ) ) {
				foreach ( $options as $id => $value ) {
					if ( 'true' === $value ) {
						$options[ $id ] = true;
					} elseif ( 'false' === $value ) {
						$options[ $id ] = false;
					} else {
						$options[ $id ] = sanitize_text_field( wp_unslash( $value ) );
					}
				}
			}

			return $options;
		}

		/**
		 * Alter add to cart button when on wishlist page
		 *
		 * @return void
		 * @since 2.0.0
		 * @version 3.0.0
		 */
		public function alter_add_to_cart_button() {
			add_filter( 'woocommerce_loop_add_to_cart_args', array( $this, 'alter_add_to_cart_args' ) );
			add_filter( 'woocommerce_product_add_to_cart_text', array( $this, 'alter_add_to_cart_text' ), 10, 2 );
			add_filter( 'woocommerce_product_add_to_cart_url', array( $this, 'alter_add_to_cart_url' ), 10, 2 );
		}

		/**
		 * Restore default Add to Cart button, after wishlist handling
		 *
		 * @return void
		 * @since 3.0.0
		 */
		public function restore_add_to_cart_button() {
			remove_filter( 'woocommerce_loop_add_to_cart_args', array( $this, 'alter_add_to_cart_args' ) );
			remove_filter( 'woocommerce_product_add_to_cart_text', array( $this, 'alter_add_to_cart_text' ) );
			remove_filter( 'woocommerce_product_add_to_cart_url', array( $this, 'alter_add_to_cart_url' ) );
		}

		/**
		 * Changes arguments used to print Add to Cart button on wishlist (classes and attributes)
		 *
		 * @param array $args Array of arguments.
		 * @return array Array of filtered arguments
		 * @since 3.0.0
		 */
		public function alter_add_to_cart_args( $args ) {
			$use_custom_button = get_option( 'yith_wcwl_add_to_cart_style' );
			$button_class      = in_array( $use_custom_button, array( 'button_custom', 'button_default' ), true );
			$icon              = get_option( 'yith_wcwl_add_to_cart_icon' );
			$custom_icon       = get_option( 'yith_wcwl_add_to_cart_custom_icon' );
			$classes           = isset( $args['class'] ) ? explode( ' ', $args['class'] ) : array();
			$pos               = array_search( 'button', $classes, true );

			if ( ! $button_class && false !== $pos ) {
				unset( $classes[ $pos ] );
			} elseif ( $button_class ) {
				$classes[] = 'button';
			}

			$classes[] = 'add_to_cart';
			$classes[] = 'alt';

			$args['class'] = implode( ' ', $classes );

			if ( 'button_custom' === $use_custom_button && 'none' !== $icon ) {
				if ( ! isset( $args['attributes'] ) ) {
					$args['attributes'] = array();
				}

				if ( 'custom' !== $icon ) {
					$args['attributes']['data-icon'] = $icon;
				} elseif ( $custom_icon ) {
					$args['attributes']['data-icon'] = $custom_icon;
				}
			}

			return $args;
		}

		/**
		 * Filter Add to Cart button label on wishlist page
		 *
		 * @param string      $text Button label.
		 * @param \WC_Product $product Current product.
		 * @return string Filtered label
		 */
		public function alter_add_to_cart_text( $text, $product ) {
			$label_option = get_option( 'yith_wcwl_add_to_cart_text', __( 'Add to cart', 'yith-woocommerce-wishlist' ) );
			$label        = $product->is_type( 'variable' ) ? $text : apply_filters( 'yith_wcwl_add_to_cart_label', $label_option );

			return $label;
		}

		/**
		 * Filter Add to Cart button url on wishlist page
		 *
		 * @param string      $url Url to the Add to Cart.
		 * @param \WC_Product $product Current product.
		 * @return string Filtered url
		 */
		public function alter_add_to_cart_url( $url, $product ) {
			global $yith_wcwl_wishlist_token;

			if ( $yith_wcwl_wishlist_token ) {
				$wishlist = yith_wcwl_get_wishlist( $yith_wcwl_wishlist_token );

				if ( ! $wishlist ) {
					return $url;
				}

				$wishlist_id = $wishlist->get_id();
				$item        = $wishlist->get_product( $product->get_id() );

				if ( wp_doing_ajax() ) {
					$url = add_query_arg( 'add-to-cart', $product->get_id(), YITH_WCWL()->get_wishlist_url( 'view/' . $yith_wcwl_wishlist_token ) );
				}

				if ( $product->is_type( array( 'simple', 'variation' ) ) && 'yes' === get_option( 'yith_wcwl_redirect_cart' ) ) {
					$url = add_query_arg( 'add-to-cart', $product->get_id(), wc_get_cart_url() );
				}

				if ( ! $product->is_type( 'external' ) && 'yes' === get_option( 'yith_wcwl_remove_after_add_to_cart' ) ) {
					$url = add_query_arg(
						array(
							'remove_from_wishlist_after_add_to_cart' => $product->get_id(),
							'wishlist_id'    => $wishlist_id,
							'wishlist_token' => $yith_wcwl_wishlist_token,
						),
						$url
					);
				}

				if ( $item && 'yes' === get_option( 'yith_wcwl_quantity_show' ) ) {
					$url = add_query_arg( 'quantity', $item->get_quantity(), $url );
				}
			}

			return apply_filters( 'yit_wcwl_add_to_cart_redirect_url', esc_url_raw( $url ), $url, $product );
		}

		/**
		 * Modernize font-awesome class, for old wishlist users
		 *
		 * @param string $class Original font-awesome class.
		 * @return string Filtered font-awesome class
		 * @since 2.0.2
		 */
		public function update_font_awesome_classes( $class ) {
			$exceptions = array(
				'icon-envelope'           => 'fa-envelope-o',
				'icon-star-empty'         => 'fa-star-o',
				'icon-ok'                 => 'fa-check',
				'icon-zoom-in'            => 'fa-search-plus',
				'icon-zoom-out'           => 'fa-search-minus',
				'icon-off'                => 'fa-power-off',
				'icon-trash'              => 'fa-trash-o',
				'icon-share'              => 'fa-share-square-o',
				'icon-check'              => 'fa-check-square-o',
				'icon-move'               => 'fa-arrows',
				'icon-file'               => 'fa-file-o',
				'icon-time'               => 'fa-clock-o',
				'icon-download-alt'       => 'fa-download',
				'icon-download'           => 'fa-arrow-circle-o-down',
				'icon-upload'             => 'fa-arrow-circle-o-up',
				'icon-play-circle'        => 'fa-play-circle-o',
				'icon-indent-left'        => 'fa-dedent',
				'icon-indent-right'       => 'fa-indent',
				'icon-facetime-video'     => 'fa-video-camera',
				'icon-picture'            => 'fa-picture-o',
				'icon-plus-sign'          => 'fa-plus-circle',
				'icon-minus-sign'         => 'fa-minus-circle',
				'icon-remove-sign'        => 'fa-times-circle',
				'icon-ok-sign'            => 'fa-check-circle',
				'icon-question-sign'      => 'fa-question-circle',
				'icon-info-sign'          => 'fa-info-circle',
				'icon-screenshot'         => 'fa-crosshairs',
				'icon-remove-circle'      => 'fa-times-circle-o',
				'icon-ok-circle'          => 'fa-check-circle-o',
				'icon-ban-circle'         => 'fa-ban',
				'icon-share-alt'          => 'fa-share',
				'icon-resize-full'        => 'fa-expand',
				'icon-resize-small'       => 'fa-compress',
				'icon-exclamation-sign'   => 'fa-exclamation-circle',
				'icon-eye-open'           => 'fa-eye',
				'icon-eye-close'          => 'fa-eye-slash',
				'icon-warning-sign'       => 'fa-warning',
				'icon-folder-close'       => 'fa-folder',
				'icon-resize-vertical'    => 'fa-arrows-v',
				'icon-resize-horizontal'  => 'fa-arrows-h',
				'icon-twitter-sign'       => 'fa-twitter-square',
				'icon-facebook-sign'      => 'fa-facebook-square',
				'icon-thumbs-up'          => 'fa-thumbs-o-up',
				'icon-thumbs-down'        => 'fa-thumbs-o-down',
				'icon-heart-empty'        => 'fa-heart-o',
				'icon-signout'            => 'fa-sign-out',
				'icon-linkedin-sign'      => 'fa-linkedin-square',
				'icon-pushpin'            => 'fa-thumb-tack',
				'icon-signin'             => 'fa-sign-in',
				'icon-github-sign'        => 'fa-github-square',
				'icon-upload-alt'         => 'fa-upload',
				'icon-lemon'              => 'fa-lemon-o',
				'icon-check-empty'        => 'fa-square-o',
				'icon-bookmark-empty'     => 'fa-bookmark-o',
				'icon-phone-sign'         => 'fa-phone-square',
				'icon-hdd'                => 'fa-hdd-o',
				'icon-hand-right'         => 'fa-hand-o-right',
				'icon-hand-left'          => 'fa-hand-o-left',
				'icon-hand-up'            => 'fa-hand-o-up',
				'icon-hand-down'          => 'fa-hand-o-down',
				'icon-circle-arrow-left'  => 'fa-arrow-circle-left',
				'icon-circle-arrow-right' => 'fa-arrow-circle-right',
				'icon-circle-arrow-up'    => 'fa-arrow-circle-up',
				'icon-circle-arrow-down'  => 'fa-arrow-circle-down',
				'icon-fullscreen'         => 'fa-arrows-alt',
				'icon-beaker'             => 'fa-flask',
				'icon-paper-clip'         => 'fa-paperclip',
				'icon-sign-blank'         => 'fa-square',
				'icon-pinterest-sign'     => 'fa-pinterest-square',
				'icon-google-plus-sign'   => 'fa-google-plus-square',
				'icon-envelope-alt'       => 'fa-envelope',
				'icon-comment-alt'        => 'fa-comment-o',
				'icon-comments-alt'       => 'fa-comments-o',
			);

			if ( in_array( $class, array_keys( $exceptions ), true ) ) {
				$class = $exceptions[ $class ];
			}

			$class = str_replace( 'icon-', 'fa-', $class );

			return $class;
		}

		/**
		 * Add Frequently Bought Together shortcode to wishlist page
		 *
		 * @param mixed $meta Meta.
		 * @author Francesco Licandro
		 */
		public function yith_wcfbt_shortcode( $meta ) {

			if ( ! ( defined( 'YITH_WFBT' ) && YITH_WFBT ) || 'no' === get_option( 'yith_wfbt_enable_integration' ) ) {
				return;
			}

			$products = YITH_WCWL()->get_products(
				array(
					'wishlist_id' => is_user_logged_in() ? $meta['ID'] : '',
				)
			);

			$ids = array();
			// take id of products in wishlist.
			foreach ( $products as $product ) {
				$ids[] = $product['prod_id'];
			}

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

			do_shortcode( '[yith_wfbt products="' . implode( ',', $ids ) . '"]' );
		}

		/**
		 * Redirect after add to cart from YITH WooCommerce Frequently Bought Together Premium shortcode
		 *
		 * @param string $url Redirect url.
		 *
		 * @since 2.0.0
		 */
		public function yith_wfbt_redirect_after_add_to_cart( $url ) {
			if ( ! isset( $_REQUEST['yith_wfbt_shortcode'] ) ) { // phpcs:ignore WordPress.Security.NonceVerification.Recommended
				return $url;
			}

			return 'yes' === get_option( 'yith_wcwl_redirect_cart' ) ? wc_get_cart_url() : YITH_WCWL()->get_wishlist_url();
		}

		/**
		 * Generate CSS code to append to each page, to apply custom style to wishlist elements
		 *
		 * @param array $rules Array of additional rules to add to default ones.
		 * @return string Generated CSS code
		 */
		protected function build_custom_css( $rules = array() ) {
			$generated_code = '';
			$rules          = apply_filters(
				'yith_wcwl_custom_css_rules',
				array_merge(
					array(
						'color_add_to_wishlist'    => array(
							'selector' => '.woocommerce a.add_to_wishlist.button.alt',
							'rules'    => array(
								'background'       => array(
									'rule'    => 'background-color: %1$s; background: %1$s',
									'default' => '#333333',
								),
								'text'             => array(
									'rule'    => 'color: %s',
									'default' => '#ffffff',
								),
								'border'           => array(
									'rule'    => 'border-color: %s',
									'default' => '#333333',
								),
								'background_hover' => array(
									'rule'    => 'background-color: %1$s; background: %1$s',
									'default' => '#4F4F4F',
									'status'  => ':hover',
								),
								'text_hover'       => array(
									'rule'    => 'color: %s',
									'default' => '#ffffff',
									'status'  => ':hover',
								),
								'border_hover'     => array(
									'rule'    => 'border-color: %s',
									'default' => '#4F4F4F',
									'status'  => ':hover',
								),
							),
							'deps'     => array(
								'yith_wcwl_add_to_wishlist_style' => 'button_custom',
							),
						),
						'rounded_corners_radius'   => array(
							'selector' => '.woocommerce a.add_to_wishlist.button.alt',
							'rules'    => array(
								'rule'    => 'border-radius: %dpx',
								'default' => 16,
							),
							'deps'     => array(
								'yith_wcwl_add_to_wishlist_style' => 'button_custom',
							),
						),
						'color_add_to_cart'        => array(
							'selector' => '.woocommerce .wishlist_table a.add_to_cart.button.alt',
							'rules'    => array(
								'background'       => array(
									'rule'    => 'background: %1$s; background-color: %1$s;',
									'default' => '#333333',
								),
								'text'             => array(
									'rule'    => 'color: %s',
									'default' => '#ffffff',
								),
								'border'           => array(
									'rule'    => 'border-color: %s',
									'default' => '#333333',
								),
								'background_hover' => array(
									'rule'    => 'background: %1$s; background-color: %1$s;',
									'default' => '#4F4F4F',
									'status'  => ':hover',
								),
								'text_hover'       => array(
									'rule'    => 'color: %s',
									'default' => '#ffffff',
									'status'  => ':hover',
								),
								'border_hover'     => array(
									'rule'    => 'border-color: %s',
									'default' => '#4F4F4F',
									'status'  => ':hover',
								),
							),
							'deps'     => array(
								'yith_wcwl_add_to_cart_style' => 'button_custom',
							),
						),
						'add_to_cart_rounded_corners_radius' => array(
							'selector' => '.woocommerce .wishlist_table a.add_to_cart.button.alt',
							'rules'    => array(
								'rule'    => 'border-radius: %dpx',
								'default' => 16,
							),
							'deps'     => array(
								'yith_wcwl_add_to_cart_style' => 'button_custom',
							),
						),
						'color_button_style_1'     => array(
							'selector' => '.woocommerce .hidden-title-form button,
								   .yith-wcwl-wishlist-new .create-wishlist-button,
								   .wishlist_manage_table tfoot button.submit-wishlist-changes,
								   .yith-wcwl-wishlist-search-form button.wishlist-search-button',
							'rules'    => array(
								'background'       => array(
									'rule'    => 'background: %1$s; background-color: %1$s;',
									'default' => '#333333',
								),
								'text'             => array(
									'rule'    => 'color: %s',
									'default' => '#ffffff',
								),
								'border'           => array(
									'rule'    => 'border-color: %s',
									'default' => '#333333',
								),
								'background_hover' => array(
									'rule'    => 'background: %1$s; background-color: %1$s;',
									'default' => '#333333',
									'status'  => ':hover',
								),
								'text_hover'       => array(
									'rule'    => 'color: %s',
									'default' => '#ffffff',
									'status'  => ':hover',
								),
								'border_hover'     => array(
									'rule'    => 'border-color: %s',
									'default' => '#333333',
									'status'  => ':hover',
								),
							),
							'deps'     => array(
								'yith_wcwl_add_to_cart_style' => 'button_custom',
							),
						),
						'color_button_style_2'     => array(
							'selector' => '.woocommerce .wishlist-title a.show-title-form,
								   .woocommerce .hidden-title-form a.hide-title-form,
								   .wishlist_manage_table tfoot a.create-new-wishlist',
							'rules'    => array(
								'background'       => array(
									'rule'    => 'background: %1$s; background-color: %1$s;',
									'default' => '#333333',
								),
								'text'             => array(
									'rule'    => 'color: %s',
									'default' => '#ffffff',
								),
								'border'           => array(
									'rule'    => 'border-color: %s',
									'default' => '#333333',
								),
								'background_hover' => array(
									'rule'    => 'background: %1$s; background-color: %1$s;',
									'default' => '#333333',
									'status'  => ':hover',
								),
								'text_hover'       => array(
									'rule'    => 'color: %s',
									'default' => '#ffffff',
									'status'  => ':hover',
								),
								'border_hover'     => array(
									'rule'    => 'border-color: %s',
									'default' => '#333333',
									'status'  => ':hover',
								),
							),
							'deps'     => array(
								'yith_wcwl_add_to_cart_style' => 'button_custom',
							),
						),
						'color_wishlist_table'     => array(
							'selector' => '.woocommerce table.shop_table.wishlist_table tr td',
							'rules'    => array(
								'background' => array(
									'rule'    => 'background: %1$s; background-color: %1$s;',
									'default' => '#FFFFFF',
								),
								'text'       => array(
									'rule'    => 'color: %s',
									'default' => '#6D6C6C',
								),
								'border'     => array(
									'rule'    => 'border-color: %s;',
									'default' => '#FFFFFF',
								),
							),
							'deps'     => array(
								'yith_wcwl_add_to_cart_style' => 'button_custom',
							),
						),
						'color_headers_background' => array(
							'selector' => '.wishlist_table thead tr th,
								   .wishlist_table tfoot td td,
								   .widget_yith-wcwl-lists ul.dropdown li.current a,
								   .widget_yith-wcwl-lists ul.dropdown li a:hover,
								   .selectBox-dropdown-menu.selectBox-options li.selectBox-selected a,
								   .selectBox-dropdown-menu.selectBox-options li.selectBox-hover a',
							'rules'    => array(
								'rule'    => 'background: %1$s; background-color: %1$s;',
								'default' => '#F4F4F4',
							),
							'deps'     => array(
								'yith_wcwl_add_to_cart_style' => 'button_custom',
							),
						),
						'color_share_button'       => array(
							'selector' => '.yith-wcwl-share li a',
							'rules'    => array(
								'color'       => array(
									'rule'    => 'color: %s;',
									'default' => '#FFFFFF',
								),
								'color_hover' => array(
									'rule'    => 'color: %s;',
									'status'  => ':hover',
									'default' => '#FFFFFF',
								),
							),
							'deps'     => array(
								'yith_wcwl_enable_share' => 'yes',
							),
						),
						'color_fb_button'          => array(
							'selector' => '.yith-wcwl-share a.facebook',
							'rules'    => array(
								'background'       => array(
									'rule'    => 'background: %1$s; background-color: %1$s;',
									'default' => '#39599E',
								),
								'background_hover' => array(
									'rule'    => 'background: %1$s; background-color: %1$s;',
									'status'  => ':hover',
									'default' => '#39599E',
								),
							),
							'deps'     => array(
								'yith_wcwl_enable_share' => 'yes',
								'yith_wcwl_share_fb'     => 'yes',
							),
						),
						'color_tw_button'          => array(
							'selector' => '.yith-wcwl-share a.twitter',
							'rules'    => array(
								'background'       => array(
									'rule'    => 'background: %1$s; background-color: %1$s;',
									'default' => '#45AFE2',
								),
								'background_hover' => array(
									'rule'    => 'background: %1$s; background-color: %1$s;',
									'status'  => ':hover',
									'default' => '#39599E',
								),
							),
							'deps'     => array(
								'yith_wcwl_enable_share'  => 'yes',
								'yith_wcwl_share_twitter' => 'yes',
							),
						),
						'color_pr_button'          => array(
							'selector' => '.yith-wcwl-share a.pinterest',
							'rules'    => array(
								'background'       => array(
									'rule'    => 'background: %1$s; background-color: %1$s;',
									'default' => '#AB2E31',
								),
								'background_hover' => array(
									'rule'    => 'background: %1$s; background-color: %1$s;',
									'status'  => ':hover',
									'default' => '#39599E',
								),
							),
							'deps'     => array(
								'yith_wcwl_enable_share' => 'yes',
								'yith_wcwl_share_pinterest' => 'yes',
							),
						),
						'color_em_button'          => array(
							'selector' => '.yith-wcwl-share a.email',
							'rules'    => array(
								'background'       => array(
									'rule'    => 'background: %1$s; background-color: %1$s;',
									'default' => '#FBB102',
								),
								'background_hover' => array(
									'rule'    => 'background: %1$s; background-color: %1$s;',
									'status'  => ':hover',
									'default' => '#39599E',
								),
							),
							'deps'     => array(
								'yith_wcwl_enable_share' => 'yes',
								'yith_wcwl_share_email'  => 'yes',
							),
						),
						'color_wa_button'          => array(
							'selector' => '.yith-wcwl-share a.whatsapp',
							'rules'    => array(
								'background'       => array(
									'rule'    => 'background: %1$s; background-color: %1$s;',
									'default' => '#00A901',
								),
								'background_hover' => array(
									'rule'    => 'background: %1$s; background-color: %1$s;',
									'status'  => ':hover',
									'default' => '#39599E',
								),
							),
							'deps'     => array(
								'yith_wcwl_enable_share'   => 'yes',
								'yith_wcwl_share_whatsapp' => 'yes',
							),
						),
					),
					$rules
				)
			);

			if ( empty( $rules ) ) {
				return $generated_code;
			}

			// retrieve dependencies.
			$deps_list    = wp_list_pluck( $rules, 'deps' );
			$dependencies = array();

			if ( ! empty( $deps_list ) ) {
				foreach ( $deps_list as $rule => $deps ) {
					foreach ( $deps as $dep_rule => $dep_value ) {
						if ( ! isset( $dependencies[ $dep_rule ] ) ) {
							$dependencies[ $dep_rule ] = get_option( $dep_rule );
						}
					}
				}
			}

			foreach ( $rules as $id => $rule ) {
				// check dependencies first.
				if ( ! empty( $rule['deps'] ) ) {
					foreach ( $rule['deps'] as $dep_rule => $dep_value ) {
						if ( ! isset( $dependencies[ $dep_rule ] ) || $dependencies[ $dep_rule ] !== $dep_value ) {
							continue 2;
						}
					}
				}

				// retrieve values from db.
				$values     = get_option( "yith_wcwl_{$id}" );
				$new_rules  = array();
				$rules_code = '';

				if ( isset( $rule['rules']['rule'] ) ) {
					// if we have a single-valued option, just search for the rule to apply.
					$status = isset( $rule['rules']['status'] ) ? $rule['rules']['status'] : '';

					if ( ! isset( $new_rules[ $status ] ) ) {
						$new_rules[ $status ] = array();
					}

					$new_rules[ $status ][] = $this->build_css_rule( $rule['rules']['rule'], $values, $rule['rules']['default'] );
				} else {
					// otherwise cycle through rules, and generate CSS code.
					foreach ( $rule['rules'] as $property => $css ) {
						$status = isset( $css['status'] ) ? $css['status'] : '';

						if ( ! isset( $new_rules[ $status ] ) ) {
							$new_rules[ $status ] = array();
						}

						$new_rules[ $status ][] = $this->build_css_rule( $css['rule'], isset( $values[ $property ] ) ? $values[ $property ] : false, $css['default'] );
					}
				}

				// if code was generated, prepend selector.
				if ( ! empty( $new_rules ) ) {
					foreach ( $new_rules as $status => $rules ) {
						$selector = $rule['selector'];

						if ( ! empty( $status ) ) {
							$updated_selector = array();
							$split_selectors  = explode( ',', $rule['selector'] );

							foreach ( $split_selectors as $split_selector ) {
								$updated_selector[] = $split_selector . $status;
							}

							$selector = implode( ',', $updated_selector );
						}

						$rules_code .= $selector . '{' . implode( '', $rules ) . '}';
					}
				}

				// append new rule to generated CSS.
				$generated_code .= $rules_code;
			}

			$custom_css = get_option( 'yith_wcwl_custom_css' );

			if ( $custom_css ) {
				$generated_code .= $custom_css;
			}

			return $generated_code;
		}

		/**
		 * Generate each single CSS rule that will be included in custom plugin CSS
		 *
		 * @param string $rule    Rule to use; placeholders may be applied to be replaced with value {@see sprintf}.
		 * @param string $value   Value to inject inside rule, replacing placeholders.
		 * @param string $default Default value, to be used instead of value when it is empty.
		 *
		 * @return string Formatted CSS rule
		 */
		protected function build_css_rule( $rule, $value, $default = '' ) {
			$value = ( '0' === $value || ( ! empty( $value ) && ! is_array( $value ) ) ) ? $value : $default;

			return sprintf( rtrim( $rule, ';' ) . ';', $value );
		}

		/**
		 * Destroy serialize cookies, to prevent major vulnerability
		 *
		 * @return void
		 * @since 2.0.7
		 */
		protected function destroy_serialized_cookies() {
			$name = 'yith_wcwl_products';

			if ( isset( $_COOKIE[ $name ] ) && is_serialized( sanitize_text_field( wp_unslash( $_COOKIE[ $name ] ) ) ) ) {
				$_COOKIE[ $name ] = wp_json_encode( array() );
				yith_destroycookie( $name );
			}
		}

		/**
		 * Update old wishlist cookies
		 *
		 * @return void
		 * @since 2.0.0
		 */
		protected function update_cookies() {
			$cookie     = yith_getcookie( 'yith_wcwl_products' );
			$new_cookie = array();

			if ( ! empty( $cookie ) ) {
				foreach ( $cookie as $item ) {
					if ( ! isset( $item['add-to-wishlist'] ) ) {
						return;
					}

					$new_cookie[] = array(
						'prod_id'     => $item['add-to-wishlist'],
						'quantity'    => isset( $item['quantity'] ) ? $item['quantity'] : 1,
						'wishlist_id' => false,
					);
				}

				yith_setcookie( 'yith_wcwl_products', $new_cookie );
			}
		}

		/**
		 * Convert wishlist stored into cookies into
		 */
		protected function convert_cookies_to_session() {
			$cookie = yith_getcookie( 'yith_wcwl_products' );

			if ( ! empty( $cookie ) ) {

				$default_list = YITH_WCWL_Wishlist_Factory::get_default_wishlist();

				if ( ! $default_list ) {
					return false;
				}

				foreach ( $cookie as $item ) {
					if ( $default_list->has_product( $item['prod_id'] ) ) {
						continue;
					}

					$new_item = new YITH_WCWL_Wishlist_Item();

					$new_item->set_product_id( $item['prod_id'] );
					$new_item->set_quantity( $item['quantity'] );

					if ( isset( $item['dateadded'] ) ) {
						$new_item->set_date_added( $item['dateadded'] );
					}

					$default_list->add_item( $new_item );
				}

				$default_list->save();

				yith_destroycookie( 'yith_wcwl_products' );
			}
		}
	}
}

/**
 * Unique access to instance of YITH_WCWL_Frontend class
 *
 * @return \YITH_WCWL_Frontend|\YITH_WCWL_Frontend_Premium
 * @since 2.0.0
 */
function YITH_WCWL_Frontend() { // phpcs:ignore WordPress.NamingConventions.ValidFunctionName.FunctionNameInvalid
	return defined( 'YITH_WCWL_PREMIUM' ) ? YITH_WCWL_Frontend_Premium::get_instance() : YITH_WCWL_Frontend::get_instance();
}
PK`x1\X]ܼ)includes/class-yith-wcwl-form-handler.phpnu�[���<?php
/**
 * Static class that will handle all form submission from customer
 *
 * @author YITH
 * @package YITH\Wishlist\Classes
 * @version 3.0.0
 */

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

if ( ! class_exists( 'YITH_WCWL_Form_Handler' ) ) {
	/**
	 * WooCommerce Wishlist Form Handler
	 *
	 * @since 3.0.0
	 */
	class YITH_WCWL_Form_Handler {
		/**
		 * Performs all required add_actions to handle forms
		 *
		 * @return void
		 */
		public static function init() {
			/**
			 * This check was added to prevent bots from accidentaly executing wishlist code
			 *
			 * @since 3.0.10
			 */
			if ( ! self::process_form_handling() ) {
				return;
			}

			// add to wishlist when js is disabled.
			add_action( 'init', array( 'YITH_WCWL_Form_Handler', 'add_to_wishlist' ) );

			// remove from wishlist when js is disabled.
			add_action( 'init', array( 'YITH_WCWL_Form_Handler', 'remove_from_wishlist' ) );

			// remove from wishlist after add to cart.
			add_action( 'woocommerce_add_to_cart', array( 'YITH_WCWL_Form_Handler', 'remove_from_wishlist_after_add_to_cart' ) );

			// change wishlist title.
			add_action( 'init', array( 'YITH_WCWL_Form_Handler', 'change_wishlist_title' ) );
		}

		/**
		 * Return true if system can process request; false otherwise
		 *
		 * @return bool
		 */
		public static function process_form_handling() {
			$user_agent = isset( $_SERVER['HTTP_USER_AGENT'] ) ? sanitize_text_field( wp_unslash( $_SERVER['HTTP_USER_AGENT'] ) ) : false;

			if ( $user_agent && apply_filters( 'yith_wcwl_block_user_agent', preg_match( '/bot|crawl|slurp|spider|wordpress/i', $user_agent ), $user_agent ) ) {
				return false;
			}

			return true;
		}

		/**
		 * Adds a product to wishlist when js is disabled
		 *
		 * @return void
		 */
		public static function add_to_wishlist() {
			// add item to wishlist when javascript is not enabled.
			if ( isset( $_GET['add_to_wishlist'] ) && isset( $_GET['_wpnonce'] ) && wp_verify_nonce( sanitize_text_field( wp_unslash( $_GET['_wpnonce'] ) ), 'add_to_wishlist' ) ) {
				try {
					YITH_WCWL()->add();

					yith_wcwl_add_notice( apply_filters( 'yith_wcwl_product_added_to_wishlist_message', get_option( 'yith_wcwl_product_added_text' ) ), 'success' );
				} catch ( Exception $e ) {
					yith_wcwl_add_notice( apply_filters( 'yith_wcwl_error_adding_to_wishlist_message', $e->getMessage() ), 'error' );
				}
			}
		}

		/**
		 * Removes from wishlist when js is disabled
		 *
		 * @return void
		 */
		public static function remove_from_wishlist() {
			// remove item from wishlist when javascript is not enabled.
			if ( isset( $_GET['remove_from_wishlist'] ) && isset( $_GET['_wpnonce'] ) && wp_verify_nonce( sanitize_text_field( wp_unslash( $_GET['_wpnonce'] ) ), 'remove_from_wishlist' ) ) {
				try {
					YITH_WCWL()->remove();
				} catch ( Exception $e ) {
					yith_wcwl_add_notice( $e->getMessage(), 'error' );
				}
			}
		}

		/**
		 * Remove from wishlist after adding to cart
		 *
		 * @return void
		 */
		public static function remove_from_wishlist_after_add_to_cart() {
			if ( 'yes' !== get_option( 'yith_wcwl_remove_after_add_to_cart' ) ) {
				return;
			}

			$args = array();

			// phpcs:disable WordPress.Security.NonceVerification.Recommended
			if ( isset( $_REQUEST['remove_from_wishlist_after_add_to_cart'] ) ) {

				$args['remove_from_wishlist'] = intval( $_REQUEST['remove_from_wishlist_after_add_to_cart'] );

				if ( isset( $_REQUEST['wishlist_id'] ) ) {
					$args['wishlist_id'] = sanitize_text_field( wp_unslash( $_REQUEST['wishlist_id'] ) );
				}
			} elseif ( yith_wcwl_is_wishlist() && isset( $_REQUEST['add-to-cart'] ) ) {
				$args['remove_from_wishlist'] = intval( $_REQUEST['add-to-cart'] );

				if ( isset( $_REQUEST['wishlist_id'] ) ) {
					$args['wishlist_id'] = sanitize_text_field( wp_unslash( $_REQUEST['wishlist_id'] ) );
				}
			}
			// phpcs:enable WordPress.Security.NonceVerification.Recommended

			if ( ! empty( $args['wishlist_id'] ) ) {
				$wishlist = yith_wcwl_get_wishlist( $args['wishlist_id'] );

				if ( apply_filters( 'yith_wcwl_remove_after_add_to_cart', $wishlist && $wishlist->is_current_user_owner(), $wishlist ) ) {
					try {
						YITH_WCWL()->remove( $args );
					} catch ( Exception $e ) { // phpcs:ignore Generic.CodeAnalysis.EmptyStatement.DetectedCatch
						// we were unable to remove item from the wishlist; no follow up is provided.
					}
				}
			}
		}

		/**
		 * Change wishlist title
		 *
		 * @return void
		 * @since 2.0.0
		 */
		public static function change_wishlist_title() {
			if ( ! isset( $_POST['yith_wcwl_edit_wishlist'] ) || ! wp_verify_nonce( sanitize_text_field( wp_unslash( $_POST['yith_wcwl_edit_wishlist'] ) ), 'yith_wcwl_edit_wishlist_action' ) || ! isset( $_POST['save_title'] ) || empty( $_POST['wishlist_name'] ) ) {
				return;
			}

			$wishlist_name = isset( $_POST['wishlist_name'] ) ? sanitize_text_field( wp_unslash( $_POST['wishlist_name'] ) ) : false;
			$wishlist_id   = isset( $_POST['wishlist_id'] ) ? sanitize_text_field( wp_unslash( $_POST['wishlist_id'] ) ) : false;
			$wishlist      = yith_wcwl_get_wishlist( $wishlist_id );

			if ( ! $wishlist_name || strlen( $wishlist_name ) >= 65535 ) {
				yith_wcwl_add_notice( __( 'Please, make sure to enter a valid title', 'yith-woocommerce-wishlist' ), 'error' );
			} else {
				$wishlist->set_name( $wishlist_name );
				$wishlist->save();
			}

			$redirect_url = isset( $_REQUEST['redirect_to'] ) ? esc_url_raw( wp_unslash( $_REQUEST['redirect_to'] ) ) : $wishlist->get_url();

			wp_safe_redirect( $redirect_url );
			die;
		}
	}
}

YITH_WCWL_Form_Handler::init();
PK`x1\��~r?r?*includes/class-yith-wcwl-wishlist-item.phpnu�[���<?php
/**
 * Wishlist Item class
 *
 * @author YITH
 * @package YITH\Wishlist\Classes\Wishlists
 * @version 3.0.0
 */

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

if ( ! class_exists( 'YITH_WCWL_Wishlist_Item' ) ) {
	/**
	 * This class describes Wishlist Item object, and it is meant to be created by YITH_WCWL_Wishlist class, via
	 * get_items method
	 *
	 * @since 3.0.0
	 */
	class YITH_WCWL_Wishlist_Item extends WC_Data implements ArrayAccess {

		/**
		 * Item Data array
		 *
		 * @since 3.0.0
		 * @var array
		 */
		protected $data = array(
			'wishlist_id'       => 0,
			'product_id'        => 0,
			'quantity'          => 1,
			'user_id'           => 0,
			'date_added'        => '',
			'position'          => 0,
			'original_price'    => 0,
			'original_currency' => '',
			'on_sale'           => 0,
		);

		/**
		 * Register product to avoid retrieving it more than once
		 *
		 * @var \WC_Product
		 */
		protected $product = null;

		/**
		 * Register origin wishlist ID;
		 * if item is moved to another wishlist, we can then clear origin wishlist cache
		 *
		 * @var int
		 */
		protected $origin_wishlist_id = 0;

		/**
		 * Stores meta in cache for future reads.
		 * A group must be set to to enable caching.
		 *
		 * @var string
		 */
		protected $cache_group = 'wishlist-items';

		/**
		 * Constructor.
		 *
		 * @param int|object|array $item ID to load from the DB, or YITH_WCWL_Wishlist_Item object.
		 * @throws Exception When cannot loading correct Data Store object.
		 */
		public function __construct( $item = 0 ) {
			parent::__construct( $item );

			if ( $item instanceof YITH_WCWL_Wishlist_Item ) {
				$this->set_id( $item->get_id() );
			} elseif ( is_numeric( $item ) && $item > 0 ) {
				$this->set_id( $item );
			} else {
				$this->set_object_read( true );
			}

			$this->data_store = WC_Data_Store::load( 'wishlist-item' );

			if ( $this->get_id() > 0 ) {
				$this->data_store->read( $this );
			}

			if ( $this->get_object_read() ) {
				$this->origin_wishlist_id = $this->get_wishlist_id();
			}
		}

		/* === GETTERS === */

		/**
		 * Get wishlist ID for current item
		 *
		 * @param string $context Context.
		 * @return int Wishlist ID
		 */
		public function get_wishlist_id( $context = 'view' ) {
			return (int) $this->get_prop( 'wishlist_id', $context );
		}

		/**
		 * Get origin wishlist ID for current item
		 *
		 * @return int Wishlist ID
		 */
		public function get_origin_wishlist_id() {
			return (int) $this->origin_wishlist_id;
		}

		/**
		 * Get origin product ID for current item (no WPML filtering)
		 *
		 * @param string $context Context.
		 *
		 * @return int Wishlist ID
		 */
		public function get_original_product_id( $context = 'view' ) {
			return (int) $this->get_prop( 'product_id', $context );
		}

		/**
		 * Get product ID for current item
		 *
		 * @param string $context Context.
		 * @return int Product ID
		 */
		public function get_product_id( $context = 'view' ) {
			return yit_wpml_object_id( $this->get_original_product_id( $context ), 'product', true );
		}

		/**
		 * Return product object related to current item
		 *
		 * @param string $context Context.
		 * @return \WC_Product Product
		 */
		public function get_product( $context = 'view' ) {
			if ( empty( $this->product ) ) {
				$product = wc_get_product( $this->get_product_id( $context ) );

				if ( $product ) {
					$this->product = $product;
				}
			}

			return $this->product;
		}

		/**
		 * Return price of the produce related to current item
		 *
		 * @param string $context Context.
		 * @return float
		 */
		public function get_product_price( $context = 'view' ) {
			$product = $this->get_product( $context );

			if ( ! $product ) {
				return 0;
			}

			switch ( $product->get_type() ) {
				case 'variable':
					/**
					 * Product used is a variation; we can then retrieve minimum variation price
					 *
					 * @var $product \WC_Product_Variable
					 */
					return (float) $product->get_variation_price( 'min' );
				default:
					$sale_price = $product->get_sale_price();
					return $sale_price ? (float) $sale_price : (float) $product->get_price();
			}
		}

		/**
		 * Retrieve formatted price for current item
		 *
		 * @param string $context Context.
		 * @return string Formatter price
		 */
		public function get_formatted_product_price( $context = 'view' ) {
			$product = $this->get_product( $context );

			$base_price      = $product->is_type( 'variable' ) ? $product->get_variation_regular_price( 'max' ) : $product->get_price();
			$formatted_price = $base_price ? $product->get_price_html() : apply_filters( 'yith_free_text', __( 'Free!', 'yith-woocommerce-wishlist' ), $product );

			return apply_filters( 'yith_wcwl_item_formatted_price', $formatted_price, $base_price, $product );
		}

		/**
		 * Return formatted product name
		 *
		 * @param string $context Context.
		 * @return string Formatted name; empty string on failure
		 */
		public function get_formatted_product_name( $context = 'view' ) {
			$product = $this->get_product( $context );

			if ( ! $product ) {
				return '';
			}

			return $product->get_formatted_name();
		}

		/**
		 * Get quantity for current item
		 *
		 * @param string $context Context.
		 * @return int Quantity
		 */
		public function get_quantity( $context = 'view' ) {
			return max( 1, (int) $this->get_prop( 'quantity', $context ) );
		}

		/**
		 * Get user ID for current item
		 *
		 * @param string $context Context.
		 * @return int User ID
		 */
		public function get_user_id( $context = 'view' ) {
			return (int) $this->get_prop( 'user_id', $context );
		}

		/**
		 * Get user for current item
		 *
		 * @param string $context Context.
		 * @return \WP_User|bool User
		 */
		public function get_user( $context = 'view' ) {
			$user_id = (int) $this->get_prop( 'user_id', $context );

			if ( ! $user_id ) {
				return false;
			}

			return get_user_by( 'id', $user_id );
		}

		/**
		 * Get wishlist date added
		 *
		 * @param string $context Context.
		 * @return \WC_DateTime|string Wishlist date of creation
		 */
		public function get_date_added( $context = 'view' ) {
			$date_added = $this->get_prop( 'date_added', $context );

			if ( $date_added && 'view' === $context ) {
				return $date_added->date_i18n( 'Y-m-d H:i:s' );
			} else {
				return $date_added;
			}
		}

		/**
		 * Get formatted wishlist date added
		 *
		 * @param string $format Date format (if empty, WP date format will be applied).
		 * @return string Wishlist date of creation
		 */
		public function get_date_added_formatted( $format = '' ) {
			$date_added = $this->get_date_added( 'edit' );

			if ( $date_added ) {
				$format = $format ? $format : get_option( 'date_format' );
				return $date_added->date_i18n( $format );
			}

			return '';
		}

		/**
		 * Get related wishlist
		 *
		 * @return \YITH_WCWL_Wishlist|bool Wishlist object, or false on failure
		 */
		public function get_wishlist() {
			$wishlist_id = $this->get_wishlist_id();

			if ( ! $wishlist_id ) {
				return false;
			}

			return YITH_WCWL_Wishlist_Factory::get_wishlist( $wishlist_id );
		}

		/**
		 * Get related wishlist slug
		 *
		 * @return string|bool Wishlist slug, or false on failure
		 */
		public function get_wishlist_slug() {
			$wishlist = $this->get_wishlist();

			if ( ! $wishlist ) {
				return false;
			}

			return $wishlist->get_slug();
		}

		/**
		 * Get related wishlist name
		 *
		 * @return string|bool Wishlist name, or false on failure
		 */
		public function get_wishlist_name() {
			$wishlist = $this->get_wishlist();

			if ( ! $wishlist ) {
				return false;
			}

			return $wishlist->get_name();
		}

		/**
		 * Get related wishlist token
		 *
		 * @return string|bool Wishlist token, or false on failure
		 */
		public function get_wishlist_token() {
			$wishlist = $this->get_wishlist();

			if ( ! $wishlist ) {
				return false;
			}

			return $wishlist->get_token();
		}

		/**
		 * Return item position inside the list
		 *
		 * @param string $context Context.
		 * @return int Position
		 */
		public function get_position( $context = 'view' ) {
			return (int) $this->get_prop( 'position', $context );
		}

		/**
		 * Return original price
		 *
		 * @param string $context Context.
		 * @return string Original price
		 */
		public function get_original_price( $context = 'view' ) {
			$price = $this->get_prop( 'original_price', 'edit' );

			if ( 'view' === $context ) {
				return wc_price(
					$price,
					array(
						'currency' => $this->get_original_currency(),
					)
				);
			}

			return $price;
		}

		/**
		 * Return original currency
		 *
		 * @param string $context Context.
		 * @return string Original price
		 */
		public function get_original_currency( $context = 'view' ) {
			$currency = $this->get_prop( 'original_currency', 'edit' );

			if ( 'view' === $context && ! $currency ) {
				$currency = get_woocommerce_currency();
			}

			return $currency;
		}

		/**
		 * Returns a formatted HTML template for the "Price variation" label
		 *
		 * @return string HTML for the template, or empty string if price variation is not applicable to current item
		 */
		public function get_price_variation() {
			$original_currency = $this->get_original_currency( 'edit' );

			// if currency changed, makes no sense to make comparisons.
			if ( get_woocommerce_currency() !== $original_currency ) {
				return '';
			}

			$original_price = $this->get_original_price( 'edit' );

			// original price wasn't stored in the wishlist.
			if ( ! $original_price ) {
				return '';
			}

			$product       = $this->get_product();
			$current_price = $this->get_product_price();

			if ( ! is_numeric( $current_price ) ) {
				return '';
			}

			$difference = $original_price - $current_price;

			if ( $difference <= 0 && apply_filters( 'yith_wcwl_hide_price_increase', true, $product, $original_price, $original_currency ) ) {
				return '';
			}

			$percentage_difference = -1 * round( $difference / $original_price * 100, 2 );
			$class                 = $percentage_difference > 0 ? 'increase' : 'decrease';

			$template = apply_filters(
				'yith_wcwl_price_variation_template',
				sprintf(
					'<small class="price-variation %s"><span class="variation-rate">%s</span><span class="old-price">%s</span></small>',
					$class,
					// translators: 1. % of reduction/increase in price.
					_x( 'Price is %1$s%%', 'Part of the template that shows price variation since addition to list; placeholder will be replaced with a percentage', 'yith-woocommerce-wishlist' ),
					// translators: 2: original product price.
					_x( '(Was %2$s when added  in list)', 'Part of the template that shows price variation since addition to list; placeholder will be replaced with a price', 'yith-woocommerce-wishlist' )
				),
				$class,
				$percentage_difference,
				$original_price,
				$original_currency
			);
			$template = sprintf( $template, $percentage_difference, wc_price( $original_price, array( 'currency' => $original_currency ) ) );

			return $template;
		}

		/**
		 * Return state of on_sale flag
		 * Important: this flag is used for email campaigns, and doesn't necessarily represent
		 * current on_sale status for the product
		 * Plugins checks every day to find on_sale products, and to schedule email sending
		 *
		 * @param string $context Context.
		 * @return bool Whether product was on sale during last check that plugin performed
		 */
		public function is_on_sale( $context = 'view' ) {
			return (bool) $this->get_prop( 'on_sale', $context );
		}

		/**
		 * Returns url to remove item from wishlist
		 *
		 * @return string Remove url.
		 */
		public function get_remove_url() {
			$base_url = $this->get_wishlist()->get_url();

			return apply_filters( 'yith_wcwl_wishlist_item_remove_url', wp_nonce_url( add_query_arg( 'remove_from_wishlist', $this->get_product_id(), $base_url ), 'remove_from_wishlist' ), $this );
		}

		/* === SETTERS === */

		/**
		 * Set wishlist ID for current item
		 *
		 * @param int $wishlist_id Wishlist ID.
		 */
		public function set_wishlist_id( $wishlist_id ) {
			$this->set_prop( 'wishlist_id', $wishlist_id );

			$wishlist = yith_wcwl_get_wishlist( $wishlist_id );

			if ( $wishlist && $this->get_user_id() !== $wishlist->get_user_id() ) {
				$this->set_user_id( $wishlist->get_user_id() );
			}
		}

		/**
		 * Set product ID for current item
		 *
		 * @param int $product_id Product ID.
		 */
		public function set_product_id( $product_id ) {
			$product_id = yith_wcwl_object_id( $product_id, 'product', true, 'default' );

			if ( ! empty( $this->product ) ) {
				$this->product = null;
			}

			$this->set_prop( 'product_id', $product_id );
		}

		/**
		 * Set quantity for current item
		 *
		 * @param int $quantity Quantity.
		 */
		public function set_quantity( $quantity ) {
			$this->set_prop( 'quantity', $quantity );
		}

		/**
		 * Set user ID for current item
		 *
		 * @param int $user_id User ID.
		 */
		public function set_user_id( $user_id ) {
			$this->set_prop( 'user_id', $user_id );
		}

		/**
		 * Set date added for current item
		 *
		 * @param int $date_added Date added.
		 */
		public function set_date_added( $date_added ) {
			$this->set_date_prop( 'date_added', $date_added );
		}

		/**
		 * Set position in wishlist for current item
		 *
		 * @param int $position Position.
		 */
		public function set_position( $position ) {
			$this->set_prop( 'position', (int) $position );
		}

		/**
		 * Set original price
		 *
		 * @param double $original_price Price.
		 */
		public function set_original_price( $original_price ) {
			$this->set_prop( 'original_price', $original_price );
		}

		/**
		 * Set original currency
		 *
		 * @param string $original_currency Currency.
		 */
		public function set_original_currency( $original_currency ) {
			$this->set_prop( 'original_currency', $original_currency );
		}

		/**
		 * Set on sale value
		 *
		 * @param bool $on_sale Whether product was found as on sale.
		 * @return void
		 */
		public function set_on_sale( $on_sale ) {
			if ( $this->get_object_read() && $on_sale && $this->is_on_sale() !== $on_sale ) {
				do_action( 'yith_wcwl_item_is_on_sale', $this );
			}

			$this->set_prop( 'on_sale', $on_sale );
		}

		/* === ARRAY ACCESS METHODS === */

		/**
		 * OffsetSet for ArrayAccess.
		 *
		 * @param string $offset Offset.
		 * @param mixed  $value  Value.
		 */
		public function offsetSet( $offset, $value ) {
			$offset = $this->map_legacy_offsets( $offset );

			if ( array_key_exists( $offset, $this->data ) ) {
				$setter = "set_$offset";
				if ( is_callable( array( $this, $setter ) ) ) {
					$this->$setter( $value );
				}
			}
		}

		/**
		 * OffsetUnset for ArrayAccess.
		 *
		 * @param string $offset Offset.
		 */
		public function offsetUnset( $offset ) {
			$offset = $this->map_legacy_offsets( $offset );

			if ( array_key_exists( $offset, $this->data ) ) {
				unset( $this->data[ $offset ] );
			}

			if ( array_key_exists( $offset, $this->changes ) ) {
				unset( $this->changes[ $offset ] );
			}
		}

		/**
		 * OffsetExists for ArrayAccess.
		 *
		 * @param string $offset Offset.
		 * @return bool
		 */
		public function offsetExists( $offset ) {
			$offset = $this->map_legacy_offsets( $offset );

			$getter = "get_$offset";
			if ( is_callable( array( $this, $getter ) ) ) {
				return true;
			}

			return false;
		}

		/**
		 * OffsetGet for ArrayAccess.
		 *
		 * @param string $offset Offset.
		 * @return mixed
		 */
		public function offsetGet( $offset ) {
			$offset = $this->map_legacy_offsets( $offset );

			$getter = "get_$offset";
			if ( is_callable( array( $this, $getter ) ) ) {
				return $this->$getter();
			}

			return null;
		}

		/**
		 * Map legacy indexes to new properties, for ArrayAccess
		 *
		 * @param string $offset Offset to search.
		 * @return string Mapped offset
		 */
		protected function map_legacy_offsets( $offset ) {
			$legacy_offset = $offset;

			if ( 'prod_id' === $offset ) {
				$offset = 'product_id';
			} elseif ( 'dateadded' === $offset ) {
				$offset = 'date_added';
			}

			return apply_filters( 'yith_wcwl_wishlist_item_map_legacy_offsets', $offset, $legacy_offset );
		}
	}
}
PK`x1\�q��Y�Y%includes/class-yith-wcwl-wishlist.phpnu�[���<?php
/**
 * Wishlist class
 *
 * @author YITH
 * @package YITH\Wishlist\Classes\Wishlists
 * @version 3.0.0
 */

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

if ( ! class_exists( 'YITH_WCWL_Wishlist' ) ) {
	/**
	 * This class describes Wishlist object, and it is meant to be used whenever a wishlist needs to be retrieved
	 * It is an abstract class to account for different type of wishlists; system will determine wishlist type basing
	 * on user visiting the site
	 *
	 * @since 3.0.0
	 */
	class YITH_WCWL_Wishlist extends WC_Data implements ArrayAccess {

		/**
		 * Wishlist token (Unique identifier)
		 *
		 * @var string
		 */
		protected $token = '';

		/**
		 * Wishlist Data array
		 *
		 * @var array
		 */
		protected $data;

		/**
		 * Wishlist items will be stored here, sometimes before they persist in the DB.
		 *
		 * @since 3.0.0
		 * @var array
		 */
		protected $items = array();

		/**
		 * Wishlist items that need deleting are stored here.
		 *
		 * @since 3.0.0
		 * @var array
		 */
		protected $items_to_delete = array();

		/**
		 * Stores meta in cache for future reads.
		 *
		 * A group must be set to to enable caching.
		 *
		 * @var string
		 */
		protected $cache_group = 'wishlists';

		/* === MAGIC METHODS === */

		/**
		 * Constructor
		 *
		 * @param int|string|\YITH_WCWL_Wishlist $wishlist Wishlist identifier.
		 *
		 * @throws Exception When not able to load Data Store class.
		 */
		public function __construct( $wishlist = 0 ) {
			// set default values.
			$this->data = array(
				'privacy'    => apply_filters( 'yith_wcwl_default_wishlist_privacy', 0 ),
				'user_id'    => 0,
				'session_id' => '',
				'name'       => apply_filters( 'yith_wcwl_default_wishlist_name', '' ),
				'slug'       => apply_filters( 'yith_wcwl_default_wishlist_slug', '' ),
				'token'      => '',
				'is_default' => 0,
				'date_added' => '',
				'expiration' => '',
			);

			parent::__construct();

			if ( is_numeric( $wishlist ) && $wishlist > 0 ) {
				$this->set_id( $wishlist );
			} elseif ( $wishlist instanceof self ) {
				$this->set_id( $wishlist->get_id() );
			} elseif ( is_string( $wishlist ) ) {
				$this->set_token( $wishlist );
			} else {
				$this->set_object_read( true );
			}

			$this->data_store = WC_Data_Store::load( 'wishlist' );

			if ( $this->get_id() > 0 || ! empty( $this->get_token() ) ) {
				$this->data_store->read( $this );
			}
		}

		/* === HELPERS === */

		/**
		 * Return number of items for current wishlist
		 *
		 * @return int Count of items
		 */
		public function count_items() {
			return count( $this->get_items() );
		}

		/**
		 * Check whether wishlist was created for unautheticated user
		 *
		 * @return bool
		 */
		public function is_session_based() {
			return (bool) $this->get_session_id();
		}

		/**
		 * Returns true when wishlist is default
		 *
		 * @return bool Whether wishlist is default or not
		 */
		public function is_default() {
			return $this->get_is_default();
		}

		/**
		 * Check whether wishlist was created for authenticated user
		 *
		 * @return bool
		 */
		public function has_owner() {
			return (bool) $this->get_user_id();
		}

		/**
		 * Check if current user is owner of this wishlist (works both for authenticated users & guests)
		 *
		 * @param string|int|bool $current_user Optional user identifier, in the form of a User ID or session id; false for default.
		 * @return bool
		 */
		public function is_current_user_owner( $current_user = false ) {
			$user_id    = $this->get_user_id();
			$session_id = $this->get_session_id();

			if ( $current_user && ( (int) $current_user === $user_id || $current_user === $session_id ) ) {
				return true;
			}

			if ( $this->has_owner() && is_user_logged_in() && get_current_user_id() === $user_id ) {
				return true;
			}

			if ( $this->is_session_based() && YITH_WCWL_Session()->maybe_get_session_id() === $session_id ) {
				return true;
			}

			return false;
		}

		/**
		 * Check whether current user can perform a specific action on wishlist
		 *
		 * Accepted capabilities:
		 * * view
		 * * update_wishlist
		 * * add_to_wishlist
		 * * remove_from_wishlist
		 * * move_to_another_wishlist
		 * * ask_an_estimate
		 * * sort_items
		 * * update_quantity
		 * * download_pdf
		 *
		 * @param string          $capability Capability to check; default "view".
		 * @param string|int|bool $current_user Optional user identifier, in the form of a User ID or session id; false for default.
		 * @return bool
		 */
		public function current_user_can( $capability = 'view', $current_user = false ) {
			// admin can do anything by default.
			if ( is_user_logged_in() && current_user_can( 'manage_woocommerce' ) && apply_filters( 'yith_wcwl_admin_can', true, $capability, $current_user, $this ) ) {
				return true;
			}

			// for other users, perform checks over capability required.
			switch ( $capability ) {
				case 'view':
					$can = $this->is_current_user_owner( $current_user );

					if ( ! $can && $this->has_privacy( array( 'public', 'shared' ) ) ) {
						$can = true;
					}
					break;
				default:
					$can = $this->is_current_user_owner( $current_user );
					break;
			}

			return apply_filters( 'yith_wcwl_current_user_can', $can, $capability, $current_user, $this );
		}

		/* === GETTERS === */

		/**
		 * Get wishlist token
		 *
		 * @return string Wishlist unique token
		 */
		public function get_token() {
			return $this->token;
		}

		/**
		 * Get privacy visibility
		 *
		 * @param string $context Context.
		 * @return int Wishlist visibility (0 => public, 1 => shared, 2 => private)
		 */
		public function get_privacy( $context = 'view' ) {
			return (int) $this->get_prop( 'privacy', $context );
		}

		/**
		 * Get formatted privacy name
		 *
		 * @param string $context Context.
		 * @return string Formatted privacy value
		 */
		public function get_formatted_privacy( $context = 'view' ) {
			$privacy           = $this->get_privacy( $context );
			$formatted_privacy = yith_wcwl_get_privacy_label( $privacy );

			return apply_filters( 'yith_wcwl_wishlist_formatted_privacy', $formatted_privacy, $privacy, $this, $context );
		}

		/**
		 * Checks if current wishlist has a specific privacy value
		 * Method will accept both numeric privacy values and privacy labels
		 *
		 * @param int|string|array $privacy Privacy value (0|1|2) or label (public|shared|private), or array of acceptable values.
		 * @return bool Whether wishlist matched privacy test
		 */
		public function has_privacy( $privacy ) {
			$wishlist_privacy = $this->get_privacy( 'edit' );
			$has_privacy      = false;

			if ( is_array( $privacy ) && ! empty( $privacy ) ) {
				foreach ( $privacy as $test_value ) {
					// return true if wishlist has any of the privacy value submitted.
					if ( $this->has_privacy( $test_value ) ) {
						return true;
					}
				}
			} elseif ( is_string( $privacy ) ) {
				$has_privacy = yith_wcwl_get_privacy_value( $privacy ) === $wishlist_privacy;
			} else {
				$has_privacy = $privacy === $wishlist_privacy;
			}

			return $has_privacy;
		}

		/**
		 * Get owner id
		 *
		 * @param string $context Context.
		 * @return int Wishlist owner id
		 */
		public function get_user_id( $context = 'view' ) {
			return (int) $this->get_prop( 'user_id', $context );
		}

		/**
		 * Get session id
		 *
		 * @param string $context Context.
		 * @return int Wishlist owner id
		 */
		public function get_session_id( $context = 'view' ) {
			return $this->get_prop( 'session_id', $context );
		}

		/**
		 * Get wishlist name
		 *
		 * @param string $context Context.
		 * @return string Wishlist name
		 */
		public function get_name( $context = 'view' ) {
			return wc_clean( stripslashes( $this->get_prop( 'name', $context ) ) );
		}

		/**
		 * Get wishlist formatted name
		 *
		 * @param string $context Context.
		 * @return string Formatted name
		 */
		public function get_formatted_name( $context = 'view' ) {
			$name = $this->get_name( $context );

			if ( $this->is_default() && ! $name ) {
				$name = apply_filters( 'yith_wcwl_default_wishlist_formatted_title', get_option( 'yith_wcwl_wishlist_title' ) );
			}

			return apply_filters( 'yith_wcwl_wishlist_formatted_title', $name );
		}

		/**
		 * Get wishlist slug
		 *
		 * @param string $context Context.
		 * @return string Wishlist slug
		 */
		public function get_slug( $context = 'view' ) {
			return $this->get_prop( 'slug', $context );
		}

		/**
		 * Check if wishlist is default one for the user
		 *
		 * @param string $context Context.
		 * @return bool Whether wishlist is default one or not
		 */
		public function get_is_default( $context = 'view' ) {
			return (bool) $this->get_prop( 'is_default', $context );
		}

		/**
		 * Get wishlist date added
		 *
		 * @param string $context Context.
		 * @return \WC_DateTime|string Wishlist date of creation
		 */
		public function get_date_added( $context = 'view' ) {
			$date_added = $this->get_prop( 'date_added', $context );

			if ( $date_added && 'view' === $context ) {
				return $date_added->date_i18n( 'Y-m-d H:i:s' );
			}

			return $date_added;
		}

		/**
		 * Get formatted wishlist date added
		 *
		 * @param string $format Date format (if empty, WP date format will be applied).
		 * @return string Wishlist date of creation
		 */
		public function get_date_added_formatted( $format = '' ) {
			$date_added = $this->get_date_added( 'edit' );

			if ( $date_added ) {
				$format = $format ? $format : get_option( 'date_format' );
				return $date_added->date_i18n( $format );
			}

			return '';
		}

		/**
		 * Get wishlist date added
		 *
		 * @param string $context Context.
		 * @return \WC_DateTime|string Wishlist date of creation
		 */
		public function get_expiration( $context = 'view' ) {
			$expiration = $this->get_prop( 'expiration', $context );

			if ( $expiration && 'view' === $context ) {
				return $expiration->date_i18n( 'Y-m-d H:i:s' );
			}

			return $expiration;
		}

		/**
		 * Get formatted wishlist expiration added
		 *
		 * @param string $format Date format (if empty, WP date format will be applied).
		 * @return string Wishlist date of expiration
		 */
		public function get_expiration_formatted( $format = '' ) {
			$expiration = $this->get_expiration( 'edit' );

			if ( $expiration ) {
				$format = $format ? $format : get_option( 'date_format' );
				return $expiration->date_i18n( $format );
			}

			return '';
		}

		/**
		 * Retrieve email of the owner of the wishlist (if any)
		 *
		 * @return string|bool Email of wishlist owner (or false, if no registered owner)
		 */
		public function get_user_email() {
			$user_id = $this->get_user_id();

			if ( ! $user_id ) {
				return false;
			}

			$user = get_userdata( $user_id );
			return $user->user_email;
		}

		/**
		 * Retrieve first name of the owner of the wishlist (if any)
		 *
		 * @return string|bool First name of wishlist owner (or false, if no registered owner)
		 */
		public function get_user_first_name() {
			$user_id = $this->get_user_id();

			if ( ! $user_id ) {
				return false;
			}

			$user = get_userdata( $user_id );
			return $user->first_name;
		}

		/**
		 * Retrieve last name of the owner of the wishlist (if any)
		 *
		 * @return string|bool Last name of wishlist owner (or false, if no registered owner)
		 */
		public function get_user_last_name() {
			$user_id = $this->get_user_id();

			if ( ! $user_id ) {
				return false;
			}

			$user = get_userdata( $user_id );
			return $user->last_name;
		}

		/**
		 * Return owner formatted name
		 *
		 * @return string User formatted name
		 */
		public function get_user_formatted_name() {
			$user_id = $this->get_user_id();

			if ( ! $user_id ) {
				return false;
			}

			$user       = get_userdata( $user_id );
			$first_name = $user->first_name;
			$last_name  = $user->last_name;
			$email      = $user->user_email;

			$formatted_name = $email;

			if ( ! empty( $first_name ) || ! empty( $last_name ) ) {
				$formatted_name .= " <{$first_name} {$last_name}>";
			}

			return $formatted_name;
		}

		/**
		 * Return url to visit wishlist
		 *
		 * @return string Url to the wishlist
		 */
		public function get_url() {
			return YITH_WCWL()->get_wishlist_url( 'view/' . $this->get_token() );
		}

		/**
		 * Get url to download the wishlist as PDF file
		 *
		 * @return string Url to download
		 */
		public function get_download_url() {
			return apply_filters( 'yith_wcwl_wishlist_download_url', wp_nonce_url( add_query_arg( 'download_wishlist', $this->get_id() ), 'download_wishlist', 'download_nonce' ), $this );
		}

		/**
		 * Get url to delete the wishlist
		 *
		 * @return string Url to delete the wishlist
		 */
		public function get_delete_url() {
			return apply_filters( 'yith_wcwl_wishlist_delete_url', wp_nonce_url( add_query_arg( 'wishlist_id', $this->get_id(), YITH_WCWL()->get_wishlist_url( 'manage' ) ), 'yith_wcwl_delete_action', 'yith_wcwl_delete' ), $this );
		}

		/* === SETTERS === */

		/**
		 * Set wishlist token
		 *
		 * @param string $token Wishlist unique token.
		 */
		public function set_token( $token ) {
			$this->token = (string) $token;
		}

		/**
		 * Set privacy visibility
		 *
		 * @param int $privacy Wishlist visibility (0 => public, 1 => shared, 2 => private).
		 */
		public function set_privacy( $privacy ) {
			$this->set_prop( 'privacy', $privacy );
		}

		/**
		 * Set owner id
		 *
		 * @param int $user_id Wishlist owner id.
		 */
		public function set_user_id( $user_id ) {
			$this->set_prop( 'user_id', $user_id );
		}

		/**
		 * Set session id
		 *
		 * @param int $session_id Wishlist session.
		 */
		public function set_session_id( $session_id ) {
			$this->set_prop( 'session_id', $session_id );
		}

		/**
		 * Set wishlist name
		 *
		 * @param string $name Wishlist name.
		 */
		public function set_name( $name ) {
			$this->set_prop( 'name', $name );
		}

		/**
		 * Set wishlist slug
		 *
		 * @param string $slug Wishlist slug.
		 */
		public function set_slug( $slug ) {
			$this->set_prop( 'slug', substr( $slug, 0, 200 ) );
		}

		/**
		 * Set if wishlist is default one for the user
		 *
		 * @param bool $is_default Whether wishlist is default one or not.
		 */
		public function set_is_default( $is_default ) {
			$this->set_prop( 'is_default', $is_default );
		}

		/**
		 * Set wishlist date added
		 *
		 * @param int|string $date_added Wishlist date of creation (timestamp or date).
		 */
		public function set_date_added( $date_added ) {
			$this->set_date_prop( 'date_added', $date_added );
		}

		/**
		 * Set wishlist date added
		 *
		 * @param int|string $expiration Wishlist date of creation (timestamp or date).
		 */
		public function set_expiration( $expiration ) {
			$this->set_date_prop( 'expiration', $expiration );
		}

		/**
		 * Sets a prop for a setter method.
		 *
		 * This stores changes in a special array so we can track what needs saving
		 * the the DB later.
		 *
		 * @since 3.0.0
		 * @param string $prop Name of prop to set.
		 * @param mixed  $value Value of the prop.
		 */
		protected function set_prop( $prop, $value ) {
			parent::set_prop( $prop, $value );

			if ( 'name' === $prop ) {
				$this->set_slug( sanitize_title_with_dashes( $this->get_name() ) );
			}
		}

		/* === CRUD METHODS === */

		/**
		 * Save data to the database.
		 *
		 * @since 3.0.0
		 * @return int order ID
		 */
		public function save() {
			if ( $this->data_store ) {
				// Trigger action before saving to the DB. Allows you to adjust object props before save.
				do_action( 'woocommerce_before_' . $this->object_type . '_object_save', $this, $this->data_store );

				if ( $this->get_id() ) {
					$this->data_store->update( $this );
				} else {
					$this->data_store->create( $this );
				}
			}
			$this->save_items();
			return $this->get_id();
		}

		/* === ITEM METHODS === */

		/**
		 * Returns true when wishlist is non-empty
		 *
		 * @return bool Whether wishlist is empty or not
		 */
		public function has_items() {
			$items = $this->get_items();

			return ! empty( $items );
		}

		/**
		 * Return an array of items/products within this wishlist.
		 *
		 * @param int $limit  When differs from 0, method will return at most this number of items.
		 * @param int $offset When @see $limit is set, this will be used as offset to retrieve items.
		 *
		 * @return YITH_WCWL_Wishlist_Item[]
		 */
		public function get_items( $limit = 0, $offset = 0 ) {
			if ( ! $this->items ) {
				$this->items = array_filter( $this->data_store->read_items( $this ) );
			}

			$items = apply_filters( 'yith_wcwl_wishlist_get_items', $this->items, $this );

			if ( $limit ) {
				$items = array_slice( $items, $offset, $limit );
			}

			return $items;
		}

		/**
		 * Save all wishlist items which are part of this wishlist.
		 *
		 * @return void
		 */
		protected function save_items() {
			foreach ( $this->items_to_delete as $item ) {
				$item->delete();
			}
			$this->items_to_delete = array();

			// Add/save items.
			foreach ( $this->items as $product_id => $item ) {
				if ( $item->get_wishlist_id() !== $this->get_id() ) {
					$item->set_wishlist_id( $this->get_id() );
				}

				$item->save();
			}
		}

		/**
		 * Check whether a product is already in list
		 *
		 * @param int $product_id Product id.
		 * @return bool Whether product is already in list
		 */
		public function has_product( $product_id ) {
			$product_id = yith_wcwl_object_id( $product_id, 'product', true, 'default' );

			return array_key_exists( $product_id, $this->get_items() );
		}

		/**
		 * Retrieves a product from the list (if set)
		 *
		 * @param int $product_id Product ID.
		 * @return \YITH_WCWL_Wishlist_Item|bool Item on success, false on failure
		 */
		public function get_product( $product_id ) {
			$product_id = yith_wcwl_object_id( $product_id, 'product', true, 'default' );

			if ( ! $this->has_product( $product_id ) ) {
				return false;
			}

			$items = $this->get_items();
			return $items[ $product_id ];
		}

		/**
		 * Add a product to the list
		 *
		 * @param int $product_id Product id.
		 *
		 * @return \YITH_WCWL_Wishlist_Item|bool Item on success; false on failure
		 */
		public function add_product( $product_id ) {
			$product_id = yith_wcwl_object_id( $product_id, 'product', true, 'default' );

			$product = wc_get_product( $product_id );

			if ( ! $product || $this->has_product( $product_id ) ) {
				return false;
			}

			try {
				$item = new YITH_WCWL_Wishlist_Item();
				$item->set_product_id( $product_id );
				$item->set_wishlist_id( $this->get_id() );
				$item->set_user_id( $this->get_user_id() );

				$this->items[ $product_id ] = $item;

				return $item;
			} catch ( Exception $e ) {
				return false;
			}
		}

		/**
		 * Remove product from the list
		 *
		 * @param int $product_id Product id.
		 * @return bool Status of the operation
		 */
		public function remove_product( $product_id ) {
			$product_id = yith_wcwl_object_id( $product_id, 'product', true, 'default' );

			if ( ! $this->has_product( $product_id ) ) {
				return false;
			}

			$this->items_to_delete[] = $this->items[ $product_id ];
			unset( $this->items[ $product_id ] );

			return true;
		}

		/**
		 * Check whether an item is already in list (by item id)
		 *
		 * @param int $item_id Item id.
		 * @return bool Whether item is already in list
		 */
		public function has_item( $item_id ) {
			return in_array( (int) $item_id, array_column( $this->get_items(), 'id' ), true );
		}

		/**
		 * Retrieve a specific item of the list, by item id
		 *
		 * @param int $item_id Item id.
		 * @return \YITH_WCWL_Wishlist_Item|bool Item to retrieve, or false on error
		 */
		public function get_item( $item_id ) {
			if ( ! $this->has_item( $item_id ) ) {
				return false;
			}

			$items = array_combine( array_column( $this->get_items(), 'id' ), $this->get_items() );
			return $items[ $item_id ];
		}

		/**
		 * Add new item to the list
		 *
		 * @param \YITH_WCWL_Wishlist_Item $item Wishlist item.
		 * @return \YITH_WCWL_Wishlist_Item|bool Item on success; false on failure
		 */
		public function add_item( $item ) {
			if ( ! $item->get_product_id() || $this->has_item( $item->get_id() ) ) {
				return false;
			}

			$item->set_wishlist_id( $this->get_id() );
			$item->set_user_id( $this->get_user_id() );

			$this->items[ $item->get_product_id() ] = $item;
			return $item;
		}

		/**
		 * Remove item from the list
		 *
		 * @param int $item_id Item id.
		 * @return bool status of the operation
		 */
		public function remove_item( $item_id ) {
			if ( ! $this->has_item( $item_id ) ) {
				return false;
			}

			$item = $this->get_item( $item_id );

			$this->items_to_delete[] = $item;
			unset( $this->items[ $item->get_product_id() ] );

			return true;
		}

		/* === ARRAY ACCESS METHODS === */

		/**
		 * OffsetSet for ArrayAccess.
		 *
		 * @param string $offset Offset.
		 * @param mixed  $value  Value.
		 */
		public function offsetSet( $offset, $value ) {
			$offset = $this->map_legacy_offsets( $offset );

			if ( array_key_exists( $offset, $this->data ) ) {
				$setter = "set_$offset";
				if ( is_callable( array( $this, $setter ) ) ) {
					$this->$setter( $value );
				}
			}
		}

		/**
		 * OffsetUnset for ArrayAccess.
		 *
		 * @param string $offset Offset.
		 */
		public function offsetUnset( $offset ) {
			$offset = $this->map_legacy_offsets( $offset );

			if ( array_key_exists( $offset, $this->data ) ) {
				unset( $this->data[ $offset ] );
			}

			if ( array_key_exists( $offset, $this->changes ) ) {
				unset( $this->changes[ $offset ] );
			}
		}

		/**
		 * OffsetExists for ArrayAccess.
		 *
		 * @param string $offset Offset.
		 * @return bool
		 */
		public function offsetExists( $offset ) {
			$offset = $this->map_legacy_offsets( $offset );

			$getter = "get_$offset";
			if ( is_callable( array( $this, $getter ) ) ) {
				return true;
			}

			return false;
		}

		/**
		 * OffsetGet for ArrayAccess.
		 *
		 * @param string $offset Offset.
		 * @return mixed
		 */
		public function offsetGet( $offset ) {
			$offset = $this->map_legacy_offsets( $offset );

			$getter = "get_$offset";
			if ( is_callable( array( $this, $getter ) ) ) {
				return $this->$getter();
			}

			return null;
		}

		/**
		 * Map legacy indexes to new properties, for ArrayAccess
		 *
		 * @param string $offset Offset to search.
		 * @return string Mapped offset
		 */
		protected function map_legacy_offsets( $offset ) {
			$legacy_offset = $offset;

			if ( false !== strpos( $offset, 'wishlist_' ) ) {
				$offset = str_replace( 'wishlist_', '', $offset );
			}

			if ( 'dateadded' === $offset ) {
				$offset = 'date_added';
			}

			if ( 'first_name' === $offset ) {
				$offset = 'user_first_name';
			}

			if ( 'last_name' === $offset ) {
				$offset = 'user_last_name';
			}

			return apply_filters( 'yith_wcwl_wishlist_map_legacy_offsets', $offset, $legacy_offset );
		}
	}
}
PK`x1\��!��.includes/legacy/functions-yith-wcwl-legacy.phpnu�[���<?php
/**
 * Legacy Functions
 *
 * @author YITH
 * @package YITH\Wishlist\Classes\Legacy
 * @version 3.0.0
 */

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

if ( ! function_exists( 'YITH_WCWL_Admin_Init' ) ) {
	/**
	 * Deprecated function that used to return admin class single instance
	 *
	 * @return YITH_WCWL_Admin
	 * @since 2.0.0
	 */
	function YITH_WCWL_Admin_Init() { // phpcs:ignore WordPress.NamingConventions.ValidFunctionName.FunctionNameInvalid
		_deprecated_function( __FUNCTION__, '3.0.0', 'YITH_WCWL_Admin' );
		return YITH_WCWL_Admin();
	}
}

if ( ! function_exists( 'YITH_WCWL_Init' ) ) {
	/**
	 * Deprecated function that used to return init class single instance
	 *
	 * @return YITH_WCWL_Frontend
	 * @since 2.0.0
	 */
	function YITH_WCWL_Init() { // phpcs:ignore WordPress.NamingConventions.ValidFunctionName.FunctionNameInvalid
		_deprecated_function( __FUNCTION__, '3.0.0', 'YITH_WCWL_Frontend' );
		return YITH_WCWL_Frontend();
	}
}
PK`x1\�a	a	!includes/class-yith-wcwl-cron.phpnu�[���<?php
/**
 * Wishlist Cron Handler
 *
 * @author YITH
 * @package YITH\Wishlist\Classes
 * @version 3.0.0
 */

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

if ( ! class_exists( 'YITH_WCWL_Cron' ) ) {
	/**
	 * This class handles cron for wishlist plugin
	 *
	 * @since 3.0.0
	 */
	class YITH_WCWL_Cron {
		/**
		 * Array of events to schedule
		 *
		 * @var array
		 */
		protected $crons = array();

		/**
		 * Single instance of the class
		 *
		 * @var \YITH_WCWL_Cron
		 * @since 3.0.0
		 */
		protected static $instance;

		/**
		 * Constructor
		 *
		 * @return void
		 */
		public function __construct() {
			add_action( 'init', array( $this, 'schedule' ) );
		}

		/**
		 * Returns registered crons
		 *
		 * @return array Array of registered crons ans callbacks
		 */
		public function get_crons() {
			if ( empty( $this->crons ) ) {
				$this->crons = array(
					'yith_wcwl_delete_expired_wishlists' => array(
						'schedule' => 'daily',
						'callback' => array( $this, 'delete_expired_wishlists' ),
					),
				);
			}

			return apply_filters( 'yith_wcwl_crons', $this->crons );
		}

		/**
		 * Schedule events not scheduled yet; register callbacks for each event
		 *
		 * @return void
		 */
		public function schedule() {
			$crons = $this->get_crons();

			if ( ! empty( $crons ) ) {
				foreach ( $crons as $hook => $data ) {

					add_action( $hook, $data['callback'] );

					if ( ! wp_next_scheduled( $hook ) ) {
						wp_schedule_event( time() + MINUTE_IN_SECONDS, $data['schedule'], $hook );
					}
				}
			}
		}

		/**
		 * Delete expired session wishlist
		 *
		 * @return void
		 */
		public function delete_expired_wishlists() {
			try {
				WC_Data_Store::load( 'wishlist' )->delete_expired();
			} catch ( Exception $e ) {
				return;
			}
		}

		/**
		 * Returns single instance of the class
		 *
		 * @return \YITH_WCWL_Cron
		 * @since 3.0.0
		 */
		public static function get_instance() {
			if ( is_null( self::$instance ) ) {
				self::$instance = new self();
			}

			return self::$instance;
		}
	}
}

/**
 * Unique access to instance of YITH_WCWL_Cron class
 *
 * @return \YITH_WCWL_Cron
 * @since 3.0.0
 */
function YITH_WCWL_Cron() { // phpcs:ignore WordPress.NamingConventions.ValidFunctionName.FunctionNameInvalid
	return defined( 'YITH_WCWL_PREMIUM' ) ? YITH_WCWL_Cron_Premium::get_instance() : YITH_WCWL_Cron::get_instance();
}
PK`x1\6G�/"W"WAincludes/data-stores/class-yith-wcwl-wishlist-item-data-store.phpnu�[���<?php
/**
 * Wishlist data store
 *
 * @author YITH
 * @package YITH\Wishlist\Classes\DataStores
 * @version 3.0.0
 */

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

// phpcs:disable WordPress.DB.DirectDatabaseQuery.DirectQuery, WordPress.DB.DirectDatabaseQuery.NoCaching

if ( ! class_exists( 'YITH_WCWL_Wishlist_Item_Data_Store' ) ) {
	/**
	 * This class implements CRUD methods for wishlists' items
	 *
	 * @since 3.0.0
	 */
	class YITH_WCWL_Wishlist_Item_Data_Store {

		/**
		 * Create a new wishlist item in the database.
		 *
		 * @since 3.0.0
		 * @param \YITH_WCWL_Wishlist_Item $item Wishlist item object.
		 */
		public function create( &$item ) {
			global $wpdb;

			$product_id  = $item->get_original_product_id();
			$wishlist_id = $item->get_wishlist_id();

			if ( ! $product_id || ! $wishlist_id ) {
				return;
			}

			$item_id = YITH_WCWL_Wishlist_Factory::get_wishlist_item_by_product_id( $wishlist_id, $product_id );

			if ( $item_id ) {
				$item->set_id( $item_id );

				$this->update( $item );
				return;
			}

			$columns = array(
				'prod_id'           => '%d',
				'quantity'          => '%d',
				'wishlist_id'       => '%d',
				'position'          => '%d',
				'original_price'    => '%f',
				'original_currency' => '%s',
				'on_sale'           => '%d',
			);
			$values  = array(
				apply_filters( 'yith_wcwl_adding_to_wishlist_product_id', $product_id ),
				apply_filters( 'yith_wcwl_adding_to_wishlist_quantity', $item->get_quantity() ),
				apply_filters( 'yith_wcwl_adding_to_wishlist_wishlist_id', $wishlist_id ),
				apply_filters( 'yith_wcwl_adding_to_wishlist_position', $item->get_position() ),
				apply_filters( 'yith_wcwl_adding_to_wishlist_original_price', $item->get_product_price() ),
				apply_filters( 'yith_wcwl_adding_to_wishlist_original_currency', $item->get_original_currency() ),
				apply_filters( 'yith_wcwl_adding_to_wishlist_on_sale', $item->is_on_sale() ),
			);

			$user_id = $item->get_user_id();

			if ( $user_id ) {
				$columns['user_id'] = '%d';
				$values[]           = apply_filters( 'yith_wcwl_adding_to_wishlist_user_id', $user_id );
			}

			$date_added = $item->get_date_added( 'edit' );

			if ( $date_added ) {
				$columns['dateadded'] = 'FROM_UNIXTIME( %d )';
				$values[]             = apply_filters( 'yith_wcwl_adding_to_wishlist_date_added', $date_added->getTimestamp() );
			}

			$query_columns = implode( ', ', array_map( 'esc_sql', array_keys( $columns ) ) );
			$query_values  = implode( ', ', array_values( $columns ) );
			$query         = "INSERT INTO {$wpdb->yith_wcwl_items} ( {$query_columns} ) VALUES ( {$query_values} ) ";

			$res = $wpdb->query( $wpdb->prepare( $query, $values ) ); // phpcs:ignore WordPress.DB.PreparedSQL.NotPrepared

			if ( $res ) {
				$item->set_id( $wpdb->insert_id );
				$item->apply_changes();
				$this->clear_cache( $item );

				do_action( 'yith_wcwl_new_wishlist_item', $item->get_id(), $item, $item->get_wishlist_id() );
			}
		}

		/**
		 * Read/populate data properties specific to this order item.
		 *
		 * @param WC_Order_Item_Product $item Product order item object.
		 *
		 * @throws Exception When wishlist item is not found.
		 * @since 3.0.0
		 */
		public function read( &$item ) {
			global $wpdb;

			$item->set_defaults();

			// Get from cache if available.
			$data = wp_cache_get( 'item-' . $item->get_id(), 'wishlist-items' );

			if ( false === $data ) {
				$data = $wpdb->get_row( $wpdb->prepare( "SELECT * FROM {$wpdb->yith_wcwl_items} WHERE ID = %d LIMIT 1;", $item->get_id() ) );
				wp_cache_set( 'item-' . $item->get_id(), $data, 'wishlist-items' );
			}

			if ( ! $data ) {
				throw new Exception( __( 'Invalid wishlist item.', 'yith-woocommerce-wishlist' ) );
			}

			$item->set_props(
				array(
					'wishlist_id'       => $data->wishlist_id,
					'product_id'        => $data->prod_id,
					'user_id'           => $data->user_id,
					'quantity'          => $data->quantity,
					'date_added'        => $data->dateadded,
					'position'          => $data->position,
					'original_price'    => $data->original_price,
					'original_currency' => $data->original_currency,
					'on_sale'           => $data->on_sale,
				)
			);
			$item->set_object_read( true );
		}

		/**
		 * Update a wishlist item in the database.
		 *
		 * @since 3.0.0
		 * @param YITH_WCWL_Wishlist_Item $item Wishlist item object.
		 */
		public function update( &$item ) {
			if ( ! $item->get_id() ) {
				return;
			}

			$changes = $item->get_changes();

			if ( array_intersect( array( 'quantity', 'wishlist_id', 'product_id', 'user_id', 'position', 'on_sale', 'date_added' ), array_keys( $changes ) ) ) {
				$columns = array(
					'quantity'    => '%d',
					'wishlist_id' => '%d',
					'prod_id'     => '%d',
					'position'    => '%d',
					'on_sale'     => '%d',
					'dateadded'   => 'FROM_UNIXTIME( %d )',
					'user_id'     => $item->get_user_id() ? '%d' : 'NULL',
				);
				$values  = array(
					$item->get_quantity(),
					$item->get_wishlist_id(),
					$item->get_original_product_id(),
					$item->get_position(),
					$item->is_on_sale(),
					$item->get_date_added( 'edit' ) ? $item->get_date_added( 'edit' )->getTimestamp() : time(),
				);

				$user_id = $item->get_user_id();

				if ( $user_id ) {
					$values[] = $user_id;
				}

				$this->update_raw( $columns, $values, array( 'ID' => '%d' ), array( $item->get_id() ) );
			}

			$item->apply_changes();
			$this->clear_cache( $item );

			do_action( 'yith_wcwl_update_wishlist_item', $item->get_id(), $item, $item->get_wishlist_id() );
		}

		/**
		 * Remove a wishlist item from the database.
		 *
		 * @since 3.0.0
		 * @param \YITH_WCWL_Wishlist_Item $item Wishlist item object.
		 */
		public function delete( &$item ) {
			global $wpdb;

			$id = $item->get_id();

			if ( ! $id ) {
				return;
			}

			do_action( 'yith_wcwl_before_delete_wishlist_item', $item->get_id() );

			$wpdb->delete( $wpdb->yith_wcwl_items, array( 'ID' => $item->get_id() ) );

			do_action( 'yith_wcwl_delete_wishlist_item', $item->get_id() );

			$item->set_id( 0 );
			$this->clear_cache( $item );
		}

		/**
		 * Retrieves wishlist items that match a set of conditions
		 *
		 * @param array $args Arguments array; it may contains any of the following:<br/>
		 * [<br/>
		 *     'user_id'             // Owner of the wishlist; default to current user logged in (if any), or false for cookie wishlist<br/>
		 *     'product_id'          // Product to search in the wishlist<br/>
		 *     'wishlist_id'         // wishlist_id for a specific wishlist, false for default, or all for any wishlist<br/>
		 *     'wishlist_token'      // wishlist token, or false as default<br/>
		 *     'wishlist_visibility' // all, visible, public, shared, private<br/>
		 *     'is_default' =>       // whether searched wishlist should be default one <br/>
		 *     'id' => false,        // only for table select<br/>
		 *     'limit' => false,     // pagination param; number of items per page. 0 to get all items<br/>
		 *     'offset' => 0         // pagination param; offset for the current set. 0 to start from the first item<br/>
		 * ].
		 *
		 * @return YITH_WCWL_Wishlist_Item[]
		 */
		public function query( $args = array() ) {
			global $wpdb;

			$default = array(
				'user_id'             => ( is_user_logged_in() ) ? get_current_user_id() : false,
				'session_id'          => ( ! is_user_logged_in() ) ? YITH_WCWL_Session()->maybe_get_session_id() : false,
				'product_id'          => false,
				'wishlist_id'         => false, // wishlist_id for a specific wishlist, false for default, or all for any wishlist.
				'wishlist_token'      => false,
				'wishlist_visibility' => apply_filters( 'yith_wcwl_wishlist_visibility_string_value', 'all' ), // all | visible | public | shared | private.
				'is_default'          => false,
				'on_sale'             => false,
				'id'                  => false, // only for table select..
				'limit'               => false,
				'offset'              => 0,
				'orderby'             => '',
				'order'               => 'DESC',
			);

			// if there is no current wishlist, and user was asking for current one, short-circuit query, as pointless.
			if ( ! is_user_logged_in() && ! YITH_WCWL_Session()->has_session() && ! isset( $args['user_id'] ) && ! isset( $args['session_id'] ) ) {
				return array();
			}

			$args = wp_parse_args( $args, $default );
			extract( $args ); // phpcs:ignore WordPress.PHP.DontExtract

			$sql = "SELECT SQL_CALC_FOUND_ROWS i.*
                    FROM `{$wpdb->yith_wcwl_items}` AS i
                    LEFT JOIN {$wpdb->yith_wcwl_wishlists} AS l ON l.`ID` = i.`wishlist_id`
                    INNER JOIN {$wpdb->posts} AS p ON p.ID = i.prod_id 
                    WHERE 1 AND p.post_type IN ( %s, %s ) AND p.post_status = %s";

			// remove hidden products from result.
			$hidden_products = yith_wcwl_get_hidden_products();

			if ( ! empty( $hidden_products ) && apply_filters( 'yith_wcwl_remove_hidden_products_via_query', true ) ) {
				$sql .= ' AND p.ID NOT IN ( ' . implode( ', ', array_filter( $hidden_products, 'esc_sql' ) ) . ' )';
			}

			$sql_args = array(
				'product',
				'product_variation',
				'publish',
			);

			if ( ! empty( $user_id ) ) {
				$sql       .= ' AND i.`user_id` = %d';
				$sql_args[] = $user_id;
			}

			if ( ! empty( $session_id ) ) {
				$sql       .= ' AND l.`session_id` = %s AND l.`expiration` > NOW()';
				$sql_args[] = $session_id;
			}

			if ( ! empty( $product_id ) ) {
				$product_id = yith_wcwl_object_id( $product_id, 'product', true, 'default' );

				$sql       .= ' AND i.`prod_id` = %d';
				$sql_args[] = $product_id;
			}

			if ( ! empty( $wishlist_id ) && 'all' !== $wishlist_id ) {
				$sql       .= ' AND i.`wishlist_id` = %d';
				$sql_args[] = $wishlist_id;
			} elseif ( ( empty( $wishlist_id ) ) && empty( $wishlist_token ) && empty( $is_default ) ) {
				$sql .= ' AND i.`wishlist_id` IS NULL';
			}

			if ( ! empty( $wishlist_token ) ) {
				$sql       .= ' AND l.`wishlist_token` = %s';
				$sql_args[] = $wishlist_token;
			}

			if ( ! empty( $wishlist_visibility ) && 'all' !== $wishlist_visibility ) {
				switch ( $wishlist_visibility ) {
					case 'visible':
						$sql       .= ' AND ( l.`wishlist_privacy` = %d OR l.`wishlist_privacy` = %d )';
						$sql_args[] = 0;
						$sql_args[] = 1;
						break;
					case 'shared':
						$sql       .= ' AND l.`wishlist_privacy` = %d';
						$sql_args[] = 1;
						break;
					case 'private':
						$sql       .= ' AND l.`wishlist_privacy` = %d';
						$sql_args[] = 2;
						break;
					case 'public':
					default:
						$sql       .= ' AND l.`wishlist_privacy` = %d';
						$sql_args[] = 0;
						break;
				}
			}

			if ( ! empty( $is_default ) ) {
				YITH_WCWL_Wishlist_Factory::generate_default_wishlist();

				$sql       .= ' AND l.`is_default` = %d';
				$sql_args[] = $is_default;
			}

			if ( isset( $on_sale ) && false !== $on_sale ) {
				$sql       .= ' AND i.`on_sale` = %d';
				$sql_args[] = $on_sale;
			}

			if ( ! empty( $id ) ) {
				$sql       .= ' AND `i.ID` = %d';
				$sql_args[] = $id;
			}

			$sql .= ' GROUP BY i.prod_id, l.ID';

			if ( ! empty( $orderby ) ) {
				$order = ! empty( $order ) ? $order : 'DESC';
				$sql  .= ' ORDER BY i.' . esc_sql( $orderby ) . ' ' . esc_sql( $order ) . ', i.position ASC';
			} else {
				$sql .= ' ORDER BY i.position ASC, i.ID DESC';
			}

			if ( ! empty( $limit ) && isset( $offset ) ) {
				$sql       .= ' LIMIT %d, %d';
				$sql_args[] = $offset;
				$sql_args[] = $limit;
			}

			$items = $wpdb->get_results( $wpdb->prepare( $sql, $sql_args ) ); // phpcs:ignore WordPress.DB.PreparedSQL.NotPrepared

			/**
			 * This filter was added to allow developer remove hidden products using a foreach loop, instead of the query
			 * It is required when the store contains a huge number of hidden products, and the resulting query would fail
			 * to be submitted to DBMS because of its size
			 *
			 * This code requires reasonable amount of products in the wishlist
			 * A great number of products retrieved from the main query could easily degrade performance of the overall system
			 *
			 * @since 3.0.7
			 */
			if ( ! empty( $hidden_products ) && ! empty( $items ) && ! apply_filters( 'yith_wcwl_remove_hidden_products_via_query', true ) ) {
				foreach ( $items as $item_id => $item ) {
					if ( ! in_array( $item->prod_id, $hidden_products, true ) ) {
						continue;
					}

					unset( $items[ $item_id ] );
				}
			}

			if ( ! empty( $items ) ) {
				$items = array_map( array( 'YITH_WCWL_Wishlist_Factory', 'get_wishlist_item' ), $items );
			} else {
				$items = array();
			}

			return apply_filters( 'yith_wcwl_get_products', $items, $args );
		}

		/**
		 * Counts items that matches
		 *
		 * @param array $args Same parameters allowed for {@see query} method.
		 * @return int Count of items
		 */
		public function count( $args = array() ) {
			return count( $this->query( $args ) );
		}

		/**
		 * Query items table to retrieve distinct products added to wishlist, with count of occurrences
		 *
		 * @param array $args Arguments array; it may contains any of the following:<br/>
		 * [<br/>
		 *     'product_id'          // Product to search in the wishlist<br/>
		 *     'search' => '',       // search string; will be matched against product name<br/>
		 *     'interval' => '',     // Interval of dates; this should be an associative array, that may contain start_date or end_date<br/>
		 *     'orderby' => 'ID',    // order param; a valid column in the result set<br/>
		 *     'order' => 'desc',    // order param; asc or desc<br/>
		 *     'limit' => false,     // pagination param; number of items per page. 0 to get all items<br/>
		 *     'offset' => 0         // pagination param; offset for the current set. 0 to start from the first item<br/>
		 * ].
		 * @return mixed Result set
		 */
		public function query_products( $args ) {
			global $wpdb;

			$default = array(
				'product_id' => '',
				'search'     => '',
				'interval'   => array(),
				'limit'      => false,
				'offset'     => 0,
				'orderby'    => 'ID',
				'order'      => 'DESC',
			);

			$args = wp_parse_args( $args, $default );
			extract( $args ); // phpcs:ignore WordPress.PHP.DontExtract

			$sql = "SELECT
		            DISTINCT i.prod_id AS id,
		            p.post_title AS post_title,
		            i2.wishlist_count AS wishlist_count
		            FROM {$wpdb->yith_wcwl_items} AS i
		            INNER JOIN {$wpdb->posts} AS p ON p.ID = i.prod_id
		            LEFT JOIN ( 
		                SELECT 
		                COUNT( DISTINCT ID ) AS wishlist_count, 
                        prod_id 
		                FROM {$wpdb->yith_wcwl_items} 
		                GROUP BY prod_id 
	                ) AS i2 ON p.ID = i2.prod_id
		            WHERE 1=1 AND p.post_status = %s";

			$sql_args = array( 'publish' );

			if ( ! empty( $product_id ) ) {
				$sql       .= ' AND i.prod_id = %d';
				$sql_args[] = $product_id;
			}

			if ( ! empty( $search ) ) {
				$sql       .= ' AND p.post_title LIKE %s';
				$sql_args[] = '%' . $search . '%';
			}

			if ( ! empty( $args['interval'] ) && is_array( $args['interval'] ) && ( isset( $args['interval']['start_date'] ) || isset( $args['interval']['end_date'] ) ) ) {
				if ( ! empty( $args['interval']['start_date'] ) ) {
					$sql       .= ' AND i.dateadded >= %s';
					$sql_args[] = $args['interval']['start_date'];
				}

				if ( ! empty( $args['interval']['end_date'] ) ) {
					$sql       .= ' AND i.dateadded <= %s';
					$sql_args[] = $args['interval']['end_date'];
				}
			}

			if ( ! empty( $orderby ) ) {
				$order = ! empty( $order ) ? $order : 'DESC';
				$sql  .= ' ORDER BY ' . esc_sql( $orderby ) . ' ' . esc_sql( $order );
			}

			if ( ! empty( $limit ) && isset( $offset ) ) {
				$sql       .= ' LIMIT %d, %d';
				$sql_args[] = $offset;
				$sql_args[] = $limit;
			}

			$items = $wpdb->get_results( $wpdb->prepare( $sql, $sql_args ), ARRAY_A ); // phpcs:ignore WordPress.DB.PreparedSQL.NotPrepared

			return $items;
		}

		/**
		 * Counts total number of distinct products added to wishlist
		 *
		 * @param array $args Same parameters allowed for {@see query_products} method.
		 * @return int Count of items
		 */
		public function count_products( $args ) {
			return count( $this->query_products( $args ) );
		}

		/**
		 * Counts how many distinct users added a product in wishlist
		 *
		 * @param int        $product_id Product id.
		 * @param string|int $user User to use in query; it could be a user id, a session id or 'current' (for current user/session).
		 * @return int Count of times product was added to wishlist
		 */
		public function count_times_added( $product_id, $user = false ) {
			global $wpdb;

			$query_args     = array();
			$user_condition = '';

			if ( $user ) {
				if ( 'current' === $user ) {
					if ( is_user_logged_in() ) {
						$user_condition = ' AND l.`user_id` = %d';
						$query_args[]   = get_current_user_id();
					} elseif ( YITH_WCWL_Session()->has_session() ) {
						$user_condition = ' AND l.`session_id` = %s';
						$query_args[]   = YITH_WCWL_Session()->get_session_id();
					} else {
						return 0;
					}
				} elseif ( is_int( $user ) ) {
					$user_condition = ' AND l.`user_id` = %d';
					$query_args[]   = $user;
				} elseif ( is_string( $user ) ) {
					$user_condition = ' AND l.`session_id` = %s';
					$query_args[]   = $user;
				}
			}

			$query = "SELECT 
       				      COUNT( DISTINCT( v.`u_id` ) ) 
					  FROM ( 
					      SELECT 
					          ( CASE WHEN l.`user_id` IS NULL THEN l.`session_id` ELSE l.`user_id` END) AS u_id, 
					          l.`ID` as wishlist_id 
					      FROM {$wpdb->yith_wcwl_wishlists} AS l 
					      WHERE ( l.`expiration` > NOW() OR l.`expiration` IS NULL ) {$user_condition}
				      ) as v 
				      LEFT JOIN {$wpdb->yith_wcwl_items} AS i USING( wishlist_id ) 
					  WHERE i.`prod_id` = %d";

			$query_args[] = $product_id;

			$res = $wpdb->get_var( $wpdb->prepare( $query, $query_args ) ); // phpcs:ignore WordPress.DB.PreparedSQL.NotPrepared

			return (int) $res;
		}

		/**
		 * Raw update method; useful when it is needed to update a bunch of items
		 *
		 * @param array $columns Array of columns to update, in the following format: 'column_id' => 'column_type'.
		 * @param array $column_values Array of values to apply to the query; must have same number of elements of columns, and they must respect defined tpe.
		 * @param array $conditions Array of where conditions, in the following format: 'column_id' => 'columns_type'.
		 * @param array $conditions_values Array of values to apply to where condition; must have same number of elements of columns, and they must respect defined type.
		 * @param bool  $clear_caches Whether system should clear caches (this is optional since other methods may want to run more optimized clear).
		 *
		 * @return void
		 */
		public function update_raw( $columns, $column_values, $conditions = array(), $conditions_values = array(), $clear_caches = false ) {
			global $wpdb;

			// calculate where statement.
			$query_where = '';

			if ( ! empty( $conditions ) ) {
				$query_where = array();

				foreach ( $conditions as $column => $value ) {
					$query_where[] = $column . '=' . $value;
				}

				$query_where = ' WHERE ' . implode( ' AND ', $query_where );
			}

			// retrieves wishlists that will be affected by the changes.
			if ( $clear_caches ) {
				$query = "SELECT ID FROM {$wpdb->yith_wcwl_items} {$query_where}";
				$query = $conditions ? $wpdb->prepare( $query, $conditions_values ) : $query; // phpcs:ignore WordPress.DB.PreparedSQL.NotPrepared
				$ids   = $wpdb->get_col( $query ); // phpcs:ignore WordPress.DB.PreparedSQL.NotPrepared
			}

			// calculate set statement.
			$query_columns = array();

			foreach ( $columns as $column => $value ) {
				$query_columns[] = $column . '=' . $value;
			}

			$query_columns = implode( ', ', $query_columns );

			// build query, and execute it.
			$query  = "UPDATE {$wpdb->yith_wcwl_items} SET {$query_columns} {$query_where}";
			$values = $conditions ? array_merge( $column_values, $conditions_values ) : $column_values;

			$wpdb->query( $wpdb->prepare( $query, $values ) ); // phpcs:ignore WordPress.DB.PreparedSQL.NotPrepared

			// clear cache for updated items.
			if ( $clear_caches && $ids ) {
				foreach ( $ids as $id ) {
					$this->clear_cache( $id );
				}
			}
		}

		/**
		 * Clear meta cache.
		 *
		 * @param YITH_WCWL_Wishlist_Item|int $item Wishlist item object, or id of the item.
		 */
		public function clear_cache( &$item ) {
			if ( ! $item instanceof YITH_WCWL_Wishlist_Item ) {
				$item = YITH_WCWL_Wishlist_Factory::get_wishlist_item( $item );
			}

			wp_cache_delete( 'item-' . $item->get_id(), 'wishlist-items' );
			wp_cache_delete( 'wishlist-items-' . $item->get_wishlist_id(), 'wishlists' );
			wp_cache_delete( 'wishlist-items-' . $item->get_origin_wishlist_id(), 'wishlists' );
		}

		/* === MISC === */

		/**
		 * Here we collected all methods related to db implementation of the items
		 * They can be used without creating an instance of the Data Store, and are
		 * listed here just for
		 */

		/**
		 * Alter join section of the query, for ordering purpose
		 *
		 * @param string $join Join statement of the query.
		 * @return string
		 * @since 2.0.0
		 */
		public static function filter_join_for_wishlist_count( $join ) {
			global $wpdb;
			$join .= " LEFT JOIN ( SELECT COUNT(*) AS wishlist_count, prod_id FROM {$wpdb->yith_wcwl_items} GROUP BY prod_id ) AS i ON ID = i.prod_id";
			return $join;
		}

		/**
		 * Alter orderby section of the query, for ordering purpose
		 *
		 * @param string $orderby Orderby statement of the query.
		 * @return string
		 * @since 2.0.0
		 */
		public static function filter_orderby_for_wishlist_count( $orderby ) {
			$order   = isset( $_REQUEST['order'] ) ? sanitize_text_field( wp_unslash( $_REQUEST['order'] ) ) : 'ASC'; // phpcs:ignore WordPress.Security.NonceVerification.Recommended
			$orderby = 'i.wishlist_count ' . $order;

			return $orderby;
		}
	}
}

// phpcs:enable WordPress.DB.DirectDatabaseQuery.DirectQuery, WordPress.DB.DirectDatabaseQuery.NoCaching
PK`x1\���ҋҋ<includes/data-stores/class-yith-wcwl-wishlist-data-store.phpnu�[���<?php
/**
 * Wishlist data store
 *
 * @author YITH
 * @package YITH\Wishlist\Classes\DataStores
 * @version 3.0.0
 */

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

// phpcs:disable WordPress.DB.DirectDatabaseQuery.DirectQuery, WordPress.DB.DirectDatabaseQuery.NoCaching

if ( ! class_exists( 'YITH_WCWL_Wishlist_Data_Store' ) ) {
	/**
	 * This class implements CRUD methods for wishlists
	 *
	 * @since 3.0.0
	 */
	class YITH_WCWL_Wishlist_Data_Store {

		/**
		 * Create a new wishlist and stores it on DB
		 *
		 * @param \YITH_WCWL_Wishlist $wishlist Wishlist to create.
		 */
		public function create( &$wishlist ) {
			global $wpdb;

			// set token if missing.
			if ( ! $wishlist->get_token() ) {
				$wishlist->set_token( $this->generate_token() );
			}

			// set slug if missing.
			$wishlist_slug = $wishlist->get_slug();

			if ( ! $wishlist_slug ) {
				$wishlist_slug = sanitize_title_with_dashes( $wishlist->get_name() );
				$wishlist->set_slug( $wishlist_slug );
			}

			// set date added if missing.
			if ( ! $wishlist->get_date_added() ) {
				$wishlist->set_date_added( gmdate( 'Y-m-d H:i:s' ) );
			}

			// set default, if needed.
			if ( $this->should_be_default() ) {
				$wishlist->set_is_default( 1 );
			}

			// set always at least an owner.
			if ( ! $wishlist->get_session_id() && ! $wishlist->get_user_id() ) {
				if ( is_user_logged_in() ) {
					$user_id = get_current_user_id();
					$wishlist->set_user_id( apply_filters( 'yith_wcwl_add_wishlist_user_id', $user_id ) );
				} else {
					$session_id = YITH_WCWL_Session()->get_session_id();
					$wishlist->set_session_id( apply_filters( 'yith_wcwl_add_wishlist_session_id', $session_id ) );
				}
			}

			// avoid slug duplicate, adding -n to the end of the string.
			$wishlist->set_slug( $this->generate_slug( $wishlist_slug ) );

			$columns = array(
				'wishlist_privacy' => '%d',
				'wishlist_name'    => '%s',
				'wishlist_slug'    => '%s',
				'wishlist_token'   => '%s',
				'is_default'       => '%d',
			);
			$values  = array(
				apply_filters( 'yith_wcwl_add_wishlist_privacy', $wishlist->get_privacy() ),
				apply_filters( 'yith_wcwl_add_wishlist_name', $wishlist->get_name() ),
				apply_filters( 'yith_wcwl_add_wishlist_slug', $wishlist->get_slug() ),
				apply_filters( 'yith_wcwl_add_wishlist_token', $wishlist->get_token() ),
				apply_filters( 'yith_wcwl_add_wishlist_is_default', $wishlist->get_is_default() ),
			);

			$session_id = $wishlist->get_session_id();

			if ( $session_id ) {
				$columns['session_id'] = '%s';
				$values[]              = apply_filters( 'yith_wcwl_add_wishlist_session_id', $session_id );
			}

			$user_id = $wishlist->get_user_id();

			if ( $user_id ) {
				$columns['user_id'] = '%d';
				$values[]           = apply_filters( 'yith_wcwl_add_wishlist_user_id', $user_id );
			}

			$date_added = $wishlist->get_date_added( 'edit' );

			if ( $date_added ) {
				$columns['dateadded'] = 'FROM_UNIXTIME( %d )';
				$values[]             = apply_filters( 'yith_wcwl_add_wishlist_date_added', $date_added->getTimestamp() );
			}

			$expiration = $wishlist->get_expiration( 'edit' );

			if ( $expiration ) {
				$columns['expiration'] = 'FROM_UNIXTIME( %d )';
				$values[]              = apply_filters( 'yith_wcwl_add_wishlist_expiration', $expiration->getTimestamp() );
			}

			// if session wishlist, set always an expiration.
			$session_expiration = YITH_WCWL_Session()->get_session_expiration();

			if ( isset( $columns['session_id'] ) && ! $expiration && $session_expiration ) {
				$columns['expiration'] = 'FROM_UNIXTIME( %d )';
				$values[]              = apply_filters( 'yith_wcwl_add_wishlist_expiration', $session_expiration );
			}

			$query_columns = implode( ', ', array_map( 'esc_sql', array_keys( $columns ) ) );
			$query_values  = implode( ', ', array_values( $columns ) );
			$query         = "INSERT INTO {$wpdb->yith_wcwl_wishlists} ( {$query_columns} ) VALUES ( {$query_values} ) ";

			$res = $wpdb->query( $wpdb->prepare( $query, $values ) ); // phpcs:ignore WordPress.DB.PreparedSQL.NotPrepared

			if ( $res ) {
				$id = apply_filters( 'yith_wcwl_wishlist_correctly_created', intval( $wpdb->insert_id ) );

				$wishlist->set_id( $id );
				$wishlist->apply_changes();
				$this->clear_caches( $wishlist );

				do_action( 'yith_wcwl_new_wishlist', $wishlist->get_id(), $wishlist );
			}
		}

		/**
		 * Read data from DB for a specific wishlist
		 *
		 * @param \YITH_WCWL_Wishlist $wishlist Wishlist object.
		 * @throws Exception When cannot retrieve specified wishlist.
		 */
		public function read( &$wishlist ) {
			global $wpdb;

			$wishlist->set_defaults();

			$id    = $wishlist->get_id();
			$token = $wishlist->get_token();

			if ( ! $id && ! $token ) {
				throw new Exception( __( 'Invalid wishlist.', 'yith-woocommerce-wishlist' ) );
			}

			$wishlist_data = $wishlist->get_id() ? wp_cache_get( 'wishlist-id-' . $wishlist->get_id(), 'wishlists' ) : wp_cache_get( 'wishlist-token-' . $wishlist->get_token(), 'wishlists' );

			if ( ! $wishlist_data ) {
				// format query to retrieve wishlist.
				$query = false;
				if ( $id ) {
					$query = $wpdb->prepare( "SELECT * FROM {$wpdb->yith_wcwl_wishlists} WHERE ID = %d", $id );
				} elseif ( $token ) {
					$query = $wpdb->prepare( "SELECT * FROM {$wpdb->yith_wcwl_wishlists} WHERE wishlist_token = %s", $token );
				}

				// retrieve wishlist data.
				$wishlist_data = $wpdb->get_row( $query ); // phpcs:ignore WordPress.DB.PreparedSQL.NotPrepared

				wp_cache_set( 'wishlist-id-' . $wishlist->get_id(), $wishlist_data, 'wishlists' );
				wp_cache_set( 'wishlist-token-' . $wishlist->get_token(), $wishlist_data, 'wishlists' );
			}

			if ( ! $wishlist_data ) {
				throw new Exception( __( 'Invalid wishlist.', 'yith-woocommerce-wishlist' ) );
			}

			// set wishlist props.
			$wishlist->set_props(
				array(
					'id'         => $wishlist_data->ID,
					'privacy'    => $wishlist_data->wishlist_privacy,
					'user_id'    => $wishlist_data->user_id,
					'session_id' => isset( $wishlist_data->session_id ) ? $wishlist_data->session_id : '',
					'name'       => wc_clean( stripslashes( $wishlist_data->wishlist_name ) ),
					'slug'       => $wishlist_data->wishlist_slug,
					'token'      => $wishlist_data->wishlist_token,
					'is_default' => $wishlist_data->is_default,
					'date_added' => $wishlist_data->dateadded,
					'expiration' => isset( $wishlist_data->expiration ) ? $wishlist_data->expiration : '',
				)
			);
			$wishlist->set_object_read( true );
		}

		/**
		 * Update wishlist data on DB
		 *
		 * @param \YITH_WCWL_Wishlist $wishlist Wishlist to save on db, with $changes property.
		 */
		public function update( &$wishlist ) {
			global $wpdb;

			if ( ! $wishlist->get_id() ) {
				return;
			}

			$data    = $wishlist->get_data();
			$changes = $wishlist->get_changes();

			if ( array_intersect( array( 'user_id', 'session_id', 'slug', 'name', 'token', 'privacy', 'expiration', 'date_added', 'is_default' ), array_keys( $changes ) ) ) {
				$columns = array(
					'wishlist_privacy' => '%d',
					'wishlist_name'    => '%s',
					'wishlist_token'   => '%s',
					'is_default'       => '%d',
					'dateadded'        => 'FROM_UNIXTIME( %d )',
				);
				$values  = array(
					$wishlist->get_privacy(),
					$wishlist->get_name(),
					$wishlist->get_token(),
					$wishlist->get_is_default(),
					$wishlist->get_date_added( 'edit' ) ? $wishlist->get_date_added( 'edit' )->getTimestamp() : time(),
				);

				$session_id = $wishlist->get_session_id();

				if ( $session_id ) {
					$columns['session_id'] = '%s';
					$values[]              = apply_filters( 'yith_wcwl_update_wishlist_session_id', $session_id );
				} else {
					$columns['session_id'] = 'NULL';
				}

				$user_id = $wishlist->get_user_id();

				if ( $user_id ) {
					$columns['user_id'] = '%d';
					$values[]           = apply_filters( 'yith_wcwl_update_wishlist_user_id', $user_id );
				} else {
					$columns['user_id'] = 'NULL';
				}

				$expiration = $wishlist->get_expiration( 'edit' );

				if ( $expiration ) {
					$columns['expiration'] = 'FROM_UNIXTIME( %d )';
					$values[]              = apply_filters( 'yith_wcwl_update_wishlist_expiration', $expiration->getTimestamp() );
				} else {
					$columns['expiration'] = 'NULL';
				}

				$wishlist_slug = $wishlist->get_slug();

				if ( isset( $changes['slug'] ) && $wishlist_slug !== $data['slug'] ) {
					$columns['wishlist_slug'] = '%s';
					$values[]                 = $this->generate_slug( $wishlist_slug );
				}

				$this->update_raw( $columns, $values, array( 'ID' => '%d' ), array( $wishlist->get_id() ) );
			}

			$wishlist->apply_changes();
			$this->clear_caches( $wishlist );

			do_action( 'yith_wcwl_update_wishlist', $wishlist->get_id(), $wishlist );
		}

		/**
		 * Delete a wishlist from DB
		 *
		 * @param \YITH_WCWL_Wishlist $wishlist Wishlist to delete.
		 */
		public function delete( &$wishlist ) {
			global $wpdb;

			$id         = $wishlist->get_id();
			$is_default = $wishlist->is_default();
			$user_id    = $wishlist->get_user_id();
			$session_id = $wishlist->get_session_id();

			if ( ! $id ) {
				return;
			}

			do_action( 'yith_wcwl_before_delete_wishlist', $wishlist->get_id() );

			$this->clear_caches( $wishlist );

			// delete wishlist and all its items.
			$wpdb->delete( $wpdb->yith_wcwl_items, array( 'wishlist_id' => $id ) );
			$wpdb->delete( $wpdb->yith_wcwl_wishlists, array( 'ID' => $id ) );

			do_action( 'yith_wcwl_delete_wishlist', $wishlist->get_id() );

			$wishlist->set_id( 0 );

			do_action( 'yith_wcwl_deleted_wishlist', $id );

			if ( $is_default && ( $user_id || $session_id ) ) {
				// retrieve other lists for the same user.
				$other_lists = $this->query(
					array_merge(
						array(
							'orderby' => 'dateadded',
							'order'   => 'asc',
						),
						$user_id ? array( 'user_id' => $user_id ) : array(),
						$session_id ? array( 'session_id' => $session_id ) : array()
					)
				);

				if ( ! empty( $other_lists ) ) {
					$new_default = $other_lists[0];

					$new_default->set_is_default( 1 );
					$new_default->save();
				}
			}
		}

		/**
		 * Delete expired session wishlist from DB
		 *
		 * @return void
		 */
		public function delete_expired() {
			global $wpdb;

			$wpdb->query( "DELETE FROM {$wpdb->yith_wcwl_items} WHERE wishlist_id IN ( SELECT ID FROM {$wpdb->yith_wcwl_wishlists} WHERE expiration < NOW() and user_id IS NULL )" );
			$wpdb->query( "DELETE FROM {$wpdb->yith_wcwl_wishlists} WHERE expiration < NOW() and user_id IS NULL" );
		}

		/**
		 * Query database to search
		 *
		 * @param array $args Array of parameters used for the query:<br/>
		 * [<br/>
		 *   'id'                   // Wishlist id<br/>
		 *   'user_id'              // User id<br/>
		 *   'session_id'           // Session id<br/>
		 *   'wishlist_slug'        // Wishlist slug, exact match<br/>
		 *   'wishlist_name'        // Wishlist name, like<br/>
		 *   'wishlist_token'       // Wishlist token, exact match<br/>
		 *   'wishlist_visibility'  // all, visible, public, shared, private<br/>
		 *   'user_search'          // String to search within user fields<br/>
		 *   's'                    // String to search within wishlist fields<br/>
		 *   'is_default'           // Whether searched wishlist is default<br/>
		 *   'orderby'              // Any of the table columns<br/>
		 *   'order'                // ASC, DESC<br/>
		 *   'limit'                // Limit of items to retrieve<br/>
		 *   'offset'               // Offset of items to retrieve<br/>
		 *   'show_empty'           // Whether to show empty wishlists<br/>
		 * ].
		 *
		 * @return \YITH_WCWL_Wishlist[] Array of matched wishlists.
		 */
		public function query( $args = array() ) {
			global $wpdb;

			$default = array(
				'id'                  => false,
				'user_id'             => ( is_user_logged_in() ) ? get_current_user_id() : false,
				'session_id'          => ( ! is_user_logged_in() ) ? YITH_WCWL_Session()->maybe_get_session_id() : false,
				'wishlist_slug'       => false,
				'wishlist_name'       => false,
				'wishlist_token'      => false,
				'wishlist_visibility' => apply_filters( 'yith_wcwl_wishlist_visibility_string_value', 'all' ), // all | visible | public | shared | private.
				'user_search'         => false,
				's'                   => false,
				'is_default'          => false,
				'orderby'             => '',
				'order'               => 'DESC',
				'limit'               => false,
				'offset'              => 0,
				'show_empty'          => true,
			);

			// if there is no current wishlist, and user was asking for current one, short-circuit query, as pointless.
			if ( ! is_user_logged_in() && ! YITH_WCWL_Session()->has_session() && ! isset( $args['user_id'] ) && ! isset( $args['session_id'] ) ) {
				return array();
			}

			$args = wp_parse_args( $args, $default );
			extract( $args ); // phpcs:ignore WordPress.PHP.DontExtract

			$sql  = 'SELECT SQL_CALC_FOUND_ROWS l.ID';
			$sql .= " FROM `{$wpdb->yith_wcwl_wishlists}` AS l";

			if ( ! empty( $user_search ) || ! empty( $s ) || ( ! empty( $orderby ) && 'user_login' === $orderby ) ) {
				$sql .= " LEFT JOIN `{$wpdb->users}` AS u ON l.`user_id` = u.ID";
			}

			if ( ! empty( $user_search ) || ! empty( $s ) ) {
				$sql .= " LEFT JOIN `{$wpdb->usermeta}` AS umn ON umn.`user_id` = u.`ID`";
				$sql .= " LEFT JOIN `{$wpdb->usermeta}` AS ums ON ums.`user_id` = u.`ID`";
			}

			$sql     .= ' WHERE 1';
			$sql_args = array();

			if ( ! empty( $user_id ) ) {
				$sql .= ' AND l.`user_id` = %d';

				$sql_args[] = $user_id;
			}

			if ( ! empty( $session_id ) ) {
				$sql .= ' AND l.`session_id` = %s AND l.`expiration` > NOW()';

				$sql_args[] = $session_id;
			}

			if ( ! empty( $user_search ) && empty( $s ) ) {
				$sql .= ' AND (
							umn.`meta_key` = %s AND
							ums.`meta_key` = %s AND
							(
								u.`user_email` LIKE %s OR
								umn.`meta_value` LIKE %s OR
								ums.`meta_value` LIKE %s
							)
						)';

				$search_value = '%' . esc_sql( $user_search ) . '%';

				$sql_args[] = 'first_name';
				$sql_args[] = 'last_name';
				$sql_args[] = $search_value;
				$sql_args[] = $search_value;
				$sql_args[] = $search_value;
			}

			if ( ! empty( $s ) ) {
				$sql .= ' AND ( 
							( 
								umn.`meta_key` = %s AND 
								ums.`meta_key` = %s AND 
								( 
									u.`user_email` LIKE %s OR
									u.`user_login` LIKE %s OR
									umn.`meta_value` LIKE %s OR
									ums.`meta_value` LIKE %s
								) 
							) OR 
							l.wishlist_name LIKE %s OR 
							l.wishlist_slug LIKE %s OR 
							l.wishlist_token LIKE %s 
						)';

				$search_value = '%' . esc_sql( $s ) . '%';

				$sql_args[] = 'first_name';
				$sql_args[] = 'last_name';
				$sql_args[] = $search_value;
				$sql_args[] = $search_value;
				$sql_args[] = $search_value;
				$sql_args[] = $search_value;
				$sql_args[] = $search_value;
				$sql_args[] = $search_value;
				$sql_args[] = $search_value;
			}

			if ( ! empty( $is_default ) ) {
				$sql       .= ' AND l.`is_default` = %d';
				$sql_args[] = $is_default;
			}

			if ( ! empty( $id ) ) {
				$sql       .= ' AND l.`ID` = %d';
				$sql_args[] = $id;
			}

			if ( isset( $wishlist_slug ) && false !== $wishlist_slug ) {
				$sql       .= ' AND l.`wishlist_slug` = %s';
				$sql_args[] = sanitize_title_with_dashes( $wishlist_slug );
			}

			if ( ! empty( $wishlist_token ) ) {
				$sql       .= ' AND l.`wishlist_token` = %s';
				$sql_args[] = $wishlist_token;
			}

			if ( ! empty( $wishlist_name ) ) {
				$sql       .= ' AND l.`wishlist_name` LIKE %s';
				$sql_args[] = '%' . esc_sql( $wishlist_name ) . '%';
			}

			if ( isset( $wishlist_visibility ) && 'all' !== $wishlist_visibility ) {
				if ( ! is_int( $wishlist_visibility ) ) {
					$wishlist_visibility = yith_wcwl_get_privacy_value( $wishlist_visibility );
				}

				$sql       .= ' AND l.`wishlist_privacy` = %d';
				$sql_args[] = $wishlist_visibility;
			}

			if ( empty( $show_empty ) ) {
				$sql .= " AND l.`ID` IN ( SELECT wishlist_id FROM {$wpdb->yith_wcwl_items} )";
			}

			$sql .= ' GROUP BY l.ID';
			$sql .= ' ORDER BY';

			if ( ! empty( $orderby ) && isset( $order ) ) {
				$sql .= ' ' . esc_sql( $orderby ) . ' ' . esc_sql( $order ) . ', ';
			}

			$sql .= ' is_default DESC';

			if ( ! empty( $limit ) && isset( $offset ) ) {
				$sql       .= ' LIMIT %d, %d';
				$sql_args[] = $offset;
				$sql_args[] = $limit;
			}

			if ( ! empty( $sql_args ) ) {
				$sql = $wpdb->prepare( $sql, $sql_args ); // phpcs:ignore WordPress.DB.PreparedSQL.NotPrepared
			}

			$lists = $wpdb->get_col( $sql ); // phpcs:ignore WordPress.DB.PreparedSQL.NotPrepared

			if ( ! empty( $lists ) ) {
				$lists = array_map( array( 'YITH_WCWL_Wishlist_Factory', 'get_wishlist' ), $lists );
			} else {
				$lists = array();
			}

			return apply_filters( 'yith_wcwl_get_wishlists', $lists, $args );
		}

		/**
		 * Counts items that matches
		 *
		 * @param array $args Same parameters allowed for {@see query} method.
		 * @return int Count of items
		 */
		public function count( $args = array() ) {
			// retrieve number of items found.
			return count( $this->query( $args ) );
		}

		/**
		 * Search user ids whose wishlists match passed parameters
		 * NOTE: this will only retrieve wishlists for a logged in user, while guests wishlist will be ignored
		 *
		 * @param mixed $args Array of valid arguments<br/>
		 * [<br/>
		 *     'search' // String to match against first name / last name / user login or user email of wishlist owner<br/>
		 *     'limit'  // Pagination param: number of items to show in one page. 0 to show all items<br/>
		 *     'offset' // Pagination param: offset for the current set. 0 to start from the first item<br/>
		 * ].
		 * @return int[] Array of user ids
		 */
		public function search_users( $args = array() ) {
			global $wpdb;

			$default = array(
				'search' => false,
				'limit'  => false,
				'offset' => 0,
			);

			$args = wp_parse_args( $args, $default );
			extract( $args ); // phpcs:ignore WordPress.PHP.DontExtract

			$sql = "SELECT DISTINCT i.user_id
                    FROM {$wpdb->yith_wcwl_items} AS i
                    LEFT JOIN {$wpdb->yith_wcwl_wishlists} AS l ON i.wishlist_id = l.ID";

			if ( ! empty( $search ) ) {
				$sql .= " LEFT JOIN `{$wpdb->users}` AS u ON l.`user_id` = u.ID";
				$sql .= " LEFT JOIN `{$wpdb->usermeta}` AS umn ON umn.`user_id` = u.`ID`";
				$sql .= " LEFT JOIN `{$wpdb->usermeta}` AS ums ON ums.`user_id` = u.`ID`";
			}

			$sql     .= ' WHERE l.wishlist_privacy = %d';
			$sql_args = array( 0 );

			if ( ! empty( $search ) ) {
				$sql .= ' AND ( 
							umn.`meta_key` = %s AND 
							ums.`meta_key` = %s AND 
							( 
								u.`user_email` LIKE %s OR 
								u.`user_login` LIKE %s OR 
								umn.`meta_value` LIKE %s OR 
								ums.`meta_value` LIKE %s
							)
						)';

				$search_string = '%' . esc_sql( $search ) . '%';

				$sql_args[] = 'first_name';
				$sql_args[] = 'last_name';
				$sql_args[] = $search_string;
				$sql_args[] = $search_string;
				$sql_args[] = $search_string;
				$sql_args[] = $search_string;
			}

			if ( ! empty( $limit ) && isset( $offset ) ) {
				$sql .= " LIMIT {$offset}, {$limit}";
			}

			$res = $wpdb->get_col( $wpdb->prepare( $sql, $sql_args ) ); // phpcs:ignore WordPress.DB.PreparedSQL.NotPrepared
			return $res;
		}

		/**
		 * Raw update method; useful when it is needed to update a bunch of wishlists
		 *
		 * @param array $columns Array of columns to update, in the following format: 'column_id' => 'column_type'.
		 * @param array $column_values Array of values to apply to the query; must have same number of elements of columns, and they must respect defined tpe.
		 * @param array $conditions Array of where conditions, in the following format: 'column_id' => 'columns_type'.
		 * @param array $conditions_values Array of values to apply to where condition; must have same number of elements of columns, and they must respect defined tpe.
		 * @param bool  $clear_caches Whether to clear stored value before operation or not.
		 * @pram $clear_caches bool Whether system should clear caches (this is optional since other methods may want to run more optimized clear)
		 *
		 * @return void
		 */
		public function update_raw( $columns, $column_values, $conditions = array(), $conditions_values = array(), $clear_caches = false ) {
			global $wpdb;

			// calculate where statement.
			$query_where = '';

			if ( ! empty( $conditions ) ) {
				$query_where = array();

				foreach ( $conditions as $column => $value ) {
					$query_where[] = $column . '=' . $value;
				}

				$query_where = ' WHERE ' . implode( ' AND ', $query_where );
			}

			// retrieves wishlists that will be affected by the changes.
			if ( $clear_caches ) {
				$query = "SELECT ID FROM {$wpdb->yith_wcwl_wishlists} {$query_where}";
				$query = $conditions ? $wpdb->prepare( $query, $conditions_values ) : $query; // phpcs:ignore WordPress.DB.PreparedSQL.NotPrepared
				$ids   = $wpdb->get_col( $query ); // phpcs:ignore WordPress.DB.PreparedSQL.NotPrepared
			}

			// calculate set statement.
			$query_columns = array();

			foreach ( $columns as $column => $value ) {
				$query_columns[] = $column . '=' . $value;
			}

			$query_columns = implode( ', ', $query_columns );

			// build query, and execute it.
			$query  = "UPDATE {$wpdb->yith_wcwl_wishlists} SET {$query_columns} {$query_where}";
			$values = $conditions ? array_merge( $column_values, $conditions_values ) : $column_values;

			$wpdb->query( $wpdb->prepare( $query, $values ) ); // phpcs:ignore WordPress.DB.PreparedSQL.NotPrepared

			// clear cache for updated items.
			if ( $clear_caches && $ids ) {
				foreach ( $ids as $id ) {
					$this->clear_caches( $id );
				}
			}
		}

		/**
		 * Retrieve all items for the wishlist
		 *
		 * @param \YITH_WCWL_Wishlist $wishlist Wishlist object.
		 * @return \YITH_WCWL_Wishlist_Item[] Array or Wishlist items for the wishlist
		 */
		public function read_items( $wishlist ) {
			global $wpdb;

			// Get from cache if available.
			$items = 0 < $wishlist->get_id() ? wp_cache_get( 'wishlist-items-' . $wishlist->get_id(), 'wishlists' ) : false;

			if ( false === $items ) {
				$query = "SELECT i.* FROM {$wpdb->yith_wcwl_items} as i INNER JOIN {$wpdb->posts} as p on i.prod_id = p.ID WHERE wishlist_id = %d AND p.post_type IN ( %s, %s ) AND p.post_status = %s";

				// remove hidden products from result.
				$hidden_products = yith_wcwl_get_hidden_products();

				if ( ! empty( $hidden_products ) && apply_filters( 'yith_wcwl_remove_hidden_products_via_query', true ) ) {
					$query .= ' AND prod_id NOT IN ( ' . implode( ', ', array_filter( $hidden_products, 'esc_sql' ) ) . ' )';
				}

				// order by statement.
				$query .= ' ORDER BY position ASC, ID DESC;';

				$items = $wpdb->get_results(
					$wpdb->prepare(
						$query, // phpcs:ignore WordPress.DB.PreparedSQL.NotPrepared
						array(
							$wishlist->get_id(),
							'product',
							'product_variation',
							'publish',
						)
					)
				);

				/**
				 * This filter was added to allow developer remove hidden products using a foreach loop, instead of the query
				 * It is required when the store contains a huge number of hidden products, and the resulting query would fail
				 * to be submitted to DBMS because of its size
				 *
				 * This code requires reasonable amount of products in the wishlist
				 * A great number of products retrieved from the main query could easily degrade performance of the overall system
				 *
				 * @since 3.0.7
				 */
				if ( ! empty( $hidden_products ) && ! empty( $items ) && ! apply_filters( 'yith_wcwl_remove_hidden_products_via_query', true ) ) {
					foreach ( $items as $item_id => $item ) {
						if ( ! in_array( $item->prod_id, $hidden_products, true ) ) {
							continue;
						}

						unset( $items[ $item_id ] );
					}
				}

				foreach ( $items as $item ) {
					wp_cache_set( 'item-' . $item->ID, $item, 'wishlist-items' );
				}

				if ( 0 < $wishlist->get_id() ) {
					wp_cache_set( 'wishlist-items-' . $wishlist->get_id(), $items, 'wishlists' );
				}
			}

			if ( ! empty( $items ) ) {
				$items = array_map( array( 'YITH_WCWL_Wishlist_Factory', 'get_wishlist_item' ), array_combine( wp_list_pluck( $items, 'prod_id' ), $items ) );
			} else {
				$items = array();
			}

			return apply_filters( 'yith_wcwl_get_products', $items, array( 'wishlist_id' => $wishlist->get_id() ) );
		}

		/**
		 * Delete all items from the wishist
		 *
		 * @param \YITH_WCWL_Wishlist $wishlist Wishlist object.
		 * @return void
		 */
		public function delete_items( $wishlist ) {
			global $wpdb;

			$wpdb->query( $wpdb->prepare( "DELETE FROM {$wpdb->yith_wcwl_items} WHERE wishlist_id = %d", $wishlist->get_id() ) );

			$this->clear_caches( $wishlist );
		}

		/**
		 * Generate default token for the wishlist
		 *
		 * @return string Wishlist token
		 */
		public function generate_token() {
			global $wpdb;

			$sql = "SELECT COUNT(*) FROM `{$wpdb->yith_wcwl_wishlists}` WHERE `wishlist_token` = %s";

			do {
				$dictionary = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789';
				$nchars     = 12;
				$token      = '';

				for ( $i = 0; $i <= $nchars - 1; $i++ ) {
					$token .= $dictionary[ wp_rand( 0, strlen( $dictionary ) - 1 ) ];
				}

				$count = $wpdb->get_var( $wpdb->prepare( $sql, $token ) ); // phpcs:ignore WordPress.DB.PreparedSQL.NotPrepared
			} while ( $count );

			return $token;
		}

		/**
		 * When a session is finalized, all session wishlists will be converted to user wishlists
		 * This method takes also care of allowing just one default per time after finalization
		 *
		 * @param string $session_id Session id.
		 * @param int    $user_id User id.
		 *
		 * @return void
		 */
		public function assign_to_user( $session_id, $user_id ) {
			global $wpdb;

			// update any item that is assigned to the list.
			$items = $wpdb->get_col( $wpdb->prepare( "SELECT i.ID FROM {$wpdb->yith_wcwl_items} AS i LEFT JOIN {$wpdb->yith_wcwl_wishlists} AS l ON l.ID = i.wishlist_id WHERE l.session_id = %s", $session_id ) );

			if ( ! empty( $items ) ) {
				$items_string = implode( ',', array_map( 'esc_sql', $items ) );
				$wpdb->query( $wpdb->prepare( "UPDATE {$wpdb->yith_wcwl_items} SET user_id = %d WHERE ID IN ({$items_string})", $user_id ) ); // phpcs:ignore WordPress.DB.PreparedSQL.InterpolatedNotPrepared
			}

			// set user id for any session wishlist, and remove session data.
			$this->update_raw(
				array(
					'session_id' => 'NULL',
					'expiration' => 'NULL',
					'user_id'    => '%d',
				),
				array( $user_id ),
				array( 'session_id' => '%s' ),
				array( $session_id )
			);

			// retrieves default wishlist ids.
			$default_ids = $wpdb->get_col( $wpdb->prepare( "SELECT ID FROM {$wpdb->yith_wcwl_wishlists} WHERE is_default = %d AND user_id = %d ORDER BY dateadded ASC", 1, $user_id ) );

			// if we find more than one default list, fix data in db.
			if ( count( $default_ids ) > 1 ) {

				// search for master default wishlist.
				$master_default_wishlist = array_shift( $default_ids );
				$where_statement         = implode( ', ', array_map( 'esc_sql', $default_ids ) );

				try {
					if ( apply_filters( 'yith_wcwl_merge_default_wishlists', true ) ) {
						// by default we merge all default wishlists into oldest one (master default wishlist).

						// change wishlist id to master default id.
						$wpdb->query( $wpdb->prepare( "UPDATE {$wpdb->yith_wcwl_items} SET wishlist_id = %d WHERE wishlist_id IN ({$where_statement})", $master_default_wishlist ) ); // phpcs:ignore WordPress.DB.PreparedSQL.InterpolatedNotPrepared

						// delete slave default wishlists.
						$wpdb->query( "DELETE FROM {$wpdb->yith_wcwl_wishlists} WHERE ID IN ({$where_statement})" ); // phpcs:ignore WordPress.DB.PreparedSQL.InterpolatedNotPrepared
					} else {
						// otherwise, we just leave all the wishlists as they are, but we remove default flag from latest.

						// remove default flag.
						$wpdb->query( $wpdb->prepare( "UPDATE {$wpdb->yith_wcwl_wishlists} SET is_default = %d WHERE ID IN ({$where_statement})", 0 ) ); // phpcs:ignore WordPress.DB.PreparedSQL.InterpolatedNotPrepared

						// set name where it is missing.
						$default_title = apply_filters( 'yith_wcwl_default_wishlist_formatted_title', get_option( 'yith_wcwl_wishlist_title' ) );
						$wpdb->query( $wpdb->prepare( "UPDATE {$wpdb->yith_wcwl_wishlists} SET wishlist_name = %s WHERE ID IN ({$where_statement}) AND wishlist_name = ''", $default_title ) ); // phpcs:ignore WordPress.DB.PreparedSQL.InterpolatedNotPrepared
					}
				} catch ( Exception $e ) {
					return;
				}
			}
		}

		/**
		 * Retrieve default wishlist for current user/session; if none is found, generate it
		 *
		 * @param string|int|bool $id       Pass this param when you want to retrieve a wishlist for a specific user/session.
		 * @param string          $context  Context; when on edit context, wishlist will be created, if not exists.
		 * @return \YITH_WCWL_Wishlist|bool Default wishlist for current user/session, or false on failure
		 */
		public function get_default_wishlist( $id = false, $context = 'read' ) {
			global $wpdb;

			$wishlist_id = false;
			$cache_key   = false;

			$user_id    = get_current_user_id();
			$session_id = YITH_WCWL_Session()->maybe_get_session_id();

			if ( ! empty( $id ) && is_int( $id ) ) {
				$cache_key   = 'wishlist-default-' . $id;
				$wishlist_id = wp_cache_get( $cache_key, 'wishlists' );
				$wishlist_id = false !== $wishlist_id ? $wishlist_id : $wpdb->get_var( $wpdb->prepare( "SELECT ID FROM {$wpdb->yith_wcwl_wishlists} WHERE user_id = %d AND is_default = 1", $id ) );
			} elseif ( ! empty( $id ) && is_string( $id ) ) {
				$cache_key   = 'wishlist-default-' . $id;
				$wishlist_id = wp_cache_get( $cache_key, 'wishlists' );
				$wishlist_id = false !== $wishlist_id ? $wishlist_id : $wpdb->get_var( $wpdb->prepare( "SELECT ID FROM {$wpdb->yith_wcwl_wishlists} WHERE session_id = %s AND expiration > NOW() AND is_default = 1", $id ) );
			} elseif ( $user_id ) {
				$cache_key   = 'wishlist-default-' . $user_id;
				$wishlist_id = wp_cache_get( $cache_key, 'wishlists' );
				$wishlist_id = false !== $wishlist_id ? $wishlist_id : $wpdb->get_var( $wpdb->prepare( "SELECT ID FROM {$wpdb->yith_wcwl_wishlists} WHERE user_id = %d AND is_default = 1", $user_id ) );
			} elseif ( $session_id ) {
				$cache_key   = 'wishlist-default-' . $session_id;
				$wishlist_id = wp_cache_get( $cache_key, 'wishlists' );
				$wishlist_id = false !== $wishlist_id ? $wishlist_id : $wpdb->get_var( $wpdb->prepare( "SELECT ID FROM {$wpdb->yith_wcwl_wishlists} WHERE session_id = %s AND expiration > NOW() AND is_default = 1", $session_id ) );
			}

			if ( $wishlist_id ) {
				if ( $cache_key ) {
					wp_cache_set( $cache_key, $wishlist_id, 'wishlists' );
				}

				return YITH_WCWL_Wishlist_Factory::get_wishlist( $wishlist_id );
			} elseif ( 'edit' === $context ) {
				$wishlist = $this->generate_default_wishlist( $id );

				if ( $cache_key ) {
					wp_cache_set( $cache_key, $wishlist->get_id(), 'wishlists' );
				}

				return $wishlist;
			} else {
				/**
				 * If no default wishlist was found, register null as cache value
				 * This will be used until someone tries to edit the list (entering previous elseif),
				 * causing a new default wishlist to be automatically generated and stored in cache, replacing null
				 *
				 * @since 3.0.6
				 */
				if ( $cache_key ) {
					wp_cache_set( $cache_key, null, 'wishlists' );
				}

				return false;
			}
		}

		/**
		 * Generate a new default wishlist
		 *
		 * @param string|int|bool $id Pass this param when you want to create a wishlist for a specific user/session.
		 * @return YITH_WCWL_Wishlist|bool Brand new default wishlist, or false on failure
		 */
		public function generate_default_wishlist( $id ) {
			try {
				$default_wishlist = new YITH_WCWL_Wishlist();

				if ( ! empty( $id ) && is_int( $id ) ) {
					$default_wishlist->set_user_id( $id );
				} elseif ( ! empty( $id ) && is_string( $id ) ) {
					$default_wishlist->set_session_id( $id );
				}

				$default_wishlist->save();

				/**
				 * Let developers perform processing when default wishlist is created
				 *
				 * @since 3.0.10
				 */
				do_action( 'yith_wcwl_generated_default_wishlist', $default_wishlist, $id );
			} catch ( Exception $e ) {
				return false;
			}

			return $default_wishlist;
		}

		/**
		 * Generate unique slug for the wishlisst
		 *
		 * @param string $slug Original slug assigned to the wishlist (it cuold be custom assigned, or generated from the title).
		 * @return string Unique slug, derived from original one adding ordinal number when necessary
		 */
		public function generate_slug( $slug ) {
			if ( empty( $slug ) ) {
				return '';
			}

			while ( $this->slug_exists( $slug ) ) {
				$match = array();

				if ( ! preg_match( '/([a-z-]+)-([0-9]+)/', $slug, $match ) ) {
					$i = 2;
				} else {
					$i    = intval( $match[2] ) + 1;
					$slug = $match[1];
				}

				$suffix = '-' . $i;
				$slug   = substr( $slug, 0, 200 - strlen( $suffix ) ) . $suffix;
			}

			return $slug;
		}

		/**
		 * Checks if a slug already exists
		 *
		 * @param string $slug Slug to check on db.
		 *
		 * @return bool Whether slug already exists for current session or not
		 */
		public function slug_exists( $slug ) {
			global $wpdb;

			$res = $wpdb->get_var( $wpdb->prepare( "SELECT COUNT(ID) FROM {$wpdb->yith_wcwl_wishlists} WHERE wishlist_slug = %s", $slug ) );

			return (bool) $res;
		}

		/**
		 * Check if we're registering first wishlist for the user/session
		 *
		 * @return bool Whether current wishlist should be default
		 */
		protected function should_be_default() {
			global $wpdb;

			$user_id     = get_current_user_id();
			$customer_id = YITH_WCWL_Session()->maybe_get_session_id();

			if ( $user_id ) {
				$wishlists = $wpdb->get_var( $wpdb->prepare( "SELECT COUNT( ID ) FROM {$wpdb->yith_wcwl_wishlists} WHERE user_id = %d AND is_default = %d", $user_id, 1 ) );

				return ! (bool) $wishlists;
			}

			if ( $customer_id ) {
				$wishlists = $wpdb->get_var( $wpdb->prepare( "SELECT COUNT( ID ) FROM {$wpdb->yith_wcwl_wishlists} WHERE session_id = %s AND expiration > NOW() AND is_default = %d", $customer_id, 1 ) );

				return ! (bool) $wishlists;
			}

			return true;
		}

		/**
		 * Clear wishlist related caches
		 *
		 * @param \YITH_WCWL_Wishlist|int|string $wishlist Wishlist object.
		 * @return void
		 */
		protected function clear_caches( &$wishlist ) {
			if ( $wishlist instanceof YITH_WCWL_Wishlist ) {
				$id    = $wishlist->get_id();
				$token = $wishlist->get_token();
			} elseif ( intval( $wishlist ) ) {
				$id       = $wishlist;
				$wishlist = yith_wcwl_get_wishlist( $wishlist );
				$token    = $wishlist ? $wishlist->get_token() : false;
			} else {
				$token    = $wishlist;
				$wishlist = yith_wcwl_get_wishlist( $wishlist );
				$id       = $wishlist ? $wishlist->get_id() : false;
			}

			$user_id    = $wishlist ? $wishlist->get_user_id() : false;
			$session_id = $wishlist ? $wishlist->get_session_id() : false;

			wp_cache_delete( 'wishlist-items-' . $id, 'wishlists' );
			wp_cache_delete( 'wishlist-id-' . $id, 'wishlists' );
			wp_cache_delete( 'wishlist-token-' . $token, 'wishlists' );

			if ( $user_id ) {
				wp_cache_delete( 'user-wishlists-' . $user_id, 'wishlists' );
			}

			if ( $session_id ) {
				wp_cache_delete( 'user-wishlists-' . $session_id, 'wishlists' );
			}
		}
	}
}

// phpcs:disable WordPress.DB.DirectDatabaseQuery.DirectQuery, WordPress.DB.DirectDatabaseQuery.NoCaching
PK`x1\�?��11)includes/class-yith-wcwl-ajax-handler.phpnu�[���<?php
/**
 * Static class that will handle all ajax calls for the list
 *
 * @author YITH
 * @package YITH\Wishlist\Classes
 * @version 3.0.0
 */

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

if ( ! class_exists( 'YITH_WCWL_Ajax_Handler' ) ) {
	/**
	 * WooCommerce Wishlist Ajax Handler
	 *
	 * @since 3.0.0
	 */
	class YITH_WCWL_Ajax_Handler {
		/**
		 * Performs all required add_actions to handle forms
		 *
		 * @return void
		 */
		public static function init() {
			// add to wishlist.
			add_action( 'wp_ajax_add_to_wishlist', array( 'YITH_WCWL_Ajax_Handler', 'add_to_wishlist' ) );
			add_action( 'wp_ajax_nopriv_add_to_wishlist', array( 'YITH_WCWL_Ajax_Handler', 'add_to_wishlist' ) );

			// remove from wishlist.
			add_action( 'wp_ajax_remove_from_wishlist', array( 'YITH_WCWL_Ajax_Handler', 'remove_from_wishlist' ) );
			add_action( 'wp_ajax_nopriv_remove_from_wishlist', array( 'YITH_WCWL_Ajax_Handler', 'remove_from_wishlist' ) );

			// remove from wishlist (button).
			add_action( 'wp_ajax_delete_item', array( 'YITH_WCWL_Ajax_Handler', 'delete_item' ) );
			add_action( 'wp_ajax_nopriv_delete_item', array( 'YITH_WCWL_Ajax_Handler', 'delete_item' ) );

			// save title.
			add_action( 'wp_ajax_save_title', array( 'YITH_WCWL_Ajax_Handler', 'save_title' ) );
			add_action( 'wp_ajax_nopriv_save_title', array( 'YITH_WCWL_Ajax_Handler', 'save_title' ) );

			// load mobile templates.
			add_action( 'wp_ajax_load_mobile', array( 'YITH_WCWL_Ajax_Handler', 'load_mobile' ) );
			add_action( 'wp_ajax_nopriv_load_mobile', array( 'YITH_WCWL_Ajax_Handler', 'load_mobile' ) );

			// add to wishlist and reload.
			add_action( 'wp_ajax_reload_wishlist_and_adding_elem', array( 'YITH_WCWL_Ajax_Handler', 'reload_wishlist_and_adding_elem' ) );
			add_action( 'wp_ajax_nopriv_reload_wishlist_and_adding_elem', array( 'YITH_WCWL_Ajax_Handler', 'reload_wishlist_and_adding_elem' ) );

			// load fragments.
			add_action( 'wp_ajax_load_fragments', array( 'YITH_WCWL_Ajax_Handler', 'load_fragments' ) );
			add_action( 'wp_ajax_nopriv_load_fragments', array( 'YITH_WCWL_Ajax_Handler', 'load_fragments' ) );
		}

		/**
		 * Add to wishlist from ajax call
		 *
		 * @return void
		 */
		public static function add_to_wishlist() {
			if ( ! isset( $_REQUEST['nonce'] ) || ! wp_verify_nonce( sanitize_text_field( wp_unslash( $_REQUEST['nonce'] ) ), 'add_to_wishlist' ) ) {
				wp_send_json( array( 'result' => false ) );
			}

			try {
				YITH_WCWL()->add();

				$return  = 'true';
				$message = apply_filters( 'yith_wcwl_product_added_to_wishlist_message', get_option( 'yith_wcwl_product_added_text' ) );

				// append view and close links.
				if ( apply_filters( 'yith_wcwl_show_popup_links', YITH_WCWL()->is_multi_wishlist_enabled() ) ) {
					$message .= '<p class="after-links">
					<a href="' . YITH_WCWL()->get_last_operation_url() . '">' . __( 'View &rsaquo;', 'yith-woocommerce-wishlist' ) . '</a>
					<span class="separator">' . __( 'or', 'yith-woocommerce-wishlist' ) . '</span>
					<a href="#" class="close-popup">' . __( 'Close', 'yith-woocommerce-wishlist' ) . '</a>
					</p>';
				}
			} catch ( YITH_WCWL_Exception $e ) {
				$return  = $e->getTextualCode();
				$message = apply_filters( 'yith_wcwl_error_adding_to_wishlist_message', $e->getMessage() );
			} catch ( Exception $e ) {
				$return  = 'error';
				$message = apply_filters( 'yith_wcwl_error_adding_to_wishlist_message', $e->getMessage() );
			}

			$product_id   = isset( $_REQUEST['add_to_wishlist'] ) ? intval( $_REQUEST['add_to_wishlist'] ) : false;
			$fragments    = isset( $_REQUEST['fragments'] ) ? wc_clean( $_REQUEST['fragments'] ) : false; // phpcs:ignore WordPress.Security.ValidatedSanitizedInput
			$wishlist_url = YITH_WCWL()->get_last_operation_url();

			$wishlists = YITH_WCWL_Wishlist_Factory::get_wishlists();

			$wishlists_to_prompt = array();

			foreach ( $wishlists as $wishlist ) {
				$wishlists_to_prompt[] = array(
					'id'                       => $wishlist->get_id(),
					'wishlist_name'            => $wishlist->get_formatted_name(),
					'default'                  => $wishlist->is_default(),
					'add_to_this_wishlist_url' => $product_id ? wp_nonce_url(
						add_query_arg(
							array(
								'add_to_wishlist' => $product_id,
								'wishlist_id'     => $wishlist->get_id(),
							),
							$wishlist->get_url()
						),
						'add_to_wishlist'
					) : '',
				);
			}

			if ( in_array( $return, array( 'exists', 'true' ), true ) ) {
				// search for related fragments.
				if ( ! empty( $fragments ) && ! empty( $product_id ) ) {
					foreach ( $fragments as $id => $options ) {
						if ( strpos( $id, 'add-to-wishlist-' . $product_id ) ) {
							$fragments[ $id ]['wishlist_url']      = $wishlist_url;
							$fragments[ $id ]['added_to_wishlist'] = 'true' === $return;
						}
					}
				}
			}

			wp_send_json(
				apply_filters(
					'yith_wcwl_ajax_add_return_params',
					array(
						'prod_id'        => $product_id,
						'result'         => $return,
						'message'        => $message,
						'fragments'      => self::refresh_fragments( $fragments ),
						'user_wishlists' => $wishlists_to_prompt,
						'wishlist_url'   => $wishlist_url,
					)
				)
			);
		}

		/**
		 * Remove from wishlist from ajax call
		 *
		 * @return void
		 */
		public static function remove_from_wishlist() {
			if ( ! isset( $_REQUEST['nonce'] ) || ! wp_verify_nonce( sanitize_text_field( wp_unslash( $_REQUEST['nonce'] ) ), 'remove_from_wishlist' ) ) {
				wp_send_json( array( 'fragments' => array() ) );
			}

			$fragments = isset( $_REQUEST['fragments'] ) ? wc_clean( $_REQUEST['fragments'] ) : false; // phpcs:ignore WordPress.Security.ValidatedSanitizedInput

			try {
				YITH_WCWL()->remove();
				$message = apply_filters( 'yith_wcwl_product_removed_text', __( 'Product successfully removed.', 'yith-woocommerce-wishlist' ) );
			} catch ( Exception $e ) {
				$message = $e->getMessage();
			}

			yith_wcwl_add_notice( $message );

			wp_send_json(
				array(
					'fragments' => self::refresh_fragments( $fragments ),
				)
			);
		}

		/**
		 * Remove item from a wishlist
		 * Differs from remove from wishlist, since this accepts item id instead of product id
		 *
		 * @return void
		 * @since 3.0.0
		 */
		public static function delete_item() {
			if ( ! isset( $_REQUEST['nonce'] ) || ! wp_verify_nonce( sanitize_text_field( wp_unslash( $_REQUEST['nonce'] ) ), 'delete_item' ) ) {
				wp_send_json( array( 'result' => false ) );
			}

			$item_id   = isset( $_POST['item_id'] ) ? intval( $_POST['item_id'] ) : false;
			$fragments = isset( $_REQUEST['fragments'] ) ? wc_clean( $_REQUEST['fragments'] ) : false; // phpcs:ignore WordPress.Security.ValidatedSanitizedInput
			$return    = array(
				'result' => false,
			);

			if ( $item_id ) {
				$item = YITH_WCWL_Wishlist_Factory::get_wishlist_item( $item_id );

				if ( $item ) {
					$item->delete();

					$return = array(
						'result'    => true,
						'message'   => apply_filters( 'yith_wcwl_product_removed_text', __( 'Product successfully removed.', 'yith-woocommerce-wishlist' ) ),
						'fragments' => self::refresh_fragments( $fragments ),
					);
				}
			}

			wp_send_json( $return );
		}

		/**
		 * Save new wishlist privacy
		 *
		 * @return void
		 * @since 3.0.7
		 */
		public static function save_title() {
			if ( ! isset( $_REQUEST['nonce'] ) || ! wp_verify_nonce( sanitize_text_field( wp_unslash( $_REQUEST['nonce'] ) ), 'save_title' ) ) {
				wp_send_json( array( 'result' => false ) );
			}

			$wishlist_id   = isset( $_POST['wishlist_id'] ) ? sanitize_text_field( wp_unslash( $_POST['wishlist_id'] ) ) : false;
			$wishlist_name = isset( $_POST['title'] ) ? sanitize_text_field( wp_unslash( $_POST['title'] ) ) : false;
			$fragments     = isset( $_REQUEST['fragments'] ) ? wc_clean( $_REQUEST['fragments'] ) : false; // phpcs:ignore WordPress.Security.ValidatedSanitizedInput
			$wishlist      = $wishlist_id ? yith_wcwl_get_wishlist( $wishlist_id ) : false;

			if ( ! $wishlist_id || ! $wishlist ) {
				wp_send_json(
					array(
						'result' => false,
					)
				);
			}

			if ( ! $wishlist_name || strlen( $wishlist_name ) >= 65535 ) {
				wp_send_json(
					array(
						'result' => false,
					)
				);
			}

			$wishlist->set_name( $wishlist_name );
			$wishlist->save();

			$return = array(
				'result'    => true,
				'fragments' => self::refresh_fragments( $fragments ),
			);

			wp_send_json( $return );
		}

		/**
		 * Generated fragments to replace in the the page
		 *
		 * @return void
		 * @since 3.0.0
		 */
		public static function load_fragments() {
			if ( ! isset( $_REQUEST['nonce'] ) || ! wp_verify_nonce( sanitize_text_field( wp_unslash( $_REQUEST['nonce'] ) ), 'load_fragments' ) ) {
				wp_send_json( array( 'result' => false ) );
			}

			$fragments = isset( $_POST['fragments'] ) ? wc_clean( $_POST['fragments'] ) : false; // phpcs:ignore WordPress.Security

			wp_send_json(
				array(
					'fragments' => self::refresh_fragments( $fragments ),
				)
			);
		}

		/**
		 * Reload wishlist and adding elem action
		 *
		 * @return void
		 * @since 1.0.0
		 */
		public static function reload_wishlist_and_adding_elem() {
			if ( ! isset( $_REQUEST['nonce'] ) || ! wp_verify_nonce( sanitize_text_field( wp_unslash( $_REQUEST['nonce'] ) ), 'reload_wishlist_and_adding_elem' ) ) {
				wp_send_json( array( 'result' => false ) );
			}

			$type_msg = 'success';

			try {
				YITH_WCWL()->add();
				$message = apply_filters( 'yith_wcwl_product_added_to_wishlist_message', get_option( 'yith_wcwl_product_added_text' ) );
			} catch ( YITH_WCWL_Exception $e ) {
				$message  = $e->getMessage();
				$type_msg = $e->getTextualCode();
			} catch ( Exception $e ) {
				$message  = $e->getMessage();
				$type_msg = 'error';
			}

			$wishlist_token = isset( $_REQUEST['wishlist_token'] ) ? sanitize_text_field( wp_unslash( $_REQUEST['wishlist_token'] ) ) : false;
			$atts           = array( 'wishlist_id' => $wishlist_token );

			if ( isset( $_REQUEST['pagination'] ) ) {
				$atts['pagination'] = sanitize_text_field( wp_unslash( $_REQUEST['pagination'] ) );
			}

			if ( isset( $_REQUEST['per_page'] ) ) {
				$atts['per_page'] = intval( $_REQUEST['per_page'] );
			}

			yith_wcwl_add_notice( $message, $type_msg );

			?>
			<div>
				<?php echo YITH_WCWL_Shortcode::wishlist( $atts ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>
			</div>
			<?php

			die();

		}

		/**
		 * Reloads fragments, returning mobile version when available
		 *
		 * @return void
		 * @since 3.0.0
		 */
		public static function load_mobile() {
			global $yith_wcwl_is_mobile;

			if ( ! isset( $_REQUEST['nonce'] ) || ! wp_verify_nonce( sanitize_text_field( wp_unslash( $_REQUEST['nonce'] ) ), 'load_mobile' ) ) {
				wp_send_json( array( 'fragments' => array() ) );
			}

			$fragments = isset( $_POST['fragments'] ) ? wc_clean( $_POST['fragments'] ) : false; // phpcs:ignore WordPress.Security.ValidatedSanitizedInput
			$result    = array();

			if ( ! empty( $fragments ) ) {
				foreach ( $fragments as $id => $options ) {
					$yith_wcwl_is_mobile = isset( $options['is_mobile'] ) ? 'yes' === $options['is_mobile'] : false;

					$result = array_merge( $result, self::refresh_fragments( array( $id => $options ) ) );
				}
			}

			wp_send_json(
				array(
					'fragments' => $result,
				)
			);
		}

		/**
		 * Generate fragments for the templates that needs to be refreshed after ajax
		 *
		 * @param array $fragments Array of fragments to refresh.
		 * @return array Array of templates to be replaced on the page
		 */
		public static function refresh_fragments( $fragments ) {
			$result = array();

			if ( ! empty( $fragments ) ) {
				foreach ( $fragments as $id => $options ) {
					$id      = sanitize_text_field( $id );
					$options = YITH_WCWL_Frontend()->decode_fragment_options( $options );
					$item    = isset( $options['item'] ) ? $options['item'] : false;

					if ( ! $item ) {
						continue;
					}

					switch ( $item ) {
						case 'add_to_wishlist':
						case 'wishlist':
							$result[ $id ] = YITH_WCWL_Shortcode::$item( $options );
							break;
						case 'YITH_WCWL_Widget':
						case 'YITH_WCWL_Items_Widget':
							ob_start();
							the_widget( $item, $options );
							$result[ $id ] = ob_get_clean();
							break;
						default:
							$result[ $id ] = apply_filters( 'yith_wcwl_fragment_output', '', $id, $options );
							break;
					}
				}
			}

			return $result;
		}
	}
}
YITH_WCWL_Ajax_Handler::init();
PK`x1\}��b#b#$includes/class-yith-wcwl-session.phpnu�[���<?php
/**
 * Wishlist Session Handler
 *
 * @author YITH
 * @package YITH\Wishlist\Classes
 * @version 3.0.0
 */

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

if ( ! class_exists( 'YITH_WCWL_Session' ) ) {
	/**
	 * This class implements Session handler for wishlist
	 * Unique session id is assigned to any new customer, and registered in a cookie
	 *
	 * Expiration is set accordingly to plugin options
	 *
	 * @since 3.0.0
	 */
	class YITH_WCWL_Session {
		/**
		 * Single instance of the class
		 *
		 * @var \YITH_WCWL_Session
		 * @since 3.0.0
		 */
		protected static $instance;

		/**
		 * Session ID.
		 *
		 * @var int $session_id Session ID.
		 */
		protected $session_id;

		/**
		 * Cookie name used for the session.
		 *
		 * @var string cookie name
		 */
		protected $cookie_name;

		/**
		 * Cookie content.
		 *
		 * @var array cookie content.
		 */
		protected $cookie;

		/**
		 * Stores session expiry.
		 *
		 * @var string session due to expire timestamp
		 */
		protected $session_expiring;

		/**
		 * Stores session expiration.
		 *
		 * @var string session expiration timestamp
		 */
		protected $session_expiration;

		/**
		 * True when the cookie exists.
		 *
		 * @var bool Based on whether a cookie exists.
		 */
		protected $has_cookie = false;

		/**
		 * Construct session class
		 */
		public function __construct() {
			// prefetch session cookie.
			add_action( 'init', array( $this, 'get_session_cookie' ), 5 );

			// add action to finalize session.
			add_action( 'init', array( $this, 'finalize_session' ) );
		}

		/**
		 * Setup cookie and customer ID.
		 *
		 * @since 3.0.0
		 */
		public function init_session_cookie() {
			$cookie = $this->get_session_cookie();

			if ( is_array( $cookie ) && ! empty( $cookie['session_id'] ) && ! empty( $cookie['session_expiration'] ) ) {
				if ( is_user_logged_in() ) {
					// If the user logs in, forget session.
					/**
					 * Once customer logs in, we can permanently register wishlists for his account
					 */
					$this->finalize_session();
				} elseif ( time() > $this->session_expiring ) {
					// Update session if its close to expiring.
					$this->set_session_expiration();
					$this->update_session_timestamp( $this->session_id, $this->session_expiration );
				}
			} else {
				$this->set_session_expiration();
				$this->session_id = $this->session_id ? $this->session_id : $this->generate_session_id();
			}

			if ( ! $this->has_cookie ) {
				$this->set_session_cookie();
			}
		}

		/**
		 * Sets the session cookie on-demand
		 *
		 * @return void
		 */
		public function set_session_cookie() {
			if ( headers_sent() || ! apply_filters( 'yith_wcwl_set_session_cookie', true ) ) {
				return;
			}

			$to_hash = $this->session_id . '|' . $this->session_expiration;
			$hash    = hash_hmac( 'md5', $to_hash, wp_hash( $to_hash ) );

			$cookie_value = array(
				'session_id'         => $this->session_id,
				'session_expiration' => $this->session_expiration,
				'session_expiring'   => $this->session_expiring,
				'cookie_hash'        => $hash,
			);
			yith_setcookie( $this->get_session_cookie_name(), $cookie_value, $this->session_expiration, $this->use_secure_cookie(), true );

			// cookie has been set.
			$this->cookie     = $cookie_value;
			$this->has_cookie = true;
		}

		/**
		 * Get the session cookie, if set. Otherwise return false.
		 *
		 * Session cookies without a customer ID are invalid.
		 *
		 * @return bool|array
		 */
		public function get_session_cookie() {
			if ( ! empty( $this->cookie ) ) {
				return $this->cookie;
			}

			$cookie_value = yith_getcookie( $this->get_session_cookie_name() ); // @codingStandardsIgnoreLine.

			if ( empty( $cookie_value ) || ! is_array( $cookie_value ) ) {
				return false;
			}

			if ( empty( $cookie_value['session_id'] ) ) {
				return false;
			}

			// Validate hash.
			$to_hash = $cookie_value['session_id'] . '|' . $cookie_value['session_expiration'];
			$hash    = hash_hmac( 'md5', $to_hash, wp_hash( $to_hash ) );

			if ( empty( $cookie_value['cookie_hash'] ) || ! hash_equals( $hash, $cookie_value['cookie_hash'] ) ) {
				return false;
			}

			$this->cookie     = $cookie_value;
			$this->has_cookie = true;

			$this->session_id         = $cookie_value['session_id'];
			$this->session_expiration = $cookie_value['session_expiration'];
			$this->session_expiring   = $cookie_value['session_expiring'];

			return $cookie_value;
		}

		/**
		 * Returns true if system should use HTTPS only cookies
		 *
		 * @return bool
		 */
		public function use_secure_cookie() {
			return apply_filters( 'yith_wcwl_session_use_secure_cookie', wc_site_is_https() && is_ssl() );
		}

		/**
		 * Returns name for the session cookie
		 *
		 * @return string
		 * @since 3.0.3
		 */
		public function get_session_cookie_name() {
			if ( empty( $this->cookie_name ) ) {
				$this->cookie_name = apply_filters( 'yith_wcwl_session_cookie', 'yith_wcwl_session_' . COOKIEHASH );
			}

			return $this->cookie_name;
		}

		/**
		 * Returns current session expiration; if session doesn't exist, creates it; if user is logged in, return false
		 *
		 * @return string Current customer id
		 */
		public function get_session_expiration() {
			$session_id = $this->get_session_id();

			if ( $session_id ) {
				return $this->session_expiration;
			}

			return false;
		}

		/**
		 * Set session expiration.
		 */
		public function set_session_expiration() {
			$this->session_expiring   = time() + yith_wcwl_get_cookie_expiration() - HOUR_IN_SECONDS;
			$this->session_expiration = time() + yith_wcwl_get_cookie_expiration();
		}

		/**
		 * Return true if the current user has an active session, i.e. a cookie to retrieve values.
		 *
		 * @return bool
		 */
		public function has_session() {
			return $this->has_cookie; // @codingStandardsIgnoreLine.
		}

		/**
		 * Returns current session id; if session doesn't exist, creates it; if user is logged in, return false
		 *
		 * @return string Current customer id
		 */
		public function get_session_id() {
			if ( $this->has_session() ) {
				return $this->session_id;
			} elseif ( ! is_user_logged_in() ) {
				$this->init_session_cookie();

				return $this->session_id;
			}

			return false;
		}

		/**
		 * Returns current session id, if any; false otherwise (won't create a session)
		 *
		 * @return string|bool Current customer id, or false, if none
		 */
		public function maybe_get_session_id() {
			if ( $this->has_session() ) {
				return $this->session_id;
			}

			return false;
		}

		/**
		 * Generate a unique customer ID for guests, or return false if logged in.
		 *
		 * Uses Portable PHP password hashing framework to generate a unique cryptographically strong ID.
		 *
		 * @return string|bool
		 */
		public function generate_session_id() {
			$session_id = '';

			if ( is_user_logged_in() ) {
				return false;
			}

			require_once ABSPATH . 'wp-includes/class-phpass.php';
			$hasher     = new PasswordHash( 8, false );
			$session_id = md5( $hasher->get_random_bytes( 32 ) );

			return $session_id;
		}

		/**
		 * Converts session to stable database items
		 *
		 * @return void
		 */
		public function finalize_session() {
			if ( ! is_user_logged_in() ) {
				return;
			}

			$cookie = $this->get_session_cookie();

			if ( ! $cookie ) {
				return;
			}

			if ( empty( $cookie['session_id'] ) ) {
				return;
			}

			$user_id    = get_current_user_id();
			$session_id = $cookie['session_id'];

			try {
				WC_Data_Store::load( 'wishlist' )->assign_to_user( $session_id, $user_id );
			} catch ( Exception $e ) {
				wc_caught_exception( $e, __FUNCTION__, func_get_args() );
				return;
			}

			$this->forget_session();
		}

		/**
		 * Update the session expiry timestamp.
		 *
		 * @param string $session_id Session ID.
		 * @param int    $timestamp Timestamp to expire the cookie.
		 */
		public function update_session_timestamp( $session_id, $timestamp ) {
			try {
				WC_Data_Store::load( 'wishlist' )->update_raw(
					array( 'expiration' => 'FROM_UNIXTIME(%d)' ),
					array( $timestamp ),
					array( 'session_id' => '%s' ),
					array( $session_id )
				);
			} catch ( Exception $e ) {
				wc_caught_exception( $e, __FUNCTION__, func_get_args() );
				return;
			}
		}

		/**
		 * Forget all session data without destroying it.
		 */
		public function forget_session() {
			yith_destroycookie( $this->get_session_cookie_name() );

			$this->session_id = $this->generate_session_id();
			$this->cookie     = null;
		}

		/**
		 * Returns single instance of the class
		 *
		 * @return \YITH_WCWL_Session
		 * @since 3.0.0
		 */
		public static function get_instance() {
			if ( is_null( self::$instance ) ) {
				self::$instance = new self();
			}

			return self::$instance;
		}
	}
}

/**
 * Unique access to instance of YITH_WCWL_Session class
 *
 * @return \YITH_WCWL_Session
 * @since 3.0.0
 */
function YITH_WCWL_Session() { // phpcs:ignore WordPress.NamingConventions.ValidFunctionName.FunctionNameInvalid
	return YITH_WCWL_Session::get_instance();
}
PK`x1\e|�.ssHincludes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.phpnu�[���<?php
/**
 * Add to Wishlist widget for Elementor
 *
 * @author YITH
 * @package YITH\Wishlist\Classes\Elementor
 * @version 3.0.7
 */

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

if ( ! class_exists( 'YITH_WCWL_Elementor_Add_To_Wishlist' ) ) {
	/**
	 * Add to Wishlist Elementor block
	 *
	 * @since 3.0.0
	 */
	class YITH_WCWL_Elementor_Add_To_Wishlist extends \Elementor\Widget_Base {

		/**
		 * Get widget name.
		 *
		 * Retrieve YITH_WCWL_Elementor_Add_to_Wishlist widget name.
		 *
		 * @return string Widget name.
		 * @since  1.0.0
		 * @access public
		 */
		public function get_name() {
			return 'yith_wcwl_add_to_wishlist';
		}

		/**
		 * Get widget title.
		 *
		 * Retrieve YITH_WCWL_Elementor_Add_to_Wishlist widget title.
		 *
		 * @return string Widget title.
		 * @since  1.0.0
		 * @access public
		 */
		public function get_title() {
			return _x( 'YITH Wishlist Add button', 'Elementor widget name', 'yith-woocommerce-wishlist' );
		}

		/**
		 * Get widget icon.
		 *
		 * Retrieve YITH_WCWL_Elementor_Add_to_Wishlist widget icon.
		 *
		 * @return string Widget icon.
		 * @since  1.0.0
		 * @access public
		 */
		public function get_icon() {
			return 'eicon-button';
		}

		/**
		 * Get widget categories.
		 *
		 * Retrieve the list of categories the YITH_WCWL_Elementor_Add_to_Wishlist widget belongs to.
		 *
		 * @return array Widget categories.
		 * @since  1.0.0
		 * @access public
		 */
		public function get_categories() {
			return array( 'general', 'yith' );
		}

		/**
		 * Register YITH_WCWL_Elementor_Add_to_Wishlist widget controls.
		 *
		 * Adds different input fields to allow the user to change and customize the widget settings.
		 *
		 * @since  1.0.0
		 * @access protected
		 */
		protected function _register_controls() { // phpcs:ignore PSR2.Methods.MethodDeclaration.Underscore

			$this->start_controls_section(
				'product_section',
				array(
					'label' => _x( 'Product', 'Elementor section title', 'yith-woocommerce-wishlist' ),
					'tab'   => \Elementor\Controls_Manager::TAB_CONTENT,
				)
			);

			$this->add_control(
				'product_id',
				array(
					'label'       => _x( 'Product ID', 'Elementor control label', 'yith-woocommerce-wishlist' ),
					'type'        => \Elementor\Controls_Manager::NUMBER,
					'input_type'  => 'text',
					'placeholder' => '123',
				)
			);

			$this->end_controls_section();

			$this->start_controls_section(
				'labels_section',
				array(
					'label' => _x( 'Labels', 'Elementor section title', 'yith-woocommerce-wishlist' ),
					'tab'   => \Elementor\Controls_Manager::TAB_CONTENT,
				)
			);

			$this->add_control(
				'label',
				array(
					'label'       => _x( 'Button label', 'Elementor control label', 'yith-woocommerce-wishlist' ),
					'type'        => \Elementor\Controls_Manager::TEXT,
					'input_type'  => 'text',
					'placeholder' => __( 'Add to wishlist', 'yith-woocommerce-wishlist' ),
				)
			);

			$this->add_control(
				'browse_wishlist_text',
				array(
					'label'       => _x( '"Browse wishlist" label', 'Elementor control label', 'yith-woocommerce-wishlist' ),
					'type'        => \Elementor\Controls_Manager::TEXT,
					'input_type'  => 'text',
					'placeholder' => __( 'Browse wishlist', 'yith-woocommerce-wishlist' ),
				)
			);

			$this->add_control(
				'already_in_wishslist_text',
				array(
					'label'       => _x( '"Product already in wishlist" label', 'Elementor control label', 'yith-woocommerce-wishlist' ),
					'type'        => \Elementor\Controls_Manager::TEXT,
					'input_type'  => 'text',
					'placeholder' => __( 'Product already in wishlist', 'yith-woocommerce-wishlist' ),
				)
			);

			$this->add_control(
				'product_added_text',
				array(
					'label'       => _x( '"Product added to wishlist" label', 'Elementor control label', 'yith-woocommerce-wishlist' ),
					'type'        => \Elementor\Controls_Manager::TEXT,
					'input_type'  => 'text',
					'placeholder' => __( 'Product added to wishlist', 'yith-woocommerce-wishlist' ),
				)
			);

			$this->end_controls_section();

			$this->start_controls_section(
				'advanced_section',
				array(
					'label' => _x( 'Advanced', 'Elementor section title', 'yith-woocommerce-wishlist' ),
					'tab'   => \Elementor\Controls_Manager::TAB_CONTENT,
				)
			);

			$this->add_control(
				'wishlist_url',
				array(
					'label'       => _x( 'URL of the wishlist page', 'Elementor control label', 'yith-woocommerce-wishlist' ),
					'type'        => \Elementor\Controls_Manager::TEXT,
					'input_type'  => 'url',
					'placeholder' => '',
				)
			);

			$this->add_control(
				'icon',
				array(
					'label'       => _x( 'Icon for the button', 'Elementor control label', 'yith-woocommerce-wishlist' ),
					'type'        => \Elementor\Controls_Manager::TEXT,
					'input_type'  => 'text',
					'placeholder' => '',
				)
			);

			$this->add_control(
				'link_classes',
				array(
					'label'       => _x( 'Additional CSS classes for the button', 'Elementor control label', 'yith-woocommerce-wishlist' ),
					'type'        => \Elementor\Controls_Manager::TEXT,
					'input_type'  => 'text',
					'placeholder' => '',
				)
			);

			$this->end_controls_section();

		}

		/**
		 * Render YITH_WCWL_Elementor_Add_to_Wishlist widget output on the frontend.
		 *
		 * @since  1.0.0
		 * @access protected
		 */
		protected function render() {

			$attribute_string = '';
			$settings         = $this->get_settings_for_display();

			foreach ( $settings as $key => $value ) {
				if ( empty( $value ) || ! is_scalar( $value ) ) {
					continue;
				}
				$attribute_string .= " {$key}=\"{$value}\"";
			}

			echo do_shortcode( "[yith_wcwl_add_to_wishlist {$attribute_string}]" );
		}

	}
}
PK`x1\�,(��Aincludes/widgets/elementor/class-yith-wcwl-elementor-wishlist.phpnu�[���<?php
/**
 * Wishlist widget for Elementor
 *
 * @author YITH
 * @package YITH\Wishlist\Classes\Elementor
 * @version 3.0.7
 */

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

if ( ! class_exists( 'YITH_WCWL_Elementor_Wishlist' ) ) {
	/**
	 * Wishlist Elementor block
	 *
	 * @since 3.0.0
	 */
	class YITH_WCWL_Elementor_Wishlist extends \Elementor\Widget_Base {

		/**
		 * Get widget name.
		 *
		 * Retrieve YITH_WCWL_Elementor_Wishlist widget name.
		 *
		 * @return string Widget name.
		 * @since  1.0.0
		 * @access public
		 */
		public function get_name() {
			return 'yith_wcwl_wishlist';
		}

		/**
		 * Get widget title.
		 *
		 * Retrieve YITH_WCWL_Elementor_Wishlist widget title.
		 *
		 * @return string Widget title.
		 * @since  1.0.0
		 * @access public
		 */
		public function get_title() {
			return _x( 'YITH Wishlist', 'Elementor widget name', 'yith-woocommerce-wishlist' );
		}

		/**
		 * Get widget icon.
		 *
		 * Retrieve YITH_WCWL_Elementor_Wishlist widget icon.
		 *
		 * @return string Widget icon.
		 * @since  1.0.0
		 * @access public
		 */
		public function get_icon() {
			return 'eicon-table';
		}

		/**
		 * Get widget categories.
		 *
		 * Retrieve the list of categories the YITH_WCWL_Elementor_Wishlist widget belongs to.
		 *
		 * @return array Widget categories.
		 * @since  1.0.0
		 * @access public
		 */
		public function get_categories() {
			return array( 'general', 'yith' );
		}

		/**
		 * Register YITH_WCWL_Elementor_Wishlist widget controls.
		 *
		 * Adds different input fields to allow the user to change and customize the widget settings.
		 *
		 * @since  1.0.0
		 * @access protected
		 */
		protected function _register_controls() { // phpcs:ignore PSR2.Methods.MethodDeclaration.Underscore

			$this->start_controls_section(
				'product_section',
				array(
					'label' => _x( 'Wishlist', 'Elementor section title', 'yith-woocommerce-wishlist' ),
					'tab'   => \Elementor\Controls_Manager::TAB_CONTENT,
				)
			);

			$this->add_control(
				'wishlist_id',
				array(
					'label'       => _x( 'Wishlist ID', 'Elementor control label', 'yith-woocommerce-wishlist' ),
					'type'        => \Elementor\Controls_Manager::TEXT,
					'input_type'  => 'text',
					'placeholder' => 'K6EOWXB888ZD',
				)
			);

			$this->end_controls_section();

			$this->start_controls_section(
				'labels_section',
				array(
					'label' => _x( 'Pagination', 'Elementor section title', 'yith-woocommerce-wishlist' ),
					'tab'   => \Elementor\Controls_Manager::TAB_CONTENT,
				)
			);

			$this->add_control(
				'pagination',
				array(
					'label'   => _x( 'Paginate items', 'Elementor control label', 'yith-woocommerce-wishlist' ),
					'type'    => \Elementor\Controls_Manager::SELECT,
					'options' => array(
						'yes' => __( 'Paginate', 'yith-woocommerce-wishlist' ),
						'no'  => __( 'Do not paginate', 'yith-woocommerce-wishlist' ),
					),
					'default' => 'no',
				)
			);

			$this->add_control(
				'per_page',
				array(
					'label'       => _x( 'Items per page', 'yith-woocommerce-wishlist' ),
					'type'        => \Elementor\Controls_Manager::NUMBER,
					'input_type'  => 'number',
					'placeholder' => 5,
				)
			);

			$this->end_controls_section();

		}

		/**
		 * Render YITH_WCWL_Elementor_Wishlist widget output on the frontend.
		 *
		 * @since  1.0.0
		 * @access protected
		 */
		protected function render() {

			$attribute_string = '';
			$settings         = $this->get_settings_for_display();

			foreach ( $settings as $key => $value ) {
				if ( empty( $value ) || ! is_scalar( $value ) ) {
					continue;
				}
				$attribute_string .= " {$key}=\"{$value}\"";
			}

			echo do_shortcode( "[yith_wcwl_wishlist {$attribute_string}]" );
		}

	}
}
PK`x1\��T%%$includes/class-yith-wcwl-install.phpnu�[���<?php
/**
 * Install file
 *
 * @author YITH
 * @package YITH\Wishlist\Classes
 * @version 3.0.0
 */

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

if ( ! class_exists( 'YITH_WCWL_Install' ) ) {
	/**
	 * Install plugin table and create the wishlist page
	 *
	 * @since 1.0.0
	 */
	class YITH_WCWL_Install {

		/**
		 * Single instance of the class
		 *
		 * @var \YITH_WCWL_Install
		 * @since 2.0.0
		 */
		protected static $instance;

		/**
		 * Items table name
		 *
		 * @var string
		 * @access private
		 * @since 1.0.0
		 */
		private $table_items;

		/**
		 * Items table name
		 *
		 * @var string
		 * @access private
		 * @since 1.0.0
		 */
		private $table_wishlists;

		/**
		 * Returns single instance of the class
		 *
		 * @return \YITH_WCWL_Install
		 * @since 2.0.0
		 */
		public static function get_instance() {
			if ( is_null( self::$instance ) ) {
				self::$instance = new self();
			}

			return self::$instance;
		}

		/**
		 * Constructor.
		 *
		 * @since 1.0.0
		 */
		public function __construct() {
			global $wpdb;

			// define local private attribute.
			$this->table_items     = $wpdb->prefix . 'yith_wcwl';
			$this->table_wishlists = $wpdb->prefix . 'yith_wcwl_lists';

			// add custom field to global $wpdb.
			$wpdb->yith_wcwl_items     = $this->table_items;
			$wpdb->yith_wcwl_wishlists = $this->table_wishlists;

			// define constant to use allover the application.
			define( 'YITH_WCWL_ITEMS_TABLE', $this->table_items );
			define( 'YITH_WCWL_WISHLISTS_TABLE', $this->table_wishlists );

			/**
			 * Deprecated constant
			 *
			 * @deprecated
			 */
			define( 'YITH_WCWL_TABLE', $this->table_items );
		}

		/**
		 * Init db structure of the plugin
		 *
		 * @since 1.0.0
		 */
		public function init() {
			$this->add_tables();
			$this->add_pages();

			$this->register_current_version();
		}

		/**
		 * Update db structure of the plugin
		 *
		 * @param string $current_version Version from which we're updating.
		 *
		 * @ince 3.0.0
		 */
		public function update( $current_version ) {
			if ( version_compare( $current_version, '1.0.0', '<' ) ) {
				$this->update_100();
			}

			if ( version_compare( $current_version, '2.0.0', '<' ) ) {
				$this->update_200();
			}

			if ( version_compare( $current_version, '3.0.0', '<' ) ) {
				$this->update_300();
			}

			// TODO (3.1): _update_310() should call ->_add_tables(), to update db structure and size of external id columns.

			$this->register_current_version();
		}

		/**
		 * Register current version of plugin and database sctructure
		 *
		 * @since 3.0.0
		 */
		public function register_current_version() {
			delete_option( 'yith_wcwl_version' );
			update_option( 'yith_wcwl_version', YITH_WCWL_VERSION );

			delete_option( 'yith_wcwl_db_version' );
			update_option( 'yith_wcwl_db_version', YITH_WCWL_DB_VERSION );
		}

		/**
		 * Check if the table of the plugin already exists.
		 *
		 * @return bool
		 * @since 1.0.0
		 */
		public function is_installed() {
			global $wpdb;
			$number_of_tables = $wpdb->query( $wpdb->prepare( 'SHOW TABLES LIKE %s', "{$this->table_items}%" ) ); // phpcs:ignore WordPress.DB.DirectDatabaseQuery

			return (bool) ( 2 === (int) $number_of_tables );
		}

		/**
		 * Update from 0.x to 1.0
		 */
		private function update_100() {
			flush_rewrite_rules();
		}

		/**
		 * Update from version 1.0 to 2.0
		 *
		 * @since 2.0.0
		 */
		private function update_200() {
			// update tables.
			$this->add_tables();
		}

		/**
		 * Update from version 2.0 to 3.0
		 *
		 * @since 3.0.0
		 */
		private function update_300() {
			// update tables.
			$this->add_tables();

			// update color options.
			$options = array(
				'color_add_to_wishlist',
				'color_add_to_cart',
				'color_button_style_1',
				'color_button_style_2',
				'color_wishlist_table',
			);

			foreach ( $options as $option ) {
				$base_option_name = "yith_wcwl_{$option}";

				$background = get_option( "{$base_option_name}_background" );
				$color      = get_option( "{$base_option_name}_color" );
				$border     = get_option( "{$base_option_name}_border_color" );

				if ( 'color_wishlist_table' !== $option ) {
					$background_hover = get_option( "{$base_option_name}_hover_background" );
					$color_hover      = get_option( "{$base_option_name}_hover_color" );
					$border_hover     = get_option( "{$base_option_name}_hover_border_color" );
				}

				update_option(
					$base_option_name,
					array_merge(
						! empty( $background ) ? array( 'background' => $background ) : array(),
						! empty( $color ) ? array( 'text' => $color ) : array(),
						! empty( $border ) ? array( 'border' => $border ) : array(),
						! empty( $background_hover ) ? array( 'background_hover' => $background_hover ) : array(),
						! empty( $color_hover ) ? array( 'text_hover' => $color_hover ) : array(),
						! empty( $border_hover ) ? array( 'border_hover' => $border_hover ) : array()
					)
				);
			}

			// duplicate options.
			$options = array(
				'yith_wcwl_color_button_style_1'       => array(
					'yith_wcwl_color_ask_an_estimate',
				),
				'yith_wcwl_color_button_style_1_hover' => array(
					'yith_wcwl_color_ask_an_estimate_hover',
				),
				'woocommerce_promotion_mail_settings'  => array(
					'woocommerce_yith_wcwl_promotion_mail_settings',
				),
			);

			foreach ( $options as $original_option => $destinations ) {
				$option_value = get_option( $option );

				if ( $option_value ) {
					foreach ( $destinations as $destination ) {
						update_option( $destination, $option_value );
					}
				}
			}

			// button style options.
			$use_buttons     = get_option( 'yith_wcwl_use_button' );
			$use_theme_style = get_option( 'yith_wcwl_frontend_css' );

			if ( 'yes' === $use_buttons && 'no' === $use_theme_style ) {
				$destination_value = 'button_custom';
			} elseif ( 'yes' === $use_buttons ) {
				$destination_value = 'button_default';
			} else {
				$destination_value = 'link';
			}

			update_option( 'yith_wcwl_add_to_wishlist_style', $destination_value );
			update_option( 'yith_wcwl_add_to_cart_style', $destination_value );
			update_option( 'yith_wcwl_ask_an_estimate_style', $destination_value );

			// rounded corners options.
			$rounded_corners = get_option( 'yith_wcwl_rounded_corners' );
			$radius_value    = 'yes' === $rounded_corners ? 16 : 0;

			update_option( 'yith_wcwl_rounded_corners_radius', $radius_value );
			update_option( 'yith_wcwl_add_to_cart_rounded_corners_radius', $radius_value );
			update_option( 'yith_wcwl_ask_an_estimate_rounded_corners_radius', $radius_value );
		}

		/**
		 * Add tables for a fresh installation
		 *
		 * @return void
		 * @access private
		 * @since 1.0.0
		 */
		private function add_tables() {
			$this->add_wishlists_table();
			$this->add_items_table();
		}

		/**
		 * Add the wishlists table to the database.
		 *
		 * @return void
		 * @access private
		 * @since 1.0.0
		 */
		private function add_wishlists_table() {
			if ( ! $this->is_installed() || version_compare( get_option( 'yith_wcwl_db_version' ), '3.0.0', '<' ) ) {
				$sql = "CREATE TABLE {$this->table_wishlists} (
							ID BIGINT( 20 ) NOT NULL AUTO_INCREMENT,
							user_id BIGINT( 20 ) NULL DEFAULT NULL,
							session_id VARCHAR( 255 ) DEFAULT NULL,
							wishlist_slug VARCHAR( 200 ) NOT NULL,
							wishlist_name TEXT,
							wishlist_token VARCHAR( 64 ) NOT NULL UNIQUE,
							wishlist_privacy TINYINT( 1 ) NOT NULL DEFAULT 0,
							is_default TINYINT( 1 ) NOT NULL DEFAULT 0,
							dateadded timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
							expiration timestamp NULL DEFAULT NULL,
							PRIMARY KEY  ( ID ),
							KEY wishlist_slug ( wishlist_slug )
						) DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;";

				require_once ABSPATH . 'wp-admin/includes/upgrade.php';
				dbDelta( $sql );
			}
		}

		/**
		 * Add the items table to the database.
		 *
		 * @return void
		 * @access private
		 * @since 1.0.0
		 */
		private function add_items_table() {
			if ( ! $this->is_installed() || version_compare( get_option( 'yith_wcwl_db_version' ), '3.0.0', '<' ) ) {
				$sql = "CREATE TABLE {$this->table_items} (
							ID BIGINT( 20 ) NOT NULL AUTO_INCREMENT,
							prod_id BIGINT( 20 ) NOT NULL,
							quantity INT( 11 ) NOT NULL,
							user_id BIGINT( 20 ) NULL DEFAULT NULL,
							wishlist_id BIGINT( 20 ) NULL,
							position INT( 11 ) DEFAULT 0,
							original_price DECIMAL( 9,3 ) NULL DEFAULT NULL,
							original_currency CHAR( 3 ) NULL DEFAULT NULL,
							dateadded timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
							on_sale tinyint NOT NULL DEFAULT 0,
							PRIMARY KEY  ( ID ),
							KEY prod_id ( prod_id )
						) DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;";

				require_once ABSPATH . 'wp-admin/includes/upgrade.php';
				dbDelta( $sql );
			}
		}

		/**
		 * Add a page "Wishlist".
		 *
		 * @return void
		 * @since 1.0.0
		 */
		private function add_pages() {
			wc_create_page(
				sanitize_title_with_dashes( _x( 'wishlist', 'page_slug', 'yith-woocommerce-wishlist' ) ),
				'yith_wcwl_wishlist_page_id',
				__( 'Wishlist', 'yith-woocommerce-wishlist' ),
				'<!-- wp:shortcode -->[yith_wcwl_wishlist]<!-- /wp:shortcode -->'
			);
		}
	}
}

/**
 * Unique access to instance of YITH_WCWL_Install class
 *
 * @return \YITH_WCWL_Install
 * @since 2.0.0
 */
function YITH_WCWL_Install() { // phpcs:ignore WordPress.NamingConventions.ValidFunctionName.FunctionNameInvalid
	return YITH_WCWL_Install::get_instance();
}
PK`x1\y�qh(h("includes/class-yith-wcwl-admin.phpnu�[���<?php
/**
 * Admin init class
 *
 * @author YITH
 * @package YITH\Wishlist\Classes
 * @version 3.0.0
 */

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

if ( ! class_exists( 'YITH_WCWL_Admin' ) ) {
	/**
	 * Initiator class. Create and populate admin views.
	 *
	 * @since 1.0.0
	 */
	class YITH_WCWL_Admin {

		/**
		 * Single instance of the class
		 *
		 * @var \YITH_WCWL_Admin
		 * @since 2.0.0
		 */
		protected static $instance;

		/**
		 * Wishlist panel
		 *
		 * @var string Panel hookname
		 * @since 2.0.0
		 */
		protected $panel = null;

		/**
		 * Link to landing page on yithemes.com
		 *
		 * @var string
		 * @since 2.0.0
		 */
		public $premium_landing_url = 'https://yithemes.com/themes/plugins/yith-woocommerce-wishlist/';

		/**
		 * Tab name
		 *
		 * @var string
		 * @since 1.0.0
		 */
		public $tab;

		/**
		 * Plugin options
		 *
		 * @var array
		 * @since 1.0.0
		 */
		public $options;

		/**
		 * List of available tab for wishlist panel
		 *
		 * @var array
		 * @access public
		 * @since 2.0.0
		 */
		public $available_tabs = array();

		/**
		 * Returns single instance of the class
		 *
		 * @return \YITH_WCWL_Admin
		 * @since 2.0.0
		 */
		public static function get_instance() {
			if ( is_null( self::$instance ) ) {
				self::$instance = new self();
			}

			return self::$instance;
		}

		/**
		 * Constructor of the class
		 *
		 * @return \YITH_WCWL_Admin
		 * @since 2.0.0
		 */
		public function __construct() {
			// install plugin, or update from older versions.
			add_action( 'init', array( $this, 'install' ) );

			// init admin processing.
			add_action( 'init', array( $this, 'init' ) );

			// enqueue scripts.
			add_action( 'admin_enqueue_scripts', array( $this, 'enqueue' ), 20 );

			// plugin panel options.
			add_filter( 'yith_plugin_fw_panel_wc_extra_row_classes', array( $this, 'mark_options_disabled' ), 10, 23 );

			// add plugin links.
			add_filter( 'plugin_action_links_' . plugin_basename( YITH_WCWL_DIR . 'init.php' ), array( $this, 'action_links' ) );
			add_filter( 'yith_show_plugin_row_meta', array( $this, 'add_plugin_meta' ), 10, 5 );

			// register wishlist panel.
			add_action( 'admin_menu', array( $this, 'register_panel' ), 5 );
			add_action( 'yith_wcwl_premium_tab', array( $this, 'print_premium_tab' ) );

			// add a post display state for special WC pages.
			add_filter( 'display_post_states', array( $this, 'add_display_post_states' ), 10, 2 );
		}

		/* === ADMIN GENERAL === */

		/**
		 * Add a post display state for special WC pages in the page list table.
		 *
		 * @param array   $post_states An array of post display states.
		 * @param WP_Post $post        The current post object.
		 */
		public function add_display_post_states( $post_states, $post ) {
			if ( (int) get_option( 'yith_wcwl_wishlist_page_id' ) === $post->ID ) {
				$post_states['yith_wcwl_page_for_wishlist'] = __( 'Wishlist Page', 'yith-woocommerce-wishlist' );
			}

			return $post_states;
		}

		/* === INITIALIZATION SECTION === */

		/**
		 * Initiator method. Initiate properties.
		 *
		 * @return void
		 * @access private
		 * @since 1.0.0
		 */
		public function init() {
			$prefix = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? 'unminified/' : '';
			$suffix = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min';

			$this->available_tabs = apply_filters(
				'yith_wcwl_available_admin_tabs',
				array(
					'settings'        => __( 'General settings', 'yith-woocommerce-wishlist' ),
					'add_to_wishlist' => __( 'Add to wishlist options', 'yith-woocommerce-wishlist' ),
					'wishlist_page'   => __( 'Wishlist page options', 'yith-woocommerce-wishlist' ),
					'premium'         => __( 'Premium Version', 'yith-woocommerce-wishlist' ),
				)
			);

			wp_register_style( 'yith-wcwl-font-awesome', YITH_WCWL_URL . 'assets/css/font-awesome.min.css', array(), '4.7.0' );
			wp_register_style( 'yith-wcwl-material-icons', 'https://fonts.googleapis.com/icon?family=Material+Icons', array(), '3.0.1' );
			wp_register_style( 'yith-wcwl-admin', YITH_WCWL_URL . 'assets/css/admin.css', array( 'yith-wcwl-font-awesome' ), YITH_WCWL_Frontend()->version );
			wp_register_script( 'yith-wcwl-admin', YITH_WCWL_URL . 'assets/js/' . $prefix . 'admin/yith-wcwl' . $suffix . '.js', array( 'jquery', 'wc-backbone-modal', 'jquery-blockui' ), YITH_WCWL_Frontend()->version, true );

			wp_localize_script(
				'yith-wcwl-admin',
				'yith_wcwl',
				array(
					'nonce' => array(
						'preview_promotion_email'             => wp_create_nonce( 'preview_promotion_email' ),
						'calculate_promotion_email_receivers' => wp_create_nonce( 'calculate_promotion_email_receivers' ),
					),
				)
			);
		}

		/**
		 * Run the installation
		 *
		 * @return void
		 * @since 1.0.0
		 */
		public function install() {
			if ( wp_doing_ajax() ) {
				return;
			}

			$stored_db_version = get_option( 'yith_wcwl_db_version' );

			if ( ! $stored_db_version || ! YITH_WCWL_Install()->is_installed() ) {
				// fresh installation.
				YITH_WCWL_Install()->init();
			} elseif ( version_compare( $stored_db_version, YITH_WCWL_DB_VERSION, '<' ) ) {
				// update database.
				YITH_WCWL_Install()->update( $stored_db_version );
				do_action( 'yith_wcwl_updated' );
			}

			// Plugin installed.
			do_action( 'yith_wcwl_installed' );
		}

		/**
		 * Adds plugin actions link
		 *
		 * @param mixed $links Available action links.
		 * @return array
		 */
		public function action_links( $links ) {
			$links = yith_add_action_links( $links, 'yith_wcwl_panel', defined( 'YITH_WCWL_PREMIUM' ), YITH_WCWL_SLUG );
			return $links;
		}

		/**
		 * Adds plugin row meta
		 *
		 * @param array  $new_row_meta_args Array of meta for current plugin.
		 * @param array  $plugin_meta Not in use.
		 * @param string $plugin_file Current plugin iit file path.
		 * @param array  $plugin_data Plugin info.
		 * @param string $status Plugin status.
		 * @param string $init_file Wishlist plugin init file.
		 * @return array
		 * @since 2.0.0
		 */
		public function add_plugin_meta( $new_row_meta_args, $plugin_meta, $plugin_file, $plugin_data, $status, $init_file = 'YITH_WCWL_INIT' ) {
			if ( defined( $init_file ) && constant( $init_file ) === $plugin_file ) {
				$new_row_meta_args['slug'] = 'yith-woocommerce-wishlist';

			}

			if ( defined( 'YITH_WCWL_PREMIUM' ) ) {
				$new_row_meta_args['is_premium'] = true;

			}

			return $new_row_meta_args;
		}

		/* === WISHLIST SUBPANEL SECTION === */

		/**
		 * Register wishlist panel
		 *
		 * @return void
		 * @since 2.0.0
		 */
		public function register_panel() {

			$args = array(
				'create_menu_page'   => true,
				'parent_slug'        => '',
				'page_title'         => 'WooCommerce Wishlist',
				'menu_title'         => __( 'Wishlist', 'yith-woocommerce-wishlist' ),
				'plugin_slug'        => YITH_WCWL_SLUG,
				'plugin_description' => __( 'Allows your customers to create and share lists of products that they want to purchase on your e-commerce.', 'yith-woocommerce-wishlist' ),
				'capability'         => apply_filters( 'yith_wcwl_settings_panel_capability', 'manage_options' ),
				'parent'             => '',
				'class'              => function_exists( 'yith_set_wrapper_class' ) ? yith_set_wrapper_class() : '',
				'parent_page'        => 'yith_plugin_panel',
				'page'               => 'yith_wcwl_panel',
				'admin-tabs'         => $this->available_tabs,
				'options-path'       => YITH_WCWL_DIR . 'plugin-options',
				'help_tab'           => array(
					'main_video' => array(
						'desc' => _x( 'Check this video to learn how to <b>configure wishlist and customize options:</b>', '[HELP TAB] Video title', 'yith-woocommerce-ajax-navigation' ),
						'url'  => array(
							'it' => 'https://www.youtube.com/embed/9hM9PgBVNTg',
							'es' => 'https://www.youtube.com/embed/GwQkNrrHFs4',
						),
					),
					'hc_url'    => 'https://support.yithemes.com/hc/en-us/categories/360003468437-YITH-WOOCOMMERCE-WISHLIST',
				),
			);

			/* === Fixed: not updated theme  === */
			if ( ! class_exists( 'YIT_Plugin_Panel_WooCommerce' ) ) {
				require_once YITH_WCWL_DIR . 'plugin-fw/lib/yit-plugin-panel-wc.php';
			}

			$this->panel = new YIT_Plugin_Panel_WooCommerce( $args );
		}

		/**
		 * Adds yith-disabled class
		 * Adds class to fields when required, and when disabled state cannot be achieved any other way (eg. by dependencies)
		 *
		 * @param array $classes Array of field extra classes.
		 * @param array $field   Array of field data.
		 *
		 * @return array Filtered array of extra classes
		 */
		public function mark_options_disabled( $classes, $field ) {
			if ( isset( $field['id'] ) && 'yith_wfbt_enable_integration' === $field['id'] && ! ( defined( 'YITH_WFBT' ) && YITH_WFBT ) ) {
				$classes[] = 'yith-disabled';
			}

			return $classes;
		}

		/**
		 * Load admin style.
		 *
		 * @return void
		 * @since 1.0.0
		 */
		public function enqueue() {
			global $woocommerce, $pagenow;

			if ( 'admin.php' === $pagenow && isset( $_GET['page'] ) && 'yith_wcwl_panel' === $_GET['page'] ) { // phpcs:ignore WordPress.Security.NonceVerification.Recommended
				wp_enqueue_style( 'yith-wcwl-admin' );
				wp_enqueue_script( 'yith-wcwl-admin' );

				if ( isset( $_GET['tab'] ) && 'popular' === $_GET['tab'] ) { // phpcs:ignore WordPress.Security.NonceVerification.Recommended
					wp_enqueue_style( 'yith-wcwl-material-icons' );
					wp_enqueue_editor();
				}
			}
		}

		/**
		 * Prints tab premium of the plugin
		 *
		 * @return void
		 * @since 2.0.0
		 */
		public function print_premium_tab() {
			$premium_tab = YITH_WCWL_DIR . 'templates/admin/wishlist-panel-premium.php';

			if ( file_exists( $premium_tab ) ) {
				include $premium_tab;
			}
		}

		/**
		 * Get the premium landing uri
		 *
		 * @since   1.0.0
		 * @author  Andrea Grillo <andrea.grillo@yithemes.com>
		 * @return  string The premium landing link
		 */
		public function get_premium_landing_uri() {
			return $this->premium_landing_url;
		}
	}
}

/**
 * Unique access to instance of YITH_WCWL_Admin class
 *
 * @return \YITH_WCWL_Admin
 * @since 2.0.0
 */
function YITH_WCWL_Admin() { // phpcs:ignore WordPress.NamingConventions.ValidFunctionName.FunctionNameInvalid
	return defined( 'YITH_WCWL_PREMIUM' ) ? YITH_WCWL_Admin_Premium::get_instance() : YITH_WCWL_Admin::get_instance();
}
PK`x1\�[\��$�$$includes/class-yith-wcwl-privacy.phpnu�[���<?php
/**
 * Privacy class; added to let customer export personal data
 *
 * @author YITH
 * @package YITH\Wishlist\Classes
 * @version 3.0.0
 */

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

if ( ! class_exists( 'YITH_WCWL_Privacy' ) ) {
	/**
	 * YITH WCWL Exporter
	 *
	 * @since 2.2.2
	 */
	class YITH_WCWL_Privacy extends YITH_Privacy_Plugin_Abstract {

		/**
		 * Constructor method
		 *
		 * @return \YITH_WCWL_Privacy
		 * @since 2.2.2
		 */
		public function __construct() {

			parent::__construct( 'YITH WooCommerce Wishlist' );

			// set up wishlist data exporter.
			add_filter( 'wp_privacy_personal_data_exporters', array( $this, 'register_exporter' ) );

			// set up wishlist data eraser.
			add_filter( 'wp_privacy_personal_data_erasers', array( $this, 'register_eraser' ) );
		}

		/**
		 * Retrieves privacy example text for wishlist plugin
		 *
		 * @param string $section Section of the message to retrieve.
		 *
		 * @return string Privacy message
		 * @since 2.2.2
		 */
		public function get_privacy_message( $section ) {
			$content = '';

			switch ( $section ) {
				case 'collect_and_store':
					$content = '<p>' . __( 'While you visit our site, we’ll track:', 'yith-woocommerce-wishlist' ) . '</p>' .
								'<ul>' .
								'<li>' . __( 'Products you’ve added to the wishlist: we’ll use this to show you and other users your favourite products, and to create targeted email campaigns.', 'yith-woocommerce-wishlist' ) . '</li>' .
								'<li>' . __( 'Wishlists you’ve created: we’ll keep track of the wishlists you create, and make them visible to the store staff', 'yith-woocommerce-wishlist' ) . '</li>' .
								'</ul>' .
								'<p>' . __( 'We’ll also use cookies to keep track of wishlist contents while you’re browsing our site.', 'yith-woocommerce-wishlist' ) . '</p>';
					break;
				case 'has_access':
					$content = '<p>' . __( 'Members of our team have access to the information you provide us with. For example, both Administrators and Shop Managers can access:', 'yith-woocommerce-wishlist' ) . '</p>' .
								'<ul>' .
								'<li>' . __( 'Wishlist details, such as products added, date of addition, name and privacy settings of your wishlists', 'yith-woocommerce-wishlist' ) . '</li>' .
								'</ul>' .
								'<p>' . __( 'Our team members have access to this information to offer you better deals for the products you love.', 'yith-woocommerce-wishlist' ) . '</p>';
					break;
				case 'share':
				case 'payments':
				default:
					break;
			}

			return apply_filters( 'yith_wcwl_privacy_policy_content', $content, $section );
		}

		/**
		 * Register exporters for wishlist plugin
		 *
		 * @param array $exporters Array of currently registered exporters.
		 * @return array Array of filtered exporters
		 * @since 2.2.2
		 */
		public function register_exporter( $exporters ) {
			$exporters['yith_wcwl_exporter'] = array(
				'exporter_friendly_name' => __( 'Customer wishlists', 'yith-woocommerce-wishlist' ),
				'callback'               => array( $this, 'wishlist_data_exporter' ),
			);

			return $exporters;
		}

		/**
		 * Register eraser for wishlist plugin
		 *
		 * @param array $erasers Array of currently registered erasers.
		 * @return array Array of filtered erasers
		 * @since 2.2.2
		 */
		public function register_eraser( $erasers ) {
			$erasers['yith_wcwl_eraser'] = array(
				'eraser_friendly_name' => __( 'Customer wishlists', 'yith-woocommerce-wishlist' ),
				'callback'             => array( $this, 'wishlist_data_eraser' ),
			);

			return $erasers;
		}

		/**
		 * Export user wishlists (only available for authenticated users' wishlist)
		 *
		 * @param string $email_address Email of the users that requested export.
		 * @param int    $page Current page processed.
		 * @return array Array of data to export
		 * @since 2.2.2
		 */
		public function wishlist_data_exporter( $email_address, $page ) {
			$done           = true;
			$page           = (int) $page;
			$offset         = 10 * ( $page - 1 );
			$user           = get_user_by( 'email', $email_address ); // Check if user has an ID in the DB to load stored personal data.
			$data_to_export = array();

			if ( $user instanceof WP_User ) {
				$wishlists = YITH_WCWL()->get_wishlists(
					array(
						'limit'   => 10,
						'offset'  => $offset,
						'user_id' => $user->ID,
						'orderby' => 'ID',
						'order'   => 'ASC',
					)
				);

				if ( 0 < count( $wishlists ) ) {
					foreach ( $wishlists as $wishlist ) {
						$data_to_export[] = array(
							'group_id'    => 'yith_wcwl_wishlist',
							'group_label' => __( 'Wishlists', 'yith-woocommerce-wishlist' ),
							'item_id'     => 'wishlist-' . $wishlist->get_id(),
							'data'        => $this->get_wishlist_personal_data( $wishlist ),
						);
					}
					$done = 10 > count( $wishlists );
				} else {
					$done = true;
				}
			}

			return array(
				'data' => $data_to_export,
				'done' => $done,
			);
		}

		/**
		 * Deletes user wishlists (only available for authenticated users' wishlist)
		 *
		 * @param string $email_address Email of the users that requested export.
		 * @param int    $page Current page processed.
		 * @return array Result of the operation
		 * @since 2.2.2
		 */
		public function wishlist_data_eraser( $email_address, $page ) {
			global $wpdb;

			$page     = (int) $page;
			$offset   = 10 * ( $page - 1 );
			$user     = get_user_by( 'email', $email_address ); // Check if user has an ID in the DB to load stored personal data.
			$response = array(
				'items_removed'  => false,
				'items_retained' => false,
				'messages'       => array(),
				'done'           => true,
			);

			if ( ! $user instanceof WP_User ) {
				return $response;
			}

			$wishlists = YITH_WCWL()->get_wishlists(
				array(
					'limit'   => 10,
					'offset'  => $offset,
					'user_id' => $user->ID,
					'orderby' => 'ID',
					'order'   => 'ASC',
				)
			);

			if ( 0 < count( $wishlists ) ) {
				foreach ( $wishlists as $wishlist ) {
					if ( apply_filters( 'yith_wcwl_privacy_erase_wishlist_personal_data', true, $wishlist ) ) {
						do_action( 'yith_wcwl_privacy_before_remove_wishlist_personal_data', $wishlist );

						$wishlist->delete();

						do_action( 'yith_wcwl_privacy_remove_wishlist_personal_data', $wishlist );

						/* Translators: %s Order number. */
						$response['messages'][]    = sprintf( __( 'Removed wishlist %s.', 'yith-woocommerce-wishlist' ), $wishlist->get_token() );
						$response['items_removed'] = true;
					} else {
						/* Translators: %s Order number. */
						$response['messages'][]     = sprintf( __( 'Wishlist %s has been retained.', 'yith-woocommerce-wishlist' ), $wishlist->get_token() );
						$response['items_retained'] = true;
					}
				}
				$response['done'] = 10 > count( $wishlists );
			} else {
				$response['done'] = true;
			}

			return $response;
		}

		/**
		 * Retrieves data to export for each user's wishlist
		 *
		 * @param \YITH_WCWL_Wishlist $wishlist Wishlist.
		 * @return array Data to export
		 * @since 2.2.2
		 */
		protected function get_wishlist_personal_data( $wishlist ) {
			$personal_data   = array();
			$props_to_export = apply_filters(
				'yith_wcwl_privacy_export_wishlist_personal_data_props',
				array(
					'wishlist_token'   => __( 'Token', 'yith-woocommerce-wishlist' ),
					'wishlist_url'     => __( 'Wishlist URL', 'yith-woocommerce-wishlist' ),
					'wishlist_name'    => __( 'Title', 'yith-woocommerce-wishlist' ),
					'dateadded'        => _x( 'Created on', 'date when wishlist was created', 'yith-woocommerce-wishlist' ),
					'wishlist_privacy' => __( 'Visibility', 'yith-woocommerce-wishlist' ),
					'items'            => __( 'Items added', 'yith-woocommerce-wishlist' ),
				),
				$wishlist
			);

			foreach ( $props_to_export as $prop => $name ) {
				$value = '';

				switch ( $prop ) {
					case 'items':
						$item_names = array();
						$items      = $wishlist->get_items();

						foreach ( $items as $item ) {
							$product = $item->get_product();

							if ( ! $product ) {
								continue;
							}

							$item_name = $product->get_name() . ' x ' . $item['quantity'];

							if ( $item->get_date_added() ) {
								$item_name .= ' (on: ' . $item->get_date_added() . ')';
							}

							$item_names[] = $item_name;
						}

						$value = implode( ', ', $item_names );
						break;
					case 'wishlist_url':
						$wishlist_url = $wishlist->get_url();

						$value = sprintf( '<a href="%1$s">%1$s</a>', $wishlist_url );
						break;
					case 'wishlist_name':
						$wishlist_name = $wishlist->get_formatted_name();

						$value = $wishlist_name ? $wishlist_name : get_option( 'yith_wcwl_wishlist_title' );
						break;
					case 'dateadded':
						$value = $wishlist->get_date_added();
						break;
					case 'wishlist_privacy':
						$value = $wishlist->get_formatted_privacy();
						break;
					default:
						if ( isset( $wishlist[ $prop ] ) ) {
							$value = $wishlist[ $prop ];
						}
						break;
				}

				$value = apply_filters( 'yith_wcwl_privacy_export_wishlist_personal_data_prop', $value, $prop, $wishlist );

				if ( $value ) {
					$personal_data[] = array(
						'name'  => $name,
						'value' => $value,
					);
				}
			}

			$personal_data = apply_filters( 'yith_wcwl_privacy_export_wishlist_personal_data', $personal_data, $wishlist );

			return $personal_data;
		}
	}
}
PK`x1\n�yy&includes/class-yith-wcwl-shortcode.phpnu�[���<?php
/**
 * Shortcodes class
 *
 * @author YITH
 * @package YITH\Wishlist\Classes
 * @version 3.0.0
 */

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

if ( ! class_exists( 'YITH_WCWL_Shortcode' ) ) {
	/**
	 * YITH WCWL Shortcodes
	 *
	 * @since 1.0.0
	 */
	class YITH_WCWL_Shortcode {

		/**
		 * Init shortcodes available for the plugin
		 *
		 * @return void
		 */
		public static function init() {
			// register shortcodes.
			add_shortcode( 'yith_wcwl_wishlist', array( 'YITH_WCWL_Shortcode', 'wishlist' ) );
			add_shortcode( 'yith_wcwl_add_to_wishlist', array( 'YITH_WCWL_Shortcode', 'add_to_wishlist' ) );

			// register gutenberg blocks.
			add_action( 'init', array( 'YITH_WCWL_Shortcode', 'register_gutenberg_blocks' ) );
			add_action( 'yith_plugin_fw_gutenberg_before_do_shortcode', array( 'YITH_WCWL_Shortcode', 'fix_for_gutenberg_blocks' ), 10, 1 );

			// register elementor widgets.
			add_action( 'init', array( 'YITH_WCWL_Shortcode', 'init_elementor_widgets' ) );
		}

		/* === GUTENBERG BLOCKS === */

		/**
		 * Register available gutenberg blocks
		 *
		 * @return void
		 */
		public static function register_gutenberg_blocks() {
			$blocks = array(
				'yith-wcwl-add-to-wishlist' => array(
					'style'          => 'yith-wcwl-main',
					'script'         => 'jquery-yith-wcwl',
					'title'          => _x( 'YITH Add to wishlist', '[gutenberg]: block name', 'yith-woocommerce-wishlist' ),
					'description'    => _x( 'Shows Add to wishlist button', '[gutenberg]: block description', 'yith-woocommerce-wishlist' ),
					'shortcode_name' => 'yith_wcwl_add_to_wishlist',
					'attributes'     => array(
						'product_id'                => array(
							'type'    => 'text',
							'label'   => __( 'ID of the product to add to the wishlist (leave empty to use the global product)', 'yith-woocommerce-wishlist' ),
							'default' => '',
						),
						'wishlist_url'              => array(
							'type'    => 'text',
							'label'   => __( 'URL of the wishlist page (leave empty to use the default settings)', 'yith-woocommerce-wishlist' ),
							'default' => '',
						),
						'label'                     => array(
							'type'    => 'text',
							'label'   => __( 'Button label (leave empty to use the default settings)', 'yith-woocommerce-wishlist' ),
							'default' => '',
						),
						'browse_wishlist_text'      => array(
							'type'    => 'text',
							'label'   => __( '"Browse wishlist" label (leave empty to use the default settings)', 'yith-woocommerce-wishlist' ),
							'default' => '',
						),
						'already_in_wishslist_text' => array(
							'type'    => 'text',
							'label'   => __( '"Product already in wishlist" label (leave empty to use the default settings)', 'yith-woocommerce-wishlist' ),
							'default' => '',
						),
						'product_added_text'        => array(
							'type'    => 'text',
							'label'   => __( '"Product added to wishlist" label (leave empty to use the default settings)', 'yith-woocommerce-wishlist' ),
							'default' => '',
						),
						'icon'                      => array(
							'type'    => 'text',
							'label'   => __( 'Icon for the button (use any FontAwesome valid class, or leave empty to use the default settings)', 'yith-woocommerce-wishlist' ),
							'default' => '',
						),
						'link_classes'              => array(
							'type'    => 'text',
							'label'   => __( 'Additional CSS classes for the button (leave empty to use the default settings)', 'yith-woocommerce-wishlist' ),
							'default' => '',
						),
					),
				),
				'yith-wcwl-wishlist'        => array(
					'style'          => 'yith-wcwl-main',
					'script'         => 'jquery-yith-wcwl',
					'title'          => _x( 'YITH Wishlist', '[gutenberg]: block name', 'yith-woocommerce-wishlist' ),
					'description'    => _x( 'Shows a list of products in wishlist', '[gutenberg]: block description', 'yith-woocommerce-wishlist' ),
					'shortcode_name' => 'yith_wcwl_wishlist',
					'attributes'     => array(
						'pagination'  => array(
							'type'    => 'select',
							'label'   => __( 'Choose whether to paginate items in the wishlist or show them all', 'yith-woocommerce-wishlist' ),
							'default' => 'no',
							'options' => array(
								'yes' => __( 'Paginate', 'yith-woocommerce-wishlist' ),
								'no'  => __( 'Do not paginate', 'yith-woocommerce-wishlist' ),
							),
						),
						'per_page'    => array(
							'type'    => 'number',
							'label'   => __( 'Number of items to show per page', 'yith-woocommerce-wishlist' ),
							'default' => '5',
						),
						'wishlist_id' => array(
							'type'    => 'text',
							'label'   => __( 'ID of the wishlist to show (e.g. K6EOWXB888ZD)', 'yith-woocommerce-wishlist' ),
							'default' => '',
						),
					),
				),
			);

			yith_plugin_fw_gutenberg_add_blocks( $blocks );
		}

		/**
		 * Fix preview of Gutenberg blocks at backend
		 *
		 * @param string $shortcode Shortcode to render.
		 * @return void
		 */
		public static function fix_for_gutenberg_blocks( $shortcode ) {
			if ( strpos( $shortcode, '[yith_wcwl_add_to_wishlist' ) !== false ) {
				if ( strpos( $shortcode, 'product_id=""' ) !== false ) {
					$products = wc_get_products(
						array(
							'type'  => 'simple',
							'limit' => 1,
						)
					);

					if ( ! empty( $products ) ) {
						global $product;
						$product = array_shift( $products );
					}
				}
			}
		}

		/* === ELEMENTOR WIDGETS === */

		/**
		 * Register custom widgets for Elementor
		 *
		 * @return void
		 */
		public static function init_elementor_widgets() {
			// check if elementor is active.
			if ( ! defined( 'ELEMENTOR_VERSION' ) ) {
				return;
			}

			// include widgets.
			include_once YITH_WCWL_INC . 'widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php';
			include_once YITH_WCWL_INC . 'widgets/elementor/class-yith-wcwl-elementor-wishlist.php';

			// register widgets.
			add_action( 'elementor/widgets/widgets_registered', array( 'YITH_WCWL_Shortcode', 'register_elementor_widgets' ) );
		}

		/**
		 * Register Elementor Widgets
		 *
		 * @return void
		 */
		public static function register_elementor_widgets() {
			\Elementor\Plugin::instance()->widgets_manager->register_widget_type( new YITH_WCWL_Elementor_Add_To_Wishlist() );
			\Elementor\Plugin::instance()->widgets_manager->register_widget_type( new YITH_WCWL_Elementor_Wishlist() );
		}

		/* === SHORTCODES == */

		/**
		 * Print the wishlist HTML.
		 *
		 * @param array  $atts    Array of attributes for the shortcode.
		 * @param string $content Shortcode content (none expected).
		 * @return string Rendered shortcode
		 *
		 * @since 1.0.0
		 */
		public static function wishlist( $atts, $content = null ) {
			global $yith_wcwl_is_wishlist, $yith_wcwl_wishlist_token;

			$atts = shortcode_atts(
				array(
					'per_page'        => 5,
					'current_page'    => 1,
					'pagination'      => 'no',
					'wishlist_id'     => get_query_var( 'wishlist_id', false ),
					'action_params'   => get_query_var( YITH_WCWL()->wishlist_param, false ),
					'no_interactions' => 'no',
					'layout'          => '',
				),
				$atts
			);

			/**
			 * Extracted variables:
			 *
			 * @var $per_page int
			 * @var $current_page int
			 * @var $pagination string
			 * @var $wishlist_id int
			 * @var $action_params array
			 * @var $no_interactions string
			 * @var $layout string
			 */
			extract( $atts ); // phpcs:ignore

			// retrieve options from query string.
			$action_params = explode( '/', apply_filters( 'yith_wcwl_current_wishlist_view_params', $action_params ) );
			$action        = ( isset( $action_params[0] ) ) ? $action_params[0] : 'view';

			// retrieve options from db.
			$default_wishlist_title = get_option( 'yith_wcwl_wishlist_title' );
			$show_price             = 'yes' === get_option( 'yith_wcwl_price_show' );
			$show_stock             = 'yes' === get_option( 'yith_wcwl_stock_show' );
			$show_date_added        = 'yes' === get_option( 'yith_wcwl_show_dateadded' );
			$show_add_to_cart       = 'yes' === get_option( 'yith_wcwl_add_to_cart_show' );
			$show_remove_product    = 'yes' === get_option( 'yith_wcwl_show_remove', 'yes' );
			$show_variation         = 'yes' === get_option( 'yith_wcwl_variation_show' );
			$repeat_remove_button   = 'yes' === get_option( 'yith_wcwl_repeat_remove_button' );
			$add_to_cart_label      = get_option( 'yith_wcwl_add_to_cart_text', __( 'Add to cart', 'yith-woocommerce-wishlist' ) );
			$price_excluding_tax    = 'excl' === get_option( 'woocommerce_tax_display_cart' );
			$ajax_loading           = 'yes' === get_option( 'yith_wcwl_ajax_enable', 'no' );

			// icons.
			$icon = get_option( 'yith_wcwl_add_to_wishlist_icon' );

			if ( 'custom' === $icon ) {
				$custom_icon       = get_option( 'yith_wcwl_add_to_wishlist_custom_icon' );
				$custom_icon_alt   = apply_filters( 'yith_wcwl_custom_icon_alt', '' );
				$custom_icon_width = apply_filters( 'yith_wcwl_custom_width', '32' );

				$heading_icon = '<img src="' . esc_url( $custom_icon ) . '" alt="' . esc_attr( $custom_icon_alt ) . '" width="' . esc_attr( $custom_icon_width ) . '" />';
			} else {
				$heading_icon = ! empty( $icon ) ? '<i class="fa ' . esc_attr( $icon ) . '"></i>' : '';
			}

			// init params needed to load correct template.
			$template_part     = 'view';
			$no_interactions   = 'yes' === $no_interactions;
			$additional_params = array(
				// wishlist data.
				'wishlist'                 => false,
				'is_default'               => true, // @deprecated since 3.0.7
				'is_custom_list'           => false,
				'wishlist_token'           => '',
				'wishlist_id'              => false,
				'is_private'               => false,

				// wishlist items.
				'count'                    => 0,
				'wishlist_items'           => array(),

				// page data.
				'page_title'               => $default_wishlist_title,
				'default_wishlsit_title'   => $default_wishlist_title,
				'current_page'             => $current_page,
				'page_links'               => false,
				'layout'                   => $layout,

				// user data.
				'is_user_logged_in'        => is_user_logged_in(),
				'is_user_owner'            => true,
				'can_user_edit_title'      => false,

				// view data.
				'no_interactions'          => $no_interactions,
				'show_price'               => $show_price,
				'show_dateadded'           => $show_date_added,
				'show_stock_status'        => $show_stock,
				'show_add_to_cart'         => $show_add_to_cart && ! $no_interactions,
				'show_remove_product'      => $show_remove_product && ! $no_interactions,
				'add_to_cart_text'         => $add_to_cart_label,
				'show_ask_estimate_button' => false,
				'ask_estimate_url'         => '',
				'price_excl_tax'           => $price_excluding_tax,
				'show_cb'                  => false,
				'show_quantity'            => false,
				'show_variation'           => $show_variation,
				'show_price_variations'    => false,
				'show_update'              => false,
				'enable_drag_n_drop'       => false,
				'enable_add_all_to_cart'   => false,
				'move_to_another_wishlist' => false,
				'repeat_remove_button'     => $repeat_remove_button && ! $no_interactions,
				'show_last_column'         => $show_date_added || ( $show_add_to_cart && ! $no_interactions ) || ( $repeat_remove_button && ! $no_interactions ),

				// wishlist icon.
				'heading_icon'             => $heading_icon,

				// share data.
				'share_enabled'            => false,

				// template data.
				'template_part'            => $template_part,
				'additional_info'          => false,
				'available_multi_wishlist' => false,
				'users_wishlists'          => array(),
				'form_action'              => esc_url( YITH_WCWL()->get_wishlist_url( 'view' ) ),
			);

			$wishlist = YITH_WCWL_Wishlist_Factory::get_current_wishlist( $atts );

			if ( $wishlist && $wishlist->current_user_can( 'view' ) ) {
				// set global wishlist token.
				$yith_wcwl_wishlist_token = $wishlist->get_token();

				// retrieve wishlist params.
				$is_user_owner = $wishlist->is_current_user_owner();
				$count         = $wishlist->count_items();
				$offset        = 0;

				// sets current page, number of pages and element offset.
				$queried_page = get_query_var( 'paged' );
				$current_page = max( 1, $queried_page ? $queried_page : $current_page );

				// sets variables for pagination, if shortcode atts is set to yes.
				if ( 'yes' === $pagination && ! $no_interactions && $count > 1 ) {
					$pages = ceil( $count / $per_page );

					if ( $current_page > $pages ) {
						$current_page = $pages;
					}

					$offset = ( $current_page - 1 ) * $per_page;

					if ( $pages > 1 ) {
						$page_links = paginate_links(
							array(
								'base'     => esc_url( add_query_arg( array( 'paged' => '%#%' ), $wishlist->get_url() ) ),
								'format'   => '?paged=%#%',
								'current'  => $current_page,
								'total'    => $pages,
								'show_all' => true,
							)
						);
					}
				} else {
					$per_page = 0;
				}

				// retrieve items to print.
				$wishlist_items = $wishlist->get_items( $per_page, $offset );

				// retrieve wishlist information.
				$is_default     = $wishlist->get_is_default();
				$wishlist_token = $wishlist->get_token();
				$wishlist_title = $wishlist->get_formatted_name();

				$additional_params = wp_parse_args(
					array(
						// wishlist items.
						'count'                => $count,
						'wishlist_items'       => $wishlist_items,

						// wishlist data.
						'wishlist'             => $wishlist,
						'is_default'           => $is_default,
						'is_custom_list'       => $is_user_owner && ! $no_interactions, // @deprecated since 3.0.7
						'wishlist_token'       => $wishlist_token,
						'wishlist_id'          => $wishlist->get_id(),
						'is_private'           => $wishlist->has_privacy( 'private' ),
						'ajax_loading'         => $ajax_loading,

						// page data.
						'page_title'           => $wishlist_title,
						'current_page'         => $current_page,
						'page_links'           => isset( $page_links ) && ! $no_interactions ? $page_links : false,

						// user data.
						'is_user_owner'        => $is_user_owner,
						'can_user_edit_title'  => $wishlist->current_user_can( 'update_wishlist' ) && ! $no_interactions,

						// view data.
						'show_remove_product'  => $show_remove_product && $wishlist->current_user_can( 'remove_from_wishlist' ) && ! $no_interactions,
						'repeat_remove_button' => $repeat_remove_button && $wishlist->current_user_can( 'remove_from_wishlist' ) && ! $no_interactions,

						// template data.
						'form_action'          => $wishlist->get_url(),
					),
					$additional_params
				);

				// share options.
				$enable_share            = 'yes' === get_option( 'yith_wcwl_enable_share' ) && ! $wishlist->has_privacy( 'private' );
				$share_facebook_enabled  = 'yes' === get_option( 'yith_wcwl_share_fb' );
				$share_twitter_enabled   = 'yes' === get_option( 'yith_wcwl_share_twitter' );
				$share_pinterest_enabled = 'yes' === get_option( 'yith_wcwl_share_pinterest' );
				$share_email_enabled     = 'yes' === get_option( 'yith_wcwl_share_email' );
				$share_whatsapp_enabled  = 'yes' === get_option( 'yith_wcwl_share_whatsapp' );
				$share_url_enabled       = 'yes' === get_option( 'yith_wcwl_share_url' );

				// we want spaces to be encoded as + instead of %20, so we use urlencode instead of rawurlencode.
				// phpcs:disable WordPress.PHP.DiscouragedPHPFunctions.urlencode_urlencode
				if ( ! $no_interactions && $enable_share && ( $share_facebook_enabled || $share_twitter_enabled || $share_pinterest_enabled || $share_email_enabled || $share_whatsapp_enabled || $share_url_enabled ) ) {
					$share_title      = apply_filters( 'yith_wcwl_socials_share_title', __( 'Share on:', 'yith-woocommerce-wishlist' ) );
					$share_link_url   = apply_filters( 'yith_wcwl_shortcode_share_link_url', $wishlist->get_url(), $wishlist );
					$share_link_title = apply_filters( 'plugin_text', urlencode( get_option( 'yith_wcwl_socials_title' ) ) );
					$share_summary    = urlencode( str_replace( '%wishlist_url%', $share_link_url, get_option( 'yith_wcwl_socials_text' ) ) );

					$share_atts = array(
						'share_facebook_enabled'  => $share_facebook_enabled,
						'share_twitter_enabled'   => $share_twitter_enabled,
						'share_pinterest_enabled' => $share_pinterest_enabled,
						'share_email_enabled'     => $share_email_enabled,
						'share_whatsapp_enabled'  => $share_whatsapp_enabled,
						'share_url_enabled'       => $share_url_enabled,
						'share_title'             => $share_title,
						'share_link_url'          => $share_link_url,
						'share_link_title'        => $share_link_title,
					);

					if ( $share_facebook_enabled ) {
						$share_facebook_icon        = get_option( 'yith_wcwl_fb_button_icon', 'fa-facebook' );
						$share_facebook_custom_icon = get_option( 'yith_wcwl_fb_button_custom_icon' );

						if ( ! in_array( $share_facebook_icon, array( 'none', 'custom' ), true ) ) {
							$share_atts['share_facebook_icon'] = "<i class='fa {$share_facebook_icon}'></i>";
						} elseif ( 'custom' === $share_facebook_icon && $share_facebook_custom_icon ) {
							$alt_text                          = __( 'Share on Facebook', 'yith-woocommerce-wishlist' );
							$share_atts['share_facebook_icon'] = "<img src='{$share_facebook_custom_icon}' alt='{$alt_text}'/>";
						} else {
							$share_atts['share_facebook_icon'] = '';
						}
					}

					if ( $share_twitter_enabled ) {
						$share_twitter_summary     = urlencode( str_replace( '%wishlist_url%', '', get_option( 'yith_wcwl_socials_text' ) ) );
						$share_twitter_icon        = get_option( 'yith_wcwl_tw_button_icon', 'fa-twitter' );
						$share_twitter_custom_icon = get_option( 'yith_wcwl_tw_button_custom_icon' );

						$share_atts['share_twitter_summary'] = $share_twitter_summary;

						if ( ! in_array( $share_twitter_icon, array( 'none', 'custom' ), true ) ) {
							$share_atts['share_twitter_icon'] = "<i class='fa {$share_twitter_icon}'></i>";
						} elseif ( 'custom' === $share_twitter_icon && $share_twitter_custom_icon ) {
							$alt_text                         = __( 'Tweet on Twitter', 'yith-woocommerce-wishlist' );
							$share_atts['share_twitter_icon'] = "<img src='{$share_twitter_custom_icon}' alt='{$alt_text}'/>";
						} else {
							$share_atts['share_twitter_icon'] = '';
						}
					}

					if ( $share_pinterest_enabled ) {
						$share_image_url             = urlencode( get_option( 'yith_wcwl_socials_image_url' ) );
						$share_pinterest_icon        = get_option( 'yith_wcwl_pr_button_icon', 'fa-pinterest' );
						$share_pinterest_custom_icon = get_option( 'yith_wcwl_pr_button_custom_icon' );

						$share_atts['share_summary']   = $share_summary;
						$share_atts['share_image_url'] = $share_image_url;

						if ( ! in_array( $share_pinterest_icon, array( 'none', 'custom' ), true ) ) {
							$share_atts['share_pinterest_icon'] = "<i class='fa {$share_pinterest_icon}'></i>";
						} elseif ( 'custom' === $share_pinterest_icon && $share_pinterest_custom_icon ) {
							$alt_text                           = __( 'Pin on Pinterest', 'yith-woocommerce-wishlist' );
							$share_atts['share_pinterest_icon'] = "<img src='{$share_pinterest_custom_icon}' alt='{$alt_text}'/>";
						} else {
							$share_atts['share_pinterest_icon'] = '';
						}
					}

					if ( $share_email_enabled ) {
						$share_email_icon        = get_option( 'yith_wcwl_em_button_icon', 'fa-email' );
						$share_email_custom_icon = get_option( 'yith_wcwl_em_button_custom_icon' );

						if ( ! in_array( $share_email_icon, array( 'none', 'custom' ), true ) ) {
							$share_atts['share_email_icon'] = "<i class='fa {$share_email_icon}'></i>";
						} elseif ( 'custom' === $share_email_icon && $share_email_custom_icon ) {
							$alt_text                       = __( 'Share via email', 'yith-woocommerce-wishlist' );
							$share_atts['share_email_icon'] = "<img src='{$share_email_custom_icon}' alt='{$alt_text}'/>";
						} else {
							$share_atts['share_email_icon'] = '';
						}
					}

					if ( $share_whatsapp_enabled ) {
						$share_whatsapp_icon        = get_option( 'yith_wcwl_wa_button_icon', 'fa-whatsapp' );
						$share_whatsapp_custom_icon = get_option( 'yith_wcwl_wa_button_custom_icon' );
						$share_whatsapp_url         = '';

						if ( wp_is_mobile() ) {
							$share_whatsapp_url = 'whatsapp://send?text=' . $share_link_title . ' - ' . urlencode( $share_link_url );
						} else {
							$share_whatsapp_url = 'https://web.whatsapp.com/send?text=' . $share_link_title . ' - ' . urlencode( $share_link_url );
						}

						$share_atts['share_whatsapp_url'] = $share_whatsapp_url;

						if ( ! in_array( $share_whatsapp_icon, array( 'none', 'custom' ), true ) ) {
							$share_atts['share_whatsapp_icon'] = "<i class='fa {$share_whatsapp_icon}'></i>";
						} elseif ( 'custom' === $share_whatsapp_icon && $share_whatsapp_custom_icon ) {
							$alt_text                          = __( 'Share on WhatsApp', 'yith-woocommerce-wishlist' );
							$share_atts['share_whatsapp_icon'] = "<img src='{$share_whatsapp_custom_icon}' alt='{$alt_text}'/>";
						} else {
							$share_atts['share_whatsapp_icon'] = '';
						}
					}

					$additional_params['share_enabled'] = true;
					$additional_params['share_atts']    = $share_atts;
				}
				// phpcs:enable WordPress.PHP.DiscouragedPHPFunctions.urlencode_urlencode
			}

			// filter params.
			$additional_params = apply_filters( 'yith_wcwl_wishlist_params', $additional_params, $action, $action_params, $pagination, $per_page, $atts );

			$atts = array_merge(
				$atts,
				$additional_params
			);

			$atts['fragment_options'] = YITH_WCWL_Frontend()->format_fragment_options( $atts, 'wishlist' );

			// apply filters for add to cart buttons.
			YITH_WCWL_Frontend()->alter_add_to_cart_button();

			// sets that we're in the wishlist template.
			$yith_wcwl_is_wishlist = true;

			$template = yith_wcwl_get_template( 'wishlist.php', $atts, true );

			// we're not in wishlist template anymore.
			$yith_wcwl_is_wishlist    = false;
			$yith_wcwl_wishlist_token = null;

			// remove filters for add to cart buttons.
			YITH_WCWL_Frontend()->restore_add_to_cart_button();

			// enqueue scripts.
			YITH_WCWL_Frontend()->enqueue_scripts();

			return apply_filters( 'yith_wcwl_wishlisth_html', $template, array(), true );
		}

		/**
		 * Return "Add to Wishlist" button.
		 *
		 * @param array  $atts Array of parameters for the shortcode.
		 * @param string $content Shortcode content (usually empty).
		 *
		 * @return string Template of the shortcode.
		 *
		 * @since 1.0.0
		 */
		public static function add_to_wishlist( $atts, $content = null ) {
			global $product;

			// product object.
			$current_product = ( isset( $atts['product_id'] ) ) ? wc_get_product( $atts['product_id'] ) : false;
			$current_product = $current_product ? $current_product : $product;

			if ( ! $current_product || ! $current_product instanceof WC_Product ) {
				return '';
			}

			$current_product_id = yit_get_product_id( $current_product );

			// product parent.
			$current_product_parent = $current_product->get_parent_id();

			// labels & icons settings.
			$label_option        = get_option( 'yith_wcwl_add_to_wishlist_text' );
			$icon_option         = get_option( 'yith_wcwl_add_to_wishlist_icon' );
			$custom_icon         = 'none' !== $icon_option ? get_option( 'yith_wcwl_add_to_wishlist_custom_icon' ) : '';
			$custom_icon_alt     = apply_filters( 'yith_wcwl_custom_icon_alt', '' );
			$custom_icon_width   = apply_filters( 'yith_wcwl_custom_width', '32' );
			$added_icon_option   = get_option( 'yith_wcwl_added_to_wishlist_icon' );
			$custom_added_icon   = 'none' !== $added_icon_option ? get_option( 'yith_wcwl_added_to_wishlist_custom_icon' ) : '';
			$browse_wishlist     = get_option( 'yith_wcwl_browse_wishlist_text' );
			$already_in_wishlist = get_option( 'yith_wcwl_already_in_wishlist_text' );
			$product_added       = get_option( 'yith_wcwl_product_added_text' );
			$loop_position       = get_option( 'yith_wcwl_loop_position' );

			// button label.
			$label = apply_filters( 'yith_wcwl_button_label', $label_option );

			// button icon.
			$icon       = apply_filters( 'yith_wcwl_button_icon', 'none' !== $icon_option ? $icon_option : '' );
			$added_icon = apply_filters( 'yith_wcwl_button_added_icon', 'none' !== $added_icon_option ? $added_icon_option : '' );

			// button class.
			$is_single         = isset( $atts['is_single'] ) ? $atts['is_single'] : yith_wcwl_is_single();
			$use_custom_button = get_option( 'yith_wcwl_add_to_wishlist_style' );
			$classes           = apply_filters( 'yith_wcwl_add_to_wishlist_button_classes', in_array( $use_custom_button, array( 'button_custom', 'button_default' ), true ) ? 'add_to_wishlist single_add_to_wishlist button alt' : 'add_to_wishlist single_add_to_wishlist' );

			// check if product is already in wishlist.
			$exists                      = YITH_WCWL()->is_product_in_wishlist( $current_product_id );
			$added_to_wishlist_behaviour = get_option( 'yith_wcwl_after_add_to_wishlist_behaviour', 'view' );
			$container_classes           = $exists ? 'exists' : false;
			$found_in_list               = $exists ? yith_wcwl_get_wishlist( false ) : false;
			$found_item                  = $found_in_list ? $found_in_list->get_product( $current_product_id ) : false;

			$template_part = $exists && 'add' !== $added_to_wishlist_behaviour ? 'browse' : 'button';
			$template_part = isset( $atts['added_to_wishlist'] ) ? ( $atts['added_to_wishlist'] ? 'added' : 'browse' ) : $template_part;

			if ( $found_in_list && in_array( $template_part, array( 'browse', 'added' ), true ) && 'remove' === $added_to_wishlist_behaviour ) {
				$template_part = 'remove';
			}

			if ( 'remove' === $template_part ) {
				$classes = str_replace( array( 'single_add_to_wishlist', 'add_to_wishlist' ), '', $classes );
				$label   = apply_filters( 'yith_wcwl_remove_from_wishlist_label', __( 'Remove from list', 'yith-woocommerce-wishlist' ) );
			}

			// forcefully add icon when showing button over image, if no one is set.
			if ( ! $is_single && 'before_image' === get_option( 'yith_wcwl_loop_position' ) ) {
				$classes = str_replace( 'button', '', $classes );
			}

			$ajax_loading = 'yes' === get_option( 'yith_wcwl_ajax_enable', 'no' );

			// get wishlist url.
			$wishlist_url = YITH_WCWL()->get_wishlist_url();

			// get product type.
			$product_type = $current_product->get_type();

			$additional_params = array(
				'base_url'                  => yith_wcwl_get_current_url(),
				'wishlist_url'              => $wishlist_url,
				'in_default_wishlist'       => $exists,
				'exists'                    => $exists,
				'container_classes'         => $container_classes,
				'is_single'                 => $is_single,
				'show_exists'               => false,
				'found_in_list'             => $found_in_list,
				'found_item'                => $found_item,
				'product_id'                => $current_product_id,
				'parent_product_id'         => $current_product_parent ? $current_product_parent : $current_product_id,
				'product_type'              => $product_type,
				'label'                     => $label,
				'show_view'                 => yith_wcwl_is_single(),
				'browse_wishlist_text'      => apply_filters( 'yith_wcwl_browse_wishlist_label', $browse_wishlist ),
				'already_in_wishslist_text' => apply_filters( 'yith_wcwl_product_already_in_wishlist_text_button', $already_in_wishlist ),
				'product_added_text'        => apply_filters( 'yith_wcwl_product_added_to_wishlist_message_button', $product_added ),
				'icon'                      => $icon,
				'heading_icon'              => $icon,
				'link_classes'              => $classes,
				'available_multi_wishlist'  => false,
				'disable_wishlist'          => false,
				'show_count'                => false,
				'ajax_loading'              => $ajax_loading,
				'loop_position'             => $loop_position,
				'template_part'             => $template_part,
			);
			// let third party developer filter options.
			$additional_params = apply_filters( 'yith_wcwl_add_to_wishlist_params', $additional_params, $atts );

			$atts = shortcode_atts(
				$additional_params,
				$atts
			);

			// set icon when missing, when on top of image (icon only, icon required).
			if ( ! $is_single && 'before_image' === get_option( 'yith_wcwl_loop_position' ) && ( ! $atts['icon'] || 'custom' === $atts['icon'] ) ) {
				if ( ! $atts['icon'] ) {
					$atts['icon'] = 'fa-heart-o';
				} elseif ( 'custom' === $atts['icon'] && ! $custom_icon && ! $custom_added_icon ) {
					$atts['icon'] = 'fa-heart-o';
				}
			}

			// change icon when item exists in wishlist.
			if ( $atts['exists'] ) {
				if ( $added_icon && ( 'custom' !== $added_icon || $custom_added_icon || $custom_icon ) ) {
					$atts['icon'] = $added_icon;
				} elseif ( strpos( $atts['icon'], '-o' ) !== false ) {
					$atts['icon'] = str_replace( '-o', '', $atts['icon'] );
				}
			}

			if ( 'custom' === $atts['icon'] && $atts['exists'] && $custom_added_icon ) {
				$icon_html         = '<img class="yith-wcwl-icon" src="' . esc_url( $custom_added_icon ) . '" alt="' . esc_attr( $custom_icon_alt ) . '" width="' . esc_attr( $custom_icon_width ) . '" />';
				$heading_icon_html = ! empty( $custom_icon ) ? '<img class="yith-wcwl-icon" src="' . esc_url( $custom_icon ) . '" alt="' . esc_attr( $custom_icon_alt ) . '" width="' . esc_attr( $custom_icon_width ) . '" />' : '';
			} elseif ( 'custom' === $atts['icon'] && $custom_icon ) {
				$icon_html         = '<img class="yith-wcwl-icon" src="' . esc_url( $custom_icon ) . '" alt="' . esc_attr( $custom_icon_alt ) . '" width="' . esc_attr( $custom_icon_width ) . '" />';
				$heading_icon_html = $icon_html;
			} elseif ( 'custom' !== $atts['icon'] ) {
				$icon_html         = ! empty( $atts['icon'] ) ? '<i class="yith-wcwl-icon fa ' . $atts['icon'] . '"></i>' : '';
				$heading_icon_html = ! empty( $atts['heading_icon'] ) ? '<i class="yith-wcwl-icon fa ' . $atts['heading_icon'] . '"></i>' : '';
			} else {
				$icon_html         = '';
				$heading_icon_html = '';
			}

			// set fragment options.
			$atts['fragment_options'] = YITH_WCWL_Frontend()->format_fragment_options( $atts, 'add_to_wishlist' );
			$atts['icon']             = apply_filters( 'yith_wcwl_add_to_wishlist_icon_html', $icon_html, $atts );
			$atts['heading_icon']     = apply_filters( 'yith_wcwl_add_to_wishlist_heading_icon_html', $heading_icon_html, $atts );

			$template = yith_wcwl_get_template( 'add-to-wishlist.php', $atts, true );

			// enqueue scripts.
			YITH_WCWL_Frontend()->enqueue_scripts();

			return apply_filters( 'yith_wcwl_add_to_wishlisth_button_html', $template, $wishlist_url, $product_type, $exists, $atts );
		}

	}
}

YITH_WCWL_Shortcode::init();
PK`x1\��J̰2�2-includes/class-yith-wcwl-wishlist-factory.phpnu�[���<?php
/**
 * Wishlist Factory class
 *
 * @author YITH
 * @package YITH\Wishlist\Classes\Wishlists
 * @version 3.0.0
 */

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

if ( ! class_exists( 'YITH_WCWL_Wishlist_Factory' ) ) {
	/**
	 * This class is used to create all Wishlist object required by the plugin
	 *
	 * @since 3.0.0
	 */
	class YITH_WCWL_Wishlist_Factory {
		/**
		 * Retrieve a specific wishlist from ID or token
		 *
		 * @param string|int|bool $wishlist_id Wishlist id or token or false, when you want to retrieve default.
		 * @param string          $context Context; when on edit context, and no wishlist matches selection, default wishlist will be created and returned.
		 * @return \YITH_WCWL_Wishlist|bool Wishlist object or false on failure
		 */
		public static function get_wishlist( $wishlist_id = false, $context = 'view' ) {
			if ( ! $wishlist_id ) {
				return self::get_default_wishlist( false, $context );
			}

			try {
				return new YITH_WCWL_Wishlist( $wishlist_id );
			} catch ( Exception $e ) {
				wc_caught_exception( $e, __FUNCTION__, func_get_args() );
				return false;
			}
		}

		/**
		 * Query database to search for wishlists that matches specific parameters
		 *
		 * @param array $args Array of valid arguments<br/>
		 *              [<br/>
		 *              'id'                  // Wishlist id to search, if any<br/>
		 *              'user_id'             // User owner<br/>
		 *              'wishlist_slug'       // Slug of the wishlist to search<br/>
		 *              'wishlist_name'       // Name of the wishlist to search<br/>
		 *              'wishlist_token'      // Token of the wishlist to search<br/>
		 *              'wishlist_visibility' // Wishlist visibility: all, visible, public, shared, private<br/>
		 *              'user_search'         // String to match against first name / last name or email of the wishlist owner<br/>
		 *              'is_default'          // Whether wishlist should be default or not<br/>
		 *              'orderby'             // Column used to sort final result (could be any wishlist lists column)<br/>
		 *              'order'               // Sorting order<br/>
		 *              'limit'               // Pagination param: maximum number of elements in the set. 0 to retrieve all elements<br/>
		 *              'offset'              // Pagination param: offset for the current set. 0 to start from the first item<br/>
		 *              'show_empty'          // Whether to show empty lists os not<br/>
		 *              ].
		 *
		 * @return \YITH_WCWL_Wishlist[]|bool A list of matching wishlists or false on failure
		 */
		public static function get_wishlists( $args = array() ) {
			$args = apply_filters( 'yith_wcwl_wishlist_query_args', $args );

			try {
				$results = WC_Data_Store::load( 'wishlist' )->query( $args );
				return apply_filters( 'yith_wcwl_wishlist_query', $results, $args );
			} catch ( Exception $e ) {
				wc_caught_exception( $e, __FUNCTION__, func_get_args() );
				return false;
			}
		}

		/**
		 * Query database to count wishlists that matches specific parameters
		 *
		 * @param array $args Same parameters allowed for {@see get_wishlists}.
		 * @return int Count
		 */
		public static function get_wishlists_count( $args = array() ) {
			$args = apply_filters( 'yith_wcwl_wishlists_count_query_args', $args );

			try {
				$result = WC_Data_Store::load( 'wishlist' )->count( $args );
				return apply_filters( 'yith_wcwl_wishlist_count_query', $result, $args );
			} catch ( Exception $e ) {
				wc_caught_exception( $e, __FUNCTION__, func_get_args() );
				return 0;
			}
		}

		/**
		 * Search user ids whose wishlists match passed parameters
		 * NOTE: this will only retrieve wishlists for a logged in user, while guests wishlist will be ignored
		 *
		 * @param array $args Array of valid arguments<br/>
		 * [<br/>
		 *     'search' // String to match against first name / last name / user login or user email of wishlist owner<br/>
		 *     'limit'  // Pagination param: number of items to show in one page. 0 to show all items<br/>
		 *     'offset' // Pagination param: offset for the current set. 0 to start from the first item<br/>
		 * ].
		 * @return int[]|bool Array of user ids, or false on failure
		 */
		public static function get_wishlist_users( $args = array() ) {
			$args = apply_filters( 'yith_wcwl_wishlist_users_query_args', $args );

			try {
				$results = WC_Data_Store::load( 'wishlist' )->search_users( $args );
				return apply_filters( 'yith_wcwl_wishlist_user_query', $results, $args );
			} catch ( Exception $e ) {
				wc_caught_exception( $e, __FUNCTION__, func_get_args() );
				return false;
			}
		}

		/**
		 * Retrieve current wishlist, basing on query string parameters, user or session
		 *
		 * @param array $args Array of arguments<br/>
		 *              [<br/>
		 *              'action_params' // query string parameters
		 *              'user_id'       // user we need to retrieve wishlist for
		 *              'wishlist_id'   // id of the wishlist we need to retrieve
		 *              ].
		 * @return YITH_WCWL_Wishlist|bool
		 */
		public static function get_current_wishlist( $args = array() ) {
			$defaults = array(
				'action_params' => get_query_var( YITH_WCWL()->wishlist_param, false ),
				'user_id'       => isset( $_GET['user_id'] ) ? intval( $_GET['user_id'] ) : false, // phpcs:ignore WordPress.Security.NonceVerification.Recommended
				'wishlist_id'   => false,
			);

			/**
			 * Extracted variables:
			 *
			 * @var $action_params
			 * @var $user_id
			 * @var $wishlist_id
			 */
			$args = wp_parse_args( $args, $defaults );
			extract( $args ); // phpcs:ignore WordPress.PHP.DontExtract

			// retrieve options from query string.
			$action_params = explode( '/', apply_filters( 'yith_wcwl_current_wishlist_view_params', $action_params ) );

			$action = ( isset( $action_params[0] ) ) ? $action_params[0] : 'view';
			$value  = ( isset( $action_params[1] ) ) ? $action_params[1] : '';

			if ( ! empty( $wishlist_id ) ) {
				return self::get_wishlist( $wishlist_id );
			}

			if ( ! empty( $user_id ) ) {
				return self::get_default_wishlist( $user_id );
			}

			if (
				empty( $action ) ||
				! in_array( $action, YITH_WCWL()->get_available_views(), true ) ||
				in_array( $action, array( 'view', 'user' ), true ) ||
				( in_array( $action, array( 'manage', 'create' ), true ) && ! YITH_WCWL()->is_multi_wishlist_enabled() )
			) {
				switch ( $action ) {
					case 'user':
						$user_id = $value;
						$user_id = ( ! $user_id ) ? get_query_var( $user_id, false ) : $user_id;

						return self::get_default_wishlist( intval( $user_id ) );
					case 'view':
					default:
						return self::get_wishlist( sanitize_text_field( $value ) );
				}
			}

			return false;
		}

		/**
		 * Retrieve default wishlist for current user (or current session)
		 *
		 * @param string|int|bool $id      Customer or session id; false if you want to use current customer or session.
		 * @param string          $context Context; when on edit context, wishlist will be created, if not exists.
		 *
		 * @return \YITH_WCWL_Wishlist|bool Wishlist object or false on failure
		 */
		public static function get_default_wishlist( $id = false, $context = 'read' ) {
			try {
				$default_wishlist = WC_Data_Store::load( 'wishlist' )->get_default_wishlist( $id, $context );
				return apply_filters( 'yith_wcwl_default_wishlist', $default_wishlist, $id, $context );
			} catch ( Exception $e ) {
				wc_caught_exception( $e, __FUNCTION__, func_get_args() );
				return false;
			}
		}

		/**
		 * Retrieve default wishlist for current user (or current session)
		 *
		 * @param string|int|bool $id Customer or session id; false if you want to use current customer or session.
		 * @return \YITH_WCWL_Wishlist|bool Wishlist object or false on failure
		 */
		public static function generate_default_wishlist( $id = false ) {
			return self::get_default_wishlist( $id );
		}

		/**
		 * Generate new token for a wishlist
		 *
		 * @return string|bool Brand new token, or false on failure
		 */
		public static function generate_wishlist_token() {
			try {
				$token = WC_Data_Store::load( 'wishlist' )->generate_token();
				return $token;
			} catch ( Exception $e ) {
				wc_caught_exception( $e, __FUNCTION__, func_get_args() );
				return false;
			}
		}

		/**
		 * Retrieve a specific wishlist item from ID
		 *
		 * @param int|\YITH_WCWL_Wishlist_Item|stdClass $item_id Item identifier, or item itself.
		 * @return \YITH_WCWL_Wishlist_Item|bool Wishlist item, or false on failure
		 */
		public static function get_wishlist_item( $item_id = 0 ) {
			if ( is_numeric( $item_id ) ) {
				$id = $item_id;
			} elseif ( $item_id instanceof YITH_WCWL_Wishlist_Item ) {
				$id = $item_id->get_id();
			} elseif ( is_object( $item_id ) && ! empty( $item_id->ID ) ) {
				$id = $item_id->ID;
			} else {
				$id = false;
			}

			if ( $id ) {
				try {
					return new YITH_WCWL_Wishlist_Item( $id );
				} catch ( Exception $e ) {
					return false;
				}
			}
			return false;
		}

		/**
		 * Retrieve item from a wishlist by product id
		 *
		 * @param int|string $wishlist_id Wishlist id or token.
		 * @param int        $product_id  Product ID.
		 * @return YITH_WCWL_Wishlist_Item|bool Item, or false when no item found
		 */
		public static function get_wishlist_item_by_product_id( $wishlist_id, $product_id ) {
			$wishlist = self::get_wishlist( $wishlist_id );

			if ( $wishlist ) {
				return $wishlist->get_product( $product_id );
			}

			return false;
		}

		/**
		 * Query database to search for wishlist items that matches specific parameters
		 *
		 * @param array $args Arguments array; it may contains any of the following:<br/>
		 * [<br/>
		 *     'user_id'             // Owner of the wishlist; default to current user logged in (if any), or false for cookie wishlist<br/>
		 *     'product_id'          // Product to search in the wishlist<br/>
		 *     'wishlist_id'         // wishlist_id for a specific wishlist, false for default, or all for any wishlist<br/>
		 *     'wishlist_token'      // wishlist token, or false as default<br/>
		 *     'wishlist_visibility' // all, visible, public, shared, private<br/>
		 *     'is_default' =>       // whether searched wishlist should be default one <br/>
		 *     'id' => false,        // only for table select<br/>
		 *     'limit' => false,     // pagination param; number of items per page. 0 to get all items<br/>
		 *     'offset' => 0         // pagination param; offset for the current set. 0 to start from the first item<br/>
		 * ].
		 *
		 * @return \YITH_WCWL_Wishlist_Item[]|bool A list of matching items or false on failure
		 */
		public static function get_wishlist_items( $args = array() ) {
			$args = apply_filters( 'yith_wcwl_wishlist_items_query_args', $args );

			try {
				$results = WC_Data_Store::load( 'wishlist-item' )->query( $args );
				return apply_filters( 'yith_wcwl_wishlist_item_query', $results, $args );
			} catch ( Exception $e ) {
				wc_caught_exception( $e, __FUNCTION__, func_get_args() );
				return false;
			}
		}

		/**
		 * Query database to count wishlist items that matches specific parameters
		 *
		 * @param array $args Same parameters allowed for {@see get_wishlist_items}.
		 * @return int Count
		 */
		public static function get_wishlist_items_count( $args = array() ) {
			$args = apply_filters( 'yith_wcwl_wishlist_items_count_query_args', $args );

			try {
				$result = WC_Data_Store::load( 'wishlist-item' )->count( $args );
				return apply_filters( 'yith_wcwl_wishlist_item_count_query', $result, $args );
			} catch ( Exception $e ) {
				wc_caught_exception( $e, __FUNCTION__, func_get_args() );
				return 0;
			}
		}

		/**
		 * Count how many times a specific product was added to wishlist
		 *
		 * @param int $product_id Product id.
		 * @return int Count of times product was added to cart
		 */
		public static function get_times_added_count( $product_id ) {
			try {
				$result = WC_Data_Store::load( 'wishlist-item' )->count_times_added( $product_id );
				return (int) apply_filters( 'yith_wcwl_wishlist_times_added_count_query', $result, $product_id );
			} catch ( Exception $e ) {
				wc_caught_exception( $e, __FUNCTION__, func_get_args() );
				return 0;
			}
		}

		/**
		 * Count how many times a specific product was added to wishlist by the current user
		 *
		 * @param int $product_id Product id.
		 * @return int Count of times product was added to cart
		 */
		public static function get_times_current_user_added_count( $product_id ) {
			try {
				$result = WC_Data_Store::load( 'wishlist-item' )->count_times_added( $product_id, 'current' );
				return (int) apply_filters( 'yith_wcwl_wishlist_times_current_user_added_count_query', $result, $product_id );
			} catch ( Exception $e ) {
				wc_caught_exception( $e, __FUNCTION__, func_get_args() );
				return 0;
			}
		}
	}
}
PK`x1\��U0PTPT includes/functions-yith-wcwl.phpnu�[���<?php
/**
 * Functions file
 *
 * @author YITH
 * @package YITH\Wishlist\Functions
 * @version 3.0.0
 */

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

/* === TESTER FUNCTIONS === */

if ( ! function_exists( 'yith_wcwl_is_wishlist' ) ) {
	/**
	 * Check if we're printing wishlist shortcode
	 *
	 * @return bool
	 * @since 2.0.0
	 */
	function yith_wcwl_is_wishlist() {
		global $yith_wcwl_is_wishlist;

		return $yith_wcwl_is_wishlist;
	}
}

if ( ! function_exists( 'yith_wcwl_is_wishlist_page' ) ) {
	/**
	 * Check if current page is wishlist
	 *
	 * @return bool
	 * @since 2.0.13
	 */
	function yith_wcwl_is_wishlist_page() {
		$wishlist_page_id = YITH_WCWL()->get_wishlist_page_id();

		if ( ! $wishlist_page_id ) {
			return false;
		}

		return apply_filters( 'yith_wcwl_is_wishlist_page', is_page( $wishlist_page_id ) );
	}
}

if ( ! function_exists( 'yith_wcwl_is_single' ) ) {
	/**
	 * Returns true if it finds that you're printing a single product
	 * Should return false in any loop (including the ones inside single product page)
	 *
	 * @return bool Whether you're currently on single product template
	 * @since 3.0.0
	 */
	function yith_wcwl_is_single() {
		return apply_filters( 'yith_wcwl_is_single', is_product() && ! in_array( wc_get_loop_prop( 'name' ), array( 'related', 'up-sells' ), true ) && ! wc_get_loop_prop( 'is_shortcode' ) );
	}
}

if ( ! function_exists( 'yith_wcwl_is_mobile' ) ) {
	/**
	 * Returns true if we're currently on mobile view
	 *
	 * @return bool Whether you're currently on mobile view
	 * @since 3.0.0
	 */
	function yith_wcwl_is_mobile() {
		global $yith_wcwl_is_mobile;

		return apply_filters( 'yith_wcwl_is_wishlist_responsive', true ) && ( wp_is_mobile() || $yith_wcwl_is_mobile );
	}
}

/* === TEMPLATE FUNCTIONS === */

if ( ! function_exists( 'yith_wcwl_locate_template' ) ) {
	/**
	 * Locate the templates and return the path of the file found
	 *
	 * @param string $path Path to locate.
	 * @param array  $var  Unused.
	 *
	 * @return string
	 * @since 1.0.0
	 */
	function yith_wcwl_locate_template( $path, $var = null ) {
		$woocommerce_base = WC()->template_path();

		$template_woocommerce_path = $woocommerce_base . $path;
		$template_path             = '/' . $path;
		$plugin_path               = YITH_WCWL_DIR . 'templates/' . $path;

		$located = locate_template(
			array(
				$template_woocommerce_path, // Search in <theme>/woocommerce/.
				$template_path,             // Search in <theme>/.
			)
		);

		if ( ! $located && file_exists( $plugin_path ) ) {
			return apply_filters( 'yith_wcwl_locate_template', $plugin_path, $path );
		}

		return apply_filters( 'yith_wcwl_locate_template', $located, $path );
	}
}

if ( ! function_exists( 'yith_wcwl_get_template' ) ) {
	/**
	 * Retrieve a template file.
	 *
	 * @param string $path   Path to get.
	 * @param mixed  $var    Variables to send to template.
	 * @param bool   $return Whether to return or print the template.
	 *
	 * @return string|void
	 * @since 1.0.0
	 */
	function yith_wcwl_get_template( $path, $var = null, $return = false ) {
		$located = yith_wcwl_locate_template( $path, $var );

		if ( $var && is_array( $var ) ) {
			$atts = $var;
			extract( $var ); // phpcs:ignore WordPress.PHP.DontExtract.extract_extract
		}

		if ( $return ) {
			ob_start();
		}

		// include file located.
		include $located;

		if ( $return ) {
			return ob_get_clean();
		}
	}
}

if ( ! function_exists( 'yith_wcwl_get_template_part' ) ) {
	/**
	 * Search and include a template part
	 *
	 * @param string $template        Template to include.
	 * @param string $template_part   Template part.
	 * @param string $template_layout Template variation.
	 * @param array  $var             Array of variables to be passed to template.
	 * @param bool   $return          Whether to return template or print it.
	 *
	 * @return string|null
	 */
	function yith_wcwl_get_template_part( $template = '', $template_part = '', $template_layout = '', $var = array(), $return = false ) {
		if ( ! empty( $template_part ) ) {
			$template_part = '-' . $template_part;
		}

		if ( ! empty( $template_layout ) ) {
			$template_layout = '-' . $template_layout;
		}

		$template_hierarchy = apply_filters(
			'yith_wcwl_template_part_hierarchy',
			array_merge(
				! yith_wcwl_is_mobile() ? array() : array(
					"wishlist-{$template}{$template_layout}{$template_part}-mobile.php",
					"wishlist-{$template}{$template_part}-mobile.php",
				),
				array(
					"wishlist-{$template}{$template_layout}{$template_part}.php",
					"wishlist-{$template}{$template_part}.php",
				)
			),
			$template,
			$template_part,
			$template_layout,
			$var
		);

		foreach ( $template_hierarchy as $filename ) {
			$located = yith_wcwl_locate_template( $filename );

			if ( $located ) {
				return yith_wcwl_get_template( $filename, $var, $return );
			}
		}
	}
}

/* === COUNT FUNCTIONS === */

if ( ! function_exists( 'yith_wcwl_count_products' ) ) {
	/**
	 * Retrieve the number of products in the wishlist.
	 *
	 * @param string|bool $wishlist_token Optional wishlist token.
	 *
	 * @return int
	 * @since 1.0.0
	 */
	function yith_wcwl_count_products( $wishlist_token = false ) {
		return YITH_WCWL()->count_products( $wishlist_token );
	}
}

if ( ! function_exists( 'yith_wcwl_count_all_products' ) ) {
	/**
	 * Retrieve the number of products in all the wishlists.
	 *
	 * @return int
	 * @since 2.0.13
	 */
	function yith_wcwl_count_all_products() {
		return YITH_WCWL()->count_all_products();
	}
}

if ( ! function_exists( 'yith_wcwl_count_add_to_wishlist' ) ) {
	/**
	 * Count number of times a product was added to users wishlists
	 *
	 * @param int|bool $product_id Product id.
	 *
	 * @return int Number of times the product was added to wishlists
	 * @since 2.0.13
	 */
	function yith_wcwl_count_add_to_wishlist( $product_id = false ) {
		return YITH_WCWL()->count_add_to_wishlist( $product_id );
	}
}

if ( ! function_exists( 'yith_wcwl_get_count_text' ) ) {
	/**
	 * Returns the label that states how many users added a specific product to wishlist
	 *
	 * @param int|bool $product_id Product id or false, when you want to use global product as reference.
	 *
	 * @return string Label with count of items
	 */
	function yith_wcwl_get_count_text( $product_id = false ) {
		$count              = yith_wcwl_count_add_to_wishlist( $product_id );
		$current_user_count = $count ? YITH_WCWL_Wishlist_Factory::get_times_current_user_added_count( $product_id ) : 0;

		// if no user added to wishlist, return empty string.
		if ( ! $count ) {
			return apply_filters( 'yith_wcwl_count_text_empty', '', $product_id );
		} elseif ( ! $current_user_count ) {
			// translators: 1. Number of users.
			$count_text = sprintf( _n( '%d user', '%d users', $count, 'yith-woocommerce-wishlist' ), $count );
			$text       = _n( 'has this item in wishlist', 'have this item in wishlist', $count, 'yith-woocommerce-wishlist' );
		} elseif ( $count === $current_user_count ) {
			$count_text = __( 'You\'re the first', 'yith-woocommerce-wishlist' );
			$text       = __( 'to add this item in wishlist', 'yith-woocommerce-wishlist' );
		} else {
			$other_count = $count - $current_user_count;
			// translators: 1. Count of users when many, or "another" when only one.
			$count_text = sprintf( _n( 'You and %s user', 'You and %d users', $other_count, 'yith-woocommerce-wishlist' ), 1 === $other_count ? __( 'another', 'yith-woocommerce-wishlist' ) : $other_count ); // phpcs:ignore WordPress.WP.I18n.MismatchedPlaceholders
			$text       = __( 'have this item in wishlist', 'yith-woocommerce-wishlist' );
		}

		$label = sprintf( '<div class="count-add-to-wishlist"><span class="count">%s</span> %s</div>', $count_text, $text );

		return apply_filters( 'yith_wcwl_count_text', $label, $product_id, $current_user_count, $count );
	}
}

/* === COOKIE FUNCTIONS === */

if ( ! function_exists( 'yith_wcwl_get_cookie_expiration' ) ) {
	/**
	 * Returns default expiration for wishlist cookie
	 *
	 * @return int Number of seconds the cookie should last.
	 */
	function yith_wcwl_get_cookie_expiration() {
		return intval( apply_filters( 'yith_wcwl_cookie_expiration', 60 * 60 * 24 * 30 ) );
	}
}

if ( ! function_exists( 'yith_setcookie' ) ) {
	/**
	 * Create a cookie.
	 *
	 * @param string $name     Cookie name.
	 * @param mixed  $value    Cookie value.
	 * @param int    $time     Cookie expiration time.
	 * @param bool   $secure   Whether cookie should be available to secured connection only.
	 * @param bool   $httponly Whether cookie should be available to HTTP request only (no js handling).
	 *
	 * @return bool
	 * @since 1.0.0
	 */
	function yith_setcookie( $name, $value = array(), $time = null, $secure = false, $httponly = false ) {
		if ( ! apply_filters( 'yith_wcwl_set_cookie', true ) || empty( $name ) ) {
			return false;
		}

		$time = ! empty( $time ) ? $time : time() + yith_wcwl_get_cookie_expiration();

		$value      = wp_json_encode( stripslashes_deep( $value ) );
		$expiration = apply_filters( 'yith_wcwl_cookie_expiration_time', $time ); // Default 30 days.

		$_COOKIE[ $name ] = $value;
		wc_setcookie( $name, $value, $expiration, $secure, $httponly );

		return true;
	}
}

if ( ! function_exists( 'yith_getcookie' ) ) {
	/**
	 * Retrieve the value of a cookie.
	 *
	 * @param string $name Cookie name.
	 *
	 * @return mixed
	 * @since 1.0.0
	 */
	function yith_getcookie( $name ) {
		if ( isset( $_COOKIE[ $name ] ) ) {
			return json_decode( sanitize_text_field( wp_unslash( $_COOKIE[ $name ] ) ), true );
		}

		return array();
	}
}

if ( ! function_exists( 'yith_destroycookie' ) ) {
	/**
	 * Destroy a cookie.
	 *
	 * @param string $name Cookie name.
	 *
	 * @return void
	 * @since 1.0.0
	 */
	function yith_destroycookie( $name ) {
		yith_setcookie( $name, array(), time() - 3600 );
	}
}

/* === GET FUNCTIONS === */

if ( ! function_exists( 'yith_wcwl_get_hidden_products' ) ) {
	/**
	 * Retrieves a list of hidden products, whatever WC version is running
	 *
	 * WC switched from meta _visibility to product_visibility taxonomy since version 3.0.0,
	 * forcing a split handling (Thank you, WC!)
	 *
	 * @return array List of hidden product ids
	 * @since 2.1.1
	 */
	function yith_wcwl_get_hidden_products() {
		$hidden_products = get_transient( 'yith_wcwl_hidden_products' );

		if ( false === $hidden_products ) {
			if ( version_compare( WC()->version, '3.0.0', '<' ) ) {
				// phpcs:disable WordPress.DB.SlowDBQuery.slow_db_query_meta_query
				$hidden_products = get_posts(
					array(
						'post_type'      => 'product',
						'post_status'    => 'publish',
						'posts_per_page' => - 1,
						'fields'         => 'ids',
						'meta_query'     => array(
							array(
								'key'   => '_visibility',
								'value' => 'visible',
							),
						),
					)
				);
				// phpcs:enable WordPress.DB.SlowDBQuery.slow_db_query_meta_query
			} else {
				$hidden_products = wc_get_products(
					array(
						'limit'      => - 1,
						'status'     => 'publish',
						'return'     => 'ids',
						'visibility' => 'hidden',
					)
				);
			}

			/**
			 * Array_filter was added to prevent errors when previous query returns for some reason just 0 index.
			 *
			 * @since 2.2.6
			 */
			$hidden_products = array_filter( $hidden_products );

			set_transient( 'yith_wcwl_hidden_products', $hidden_products, 30 * DAY_IN_SECONDS );
		}

		return apply_filters( 'yith_wcwl_hidden_products', $hidden_products );
	}
}

if ( ! function_exists( 'yith_wcwl_get_wishlist' ) ) {
	/**
	 * Retrieves wishlist by ID
	 *
	 * @param int|string $wishlist_id Wishlist ID or Wishlist Token.
	 *
	 * @return \YITH_WCWL_Wishlist|bool Wishlist object; false on error
	 */
	function yith_wcwl_get_wishlist( $wishlist_id ) {
		return YITH_WCWL_Wishlist_Factory::get_wishlist( $wishlist_id );
	}
}

if ( ! function_exists( 'yith_wcwl_get_plugin_icons' ) ) {
	/**
	 * Return array of available icons
	 *
	 * @param string $none_label   Label to use for none option.
	 * @param string $custom_label Label to use for custom option.
	 *
	 * @return array Array of available icons, in class => name format
	 */
	function yith_wcwl_get_plugin_icons( $none_label = '', $custom_label = '' ) {
		$icons = json_decode( file_get_contents( YITH_WCWL_DIR . 'assets/js/admin/yith-wcwl-icons.json' ), true ); // phpcs:ignore WordPress.WP.AlternativeFunctions.file_get_contents_file_get_contents

		$icons['none']   = $none_label ? $none_label : __( 'None', 'yith-woocommerce-wishlist' );
		$icons['custom'] = $custom_label ? $custom_label : __( 'Custom', 'yith-woocommerce-wishlist' );

		return apply_filters( 'yith_wcwl_plugin_icons', $icons, $none_label, $custom_label );
	}
}

if ( ! function_exists( 'yith_wcwl_get_privacy_label' ) ) {
	/**
	 * Returns privacy label
	 *
	 * @param int  $privacy  Privacy value.
	 * @param bool $extended Whether to show extended or simplified label.
	 *
	 * @return string Privacy label
	 * @since 3.0.0
	 */
	function yith_wcwl_get_privacy_label( $privacy, $extended = false ) {

		switch ( $privacy ) {
			case 1:
				$privacy_label = 'shared';
				$privacy_text  = __( 'Shared', 'yith-woocommerce-wishlist' );

				if ( $extended ) {
					$privacy_text  = '<b>' . $privacy_text . '</b> - ';
					$privacy_text .= __( 'Only people with a link to this list can see it', 'yith-woocommerce-wishlist' );
				}

				break;
			case 2:
				$privacy_label = 'private';
				$privacy_text  = __( 'Private', 'yith-woocommerce-wishlist' );

				if ( $extended ) {
					$privacy_text  = '<b>' . $privacy_text . '</b> - ';
					$privacy_text .= __( 'Only you can see this list', 'yith-woocommerce-wishlist' );
				}

				break;
			default:
				$privacy_label = 'public';
				$privacy_text  = __( 'Public', 'yith-woocommerce-wishlist' );

				if ( $extended ) {
					$privacy_text  = '<b>' . $privacy_text . '</b> - ';
					$privacy_text .= __( 'Anyone can search for and see this list', 'yith-woocommerce-wishlist' );
				}

				break;
		}

		return apply_filters( "yith_wcwl_{$privacy_label}_wishlist_visibility", $privacy_text, $extended, $privacy );
	}
}

if ( ! function_exists( 'yith_wcwl_get_privacy_value' ) ) {
	/**
	 * Returns privacy numeric value
	 *
	 * @param string $privacy_label Privacy label.
	 *
	 * @return int Privacy value
	 * @since 3.0.0
	 */
	function yith_wcwl_get_privacy_value( $privacy_label ) {

		switch ( $privacy_label ) {
			case 'shared':
				$privacy_value = 1;
				break;
			case 'private':
				$privacy_value = 2;
				break;
			default:
				$privacy_value = 0;
				break;
		}

		return apply_filters( 'yith_wcwl_privacy_value', $privacy_value, $privacy_label );
	}
}

if ( ! function_exists( 'yith_wcwl_get_current_url' ) ) {
	/**
	 * Retrieves current url
	 *
	 * @return string Current url
	 * @since 3.0.0
	 */
	function yith_wcwl_get_current_url() {
		global $wp;

		/**
		 * Returns empty string by default, to avoid problems with unexpected redirects
		 * Added filter to change default behaviour, passing what we think is current page url
		 *
		 * @since 3.0.12
		 */
		return apply_filters( 'yith_wcwl_current_url', '', add_query_arg( $wp->query_vars, home_url( $wp->request ) ) );
	}
}

/* === UTILITY FUNCTIONS === */

if ( ! function_exists( 'yith_wcwl_merge_in_array' ) ) {
	/**
	 * Merges an array of items into a specific position of an array
	 *
	 * @param array  $array    Origin array.
	 * @param array  $element  Elements to merge.
	 * @param string $pivot    Index to use as pivot.
	 * @param string $position Where elements should be merged (before or after the pivot).
	 *
	 * @return array Result of the merge
	 */
	function yith_wcwl_merge_in_array( $array, $element, $pivot, $position = 'after' ) {
		// search for the pivot inside array.
		$pos = array_search( $pivot, array_keys( $array ), true );

		if ( false === $pos ) {
			return $array;
		}

		// separate array into chunks.
		$i      = 'after' === $position ? 1 : 0;
		$part_1 = array_slice( $array, 0, $pos + $i );
		$part_2 = array_slice( $array, $pos + $i );

		return array_merge( $part_1, $element, $part_2 );
	}
}

if ( ! function_exists( 'yith_wcwl_maybe_format_field_array' ) ) {
	/**
	 * Take a field structure from plugin saved data, and format it as required by WC to print fields
	 *
	 * @param array $field_structure Array of fields as saved on db.
	 *
	 * @return array Array of fields as required by WC
	 */
	function yith_wcwl_maybe_format_field_array( $field_structure ) {
		$fields = array();

		if ( empty( $field_structure ) ) {
			return array();
		}

		foreach ( $field_structure as $field ) {
			if ( isset( $field['active'] ) && 'yes' !== $field['active'] ) {
				continue;
			}

			if ( empty( $field['label'] ) ) {
				continue;
			}

			// format type.
			$field_id = sanitize_title_with_dashes( $field['label'] );

			// format options, if needed.
			if ( ! empty( $field['options'] ) ) {
				$options     = array();
				$raw_options = explode( '|', $field['options'] );

				if ( ! empty( $raw_options ) ) {
					foreach ( $raw_options as $raw_option ) {
						if ( strpos( $raw_option, '::' ) === false ) {
							continue;
						}

						list( $id, $value ) = explode( '::', $raw_option );
						$options[ $id ]     = $value;
					}
				}

				$field['options'] = $options;
			}

			// format class.
			$field['class'] = array( 'form-row-' . $field['position'] );

			// format requires.
			$field['required'] = isset( $field['required'] ) && 'yes' === $field['required'];

			// set custom attributes when field is required.
			if ( $field['required'] ) {
				$field['custom_attributes'] = array(
					'required' => 'required',
				);
			}

			// if type requires options, but no options was defined, skip field printing.
			if ( in_array( $field['type'], array( 'select', 'radio' ), true ) && empty( $field['options'] ) ) {
				continue;
			}

			$fields[ $field_id ] = $field;
		}

		return $fields;
	}
}

if ( ! function_exists( 'yith_wcwl_add_notice' ) ) {
	/**
	 * Calls wc_add_notice, when it exists
	 *
	 * @param string $message     Message to print.
	 * @param string $notice_type Notice type (succcess|error|notice).
	 * @param array  $data        Optional notice data.
	 *
	 * @since 3.0.10
	 */
	function yith_wcwl_add_notice( $message, $notice_type = 'success', $data = array() ) {
		function_exists( 'wc_add_notice' ) && wc_add_notice( $message, $notice_type, $data );
	}
}

if ( ! function_exists( 'yith_wcwl_object_id' ) ) {
	/**
	 * Retrieve translated object id, if a translation plugin is active
	 *
	 * @param int    $id              Original object id.
	 * @param string $type            Object type.
	 * @param bool   $return_original Whether to return original object if no translation is found.
	 * @param string $lang            Language to use for translation ().
	 *
	 * @return int Translation id
	 * @since 1.0.0
	 */
	function yith_wcwl_object_id( $id, $type = 'page', $return_original = true, $lang = null ) {

		// process special value for $lang.
		if ( 'default' === $lang ) {
			if ( defined( 'ICL_SITEPRESS_VERSION' ) ) { // wpml default language.
				global $sitepress;
				$lang = $sitepress->get_default_language();
			} elseif ( function_exists( 'pll_default_language' ) ) { // polylang default language.
				$lang = pll_default_language( 'locale' );
			} else { // cannot determine default language.
				$lang = null;
			}
		}

		// Should work with WPML and PolyLang.
		$id = apply_filters( 'wpml_object_id', $id, $type, $return_original, $lang );

		// Space for additional translations.
		$id = apply_filters( 'yith_wcwl_object_id', $id, $type, $return_original, $lang );

		return $id;
	}
}

if ( ! function_exists( 'yith_wcwl_kses_icon' ) ) {
	/**
	 * Escape output of wishlist icon
	 *
	 * @param string $data Data to escape.
	 * @return string Escaped data
	 */
	function yith_wcwl_kses_icon( $data ) {
		$allowed_icon_html = apply_filters(
			'yith_wcwl_allowed_icon_html',
			array(
				'i'   => array(
					'class' => true,
				),
				'img' => array(
					'src'    => true,
					'alt'    => true,
					'width'  => true,
					'height' => true,
				),
			)
		);

		return wp_kses( $data, $allowed_icon_html );
	}
}

/* === DEPRECATED FUNCTIONS === */

if ( ! function_exists( 'yith_frontend_css_color_picker' ) ) {
	/**
	 * Output a colour picker input box.
	 *
	 * This function is not of the plugin YITH WCWL. It is from WooCommerce.
	 * We redeclare it only because it is needed in the tab "Styles" where it is not available.
	 * The original function name is woocommerce_frontend_css_colorpicker and it is declared in
	 * wp-content/plugins/woocommerce/admin/settings/settings-frontend-styles.php
	 *
	 * @access public
	 *
	 * @param mixed  $name  Name for the input field.
	 * @param mixed  $id    Id for the input field.
	 * @param mixed  $value Value for the input field.
	 * @param string $desc  Description to show under input field (default '').
	 *
	 * @return void
	 * @deprecated
	 */
	function yith_frontend_css_color_picker( $name, $id, $value, $desc = '' ) {
		_deprecated_function( 'yith_frontend_css_color_picker', '3.0.0' );

		$value = ! empty( $value ) ? $value : '#ffffff';

		echo '<div  class="color_box">
				  <table><tr><td>
				  <strong>' . esc_html( $name ) . '</strong>
				  <input name="' . esc_attr( $id ) . '" id="' . esc_attr( $id ) . '" type="text" value="' . esc_attr( $value ) . '" class="colorpick colorpickpreview" style="background-color: ' . esc_attr( $value ) . '" /> <div id="colorPickerDiv_' . esc_attr( $id ) . '" class="colorpickdiv"></div>
				  </td></tr></table>
			  </div>';

	}
}
PK`x1\^�3�CCwpml-config.xmlnu�[���<wpml-config>
    <admin-texts>
      <key name="yith_wcwl_wishlist_title" />
      <key name="yith_wcwl_wishlist_search_title" />
      <key name="yith_wcwl_wishlist_manage_title" />
      <key name="yith_wcwl_wishlist_create_title" />
      <key name="yith_wcwl_add_to_wishlist_text" />
      <key name="yith_wcwl_browse_wishlist_text" />
      <key name="yith_wcwl_already_in_wishlist_text" />
      <key name="yith_wcwl_product_added_text" />
      <key name="yith_wcwl_add_to_wishlist_popup_text" />
      <key name="yith_wcwl_add_to_cart_text" />
      <key name="yith_wcwl_socials_title" />
      <key name="yith_wcwl_socials_text" />
      <key name="yith_wcwl_show_login_notice" />
      <key name="yith_wcwl_login_anchor_text" />
      <key name="yith_wcwl_additional_info_textarea_label" />
    </admin-texts>
</wpml-config>PK`x1\5�z�O:O:!assets/js/jquery.selectBox.min.jsnu�[���!function(r){var o=this.SelectBox=function(e,t){if(e instanceof jQuery){if(!(0<e.length))return;e=e[0]}return this.typeTimer=null,this.typeSearch="",this.isMac=navigator.platform.match(/mac/i),t="object"==typeof t?t:{},this.selectElement=e,!(!t.mobile&&navigator.userAgent.match(/iPad|iPhone|Android|IEMobile|BlackBerry/i))&&("select"===e.tagName.toLowerCase()&&void this.init(t))};o.prototype.version="1.2.0",o.prototype.init=function(t){var e=r(this.selectElement);if(e.data("selectBox-control"))return!1;var s,o,a=r('<a class="selectBox" />'),n=e.attr("multiple")||1<parseInt(e.attr("size")),l=t||{},i=parseInt(e.prop("tabindex"))||0,c=this;a.width(e.outerWidth()).addClass(e.attr("class")).attr("title",e.attr("title")||"").attr("tabindex",i).css("display","inline-block").bind("focus.selectBox",function(){this!==document.activeElement&&document.body!==document.activeElement&&r(document.activeElement).blur(),a.hasClass("selectBox-active")||(a.addClass("selectBox-active"),e.trigger("focus"))}).bind("blur.selectBox",function(){a.hasClass("selectBox-active")&&(a.removeClass("selectBox-active"),e.trigger("blur"))}),r(window).data("selectBox-bindings")||r(window).data("selectBox-bindings",!0).bind("scroll.selectBox",this.hideMenus).bind("resize.selectBox",this.hideMenus),e.attr("disabled")&&a.addClass("selectBox-disabled"),e.bind("click.selectBox",function(e){a.focus(),e.preventDefault()}),n?(t=this.getOptions("inline"),a.append(t).data("selectBox-options",t).addClass("selectBox-inline selectBox-menuShowing").bind("keydown.selectBox",function(e){c.handleKeyDown(e)}).bind("keypress.selectBox",function(e){c.handleKeyPress(e)}).bind("mousedown.selectBox",function(e){1===e.which&&(r(e.target).is("A.selectBox-inline")&&e.preventDefault(),a.hasClass("selectBox-focus")||a.focus())}).insertAfter(e),e[0].style.height||(o=e.attr("size")?parseInt(e.attr("size")):5,(n=a.clone().removeAttr("id").css({position:"absolute",top:"-9999em"}).show().appendTo("body")).find(".selectBox-options").html("<li><a> </a></li>"),s=parseInt(n.find(".selectBox-options A:first").html("&nbsp;").outerHeight()),n.remove(),a.height(s*o))):(s=r('<span class="selectBox-label" />'),o=r('<span class="selectBox-arrow" />'),s.attr("class",this.getLabelClass()).text(this.getLabelText()),(t=this.getOptions("dropdown")).appendTo("BODY"),a.data("selectBox-options",t).addClass("selectBox-dropdown").append(s).append(o).bind("mousedown.selectBox",function(e){1===e.which&&(a.hasClass("selectBox-menuShowing")?c.hideMenus():(e.stopPropagation(),t.data("selectBox-down-at-x",e.screenX).data("selectBox-down-at-y",e.screenY),c.showMenu()))}).bind("keydown.selectBox",function(e){c.handleKeyDown(e)}).bind("keypress.selectBox",function(e){c.handleKeyPress(e)}).bind("open.selectBox",function(e,t){t&&!0===t._selectBox||c.showMenu()}).bind("close.selectBox",function(e,t){t&&!0===t._selectBox||c.hideMenus()}).insertAfter(e),o=a.width()-o.outerWidth()-parseInt(s.css("paddingLeft"))||0-parseInt(s.css("paddingRight"))||0,s.width(o)),this.disableSelection(a),e.addClass("selectBox").data("selectBox-control",a).data("selectBox-settings",l).hide()},o.prototype.getOptions=function(e){var t,s=r(this.selectElement),o=this,a=function(e,t){return e.children("OPTION, OPTGROUP").each(function(){var e;r(this).is("OPTION")?0<r(this).length?o.generateOptions(r(this),t):t.append("<li> </li>"):((e=r('<li class="selectBox-optgroup" />')).text(r(this).attr("label")),t.append(e),t=a(r(this),t))}),t};switch(e){case"inline":return t=r('<ul class="selectBox-options" />'),(t=a(s,t)).find("A").bind("mouseover.selectBox",function(e){o.addHover(r(this).parent())}).bind("mouseout.selectBox",function(e){o.removeHover(r(this).parent())}).bind("mousedown.selectBox",function(e){1===e.which&&(e.preventDefault(),s.selectBox("control").hasClass("selectBox-active")||s.selectBox("control").focus())}).bind("mouseup.selectBox",function(e){1===e.which&&(o.hideMenus(),o.selectOption(r(this).parent(),e))}),this.disableSelection(t),t;case"dropdown":t=r('<ul class="selectBox-dropdown-menu selectBox-options" />'),(t=a(s,t)).data("selectBox-select",s).css("display","none").appendTo("BODY").find("A").bind("mousedown.selectBox",function(e){1===e.which&&(e.preventDefault(),e.screenX===t.data("selectBox-down-at-x")&&e.screenY===t.data("selectBox-down-at-y")&&(t.removeData("selectBox-down-at-x").removeData("selectBox-down-at-y"),o.hideMenus()))}).bind("mouseup.selectBox",function(e){1===e.which&&(e.screenX===t.data("selectBox-down-at-x")&&e.screenY===t.data("selectBox-down-at-y")||(t.removeData("selectBox-down-at-x").removeData("selectBox-down-at-y"),o.selectOption(r(this).parent()),o.hideMenus()))}).bind("mouseover.selectBox",function(e){o.addHover(r(this).parent())}).bind("mouseout.selectBox",function(e){o.removeHover(r(this).parent())});var n=s.attr("class")||"";if(""!==n)for(var l in n=n.split(" "))t.addClass(n[l]+"-selectBox-dropdown-menu");return this.disableSelection(t),t}},o.prototype.getLabelClass=function(){return("selectBox-label "+(r(this.selectElement).find("OPTION:selected").attr("class")||"")).replace(/\s+$/,"")},o.prototype.getLabelText=function(){return r(this.selectElement).find("OPTION:selected").text()||" "},o.prototype.setLabel=function(){var e=r(this.selectElement).data("selectBox-control");e&&e.find(".selectBox-label").attr("class",this.getLabelClass()).text(this.getLabelText())},o.prototype.destroy=function(){var e=r(this.selectElement),t=e.data("selectBox-control");t&&(t.data("selectBox-options").remove(),t.remove(),e.removeClass("selectBox").removeData("selectBox-control").data("selectBox-control",null).removeData("selectBox-settings").data("selectBox-settings",null).show())},o.prototype.refresh=function(){var e=r(this.selectElement),t=e.data("selectBox-control"),s=t.hasClass("selectBox-dropdown"),t=t.hasClass("selectBox-menuShowing");e.selectBox("options",e.html()),s&&t&&this.showMenu()},o.prototype.showMenu=function(){var t=this,e=r(this.selectElement),s=e.data("selectBox-control"),o=e.data("selectBox-settings"),a=s.data("selectBox-options");if(s.hasClass("selectBox-disabled"))return!1;this.hideMenus();var n=parseInt(s.css("borderBottomWidth"))||0;if(a.width(s.innerWidth()).css({top:s.offset().top+s.outerHeight()-n,left:s.offset().left}),e.triggerHandler("beforeopen"))return!1;var l=function(){e.triggerHandler("open",{_selectBox:!0})};switch(o.menuTransition){case"fade":a.fadeIn(o.menuSpeed,l);break;case"slide":a.slideDown(o.menuSpeed,l);break;default:a.show(o.menuSpeed,l)}o.menuSpeed||l();n=a.find(".selectBox-selected:first");this.keepOptionInView(n,!0),this.addHover(n),s.addClass("selectBox-menuShowing"),r(document).bind("mousedown.selectBox",function(e){1===e.which&&(r(e.target).parents().andSelf().hasClass("selectBox-options")||t.hideMenus())})},o.prototype.hideMenus=function(){0!==r(".selectBox-dropdown-menu:visible").length&&(r(document).unbind("mousedown.selectBox"),r(".selectBox-dropdown-menu").each(function(){var e=r(this),t=e.data("selectBox-select"),s=t.data("selectBox-control"),o=t.data("selectBox-settings");if(t.triggerHandler("beforeclose"))return!1;var a=function(){t.triggerHandler("close",{_selectBox:!0})};if(o){switch(o.menuTransition){case"fade":e.fadeOut(o.menuSpeed,a);break;case"slide":e.slideUp(o.menuSpeed,a);break;default:e.hide(o.menuSpeed,a)}o.menuSpeed||a(),s.removeClass("selectBox-menuShowing")}else r(this).hide(),r(this).triggerHandler("close",{_selectBox:!0}),r(this).removeClass("selectBox-menuShowing")}))},o.prototype.selectOption=function(e,t){var s=r(this.selectElement);e=r(e);var o,a=s.data("selectBox-control");s.data("selectBox-settings");if(a.hasClass("selectBox-disabled"))return!1;if(0===e.length||e.hasClass("selectBox-disabled"))return!1;s.attr("multiple")?t.shiftKey&&a.data("selectBox-last-selected")?(e.toggleClass("selectBox-selected"),o=(o=e.index()>a.data("selectBox-last-selected").index()?e.siblings().slice(a.data("selectBox-last-selected").index(),e.index()):e.siblings().slice(e.index(),a.data("selectBox-last-selected").index())).not(".selectBox-optgroup, .selectBox-disabled"),e.hasClass("selectBox-selected")?o.addClass("selectBox-selected"):o.removeClass("selectBox-selected")):this.isMac&&t.metaKey||!this.isMac&&t.ctrlKey?e.toggleClass("selectBox-selected"):(e.siblings().removeClass("selectBox-selected"),e.addClass("selectBox-selected")):(e.siblings().removeClass("selectBox-selected"),e.addClass("selectBox-selected")),a.hasClass("selectBox-dropdown")&&a.find(".selectBox-label").text(e.text());var n=0,l=[];return s.attr("multiple")?a.find(".selectBox-selected A").each(function(){l[n++]=r(this).attr("rel")}):l=e.find("A").attr("rel"),a.data("selectBox-last-selected",e),s.val()!==l&&(s.val(l),this.setLabel(),s.trigger("change")),!0},o.prototype.addHover=function(e){e=r(e),r(this.selectElement).data("selectBox-control").data("selectBox-options").find(".selectBox-hover").removeClass("selectBox-hover"),e.addClass("selectBox-hover")},o.prototype.getSelectElement=function(){return this.selectElement},o.prototype.removeHover=function(e){e=r(e),r(this.selectElement).data("selectBox-control").data("selectBox-options").find(".selectBox-hover").removeClass("selectBox-hover")},o.prototype.keepOptionInView=function(e,t){var s,o,a;e&&0!==e.length&&(a=(o=r(this.selectElement).data("selectBox-control")).data("selectBox-options"),s=o.hasClass("selectBox-dropdown")?a:a.parent(),o=parseInt(e.offset().top-s.position().top),a=parseInt(o+e.outerHeight()),t?s.scrollTop(e.offset().top-s.offset().top+s.scrollTop()-s.height()/2):(o<0&&s.scrollTop(e.offset().top-s.offset().top+s.scrollTop()),a>s.height()&&s.scrollTop(e.offset().top+e.outerHeight()-s.offset().top+s.scrollTop()-s.height())))},o.prototype.handleKeyDown=function(e){var t=r(this.selectElement),s=t.data("selectBox-control"),o=s.data("selectBox-options"),a=t.data("selectBox-settings"),n=0,l=0;if(!s.hasClass("selectBox-disabled"))switch(e.keyCode){case 8:e.preventDefault(),this.typeSearch="";break;case 9:case 27:this.hideMenus(),this.removeHover();break;case 13:s.hasClass("selectBox-menuShowing")?(this.selectOption(o.find("LI.selectBox-hover:first"),e),s.hasClass("selectBox-dropdown")&&this.hideMenus()):this.showMenu();break;case 38:case 37:if(e.preventDefault(),s.hasClass("selectBox-menuShowing")){for(var i=o.find(".selectBox-hover").prev("LI"),n=o.find("LI:not(.selectBox-optgroup)").length,l=0;(0===i.length||i.hasClass("selectBox-disabled")||i.hasClass("selectBox-optgroup"))&&(0===(i=i.prev("LI")).length&&(i=a.loopOptions?o.find("LI:last"):o.find("LI:first")),!(++l>=n)););this.addHover(i),this.selectOption(i,e),this.keepOptionInView(i)}else this.showMenu();break;case 40:case 39:if(e.preventDefault(),s.hasClass("selectBox-menuShowing")){var c=o.find(".selectBox-hover").next("LI");for(n=o.find("LI:not(.selectBox-optgroup)").length,l=0;(0===c.length||c.hasClass("selectBox-disabled")||c.hasClass("selectBox-optgroup"))&&(0===(c=c.next("LI")).length&&(c=a.loopOptions?o.find("LI:first"):o.find("LI:last")),!(++l>=n)););this.addHover(c),this.selectOption(c,e),this.keepOptionInView(c)}else this.showMenu()}},o.prototype.handleKeyPress=function(e){var t=r(this.selectElement).data("selectBox-control"),s=t.data("selectBox-options");if(!t.hasClass("selectBox-disabled"))switch(e.keyCode){case 9:case 27:case 13:case 38:case 37:case 40:case 39:break;default:t.hasClass("selectBox-menuShowing")||this.showMenu(),e.preventDefault(),clearTimeout(this.typeTimer),this.typeSearch+=String.fromCharCode(e.charCode||e.keyCode),s.find("A").each(function(){if(r(this).text().substr(0,this.typeSearch.length).toLowerCase()===this.typeSearch.toLowerCase())return this.addHover(r(this).parent()),this.selectOption(r(this).parent(),e),this.keepOptionInView(r(this).parent()),!1}),this.typeTimer=setTimeout(function(){this.typeSearch=""},1e3)}},o.prototype.enable=function(){var e=r(this.selectElement);e.prop("disabled",!1);e=e.data("selectBox-control");e&&e.removeClass("selectBox-disabled")},o.prototype.disable=function(){var e=r(this.selectElement);e.prop("disabled",!0);e=e.data("selectBox-control");e&&e.addClass("selectBox-disabled")},o.prototype.setValue=function(t){var e=r(this.selectElement);e.val(t),null===(t=e.val())&&(t=e.children().first().val(),e.val(t));var s,o=e.data("selectBox-control");o&&(s=e.data("selectBox-settings"),o=o.data("selectBox-options"),this.setLabel(),o.find(".selectBox-selected").removeClass("selectBox-selected"),o.find("A").each(function(){if("object"==typeof t)for(var e=0;e<t.length;e++)r(this).attr("rel")==t[e]&&r(this).parent().addClass("selectBox-selected");else r(this).attr("rel")==t&&r(this).parent().addClass("selectBox-selected")}),s.change&&s.change.call(e))},o.prototype.setOptions=function(e){var t,s=r(this.selectElement),o=s.data("selectBox-control");s.data("selectBox-settings");switch(typeof e){case"string":s.html(e);break;case"object":for(var a in s.html(""),e)if(null!==e[a])if("object"==typeof e[a]){var n,l=r('<optgroup label="'+a+'" />');for(n in e[a])l.append('<option value="'+n+'">'+e[a][n]+"</option>");s.append(l)}else{var i=r('<option value="'+a+'">'+e[a]+"</option>");s.append(i)}}if(o)switch(o.data("selectBox-options").remove(),t=o.hasClass("selectBox-dropdown")?"dropdown":"inline",e=this.getOptions(t),o.data("selectBox-options",e),t){case"inline":o.append(e);break;case"dropdown":this.setLabel(),r("BODY").append(e)}},o.prototype.disableSelection=function(e){r(e).css("MozUserSelect","none").bind("selectstart",function(e){e.preventDefault()})},o.prototype.generateOptions=function(e,t){var s=r("<li />"),o=r("<a />");s.addClass(e.attr("class")),s.data(e.data()),o.attr("rel",e.val()).text(e.text()),s.append(o),e.attr("disabled")&&s.addClass("selectBox-disabled"),e.attr("selected")&&s.addClass("selectBox-selected"),t.append(s)},r.extend(r.fn,{selectBox:function(s,e){var t;switch(s){case"control":return r(this).data("selectBox-control");case"settings":if(!e)return r(this).data("selectBox-settings");r(this).each(function(){r(this).data("selectBox-settings",r.extend(!0,r(this).data("selectBox-settings"),e))});break;case"options":if(undefined===e)return r(this).data("selectBox-control").data("selectBox-options");r(this).each(function(){(t=r(this).data("selectBox"))&&t.setOptions(e)});break;case"value":if(undefined===e)return r(this).val();r(this).each(function(){(t=r(this).data("selectBox"))&&t.setValue(e)});break;case"refresh":r(this).each(function(){(t=r(this).data("selectBox"))&&t.refresh()});break;case"enable":r(this).each(function(){(t=r(this).data("selectBox"))&&t.enable(this)});break;case"disable":r(this).each(function(){(t=r(this).data("selectBox"))&&t.disable()});break;case"destroy":r(this).each(function(){(t=r(this).data("selectBox"))&&(t.destroy(),r(this).data("selectBox",null))});break;case"instance":return r(this).data("selectBox");default:r(this).each(function(e,t){r(t).data("selectBox")||r(t).data("selectBox",new o(t,s))})}return r(this)}})}(jQuery);PK`x1\6VD�(.(. assets/js/admin/yith-wcwl.min.jsnu�[���jQuery(function(_){_.fn.dependency=function(t,e,n,c){var o=_(this);o.on("change",function(){var i=e(o);_.each(t,function(t,e){var n,e=_(e);!e.length||(n=e.closest("tr")).length&&(i?n.show().fadeTo("slow",1):n.is(":visible")?n.fadeTo("slow",0,function(){n.hide()}):n.css("opacity",0).hide())}),void 0!==n&&n(o,c)}).change()};var n=function(e,t){var c=this;c.settings={},c.modal=null,c._init=function(){c.settings=_.extend({template:e.data("template"),template_data:{},container:".yith-wcwl-wizard-modal",events:{}},t),"function"==typeof c.settings.events.init&&c.settings.events.init(e,t),c._initOpener()},c._initOpener=function(){e.on("click",function(t){var e=_(this),n=c.settings.template_data;t.preventDefault(),"function"==typeof n&&(n=n(e)),e.WCBackboneModal({template:c.settings.template,variable:n});e=_(c.settings.container);c._initEditor(e),c._initEnhancedSelect(e),c._initTabs(e),c._initSteps(e),c._initOptions(e,n),c._initEvents(e,c.settings.events)})},c._initEditor=function(t){t.find(".with-editor").each(function(){var n=_(this),t=n.attr("id");tinymce.get(t)&&(restoreTextMode=tinymce.get(t).isHidden(),wp.editor.remove(t)),wp.editor.initialize(t,{tinymce:{wpautop:!0,init_instance_callback:function(e){e.on("Change",function(t){n.val(e.getContent()).change()})}},quicktags:!0,mediaButtons:!0})})},c._initEnhancedSelect=function(t){_(document.body).trigger("wc-enhanced-select-init")},c._initTabs=function(t){t.find(".tabs").on("click","a",function(t){var e=_(this),n=e.closest("ul"),i=n.find("a"),c=n.parent().find(".tab"),o=e.data("target"),n=_(o),o=!1;t.preventDefault(),e.hasClass("active")||(o=!0),i.attr("aria-selected","false").removeClass("active"),e.attr("aria-selected","true").addClass("active"),c.attr("aria-expanded","false").removeClass("active").hide(),n.attr("aria-expanded","true").addClass("active").show(),o&&e.trigger("tabChange")})},c._initOptions=function(n,t){_.each(t,function(t,e){t=n.find('[name="'+t+'"]');t.length&&e!==t.val()&&(t.is("select")&&!t.find('option[value="'+e+'"]').length?t.append('<option value="'+e+'" selected="selected">'+e+" </option>"):t.val(e))})},c._initSteps=function(i){i.find(".step").hide().first().show(),i.find(".continue-button").on("click",function(t){var e=_(this).closest(".step"),n=e.next(".step");t.preventDefault(),n.length&&c._changeStep(i,e,n)}),i.find(".back-button").on("click",function(t){var e=_(this).closest(".step"),n=e.prev(".step");t.preventDefault(),n.length&&c._changeStep(i,e,n)})},c._initEvents=function(n,t){"function"==typeof c.settings.events.open&&c.settings.events.open(e,n),_.each(t,function(t,e){"init"!==t&&"open"!==t&&("tabChange"===t?n.find(".tabs"):"stepChange"===t?n.find(".step"):n.find(":input")).on(t,function(t){return e(_(this),n,t)})})},c._changeStep=function(o,_,a){_.animate({opacity:0},{duration:200,complete:function(){var t=o.find("article"),e=t.outerWidth(),n=t.outerHeight();t.outerWidth("auto"),t.outerHeight("auto"),_.hide(),a.show();var i=a.outerWidth(),c=a.outerHeight();a.hide(),_.css("opacity",1),t.outerWidth(e),t.outerHeight(n),t.animate({width:i,height:c},{duration:200,complete:function(){a.fadeIn(200)}})}}),a.trigger("stepChange")},c._init()},o=null,i=function(t,e,n){var i=e.find(".email-preview"),c=e.find("#template").val();o&&o.abort(),o=_.ajax({url:ajaxurl+"?action=preview_promotion_email&_wpnonce="+yith_wcwl.nonce.preview_promotion_email,data:e.find("form").serialize(),method:"POST",beforeSend:function(){i.block({message:null,overlayCSS:{background:"transparent",opacity:.6}})},complete:function(){i.unblock()},success:function(t){i.removeClass("html plain").addClass(c).find(".no-interactions").html(t)}})},t=function(){return{template:"yith-wcwl-promotion-wizard",template_data:function(t){var e=t.hasClass("restore-draft")?t.data("draft"):_.extend(e,{product_id:t.data("product_id"),user_id:t.data("user_id")});return e},events:{change:i,open:function(t,e,n){e.find("#content_html-tmce").click(),i(0,e)},tabChange:function(t,e,n){e.find("#template").val(t.find(".active").data("template")),i(0,e)},stepChange:function(t,e,n){var i=t.find(".receivers-count"),c=t.find(".show-on-long-queue"),o=c.data("threshold");i.length&&_.ajax({url:ajaxurl+"?action=calculate_promotion_email_receivers&_wpnonce="+yith_wcwl.nonce.calculate_promotion_email_receivers,data:e.find("form").serialize(),method:"post",beforeSend:function(){i.css("opacity",.3),c.length&&c.hide()},complete:function(){i.css("opacity",1)},success:function(t){"undefined"!=typeof t.label&&(i.html(t.label),c.length&&"undefined"!=typeof t.count&&t.count>o&&c.show())}})}}}};_.fn.wizard=function(t){var e=_(this);new n(e,t)},_(".create-promotion").wizard(t()),_(".restore-draft").wizard(t());var e=function(t){return"no"===(t=!t.is('input[type="radio"]')?t.find('input[type="radio"]:checked'):t).val()},c=function(t){return t.is(":checked")},a=_("#yith_wcwl_disable_wishlist_for_unauthenticated_users"),s=_("#yith_wcwl_multi_wishlist_enable"),l=_("#yith_wcwl_enable_multi_wishlist_for_unauthenticated_users"),r=_("#yith_wcwl_modal_enable"),u=_("#yith_wcwl_loop_position"),d=_(".icon-select"),h=_('[name="yith_wcwl_add_to_cart_style"]'),w=_("#yith_wcwl_add_to_cart_icon"),m=_('[name="yith_wcwl_ask_an_estimate_style"]'),f=_("#yith_wcwl_ask_an_estimate_icon"),p=_("#yith_wcwl_enable_share"),y=_("#yith_wcwl_share_fb"),g=_("#yith_wcwl_fb_button_icon"),v=_("#yith_wcwl_share_twitter"),b=_("#yith_wcwl_tw_button_icon"),k=_("#yith_wcwl_share_pinterest"),x=_("#yith_wcwl_pr_button_icon"),C=_("#yith_wcwl_share_email"),S=_("#yith_wcwl_em_button_icon"),T=_("#yith_wcwl_share_whatsapp"),z=_("#yith_wcwl_wa_button_icon"),j=_("#yith_wcwl_show_estimate_button"),E=_("#yith_wcwl_show_additional_info_textarea"),O=_("#yith_wcwl_ask_an_estimate_fields"),H=_("#woocommerce_promotion_mail_settings\\[email_type\\]"),W=_("#woocommerce_yith_wcwl_back_in_stock_settings\\[enabled\\]"),D=_("#woocommerce_yith_wcwl_back_in_stock_settings\\[email_type\\]"),B=_("#woocommerce_yith_wcwl_on_sale_item_settings\\[enabled\\]"),M=_("#woocommerce_yith_wcwl_on_sale_item_settings\\[email_type\\]"),t=_('[id^="type_"]');u.add("select#yith_wcwl_button_position").on("change",function(){var t=_(this);"shortcode"===t.val()?t.parent().next().find(".addon").show():t.parent().next().find(".addon").hide()}).change(),t.on("change",function(){var t=_(this),e=t.val(),n=t.closest(".yith-toggle-content-row").next();"radio"===e||"select"===e?n.show().fadeTo("slow",1):n.is(":visible")?n.fadeTo("slow",0,function(){n.hide()}):n.css("opacity",0).hide()}).change(),h.on("change",function(){w.change()}),m.on("change",function(){f.change()}),d.each(function(){_(this).select2({templateResult:function(t){return t.id?_('<span><i class="option-icon fa '+t.element.value.toLowerCase()+'" ></i> '+t.text+"</span>"):t.text}})}),a.dependency(["#yith_wcwl_enable_multi_wishlist_for_unauthenticated_users-yes"],function(){return e(a)&&c(s)},function(){l.change()}),s.dependency(["#yith_wcwl_enable_multi_wishlist_for_unauthenticated_users-yes"],function(){return e(a)&&c(s)},function(){l.change()}),l.dependency(["#yith_wcwl_show_login_notice","#yith_wcwl_login_anchor_text"],function(){return c(s)&&e(a)&&e(l)}),r.dependency(["#yith_wcwl_show_exists_in_a_wishlist"],function(){var t="default"!==r.find(":checked").val();return t||_("#yith_wcwl_show_exists_in_a_wishlist").prop("checked",!0),t}),w.dependency(["#yith_wcwl_add_to_cart_custom_icon"],function(){return"custom"===w.val()&&"button_custom"===h.filter(":checked").val()}),f.dependency(["#yith_wcwl_ask_an_estimate_custom_icon"],function(){return"custom"===f.val()&&"button_custom"===m.filter(":checked").val()}),p.dependency(["#yith_wcwl_share_fb"],c,function(){y.change(),g.change(),v.change(),b.change(),k.change(),x.change(),C.change(),S.change(),T.change(),z.change()}),y.dependency(["#yith_wcwl_fb_button_icon","#yith_wcwl_color_fb_button_background"],function(){return c(y)&&c(p)},function(){g.change()}),g.dependency(["#yith_wcwl_fb_button_custom_icon"],function(){return c(y)&&c(p)&&"custom"===g.val()}),v.dependency(["#yith_wcwl_tw_button_icon","#yith_wcwl_color_tw_button_background"],function(){return c(v)&&c(p)},function(){b.change()}),b.dependency(["#yith_wcwl_tw_button_custom_icon"],function(){return c(v)&&c(p)&&"custom"===b.val()}),k.dependency(["#yith_wcwl_socials_image_url","#yith_wcwl_pr_button_icon","#yith_wcwl_color_pr_button_background"],function(){return c(k)&&c(p)},function(){x.change()}),x.dependency(["#yith_wcwl_pr_button_custom_icon"],function(){return c(k)&&c(p)&&"custom"===x.val()}),C.dependency(["#yith_wcwl_em_button_icon","#yith_wcwl_color_em_button_background"],function(){return c(C)&&c(p)},function(){S.change()}),S.dependency(["#yith_wcwl_em_button_custom_icon"],function(){return c(C)&&c(p)&&"custom"===S.val()}),T.dependency(["#yith_wcwl_wa_button_icon","#yith_wcwl_wa_button_custom_icon","#yith_wcwl_color_wa_button_background"],function(){return c(T)&&c(p)},function(){z.change()}),z.dependency(["#yith_wcwl_wa_button_custom_icon"],function(){return c(T)&&c(p)&&"custom"===z.val()}),v.add(k).dependency(["#yith_wcwl_socials_title","#yith_wcwl_socials_text"],function(){return(c(v)||c(k))&&c(p)}),j.dependency(["#yith_wcwl_show_additional_info_textarea"],c,function(){E.change()}),j.on("change",function(){E.change()}),E.dependency(["#yith_wcwl_additional_info_textarea_label"],function(){return c(j)&&c(E)}),E.on("change",function(){_(this).is(":checked")&&j.is(":checked")?O.removeClass("yith-disabled"):O.addClass("yith-disabled")}),H.dependency(["#woocommerce_promotion_mail_settings\\[content_html\\]"],function(){return"multipart"===H.val()||"html"===H.val()}),H.dependency(["#woocommerce_promotion_mail_settings\\[content_text\\]"],function(){return"multipart"===H.val()||"plain"===H.val()}),W.dependency(["#woocommerce_yith_wcwl_back_in_stock_settings\\[product_exclusions\\]","#woocommerce_yith_wcwl_back_in_stock_settings\\[category_exclusions\\]","#woocommerce_yith_wcwl_back_in_stock_settings\\[email_type\\]","#woocommerce_yith_wcwl_back_in_stock_settings\\[heading\\]","#woocommerce_yith_wcwl_back_in_stock_settings\\[subject\\]","#woocommerce_yith_wcwl_back_in_stock_settings\\[content_html\\]","#woocommerce_yith_wcwl_back_in_stock_settings\\[content_text\\]"],function(){return c(W)},function(){D.change()}),D.dependency(["#woocommerce_yith_wcwl_back_in_stock_settings\\[content_html\\]"],function(){return("multipart"===D.val()||"html"===D.val())&&c(W)}),D.dependency(["#woocommerce_yith_wcwl_back_in_stock_settings\\[content_text\\]"],function(){return("multipart"===D.val()||"plain"===D.val())&&c(W)}),B.dependency(["#woocommerce_yith_wcwl_on_sale_item_settings\\[product_exclusions\\]","#woocommerce_yith_wcwl_on_sale_item_settings\\[category_exclusions\\]","#woocommerce_yith_wcwl_on_sale_item_settings\\[email_type\\]","#woocommerce_yith_wcwl_on_sale_item_settings\\[heading\\]","#woocommerce_yith_wcwl_on_sale_item_settings\\[subject\\]","#woocommerce_yith_wcwl_on_sale_item_settings\\[content_html\\]","#woocommerce_yith_wcwl_on_sale_item_settings\\[content_text\\]"],function(){return c(B)},function(){M.change()}),M.dependency(["#woocommerce_yith_wcwl_on_sale_item_settings\\[content_html\\]"],function(){return("multipart"===M.val()||"html"===M.val())&&c(B)}),M.dependency(["#woocommerce_yith_wcwl_on_sale_item_settings\\[content_text\\]"],function(){return("multipart"===M.val()||"plain"===M.val())&&c(B)}),_(".date-picker-field, .date-picker").datepicker({dateFormat:"yy-mm-dd",numberOfMonths:1,showButtonPanel:!0}),_(document).on("yith-add-box-button-toggle",function(){var e=_("#new_type"),n=_("#new_options").closest(".yith-add-box-row");e.on("change",function(){var t=e.val();"radio"===t||"select"===t?n.show().fadeTo("slow",1):n.is(":visible")?n.fadeTo("slow",0,function(){_(this).hide()}):n.css("opacity",0).hide()}).change()})});PK`x1\��"NXNX$assets/js/admin/yith-wcwl-icons.jsonnu�[���{
  "none": "None",
  "custom": "Custom",
  "fa-glass": "Glass",
  "fa-music": "Music",
  "fa-search": "Search",
  "fa-envelope-o": "Envelope O",
  "fa-heart": "Heart",
  "fa-star": "Star",
  "fa-star-o": "Star O",
  "fa-user": "User",
  "fa-film": "Film",
  "fa-th-large": "Th Large",
  "fa-th": "Th",
  "fa-th-list": "Th List",
  "fa-check": "Check",
  "fa-remove": "Remove",
  "fa-search-plus": "Search Plus",
  "fa-search-minus": "Search Minus",
  "fa-power-off": "Power Off",
  "fa-signal": "Signal",
  "fa-cog": "Cog",
  "fa-trash-o": "Trash O",
  "fa-home": "Home",
  "fa-file-o": "File O",
  "fa-clock-o": "Clock O",
  "fa-road": "Road",
  "fa-download": "Download",
  "fa-arrow-circle-o-down": "Arrow Circle O Down",
  "fa-arrow-circle-o-up": "Arrow Circle O Up",
  "fa-inbox": "Inbox",
  "fa-play-circle-o": "Play Circle O",
  "fa-repeat": "Repeat",
  "fa-refresh": "Refresh",
  "fa-list-alt": "List Alt",
  "fa-lock": "Lock",
  "fa-flag": "Flag",
  "fa-headphones": "Headphones",
  "fa-volume-off": "Volume Off",
  "fa-volume-down": "Volume Down",
  "fa-volume-up": "Volume Up",
  "fa-qrcode": "Qrcode",
  "fa-barcode": "Barcode",
  "fa-tag": "Tag",
  "fa-tags": "Tags",
  "fa-book": "Book",
  "fa-bookmark": "Bookmark",
  "fa-print": "Print",
  "fa-camera": "Camera",
  "fa-font": "Font",
  "fa-bold": "Bold",
  "fa-italic": "Italic",
  "fa-text-height": "Text Height",
  "fa-text-width": "Text Width",
  "fa-align-left": "Align Left",
  "fa-align-center": "Align Center",
  "fa-align-right": "Align Right",
  "fa-align-justify": "Align Justify",
  "fa-list": "List",
  "fa-dedent": "Dedent",
  "fa-indent": "Indent",
  "fa-video-camera": "Video Camera",
  "fa-picture-o": "Photo",
  "fa-pencil": "Pencil",
  "fa-map-marker": "Map Marker",
  "fa-adjust": "Adjust",
  "fa-tint": "Tint",
  "fa-edit": "Edit",
  "fa-share-square-o": "Share Square O",
  "fa-check-square-o": "Check Square O",
  "fa-arrows": "Arrows",
  "fa-step-backward": "Step Backward",
  "fa-fast-backward": "Fast Backward",
  "fa-backward": "Backward",
  "fa-play": "Play",
  "fa-pause": "Pause",
  "fa-stop": "Stop",
  "fa-forward": "Forward",
  "fa-fast-forward": "Fast Forward",
  "fa-step-forward": "Step Forward",
  "fa-eject": "Eject",
  "fa-chevron-left": "Chevron Left",
  "fa-chevron-right": "Chevron Right",
  "fa-plus-circle": "Plus Circle",
  "fa-minus-circle": "Minus Circle",
  "fa-times-circle": "Times Circle",
  "fa-check-circle": "Check Circle",
  "fa-question-circle": "Question Circle",
  "fa-info-circle": "Info Circle",
  "fa-crosshairs": "Crosshairs",
  "fa-times-circle-o": "Times Circle O",
  "fa-check-circle-o": "Check Circle O",
  "fa-ban": "Ban",
  "fa-arrow-left": "Arrow Left",
  "fa-arrow-right": "Arrow Right",
  "fa-arrow-up": "Arrow Up",
  "fa-arrow-down": "Arrow Down",
  "fa-share": "Share",
  "fa-expand": "Expand",
  "fa-compress": "Compress",
  "fa-plus": "Plus",
  "fa-minus": "Minus",
  "fa-asterisk": "Asterisk",
  "fa-exclamation-circle": "Exclamation Circle",
  "fa-gift": "Gift",
  "fa-leaf": "Leaf",
  "fa-fire": "Fire",
  "fa-eye": "Eye",
  "fa-eye-slash": "Eye Slash",
  "fa-warning": "Warning",
  "fa-plane": "Plane",
  "fa-calendar": "Calendar",
  "fa-random": "Random",
  "fa-comment": "Comment",
  "fa-magnet": "Magnet",
  "fa-chevron-up": "Chevron Up",
  "fa-chevron-down": "Chevron Down",
  "fa-retweet": "Retweet",
  "fa-shopping-cart": "Shopping Cart",
  "fa-folder": "Folder",
  "fa-folder-open": "Folder Open",
  "fa-arrows-v": "Arrows V",
  "fa-arrows-h": "Arrows H",
  "fa-bar-chart": "Bar Chart",
  "fa-twitter-square": "Twitter Square",
  "fa-facebook-square": "Facebook Square",
  "fa-camera-retro": "Camera Retro",
  "fa-key": "Key",
  "fa-cogs": "Cogs",
  "fa-comments": "Comments",
  "fa-thumbs-o-up": "Thumbs O Up",
  "fa-thumbs-o-down": "Thumbs O Down",
  "fa-star-half": "Star Half",
  "fa-heart-o": "Heart O",
  "fa-sign-out": "Sign Out",
  "fa-linkedin-square": "Linkedin Square",
  "fa-thumb-tack": "Thumb Tack",
  "fa-external-link": "External Link",
  "fa-sign-in": "Sign In",
  "fa-trophy": "Trophy",
  "fa-github-square": "Github Square",
  "fa-upload": "Upload",
  "fa-lemon-o": "Lemon O",
  "fa-phone": "Phone",
  "fa-square-o": "Square O",
  "fa-bookmark-o": "Bookmark O",
  "fa-phone-square": "Phone Square",
  "fa-twitter": "Twitter",
  "fa-facebook": "Facebook",
  "fa-github": "Github",
  "fa-unlock": "Unlock",
  "fa-credit-card": "Credit Card",
  "fa-rss": "Rss",
  "fa-hdd-o": "Hdd O",
  "fa-bullhorn": "Bullhorn",
  "fa-bell": "Bell",
  "fa-certificate": "Certificate",
  "fa-hand-o-right": "Hand O Right",
  "fa-hand-o-left": "Hand O Left",
  "fa-hand-o-up": "Hand O Up",
  "fa-hand-o-down": "Hand O Down",
  "fa-arrow-circle-left": "Arrow Circle Left",
  "fa-arrow-circle-right": "Arrow Circle Right",
  "fa-arrow-circle-up": "Arrow Circle Up",
  "fa-arrow-circle-down": "Arrow Circle Down",
  "fa-globe": "Globe",
  "fa-wrench": "Wrench",
  "fa-tasks": "Tasks",
  "fa-filter": "Filter",
  "fa-briefcase": "Briefcase",
  "fa-arrows-alt": "Arrows Alt",
  "fa-group": "Group",
  "fa-link": "Link",
  "fa-cloud": "Cloud",
  "fa-flask": "Flask",
  "fa-cut": "Cut",
  "fa-copy": "Copy",
  "fa-paperclip": "Paperclip",
  "fa-save": "Save",
  "fa-square": "Square",
  "fa-navicon": "Navicon",
  "fa-list-ul": "List Ul",
  "fa-list-ol": "List Ol",
  "fa-strikethrough": "Strikethrough",
  "fa-underline": "Underline",
  "fa-table": "Table",
  "fa-magic": "Magic",
  "fa-truck": "Truck",
  "fa-pinterest": "Pinterest",
  "fa-pinterest-square": "Pinterest Square",
  "fa-google-plus-square": "Google Plus Square",
  "fa-google-plus": "Google Plus",
  "fa-money": "Money",
  "fa-caret-down": "Caret Down",
  "fa-caret-up": "Caret Up",
  "fa-caret-left": "Caret Left",
  "fa-caret-right": "Caret Right",
  "fa-columns": "Columns",
  "fa-unsorted": "Unsorted",
  "fa-sort-down": "Sort Down",
  "fa-sort-up": "Sort Up",
  "fa-envelope": "Envelope",
  "fa-linkedin": "Linkedin",
  "fa-undo": "Undo",
  "fa-legal": "Legal",
  "fa-dashboard": "Dashboard",
  "fa-comment-o": "Comment O",
  "fa-comments-o": "Comments O",
  "fa-bolt": "Bolt",
  "fa-sitemap": "Sitemap",
  "fa-umbrella": "Umbrella",
  "fa-paste": "Paste",
  "fa-lightbulb-o": "Lightbulb O",
  "fa-exchange": "Exchange",
  "fa-cloud-download": "Cloud Download",
  "fa-cloud-upload": "Cloud Upload",
  "fa-user-md": "User Md",
  "fa-stethoscope": "Stethoscope",
  "fa-suitcase": "Suitcase",
  "fa-bell-o": "Bell O",
  "fa-coffee": "Coffee",
  "fa-cutlery": "Cutlery",
  "fa-file-text-o": "File Text O",
  "fa-building-o": "Building O",
  "fa-hospital-o": "Hospital O",
  "fa-ambulance": "Ambulance",
  "fa-medkit": "Medkit",
  "fa-fighter-jet": "Fighter Jet",
  "fa-beer": "Beer",
  "fa-h-square": "H Square",
  "fa-plus-square": "Plus Square",
  "fa-angle-double-left": "Angle Double Left",
  "fa-angle-double-right": "Angle Double Right",
  "fa-angle-double-up": "Angle Double Up",
  "fa-angle-double-down": "Angle Double Down",
  "fa-angle-left": "Angle Left",
  "fa-angle-right": "Angle Right",
  "fa-angle-up": "Angle Up",
  "fa-angle-down": "Angle Down",
  "fa-desktop": "Desktop",
  "fa-laptop": "Laptop",
  "fa-tablet": "Tablet",
  "fa-mobile": "Mobile",
  "fa-circle-o": "Circle O",
  "fa-quote-left": "Quote Left",
  "fa-quote-right": "Quote Right",
  "fa-spinner": "Spinner",
  "fa-circle": "Circle",
  "fa-reply": "Reply",
  "fa-github-alt": "Github Alt",
  "fa-folder-o": "Folder O",
  "fa-folder-open-o": "Folder Open O",
  "fa-smile-o": "Smile O",
  "fa-frown-o": "Frown O",
  "fa-meh-o": "Meh O",
  "fa-gamepad": "Gamepad",
  "fa-keyboard-o": "Keyboard O",
  "fa-flag-o": "Flag O",
  "fa-flag-checkered": "Flag Checkered",
  "fa-terminal": "Terminal",
  "fa-code": "Code",
  "fa-reply-all": "Reply All",
  "fa-star-half-o": "Star Half O",
  "fa-location-arrow": "Location Arrow",
  "fa-crop": "Crop",
  "fa-code-fork": "Code Fork",
  "fa-chain-broken": "Chain Broken",
  "fa-question": "Question",
  "fa-info": "Info",
  "fa-exclamation": "Exclamation",
  "fa-superscript": "Superscript",
  "fa-subscript": "Subscript",
  "fa-eraser": "Eraser",
  "fa-puzzle-piece": "Puzzle Piece",
  "fa-microphone": "Microphone",
  "fa-microphone-slash": "Microphone Slash",
  "fa-shield": "Shield",
  "fa-calendar-o": "Calendar O",
  "fa-fire-extinguisher": "Fire Extinguisher",
  "fa-rocket": "Rocket",
  "fa-maxcdn": "Maxcdn",
  "fa-chevron-circle-left": "Chevron Circle Left",
  "fa-chevron-circle-right": "Chevron Circle Right",
  "fa-chevron-circle-up": "Chevron Circle Up",
  "fa-chevron-circle-down": "Chevron Circle Down",
  "fa-html5": "Html5",
  "fa-css3": "Css3",
  "fa-anchor": "Anchor",
  "fa-unlock-alt": "Unlock Alt",
  "fa-bullseye": "Bullseye",
  "fa-ellipsis-h": "Ellipsis H",
  "fa-ellipsis-v": "Ellipsis V",
  "fa-rss-square": "Rss Square",
  "fa-play-circle": "Play Circle",
  "fa-ticket": "Ticket",
  "fa-minus-square": "Minus Square",
  "fa-minus-square-o": "Minus Square O",
  "fa-level-up": "Level Up",
  "fa-level-down": "Level Down",
  "fa-check-square": "Check Square",
  "fa-pencil-square": "Pencil Square",
  "fa-external-link-square": "External Link Square",
  "fa-share-square": "Share Square",
  "fa-compass": "Compass",
  "fa-caret-square-o-down": "Caret Square O Down",
  "fa-caret-square-o-up": "Caret Square O Up",
  "fa-caret-square-o-right": "Caret Square O Right",
  "fa-eur": "Eur",
  "fa-gbp": "Gbp",
  "fa-usd": "Usd",
  "fa-inr": "Inr",
  "fa-jpy": "Jpy",
  "fa-rub": "Rub",
  "fa-krw": "Krw",
  "fa-btc": "Btc",
  "fa-file": "File",
  "fa-file-text": "File Text",
  "fa-sort-alpha-asc": "Sort Alpha Asc",
  "fa-sort-alpha-desc": "Sort Alpha Desc",
  "fa-sort-amount-asc": "Sort Amount Asc",
  "fa-sort-amount-desc": "Sort Amount Desc",
  "fa-sort-numeric-asc": "Sort Numeric Asc",
  "fa-sort-numeric-desc": "Sort Numeric Desc",
  "fa-thumbs-up": "Thumbs Up",
  "fa-thumbs-down": "Thumbs Down",
  "fa-youtube-square": "Youtube Square",
  "fa-youtube": "Youtube",
  "fa-xing": "Xing",
  "fa-xing-square": "Xing Square",
  "fa-youtube-play": "Youtube Play",
  "fa-dropbox": "Dropbox",
  "fa-stack-overflow": "Stack Overflow",
  "fa-instagram": "Instagram",
  "fa-flickr": "Flickr",
  "fa-adn": "Adn",
  "fa-bitbucket": "Bitbucket",
  "fa-bitbucket-square": "Bitbucket Square",
  "fa-tumblr": "Tumblr",
  "fa-tumblr-square": "Tumblr Square",
  "fa-long-arrow-down": "Long Arrow Down",
  "fa-long-arrow-up": "Long Arrow Up",
  "fa-long-arrow-left": "Long Arrow Left",
  "fa-long-arrow-right": "Long Arrow Right",
  "fa-apple": "Apple",
  "fa-windows": "Windows",
  "fa-android": "Android",
  "fa-linux": "Linux",
  "fa-dribbble": "Dribbble",
  "fa-skype": "Skype",
  "fa-foursquare": "Foursquare",
  "fa-trello": "Trello",
  "fa-female": "Female",
  "fa-male": "Male",
  "fa-gratipay": "Gratipay",
  "fa-sun-o": "Sun O",
  "fa-moon-o": "Moon O",
  "fa-archive": "Archive",
  "fa-bug": "Bug",
  "fa-vk": "Vk",
  "fa-weibo": "Weibo",
  "fa-renren": "Renren",
  "fa-pagelines": "Pagelines",
  "fa-stack-exchange": "Stack Exchange",
  "fa-arrow-circle-o-right": "Arrow Circle O Right",
  "fa-arrow-circle-o-left": "Arrow Circle O Left",
  "fa-caret-square-o-left": "Caret Square O Left",
  "fa-dot-circle-o": "Dot Circle O",
  "fa-wheelchair": "Wheelchair",
  "fa-vimeo-square": "Vimeo Square",
  "fa-try": "Try",
  "fa-plus-square-o": "Plus Square O",
  "fa-space-shuttle": "Space Shuttle",
  "fa-slack": "Slack",
  "fa-envelope-square": "Envelope Square",
  "fa-wordpress": "Wordpress",
  "fa-openid": "Openid",
  "fa-university": "University",
  "fa-graduation-cap": "Graduation Cap",
  "fa-yahoo": "Yahoo",
  "fa-google": "Google",
  "fa-reddit": "Reddit",
  "fa-reddit-square": "Reddit Square",
  "fa-stumbleupon-circle": "Stumbleupon Circle",
  "fa-stumbleupon": "Stumbleupon",
  "fa-delicious": "Delicious",
  "fa-digg": "Digg",
  "fa-pied-piper": "Pied Piper",
  "fa-pied-piper-alt": "Pied Piper Alt",
  "fa-drupal": "Drupal",
  "fa-joomla": "Joomla",
  "fa-language": "Language",
  "fa-fax": "Fax",
  "fa-building": "Building",
  "fa-child": "Child",
  "fa-paw": "Paw",
  "fa-spoon": "Spoon",
  "fa-cube": "Cube",
  "fa-cubes": "Cubes",
  "fa-behance": "Behance",
  "fa-behance-square": "Behance Square",
  "fa-steam": "Steam",
  "fa-steam-square": "Steam Square",
  "fa-recycle": "Recycle",
  "fa-car": "Car",
  "fa-taxi": "Taxi",
  "fa-tree": "Tree",
  "fa-spotify": "Spotify",
  "fa-deviantart": "Deviantart",
  "fa-soundcloud": "Soundcloud",
  "fa-database": "Database",
  "fa-file-pdf-o": "File Pdf O",
  "fa-file-word-o": "File Word O",
  "fa-file-excel-o": "File Excel O",
  "fa-file-powerpoint-o": "File Powerpoint O",
  "fa-file-image-o": "File Image O",
  "fa-file-archive-o": "File Archive O",
  "fa-file-audio-o": "File Audio O",
  "fa-file-video-o": "File Video O",
  "fa-file-code-o": "File Code O",
  "fa-vine": "Vine",
  "fa-codepen": "Codepen",
  "fa-jsfiddle": "Jsfiddle",
  "fa-life-ring": "Life Ring",
  "fa-circle-o-notch": "Circle O Notch",
  "fa-rebel": "Rebel",
  "fa-empire": "Empire",
  "fa-git-square": "Git Square",
  "fa-git": "Git",
  "fa-hacker-news": "Hacker News",
  "fa-tencent-weibo": "Tencent Weibo",
  "fa-qq": "Qq",
  "fa-weixin": "Weixin",
  "fa-paper-plane": "Paper Plane",
  "fa-paper-plane-o": "Paper Plane O",
  "fa-history": "History",
  "fa-circle-thin": "Circle Thin",
  "fa-header": "Header",
  "fa-paragraph": "Paragraph",
  "fa-sliders": "Sliders",
  "fa-share-alt": "Share Alt",
  "fa-share-alt-square": "Share Alt Square",
  "fa-bomb": "Bomb",
  "fa-futbol-o": "Futbol O",
  "fa-tty": "Tty",
  "fa-binoculars": "Binoculars",
  "fa-plug": "Plug",
  "fa-slideshare": "Slideshare",
  "fa-twitch": "Twitch",
  "fa-yelp": "Yelp",
  "fa-newspaper-o": "Newspaper O",
  "fa-wifi": "Wifi",
  "fa-calculator": "Calculator",
  "fa-paypal": "Paypal",
  "fa-google-wallet": "Google Wallet",
  "fa-cc-visa": "Cc Visa",
  "fa-cc-mastercard": "Cc Mastercard",
  "fa-cc-discover": "Cc Discover",
  "fa-cc-amex": "Cc Amex",
  "fa-cc-paypal": "Cc Paypal",
  "fa-cc-stripe": "Cc Stripe",
  "fa-bell-slash": "Bell Slash",
  "fa-bell-slash-o": "Bell Slash O",
  "fa-trash": "Trash",
  "fa-copyright": "Copyright",
  "fa-at": "At",
  "fa-eyedropper": "Eyedropper",
  "fa-paint-brush": "Paint Brush",
  "fa-birthday-cake": "Birthday Cake",
  "fa-area-chart": "Area Chart",
  "fa-pie-chart": "Pie Chart",
  "fa-line-chart": "Line Chart",
  "fa-lastfm": "Lastfm",
  "fa-lastfm-square": "Lastfm Square",
  "fa-toggle-off": "Toggle Off",
  "fa-toggle-on": "Toggle On",
  "fa-bicycle": "Bicycle",
  "fa-bus": "Bus",
  "fa-ioxhost": "Ioxhost",
  "fa-angellist": "Angellist",
  "fa-cc": "Cc",
  "fa-ils": "Ils",
  "fa-meanpath": "Meanpath",
  "fa-buysellads": "Buysellads",
  "fa-connectdevelop": "Connectdevelop",
  "fa-dashcube": "Dashcube",
  "fa-forumbee": "Forumbee",
  "fa-leanpub": "Leanpub",
  "fa-sellsy": "Sellsy",
  "fa-shirtsinbulk": "Shirtsinbulk",
  "fa-simplybuilt": "Simplybuilt",
  "fa-skyatlas": "Skyatlas",
  "fa-cart-plus": "Cart Plus",
  "fa-cart-arrow-down": "Cart Arrow Down",
  "fa-diamond": "Diamond",
  "fa-ship": "Ship",
  "fa-user-secret": "User Secret",
  "fa-motorcycle": "Motorcycle",
  "fa-street-view": "Street View",
  "fa-heartbeat": "Heartbeat",
  "fa-venus": "Venus",
  "fa-mars": "Mars",
  "fa-mercury": "Mercury",
  "fa-transgender": "Transgender",
  "fa-transgender-alt": "Transgender Alt",
  "fa-venus-double": "Venus Double",
  "fa-mars-double": "Mars Double",
  "fa-venus-mars": "Venus Mars",
  "fa-mars-stroke": "Mars Stroke",
  "fa-mars-stroke-v": "Mars Stroke V",
  "fa-mars-stroke-h": "Mars Stroke H",
  "fa-neuter": "Neuter",
  "fa-facebook-official": "Facebook Official",
  "fa-pinterest-p": "Pinterest P",
  "fa-whatsapp": "Whatsapp",
  "fa-server": "Server",
  "fa-user-plus": "User Plus",
  "fa-user-times": "User Times",
  "fa-bed": "Bed",
  "fa-viacoin": "Viacoin",
  "fa-train": "Train",
  "fa-subway": "Subway",
  "fa-medium": "Medium",
  "fa-pull-left": "Pull Left",
  "fa-pull-right": "Pull Right",
  "fa-feed": "Feed",
  "fa-pied-piper-pp": "Pied Piper Pp",
  "fa-resistance": "Resistance",
  "fa-y-combinator-square": "Y Combinator Square",
  "fa-yc-square": "Yc Square",
  "fa-intersex": "Intersex",
  "fa-yc": "Yc",
  "fa-y-combinator": "Y Combinator",
  "fa-optin-monster": "Optin Monster",
  "fa-opencart": "Opencart",
  "fa-expeditedssl": "Expeditedssl",
  "fa-battery-4": "Battery 4",
  "fa-battery": "Battery",
  "fa-battery-full": "Battery Full",
  "fa-battery-3": "Battery 3",
  "fa-battery-three-quarters": "Battery Three Quarters",
  "fa-battery-2": "Battery 2",
  "fa-battery-half": "Battery Half",
  "fa-battery-1": "Battery 1",
  "fa-battery-quarter": "Battery Quarter",
  "fa-battery-0": "Battery 0",
  "fa-battery-empty": "Battery Empty",
  "fa-mouse-pointer": "Mouse Pointer",
  "fa-i-cursor": "I Cursor",
  "fa-object-group": "Object Group",
  "fa-object-ungroup": "Object Ungroup",
  "fa-sticky-note": "Sticky Note",
  "fa-sticky-note-o": "Sticky Note O",
  "fa-cc-jcb": "Cc Jcb",
  "fa-cc-diners-club": "Cc Diners Club",
  "fa-clone": "Clone",
  "fa-balance-scale": "Balance Scale",
  "fa-hourglass-o": "Hourglass O",
  "fa-hourglass-1": "Hourglass 1",
  "fa-hourglass-start": "Hourglass Start",
  "fa-hourglass-2": "Hourglass 2",
  "fa-hourglass-half": "Hourglass Half",
  "fa-hourglass-3": "Hourglass 3",
  "fa-hourglass-end": "Hourglass End",
  "fa-hourglass": "Hourglass",
  "fa-hand-grab-o": "Hand Grab O",
  "fa-hand-rock-o": "Hand Rock O",
  "fa-hand-stop-o": "Hand Stop O",
  "fa-hand-paper-o": "Hand Paper O",
  "fa-hand-scissors-o": "Hand Scissors O",
  "fa-hand-lizard-o": "Hand Lizard O",
  "fa-hand-spock-o": "Hand Spock O",
  "fa-hand-pointer-o": "Hand Pointer O",
  "fa-hand-peace-o": "Hand Peace O",
  "fa-trademark": "Trademark",
  "fa-registered": "Registered",
  "fa-creative-commons": "Creative Commons",
  "fa-gg": "Gg",
  "fa-gg-circle": "Gg Circle",
  "fa-tripadvisor": "Tripadvisor",
  "fa-odnoklassniki": "Odnoklassniki",
  "fa-odnoklassniki-square": "Odnoklassniki Square",
  "fa-get-pocket": "Get Pocket",
  "fa-wikipedia-w": "Wikipedia W",
  "fa-safari": "Safari",
  "fa-chrome": "Chrome",
  "fa-firefox": "Firefox",
  "fa-opera": "Opera",
  "fa-internet-explorer": "Internet Explorer",
  "fa-tv": "Tv",
  "fa-television": "Television",
  "fa-contao": "Contao",
  "fa-500px": "500px",
  "fa-amazon": "Amazon",
  "fa-calendar-plus-o": "Calendar Plus O",
  "fa-calendar-minus-o": "Calendar Minus O",
  "fa-calendar-times-o": "Calendar Times O",
  "fa-calendar-check-o": "Calendar Check O",
  "fa-industry": "Industry",
  "fa-map-pin": "Map Pin",
  "fa-map-signs": "Map Signs",
  "fa-map-o": "Map O",
  "fa-map": "Map",
  "fa-commenting": "Commenting",
  "fa-commenting-o": "Commenting O",
  "fa-houzz": "Houzz",
  "fa-vimeo": "Vimeo",
  "fa-black-tie": "Black Tie",
  "fa-fonticons": "Fonticons",
  "fa-reddit-alien": "Reddit Alien",
  "fa-edge": "Edge",
  "fa-credit-card-alt": "Credit Card Alt",
  "fa-codiepie": "Codiepie",
  "fa-modx": "Modx",
  "fa-fort-awesome": "Fort Awesome",
  "fa-usb": "Usb",
  "fa-product-hunt": "Product Hunt",
  "fa-mixcloud": "Mixcloud",
  "fa-scribd": "Scribd",
  "fa-pause-circle": "Pause Circle",
  "fa-pause-circle-o": "Pause Circle O",
  "fa-stop-circle": "Stop Circle",
  "fa-stop-circle-o": "Stop Circle O",
  "fa-shopping-bag": "Shopping Bag",
  "fa-shopping-basket": "Shopping Basket",
  "fa-hashtag": "Hashtag",
  "fa-bluetooth": "Bluetooth",
  "fa-bluetooth-b": "Bluetooth B",
  "fa-percent": "Percent",
  "fa-gitlab": "Gitlab",
  "fa-wpbeginner": "Wpbeginner",
  "fa-wpforms": "Wpforms",
  "fa-envira": "Envira",
  "fa-universal-access": "Universal Access",
  "fa-wheelchair-alt": "Wheelchair Alt",
  "fa-question-circle-o": "Question Circle O",
  "fa-blind": "Blind",
  "fa-audio-description": "Audio Description",
  "fa-volume-control-phone": "Volume Control Phone",
  "fa-braille": "Braille",
  "fa-assistive-listening-systems": "Assistive Listening Systems",
  "fa-asl-interpreting": "Asl Interpreting",
  "fa-american-sign-language-interpreting": "American Sign Language-interpreting",
  "fa-deafness": "Deafness",
  "fa-hard-of-hearing": "Hard Of Hearing",
  "fa-deaf": "Deaf",
  "fa-glide": "Glide",
  "fa-glide-g": "Glide G",
  "fa-signing": "Signing",
  "fa-sign-language": "Sign Language",
  "fa-low-vision": "Low Vision",
  "fa-viadeo": "Viadeo",
  "fa-viadeo-square": "Viadeo Square",
  "fa-snapchat": "Snapchat",
  "fa-snapchat-ghost": "Snapchat Ghost",
  "fa-snapchat-square": "Snapchat Square",
  "fa-first-order": "First Order",
  "fa-yoast": "Yoast",
  "fa-themeisle": "Themeisle",
  "fa-google-plus-circle": "Google Plus Circle",
  "fa-google-plus-official": "Google Plus Official",
  "fa-fa": "Fa",
  "fa-font-awesome": "Font Awesome",
  "fa-handshake-o": "Handshake O",
  "fa-envelope-open": "Envelope Open",
  "fa-envelope-open-o": "Envelope Open O",
  "fa-linode": "Linode",
  "fa-address-book": "Address Book",
  "fa-address-book-o": "Address Book O",
  "fa-vcard": "Vcard",
  "fa-address-card": "Address Card",
  "fa-vcard-o": "Vcard O",
  "fa-address-card-o": "Address Card O",
  "fa-user-circle": "User Circle",
  "fa-user-circle-o": "User Circle O",
  "fa-user-o": "User O",
  "fa-id-badge": "Id Badge",
  "fa-drivers-license": "Drivers License",
  "fa-id-card": "Id Card",
  "fa-drivers-license-o": "Drivers License O",
  "fa-id-card-o": "Id Card O",
  "fa-quora": "Quora",
  "fa-free-code-camp": "Free Code Camp",
  "fa-telegram": "Telegram",
  "fa-thermometer-4": "Thermometer 4",
  "fa-thermometer": "Thermometer",
  "fa-thermometer-full": "Thermometer Full",
  "fa-thermometer-3": "Thermometer 3",
  "fa-thermometer-three-quarters": "Thermometer Three Quarters",
  "fa-thermometer-2": "Thermometer 2",
  "fa-thermometer-half": "Thermometer Half",
  "fa-thermometer-1": "Thermometer 1",
  "fa-thermometer-quarter": "Thermometer Quarter",
  "fa-thermometer-0": "Thermometer 0",
  "fa-thermometer-empty": "Thermometer Empty",
  "fa-shower": "Shower",
  "fa-bathtub": "Bathtub",
  "fa-s15": "S15",
  "fa-bath": "Bath",
  "fa-podcast": "Podcast",
  "fa-window-maximize": "Window Maximize",
  "fa-window-minimize": "Window Minimize",
  "fa-window-restore": "Window Restore",
  "fa-times-rectangle": "Times Rectangle",
  "fa-window-close": "Window Close",
  "fa-times-rectangle-o": "Times Rectangle O",
  "fa-window-close-o": "Window Close O",
  "fa-bandcamp": "Bandcamp",
  "fa-grav": "Grav",
  "fa-etsy": "Etsy",
  "fa-imdb": "Imdb",
  "fa-ravelry": "Ravelry",
  "fa-eercast": "Eercast",
  "fa-microchip": "Microchip",
  "fa-snowflake-o": "Snowflake O",
  "fa-superpowers": "Superpowers",
  "fa-wpexplorer": "Wpexplorer",
  "fa-meetup": "Meetup"
}PK`x1\"����`�`!assets/js/jquery.yith-wcwl.min.jsnu�[���jQuery(function(d){function a(){"undefined"!=typeof d.fn.selectBox&&d("select.selectBox").filter(":visible").not(".enhanced").selectBox().addClass("enhanced")}function e(){var t,e,i,n;"undefined"!=typeof d.prettyPhoto&&(t={hook:"data-rel",social_tools:!1,theme:"pp_woocommerce",horizontal_padding:20,opacity:.8,deeplinking:!1,overlay_gallery:!1,default_width:500,changepicturecallback:function(){a(),d(".wishlist-select").filter(":visible").change(),d(document).trigger("yith_wcwl_popup_opened",[this])},markup:'<div class="pp_pic_holder"><div class="ppt">&nbsp;</div><div class="pp_top"><div class="pp_left"></div><div class="pp_middle"></div><div class="pp_right"></div></div><div class="pp_content_container"><div class="pp_left"><div class="pp_right"><div class="pp_content"><div class="pp_loaderIcon"></div><div class="pp_fade"><a href="#" class="pp_expand" title="Expand the image">Expand</a><div class="pp_hoverContainer"><a class="pp_next" href="#">next</a><a class="pp_previous" href="#">previous</a></div><div id="pp_full_res"></div><div class="pp_details"><a class="pp_close" href="#">Close</a></div></div></div></div></div></div><div class="pp_bottom"><div class="pp_left"></div><div class="pp_middle"></div><div class="pp_right"></div></div></div><div class="pp_overlay yith-wcwl-overlay"></div>'},d('a[data-rel^="prettyPhoto[add_to_wishlist_"]').add('a[data-rel="prettyPhoto[ask_an_estimate]"]').add('a[data-rel="prettyPhoto[create_wishlist]"]').off("click").prettyPhoto(t),d('a[data-rel="prettyPhoto[move_to_another_wishlist]"]').on("click",function(){var t=d(this),e=d("#move_to_another_wishlist").find("form"),i=e.find(".row-id"),t=t.closest("[data-row-id]").data("row-id");i.length&&i.remove(),e.append('<input type="hidden" name="row_id" class="row-id" value="'+t+'"/>')}).prettyPhoto(t),e=function(t,e){"undefined"!=typeof t.classList&&t.classList.contains("yith-wcwl-overlay")&&(e="remove"===e?"removeClass":"addClass",d("body")[e]("yith-wcwl-with-pretty-photo"))},i=function(t){e(t,"add")},n=function(t){e(t,"remove")},new MutationObserver(function(t){for(var e in t){e=t[e];"childList"===e.type&&("undefined"!=typeof e.addedNodes&&"function"==typeof e.addedNodes.forEach&&e.addedNodes.forEach(i),"undefined"!=typeof e.removedNodes&&"function"==typeof e.addedNodes.forEach&&e.removedNodes.forEach(n))}}).observe(document.body,{childList:!0}))}function i(){d(".wishlist_table").find('.product-checkbox input[type="checkbox"]').off("change").on("change",function(){var t=d(this);t.parent().removeClass("checked").removeClass("unchecked").addClass(t.is(":checked")?"checked":"unchecked")}).trigger("change")}function n(){d(".add_to_cart").filter("[data-icon]").not(".icon-added").each(function(){var t=d(this),e=t.data("icon"),e=e.match(/[-a-zA-Z0-9@:%._\+~#=]{1,256}\.[a-zA-Z0-9()]{1,6}\b([-a-zA-Z0-9()@:%_\+.~#?&//=]*)?/gi)?d("<img/>",{src:e}):d("<i/>",{"class":"fa "+e});t.prepend(e).addClass("icon-added")})}function c(){a(),e(),i(),n(),r(),o(),f(),_(),h(),w(),d(document).trigger("yith_wcwl_init_after_ajax")}function o(){yith_wcwl_l10n.enable_tooltip&&d(".yith-wcwl-add-to-wishlist").find("[data-title]").each(function(){var t=d(this);t.hasClass("tooltip-added")||(t.on("mouseenter",function(){var t,e=d(this),i=null,n=e.outerWidth(),a=0,i=d("<span>",{"class":"yith-wcwl-tooltip",text:e.data("title")});e.append(i),t=i.outerWidth()+6,i.outerWidth(t),a=(n-t)/2,i.css({left:a.toFixed(0)+"px"}).fadeIn(200),e.addClass("with-tooltip")}).on("mouseleave",function(){var t=d(this);t.find(".yith-wcwl-tooltip").fadeOut(200,function(){t.removeClass("with-tooltip").find(".yith-wcwl-tooltip").remove()})}),t.addClass("tooltip-added"))})}function r(){d(".yith-wcwl-add-button").filter(".with-dropdown").on("mouseleave",function(){var t=d(this).find(".yith-wcwl-dropdown");t.length&&t.fadeOut(200)}).children("a").on("mouseenter",function(){var t=d(this).closest(".with-dropdown"),e=t.find(".yith-wcwl-dropdown");e.length&&e.children().length&&t.find(".yith-wcwl-dropdown").fadeIn(200)})}function _(){"undefined"!=typeof yith_wcwl_l10n.enable_drag_n_drop&&yith_wcwl_l10n.enable_drag_n_drop&&d(".wishlist_table").filter(".sortable").not(".no-interactions").each(function(){var n=d(this),a=!1;n.sortable({items:"[data-row-id]",scroll:!0,helper:function(t,e){return e.children().each(function(){d(this).width(d(this).width())}),e},update:function(){var t=n.find("[data-row-id]"),e=[],i=0;t.length&&(a&&a.abort(),t.each(function(){var t=d(this);t.find('input[name*="[position]"]').val(i++),e.push(t.data("row-id"))}),a=d.ajax({data:{action:yith_wcwl_l10n.actions.sort_wishlist_items,nonce:yith_wcwl_l10n.nonce.sort_wishlist_items_nonce,context:"frontend",positions:e,wishlist_token:n.data("token"),page:n.data("page"),per_page:n.data("per-page")},method:"POST",url:yith_wcwl_l10n.ajax_url}))}})})}function h(){var o,s;d(".wishlist_table").on("change",".product-quantity :input",function(){var t=d(this),e=t.closest("[data-row-id]"),i=e.data("row-id"),n=t.closest(".wishlist_table"),a=n.data("token");clearTimeout(s),e.find(".add_to_cart").attr("data-quantity",t.val()),s=setTimeout(function(){o&&o.abort(),o=d.ajax({beforeSend:function(){j(n)},complete:function(){C(n)},data:{action:yith_wcwl_l10n.actions.update_item_quantity,nonce:yith_wcwl_l10n.nonce.update_item_quantity_nonce,context:"frontend",product_id:i,wishlist_token:a,quantity:t.val()},method:"POST",url:yith_wcwl_l10n.ajax_url})},1e3)})}function w(){d(".copy-trigger").on("click",function(){var t=d(".copy-target");0<t.length&&(t.is("input")?(s()?t[0].setSelectionRange(0,9999):t.select(),document.execCommand("copy")):(t=d("<input/>",{val:t.text(),type:"text"}),d("body").append(t),s()?t[0].setSelectionRange(0,9999):t.select(),document.execCommand("copy"),t.remove()))})}function f(){d(".wishlist_table").filter(".images_grid").not(".enhanced").on("click","[data-row-id] .product-thumbnail a",function(t){var e,i,n;yith_wcwl_l10n.disable_popup_grid_view||(i=(e=d(this).closest("[data-row-id]")).siblings("[data-row-id]"),n=e.find(".item-details"),t.preventDefault(),n.length&&(i.removeClass("show"),e.toggleClass("show")))}).on("click","[data-row-id] a.close",function(t){var e=d(this).closest("[data-row-id]"),i=e.find(".item-details");t.preventDefault(),i.length&&e.removeClass("show")}).on("click","[data-row-id] a.remove_from_wishlist",function(t){var e=d(this);return t.stopPropagation(),u(e),!1}).addClass("enhanced"),d(document).on("click",function(t){d(t.target).closest("[data-row-id]").length||d(".wishlist_table").filter(".images_grid").find(".show").removeClass("show")}).on("added_to_cart",function(){d(".wishlist_table").filter(".images_grid").find(".show").removeClass("show")})}function p(e,t,i){e.action=yith_wcwl_l10n.actions.move_to_another_wishlist_action,e.nonce=yith_wcwl_l10n.nonce.move_to_another_wishlist_nonce,e.context="frontend",""!==e.wishlist_token&&""!==e.destination_wishlist_token&&""!==e.item_id&&d.ajax({beforeSend:t,url:yith_wcwl_l10n.ajax_url,data:e,dataType:"json",method:"post",success:function(t){i(t),c(),d("body").trigger("moved_to_another_wishlist",[d(this),e.item_id])}})}function u(e){var t=e.parents(".cart.wishlist_table"),i=e.parents("[data-row-id]"),n=i.data("row-id"),a=t.data("id"),o=t.data("token"),n={action:yith_wcwl_l10n.actions.remove_from_wishlist_action,nonce:yith_wcwl_l10n.nonce.remove_from_wishlist_nonce,context:"frontend",remove_from_wishlist:n,wishlist_id:a,wishlist_token:o,fragments:S(n)};d.ajax({beforeSend:function(){j(t)},complete:function(){C(t)},data:n,method:"post",success:function(t){"undefined"!=typeof t.fragments&&O(t.fragments),c(),d("body").trigger("removed_from_wishlist",[e,i])},url:yith_wcwl_l10n.ajax_url})}function m(t){var e=d(this),i=e.closest(".wishlist_table"),n=null;t.preventDefault(),(n=i.length?e.closest("[data-wishlist-id]").find(".wishlist-title"):e.parents(".wishlist-title")).next().css("display","inline-block").find('input[type="text"]').focus(),n.hide()}function y(t){var e=d(this);t.preventDefault(),e.parents(".hidden-title-form").hide(),e.parents(".hidden-title-form").prev().show()}function v(t){var e=d(this),i=e.closest(".hidden-title-form"),n=e.closest("[data-wishlist-id]").data("wishlist-id"),a=i.find('input[type="text"]'),o=a.val(),e={};if(t.preventDefault(),!o)return i.addClass("woocommerce-invalid"),void a.focus();n=n||d("#wishlist_id").val(),e={action:yith_wcwl_l10n.actions.save_title_action,nonce:yith_wcwl_l10n.nonce.save_title_nonce,context:"frontend",wishlist_id:n,title:o,fragments:S()},d.ajax({type:"POST",url:yith_wcwl_l10n.ajax_url,data:e,dataType:"json",beforeSend:function(){j(i)},complete:function(){C(i)},success:function(t){var e=t.fragments;t.result?(i.hide(),i.prev().find(".wishlist-anchor, h1, h2").text(o).end().show()):(i.addClass("woocommerce-invalid"),a.focus()),void 0!==e&&O(e)}})}function g(){var t=d(this),e=t.val(),t=t.closest("[data-wishlist-id]").data("wishlist-id"),e={action:yith_wcwl_l10n.actions.save_privacy_action,nonce:yith_wcwl_l10n.nonce.save_privacy_nonce,context:"frontend",wishlist_id:t,privacy:e,fragments:S()};d.ajax({type:"POST",url:yith_wcwl_l10n.ajax_url,data:e,dataType:"json",success:function(t){t=t.fragments;void 0!==t&&O(t)}})}function b(t,e){if("undefined"!=typeof d.prettyPhoto&&"undefined"!=typeof d.prettyPhoto.close)if(void 0!==t){var i,n=d(".pp_content_container"),a=n.find(".pp_content"),o=n.find(".yith-wcwl-popup-form"),n=o.closest(".pp_pic_holder");o.length&&((i=d("<div/>",{"class":"yith-wcwl-popup-feedback"})).append(d("<i/>",{"class":"fa heading-icon "+("error"===e?"fa-exclamation-triangle":"fa-check")})),i.append(d("<p/>",{"class":"feedback",html:t})),i.css("display","none"),a.css("height","auto"),o.after(i),o.fadeOut(200,function(){i.fadeIn()}),n.addClass("feedback"),n.css("left",d(window).innerWidth()/2-n.outerWidth()/2+"px"),"undefined"!=typeof yith_wcwl_l10n.auto_close_popup&&!yith_wcwl_l10n.auto_close_popup||setTimeout(b,yith_wcwl_l10n.popup_timeout))}else try{d.prettyPhoto.close()}catch(s){}}function x(t){var e=d("#yith-wcwl-popup-message"),i=d("#yith-wcwl-message"),n="undefined"!=typeof yith_wcwl_l10n.popup_timeout?yith_wcwl_l10n.popup_timeout:3e3;"undefined"!=typeof yith_wcwl_l10n.enable_notices&&!yith_wcwl_l10n.enable_notices||(i.html(t),e.css("margin-left","-"+d(e).width()+"px").fadeIn(),window.setTimeout(function(){e.fadeOut()},n))}function k(o){var t=d("select.wishlist-select"),e=d("ul.yith-wcwl-dropdown");t.each(function(){var i=d(this),t=i.find("option"),e=t.filter('[value="new"]');t.not(e).remove(),d.each(o,function(t,e){d("<option>",{value:e.id,html:e.wishlist_name}).appendTo(i)}),i.append(e)}),e.each(function(){var i=d(this),t=i.find("li"),e=i.closest(".yith-wcwl-add-button").children("a.add_to_wishlist"),n=e.attr("data-product-id"),a=e.attr("data-product-type");t.remove(),d.each(o,function(t,e){e["default"]||d("<li>").append(d("<a>",{rel:"nofollow",html:e.wishlist_name,"class":"add_to_wishlist",href:e.add_to_this_wishlist_url,"data-product-id":n,"data-product-type":a,"data-wishlist-id":e.id})).appendTo(i)})})}function j(t){"undefined"!=typeof d.fn.block&&t.fadeTo("400","0.6").block({message:null,overlayCSS:{background:"transparent url("+yith_wcwl_l10n.ajax_loader_url+") no-repeat center",backgroundSize:"40px 40px",opacity:1}})}function C(t){"undefined"!=typeof d.fn.unblock&&t.stop(!0).css("opacity","1").unblock()}function T(){if(navigator.cookieEnabled)return 1;document.cookie="cookietest=1";var t=-1!==document.cookie.indexOf("cookietest=");return document.cookie="cookietest=1; expires=Thu, 01-Jan-1970 00:00:01 GMT",t}function S(t){var i={},e=null;return t?"object"==typeof t?(e=(t=d.extend({fragments:null,s:"",container:d(document),firstLoad:!1},t)).fragments||t.container.find(".wishlist-fragment"),t.s&&(e=e.not("[data-fragment-ref]").add(e.filter('[data-fragment-ref="'+t.s+'"]'))),t.firstLoad&&(e=e.filter(".on-first-load"))):(e=d(".wishlist-fragment"),"string"!=typeof t&&"number"!=typeof t||(e=e.not("[data-fragment-ref]").add(e.filter('[data-fragment-ref="'+t+'"]')))):e=d(".wishlist-fragment"),e.length?(e.each(function(){var t=d(this),e=t.attr("class").split(" ").filter(t=>t.length&&"exists"!==t).join(yith_wcwl_l10n.fragments_index_glue);i[e]=t.data("fragment-options")}),i):null}function P(e){var i=S(e=d.extend({firstLoad:!0},e));i&&d.ajax({data:{action:yith_wcwl_l10n.actions.load_fragments,nonce:yith_wcwl_l10n.nonce.load_fragments_nonce,context:"frontend",fragments:i},method:"post",success:function(t){"undefined"!=typeof t.fragments&&(O(t.fragments),c(),d(document).trigger("yith_wcwl_fragments_loaded",[i,t.fragments,e.firstLoad]))},url:yith_wcwl_l10n.ajax_url})}function O(t){d.each(t,function(t,e){var i="."+t.split(yith_wcwl_l10n.fragments_index_glue).filter(t=>t.length&&"exists"!==t&&"with-count"!==t).join("."),n=d(i),t=d(e).filter(i);t.length||(t=d(e).find(i)),n.length&&t.length&&n.replaceWith(t)})}function s(){return navigator.userAgent.match(/ipad|iphone/i)}function D(t){return!0===t||"yes"===t||"1"===t||1===t}d(document).on("yith_wcwl_init",function(){var l,t=d(this),s="undefined"!=typeof wc_add_to_cart_params&&null!==wc_add_to_cart_params?wc_add_to_cart_params.cart_redirect_after_add:"";t.on("click",".add_to_wishlist",function(t){var n=d(this),e=n.attr("data-product-id"),a=d(".add-to-wishlist-"+e),i=null,o={action:yith_wcwl_l10n.actions.add_to_wishlist_action,nonce:yith_wcwl_l10n.nonce.add_to_wishlist_nonce,context:"frontend",add_to_wishlist:e,product_type:n.data("product-type"),wishlist_id:n.data("wishlist-id"),fragments:S(e)};if((i=d(document).triggerHandler("yith_wcwl_add_to_wishlist_data",[n,o]))&&(o=i),t.preventDefault(),jQuery(document.body).trigger("adding_to_wishlist"),yith_wcwl_l10n.multi_wishlist&&yith_wcwl_l10n.modal_enable){e=n.parents(".yith-wcwl-popup-footer").prev(".yith-wcwl-popup-content"),i=e.find(".wishlist-select"),t=e.find(".wishlist-name"),e=e.find(".wishlist-visibility").filter(":checked");if(o.wishlist_id=i.is(":visible")?i.val():"new",o.wishlist_name=t.val(),o.wishlist_visibility=e.val(),"new"===o.wishlist_id&&!o.wishlist_name)return t.closest("p").addClass("woocommerce-invalid"),!1;t.closest("p").removeClass("woocommerce-invalid")}if(T())return d.ajax({type:"POST",url:yith_wcwl_l10n.ajax_url,data:o,dataType:"json",beforeSend:function(){j(n)},complete:function(){C(n)},success:function(t){var e=t.result,i=t.message;yith_wcwl_l10n.multi_wishlist?(b(i,e),"undefined"!=typeof t.user_wishlists&&k(t.user_wishlists)):x(i),"true"!==e&&"exists"!==e||("undefined"!=typeof t.fragments&&O(t.fragments),yith_wcwl_l10n.multi_wishlist&&!yith_wcwl_l10n.hide_add_button||a.find(".yith-wcwl-add-button").remove(),a.addClass("exists")),c(),d("body").trigger("added_to_wishlist",[n,a])}}),!1;window.alert(yith_wcwl_l10n.labels.cookie_disabled)}),t.on("click",".wishlist_table .remove_from_wishlist",function(t){var e=d(this);return t.preventDefault(),u(e),!1}),t.on("adding_to_cart","body",function(t,e,i){void 0!==e&&void 0!==i&&e.closest(".wishlist_table").length&&(i.remove_from_wishlist_after_add_to_cart=e.closest("[data-row-id]").data("row-id"),i.wishlist_id=e.closest(".wishlist_table").data("id"),"undefined"!=typeof wc_add_to_cart_params&&(wc_add_to_cart_params.cart_redirect_after_add=yith_wcwl_l10n.redirect_to_cart),"undefined"!=typeof yith_wccl_general&&(yith_wccl_general.cart_redirect=D(yith_wcwl_l10n.redirect_to_cart)))}),t.on("added_to_cart","body",function(t,e,i,n){var a,o;void 0!==n&&n.closest(".wishlist_table").length&&("undefined"!=typeof wc_add_to_cart_params&&(wc_add_to_cart_params.cart_redirect_after_add=s),"undefined"!=typeof yith_wccl_general&&(yith_wccl_general.cart_redirect=D(s)),o=(a=n.closest("[data-row-id]")).closest(".wishlist-fragment").data("fragment-options"),n.removeClass("added"),a.find(".added_to_cart").remove(),yith_wcwl_l10n.remove_from_wishlist_after_add_to_cart&&o.is_user_owner&&a.remove())}),t.on("added_to_cart","body",function(){var t=d(".woocommerce-message");0===t.length?d("#yith-wcwl-form").prepend(yith_wcwl_l10n.labels.added_to_cart_message):t.fadeOut(300,function(){d(this).replaceWith(yith_wcwl_l10n.labels.added_to_cart_message).fadeIn()})}),t.on("cart_page_refreshed","body",c),t.on("click",".show-title-form",m),t.on("click",".wishlist-title-with-form h2",m),t.on("click",".remove_from_all_wishlists",function(t){var e=d(this),i=e.attr("data-product-id"),n=e.data("wishlist-id"),a=e.closest(".content"),i={action:yith_wcwl_l10n.actions.remove_from_all_wishlists,nonce:yith_wcwl_l10n.nonce.remove_from_all_wishlists_nonce,context:"frontend",prod_id:i,wishlist_id:n,fragments:S(i)};t.preventDefault(),d.ajax({beforeSend:function(){j(a)},complete:function(){C(a)},data:i,dataType:"json",method:"post",success:function(t){"undefined"!=typeof t.fragments&&O(t.fragments),c()},url:yith_wcwl_l10n.ajax_url})}),t.on("click",".hide-title-form",y),t.on("click",".save-title-form",v),t.on("change",".wishlist_manage_table .wishlist-visibility",g),t.on("change",".change-wishlist",function(){var t=d(this),e=t.parents(".cart.wishlist_table"),i=e.data("token"),n=t.parents("[data-row-id]").data("row-id");p({wishlist_token:i,destination_wishlist_token:t.val(),item_id:n,fragments:S()},function(){j(e)},function(t){"undefined"!=typeof t.fragments&&O(t.fragments),C(e)})}),t.on("click",".yith-wcwl-popup-footer .move_to_wishlist",function(){var i=d(this),t=i.attr("data-product-id"),e=i.data("origin-wishlist-id"),n=i.closest("form"),a=n.find(".wishlist-select").val(),o=n.find(".wishlist-name"),s=o.val(),n=n.find(".wishlist-visibility").filter(":checked").val();if("new"===a&&!s)return o.closest("p").addClass("woocommerce-invalid"),!1;o.closest("p").removeClass("woocommerce-invalid"),p({wishlist_token:e,destination_wishlist_token:a,item_id:t,wishlist_name:s,wishlist_visibility:n,fragments:S(t)},function(){j(i)},function(t){var e=t.message;yith_wcwl_l10n.multi_wishlist?(b(e),"undefined"!=typeof t.user_wishlists&&k(t.user_wishlists)):x(e),"undefined"!=typeof t.fragments&&O(t.fragments),c(),C(i)})}),t.on("click",".delete_item",function(){var i=d(this),t=i.attr("data-product-id"),e=i.data("item-id"),n=d(".add-to-wishlist-"+t),t={action:yith_wcwl_l10n.actions.delete_item_action,nonce:yith_wcwl_l10n.nonce.delete_item_nonce,context:"frontend",item_id:e,fragments:S(t)};return d.ajax({url:yith_wcwl_l10n.ajax_url,data:t,dataType:"json",beforeSend:function(){j(i)},complete:function(){C(i)},method:"post",success:function(t){var e=t.fragments,t=t.message;yith_wcwl_l10n.multi_wishlist&&b(t),i.closest(".yith-wcwl-remove-button").length||x(t),void 0!==e&&O(e),c(),d("body").trigger("removed_from_wishlist",[i,n])}}),!1}),t.on("change",".yith-wcwl-popup-content .wishlist-select",function(){var t=d(this);"new"===t.val()?t.parents(".yith-wcwl-first-row").next(".yith-wcwl-second-row").show():t.parents(".yith-wcwl-first-row").next(".yith-wcwl-second-row").hide()}),t.on("change","#bulk_add_to_cart",function(){var t=d(this),e=t.closest(".wishlist_table").find("[data-row-id]").find('input[type="checkbox"]:not(:disabled)');(t.is(":checked")?e.prop("checked","checked"):e.prop("checked",!1)).change()}),t.on("submit",".wishlist-ask-an-estimate-popup",function(){var t=d(this),i=t.closest("form"),n=t.closest(".pp_content"),t=i.serializeArray().reduce((t,e)=>(t[e.name]=e.value,t),{});return t.action=yith_wcwl_l10n.actions.ask_an_estimate,t.nonce=yith_wcwl_l10n.noce.ask_an_estimate_nonce,t.context="frontend",d.ajax({beforeSend:function(){j(i)},complete:function(){C(i)},data:t,dataType:"json",method:"post",success:function(t){var e;"undefined"!=typeof t.result&&t.result?void 0!==(e=t.template)&&(i.replaceWith(e),n.css("height","auto"),setTimeout(b,yith_wcwl_l10n.time_to_close_prettyphoto)):"undefined"!=typeof t.message&&(i.find(".woocommerce-error").remove(),i.find(".popup-description").after(d("<div>",{text:t.message,"class":"woocommerce-error"})))},url:yith_wcwl_l10n.ajax_url}),!1}),t.on("click",".yith-wfbt-add-wishlist",function(t){t.preventDefault();var e=d(this),t=d("#yith-wcwl-form");d("html, body").animate({scrollTop:t.offset().top},500),function(t,i){var e=t.attr("data-product-id"),n=d(document).find(".cart.wishlist_table"),a=n.data("pagination"),o=n.data("per-page"),s=n.data("id"),l=n.data("token"),t={action:yith_wcwl_l10n.actions.reload_wishlist_and_adding_elem_action,nonce:yith_wcwl_l10n.nonce.reload_wishlist_and_adding_elem_nonce,context:"frontend",pagination:a,per_page:o,wishlist_id:s,wishlist_token:l,add_to_wishlist:e,product_type:t.data("product-type")};if(!T())return window.alert(yith_wcwl_l10n.labels.cookie_disabled);d.ajax({type:"POST",url:yith_wcwl_l10n.ajax_url,data:t,dataType:"html",beforeSend:function(){j(n)},complete:function(){C(n)},success:function(t){var e=d(t),t=e.find("#yith-wcwl-form"),e=e.find(".yith-wfbt-slider-wrapper");i.replaceWith(t),d(".yith-wfbt-slider-wrapper").replaceWith(e),c(),d(document).trigger("yith_wcwl_reload_wishlist_from_frequently")}})}(e,t)}),t.on("submit",".yith-wcwl-popup-form",function(){return!1}),t.on("yith_infs_added_elem",function(){e()}),t.on("found_variation",function(t,e){var i=d(t.target).data("product_id"),n=e.variation_id,t=d(".yith-wcwl-add-to-wishlist").find('[data-product-id="'+i+'"]'),e=d(".yith-wcwl-add-to-wishlist").find('[data-original-product-id="'+i+'"]'),t=t.add(e),e=t.closest(".wishlist-fragment").filter(":visible");i&&n&&t.length&&(t.each(function(){var t=d(this),e=t.closest(".yith-wcwl-add-to-wishlist");t.attr("data-original-product-id",i),t.attr("data-product-id",n),e.length&&(void 0!==(t=e.data("fragment-options"))&&(t.product_id=n,e.data("fragment-options",t)),e.removeClass(function(t,e){return e.match(/add-to-wishlist-\S+/g).join(" ")}).addClass("add-to-wishlist-"+n).attr("data-fragment-ref",n))}),yith_wcwl_l10n.reload_on_found_variation&&(j(e),P({fragments:e,firstLoad:!1})))}),t.on("reset_data",function(t){var n=d(t.target).data("product_id"),e=d('[data-original-product-id="'+n+'"]'),t=e.closest(".wishlist-fragment").filter(":visible");n&&e.length&&(e.each(function(){var t=d(this),e=t.closest(".yith-wcwl-add-to-wishlist"),i=t.attr("data-product-id");t.attr("data-product-id",n),t.attr("data-original-product-id",""),e.length&&(void 0!==(t=e.data("fragment-options"))&&(t.product_id=n,e.data("fragment-options",t)),e.removeClass("add-to-wishlist-"+i).addClass("add-to-wishlist-"+n).attr("data-fragment-ref",n))}),yith_wcwl_l10n.reload_on_found_variation&&(j(t),P({fragments:t,firstLoad:!1})))}),t.on("yith_wcwl_reload_fragments",P),t.on("yith_infs_added_elem",function(t,e){P({container:e,firstLoad:!1})}),t.on("yith_wcwl_fragments_loaded",function(t,e,i,n){n&&d(".variations_form").find(".variations select").last().change()}),t.on("click",".yith-wcwl-popup-feedback .close-popup",function(t){t.preventDefault(),b()}),"undefined"!=typeof yith_wcwl_l10n.enable_notices&&!yith_wcwl_l10n.enable_notices||!d(".yith-wcwl-add-to-wishlist").length||d("#yith-wcwl-popup-message").length||(t=d("<div>").attr("id","yith-wcwl-message"),t=d("<div>").attr("id","yith-wcwl-popup-message").html(t).hide(),d("body").prepend(t)),o(),r(),_(),h(),f(),d(document).on("click",".show-tab",function(t){var e=d(this),i=e.closest(".yith-wcwl-popup-content"),n=e.data("tab"),a=i.find(".tab").filter("."+n);if(t.preventDefault(),!a.length)return!1;e.addClass("active").siblings(".show-tab").removeClass("active"),a.show().siblings(".tab").hide(),"create"===n?i.prepend('<input type="hidden" id="new_wishlist_selector" class="wishlist-select" value="new">'):i.find("#new_wishlist_selector").remove()}),d(document).on("change",".wishlist-select",function(){var t=d(this),e=t.closest(".yith-wcwl-popup-content"),i=t.closest(".tab"),n=e.find(".tab.create"),a=e.find(".show-tab"),e=a.filter('[data-tab="create"]');"new"===t.val()&&n.length&&(i.hide(),n.show(),a.removeClass("active"),e.addClass("active"),t.find("option").removeProp("selected"),t.change())}),a(),i(),e(),n(),l=!1,yith_wcwl_l10n.is_wishlist_responsive&&d(window).on("resize",function(){var t=d(".wishlist_table.responsive"),e=t.is(".mobile"),i=window.matchMedia("(max-width: "+yith_wcwl_l10n.mobile_media_query+"px)"),n=t.closest("form"),a=n.attr("class"),o=n.data("fragment-options"),s={},n=!1;t.length&&(i.matches&&t&&!e?(o.is_mobile="yes",n=!0):!i.matches&&t&&e&&(o.is_mobile="no",n=!0),n&&(l&&l.abort(),s[a.split(" ").join(yith_wcwl_l10n.fragments_index_glue)]=o,l=d.ajax({beforeSend:function(){j(t)},complete:function(){C(t)},data:{action:yith_wcwl_l10n.actions.load_mobile_action,nonce:yith_wcwl_l10n.nonce.load_mobile_nonce,context:"frontend",fragments:s},method:"post",success:function(t){"undefined"!=typeof t.fragments&&(O(t.fragments),c(),d(document).trigger("yith_wcwl_responsive_template",[e,t.fragments]))},url:yith_wcwl_l10n.ajax_url})))}),w(),yith_wcwl_l10n.enable_ajax_loading&&P()}).trigger("yith_wcwl_init")});PK`x1\�~h�~�~�(assets/js/unminified/jquery.yith-wcwl.jsnu�[���/**
 * Main YITH WooCommerce Wishlist JS
 *
 * @author YITH
 * @package YITH WooCommerce Wishlist
 * @version 3.0.0
 */

/* globals yith_wcwl_l10n, wc_add_to_cart_params, yith_wccl_general */

jQuery( function( $ ){

    /* === MAIN INIT === */

    $(document).on( 'yith_wcwl_init', function(){
        var t = $(this),
            cart_redirect_after_add = ( typeof( wc_add_to_cart_params ) !== 'undefined' && wc_add_to_cart_params !== null ) ? wc_add_to_cart_params.cart_redirect_after_add : '';

        t.on( 'click', '.add_to_wishlist', function( ev ) {
            var t = $(this),
                product_id = t.attr( 'data-product-id' ),
                el_wrap = $( '.add-to-wishlist-' + product_id ),
                filtered_data = null,
                data = {
                    action: yith_wcwl_l10n.actions.add_to_wishlist_action,
                    nonce: yith_wcwl_l10n.nonce.add_to_wishlist_nonce,
                    context: 'frontend',
                    add_to_wishlist: product_id,
                    product_type: t.data( 'product-type' ),
                    wishlist_id: t.data( 'wishlist-id' ),
                    fragments: retrieve_fragments( product_id )
                };

            // allow third party code to filter data
            if( filtered_data = $(document).triggerHandler( 'yith_wcwl_add_to_wishlist_data', [ t, data ] ) ) {
                data = filtered_data;
            }

            ev.preventDefault();

            jQuery( document.body ).trigger( 'adding_to_wishlist' );

            if( yith_wcwl_l10n.multi_wishlist && yith_wcwl_l10n.modal_enable ){
                var wishlist_popup_container = t.parents( '.yith-wcwl-popup-footer' ).prev( '.yith-wcwl-popup-content' ),
                    wishlist_popup_select = wishlist_popup_container.find( '.wishlist-select' ),
                    wishlist_popup_name = wishlist_popup_container.find( '.wishlist-name' ),
                    wishlist_popup_visibility = wishlist_popup_container.find( '.wishlist-visibility' ).filter(':checked');

                data.wishlist_id = wishlist_popup_select.is(':visible') ? wishlist_popup_select.val() : 'new';
                data.wishlist_name = wishlist_popup_name.val();
                data.wishlist_visibility = wishlist_popup_visibility.val();

                if( 'new' === data.wishlist_id && ! data.wishlist_name ){
                    wishlist_popup_name.closest('p').addClass('woocommerce-invalid');
                    return false;
                }
                else{
                    wishlist_popup_name.closest('p').removeClass('woocommerce-invalid');
                }
            }

            if( ! is_cookie_enabled() ){
                window.alert( yith_wcwl_l10n.labels.cookie_disabled );
                return;
            }

            $.ajax({
                type: 'POST',
                url: yith_wcwl_l10n.ajax_url,
                data: data,
                dataType: 'json',
                beforeSend: function(){
                    block( t );
                },
                complete: function(){
                    unblock( t );
                },
                success: function( response ) {
                    var response_result = response.result,
                        response_message = response.message;

                    if( yith_wcwl_l10n.multi_wishlist ) {
                        // close PrettyPhoto popup
                        close_pretty_photo( response_message, response_result );

                        // update options for all wishlist selects
                        if( typeof( response.user_wishlists ) !== 'undefined' ) {
                            update_wishlists( response.user_wishlists );
                        }
                    }
                    else {
                        print_message(response_message);
                    }

                    if( response_result === 'true' || response_result === 'exists' ) {
                        if( typeof response.fragments !== 'undefined' ) {
                            replace_fragments( response.fragments );
                        }

                        if( ! yith_wcwl_l10n.multi_wishlist || yith_wcwl_l10n.hide_add_button ) {
                            el_wrap.find('.yith-wcwl-add-button').remove();
                        }

                        el_wrap.addClass('exists');
                    }

                    init_handling_after_ajax();

                    $('body').trigger('added_to_wishlist', [ t, el_wrap ] );
                }

            });

            return false;
        } );

        t.on( 'click', '.wishlist_table .remove_from_wishlist', function( ev ){
            var t = $( this );

            ev.preventDefault();

            remove_item_from_wishlist( t );

            return false;
        } );

        t.on( 'adding_to_cart', 'body', function( ev, button, data ){
            if( typeof button !== 'undefined' && typeof data !== 'undefined' && button.closest( '.wishlist_table' ).length ){
                data.remove_from_wishlist_after_add_to_cart = button.closest( '[data-row-id]' ).data( 'row-id' );
                data.wishlist_id = button.closest( '.wishlist_table' ).data( 'id' );
                typeof wc_add_to_cart_params !== 'undefined' && ( wc_add_to_cart_params.cart_redirect_after_add = yith_wcwl_l10n.redirect_to_cart );
                typeof yith_wccl_general !== 'undefined' && ( yith_wccl_general.cart_redirect = isTrue( yith_wcwl_l10n.redirect_to_cart ) );
            }
        } );

        t.on( 'added_to_cart', 'body', function( ev, fragments, carthash, button ){
            if( typeof button !== 'undefined' && button.closest( '.wishlist_table' ).length ) {
                typeof wc_add_to_cart_params !== 'undefined' && ( wc_add_to_cart_params.cart_redirect_after_add = cart_redirect_after_add );
                typeof yith_wccl_general !== 'undefined' && ( yith_wccl_general.cart_redirect = isTrue( cart_redirect_after_add ) );

                var tr = button.closest('[data-row-id]'),
                    table = tr.closest('.wishlist-fragment'),
                    options = table.data('fragment-options');

                button.removeClass('added');
                tr.find('.added_to_cart').remove();

                if ( yith_wcwl_l10n.remove_from_wishlist_after_add_to_cart && options.is_user_owner ) {
                    tr.remove();
                }
            }
        } );

        t.on( 'added_to_cart', 'body', function(){
            var messages = $( '.woocommerce-message');

            if( messages.length === 0 ){
                $( '#yith-wcwl-form').prepend( yith_wcwl_l10n.labels.added_to_cart_message );
            }
            else{
                messages.fadeOut( 300, function(){
                    $(this).replaceWith( yith_wcwl_l10n.labels.added_to_cart_message ).fadeIn();
                } );
            }
        } );

        t.on( 'cart_page_refreshed', 'body', init_handling_after_ajax );

        t.on( 'click', '.show-title-form', show_title_form );

        t.on( 'click', '.wishlist-title-with-form h2', show_title_form );

        t.on( 'click', '.remove_from_all_wishlists', function( ev ){
            var t = $(this),
                prod_id = t.attr('data-product-id'),
                wishlist_id = t.data('wishlist-id'),
                content = t.closest( '.content' ),
                data = {
                    action: yith_wcwl_l10n.actions.remove_from_all_wishlists,
                    nonce: yith_wcwl_l10n.nonce.remove_from_all_wishlists_nonce,
                    context: 'frontend',
                    prod_id: prod_id,
                    wishlist_id: wishlist_id,
                    fragments: retrieve_fragments( prod_id )
                };

            ev.preventDefault();

            $.ajax({
                beforeSend: function(){
                    block( content );
                },
                complete: function(){
                    unblock( content );
                },
                data: data,
                dataType: 'json',
                method: 'post',
                success: function( data ){
                    if( typeof data.fragments !== 'undefined' ){
                        replace_fragments( data.fragments );
                    }

                    init_handling_after_ajax();
                },
                url: yith_wcwl_l10n.ajax_url
            });
        } );

        t.on( 'click', '.hide-title-form', hide_title_form );

        t.on( 'click', '.save-title-form', submit_title_form );

        t.on( 'change', '.wishlist_manage_table .wishlist-visibility', save_privacy );

        t.on( 'change', '.change-wishlist', function(){
            var t = $(this),
                table = t.parents( '.cart.wishlist_table'),
                wishlist_token = table.data('token'),
                item_id = t.parents( '[data-row-id]').data('row-id'),
                to_token = t.val();

            call_ajax_move_item_to_another_wishlist(
                {
                    wishlist_token            : wishlist_token,
                    destination_wishlist_token: to_token,
                    item_id                   : item_id,
                    fragments                 : retrieve_fragments()
                },
                function(){
                    block( table );
                },
                function( data ){
                    if( typeof data.fragments !== 'undefined' ) {
                        replace_fragments( data.fragments );
                    }

                    unblock( table );
                }
            );
        } );

        t.on( 'click', '.yith-wcwl-popup-footer .move_to_wishlist', function(){
            var t = $(this),
                product_id = t.attr('data-product-id'),
                wishlist_token = t.data('origin-wishlist-id'),
                form = t.closest('form'),
                to_token = form.find('.wishlist-select').val(),
                wishlist_name_field = form.find('.wishlist-name'),
                wishlist_name = wishlist_name_field.val(),
                wishlist_visibility = form.find('.wishlist-visibility').filter(':checked').val();

            if( 'new' === to_token && ! wishlist_name ){
                wishlist_name_field.closest('p').addClass('woocommerce-invalid');
                return false;
            }
            else{
                wishlist_name_field.closest('p').removeClass('woocommerce-invalid');
            }

            call_ajax_move_item_to_another_wishlist(
                {
                    wishlist_token            : wishlist_token,
                    destination_wishlist_token: to_token,
                    item_id                   : product_id,
                    wishlist_name             : wishlist_name,
                    wishlist_visibility       : wishlist_visibility,
                    fragments                 : retrieve_fragments( product_id )
                },
                function(){
                    block( t );
                },
                function( response ){
                    var response_message = response.message;

                    if( yith_wcwl_l10n.multi_wishlist ) {
                        close_pretty_photo( response_message );

                        if( typeof( response.user_wishlists ) !== 'undefined' ){
                            update_wishlists( response.user_wishlists );
                        }
                    }
                    else {
                        print_message(response_message);
                    }

                    if( typeof response.fragments !== 'undefined' ) {
                        replace_fragments( response.fragments );
                    }

                    init_handling_after_ajax();

                    unblock( t );
                }
            );
        } );

        t.on( 'click', '.delete_item', function(){
            var t = $(this),
                product_id = t.attr('data-product-id'),
                item_id = t.data('item-id'),
                el_wrap = $( '.add-to-wishlist-' + product_id ),
                data = {
                    action: yith_wcwl_l10n.actions.delete_item_action,
                    nonce: yith_wcwl_l10n.nonce.delete_item_nonce,
                    context: 'frontend',
                    item_id: item_id,
                    fragments: retrieve_fragments( product_id )
                };

            $.ajax( {
                url: yith_wcwl_l10n.ajax_url,
                data : data,
                dataType: 'json',
                beforeSend: function(){
                    block( t );
                },
                complete: function(){
                    unblock( t );
                },
                method: 'post',
                success: function( response ){
                    var fragments = response.fragments,
                        response_message = response.message;

                    if( yith_wcwl_l10n.multi_wishlist ) {
                        close_pretty_photo( response_message );
                    }

                    if( ! t.closest( '.yith-wcwl-remove-button' ).length ){
                        print_message(response_message);
                    }

                    if( typeof fragments !== 'undefined' ){
                        replace_fragments( fragments );
                    }

                    init_handling_after_ajax();

                    $('body').trigger('removed_from_wishlist', [ t, el_wrap ] );
                }
            } );

            return false;
        } );

        t.on( 'change', '.yith-wcwl-popup-content .wishlist-select', function(){
            var t = $(this);

            if( t.val() === 'new' ){
                t.parents( '.yith-wcwl-first-row' ).next( '.yith-wcwl-second-row' ).show();
            }
            else{
                t.parents( '.yith-wcwl-first-row' ).next( '.yith-wcwl-second-row' ).hide();
            }
        } );

        t.on( 'change', '#bulk_add_to_cart', function(){
            var t = $(this),
                checkboxes = t.closest( '.wishlist_table' ).find( '[data-row-id]' ).find( 'input[type="checkbox"]:not(:disabled)' );

            if( t.is( ':checked' ) ){
                checkboxes.prop( 'checked','checked').change();
            }
            else{
				checkboxes.prop('checked', false).change();
            }
        } );

        t.on( 'submit', '.wishlist-ask-an-estimate-popup', function(){
            var t = $(this),
                form = t.closest( 'form' ),
                pp_content = t.closest('.pp_content'),
                data = form.serializeArray().reduce( ( data, field ) => { data[ field.name ] = field.value; return data; }, {} );

            data.action  = yith_wcwl_l10n.actions.ask_an_estimate;
            data.nonce   = yith_wcwl_l10n.noce.ask_an_estimate_nonce;
            data.context = 'frontend';

            $.ajax({
                beforeSend: function(){
                    block( form );
                },
                complete: function(){
                    unblock( form );
                },
                data: data,
                dataType: 'json',
                method: 'post',
                success: function( data ){
                    if( typeof data.result !== 'undefined' && data.result ){
                        var template = data.template;

                        if( typeof template !== 'undefined' ){
                            form.replaceWith( template );
                            pp_content.css('height', 'auto');

                            setTimeout( close_pretty_photo, yith_wcwl_l10n.time_to_close_prettyphoto );
                        }
                    }
                    else if( typeof data.message !== 'undefined' ){
                        form.find( '.woocommerce-error' ).remove();
                        form.find( '.popup-description' ).after( $('<div>', {
                            'text' : data.message,
                            'class': 'woocommerce-error'
                        } ) );
                    }
                },
                url: yith_wcwl_l10n.ajax_url
            });

            return false;
        } );

        t.on( 'click', '.yith-wfbt-add-wishlist', function(e){
            e.preventDefault();
            var t    = $(this),
                form = $( '#yith-wcwl-form' );

            $('html, body').animate({
                scrollTop: ( form.offset().top)
            },500);

            // ajax call
            reload_wishlist_and_adding_elem( t, form );
        });

        t.on( 'submit', '.yith-wcwl-popup-form', function(){
            return false;
        } );

        t.on( 'yith_infs_added_elem', function(){
            init_wishlist_pretty_photo();
        } );

        t.on( 'found_variation', function( ev, variation ){
            var t = $( ev.target ),
                product_id = t.data( 'product_id' ),
                variation_id = variation.variation_id,
                target1 = $('.yith-wcwl-add-to-wishlist')
                    .find('[data-product-id="' + product_id + '"]'),
                target2 = $('.yith-wcwl-add-to-wishlist')
                    .find('[data-original-product-id="' + product_id + '"]'),
                targets = target1.add( target2 ),
                fragments = targets.closest( '.wishlist-fragment' ).filter(':visible');

            if( ! product_id || ! variation_id || ! targets.length ){
                return;
            }

            targets.each( function(){
                var t = $(this),
                    container = t.closest( '.yith-wcwl-add-to-wishlist' ),
                    options;

                t.attr( 'data-original-product-id', product_id );
                t.attr( 'data-product-id', variation_id );

                if( container.length ) {
                    options = container.data( 'fragment-options' );

                    if( typeof options !== 'undefined' ){
                        options.product_id = variation_id;
                        container.data( 'fragment-options', options );
                    }

                    container
                        .removeClass(function (i, classes) {
                            return classes.match(/add-to-wishlist-\S+/g).join(' ');
                        })
                        .addClass('add-to-wishlist-' + variation_id)
                        .attr('data-fragment-ref', variation_id);
                }
            } );

            if( ! yith_wcwl_l10n.reload_on_found_variation ) {
                return;
            }

            block( fragments );

            load_fragments( {
                fragments: fragments,
                firstLoad: false
            } );
        } );

        t.on( 'reset_data', function( ev ){
            var t = $( ev.target ),
                product_id = t.data( 'product_id' ),
                targets = $('[data-original-product-id="' + product_id + '"]'),
                fragments = targets.closest( '.wishlist-fragment' ).filter(':visible');

            if( ! product_id || ! targets.length ){
                return;
            }

            targets.each( function(){
                var t = $(this),
                    container = t.closest( '.yith-wcwl-add-to-wishlist' ),
                    variation_id = t.attr( 'data-product-id' ),
                    options;

                t.attr( 'data-product-id', product_id );
                t.attr( 'data-original-product-id', '' );

                if( container.length ) {
                    options = container.data( 'fragment-options' );

                    if( typeof options !== 'undefined' ){
                        options.product_id = product_id;
                        container.data( 'fragment-options', options );
                    }

                    container
                        .removeClass('add-to-wishlist-' + variation_id)
                        .addClass('add-to-wishlist-' + product_id)
                        .attr('data-fragment-ref', product_id);
                }
            } );

            if( ! yith_wcwl_l10n.reload_on_found_variation ) {
                return;
            }

            block( fragments );

            load_fragments( {
                fragments: fragments,
                firstLoad: false
            } );

        } );

        t.on( 'yith_wcwl_reload_fragments', load_fragments );

        t.on( 'yith_infs_added_elem', function( ev, elem ){
            load_fragments( {
                container: elem,
                firstLoad: false
            } );
        } );

        t.on( 'yith_wcwl_fragments_loaded', function( ev, original, update, firstLoad ){
            if ( ! firstLoad ) {
               return;
            }

            $( '.variations_form' ).find( '.variations select' ).last().change();
        } );

        t.on( 'click', '.yith-wcwl-popup-feedback .close-popup', function(ev){
            ev.preventDefault();

            close_pretty_photo();
        } );

        init_wishlist_popup();

        init_wishlist_tooltip();

        init_wishlist_dropdown();

        init_wishlist_drag_n_drop();

        init_quantity();

        init_wishlist_details_popup();

        init_wishlist_popup_tabs();

        init_select_box();

        init_checkbox_handling();

        init_wishlist_pretty_photo();

        init_add_to_cart_icon();

        init_wishlist_responsive();

        init_copy_wishlist_link();

        if( yith_wcwl_l10n.enable_ajax_loading ){
            load_fragments();
        }

    } ).trigger('yith_wcwl_init');

    /* === INIT FUNCTIONS === */

    /**
     * Adds selectbox where needed
     *
     * @return void
     * @since 3.0.0
     */
    function init_select_box() {
        if( typeof $.fn.selectBox !== 'undefined' ) {
            $('select.selectBox').filter(':visible').not('.enhanced').selectBox().addClass('enhanced');
        }
    }

    /**
     * Init PrettyPhoto for all links withi the plugin that open a popup
     *
     * @return void
     * @since 2.0.16
     */
    function init_wishlist_pretty_photo() {
        if( typeof $.prettyPhoto === 'undefined' ){
            return;
        }

        var ppParams = {
            hook                  : 'data-rel',
            social_tools          : false,
            theme                 : 'pp_woocommerce',
            horizontal_padding    : 20,
            opacity               : 0.8,
            deeplinking           : false,
            overlay_gallery       : false,
            default_width         : 500,
            changepicturecallback : function(){
                init_select_box();

                $('.wishlist-select').filter(':visible').change();
                $(document).trigger( 'yith_wcwl_popup_opened', [ this ] );
            },
            markup: '<div class="pp_pic_holder">' +
                '<div class="ppt">&nbsp;</div>' +
                '<div class="pp_top">' +
                '<div class="pp_left"></div>' +
                '<div class="pp_middle"></div>' +
                '<div class="pp_right"></div>' +
                '</div>' +
                '<div class="pp_content_container">' +
                '<div class="pp_left">' +
                '<div class="pp_right">' +
                '<div class="pp_content">' +
                '<div class="pp_loaderIcon"></div>' +
                '<div class="pp_fade">' +
                '<a href="#" class="pp_expand" title="Expand the image">Expand</a>' +
                '<div class="pp_hoverContainer">' +
                '<a class="pp_next" href="#">next</a>' +
                '<a class="pp_previous" href="#">previous</a>' +
                '</div>' +
                '<div id="pp_full_res"></div>' +
                '<div class="pp_details">' +
                '<a class="pp_close" href="#">Close</a>' +
                '</div>' +
                '</div>' +
                '</div>' +
                '</div>' +
                '</div>' +
                '</div>' +
                '<div class="pp_bottom">' +
                '<div class="pp_left"></div>' +
                '<div class="pp_middle"></div>' +
                '<div class="pp_right"></div>' +
                '</div>' +
                '</div>' +
                '<div class="pp_overlay yith-wcwl-overlay"></div>'
        };

        $('a[data-rel^="prettyPhoto[add_to_wishlist_"]')
            .add('a[data-rel="prettyPhoto[ask_an_estimate]"]')
            .add('a[data-rel="prettyPhoto[create_wishlist]"]')
            .off( 'click' )
            .prettyPhoto( ppParams );

        $('a[data-rel="prettyPhoto[move_to_another_wishlist]"]').on( 'click', function(){
            var t = $(this),
                popup = $('#move_to_another_wishlist'),
                form = popup.find('form'),
                row_id = form.find( '.row-id' ),
                id = t.closest('[data-row-id]').data('row-id');

            if( row_id.length ){
                row_id.remove();
            }

            form.append( '<input type="hidden" name="row_id" class="row-id" value="' + id + '"/>' );
        } ).prettyPhoto( ppParams );

        // add & remove class to body when popup is opened
        var callback = function( node, op ){
                if( typeof node.classList !== 'undefined' && node.classList.contains( 'yith-wcwl-overlay' ) ){
                    var method = 'remove' === op ? 'removeClass' : 'addClass';

                    $('body')[method]( 'yith-wcwl-with-pretty-photo' );
                }
            },
            callbackAdd = function( node ) {
                callback( node, 'add' );
            },
            callbackRemove = function( node ) {
                callback( node, 'remove' );
            },
            observer = new MutationObserver( function( mutationsList ){
                for ( var i in mutationsList ) {
                    var mutation = mutationsList[ i ];
                    if ( mutation.type === 'childList' ) {
                      typeof mutation.addedNodes !== 'undefined' && typeof mutation.addedNodes.forEach === 'function' && mutation.addedNodes.forEach( callbackAdd );
                      typeof mutation.removedNodes !== 'undefined' && typeof mutation.addedNodes.forEach === 'function' && mutation.removedNodes.forEach( callbackRemove );
                    }
                }
            } );

        observer.observe( document.body, {
          childList: true
        } );
    }

    /**
     * Init checkbox handling
     *
     * @return void
     * @since 3.0.0
     */
    function init_checkbox_handling() {
        var checkboxes = $('.wishlist_table').find('.product-checkbox input[type="checkbox"]');

        checkboxes.off('change').on( 'change', function(){
            var t = $(this),
                p = t.parent();

            p
                .removeClass( 'checked' )
                .removeClass( 'unchecked' )
                .addClass( t.is(':checked') ? 'checked' : 'unchecked' );
        } ).trigger('change');
    }

    /**
     * Show icon on Add to Cart button
     *
     * @return void
     */
    function init_add_to_cart_icon() {
        $('.add_to_cart').filter('[data-icon]').not('.icon-added').each( function(){
            var t = $(this),
                data = t.data('icon'),
                icon;

            if( data.match( /[-a-zA-Z0-9@:%._\+~#=]{1,256}\.[a-zA-Z0-9()]{1,6}\b([-a-zA-Z0-9()@:%_\+.~#?&//=]*)?/gi ) ){
                icon = $( '<img/>', { 'src': data } );
            }
            else{
                icon = $( '<i/>', { 'class': 'fa ' + data } );
            }

            t.prepend( icon ).addClass('icon-added');
        } );
    }

    /**
     * Init js handling on wishlist table items after ajax update
     *
     * @return void
     * @since 2.0.7
     */
    function init_handling_after_ajax() {
        init_select_box();
        init_wishlist_pretty_photo();
        init_checkbox_handling();
        init_add_to_cart_icon();
        init_wishlist_dropdown();
        init_wishlist_tooltip();
        init_wishlist_details_popup();
        init_wishlist_drag_n_drop();
        init_quantity();
        init_copy_wishlist_link();

        $(document).trigger( 'yith_wcwl_init_after_ajax' );
    }

    /**
     * Add tooltip to Add to Wishlist buttons
     *
     * @return void
     * @since 3.0.0
     */
    function init_wishlist_tooltip() {
        if( ! yith_wcwl_l10n.enable_tooltip ){
            return;
        }

        $('.yith-wcwl-add-to-wishlist').find('[data-title]').each( function(){
            var t = $(this);

            if( t.hasClass( 'tooltip-added' ) ){
                return;
            }

            t
                .on('mouseenter', function () {
                    var t = $(this),
                        tooltip = null,
                        wrapperWidth = t.outerWidth(),
                        left = 0,
                        width = 0;

                    tooltip = $('<span>', {'class': 'yith-wcwl-tooltip', 'text': t.data('title')});

                    t.append(tooltip);

                    width = tooltip.outerWidth() + 6;
                    tooltip.outerWidth(width);
                    left = (wrapperWidth - width) / 2;

                    tooltip.css({left: left.toFixed(0) + 'px'}).fadeIn(200);

                    t.addClass('with-tooltip');
                })
                .on('mouseleave', function () {
                    var t = $(this);

                    t.find('.yith-wcwl-tooltip').fadeOut(200, function(){
                        t.removeClass('with-tooltip').find('.yith-wcwl-tooltip').remove();
                    });
                });

            t.addClass('tooltip-added');
        } );
    }

    /**
     * Add wishlist popup message
     *
     * @return void
     * @since 2.0.0
     */
    function init_wishlist_popup() {
        if( typeof yith_wcwl_l10n.enable_notices !== 'undefined' && ! yith_wcwl_l10n.enable_notices ){
            return;
        }

        if( $('.yith-wcwl-add-to-wishlist').length && ! $( '#yith-wcwl-popup-message' ).length ) {
            var message_div = $( '<div>' )
                    .attr( 'id', 'yith-wcwl-message' ),
                popup_div = $( '<div>' )
                    .attr( 'id', 'yith-wcwl-popup-message' )
                    .html( message_div )
                    .hide();

            $( 'body' ).prepend( popup_div );
        }
    }

    /**
     * Add Dropdown to Add to Wishlist when modal is disabled and Multi Wishlist enabled
     *
     * @return void
     * @since 3.0.0
     */
    function init_wishlist_dropdown() {
        $('.yith-wcwl-add-button').filter('.with-dropdown')
            .on( 'mouseleave', function(){
                var t = $(this),
                    dropdown = t.find('.yith-wcwl-dropdown');

                if( dropdown.length ) {
                    dropdown.fadeOut(200);
                }
            } )
            .children('a')
            .on( 'mouseenter', function(){
                var t = $(this),
                    el_wrap = t.closest('.with-dropdown'),
                    dropdown = el_wrap.find('.yith-wcwl-dropdown');

                if( dropdown.length && dropdown.children().length ){
                    el_wrap.find('.yith-wcwl-dropdown').fadeIn(200);
                }
            } );
    }

    /**
     * Handle Drag & Drop of wishlist items for sorting
     *
     * @return void
     * @since 3.0.0
     */
    function init_wishlist_drag_n_drop() {
        if( typeof yith_wcwl_l10n.enable_drag_n_drop === 'undefined' || ! yith_wcwl_l10n.enable_drag_n_drop ){
            return;
        }

        $('.wishlist_table').filter('.sortable').not('.no-interactions').each( function(){
            var t = $(this),
                jqxhr = false;

            t.sortable( {
                items: '[data-row-id]',
                scroll: true,
                helper: function( e, ui ){
                    ui.children().each(function() {
                        $(this).width($(this).width());
                    });
                    return ui;
                },
                update: function(){
                    var row = t.find('[data-row-id]'),
                        positions = [],
                        i = 0;

                    if( ! row.length ){
                        return;
                    }

                    if( jqxhr ){
                        jqxhr.abort();
                    }

                    row.each( function(){
                        var t = $(this);

                        t.find( 'input[name*="[position]"]' ).val(i++);

                        positions.push( t.data('row-id') );
                    } );

                    jqxhr = $.ajax({
                        data: {
                            action: yith_wcwl_l10n.actions.sort_wishlist_items,
                            nonce: yith_wcwl_l10n.nonce.sort_wishlist_items_nonce,
                            context: 'frontend',
                            positions: positions,
                            wishlist_token: t.data('token'),
                            page: t.data('page'),
                            per_page: t.data('per-page')
                        },
                        method: 'POST',
                        url: yith_wcwl_l10n.ajax_url
                    });
                }
            } );
        } );
    }

    /**
     * Handle quantity input change for each wishlist item
     *
     * @return void
     * @since 3.0.0
     */
    function init_quantity() {
        var jqxhr,
            timeout;

        $('.wishlist_table').on( 'change', '.product-quantity :input', function(){
            var t = $(this),
                row = t.closest('[data-row-id]'),
                product_id = row.data('row-id'),
                table = t.closest('.wishlist_table'),
                token = table.data('token');

            clearTimeout( timeout );

            // set add to cart link to add specific qty to cart
            row.find( '.add_to_cart' ).attr('data-quantity', t.val());

            timeout = setTimeout( function(){
                if( jqxhr ){
                    jqxhr.abort();
                }

                jqxhr = $.ajax({
                    beforeSend: function(){
                        block( table );
                    },
                    complete: function(){
                        unblock( table );
                    },
                    data: {
                        action: yith_wcwl_l10n.actions.update_item_quantity,
                        nonce: yith_wcwl_l10n.nonce.update_item_quantity_nonce,
                        context: 'frontend',
                        product_id: product_id,
                        wishlist_token: token,
                        quantity: t.val()
                    },
                    method: 'POST',
                    url: yith_wcwl_l10n.ajax_url
                });
            }, 1000 );
        } );
    }

    /**
     * Init handling for copy button
     *
     * @return void
     * @since 2.2.11
     */
    function init_copy_wishlist_link () {
        $('.copy-trigger').on('click', function () {

            var obj_to_copy = $('.copy-target');

            if (obj_to_copy.length > 0) {
                if (obj_to_copy.is('input')) {

                    if (isOS()) {

                        obj_to_copy[0].setSelectionRange(0, 9999);
                    } else {
                        obj_to_copy.select();
                    }
                    document.execCommand( 'copy' );
                } else {

                    var hidden = $('<input/>', {
                        val : obj_to_copy.text(),
                        type: 'text'
                    });

                    $('body').append(hidden);

                    if (isOS()) {
                        hidden[0].setSelectionRange(0, 9999);
                    } else {
                        hidden.select();
                    }
                    document.execCommand('copy');

                    hidden.remove();
                }
            }
        });
    }

    /**
     * Handle popup for images grid layout
     *
     * @return void
     * @since 3.0.0
     */
    function init_wishlist_details_popup() {

        $('.wishlist_table').filter('.images_grid').not('.enhanced')
            .on( 'click', '[data-row-id] .product-thumbnail a', function(ev){
                if ( ! yith_wcwl_l10n.disable_popup_grid_view ){
                    var t = $(this),
                        item = t.closest('[data-row-id]'),
                        items = item.siblings( '[data-row-id]' ),
                        popup = item.find('.item-details');

                    ev.preventDefault();

                    if( popup.length ){
                        items.removeClass('show');
                        item.toggleClass( 'show' );
                    }
                }
            } )
            .on( 'click', '[data-row-id] a.close', function (ev){
                var t = $(this),
                    item = t.closest('[data-row-id]'),
                    popup = item.find('.item-details');

                ev.preventDefault();

                if( popup.length ){
                    item.removeClass('show');
                }
            } )
            .on( 'click', '[data-row-id] a.remove_from_wishlist', function(ev){
                var t = $(this);

                ev.stopPropagation();

                remove_item_from_wishlist( t );

                return false;
            } )
            .addClass( 'enhanced' );


        $(document)
            .on( 'click', function( ev ){
                if( ! $( ev.target ).closest( '[data-row-id]' ).length ){
                    $('.wishlist_table').filter('.images_grid').find('.show').removeClass('show');
                }
            } )
            .on( 'added_to_cart', function(){
                $('.wishlist_table').filter('.images_grid').find('.show').removeClass('show');
            } );
    }

    /**
     * Handle tabs inside wishlist popups
     *
     * @return void
     * @since 3.0.0
     */
    function init_wishlist_popup_tabs() {
        $(document).on( 'click', '.show-tab', function(ev){
            var t = $(this),
                container = t.closest('.yith-wcwl-popup-content'),
                tab = t.data('tab'),
                target = container.find('.tab').filter( '.' + tab );

            ev.preventDefault();

            if( ! target.length ){
                return false;
            }

            t.addClass('active').siblings('.show-tab').removeClass('active');

            target.show().siblings('.tab').hide();

            if( 'create' === tab ){
                container.prepend( '<input type="hidden" id="new_wishlist_selector" class="wishlist-select" value="new">' );
            }
            else{
                container.find( '#new_wishlist_selector' ).remove();
            }
        } );

        $(document).on( 'change', '.wishlist-select', function(){
            var t = $(this),
                container = t.closest('.yith-wcwl-popup-content'),
                tab = t.closest( '.tab' ),
                createTab = container.find( '.tab.create' ),
                showTab = container.find( '.show-tab' ),
                createShowTab = showTab.filter( '[data-tab="create"]' ),
                val = t.val();

            if( val === 'new' && createTab.length ){
                tab.hide();
                createTab.show();

                showTab.removeClass( 'active' );
                createShowTab.addClass( 'active' );

                t.find('option').removeProp( 'selected' );
                t.change();
            }
        } );
    }

    /**
     * Init responsive behaviour of the wishlist
     *
     * @return void
     * @since 3.0.0
     */
    function init_wishlist_responsive() {
        var jqxhr = false;

        if( ! yith_wcwl_l10n.is_wishlist_responsive ){
            return;
        }

        $( window ).on( 'resize', function(){
            var table = $('.wishlist_table.responsive'),
                mobile = table.is('.mobile'),
                media = window.matchMedia( '(max-width: ' + yith_wcwl_l10n.mobile_media_query + 'px)' ),
                form = table.closest('form'),
                id = form.attr('class'),
                options = form.data('fragment-options'),
                fragments = {},
                load = false;

            if( ! table.length ){
                return;
            }

            if( media.matches && table && ! mobile ){
                options.is_mobile = 'yes';
                load = true;
            }
            else if( ! media.matches && table && mobile ){
                options.is_mobile = 'no';
                load = true;
            }

            if( load ){
                if( jqxhr ){
                    jqxhr.abort();
                }

                fragments[ id.split( ' ' ).join( yith_wcwl_l10n.fragments_index_glue ) ] = options;

                jqxhr = $.ajax( {
                    beforeSend: function(){
                        block( table );
                    },
                    complete: function(){
                        unblock( table );
                    },
                    data: {
                        action: yith_wcwl_l10n.actions.load_mobile_action,
                        nonce: yith_wcwl_l10n.nonce.load_mobile_nonce,
                        context: 'frontend',
                        fragments: fragments
                    },
                    method: 'post',
                    success: function( data ){
                        if( typeof data.fragments !== 'undefined' ){
                            replace_fragments( data.fragments );

                            init_handling_after_ajax();

                            $(document).trigger( 'yith_wcwl_responsive_template', [ mobile, data.fragments ] );
                        }
                    },
                    url: yith_wcwl_l10n.ajax_url
                } );
            }
        } );
    }

    /* === EVENT HANDLING === */

    /**
     * Move item to another wishlist
     *
     * @return void
     * @since 3.0.0
     */
    function call_ajax_move_item_to_another_wishlist( data, beforeSend, complete ) {
        data.action  = yith_wcwl_l10n.actions.move_to_another_wishlist_action;
        data.nonce   = yith_wcwl_l10n.nonce.move_to_another_wishlist_nonce;
        data.context = 'frontend';

        if( data.wishlist_token === '' || data.destination_wishlist_token === '' || data.item_id === '' ){
            return;
        }

        $.ajax( {
            beforeSend: beforeSend,
            url: yith_wcwl_l10n.ajax_url,
            data: data,
            dataType: 'json',
            method: 'post',
            success: function( response ){
                complete( response );

                init_handling_after_ajax();

                $('body').trigger('moved_to_another_wishlist', [ $(this), data.item_id ] );
            }
        });
    }

    /**
     * Remove a product from the wishlist.
     *
     * @param el
     * @return void
     * @since 1.0.0
     */
    function remove_item_from_wishlist( el ) {
        var table = el.parents( '.cart.wishlist_table' ),
            row = el.parents( '[data-row-id]' ),
            data_row_id = row.data( 'row-id'),
            wishlist_id = table.data( 'id' ),
            wishlist_token = table.data( 'token' ),
            data = {
                action: yith_wcwl_l10n.actions.remove_from_wishlist_action,
                nonce: yith_wcwl_l10n.nonce.remove_from_wishlist_nonce,
                context: 'frontend',
                remove_from_wishlist: data_row_id,
                wishlist_id: wishlist_id,
                wishlist_token: wishlist_token,
                fragments: retrieve_fragments( data_row_id )
            };

        $.ajax( {
            beforeSend: function(){
                block( table );
            },
            complete: function(){
                unblock( table );
            },
            data: data,
            method: 'post',
            success: function( data ){
                if( typeof data.fragments !== 'undefined' ){
                    replace_fragments( data.fragments );
                }

                init_handling_after_ajax();

                $('body').trigger('removed_from_wishlist', [ el, row ] );
            },
            url: yith_wcwl_l10n.ajax_url
        } );
    }

    /**
     * Remove a product from the wishlist.
     *
     * @param el
     * @param form
     * @return void
     * @since 1.0.0
     */
    function reload_wishlist_and_adding_elem( el, form ) {

        var product_id = el.attr( 'data-product-id' ),
            table = $(document).find( '.cart.wishlist_table' ),
            pagination = table.data( 'pagination' ),
            per_page = table.data( 'per-page' ),
            wishlist_id = table.data( 'id' ),
            wishlist_token = table.data( 'token' ),
            data = {
                action: yith_wcwl_l10n.actions.reload_wishlist_and_adding_elem_action,
                nonce: yith_wcwl_l10n.nonce.reload_wishlist_and_adding_elem_nonce,
                context: 'frontend',
                pagination: pagination,
                per_page: per_page,
                wishlist_id: wishlist_id,
                wishlist_token: wishlist_token,
                add_to_wishlist: product_id,
                product_type: el.data( 'product-type' )
            };

        if( ! is_cookie_enabled() ){
            window.alert( yith_wcwl_l10n.labels.cookie_disabled );
            return;
        }

        $.ajax({
            type: 'POST',
            url: yith_wcwl_l10n.ajax_url,
            data: data,
            dataType    : 'html',
            beforeSend: function(){
                block( table );
            },
            complete: function(){
                unblock( table );
            },
            success: function(res) {
                var obj         = $(res),
                    new_form    = obj.find('#yith-wcwl-form'), // get new form
                    shortcode   = obj.find('.yith-wfbt-slider-wrapper'); // get new form

                form.replaceWith( new_form );
                $('.yith-wfbt-slider-wrapper').replaceWith( shortcode );
                init_handling_after_ajax();

                $(document).trigger( 'yith_wcwl_reload_wishlist_from_frequently' );
            }
        });
    }

    /**
     * Show form to edit wishlist title
     *
     * @param ev event
     * @return void
     * @since 2.0.0
     */
    function show_title_form( ev ) {
        var t = $(this),
            table = t.closest( '.wishlist_table' ),
            title = null;
        ev.preventDefault();

        // if button is in table
        if( table.length ){
            title = t.closest('[data-wishlist-id]').find('.wishlist-title');
        }
        else{
            title = t.parents( '.wishlist-title' );
        }

        title.next().css( 'display', 'inline-block' ).find('input[type="text"]').focus();
        title.hide();
    }

    /**
     * Hide form to edit wishlist title
     *
     * @param ev event
     * @return void
     * @since 2.0.0
     */
    function hide_title_form( ev ) {
        var t = $(this);
        ev.preventDefault();

        t.parents( '.hidden-title-form').hide();
        t.parents( '.hidden-title-form').prev().show();
    }

    /**
     * Submit form to save a new wishlist title
     *
     * @param ev event
     * @return void
     * @since 2.0.7
     */
    function submit_title_form( ev ) {
        var t = $(this),
            form = t.closest( '.hidden-title-form' ),
            row = t.closest( '[data-wishlist-id]' ),
            wishlist_id = row.data( 'wishlist-id' ),
            title_input = form.find( 'input[type="text"]' ),
            new_title = title_input.val(),
            data = {};

        ev.preventDefault();

        if( ! new_title ){
            form.addClass('woocommerce-invalid');
            title_input.focus();
            return;
        }

        if( ! wishlist_id ) {
            wishlist_id = $( '#wishlist_id' ).val();
        }

        data = {
            action: yith_wcwl_l10n.actions.save_title_action,
            nonce: yith_wcwl_l10n.nonce.save_title_nonce,
            context: 'frontend',
            wishlist_id: wishlist_id,
            title: new_title,
            fragments: retrieve_fragments()
        };

        $.ajax({
            type: 'POST',
            url: yith_wcwl_l10n.ajax_url,
            data: data,
            dataType: 'json',
            beforeSend: function(){
                block( form );
            },
            complete: function(){
                unblock( form );
            },
            success: function( response ) {
                var fragments = response.fragments,
                    status = response.result;

                if( status ) {
                    form.hide();
                    form.prev().find('.wishlist-anchor, h1, h2').text( new_title ).end().show();
                }
                else{
                    form.addClass( 'woocommerce-invalid' );
                    title_input.focus();
                }

                if( typeof fragments !== 'undefined' ){
                    replace_fragments( fragments );
                }
            }
        });
    }

    /**
     * Submit form to save a new wishlist privacy
     *
     * @return void
     * @since 2.0.7
     */
    function save_privacy(){
        var t = $(this),
            new_privacy = t.val(),
            row = t.closest( '[data-wishlist-id]' ),
            wishlist_id = row.data( 'wishlist-id' ),
            data = {
                action: yith_wcwl_l10n.actions.save_privacy_action,
                nonce: yith_wcwl_l10n.nonce.save_privacy_nonce,
                context: 'frontend',
                wishlist_id: wishlist_id,
                privacy: new_privacy,
                fragments: retrieve_fragments()
            };

        $.ajax({
            type: 'POST',
            url: yith_wcwl_l10n.ajax_url,
            data: data,
            dataType: 'json',
            success: function( response ) {
                var fragments = response.fragments;

                if( typeof fragments !== 'undefined' ){
                    replace_fragments( fragments );
                }
            }
        });
    }

    /* === UTILS === */

    /**
     * Closes pretty photo popup, if any
     *
     * @return void
     * @since 3.0.0
     */
    function close_pretty_photo( message, status ) {
        if( typeof $.prettyPhoto !== 'undefined' && typeof $.prettyPhoto.close !== 'undefined' ) {
            if( typeof message !== 'undefined' ){
                var container = $('.pp_content_container'),
                    content = container.find('.pp_content'),
                    form = container.find('.yith-wcwl-popup-form'),
                    popup = form.closest( '.pp_pic_holder' );

                if( form.length ){
                    var new_content = $( '<div/>', {
                        'class': 'yith-wcwl-popup-feedback'
                    } );

                    new_content.append( $( '<i/>', { 'class': 'fa heading-icon ' + ( 'error' === status ? 'fa-exclamation-triangle' : 'fa-check' ) } ) );
                    new_content.append( $( '<p/>', { 'class': 'feedback', 'html': message } ) );
                    new_content.css( 'display', 'none' );

                    content.css( 'height', 'auto' );

                    form.after( new_content );
                    form.fadeOut( 200, function(){
                        new_content.fadeIn();
                    } );

                    popup.addClass( 'feedback' );
                    popup.css( 'left', ( ( $( window ).innerWidth() / 2 ) - ( popup.outerWidth() / 2 ) ) + 'px' );

                    if( typeof yith_wcwl_l10n.auto_close_popup === 'undefined' || yith_wcwl_l10n.auto_close_popup ) {
                        setTimeout(close_pretty_photo, yith_wcwl_l10n.popup_timeout);
                    }
                }
            }
            else{
                try {
                    $.prettyPhoto.close();
                }
                catch( e ){ /* do nothing, no popup to close */ }
            }
        }
    }

    /**
     * Print wishlist message for the user
     *
     * @var response_message string Message to print
     * @return void
     * @since 3.0.0
     */
    function print_message( response_message ) {
        var msgPopup = $( '#yith-wcwl-popup-message' ),
            msg = $( '#yith-wcwl-message' ),
            timeout = typeof yith_wcwl_l10n.popup_timeout !== 'undefined' ? yith_wcwl_l10n.popup_timeout : 3000;

        if( typeof yith_wcwl_l10n.enable_notices !== 'undefined' && ! yith_wcwl_l10n.enable_notices ){
            return;
        }

        msg.html( response_message );
        msgPopup.css( 'margin-left', '-' + $( msgPopup ).width() + 'px' ).fadeIn();
        window.setTimeout( function() {
            msgPopup.fadeOut();
        }, timeout );
    }

    /**
     * Update lists after a new list is added
     *
     * @param wishlists array Array of wishlists
     * @return void
     * @since 3.0.0
     */
    function update_wishlists( wishlists ) {
        var wishlist_select = $( 'select.wishlist-select' ),
            wishilst_dropdown = $( 'ul.yith-wcwl-dropdown' );

        // update options for all wishlist selects
        wishlist_select.each( function(){
            var t = $(this),
                wishlist_options = t.find( 'option' ),
                new_option = wishlist_options.filter( '[value="new"]' );

            wishlist_options.not( new_option ).remove();

            $.each( wishlists, function( i, v ){
                $('<option>', { value: v.id, html: v.wishlist_name } ).appendTo(t);
            } );

            t.append( new_option );
        } );

        // update options for all wishlist dropdown
        wishilst_dropdown.each( function(){
            var t = $(this),
                wishlist_options = t.find( 'li' ),
                container = t.closest( '.yith-wcwl-add-button' ),
                default_button = container.children( 'a.add_to_wishlist' ),
                product_id = default_button.attr('data-product-id'),
                product_type = default_button.attr('data-product-type');

            wishlist_options.remove();
            $.each( wishlists, function( i, v ) {
                if ( v['default'] ) {
                    return;
                }

                $('<li>').append( $('<a>', {
                    'rel': 'nofollow',
                    'html': v.wishlist_name,
                    'class': 'add_to_wishlist',
                    'href': v.add_to_this_wishlist_url,
                    'data-product-id': product_id,
                    'data-product-type': product_type,
                    'data-wishlist-id': v.id
                } ) ).appendTo(t);
            } );
        } );
    }

    /**
     * Block item if possible
     *
     * @param item jQuery object
     * @return void
     * @since 3.0.0
     */
    function block( item ) {
        if( typeof $.fn.block !== 'undefined' ) {
            item.fadeTo('400', '0.6').block( {
                message: null,
                overlayCSS : {
                    background    : 'transparent url(' + yith_wcwl_l10n.ajax_loader_url + ') no-repeat center',
                    backgroundSize: '40px 40px',
                    opacity       : 1
                }
            } );
        }
    }

    /**
     * Unblock item if possible
     *
     * @param item jQuery object
     * @return void
     * @since 3.0.0
     */
    function unblock( item ) {
        if( typeof $.fn.unblock !== 'undefined' ) {
            item.stop(true).css('opacity', '1').unblock();
        }
    }

    /**
     * Check if cookies are enabled
     *
     * @return bool
     * @since 2.0.0
     */
    function is_cookie_enabled() {
        if ( navigator.cookieEnabled ) {
            return true;
        }

        // set and read cookie
        document.cookie = 'cookietest=1';
        var ret = document.cookie.indexOf('cookietest=') !== -1;

        // delete cookie
        document.cookie = 'cookietest=1; expires=Thu, 01-Jan-1970 00:00:01 GMT';

        return ret;
    }

    /**
     * Retrieve fragments that need to be refreshed in the page
     *
     * @param search string Ref to search among all fragments in the page
     * @return object Object containing a property for each fragments that matches search
     * @since 3.0.0
     */
    function retrieve_fragments( search ) {
        var options = {},
            fragments = null;

        if( search ){
            if( typeof search === 'object' ){
                search = $.extend( {
                    fragments: null,
                    s: '',
                    container: $(document),
                    firstLoad: false
                }, search );

                if( ! search.fragments ) {
                    fragments = search.container.find('.wishlist-fragment');
                } else {
                    fragments = search.fragments;
                }

                if( search.s ){
                    fragments = fragments.not('[data-fragment-ref]').add(fragments.filter('[data-fragment-ref="' + search.s + '"]'));
                }

                if( search.firstLoad ){
                    fragments = fragments.filter( '.on-first-load' );
                }
            }
            else {
                fragments = $('.wishlist-fragment');

                if (typeof search === 'string' || typeof search === 'number') {
                    fragments = fragments.not('[data-fragment-ref]').add(fragments.filter('[data-fragment-ref="' + search + '"]'));
                }
            }
        }
        else{
            fragments = $('.wishlist-fragment');
        }

        if ( fragments.length ) {
            fragments.each( function () {
                var t = $( this ),
                    id = t.attr( 'class' ).split( ' ' ).filter( ( val ) => {
                        return val.length && val !== 'exists';
                    } ).join( yith_wcwl_l10n.fragments_index_glue );

                options[ id ] = t.data( 'fragment-options' );
            } );
        } else {
            return null;
        }

        return options;
    }

    /**
     * Load fragments on page loading
     *
     * @param search string Ref to search among all fragments in the page
     * @since 3.0.0
     */
    function load_fragments( search ) {
        search = $.extend( {
            firstLoad: true
        }, search );

        var fragments = retrieve_fragments( search );

        if( ! fragments ){
            return;
        }

        $.ajax( {
            data: {
                action: yith_wcwl_l10n.actions.load_fragments,
                nonce: yith_wcwl_l10n.nonce.load_fragments_nonce,
                context: 'frontend',
                fragments: fragments
            },
            method: 'post',
            success: function( data ){
                if( typeof data.fragments !== 'undefined' ){
                    replace_fragments( data.fragments );

                    init_handling_after_ajax();

                    $(document).trigger( 'yith_wcwl_fragments_loaded', [ fragments, data.fragments, search.firstLoad ] );

                }
            },
            url: yith_wcwl_l10n.ajax_url
        } );
    }

    /**
     * Replace fragments with template received
     *
     * @param fragments array Array of fragments to replace
     * @since 3.0.0
     */
    function replace_fragments( fragments ) {
       $.each( fragments, function( i, v ){
           var itemSelector = '.' + i.split( yith_wcwl_l10n.fragments_index_glue ).filter( ( val ) => { return val.length && val !== 'exists' && val !== 'with-count'; } ).join( '.' ),
               toReplace = $( itemSelector );

           // find replace tempalte
           var replaceWith = $(v).filter( itemSelector );

           if( ! replaceWith.length ){
               replaceWith = $(v).find( itemSelector );
           }

           if( toReplace.length && replaceWith.length ){
               toReplace.replaceWith( replaceWith );
           }
       } ) ;
    }

    /**
     * Check if device is an IOS device
     * @since 2.2.11
     */
    function isOS() {
        return navigator.userAgent.match(/ipad|iphone/i);
    }

    /**
     * Check if passed value could be considered true
     * @since 3.0.14
     */
    function isTrue( value ) {
        return true === value || 'yes' === value || '1' === value || 1 === value;
    }
} );
PK`x1\{5����(assets/js/unminified/jquery.selectBox.jsnu�[���/*
 * jQuery selectBox - A cosmetic, styleable replacement for SELECT elements
 *
 * Licensed under the MIT license: http://opensource.org/licenses/MIT
 *
 * v1.2.0
 *
 * https://github.com/marcj/jquery-selectBox
 */
;(function ($) {

    /**
     * SelectBox class.
     *
     * @param {HTMLElement|jQuery} select If it's a jQuery object, we use the first element.
     * @param {Object}             options
     * @constructor
     */
    var SelectBox = this.SelectBox = function (select, options) {
        if (select instanceof jQuery) {
            if (select.length > 0) {
                select = select[0];
            } else {
                return;
            }
        }

        this.typeTimer     = null;
        this.typeSearch    = '';
        this.isMac         = navigator.platform.match(/mac/i);
        options            = 'object' === typeof options ? options :  {};
        this.selectElement = select;

        // Disable for iOS devices (their native controls are more suitable for a touch device)
        if (!options.mobile && navigator.userAgent.match(/iPad|iPhone|Android|IEMobile|BlackBerry/i)) {
            return false;
        }

        // Element must be a select control
        if ('select' !== select.tagName.toLowerCase()) {
            return false;
        }

        this.init(options);
    }

    /**
     * @type {String}
     */
    SelectBox.prototype.version = '1.2.0';

    /**
     * @param {Object} options
     *
     * @returns {Boolean}
     */
    SelectBox.prototype.init = function (options) {
        var select = $(this.selectElement);
        if (select.data('selectBox-control')) {
            return false;
        }

        var control    = $('<a class="selectBox" />')
            , inline   = select.attr('multiple') || parseInt(select.attr('size')) > 1
            , settings = options || {}
            , tabIndex = parseInt(select.prop('tabindex')) || 0
            , self     = this;

        control
            .width(select.outerWidth())
            .addClass(select.attr('class'))
            .attr('title', select.attr('title') || '')
            .attr('tabindex', tabIndex)
            .css('display', 'inline-block')
            .bind('focus.selectBox', function () {
                if (this !== document.activeElement && document.body !== document.activeElement) {
                    $(document.activeElement).blur();
                }
                if (control.hasClass('selectBox-active')) {
                    return;
                }
                control.addClass('selectBox-active');
                select.trigger('focus');
            })
            .bind('blur.selectBox', function () {
                if (!control.hasClass('selectBox-active')) {
                    return;
                }
                control.removeClass('selectBox-active');
                select.trigger('blur');
            });

        if (!$(window).data('selectBox-bindings')) {
            $(window)
                .data('selectBox-bindings', true)
                .bind('scroll.selectBox', this.hideMenus)
                .bind('resize.selectBox', this.hideMenus);
        }

        if (select.attr('disabled')) {
            control.addClass('selectBox-disabled');
        }

        // Focus on control when label is clicked
        select.bind('click.selectBox', function (event) {
            control.focus();
            event.preventDefault();
        });

        // Generate control
        if (inline) {
            // Inline controls
            options = this.getOptions('inline');

            control
                .append(options)
                .data('selectBox-options', options).addClass('selectBox-inline selectBox-menuShowing')
                .bind('keydown.selectBox', function (event) {
                    self.handleKeyDown(event);
                })
                .bind('keypress.selectBox',function (event) {
                    self.handleKeyPress(event);
                })
                .bind('mousedown.selectBox',function (event) {
                    if (1 !== event.which) {
                        return;
                    }
                    if ($(event.target).is('A.selectBox-inline')) {
                        event.preventDefault();
                    }
                    if (!control.hasClass('selectBox-focus')) {
                        control.focus();
                    }
                })
                .insertAfter(select);

            // Auto-height based on size attribute
            if (!select[0].style.height) {
                var size = select.attr('size') ? parseInt(select.attr('size')) : 5;
                // Draw a dummy control off-screen, measure, and remove it
                var tmp = control
                    .clone()
                    .removeAttr('id')
                    .css({
                        position: 'absolute',
                        top: '-9999em'
                    })
                    .show()
                    .appendTo('body');
                tmp.find('.selectBox-options').html('<li><a>\u00A0</a></li>');
                var optionHeight = parseInt(tmp.find('.selectBox-options A:first').html('&nbsp;').outerHeight());
                tmp.remove();
                control.height(optionHeight * size);
            }
            this.disableSelection(control);
        } else {
            // Dropdown controls
            var label = $('<span class="selectBox-label" />'),
                arrow = $('<span class="selectBox-arrow" />');

            // Update label
            label.attr('class', this.getLabelClass()).text(this.getLabelText());
            options = this.getOptions('dropdown');
            options.appendTo('BODY');

            control
                .data('selectBox-options', options)
                .addClass('selectBox-dropdown')
                .append(label)
                .append(arrow)
                .bind('mousedown.selectBox', function (event) {
                    if (1 === event.which) {
                        if (control.hasClass('selectBox-menuShowing')) {
                            self.hideMenus();
                        } else {
                            event.stopPropagation();
                            // Webkit fix to prevent premature selection of options
                            options
                                .data('selectBox-down-at-x', event.screenX)
                                .data('selectBox-down-at-y', event.screenY);
                            self.showMenu();
                        }
                    }
                })
                .bind('keydown.selectBox', function (event) {
                    self.handleKeyDown(event);
                })
                .bind('keypress.selectBox', function (event) {
                    self.handleKeyPress(event);
                })
                .bind('open.selectBox',function (event, triggerData) {
                    if (triggerData && triggerData._selectBox === true) {
                        return;
                    }
                    self.showMenu();
                })
                .bind('close.selectBox', function (event, triggerData) {
                    if (triggerData && triggerData._selectBox === true) {
                        return;
                    }
                    self.hideMenus();
                })
                .insertAfter(select);

            // Set label width
            var labelWidth =
                    control.width()
                  - arrow.outerWidth()
                  - parseInt(label.css('paddingLeft')) || 0
                  - parseInt(label.css('paddingRight')) || 0;

            label.width(labelWidth);
            this.disableSelection(control);
        }
        // Store data for later use and show the control
        select
            .addClass('selectBox')
            .data('selectBox-control', control)
            .data('selectBox-settings', settings)
            .hide();
    };

    /**
     * @param {String} type 'inline'|'dropdown'
     * @returns {jQuery}
     */
    SelectBox.prototype.getOptions = function (type) {
        var options;
        var select = $(this.selectElement);
        var self   = this;
        // Private function to handle recursion in the getOptions function.
        var _getOptions = function (select, options) {
            // Loop through the set in order of element children.
            select.children('OPTION, OPTGROUP').each(function () {
                // If the element is an option, add it to the list.
                if ($(this).is('OPTION')) {
                    // Check for a value in the option found.
                    if ($(this).length > 0) {
                        // Create an option form the found element.
                        self.generateOptions($(this), options);
                    } else {
                        // No option information found, so add an empty.
                        options.append('<li>\u00A0</li>');
                    }
                } else {
                    // If the element is an option group, add the group and call this function on it.
                    var optgroup = $('<li class="selectBox-optgroup" />');
                    optgroup.text($(this).attr('label'));
                    options.append(optgroup);
                    options = _getOptions($(this), options);
                }
            });
            // Return the built strin
            return options;
        };

        switch (type) {
            case 'inline':
                options = $('<ul class="selectBox-options" />');
                options = _getOptions(select, options);
                options
                    .find('A')
                    .bind('mouseover.selectBox', function (event) {
                        self.addHover($(this).parent());
                    })
                    .bind('mouseout.selectBox',function (event) {
                        self.removeHover($(this).parent());
                    })
                    .bind('mousedown.selectBox',function (event) {
                        if (1 !== event.which) {
                            return
                        }
                        event.preventDefault(); // Prevent options from being "dragged"
                        if (!select.selectBox('control').hasClass('selectBox-active')) {
                            select.selectBox('control').focus();
                        }
                    })
                    .bind('mouseup.selectBox', function (event) {
                        if (1 !== event.which) {
                            return;
                        }
                        self.hideMenus();
                        self.selectOption($(this).parent(), event);
                    });

                this.disableSelection(options);
                return options;
            case 'dropdown':
                options = $('<ul class="selectBox-dropdown-menu selectBox-options" />');
                options = _getOptions(select, options);

                options
                    .data('selectBox-select', select)
                    .css('display', 'none')
                    .appendTo('BODY')
                    .find('A')
                    .bind('mousedown.selectBox', function (event) {
                        if (event.which === 1) {
                            event.preventDefault(); // Prevent options from being "dragged"
                            if (event.screenX === options.data('selectBox-down-at-x') &&
                                event.screenY === options.data('selectBox-down-at-y')) {
                                options.removeData('selectBox-down-at-x').removeData('selectBox-down-at-y');
                                self.hideMenus();
                            }
                        }
                    })
                    .bind('mouseup.selectBox', function (event) {
                        if (1 !== event.which) {
                            return;
                        }
                        if (event.screenX === options.data('selectBox-down-at-x') &&
                            event.screenY === options.data('selectBox-down-at-y')) {
                            return;
                        } else {
                            options.removeData('selectBox-down-at-x').removeData('selectBox-down-at-y');
                        }
                        self.selectOption($(this).parent());
                        self.hideMenus();
                    })
                    .bind('mouseover.selectBox', function (event) {
                        self.addHover($(this).parent());
                    })
                    .bind('mouseout.selectBox', function (event) {
                        self.removeHover($(this).parent());
                    });

                // Inherit classes for dropdown menu
                var classes = select.attr('class') || '';
                if ('' !== classes) {
                    classes = classes.split(' ');
                    for (var i in classes) {
                        options.addClass(classes[i] + '-selectBox-dropdown-menu');
                    }
                }
                this.disableSelection(options);
                return options;
        }
    };

    /**
     * Returns the current class of the selected option.
     *
     * @returns {String}
     */
    SelectBox.prototype.getLabelClass = function () {
        var selected = $(this.selectElement).find('OPTION:selected');
        return ('selectBox-label ' + (selected.attr('class') || '')).replace(/\s+$/, '');
    };

    /**
     * Returns the current label of the selected option.
     *
     * @returns {String}
     */
    SelectBox.prototype.getLabelText = function () {
        var selected = $(this.selectElement).find('OPTION:selected');
        return selected.text() || '\u00A0';
    };

    /**
     * Sets the label.
     * This method uses the getLabelClass() and getLabelText() methods.
     */
    SelectBox.prototype.setLabel = function () {
        var select = $(this.selectElement);
        var control = select.data('selectBox-control');
        if (!control) {
            return;
        }

        control
            .find('.selectBox-label')
            .attr('class', this.getLabelClass())
            .text(this.getLabelText());
    };

    /**
     * Destroys the SelectBox instance and shows the origin select element.
     *
     */
    SelectBox.prototype.destroy = function () {
        var select = $(this.selectElement);
        var control = select.data('selectBox-control');
        if (!control) {
            return;
        }

        var options = control.data('selectBox-options');
        options.remove();
        control.remove();
        select
            .removeClass('selectBox')
            .removeData('selectBox-control')
            .data('selectBox-control', null)
            .removeData('selectBox-settings')
            .data('selectBox-settings', null)
            .show();
    };

    /**
     * Refreshes the option elements.
     */
    SelectBox.prototype.refresh = function () {
        var select = $(this.selectElement),
            control = select.data('selectBox-control'),
            dropdown = control.hasClass('selectBox-dropdown'),
            menuOpened = control.hasClass('selectBox-menuShowing');
        select.selectBox('options', select.html());
        // Restore opened dropdown state (original menu was trashed)
        if (dropdown && menuOpened) {
            this.showMenu();
        }
    };

    /**
     * Shows the dropdown menu.
     */
    SelectBox.prototype.showMenu = function () {
        var self = this
            , select   = $(this.selectElement)
            , control  = select.data('selectBox-control')
            , settings = select.data('selectBox-settings')
            , options  = control.data('selectBox-options');

        if (control.hasClass('selectBox-disabled')) {
            return false;
        }

        this.hideMenus();
        var borderBottomWidth = parseInt(control.css('borderBottomWidth')) || 0;

        // Menu position
        options
            .width(control.innerWidth())
            .css({
                top: control.offset().top + control.outerHeight() - borderBottomWidth,
                left: control.offset().left
            });


        if (select.triggerHandler('beforeopen')) {
            return false;
        }

        var dispatchOpenEvent = function () {
            select.triggerHandler('open', {
                _selectBox: true
            });
        };

        // Show menu
        switch (settings.menuTransition) {
            case 'fade':
                options.fadeIn(settings.menuSpeed, dispatchOpenEvent);
                break;
            case 'slide':
                options.slideDown(settings.menuSpeed, dispatchOpenEvent);
                break;
            default:
                options.show(settings.menuSpeed, dispatchOpenEvent);
                break;
        }

        if (!settings.menuSpeed) {
            dispatchOpenEvent();
        }

        // Center on selected option
        var li = options.find('.selectBox-selected:first');
        this.keepOptionInView(li, true);
        this.addHover(li);
        control.addClass('selectBox-menuShowing');

        $(document).bind('mousedown.selectBox', function (event) {
            if (1 === event.which) {
                if ($(event.target).parents().andSelf().hasClass('selectBox-options')) {
                    return;
                }
                self.hideMenus();
            }
        });
    };

    /**
     * Hides the menu of all instances.
     */
    SelectBox.prototype.hideMenus = function () {
        if ($(".selectBox-dropdown-menu:visible").length === 0) {
            return;
        }

        $(document).unbind('mousedown.selectBox');
        $(".selectBox-dropdown-menu").each(function () {
            var options = $(this)
                , select = options.data('selectBox-select')
                , control = select.data('selectBox-control')
                , settings = select.data('selectBox-settings');

            if (select.triggerHandler('beforeclose')) {
                return false;
            }

            var dispatchCloseEvent = function () {
                select.triggerHandler('close', {
                    _selectBox: true
                });
            };

            if (settings) {
                switch (settings.menuTransition) {
                    case 'fade':
                        options.fadeOut(settings.menuSpeed, dispatchCloseEvent);
                        break;
                    case 'slide':
                        options.slideUp(settings.menuSpeed, dispatchCloseEvent);
                        break;
                    default:
                        options.hide(settings.menuSpeed, dispatchCloseEvent);
                        break;
                }
                if (!settings.menuSpeed) {
                    dispatchCloseEvent();
                }
                control.removeClass('selectBox-menuShowing');
            } else {
                $(this).hide();
                $(this).triggerHandler('close', {
                    _selectBox: true
                });
                $(this).removeClass('selectBox-menuShowing');
            }
        });
    };

    /**
     * Selects an option.
     *
     * @param {HTMLElement} li
     * @param {DOMEvent}    event
     * @returns {Boolean}
     */
    SelectBox.prototype.selectOption = function (li, event) {
        var select = $(this.selectElement);
        li         = $(li);

        var control    = select.data('selectBox-control')
            , settings = select.data('selectBox-settings');

        if (control.hasClass('selectBox-disabled')) {
            return false;
        }

        if (0 === li.length || li.hasClass('selectBox-disabled')) {
            return false;
        }

        if (select.attr('multiple')) {
            // If event.shiftKey is true, this will select all options between li and the last li selected
            if (event.shiftKey && control.data('selectBox-last-selected')) {
                li.toggleClass('selectBox-selected');
                var affectedOptions;
                if (li.index() > control.data('selectBox-last-selected').index()) {
                    affectedOptions = li
                        .siblings()
                        .slice(control.data('selectBox-last-selected').index(), li.index());
                } else {
                    affectedOptions = li
                        .siblings()
                        .slice(li.index(), control.data('selectBox-last-selected').index());
                }
                affectedOptions = affectedOptions.not('.selectBox-optgroup, .selectBox-disabled');
                if (li.hasClass('selectBox-selected')) {
                    affectedOptions.addClass('selectBox-selected');
                } else {
                    affectedOptions.removeClass('selectBox-selected');
                }
            } else if ((this.isMac && event.metaKey) || (!this.isMac && event.ctrlKey)) {
                li.toggleClass('selectBox-selected');
            } else {
                li.siblings().removeClass('selectBox-selected');
                li.addClass('selectBox-selected');
            }
        } else {
            li.siblings().removeClass('selectBox-selected');
            li.addClass('selectBox-selected');
        }

        if (control.hasClass('selectBox-dropdown')) {
            control.find('.selectBox-label').text(li.text());
        }

        // Update original control's value
        var i = 0, selection = [];
        if (select.attr('multiple')) {
            control.find('.selectBox-selected A').each(function () {
                selection[i++] = $(this).attr('rel');
            });
        } else {
            selection = li.find('A').attr('rel');
        }

        // Remember most recently selected item
        control.data('selectBox-last-selected', li);

        // Change callback
        if (select.val() !== selection) {
            select.val(selection);
            this.setLabel();
            select.trigger('change');
        }

        return true;
    };

    /**
     * Adds the hover class.
     *
     * @param {HTMLElement} li
     */
    SelectBox.prototype.addHover = function (li) {
        li = $(li);
        var select = $(this.selectElement)
            , control   = select.data('selectBox-control')
            , options = control.data('selectBox-options');

        options.find('.selectBox-hover').removeClass('selectBox-hover');
        li.addClass('selectBox-hover');
    };

    /**
     * Returns the original HTML select element.
     *
     * @returns {HTMLElement}
     */
    SelectBox.prototype.getSelectElement = function () {
        return this.selectElement;
    };

    /**
     * Remove the hover class.
     *
     * @param {HTMLElement} li
     */
    SelectBox.prototype.removeHover = function (li) {
        li = $(li);
        var select = $(this.selectElement)
            , control = select.data('selectBox-control')
            , options = control.data('selectBox-options');

        options.find('.selectBox-hover').removeClass('selectBox-hover');
    };

    /**
     * Checks if the widget is in the view.
     *
     * @param {jQuery}      li
     * @param {Boolean}     center
     */
    SelectBox.prototype.keepOptionInView = function (li, center) {
        if (!li || li.length === 0) {
            return;
        }

        var select = $(this.selectElement)
            , control     = select.data('selectBox-control')
            , options   = control.data('selectBox-options')
            , scrollBox = control.hasClass('selectBox-dropdown') ? options : options.parent()
            , top       = parseInt(li.offset().top -scrollBox.position().top)
            , bottom    = parseInt(top + li.outerHeight());

        if (center) {
            scrollBox.scrollTop(li.offset().top - scrollBox.offset().top + scrollBox.scrollTop() -
                (scrollBox.height() / 2));
        } else {
            if (top < 0) {
                scrollBox.scrollTop(li.offset().top - scrollBox.offset().top + scrollBox.scrollTop());
            }
            if (bottom > scrollBox.height()) {
                scrollBox.scrollTop((li.offset().top + li.outerHeight()) - scrollBox.offset().top +
                    scrollBox.scrollTop() - scrollBox.height());
            }
        }
    };

    /**
     * Handles the keyDown event.
     * Handles open/close and arrow key functionality
     *
     * @param {DOMEvent}    event
     */
    SelectBox.prototype.handleKeyDown = function (event) {
        var select = $(this.selectElement)
            , control        = select.data('selectBox-control')
            , options      = control.data('selectBox-options')
            , settings     = select.data('selectBox-settings')
            , totalOptions = 0, i = 0;

        if (control.hasClass('selectBox-disabled')) {
            return;
        }

        switch (event.keyCode) {
            case 8:
                // backspace
                event.preventDefault();
                this.typeSearch = '';
                break;
            case 9:
            // tab
            case 27:
                // esc
                this.hideMenus();
                this.removeHover();
                break;
            case 13:
                // enter
                if (control.hasClass('selectBox-menuShowing')) {
                    this.selectOption(options.find('LI.selectBox-hover:first'), event);
                    if (control.hasClass('selectBox-dropdown')) {
                        this.hideMenus();
                    }
                } else {
                    this.showMenu();
                }
                break;
            case 38:
            // up
            case 37:
                // left
                event.preventDefault();
                if (control.hasClass('selectBox-menuShowing')) {
                    var prev = options.find('.selectBox-hover').prev('LI');
                    totalOptions = options.find('LI:not(.selectBox-optgroup)').length;
                    i = 0;
                    while (prev.length === 0 || prev.hasClass('selectBox-disabled') ||
                        prev.hasClass('selectBox-optgroup')) {
                        prev = prev.prev('LI');
                        if (prev.length === 0) {
                            if (settings.loopOptions) {
                                prev = options.find('LI:last');
                            } else {
                                prev = options.find('LI:first');
                            }
                        }
                        if (++i >= totalOptions) {
                            break;
                        }
                    }
                    this.addHover(prev);
                    this.selectOption(prev, event);
                    this.keepOptionInView(prev);
                } else {
                    this.showMenu();
                }
                break;
            case 40:
            // down
            case 39:
                // right
                event.preventDefault();
                if (control.hasClass('selectBox-menuShowing')) {
                    var next = options.find('.selectBox-hover').next('LI');
                    totalOptions = options.find('LI:not(.selectBox-optgroup)').length;
                    i = 0;
                    while (0 === next.length || next.hasClass('selectBox-disabled') ||
                        next.hasClass('selectBox-optgroup')) {
                        next = next.next('LI');
                        if (next.length === 0) {
                            if (settings.loopOptions) {
                                next = options.find('LI:first');
                            } else {
                                next = options.find('LI:last');
                            }
                        }
                        if (++i >= totalOptions) {
                            break;
                        }
                    }
                    this.addHover(next);
                    this.selectOption(next, event);
                    this.keepOptionInView(next);
                } else {
                    this.showMenu();
                }
                break;
        }
    };

    /**
     * Handles the keyPress event.
     * Handles type-to-find functionality
     *
     * @param {DOMEvent}    event
     */
    SelectBox.prototype.handleKeyPress = function (event) {
        var select = $(this.selectElement)
            , control = select.data('selectBox-control')
            , options = control.data('selectBox-options');

        if (control.hasClass('selectBox-disabled')) {
            return;
        }

        switch (event.keyCode) {
            case 9:
            // tab
            case 27:
            // esc
            case 13:
            // enter
            case 38:
            // up
            case 37:
            // left
            case 40:
            // down
            case 39:
                // right
                // Don't interfere with the keydown event!
                break;
            default:
                // Type to find
                if (!control.hasClass('selectBox-menuShowing')) {
                    this.showMenu();
                }
                event.preventDefault();
                clearTimeout(this.typeTimer);
                this.typeSearch += String.fromCharCode(event.charCode || event.keyCode);
                options.find('A').each(function () {
                    if ($(this).text().substr(0, this.typeSearch.length).toLowerCase() === this.typeSearch.toLowerCase()) {
                        this.addHover($(this).parent());
                        this.selectOption($(this).parent(), event);
                        this.keepOptionInView($(this).parent());
                        return false;
                    }
                });
                // Clear after a brief pause
                this.typeTimer = setTimeout(function () {
                    this.typeSearch = '';
                }, 1000);
                break;
        }
    };

    /**
     * Enables the selectBox.
     */
    SelectBox.prototype.enable = function () {
        var select = $(this.selectElement);
        select.prop('disabled', false);
        var control = select.data('selectBox-control');
        if (!control) {
            return;
        }
        control.removeClass('selectBox-disabled');
    };

    /**
     * Disables the selectBox.
     */
    SelectBox.prototype.disable = function () {
        var select = $(this.selectElement);
        select.prop('disabled', true);
        var control = select.data('selectBox-control');
        if (!control) {
            return;
        }
        control.addClass('selectBox-disabled');
    };

    /**
     * Sets the current value.
     *
     * @param {String}      value
     */
    SelectBox.prototype.setValue = function (value) {
        var select = $(this.selectElement);
        select.val(value);
        value = select.val(); // IE9's select would be null if it was set with a non-exist options value

        if (null === value) { // So check it here and set it with the first option's value if possible
            value = select.children().first().val();
            select.val(value);
        }

        var control = select.data('selectBox-control');
        if (!control) {
            return;
        }

        var settings = select.data('selectBox-settings')
            , options = control.data('selectBox-options');

        // Update label
        this.setLabel();

        // Update control values
        options.find('.selectBox-selected').removeClass('selectBox-selected');
        options.find('A').each(function () {
            if (typeof(value) === 'object') {
                for (var i = 0; i < value.length; i++) {
                    if ($(this).attr('rel') == value[i]) {
                        $(this).parent().addClass('selectBox-selected');
                    }
                }
            } else {
                if ($(this).attr('rel') == value) {
                    $(this).parent().addClass('selectBox-selected');
                }
            }
        });

        if (settings.change) {
            settings.change.call(select);
        }
    };

    /**
     * Sets the option elements.
     *
     * @param {String|Object} options
     */
    SelectBox.prototype.setOptions = function (options) {
        var select = $(this.selectElement)
            , control = select.data('selectBox-control')
            , settings = select.data('selectBox-settings')
            , type;

        switch (typeof(options)) {
            case 'string':
                select.html(options);
                break;
            case 'object':
                select.html('');
                for (var i in options) {
                    if (options[i] === null) {
                        continue;
                    }
                    if (typeof(options[i]) === 'object') {
                        var optgroup = $('<optgroup label="' + i + '" />');
                        for (var j in options[i]) {
                            optgroup.append('<option value="' + j + '">' + options[i][j] + '</option>');
                        }
                        select.append(optgroup);
                    } else {
                        var option = $('<option value="' + i + '">' + options[i] + '</option>');
                        select.append(option);
                    }
                }
                break;
        }

        if (!control) {
            return;
        }

        // Remove old options
        control.data('selectBox-options').remove();

        // Generate new options
        type     = control.hasClass('selectBox-dropdown') ? 'dropdown' : 'inline';
        options  = this.getOptions(type);
        control.data('selectBox-options', options);

        switch (type) {
            case 'inline':
                control.append(options);
                break;
            case 'dropdown':
                // Update label
                this.setLabel();
                $("BODY").append(options);
                break;
        }
    };

    /**
     * Disables the selection.
     *
     * @param {*} selector
     */
    SelectBox.prototype.disableSelection = function (selector) {
        $(selector).css('MozUserSelect', 'none').bind('selectstart', function (event) {
            event.preventDefault();
        });
    };

    /**
     * Generates the options.
     *
     * @param {jQuery} self
     * @param {jQuery} options
     */
    SelectBox.prototype.generateOptions = function (self, options) {
        var li = $('<li />'), a = $('<a />');
        li.addClass(self.attr('class'));
        li.data(self.data());
        a.attr('rel', self.val()).text(self.text());
        li.append(a);
        if (self.attr('disabled')) {
            li.addClass('selectBox-disabled');
        }
        if (self.attr('selected')) {
            li.addClass('selectBox-selected');
        }
        options.append(li);
    };

    /**
     * Extends the jQuery.fn object.
     */
    $.extend($.fn, {
        selectBox: function (method, options) {
            var selectBox;

            switch (method) {
                case 'control':
                    return $(this).data('selectBox-control');
                case 'settings':
                    if (!options) {
                        return $(this).data('selectBox-settings');
                    }
                    $(this).each(function () {
                        $(this).data('selectBox-settings', $.extend(true, $(this).data('selectBox-settings'), options));
                    });
                    break;
                case 'options':
                    // Getter
                    if (undefined === options) {
                        return $(this).data('selectBox-control').data('selectBox-options');
                    }
                    // Setter
                    $(this).each(function () {
                        if (selectBox = $(this).data('selectBox')) {
                            selectBox.setOptions(options);
                        }
                    });
                    break;
                case 'value':
                    // Empty string is a valid value
                    if (undefined === options) {
                        return $(this).val();
                    }
                    $(this).each(function () {
                        if (selectBox = $(this).data('selectBox')) {
                            selectBox.setValue(options);
                        }
                    });
                    break;
                case 'refresh':
                    $(this).each(function () {
                        if (selectBox = $(this).data('selectBox')) {
                            selectBox.refresh();
                        }
                    });
                    break;
                case 'enable':
                    $(this).each(function () {
                        if (selectBox = $(this).data('selectBox')) {
                            selectBox.enable(this);
                        }
                    });
                    break;
                case 'disable':
                    $(this).each(function () {
                        if (selectBox = $(this).data('selectBox')) {
                            selectBox.disable();
                        }
                    });
                    break;
                case 'destroy':
                    $(this).each(function () {
                        if (selectBox = $(this).data('selectBox')) {
                            selectBox.destroy();
                            $(this).data('selectBox', null);
                        }
                    });
                    break;
                case 'instance':
                    return $(this).data('selectBox');
                default:
                    $(this).each(function (idx, select) {
                        if (!$(select).data('selectBox')) {
                            $(select).data('selectBox', new SelectBox(select, method));
                        }
                    });
                    break;
            }
            return $(this);
        }
    });
})(jQuery);PK`x1\�/���m�m'assets/js/unminified/admin/yith-wcwl.jsnu�[���/**
 * Admin YITH WooCommerce Wishlist JS
 *
 * @author YITH
 * @package YITH WooCommerce Wishlist
 * @version 3.0.0
 */

jQuery( function( $ ) {

    /* === CUSTOM DEPENDENCIES HANDLER === */

    $.fn.dependency = function (deps, test, complete, args) {
        var t = $(this);

        t.on('change', function () {
            var val = test(t);

            $.each(deps, function (i, v) {
                var elem = $(v);

                if (!elem.length) {
                    return;
                }

                var target = elem.closest('tr');

                if (!target.length) {
                    return;
                }

                if( val ){
                    target.show().fadeTo("slow", 1);
                }
                else{
                    target.is( ':visible' ) ? target.fadeTo("slow", 0, function(){ target.hide() }) : target.css('opacity', 0).hide();
                }

                // val ? target.removeClass('yith-disabled') : target.addClass('yith-disabled');
            });

            if (typeof complete != 'undefined') {
                complete(t, args);
            }
        }).change();
    };

    /* === PROMOTION WIZARD HANDLER === */

    var Wizard = function( el, args ){
            var self = this;

            self.settings = {};

            self.modal = null;

            self._init = function(){
                self.settings = $.extend( {
                    template: el.data('template'),
                    template_data: {},
                    container: '.yith-wcwl-wizard-modal',
                    events: {}
                }, args );

                if( typeof self.settings.events['init'] === 'function' ){
                    self.settings.events.init( el, args );
                }

                self._initOpener();
            };

            self._initOpener = function(){
                el.on( 'click', function( ev ){
                    var t = $(this),
                        settings = self.settings.template_data;

                    ev.preventDefault();

                    // init opener-specific template data
                    if( typeof settings === 'function' ){
                        settings = ( settings )( t );
                    }

                    t.WCBackboneModal({
                        template: self.settings.template,
                        variable: settings
                    });

                    var container = $( self.settings.container );

                    self._initEditor( container );
                    self._initEnhancedSelect( container );
                    self._initTabs( container );
                    self._initSteps( container );
                    self._initOptions( container, settings );
                    self._initEvents( container, self.settings.events );
                } );
            };

            self._initEditor = function( modal ){
                modal.find( '.with-editor' ).each( function(){
                    var t = $(this),
                        id = t.attr('id');

                    // Destroy any existing editor so that it can be re-initialized when popup opens.
                    if ( tinymce.get( id ) ) {
                        restoreTextMode = tinymce.get( id ).isHidden();
                        wp.editor.remove( id );
                    }

                    wp.editor.initialize( id, {
                        tinymce: {
                            wpautop: true,
                            init_instance_callback: function (editor) {
                                editor.on('Change', function (e) {
                                    t.val( editor.getContent() ).change();
                                });
                            }
                        },
                        quicktags: true,
                        mediaButtons: true
                    } );
                } )
            };

            self._initEnhancedSelect = function( modal ){
                $(document.body).trigger( 'wc-enhanced-select-init' );
            };

            self._initTabs = function( modal ){
                modal.find( '.tabs' ).on( 'click', 'a', function( ev ){
                    var t = $(this),
                        ul = t.closest('ul'),
                        a = ul.find( 'a' ),
                        p = ul.parent(),
                        tabs = p.find( '.tab' ),
                        target = t.data( 'target' ),
                        tab = $( target ),
                        changed = false;

                    ev.preventDefault();

                    if( ! t.hasClass( 'active' ) ){
                        changed = true;
                    }

                    a.attr( 'aria-selected', 'false' ).removeClass( 'active' );
                    t.attr( 'aria-selected', 'true' ).addClass( 'active' );

                    tabs.attr( 'aria-expanded', 'false' ).removeClass( 'active' ).hide();
                    tab.attr( 'aria-expanded', 'true' ).addClass( 'active' ).show();

                    if( changed ){
                        t.trigger( 'tabChange' );
                    }
                } );
            };

            self._initOptions = function( modal, values ){
                $.each( values, function( i, v ){
                    var field = modal.find( '[name="' + i + '"]' );

                    if( ! field.length || v === field.val() ){
                        return;
                    }

                    if( field.is( 'select' ) && ! field.find( 'option[value="' + v + '"]' ).length ){
                        field.append( '<option value="' + v + '" selected="selected">' + v + ' </option>' );
                    }
                    else {
                        field.val(v);
                    }
                } );
            };

            self._initSteps = function( modal ){
                // show only first step by default
                modal.find( '.step' ).hide().first().show();

                // init continue button
                modal.find( '.continue-button' ).on( 'click', function( ev ){
                    var t = $(this),
                        current_step = t.closest( '.step' ),
                        next_step = current_step.next( '.step' );

                    ev.preventDefault();

                    if( next_step.length ) {
                        self._changeStep( modal, current_step, next_step );
                    }
                } );

                // init back button
                modal.find( '.back-button' ).on( 'click', function( ev ){
                    var t = $(this),
                        current_step = t.closest( '.step' ),
                        prev_step = current_step.prev( '.step' );

                    ev.preventDefault();

                    if( prev_step.length ) {
                        self._changeStep( modal, current_step, prev_step );
                    }
                } );
            };

            self._initEvents = function( modal, events ){
                if( typeof self.settings.events['open'] === 'function' ){
                    self.settings.events.open( el, modal );
                }

                $.each( events, function( i, v ){
                    var target = null;

                    // exclude general events
                    if( i === 'init' || i === 'open' ){
                        return;
                    }

                    // tab events
                    else if( i === 'tabChange' ){
                        target = modal.find( '.tabs' );
                    }

                    // step events
                    else if( i === 'stepChange' ){
                        target = modal.find( '.step' );
                    }

                    // input changes
                    else{
                        target = modal.find( ':input' );
                    }

                    target.on( i, function( ev ){
                        return ( v )( $(this), modal, ev );
                    } );
                } );
            };

            self._changeStep = function( modal, current, next ){
                current.animate( {
                    opacity: 0
                }, {
                    duration: 200,
                    complete: function(){
                       var modalContent = modal.find( 'article' ),
                            modalContentWidth = modalContent.outerWidth(),
                            modalContentHeight = modalContent.outerHeight();

                        // calculate step size
                        modalContent.outerWidth( 'auto' );
                        modalContent.outerHeight( 'auto' );

                        current.hide();
                        next.show();

                        var nextWidth = next.outerWidth(),
                            nextHeight = next.outerHeight();

                        next.hide();
                        current.css( 'opacity', 1 );

                        // fix modal size
                        modalContent.outerWidth( modalContentWidth );
                        modalContent.outerHeight( modalContentHeight );

                        modalContent.animate( {
                            width: nextWidth,
                            height: nextHeight
                        }, {
                            duration: 200,
                            complete: function(){
                                next.fadeIn( 200 );
                            }
                        } );
                    }
                } );

                next.trigger( 'stepChange' );
            };

            self._init();
        },
        updatePreviewXHR = null,
        updatePreview = function( el, modal, ev ){
            var preview = modal.find( '.email-preview' ),
                template = modal.find('#template').val();

            if( updatePreviewXHR ){
                updatePreviewXHR.abort();
            }

            updatePreviewXHR = $.ajax( {
                url: ajaxurl + '?action=preview_promotion_email&_wpnonce=' + yith_wcwl.nonce.preview_promotion_email,
                data: modal.find('form').serialize(),
                method: 'POST',
                beforeSend: function(){
                    preview.block({
                        message: null,
                        overlayCSS: {
                            background: 'transparent',
                            opacity: 0.6
                        }
                    });
                },
                complete: function(){
                    preview.unblock();
                },
                success: function( data ){
                    preview.removeClass( 'html plain' ).addClass( template ).find('.no-interactions').html( data );
                }
            } );
        },
        getPromotionWizardData = function(){
            return {
                template: 'yith-wcwl-promotion-wizard',
                template_data: function( el ){
                    var data;

                    if( el.hasClass( 'restore-draft' ) ) {
                        data = el.data( 'draft' );
                    }
                    else{
                        data = $.extend( data, {
                            product_id: el.data('product_id'),
                            user_id   : el.data('user_id')
                        } );
                    }

                    return data;
                },
                events: {
                    change: updatePreview,
                    open: function( el, modal, ev ){
                        modal.find( '#content_html-tmce' ).click();
                        updatePreview( el, modal, ev );
                    },
                    tabChange: function( el, modal, ev ){
                        modal.find( '#template' ).val( el.find( '.active' ).data( 'template' ) );
                        updatePreview( el, modal, ev );
                    },
                    stepChange: function( el, modal, ev ){
                        var counter = el.find( '.receivers-count' ),
                            additional_info = el.find( '.show-on-long-queue' ),
                            threshold = additional_info.data('threshold');

                        if( ! counter.length ){
                            return;
                        }

                        $.ajax({
                            url: ajaxurl + '?action=calculate_promotion_email_receivers&_wpnonce=' + yith_wcwl.nonce.calculate_promotion_email_receivers,
                            data: modal.find('form').serialize(),
                            method: 'post',
                            beforeSend: function(){
                                counter.css( 'opacity', 0.3 );

                                if( additional_info.length ){
                                    additional_info.hide();
                                }
                            },
                            complete: function(){
                                counter.css( 'opacity', 1 );
                            },
                            success: function( data ){
                                if( typeof data.label === 'undefined' ){
                                    return;
                                }

                                counter.html( data.label );

                                if( additional_info.length && typeof data.count !== 'undefined' && data.count > threshold ){
                                    additional_info.show();
                                }
                            }
                        });
                    }
                }
            }
        };

    $.fn.wizard = function ( args ) {
        var t = $(this),
            w = new Wizard( t, args );
    };

    $('.create-promotion').wizard( getPromotionWizardData() );
    $('.restore-draft').wizard( getPromotionWizardData() );

    /* === UTILITY FUNCTIONS === */

    var isRadioYes = function (t) {
            if( ! t.is( 'input[type="radio"]' ) ){
                t = t.find( 'input[type="radio"]:checked' );
            }

            return t.val() === 'yes';
        },
        isRadioNo = function (t) {
            if( ! t.is( 'input[type="radio"]' ) ){
                t = t.find( 'input[type="radio"]:checked' );
            }

            return t.val() === 'no';
        },
        isChecked = function (t) {
            return t.is(':checked');
        };

    /* === SETTINGS HANDLING === */

    var disable_wishlist_for_unauthenticated_users = $('#yith_wcwl_disable_wishlist_for_unauthenticated_users'),
        multi_wishlist_enable = $('#yith_wcwl_multi_wishlist_enable'),
        enable_multi_wishlist_for_unauthenticated_users = $('#yith_wcwl_enable_multi_wishlist_for_unauthenticated_users'),
        modal_enable = $('#yith_wcwl_modal_enable'),
        loop_position = $('#yith_wcwl_loop_position'),
        icon_select = $('.icon-select'),
        add_to_cart_style = $('[name="yith_wcwl_add_to_cart_style"]'),
        add_to_cart_icon = $('#yith_wcwl_add_to_cart_icon'),
        ask_an_estimate_style = $('[name="yith_wcwl_ask_an_estimate_style"]'),
        ask_an_estimate_icon = $('#yith_wcwl_ask_an_estimate_icon'),
        enable_share = $('#yith_wcwl_enable_share'),
        share_facebook = $('#yith_wcwl_share_fb'),
        share_facebook_icon = $('#yith_wcwl_fb_button_icon'),
        share_twitter = $('#yith_wcwl_share_twitter'),
        share_twitter_icon = $('#yith_wcwl_tw_button_icon'),
        share_pinterest = $('#yith_wcwl_share_pinterest'),
        share_pinterest_icon = $('#yith_wcwl_pr_button_icon'),
        share_email = $('#yith_wcwl_share_email'),
        share_email_icon = $('#yith_wcwl_em_button_icon'),
        share_whatsapp = $('#yith_wcwl_share_whatsapp'),
        share_whatsapp_icon = $('#yith_wcwl_wa_button_icon'),
        show_estimate_button = $('#yith_wcwl_show_estimate_button'),
        show_additional_info_textarea = $('#yith_wcwl_show_additional_info_textarea'),
        ask_an_estimate_fields = $('#yith_wcwl_ask_an_estimate_fields'),
        promotion_mail_type = $('#woocommerce_promotion_mail_settings\\[email_type\\]'),
        back_in_stock_mail_enabled = $('#woocommerce_yith_wcwl_back_in_stock_settings\\[enabled\\]'),
        back_in_stock_mail_type = $('#woocommerce_yith_wcwl_back_in_stock_settings\\[email_type\\]'),
        on_sale_item_mail_enabled = $('#woocommerce_yith_wcwl_on_sale_item_settings\\[enabled\\]'),
        on_sale_item_mail_type = $('#woocommerce_yith_wcwl_on_sale_item_settings\\[email_type\\]'),
        ask_an_estimate_type = $('[id^="type_"]');

    loop_position.add('select#yith_wcwl_button_position').on('change', function () {
        var t = $(this),
            v = t.val();

        if ('shortcode' === v) {
            t.parent().next().find('.addon').show();
        } else {
            t.parent().next().find('.addon').hide();
        }
    }).change();

    ask_an_estimate_type.on( 'change', function(){
        var t = $(this),
            v = t.val(),
            options_field = t.closest( '.yith-toggle-content-row' ).next();

        if( v === 'radio' ||  v === 'select' ){
            options_field.show().fadeTo('slow' , 1);
        }
        else{
            options_field.is( ':visible' ) ? options_field.fadeTo('slow', 0, function(){ options_field.hide() }) : options_field.css('opacity', 0).hide();
        }
    } ).change();

    add_to_cart_style.on( 'change', function(){
        add_to_cart_icon.change();
    } );

    ask_an_estimate_style.on( 'change', function(){
        ask_an_estimate_icon.change();
    } );

    icon_select.each( function(){
        var t = $(this),
            renderOption = function (state) {
                if ( ! state.id ) {
                    return state.text;
                }
                return $(
                    '<span><i class="option-icon fa ' + state.element.value.toLowerCase() + '" ></i> ' + state.text + '</span>'
                );
            };

        t.select2({
            templateResult: renderOption
        });
    } );

    disable_wishlist_for_unauthenticated_users.dependency([
        '#yith_wcwl_enable_multi_wishlist_for_unauthenticated_users-yes'
    ], function(){
        return isRadioNo( disable_wishlist_for_unauthenticated_users ) && isChecked( multi_wishlist_enable );
    }, function(){
        enable_multi_wishlist_for_unauthenticated_users.change();
    } );

    multi_wishlist_enable.dependency([
        '#yith_wcwl_enable_multi_wishlist_for_unauthenticated_users-yes'
    ], function(){
        return isRadioNo( disable_wishlist_for_unauthenticated_users ) && isChecked( multi_wishlist_enable );
    }, function(){
        enable_multi_wishlist_for_unauthenticated_users.change();
    } );

    enable_multi_wishlist_for_unauthenticated_users.dependency([
        '#yith_wcwl_show_login_notice',
        '#yith_wcwl_login_anchor_text'
    ], function(){
        return isChecked( multi_wishlist_enable ) && isRadioNo( disable_wishlist_for_unauthenticated_users ) && isRadioNo( enable_multi_wishlist_for_unauthenticated_users );
    });

    modal_enable.dependency([
        '#yith_wcwl_show_exists_in_a_wishlist'
    ], function(){
        var res = modal_enable.find( ':checked' ).val() !== 'default';

        if( ! res ){
            $('#yith_wcwl_show_exists_in_a_wishlist').prop( 'checked', true );
        }

        return res;
    } );

    add_to_cart_icon.dependency([
       '#yith_wcwl_add_to_cart_custom_icon'
    ], function(){
        return 'custom' === add_to_cart_icon.val() && 'button_custom' === add_to_cart_style.filter(':checked').val();
    } );

    ask_an_estimate_icon.dependency([
       '#yith_wcwl_ask_an_estimate_custom_icon'
    ], function(){
        return 'custom' === ask_an_estimate_icon.val() && 'button_custom' === ask_an_estimate_style.filter(':checked').val();
    } );

    enable_share.dependency([
        '#yith_wcwl_share_fb'
    ], isChecked, function(){
        share_facebook.change();
        share_facebook_icon.change();
        share_twitter.change();
        share_twitter_icon.change();
        share_pinterest.change();
        share_pinterest_icon.change();
        share_email.change();
        share_email_icon.change();
        share_whatsapp.change();
        share_whatsapp_icon.change();
    } );

    share_facebook.dependency([
        '#yith_wcwl_fb_button_icon',
        '#yith_wcwl_color_fb_button_background'
    ], function(){
        return isChecked( share_facebook ) && isChecked( enable_share )
    }, function(){
        share_facebook_icon.change();
    } );

    share_facebook_icon.dependency([
        '#yith_wcwl_fb_button_custom_icon'
    ], function(){
        return isChecked( share_facebook ) && isChecked( enable_share ) && 'custom' === share_facebook_icon.val();
    } );

    share_twitter.dependency([
        '#yith_wcwl_tw_button_icon',
        '#yith_wcwl_color_tw_button_background'
    ], function(){
        return isChecked( share_twitter ) && isChecked( enable_share )
    }, function(){
        share_twitter_icon.change();
    } );

    share_twitter_icon.dependency([
        '#yith_wcwl_tw_button_custom_icon'
    ], function(){
        return isChecked( share_twitter ) && isChecked( enable_share ) && 'custom' === share_twitter_icon.val();
    } );

    share_pinterest.dependency([
        '#yith_wcwl_socials_image_url',
        '#yith_wcwl_pr_button_icon',
        '#yith_wcwl_color_pr_button_background'
    ], function(){
        return isChecked( share_pinterest ) && isChecked( enable_share )
    }, function(){
        share_pinterest_icon.change();
    } );

    share_pinterest_icon.dependency([
        '#yith_wcwl_pr_button_custom_icon'
    ], function(){
        return isChecked( share_pinterest ) && isChecked( enable_share ) && 'custom' === share_pinterest_icon.val();
    } );

    share_email.dependency([
        '#yith_wcwl_em_button_icon',
        '#yith_wcwl_color_em_button_background'
    ], function(){
        return isChecked( share_email ) && isChecked( enable_share )
    }, function(){
        share_email_icon.change();
    } );

    share_email_icon.dependency([
        '#yith_wcwl_em_button_custom_icon'
    ], function(){
        return isChecked( share_email ) && isChecked( enable_share ) && 'custom' === share_email_icon.val();
    } );

    share_whatsapp.dependency([
        '#yith_wcwl_wa_button_icon',
        '#yith_wcwl_wa_button_custom_icon',
        '#yith_wcwl_color_wa_button_background'
    ], function(){
        return isChecked( share_whatsapp ) && isChecked( enable_share )
    }, function(){
        share_whatsapp_icon.change();
    } );

    share_whatsapp_icon.dependency([
        '#yith_wcwl_wa_button_custom_icon'
    ], function(){
        return isChecked( share_whatsapp ) && isChecked( enable_share ) && 'custom' === share_whatsapp_icon.val();
    } );

    share_twitter.add( share_pinterest ).dependency([
        '#yith_wcwl_socials_title',
        '#yith_wcwl_socials_text'
    ], function(){
        return ( isChecked( share_twitter ) || isChecked( share_pinterest ) ) && isChecked( enable_share )
    });

    show_estimate_button.dependency([
        '#yith_wcwl_show_additional_info_textarea'
    ], isChecked, function(){
        show_additional_info_textarea.change()
    } );

    show_estimate_button.on( 'change', function(){
        show_additional_info_textarea.change();
    } );

    show_additional_info_textarea.dependency([
        '#yith_wcwl_additional_info_textarea_label'
    ], function(){
        return isChecked( show_estimate_button ) && isChecked( show_additional_info_textarea )
    } );

    show_additional_info_textarea.on( 'change', function(){
        var t = $(this);

        if( t.is(':checked') && show_estimate_button.is(':checked') ){
            ask_an_estimate_fields.removeClass( 'yith-disabled' );
        }
        else {
            ask_an_estimate_fields.addClass( 'yith-disabled' );
        }
    } );

    promotion_mail_type.dependency([
        '#woocommerce_promotion_mail_settings\\[content_html\\]'
    ], function(){
        return 'multipart' === promotion_mail_type.val() || 'html' === promotion_mail_type.val()
    } );

    promotion_mail_type.dependency([
        '#woocommerce_promotion_mail_settings\\[content_text\\]'
    ], function(){
        return 'multipart' === promotion_mail_type.val() || 'plain' === promotion_mail_type.val()
    } );

    back_in_stock_mail_enabled.dependency([
        '#woocommerce_yith_wcwl_back_in_stock_settings\\[product_exclusions\\]',
        '#woocommerce_yith_wcwl_back_in_stock_settings\\[category_exclusions\\]',
        '#woocommerce_yith_wcwl_back_in_stock_settings\\[email_type\\]',
        '#woocommerce_yith_wcwl_back_in_stock_settings\\[heading\\]',
        '#woocommerce_yith_wcwl_back_in_stock_settings\\[subject\\]',
        '#woocommerce_yith_wcwl_back_in_stock_settings\\[content_html\\]',
        '#woocommerce_yith_wcwl_back_in_stock_settings\\[content_text\\]'
    ], function(){
        return isChecked( back_in_stock_mail_enabled )
    }, function(){
        back_in_stock_mail_type.change();
    } );

    back_in_stock_mail_type.dependency([
        '#woocommerce_yith_wcwl_back_in_stock_settings\\[content_html\\]'
    ], function(){
        return ( 'multipart' === back_in_stock_mail_type.val() || 'html' === back_in_stock_mail_type.val() ) && isChecked( back_in_stock_mail_enabled )
    } );

    back_in_stock_mail_type.dependency([
        '#woocommerce_yith_wcwl_back_in_stock_settings\\[content_text\\]'
    ], function(){
        return ( 'multipart' === back_in_stock_mail_type.val() || 'plain' === back_in_stock_mail_type.val() ) && isChecked( back_in_stock_mail_enabled )
    } );

    on_sale_item_mail_enabled.dependency([
        '#woocommerce_yith_wcwl_on_sale_item_settings\\[product_exclusions\\]',
        '#woocommerce_yith_wcwl_on_sale_item_settings\\[category_exclusions\\]',
        '#woocommerce_yith_wcwl_on_sale_item_settings\\[email_type\\]',
        '#woocommerce_yith_wcwl_on_sale_item_settings\\[heading\\]',
        '#woocommerce_yith_wcwl_on_sale_item_settings\\[subject\\]',
        '#woocommerce_yith_wcwl_on_sale_item_settings\\[content_html\\]',
        '#woocommerce_yith_wcwl_on_sale_item_settings\\[content_text\\]'
    ], function(){
        return isChecked( on_sale_item_mail_enabled )
    }, function(){
        on_sale_item_mail_type.change();
    } );

    on_sale_item_mail_type.dependency([
        '#woocommerce_yith_wcwl_on_sale_item_settings\\[content_html\\]'
    ], function(){
        return ( 'multipart' === on_sale_item_mail_type.val() || 'html' === on_sale_item_mail_type.val() ) && isChecked( on_sale_item_mail_enabled )
    } );

    on_sale_item_mail_type.dependency([
        '#woocommerce_yith_wcwl_on_sale_item_settings\\[content_text\\]'
    ], function(){
        return ( 'multipart' === on_sale_item_mail_type.val() || 'plain' === on_sale_item_mail_type.val() ) && isChecked( on_sale_item_mail_enabled )
    } );

    /* === DATEPICKER === */

    // commissions filter
    $( ".date-picker-field, .date-picker" ).datepicker ({
        dateFormat: "yy-mm-dd",
        numberOfMonths: 1,
        showButtonPanel: true
    } );

    /* === TOGGLE BOX HANDLING === */

    $(document).on( 'yith-add-box-button-toggle', function(){
        var ask_an_estimate_type_new = $('#new_type'),
            ask_an_estimate_options_new = $('#new_options'),
            target = ask_an_estimate_options_new.closest('.yith-add-box-row');

        ask_an_estimate_type_new.on( 'change', function(){
            var v = ask_an_estimate_type_new.val();

            if( v === 'radio' ||  v === 'select' ){
                target.show().fadeTo('slow', 1);
            }
            else{
                target.is( ':visible' ) ? target.fadeTo('slow', 0, function(){ $(this).hide() }) : target.css('opacity', 0).hide();
            }
        } ).change();
    } );
} );PK`x1\����F
F
assets/css/jquery.selectBox.cssnu�[���.selectBox-dropdown{min-width:150px;position:relative;border:solid 1px #bbb;line-height:1.5;text-decoration:none;text-align:left;color:#000;outline:0;vertical-align:middle;background:#f2f2f2;background:-moz-linear-gradient(top,#f8f8f8 1%,#e1e1e1 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(1%,#f8f8f8),color-stop(100%,#e1e1e1));-moz-box-shadow:0 1px 0 rgba(255,255,255,.75);-webkit-box-shadow:0 1px 0 rgba(255,255,255,.75);box-shadow:0 1px 0 rgba(255,255,255,.75);-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;display:inline-block;cursor:default}.selectBox-dropdown:focus,.selectBox-dropdown:focus .selectBox-arrow{border-color:#666}.selectBox-dropdown.selectBox-menuShowing{-moz-border-radius-bottomleft:0;-moz-border-radius-bottomright:0;-webkit-border-bottom-left-radius:0;-webkit-border-bottom-right-radius:0;border-bottom-left-radius:0;border-bottom-right-radius:0}.selectBox-dropdown .selectBox-label{padding:2px 8px;display:inline-block;white-space:nowrap;overflow:hidden}.selectBox-dropdown .selectBox-arrow{position:absolute;top:0;right:0;width:23px;height:100%;background:url(../images/jquery.selectBox-arrow.gif) 50% center no-repeat;border-left:solid 1px #bbb}.selectBox-dropdown-menu{position:absolute;z-index:99999;max-height:200px;min-height:1em;border:solid 1px #bbb;background:#fff;-moz-box-shadow:0 2px 6px rgba(0,0,0,.2);-webkit-box-shadow:0 2px 6px rgba(0,0,0,.2);box-shadow:0 2px 6px rgba(0,0,0,.2);overflow:auto;-webkit-overflow-scrolling:touch}.selectBox-inline{min-width:150px;outline:0;border:solid 1px #bbb;background:#fff;display:inline-block;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;overflow:auto}.selectBox-inline:focus{border-color:#666}.selectBox-options,.selectBox-options LI,.selectBox-options LI A{list-style:none;display:block;cursor:default;padding:0;margin:0}.selectBox-options LI A{line-height:1.5;padding:0 .5em;white-space:nowrap;overflow:hidden;background:6px center no-repeat}.selectBox-options LI.selectBox-hover A{background-color:#eee}.selectBox-options LI.selectBox-disabled A{color:#888;background-color:transparent}.selectBox-options LI.selectBox-selected A{background-color:#c8def4}.selectBox-options .selectBox-optgroup{color:#666;background:#eee;font-weight:700;line-height:1.5;padding:0 .3em;white-space:nowrap}.selectBox.selectBox-disabled{color:#888!important}.selectBox-dropdown.selectBox-disabled .selectBox-arrow{opacity:.5;border-color:#666}.selectBox-inline.selectBox-disabled{color:#888!important}.selectBox-inline.selectBox-disabled .selectBox-options A{background-color:transparent!important}PK`x1\$����assets/css/admin.cssnu�[���#popular-filter .wp-list-table td.column-name img{max-width:40px;height:auto;float:left}#popular-filter .wp-list-table td.column-name .product-details{padding-left:60px}#popular-filter .wp-list-table td.column-actions,#popular-filter .wp-list-table th.column-actions{width:25%!important}#popular-filter .wp-list-table td.column-actions a{margin-bottom:5px;padding:0}#popular-filter .wp-list-table td.column-actions a i{margin:5px}#popular-filter .wp-list-table td.column-actions a.button-primary{padding-right:5px}#popular-filter .wp-list-table td.column-actions a,#popular-filter .wp-list-table td.column-actions a i{vertical-align:middle}#wishlist-filter .wp-list-table td.column-username img{float:left}#wishlist-filter .wp-list-table td.column-username .customer-details{padding-left:60px}.yith-plugin-ui #plugin-fw-wc .option-icon{margin-right:5px}.yith-plugin-ui #plugin-fw-wc h2+#yith_wcwl_additional_fields_settings-description p,.yith-plugin-ui #plugin-fw-wc h2+#yith_wcwl_shop_page_settings-description p,.yith-plugin-ui #plugin-fw-wc h2+#yith_wcwl_yith_wfbt-description p{background:0 0;width:100%;margin:0;padding:0;font-weight:400}.yith-plugin-ui #plugin-fw-wc h2+#yith_wcwl_additional_fields_settings-description p:before,.yith-plugin-ui #plugin-fw-wc h2+#yith_wcwl_shop_page_settings-description p:before,.yith-plugin-ui #plugin-fw-wc h2+#yith_wcwl_yith_wfbt-description p:before{content:''}.yith-wcwl-wizard-modal .wc-backbone-modal-main{padding-bottom:0}.yith-wcwl-wizard-modal .wc-backbone-modal-main .wc-backbone-modal-header{border-bottom:none;padding:0}.yith-wcwl-wizard-modal .wc-backbone-modal-main .wc-backbone-modal-header .modal-close-link{border-left:none;z-index:1}.yith-wcwl-wizard-modal .wc-backbone-modal-main article{padding:0;max-height:calc(100vh - 40px)!important}.yith-wcwl-wizard-modal .wc-backbone-modal-main article h2{font-size:1.5em;margin:.8em 0 2em;color:#007694}.yith-wcwl-wizard-modal .wc-backbone-modal-main article h4{color:#007694;margin:1.33em 0;font-size:1em;font-weight:600}.yith-wcwl-wizard-modal .wc-backbone-modal-main article p.description{font-weight:600;font-style:normal}.yith-wcwl-wizard-modal .wc-backbone-modal-main article p.placeholders{font-size:.9em;margin-top:1.33em}.yith-wcwl-wizard-modal .wc-backbone-modal-main article code{background:0 0;padding:0}.yith-wcwl-wizard-modal .wc-backbone-modal-main article small{font-size:.9em}.yith-wcwl-wizard-modal .wc-backbone-modal-main article b.alert{color:#a20000}.yith-wcwl-wizard-modal .wc-backbone-modal-main article .form-row{margin-top:1.5em}.yith-wcwl-wizard-modal .wc-backbone-modal-main article label{color:#00a79c;font-weight:600;font-size:1.1em;margin-bottom:20px}.yith-wcwl-wizard-modal .wc-backbone-modal-main article .tabs{display:inline-block;margin:0}.yith-wcwl-wizard-modal .wc-backbone-modal-main article .tabs li{display:inline-block;margin-bottom:0}.yith-wcwl-wizard-modal .wc-backbone-modal-main article .tabs li a{display:block;padding:10px 15px;text-decoration:none;font-size:1.1em;color:#404040;font-weight:600}.yith-wcwl-wizard-modal .wc-backbone-modal-main article .tabs li a.active{position:relative;background:#fff;box-shadow:0 0 25px -4px rgba(68,138,133,.4);z-index:1;color:#00a79c}.yith-wcwl-wizard-modal .wc-backbone-modal-main article .tabs li a:hover{color:#00a79c}.yith-wcwl-wizard-modal .wc-backbone-modal-main article .form-row,.yith-wcwl-wizard-modal .wc-backbone-modal-main article .tab{padding:20px;position:relative;-webkit-box-shadow:0 0 25px -4px rgba(68,138,133,.4);-moz-box-shadow:0 0 25px -4px rgba(68,138,133,.4);box-shadow:0 0 25px -4px rgba(68,138,133,.4)}.yith-wcwl-wizard-modal .wc-backbone-modal-main article .tab:before{content:'';display:block;background:#fff;left:0;right:0;height:20px;position:absolute;top:-1px;z-index:1}.yith-wcwl-wizard-modal .wc-backbone-modal-main article .tab:not(.active){display:none}.yith-wcwl-wizard-modal .wc-backbone-modal-main article .tab>textarea{width:100%;margin-top:30px}.yith-wcwl-wizard-modal .wc-backbone-modal-main article .col{padding:20px 30px}.yith-wcwl-wizard-modal .wc-backbone-modal-main article .step-1{display:flex;width:100%}.yith-wcwl-wizard-modal .wc-backbone-modal-main article .step-1>.col{flex:1;width:600px}.yith-wcwl-wizard-modal .wc-backbone-modal-main article .step-1>.col-dx{background-color:#f2f2f2;position:relative;padding-bottom:80px}.yith-wcwl-wizard-modal .wc-backbone-modal-main article .step-1 #content_html{width:100%}.yith-wcwl-wizard-modal .wc-backbone-modal-main article .step-1 .email-preview{height:500px;overflow-x:hidden;overflow-y:scroll;margin:30px 0}.yith-wcwl-wizard-modal .wc-backbone-modal-main article .step-1 .email-preview.plain{padding:0 20px;background:#fff}.yith-wcwl-wizard-modal .wc-backbone-modal-main article .step-1 .email-preview .no-interactions{pointer-events:none}.yith-wcwl-wizard-modal .wc-backbone-modal-main article .step-1 .email-preview #wrapper{padding:0!important}.yith-wcwl-wizard-modal .wc-backbone-modal-main article .step-1 .email-preview #wrapper>table{width:100%!important}.yith-wcwl-wizard-modal .wc-backbone-modal-main article .step-1 .promotion-actions{position:absolute;left:30px;right:30px;bottom:30px;line-height:40px}.yith-wcwl-wizard-modal .wc-backbone-modal-main article .step-1 .promotion-actions .save-promotion-draft,.yith-wcwl-wizard-modal .wc-backbone-modal-main article .step-1 .promotion-actions a.back-button{color:#007694;font-weight:700}.yith-wcwl-wizard-modal .wc-backbone-modal-main article .step-1 .promotion-actions .save-promotion-draft{background:0 0;border:none;padding:0;cursor:pointer}.yith-wcwl-wizard-modal .wc-backbone-modal-main article .step-1 .promotion-actions a.continue-button{float:right;background-color:#007694;text-transform:uppercase;font-weight:600;font-size:11px;line-height:26px;height:auto;padding:5px 20px}.yith-wcwl-wizard-modal .wc-backbone-modal-main article .step-1 .promotion-actions a.continue-button:hover{background-color:#375f6b}.yith-wcwl-wizard-modal .wc-backbone-modal-main article .step-2{max-width:500px;min-height:400px;position:relative}.yith-wcwl-wizard-modal .wc-backbone-modal-main article .step-2 h2{margin-top:2em}.yith-wcwl-wizard-modal .wc-backbone-modal-main article .step-2 p{font-weight:600}.yith-wcwl-wizard-modal .wc-backbone-modal-main article .step-2 #main_submit_button{position:absolute;bottom:30px;left:30px;right:30px;width:calc(100% - 60px);padding:5px 20px;text-transform:uppercase;font-weight:600;vertical-align:middle;line-height:30px;height:auto}.yith-wcwl-wizard-modal .wc-backbone-modal-main article .step-2 #main_submit_button i{vertical-align:middle;margin-right:5px;font-size:22px}PK`x1\�?r���assets/css/unminified/admin.cssnu�[���/**
 * Admin YITH WooCommerce Wishlist CSS
 *
 * @author Your Inspiration Themes
 * @package YITH WooCommerce Wishlist
 * @version 3.0.0
 */

/**
 * Index:
 *
 * 1. POPULAR TAB
 * 2. ALL WISHLISTS TAB
 * 3. GENERAL PLUGIN FW PANEL
 * 4. PROMOTION WIZARD
 */

/* === 1. POPULAR TAB === */

#popular-filter .wp-list-table td.column-name img{
    max-width: 40px;
    height: auto;
    float: left;
}

#popular-filter .wp-list-table td.column-name .product-details{
    padding-left: 60px;
}

#popular-filter .wp-list-table th.column-actions,
#popular-filter .wp-list-table td.column-actions {
    width: 25%!important;
}

#popular-filter .wp-list-table td.column-actions a{
    margin-bottom: 5px;
    padding: 0;
}

#popular-filter .wp-list-table td.column-actions a i{
    margin: 5px;
}

#popular-filter .wp-list-table td.column-actions a.button-primary{
    padding-right: 5px;
}

#popular-filter .wp-list-table td.column-actions a,
#popular-filter .wp-list-table td.column-actions a i{
    vertical-align: middle;
}

/* === 2. ALL WISHLISTS TAB === */

#wishlist-filter .wp-list-table td.column-username img{
    float: left;
}

#wishlist-filter .wp-list-table td.column-username .customer-details{
    padding-left: 60px;
}

/* === 3. GENERAL PLUGIN FW PANEL === */

.yith-plugin-ui #plugin-fw-wc .option-icon{
    margin-right: 5px;
}

.yith-plugin-ui #plugin-fw-wc h2 + #yith_wcwl_shop_page_settings-description p,
.yith-plugin-ui #plugin-fw-wc h2 + #yith_wcwl_yith_wfbt-description p,
.yith-plugin-ui #plugin-fw-wc h2 + #yith_wcwl_additional_fields_settings-description p{
    background: none;
    width: 100%;
    margin: 0;
    padding: 0;
    font-weight: 400;
}

.yith-plugin-ui #plugin-fw-wc h2 + #yith_wcwl_shop_page_settings-description p:before,
.yith-plugin-ui #plugin-fw-wc h2 + #yith_wcwl_yith_wfbt-description p:before,
.yith-plugin-ui #plugin-fw-wc h2 + #yith_wcwl_additional_fields_settings-description p:before{
    content: '';
}

/* === 4. PROMOTION WIZARD === */

.yith-wcwl-wizard-modal .wc-backbone-modal-main{
    padding-bottom: 0;
}

.yith-wcwl-wizard-modal .wc-backbone-modal-main .wc-backbone-modal-header{
    border-bottom: none;
    padding: 0;
}

.yith-wcwl-wizard-modal .wc-backbone-modal-main .wc-backbone-modal-header .modal-close-link{
    border-left: none;
    z-index: 1;
}

.yith-wcwl-wizard-modal .wc-backbone-modal-main article{
    padding: 0;
    max-height: calc(100vh - 40px)!important;
}

.yith-wcwl-wizard-modal .wc-backbone-modal-main article h2{
    font-size: 1.5em;
    margin: 0.8em 0 2em;

    color: #007694;
}

.yith-wcwl-wizard-modal .wc-backbone-modal-main article h4{
    color: #007694;
    margin: 1.33em 0;
    font-size: 1em;
    font-weight: 600;
}

.yith-wcwl-wizard-modal .wc-backbone-modal-main article p.description{
    font-weight: 600;
    font-style: normal;
}

.yith-wcwl-wizard-modal .wc-backbone-modal-main article p.placeholders{
    font-size: .9em;
    margin-top: 1.33em;
}

.yith-wcwl-wizard-modal .wc-backbone-modal-main article code{
    background: none;
    padding: 0;
}

.yith-wcwl-wizard-modal .wc-backbone-modal-main article small{
    font-size: .9em;
}

.yith-wcwl-wizard-modal .wc-backbone-modal-main article b.alert{
    color: #a20000;
}

.yith-wcwl-wizard-modal .wc-backbone-modal-main article .form-row{
    margin-top: 1.5em;
}

.yith-wcwl-wizard-modal .wc-backbone-modal-main article label{
    color: #00a79c;
    font-weight: 600;
    font-size: 1.1em;
    margin-bottom: 20px;
}

.yith-wcwl-wizard-modal .wc-backbone-modal-main article .tabs{
    display: inline-block;
    margin: 0;
}

.yith-wcwl-wizard-modal .wc-backbone-modal-main article .tabs li{
    display: inline-block;
    margin-bottom: 0;
}

.yith-wcwl-wizard-modal .wc-backbone-modal-main article .tabs li a{
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    font-size: 1.1em;
    color: #404040;
    font-weight: 600;
}

.yith-wcwl-wizard-modal .wc-backbone-modal-main article .tabs li a.active {
    position: relative;
    background: #fff;
    box-shadow: 0 0 25px -4px rgba(68,138,133,.4);
    z-index: 1;
    color: #00a79c;
}

.yith-wcwl-wizard-modal .wc-backbone-modal-main article .tabs li a:hover{
    color: #00a79c;
}

.yith-wcwl-wizard-modal .wc-backbone-modal-main article .tab,
.yith-wcwl-wizard-modal .wc-backbone-modal-main article .form-row{
    padding: 20px;

    position: relative;

    -webkit-box-shadow: 0px 0px 25px -4px rgba(68,138,133,0.4);
    -moz-box-shadow: 0px 0px 25px -4px rgba(68,138,133,0.4);
    box-shadow: 0px 0px 25px -4px rgba(68,138,133,0.4);
}

.yith-wcwl-wizard-modal .wc-backbone-modal-main article .tab:before {
    content: '';
    display: block;
    background: #ffffff;
    left: 0;
    right: 0;
    height: 20px;
    position: absolute;
    top: -1px;
    z-index: 1;
}

.yith-wcwl-wizard-modal .wc-backbone-modal-main article .tab:not(.active){
    display: none;
}

.yith-wcwl-wizard-modal .wc-backbone-modal-main article .tab > textarea{
    width: 100%;
    margin-top: 30px;
}

.yith-wcwl-wizard-modal .wc-backbone-modal-main article .col{
    padding: 20px 30px;
}

.yith-wcwl-wizard-modal .wc-backbone-modal-main article .step-1{
    display: flex;
    width: 100%;
}

.yith-wcwl-wizard-modal .wc-backbone-modal-main article .step-1 > .col{
    flex: 1;
    width: 600px;
}

.yith-wcwl-wizard-modal .wc-backbone-modal-main article .step-1 > .col-dx {
    background-color: #f2f2f2;
    position: relative;
    padding-bottom: 80px;
}

.yith-wcwl-wizard-modal .wc-backbone-modal-main article .step-1 #content_html{
    width: 100%;
}

.yith-wcwl-wizard-modal .wc-backbone-modal-main article .step-1 .email-preview{
    height: 500px;
    overflow-x: hidden;
    overflow-y: scroll;
    margin: 30px 0;
}

.yith-wcwl-wizard-modal .wc-backbone-modal-main article .step-1 .email-preview.plain{
    padding: 0 20px;
    background: #fff;
}

.yith-wcwl-wizard-modal .wc-backbone-modal-main article .step-1 .email-preview .no-interactions{
    pointer-events: none;
}

.yith-wcwl-wizard-modal .wc-backbone-modal-main article .step-1 .email-preview #wrapper{
    padding: 0!important;
}

.yith-wcwl-wizard-modal .wc-backbone-modal-main article .step-1 .email-preview #wrapper > table{
    width: 100%!important;
}

.yith-wcwl-wizard-modal .wc-backbone-modal-main article .step-1 .promotion-actions{
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 30px;
    line-height: 40px;
}

.yith-wcwl-wizard-modal .wc-backbone-modal-main article .step-1 .promotion-actions .save-promotion-draft,
.yith-wcwl-wizard-modal .wc-backbone-modal-main article .step-1 .promotion-actions a.back-button{
    color: #007694;
    font-weight: 700;
}

.yith-wcwl-wizard-modal .wc-backbone-modal-main article .step-1 .promotion-actions .save-promotion-draft{
    background: none;
    border: none;
    padding: 0;
    cursor: pointer
}

.yith-wcwl-wizard-modal .wc-backbone-modal-main article .step-1 .promotion-actions a.continue-button {
    float: right;
    background-color: #007694;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 11px;
    line-height: 26px;
    height: auto;
    padding: 5px 20px;
}

.yith-wcwl-wizard-modal .wc-backbone-modal-main article .step-1 .promotion-actions a.continue-button:hover{
    background-color: #375f6b;
}

.yith-wcwl-wizard-modal .wc-backbone-modal-main article .step-2{
    max-width: 500px;
    min-height: 400px;
    position: relative;
}

.yith-wcwl-wizard-modal .wc-backbone-modal-main article .step-2 h2{
    margin-top: 2em;
}

.yith-wcwl-wizard-modal .wc-backbone-modal-main article .step-2 p{
    font-weight: 600;
}

.yith-wcwl-wizard-modal .wc-backbone-modal-main article .step-2 #main_submit_button{
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    width: calc(100% - 60px);
    padding: 5px 20px;
    text-transform: uppercase;
    font-weight: 600;
    vertical-align: middle;
    line-height: 30px;
    height: auto;
}

.yith-wcwl-wizard-modal .wc-backbone-modal-main article .step-2 #main_submit_button i{
    vertical-align: middle;
    margin-right: 5px;
    font-size: 22px;
}PK`x1\�ʼ&�&�&assets/css/unminified/font-awesome.cssnu�[���/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */
@font-face {
  font-family: 'FontAwesome';
  src: url('../fonts/fontawesome-webfont.eot?v=4.7.0');
  src: url('../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'), url('../fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'), url('../fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'), url('../fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'), url('../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');
  font-weight: normal;
  font-style: normal;
}
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.33333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}
.fa-2x {
  font-size: 2em;
}
.fa-3x {
  font-size: 3em;
}
.fa-4x {
  font-size: 4em;
}
.fa-5x {
  font-size: 5em;
}
.fa-fw {
  width: 1.28571429em;
  text-align: center;
}
.fa-ul {
  padding-left: 0;
  margin-left: 2.14285714em;
  list-style-type: none;
}
.fa-ul > li {
  position: relative;
}
.fa-li {
  position: absolute;
  left: -2.14285714em;
  width: 2.14285714em;
  top: 0.14285714em;
  text-align: center;
}
.fa-li.fa-lg {
  left: -1.85714286em;
}
.fa-border {
  padding: .2em .25em .15em;
  border: solid 0.08em #eeeeee;
  border-radius: .1em;
}
.fa-pull-left {
  float: left;
}
.fa-pull-right {
  float: right;
}
.fa.fa-pull-left {
  margin-right: .3em;
}
.fa.fa-pull-right {
  margin-left: .3em;
}
/* Deprecated as of 4.4.0 */
.pull-right {
  float: right;
}
.pull-left {
  float: left;
}
.fa.pull-left {
  margin-right: .3em;
}
.fa.pull-right {
  margin-left: .3em;
}
.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}
.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}
@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}
.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
}
.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  transform: scale(1, -1);
}
:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  filter: none;
}
.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}
.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}
.fa-stack-1x {
  line-height: inherit;
}
.fa-stack-2x {
  font-size: 2em;
}
.fa-inverse {
  color: #ffffff;
}
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.fa-glass:before {
  content: "\f000";
}
.fa-music:before {
  content: "\f001";
}
.fa-search:before {
  content: "\f002";
}
.fa-envelope-o:before {
  content: "\f003";
}
.fa-heart:before {
  content: "\f004";
}
.fa-star:before {
  content: "\f005";
}
.fa-star-o:before {
  content: "\f006";
}
.fa-user:before {
  content: "\f007";
}
.fa-film:before {
  content: "\f008";
}
.fa-th-large:before {
  content: "\f009";
}
.fa-th:before {
  content: "\f00a";
}
.fa-th-list:before {
  content: "\f00b";
}
.fa-check:before {
  content: "\f00c";
}
.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "\f00d";
}
.fa-search-plus:before {
  content: "\f00e";
}
.fa-search-minus:before {
  content: "\f010";
}
.fa-power-off:before {
  content: "\f011";
}
.fa-signal:before {
  content: "\f012";
}
.fa-gear:before,
.fa-cog:before {
  content: "\f013";
}
.fa-trash-o:before {
  content: "\f014";
}
.fa-home:before {
  content: "\f015";
}
.fa-file-o:before {
  content: "\f016";
}
.fa-clock-o:before {
  content: "\f017";
}
.fa-road:before {
  content: "\f018";
}
.fa-download:before {
  content: "\f019";
}
.fa-arrow-circle-o-down:before {
  content: "\f01a";
}
.fa-arrow-circle-o-up:before {
  content: "\f01b";
}
.fa-inbox:before {
  content: "\f01c";
}
.fa-play-circle-o:before {
  content: "\f01d";
}
.fa-rotate-right:before,
.fa-repeat:before {
  content: "\f01e";
}
.fa-refresh:before {
  content: "\f021";
}
.fa-list-alt:before {
  content: "\f022";
}
.fa-lock:before {
  content: "\f023";
}
.fa-flag:before {
  content: "\f024";
}
.fa-headphones:before {
  content: "\f025";
}
.fa-volume-off:before {
  content: "\f026";
}
.fa-volume-down:before {
  content: "\f027";
}
.fa-volume-up:before {
  content: "\f028";
}
.fa-qrcode:before {
  content: "\f029";
}
.fa-barcode:before {
  content: "\f02a";
}
.fa-tag:before {
  content: "\f02b";
}
.fa-tags:before {
  content: "\f02c";
}
.fa-book:before {
  content: "\f02d";
}
.fa-bookmark:before {
  content: "\f02e";
}
.fa-print:before {
  content: "\f02f";
}
.fa-camera:before {
  content: "\f030";
}
.fa-font:before {
  content: "\f031";
}
.fa-bold:before {
  content: "\f032";
}
.fa-italic:before {
  content: "\f033";
}
.fa-text-height:before {
  content: "\f034";
}
.fa-text-width:before {
  content: "\f035";
}
.fa-align-left:before {
  content: "\f036";
}
.fa-align-center:before {
  content: "\f037";
}
.fa-align-right:before {
  content: "\f038";
}
.fa-align-justify:before {
  content: "\f039";
}
.fa-list:before {
  content: "\f03a";
}
.fa-dedent:before,
.fa-outdent:before {
  content: "\f03b";
}
.fa-indent:before {
  content: "\f03c";
}
.fa-video-camera:before {
  content: "\f03d";
}
.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "\f03e";
}
.fa-pencil:before {
  content: "\f040";
}
.fa-map-marker:before {
  content: "\f041";
}
.fa-adjust:before {
  content: "\f042";
}
.fa-tint:before {
  content: "\f043";
}
.fa-edit:before,
.fa-pencil-square-o:before {
  content: "\f044";
}
.fa-share-square-o:before {
  content: "\f045";
}
.fa-check-square-o:before {
  content: "\f046";
}
.fa-arrows:before {
  content: "\f047";
}
.fa-step-backward:before {
  content: "\f048";
}
.fa-fast-backward:before {
  content: "\f049";
}
.fa-backward:before {
  content: "\f04a";
}
.fa-play:before {
  content: "\f04b";
}
.fa-pause:before {
  content: "\f04c";
}
.fa-stop:before {
  content: "\f04d";
}
.fa-forward:before {
  content: "\f04e";
}
.fa-fast-forward:before {
  content: "\f050";
}
.fa-step-forward:before {
  content: "\f051";
}
.fa-eject:before {
  content: "\f052";
}
.fa-chevron-left:before {
  content: "\f053";
}
.fa-chevron-right:before {
  content: "\f054";
}
.fa-plus-circle:before {
  content: "\f055";
}
.fa-minus-circle:before {
  content: "\f056";
}
.fa-times-circle:before {
  content: "\f057";
}
.fa-check-circle:before {
  content: "\f058";
}
.fa-question-circle:before {
  content: "\f059";
}
.fa-info-circle:before {
  content: "\f05a";
}
.fa-crosshairs:before {
  content: "\f05b";
}
.fa-times-circle-o:before {
  content: "\f05c";
}
.fa-check-circle-o:before {
  content: "\f05d";
}
.fa-ban:before {
  content: "\f05e";
}
.fa-arrow-left:before {
  content: "\f060";
}
.fa-arrow-right:before {
  content: "\f061";
}
.fa-arrow-up:before {
  content: "\f062";
}
.fa-arrow-down:before {
  content: "\f063";
}
.fa-mail-forward:before,
.fa-share:before {
  content: "\f064";
}
.fa-expand:before {
  content: "\f065";
}
.fa-compress:before {
  content: "\f066";
}
.fa-plus:before {
  content: "\f067";
}
.fa-minus:before {
  content: "\f068";
}
.fa-asterisk:before {
  content: "\f069";
}
.fa-exclamation-circle:before {
  content: "\f06a";
}
.fa-gift:before {
  content: "\f06b";
}
.fa-leaf:before {
  content: "\f06c";
}
.fa-fire:before {
  content: "\f06d";
}
.fa-eye:before {
  content: "\f06e";
}
.fa-eye-slash:before {
  content: "\f070";
}
.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "\f071";
}
.fa-plane:before {
  content: "\f072";
}
.fa-calendar:before {
  content: "\f073";
}
.fa-random:before {
  content: "\f074";
}
.fa-comment:before {
  content: "\f075";
}
.fa-magnet:before {
  content: "\f076";
}
.fa-chevron-up:before {
  content: "\f077";
}
.fa-chevron-down:before {
  content: "\f078";
}
.fa-retweet:before {
  content: "\f079";
}
.fa-shopping-cart:before {
  content: "\f07a";
}
.fa-folder:before {
  content: "\f07b";
}
.fa-folder-open:before {
  content: "\f07c";
}
.fa-arrows-v:before {
  content: "\f07d";
}
.fa-arrows-h:before {
  content: "\f07e";
}
.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "\f080";
}
.fa-twitter-square:before {
  content: "\f081";
}
.fa-facebook-square:before {
  content: "\f082";
}
.fa-camera-retro:before {
  content: "\f083";
}
.fa-key:before {
  content: "\f084";
}
.fa-gears:before,
.fa-cogs:before {
  content: "\f085";
}
.fa-comments:before {
  content: "\f086";
}
.fa-thumbs-o-up:before {
  content: "\f087";
}
.fa-thumbs-o-down:before {
  content: "\f088";
}
.fa-star-half:before {
  content: "\f089";
}
.fa-heart-o:before {
  content: "\f08a";
}
.fa-sign-out:before {
  content: "\f08b";
}
.fa-linkedin-square:before {
  content: "\f08c";
}
.fa-thumb-tack:before {
  content: "\f08d";
}
.fa-external-link:before {
  content: "\f08e";
}
.fa-sign-in:before {
  content: "\f090";
}
.fa-trophy:before {
  content: "\f091";
}
.fa-github-square:before {
  content: "\f092";
}
.fa-upload:before {
  content: "\f093";
}
.fa-lemon-o:before {
  content: "\f094";
}
.fa-phone:before {
  content: "\f095";
}
.fa-square-o:before {
  content: "\f096";
}
.fa-bookmark-o:before {
  content: "\f097";
}
.fa-phone-square:before {
  content: "\f098";
}
.fa-twitter:before {
  content: "\f099";
}
.fa-facebook-f:before,
.fa-facebook:before {
  content: "\f09a";
}
.fa-github:before {
  content: "\f09b";
}
.fa-unlock:before {
  content: "\f09c";
}
.fa-credit-card:before {
  content: "\f09d";
}
.fa-feed:before,
.fa-rss:before {
  content: "\f09e";
}
.fa-hdd-o:before {
  content: "\f0a0";
}
.fa-bullhorn:before {
  content: "\f0a1";
}
.fa-bell:before {
  content: "\f0f3";
}
.fa-certificate:before {
  content: "\f0a3";
}
.fa-hand-o-right:before {
  content: "\f0a4";
}
.fa-hand-o-left:before {
  content: "\f0a5";
}
.fa-hand-o-up:before {
  content: "\f0a6";
}
.fa-hand-o-down:before {
  content: "\f0a7";
}
.fa-arrow-circle-left:before {
  content: "\f0a8";
}
.fa-arrow-circle-right:before {
  content: "\f0a9";
}
.fa-arrow-circle-up:before {
  content: "\f0aa";
}
.fa-arrow-circle-down:before {
  content: "\f0ab";
}
.fa-globe:before {
  content: "\f0ac";
}
.fa-wrench:before {
  content: "\f0ad";
}
.fa-tasks:before {
  content: "\f0ae";
}
.fa-filter:before {
  content: "\f0b0";
}
.fa-briefcase:before {
  content: "\f0b1";
}
.fa-arrows-alt:before {
  content: "\f0b2";
}
.fa-group:before,
.fa-users:before {
  content: "\f0c0";
}
.fa-chain:before,
.fa-link:before {
  content: "\f0c1";
}
.fa-cloud:before {
  content: "\f0c2";
}
.fa-flask:before {
  content: "\f0c3";
}
.fa-cut:before,
.fa-scissors:before {
  content: "\f0c4";
}
.fa-copy:before,
.fa-files-o:before {
  content: "\f0c5";
}
.fa-paperclip:before {
  content: "\f0c6";
}
.fa-save:before,
.fa-floppy-o:before {
  content: "\f0c7";
}
.fa-square:before {
  content: "\f0c8";
}
.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "\f0c9";
}
.fa-list-ul:before {
  content: "\f0ca";
}
.fa-list-ol:before {
  content: "\f0cb";
}
.fa-strikethrough:before {
  content: "\f0cc";
}
.fa-underline:before {
  content: "\f0cd";
}
.fa-table:before {
  content: "\f0ce";
}
.fa-magic:before {
  content: "\f0d0";
}
.fa-truck:before {
  content: "\f0d1";
}
.fa-pinterest:before {
  content: "\f0d2";
}
.fa-pinterest-square:before {
  content: "\f0d3";
}
.fa-google-plus-square:before {
  content: "\f0d4";
}
.fa-google-plus:before {
  content: "\f0d5";
}
.fa-money:before {
  content: "\f0d6";
}
.fa-caret-down:before {
  content: "\f0d7";
}
.fa-caret-up:before {
  content: "\f0d8";
}
.fa-caret-left:before {
  content: "\f0d9";
}
.fa-caret-right:before {
  content: "\f0da";
}
.fa-columns:before {
  content: "\f0db";
}
.fa-unsorted:before,
.fa-sort:before {
  content: "\f0dc";
}
.fa-sort-down:before,
.fa-sort-desc:before {
  content: "\f0dd";
}
.fa-sort-up:before,
.fa-sort-asc:before {
  content: "\f0de";
}
.fa-envelope:before {
  content: "\f0e0";
}
.fa-linkedin:before {
  content: "\f0e1";
}
.fa-rotate-left:before,
.fa-undo:before {
  content: "\f0e2";
}
.fa-legal:before,
.fa-gavel:before {
  content: "\f0e3";
}
.fa-dashboard:before,
.fa-tachometer:before {
  content: "\f0e4";
}
.fa-comment-o:before {
  content: "\f0e5";
}
.fa-comments-o:before {
  content: "\f0e6";
}
.fa-flash:before,
.fa-bolt:before {
  content: "\f0e7";
}
.fa-sitemap:before {
  content: "\f0e8";
}
.fa-umbrella:before {
  content: "\f0e9";
}
.fa-paste:before,
.fa-clipboard:before {
  content: "\f0ea";
}
.fa-lightbulb-o:before {
  content: "\f0eb";
}
.fa-exchange:before {
  content: "\f0ec";
}
.fa-cloud-download:before {
  content: "\f0ed";
}
.fa-cloud-upload:before {
  content: "\f0ee";
}
.fa-user-md:before {
  content: "\f0f0";
}
.fa-stethoscope:before {
  content: "\f0f1";
}
.fa-suitcase:before {
  content: "\f0f2";
}
.fa-bell-o:before {
  content: "\f0a2";
}
.fa-coffee:before {
  content: "\f0f4";
}
.fa-cutlery:before {
  content: "\f0f5";
}
.fa-file-text-o:before {
  content: "\f0f6";
}
.fa-building-o:before {
  content: "\f0f7";
}
.fa-hospital-o:before {
  content: "\f0f8";
}
.fa-ambulance:before {
  content: "\f0f9";
}
.fa-medkit:before {
  content: "\f0fa";
}
.fa-fighter-jet:before {
  content: "\f0fb";
}
.fa-beer:before {
  content: "\f0fc";
}
.fa-h-square:before {
  content: "\f0fd";
}
.fa-plus-square:before {
  content: "\f0fe";
}
.fa-angle-double-left:before {
  content: "\f100";
}
.fa-angle-double-right:before {
  content: "\f101";
}
.fa-angle-double-up:before {
  content: "\f102";
}
.fa-angle-double-down:before {
  content: "\f103";
}
.fa-angle-left:before {
  content: "\f104";
}
.fa-angle-right:before {
  content: "\f105";
}
.fa-angle-up:before {
  content: "\f106";
}
.fa-angle-down:before {
  content: "\f107";
}
.fa-desktop:before {
  content: "\f108";
}
.fa-laptop:before {
  content: "\f109";
}
.fa-tablet:before {
  content: "\f10a";
}
.fa-mobile-phone:before,
.fa-mobile:before {
  content: "\f10b";
}
.fa-circle-o:before {
  content: "\f10c";
}
.fa-quote-left:before {
  content: "\f10d";
}
.fa-quote-right:before {
  content: "\f10e";
}
.fa-spinner:before {
  content: "\f110";
}
.fa-circle:before {
  content: "\f111";
}
.fa-mail-reply:before,
.fa-reply:before {
  content: "\f112";
}
.fa-github-alt:before {
  content: "\f113";
}
.fa-folder-o:before {
  content: "\f114";
}
.fa-folder-open-o:before {
  content: "\f115";
}
.fa-smile-o:before {
  content: "\f118";
}
.fa-frown-o:before {
  content: "\f119";
}
.fa-meh-o:before {
  content: "\f11a";
}
.fa-gamepad:before {
  content: "\f11b";
}
.fa-keyboard-o:before {
  content: "\f11c";
}
.fa-flag-o:before {
  content: "\f11d";
}
.fa-flag-checkered:before {
  content: "\f11e";
}
.fa-terminal:before {
  content: "\f120";
}
.fa-code:before {
  content: "\f121";
}
.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "\f122";
}
.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "\f123";
}
.fa-location-arrow:before {
  content: "\f124";
}
.fa-crop:before {
  content: "\f125";
}
.fa-code-fork:before {
  content: "\f126";
}
.fa-unlink:before,
.fa-chain-broken:before {
  content: "\f127";
}
.fa-question:before {
  content: "\f128";
}
.fa-info:before {
  content: "\f129";
}
.fa-exclamation:before {
  content: "\f12a";
}
.fa-superscript:before {
  content: "\f12b";
}
.fa-subscript:before {
  content: "\f12c";
}
.fa-eraser:before {
  content: "\f12d";
}
.fa-puzzle-piece:before {
  content: "\f12e";
}
.fa-microphone:before {
  content: "\f130";
}
.fa-microphone-slash:before {
  content: "\f131";
}
.fa-shield:before {
  content: "\f132";
}
.fa-calendar-o:before {
  content: "\f133";
}
.fa-fire-extinguisher:before {
  content: "\f134";
}
.fa-rocket:before {
  content: "\f135";
}
.fa-maxcdn:before {
  content: "\f136";
}
.fa-chevron-circle-left:before {
  content: "\f137";
}
.fa-chevron-circle-right:before {
  content: "\f138";
}
.fa-chevron-circle-up:before {
  content: "\f139";
}
.fa-chevron-circle-down:before {
  content: "\f13a";
}
.fa-html5:before {
  content: "\f13b";
}
.fa-css3:before {
  content: "\f13c";
}
.fa-anchor:before {
  content: "\f13d";
}
.fa-unlock-alt:before {
  content: "\f13e";
}
.fa-bullseye:before {
  content: "\f140";
}
.fa-ellipsis-h:before {
  content: "\f141";
}
.fa-ellipsis-v:before {
  content: "\f142";
}
.fa-rss-square:before {
  content: "\f143";
}
.fa-play-circle:before {
  content: "\f144";
}
.fa-ticket:before {
  content: "\f145";
}
.fa-minus-square:before {
  content: "\f146";
}
.fa-minus-square-o:before {
  content: "\f147";
}
.fa-level-up:before {
  content: "\f148";
}
.fa-level-down:before {
  content: "\f149";
}
.fa-check-square:before {
  content: "\f14a";
}
.fa-pencil-square:before {
  content: "\f14b";
}
.fa-external-link-square:before {
  content: "\f14c";
}
.fa-share-square:before {
  content: "\f14d";
}
.fa-compass:before {
  content: "\f14e";
}
.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "\f150";
}
.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "\f151";
}
.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "\f152";
}
.fa-euro:before,
.fa-eur:before {
  content: "\f153";
}
.fa-gbp:before {
  content: "\f154";
}
.fa-dollar:before,
.fa-usd:before {
  content: "\f155";
}
.fa-rupee:before,
.fa-inr:before {
  content: "\f156";
}
.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "\f157";
}
.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "\f158";
}
.fa-won:before,
.fa-krw:before {
  content: "\f159";
}
.fa-bitcoin:before,
.fa-btc:before {
  content: "\f15a";
}
.fa-file:before {
  content: "\f15b";
}
.fa-file-text:before {
  content: "\f15c";
}
.fa-sort-alpha-asc:before {
  content: "\f15d";
}
.fa-sort-alpha-desc:before {
  content: "\f15e";
}
.fa-sort-amount-asc:before {
  content: "\f160";
}
.fa-sort-amount-desc:before {
  content: "\f161";
}
.fa-sort-numeric-asc:before {
  content: "\f162";
}
.fa-sort-numeric-desc:before {
  content: "\f163";
}
.fa-thumbs-up:before {
  content: "\f164";
}
.fa-thumbs-down:before {
  content: "\f165";
}
.fa-youtube-square:before {
  content: "\f166";
}
.fa-youtube:before {
  content: "\f167";
}
.fa-xing:before {
  content: "\f168";
}
.fa-xing-square:before {
  content: "\f169";
}
.fa-youtube-play:before {
  content: "\f16a";
}
.fa-dropbox:before {
  content: "\f16b";
}
.fa-stack-overflow:before {
  content: "\f16c";
}
.fa-instagram:before {
  content: "\f16d";
}
.fa-flickr:before {
  content: "\f16e";
}
.fa-adn:before {
  content: "\f170";
}
.fa-bitbucket:before {
  content: "\f171";
}
.fa-bitbucket-square:before {
  content: "\f172";
}
.fa-tumblr:before {
  content: "\f173";
}
.fa-tumblr-square:before {
  content: "\f174";
}
.fa-long-arrow-down:before {
  content: "\f175";
}
.fa-long-arrow-up:before {
  content: "\f176";
}
.fa-long-arrow-left:before {
  content: "\f177";
}
.fa-long-arrow-right:before {
  content: "\f178";
}
.fa-apple:before {
  content: "\f179";
}
.fa-windows:before {
  content: "\f17a";
}
.fa-android:before {
  content: "\f17b";
}
.fa-linux:before {
  content: "\f17c";
}
.fa-dribbble:before {
  content: "\f17d";
}
.fa-skype:before {
  content: "\f17e";
}
.fa-foursquare:before {
  content: "\f180";
}
.fa-trello:before {
  content: "\f181";
}
.fa-female:before {
  content: "\f182";
}
.fa-male:before {
  content: "\f183";
}
.fa-gittip:before,
.fa-gratipay:before {
  content: "\f184";
}
.fa-sun-o:before {
  content: "\f185";
}
.fa-moon-o:before {
  content: "\f186";
}
.fa-archive:before {
  content: "\f187";
}
.fa-bug:before {
  content: "\f188";
}
.fa-vk:before {
  content: "\f189";
}
.fa-weibo:before {
  content: "\f18a";
}
.fa-renren:before {
  content: "\f18b";
}
.fa-pagelines:before {
  content: "\f18c";
}
.fa-stack-exchange:before {
  content: "\f18d";
}
.fa-arrow-circle-o-right:before {
  content: "\f18e";
}
.fa-arrow-circle-o-left:before {
  content: "\f190";
}
.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "\f191";
}
.fa-dot-circle-o:before {
  content: "\f192";
}
.fa-wheelchair:before {
  content: "\f193";
}
.fa-vimeo-square:before {
  content: "\f194";
}
.fa-turkish-lira:before,
.fa-try:before {
  content: "\f195";
}
.fa-plus-square-o:before {
  content: "\f196";
}
.fa-space-shuttle:before {
  content: "\f197";
}
.fa-slack:before {
  content: "\f198";
}
.fa-envelope-square:before {
  content: "\f199";
}
.fa-wordpress:before {
  content: "\f19a";
}
.fa-openid:before {
  content: "\f19b";
}
.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "\f19c";
}
.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "\f19d";
}
.fa-yahoo:before {
  content: "\f19e";
}
.fa-google:before {
  content: "\f1a0";
}
.fa-reddit:before {
  content: "\f1a1";
}
.fa-reddit-square:before {
  content: "\f1a2";
}
.fa-stumbleupon-circle:before {
  content: "\f1a3";
}
.fa-stumbleupon:before {
  content: "\f1a4";
}
.fa-delicious:before {
  content: "\f1a5";
}
.fa-digg:before {
  content: "\f1a6";
}
.fa-pied-piper-pp:before {
  content: "\f1a7";
}
.fa-pied-piper-alt:before {
  content: "\f1a8";
}
.fa-drupal:before {
  content: "\f1a9";
}
.fa-joomla:before {
  content: "\f1aa";
}
.fa-language:before {
  content: "\f1ab";
}
.fa-fax:before {
  content: "\f1ac";
}
.fa-building:before {
  content: "\f1ad";
}
.fa-child:before {
  content: "\f1ae";
}
.fa-paw:before {
  content: "\f1b0";
}
.fa-spoon:before {
  content: "\f1b1";
}
.fa-cube:before {
  content: "\f1b2";
}
.fa-cubes:before {
  content: "\f1b3";
}
.fa-behance:before {
  content: "\f1b4";
}
.fa-behance-square:before {
  content: "\f1b5";
}
.fa-steam:before {
  content: "\f1b6";
}
.fa-steam-square:before {
  content: "\f1b7";
}
.fa-recycle:before {
  content: "\f1b8";
}
.fa-automobile:before,
.fa-car:before {
  content: "\f1b9";
}
.fa-cab:before,
.fa-taxi:before {
  content: "\f1ba";
}
.fa-tree:before {
  content: "\f1bb";
}
.fa-spotify:before {
  content: "\f1bc";
}
.fa-deviantart:before {
  content: "\f1bd";
}
.fa-soundcloud:before {
  content: "\f1be";
}
.fa-database:before {
  content: "\f1c0";
}
.fa-file-pdf-o:before {
  content: "\f1c1";
}
.fa-file-word-o:before {
  content: "\f1c2";
}
.fa-file-excel-o:before {
  content: "\f1c3";
}
.fa-file-powerpoint-o:before {
  content: "\f1c4";
}
.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "\f1c5";
}
.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "\f1c6";
}
.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "\f1c7";
}
.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "\f1c8";
}
.fa-file-code-o:before {
  content: "\f1c9";
}
.fa-vine:before {
  content: "\f1ca";
}
.fa-codepen:before {
  content: "\f1cb";
}
.fa-jsfiddle:before {
  content: "\f1cc";
}
.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "\f1cd";
}
.fa-circle-o-notch:before {
  content: "\f1ce";
}
.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
  content: "\f1d0";
}
.fa-ge:before,
.fa-empire:before {
  content: "\f1d1";
}
.fa-git-square:before {
  content: "\f1d2";
}
.fa-git:before {
  content: "\f1d3";
}
.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: "\f1d4";
}
.fa-tencent-weibo:before {
  content: "\f1d5";
}
.fa-qq:before {
  content: "\f1d6";
}
.fa-wechat:before,
.fa-weixin:before {
  content: "\f1d7";
}
.fa-send:before,
.fa-paper-plane:before {
  content: "\f1d8";
}
.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "\f1d9";
}
.fa-history:before {
  content: "\f1da";
}
.fa-circle-thin:before {
  content: "\f1db";
}
.fa-header:before {
  content: "\f1dc";
}
.fa-paragraph:before {
  content: "\f1dd";
}
.fa-sliders:before {
  content: "\f1de";
}
.fa-share-alt:before {
  content: "\f1e0";
}
.fa-share-alt-square:before {
  content: "\f1e1";
}
.fa-bomb:before {
  content: "\f1e2";
}
.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "\f1e3";
}
.fa-tty:before {
  content: "\f1e4";
}
.fa-binoculars:before {
  content: "\f1e5";
}
.fa-plug:before {
  content: "\f1e6";
}
.fa-slideshare:before {
  content: "\f1e7";
}
.fa-twitch:before {
  content: "\f1e8";
}
.fa-yelp:before {
  content: "\f1e9";
}
.fa-newspaper-o:before {
  content: "\f1ea";
}
.fa-wifi:before {
  content: "\f1eb";
}
.fa-calculator:before {
  content: "\f1ec";
}
.fa-paypal:before {
  content: "\f1ed";
}
.fa-google-wallet:before {
  content: "\f1ee";
}
.fa-cc-visa:before {
  content: "\f1f0";
}
.fa-cc-mastercard:before {
  content: "\f1f1";
}
.fa-cc-discover:before {
  content: "\f1f2";
}
.fa-cc-amex:before {
  content: "\f1f3";
}
.fa-cc-paypal:before {
  content: "\f1f4";
}
.fa-cc-stripe:before {
  content: "\f1f5";
}
.fa-bell-slash:before {
  content: "\f1f6";
}
.fa-bell-slash-o:before {
  content: "\f1f7";
}
.fa-trash:before {
  content: "\f1f8";
}
.fa-copyright:before {
  content: "\f1f9";
}
.fa-at:before {
  content: "\f1fa";
}
.fa-eyedropper:before {
  content: "\f1fb";
}
.fa-paint-brush:before {
  content: "\f1fc";
}
.fa-birthday-cake:before {
  content: "\f1fd";
}
.fa-area-chart:before {
  content: "\f1fe";
}
.fa-pie-chart:before {
  content: "\f200";
}
.fa-line-chart:before {
  content: "\f201";
}
.fa-lastfm:before {
  content: "\f202";
}
.fa-lastfm-square:before {
  content: "\f203";
}
.fa-toggle-off:before {
  content: "\f204";
}
.fa-toggle-on:before {
  content: "\f205";
}
.fa-bicycle:before {
  content: "\f206";
}
.fa-bus:before {
  content: "\f207";
}
.fa-ioxhost:before {
  content: "\f208";
}
.fa-angellist:before {
  content: "\f209";
}
.fa-cc:before {
  content: "\f20a";
}
.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "\f20b";
}
.fa-meanpath:before {
  content: "\f20c";
}
.fa-buysellads:before {
  content: "\f20d";
}
.fa-connectdevelop:before {
  content: "\f20e";
}
.fa-dashcube:before {
  content: "\f210";
}
.fa-forumbee:before {
  content: "\f211";
}
.fa-leanpub:before {
  content: "\f212";
}
.fa-sellsy:before {
  content: "\f213";
}
.fa-shirtsinbulk:before {
  content: "\f214";
}
.fa-simplybuilt:before {
  content: "\f215";
}
.fa-skyatlas:before {
  content: "\f216";
}
.fa-cart-plus:before {
  content: "\f217";
}
.fa-cart-arrow-down:before {
  content: "\f218";
}
.fa-diamond:before {
  content: "\f219";
}
.fa-ship:before {
  content: "\f21a";
}
.fa-user-secret:before {
  content: "\f21b";
}
.fa-motorcycle:before {
  content: "\f21c";
}
.fa-street-view:before {
  content: "\f21d";
}
.fa-heartbeat:before {
  content: "\f21e";
}
.fa-venus:before {
  content: "\f221";
}
.fa-mars:before {
  content: "\f222";
}
.fa-mercury:before {
  content: "\f223";
}
.fa-intersex:before,
.fa-transgender:before {
  content: "\f224";
}
.fa-transgender-alt:before {
  content: "\f225";
}
.fa-venus-double:before {
  content: "\f226";
}
.fa-mars-double:before {
  content: "\f227";
}
.fa-venus-mars:before {
  content: "\f228";
}
.fa-mars-stroke:before {
  content: "\f229";
}
.fa-mars-stroke-v:before {
  content: "\f22a";
}
.fa-mars-stroke-h:before {
  content: "\f22b";
}
.fa-neuter:before {
  content: "\f22c";
}
.fa-genderless:before {
  content: "\f22d";
}
.fa-facebook-official:before {
  content: "\f230";
}
.fa-pinterest-p:before {
  content: "\f231";
}
.fa-whatsapp:before {
  content: "\f232";
}
.fa-server:before {
  content: "\f233";
}
.fa-user-plus:before {
  content: "\f234";
}
.fa-user-times:before {
  content: "\f235";
}
.fa-hotel:before,
.fa-bed:before {
  content: "\f236";
}
.fa-viacoin:before {
  content: "\f237";
}
.fa-train:before {
  content: "\f238";
}
.fa-subway:before {
  content: "\f239";
}
.fa-medium:before {
  content: "\f23a";
}
.fa-yc:before,
.fa-y-combinator:before {
  content: "\f23b";
}
.fa-optin-monster:before {
  content: "\f23c";
}
.fa-opencart:before {
  content: "\f23d";
}
.fa-expeditedssl:before {
  content: "\f23e";
}
.fa-battery-4:before,
.fa-battery:before,
.fa-battery-full:before {
  content: "\f240";
}
.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: "\f241";
}
.fa-battery-2:before,
.fa-battery-half:before {
  content: "\f242";
}
.fa-battery-1:before,
.fa-battery-quarter:before {
  content: "\f243";
}
.fa-battery-0:before,
.fa-battery-empty:before {
  content: "\f244";
}
.fa-mouse-pointer:before {
  content: "\f245";
}
.fa-i-cursor:before {
  content: "\f246";
}
.fa-object-group:before {
  content: "\f247";
}
.fa-object-ungroup:before {
  content: "\f248";
}
.fa-sticky-note:before {
  content: "\f249";
}
.fa-sticky-note-o:before {
  content: "\f24a";
}
.fa-cc-jcb:before {
  content: "\f24b";
}
.fa-cc-diners-club:before {
  content: "\f24c";
}
.fa-clone:before {
  content: "\f24d";
}
.fa-balance-scale:before {
  content: "\f24e";
}
.fa-hourglass-o:before {
  content: "\f250";
}
.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: "\f251";
}
.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: "\f252";
}
.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: "\f253";
}
.fa-hourglass:before {
  content: "\f254";
}
.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: "\f255";
}
.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: "\f256";
}
.fa-hand-scissors-o:before {
  content: "\f257";
}
.fa-hand-lizard-o:before {
  content: "\f258";
}
.fa-hand-spock-o:before {
  content: "\f259";
}
.fa-hand-pointer-o:before {
  content: "\f25a";
}
.fa-hand-peace-o:before {
  content: "\f25b";
}
.fa-trademark:before {
  content: "\f25c";
}
.fa-registered:before {
  content: "\f25d";
}
.fa-creative-commons:before {
  content: "\f25e";
}
.fa-gg:before {
  content: "\f260";
}
.fa-gg-circle:before {
  content: "\f261";
}
.fa-tripadvisor:before {
  content: "\f262";
}
.fa-odnoklassniki:before {
  content: "\f263";
}
.fa-odnoklassniki-square:before {
  content: "\f264";
}
.fa-get-pocket:before {
  content: "\f265";
}
.fa-wikipedia-w:before {
  content: "\f266";
}
.fa-safari:before {
  content: "\f267";
}
.fa-chrome:before {
  content: "\f268";
}
.fa-firefox:before {
  content: "\f269";
}
.fa-opera:before {
  content: "\f26a";
}
.fa-internet-explorer:before {
  content: "\f26b";
}
.fa-tv:before,
.fa-television:before {
  content: "\f26c";
}
.fa-contao:before {
  content: "\f26d";
}
.fa-500px:before {
  content: "\f26e";
}
.fa-amazon:before {
  content: "\f270";
}
.fa-calendar-plus-o:before {
  content: "\f271";
}
.fa-calendar-minus-o:before {
  content: "\f272";
}
.fa-calendar-times-o:before {
  content: "\f273";
}
.fa-calendar-check-o:before {
  content: "\f274";
}
.fa-industry:before {
  content: "\f275";
}
.fa-map-pin:before {
  content: "\f276";
}
.fa-map-signs:before {
  content: "\f277";
}
.fa-map-o:before {
  content: "\f278";
}
.fa-map:before {
  content: "\f279";
}
.fa-commenting:before {
  content: "\f27a";
}
.fa-commenting-o:before {
  content: "\f27b";
}
.fa-houzz:before {
  content: "\f27c";
}
.fa-vimeo:before {
  content: "\f27d";
}
.fa-black-tie:before {
  content: "\f27e";
}
.fa-fonticons:before {
  content: "\f280";
}
.fa-reddit-alien:before {
  content: "\f281";
}
.fa-edge:before {
  content: "\f282";
}
.fa-credit-card-alt:before {
  content: "\f283";
}
.fa-codiepie:before {
  content: "\f284";
}
.fa-modx:before {
  content: "\f285";
}
.fa-fort-awesome:before {
  content: "\f286";
}
.fa-usb:before {
  content: "\f287";
}
.fa-product-hunt:before {
  content: "\f288";
}
.fa-mixcloud:before {
  content: "\f289";
}
.fa-scribd:before {
  content: "\f28a";
}
.fa-pause-circle:before {
  content: "\f28b";
}
.fa-pause-circle-o:before {
  content: "\f28c";
}
.fa-stop-circle:before {
  content: "\f28d";
}
.fa-stop-circle-o:before {
  content: "\f28e";
}
.fa-shopping-bag:before {
  content: "\f290";
}
.fa-shopping-basket:before {
  content: "\f291";
}
.fa-hashtag:before {
  content: "\f292";
}
.fa-bluetooth:before {
  content: "\f293";
}
.fa-bluetooth-b:before {
  content: "\f294";
}
.fa-percent:before {
  content: "\f295";
}
.fa-gitlab:before {
  content: "\f296";
}
.fa-wpbeginner:before {
  content: "\f297";
}
.fa-wpforms:before {
  content: "\f298";
}
.fa-envira:before {
  content: "\f299";
}
.fa-universal-access:before {
  content: "\f29a";
}
.fa-wheelchair-alt:before {
  content: "\f29b";
}
.fa-question-circle-o:before {
  content: "\f29c";
}
.fa-blind:before {
  content: "\f29d";
}
.fa-audio-description:before {
  content: "\f29e";
}
.fa-volume-control-phone:before {
  content: "\f2a0";
}
.fa-braille:before {
  content: "\f2a1";
}
.fa-assistive-listening-systems:before {
  content: "\f2a2";
}
.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
  content: "\f2a3";
}
.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
  content: "\f2a4";
}
.fa-glide:before {
  content: "\f2a5";
}
.fa-glide-g:before {
  content: "\f2a6";
}
.fa-signing:before,
.fa-sign-language:before {
  content: "\f2a7";
}
.fa-low-vision:before {
  content: "\f2a8";
}
.fa-viadeo:before {
  content: "\f2a9";
}
.fa-viadeo-square:before {
  content: "\f2aa";
}
.fa-snapchat:before {
  content: "\f2ab";
}
.fa-snapchat-ghost:before {
  content: "\f2ac";
}
.fa-snapchat-square:before {
  content: "\f2ad";
}
.fa-pied-piper:before {
  content: "\f2ae";
}
.fa-first-order:before {
  content: "\f2b0";
}
.fa-yoast:before {
  content: "\f2b1";
}
.fa-themeisle:before {
  content: "\f2b2";
}
.fa-google-plus-circle:before,
.fa-google-plus-official:before {
  content: "\f2b3";
}
.fa-fa:before,
.fa-font-awesome:before {
  content: "\f2b4";
}
.fa-handshake-o:before {
  content: "\f2b5";
}
.fa-envelope-open:before {
  content: "\f2b6";
}
.fa-envelope-open-o:before {
  content: "\f2b7";
}
.fa-linode:before {
  content: "\f2b8";
}
.fa-address-book:before {
  content: "\f2b9";
}
.fa-address-book-o:before {
  content: "\f2ba";
}
.fa-vcard:before,
.fa-address-card:before {
  content: "\f2bb";
}
.fa-vcard-o:before,
.fa-address-card-o:before {
  content: "\f2bc";
}
.fa-user-circle:before {
  content: "\f2bd";
}
.fa-user-circle-o:before {
  content: "\f2be";
}
.fa-user-o:before {
  content: "\f2c0";
}
.fa-id-badge:before {
  content: "\f2c1";
}
.fa-drivers-license:before,
.fa-id-card:before {
  content: "\f2c2";
}
.fa-drivers-license-o:before,
.fa-id-card-o:before {
  content: "\f2c3";
}
.fa-quora:before {
  content: "\f2c4";
}
.fa-free-code-camp:before {
  content: "\f2c5";
}
.fa-telegram:before {
  content: "\f2c6";
}
.fa-thermometer-4:before,
.fa-thermometer:before,
.fa-thermometer-full:before {
  content: "\f2c7";
}
.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
  content: "\f2c8";
}
.fa-thermometer-2:before,
.fa-thermometer-half:before {
  content: "\f2c9";
}
.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
  content: "\f2ca";
}
.fa-thermometer-0:before,
.fa-thermometer-empty:before {
  content: "\f2cb";
}
.fa-shower:before {
  content: "\f2cc";
}
.fa-bathtub:before,
.fa-s15:before,
.fa-bath:before {
  content: "\f2cd";
}
.fa-podcast:before {
  content: "\f2ce";
}
.fa-window-maximize:before {
  content: "\f2d0";
}
.fa-window-minimize:before {
  content: "\f2d1";
}
.fa-window-restore:before {
  content: "\f2d2";
}
.fa-times-rectangle:before,
.fa-window-close:before {
  content: "\f2d3";
}
.fa-times-rectangle-o:before,
.fa-window-close-o:before {
  content: "\f2d4";
}
.fa-bandcamp:before {
  content: "\f2d5";
}
.fa-grav:before {
  content: "\f2d6";
}
.fa-etsy:before {
  content: "\f2d7";
}
.fa-imdb:before {
  content: "\f2d8";
}
.fa-ravelry:before {
  content: "\f2d9";
}
.fa-eercast:before {
  content: "\f2da";
}
.fa-microchip:before {
  content: "\f2db";
}
.fa-snowflake-o:before {
  content: "\f2dc";
}
.fa-superpowers:before {
  content: "\f2dd";
}
.fa-wpexplorer:before {
  content: "\f2de";
}
.fa-meetup:before {
  content: "\f2e0";
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}
PK`x1\^i^b��(assets/css/unminified/themes/oceanwp.cssnu�[���/**
 * OceanWP YITH WooCommerce Wishlist CSS
 *
 * @author YITH
 * @package YITH WooCommerce Wishlist
 * @version 3.0.0
 */

/* === 12. WISHLIST BUTTONS === */

.woocommerce ul.products .product{
	position: relative;
}

/* === 27. FONTAWESOME ADJUSTMENTS === */

.heading-icon .fa-heart-o:before,
.yith-wcwl-icon.fa-heart-o:before{
	content: '\f004';
	font-weight: 400;
}

.yith-wcwl-share a i:before,
.wishlist_table .product-arrange i:before,
.wishlist-title i:before{
	font-family: FontAwesome;
}PK`x1\�6�j-assets/css/unminified/themes/twentytwenty.cssnu�[���/**
 * Twenty Twenty YITH WooCommerce Wishlist CSS
 *
 * @author YITH
 * @package YITH WooCommerce Wishlist
 * @version 3.0.0
 */

/* === 9. WISHLIST MODERN GRID / IMAGES GRID TEMPLATE === */

.wishlist_table.modern_grid li .item-details .item-details-wrapper{
    padding: 10px 15px;
}

.wishlist_table.modern_grid li .item-details h3{
    margin-top: 10px;
}

.wishlist_table.images_grid li .item-details table.item-details-table td.value input,
.wishlist_table.modern_grid li .item-details table.item-details-table td.value input{
    width: 100%;
    padding: 2px;
}

/* === 12. WISHLIST TITLE === */

.woocommerce .wishlist-title h2{
    margin-top: 0;
}

/* === 19. MANAGE WISHLISTS === */

.wishlist_table.modern_grid li {
    width: 50%;
    margin-left: 0;
}

.wishlist_manage_table.modern_grid li .item-wrapper{
    padding: 10px 15px;
}

.wishlist_manage_table.modern_grid li .wishlist-title-with-form h3{
    margin-top: 10px;
}

.wishlist_manage_table.modern_grid li .product-thumbnail img{
    display: inline-block;
}PK`x1\��S+assets/css/unminified/themes/storefront.cssnu�[���.yith-wcwl-icon.fa-heart-o:before,
.widget_yith-wcwl-items .heading-icon .fa-heart-o:before{
	content: '\f004';
	filter: grayscale(1);
}

.yith-wcwl-share .share-button a.facebook i:before{
	font-family: 'FontAwesome';
	content: '\f09a'
}

.yith-wcwl-share .share-button a.twitter i:before{
	font-family: 'FontAwesome';
	content: '\f099';
}

.yith-wcwl-share .share-button a.pinterest i:before{
	font-family: 'FontAwesome';
	content: '\f231';
}

.yith-wcwl-share .share-button a.email i:before{
	font-family: 'FontAwesome';
	content: '\f003';
}

.yith-wcwl-share .share-button a.whatsapp i:before{
	font-family: 'FontAwesome';
	content: '\f232';
}

.wishlist-title.wishlist-title-with-form .show-title-form .fa-pencil{
	font-family: 'FontAwesome';
	content: '\f040';
}PK`x1\S���
�
*assets/css/unminified/jquery.selectBox.cssnu�[���/* Dropdown control */
.selectBox-dropdown {
    min-width: 150px;
    position: relative;
    border: solid 1px #BBB;
    line-height: 1.5;
    text-decoration: none;
    text-align: left;
    color: #000;
    outline: none;
    vertical-align: middle;
    background: #F2F2F2;
    background: -moz-linear-gradient(top, #F8F8F8 1%, #E1E1E1 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(1%, #F8F8F8), color-stop(100%, #E1E1E1));
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#F8F8F8', endColorstr='#E1E1E1', GradientType=0);
    -moz-box-shadow: 0 1px 0 rgba(255, 255, 255, .75);
    -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, .75);
    box-shadow: 0 1px 0 rgba(255, 255, 255, .75);
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    display: inline-block;
    cursor: default;
}

.selectBox-dropdown:focus,
.selectBox-dropdown:focus .selectBox-arrow {
    border-color: #666;
}

.selectBox-dropdown.selectBox-menuShowing {
    -moz-border-radius-bottomleft: 0;
    -moz-border-radius-bottomright: 0;
    -webkit-border-bottom-left-radius: 0;
    -webkit-border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.selectBox-dropdown .selectBox-label {
    padding: 2px 8px;
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
}

.selectBox-dropdown .selectBox-arrow {
    position: absolute;
    top: 0;
    right: 0;
    width: 23px;
    height: 100%;
    background: url(../images/jquery.selectBox-arrow.gif) 50% center no-repeat;
    border-left: solid 1px #BBB;
}

/* Dropdown menu */
.selectBox-dropdown-menu {
    position: absolute;
    z-index: 99999;
    max-height: 200px;
    min-height: 1em;
    border: solid 1px #BBB; /* should be the same border width as .selectBox-dropdown */
    background: #FFF;
    -moz-box-shadow: 0 2px 6px rgba(0, 0, 0, .2);
    -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, .2);
    box-shadow: 0 2px 6px rgba(0, 0, 0, .2);
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/* Inline control */
.selectBox-inline {
    min-width: 150px;
    outline: none;
    border: solid 1px #BBB;
    background: #FFF;
    display: inline-block;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    overflow: auto;
}

.selectBox-inline:focus {
    border-color: #666;
}

/* Options */
.selectBox-options,
.selectBox-options LI,
.selectBox-options LI A {
    list-style: none;
    display: block;
    cursor: default;
    padding: 0;
    margin: 0;
}

.selectBox-options LI A {
    line-height: 1.5;
    padding: 0 .5em;
    white-space: nowrap;
    overflow: hidden;
    background: 6px center no-repeat;
}

.selectBox-options LI.selectBox-hover A {
    background-color: #EEE;
}

.selectBox-options LI.selectBox-disabled A {
    color: #888;
    background-color: transparent;
}

.selectBox-options LI.selectBox-selected A {
    background-color: #C8DEF4;
}

.selectBox-options .selectBox-optgroup {
    color: #666;
    background: #EEE;
    font-weight: bold;
    line-height: 1.5;
    padding: 0 .3em;
    white-space: nowrap;
}

/* Disabled state */
.selectBox.selectBox-disabled {
    color: #888 !important;
}

.selectBox-dropdown.selectBox-disabled .selectBox-arrow {
    opacity: .5;
    filter: alpha(opacity=50);
    border-color: #666;
}

.selectBox-inline.selectBox-disabled {
    color: #888 !important;
}

.selectBox-inline.selectBox-disabled .selectBox-options A {
    background-color: transparent !important;
}PK`x1\~{������assets/css/unminified/style.cssnu�[���/**
 * Main YITH WooCommerce Wishlist CSS
 *
 * @author YITH
 * @package YITH WooCommerce Wishlist
 * @version 3.0.0
 */

/**
 * Index:
 *
 * 1. SELECTBOX STYLE
 * 2. PRETTY PHOTO STYLE
 * 3. BLOCK STYLE
 * 4. POPUP ADD TO WISHLIST
 * 5. DROPDOWN ADD TO WISHLIST
 * 6. TOOLTIP
 * 7. POPUP MESSAGE
 * 8. WISHLIST TITLE FORM
 * 9. WISHLIST TABLE TEMPLATE
 * 10. WISHLIST MODERN GRID / IMAGES GRID TEMPLATE
 * 11. WISHLIST MOBILE
 * 12. WISHLIST BUTTONS
 * 13. WISHLIST TITLE
 * 14. REMOVE BUTTONS
 * 15. SHARE BUTTONS
 * 16. ASK AN ESTIMATE BUTTON
 * 17. WISHLIST FOOTER
 * 18. MOVE TO ANOTHER WISHLIST POPUP
 * 19. CREATE NEW WISHLIST
 * 20. MANAGE WISHLISTS
 * 21. MANAGE MOBILE WISHLISTS
 * 22. SEARCH WISHLIST
 * 23. AJAX LOADING GIF
 * 24. LISTS WIDGET
 * 25. ITEMS WIDGET
 * 26. RESPONSIVE
 */

/* === 1. SELECTBOX STYLE === */

.woocommerce a.selectBox{
    background: #ffffff;
    min-width: 100px;
    margin-right: 10px;
    color: inherit;
}

.woocommerce a.selectBox,
.woocommerce a.selectBox:hover{
    border-bottom: 1px solid #bbb!important;
}

.woocommerce a.selectBox:hover{
    color: inherit;
}

.woocommerce a.selectBox:focus{
    border: 1px solid #ccc;
}

.selectBox-dropdown .selectBox-label{
    vertical-align: middle;
    padding: 3px 8px;
}

.selectBox-dropdown .selectBox-arrow{
    border: none;
    background: url(../images/jquery.selectBox-arrow.png) center right no-repeat;
}

.selectBox-dropdown.selectBox-menuShowing .selectBox-arrow{
    background: url(../images/jquery.selectBox-arrow.png) center left no-repeat;
}

.selectBox-dropdown-menu{
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
    padding: 5px;
    font-size: 80%;
}

.selectBox-dropdown-menu li a{
    color: inherit;
    padding: 5px 8px;
    border-radius: 3px;
}

.selectBox-dropdown-menu a:hover{
    color: inherit;
    text-decoration: none;
}

select.selectBox.change-wishlist{
    max-width: 100px;
}

.selectBox.change-wishlist{
    width: auto!important;
}

.change-wishlist-selectBox-dropdown-menu{
    width: auto!important;
}

/* === 3. PRETTY PHOTO STYLE === */

.yith-wcwl-with-pretty-photo{
    overflow: hidden;
}

.yith-wcwl-with-pretty-photo .pp_content{
    height: auto!important;
}

/* === 3. BLOCK STYLE === */

.woocommerce .wishlist-fragment .blockUI.blockOverlay::before,
.woocommerce .yith-wcwl-popup-form .blockUI.blockOverlay::before{
    display: none;
}

/* === 4. POPUP ADD TO WISHLIST === */

.yith-wcwl-popup{
    display: none;
}

.yith-wcwl-popup-content h3{
    text-align: center;
    font-size: 1.5em;
}

.yith-wcwl-popup-content .heading-icon,
.yith-wcwl-popup-feedback .heading-icon{
    text-align: center;
    display: block;
    font-size: 70px;
    color: #333;
    margin-bottom: 15px;
}

.yith-wcwl-popup-content .popup-description{
    text-align: center;
    font-weight: 600;
    margin-bottom: 15px;
}

.yith-wcwl-popup-content .popup-description a.show-tab.active{
    cursor: inherit;
    color: inherit;
    pointer-events: none;
}

.yith-wcwl-popup-feedback p.feedback{
    margin-top: 1.5em;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
}

.yith-wcwl-popup-content label{
    display: block;
}

.yith-wcwl-popup-content select,
.yith-wcwl-popup-content input[type="text"] {
    padding: 10px 7px;
}

.yith-wcwl-popup-content .create{
    display: none;
}

.yith-wcwl-popup-content .yith-wcwl-second-row{
    display: none;
}

.yith-wcwl-popup-footer {
    margin: 15px 0;
}

.yith-wcwl-popup-footer .button.wishlist-submit{
    display: block;
    width: 100%;
    text-align: center;
}

.pp_pic_holder.pp_woocommerce.feedback{
    max-width: 450px!important;
}

.pp_pic_holder.pp_woocommerce.feedback .pp_content{
    width: auto!important;
}

.yith-wcwl-popup-feedback{
    margin-top: 2em;
    margin-bottom: 2em;
}

/* === 5. DROPDOWN ADD TO WISHLIST === */

.yith-wcwl-add-button.with-dropdown{
    position: relative;
    padding: 15px 0;
}

.yes-js .yith-wcwl-add-button ul.yith-wcwl-dropdown {
    display: none;
    list-style: none;
    margin-bottom: 0;
    padding: 5px 25px;
    border: 1px solid #cdcdcd;
    background: #fff;

    position: absolute;
    z-index: 15;
    top: calc(100% - 5px);

    min-width: 200px;
}

.yith-wcwl-add-button.show-dropdown ul.yith-wcwl-dropdown{
    display: block;
}

.yith-wcwl-add-button ul.yith-wcwl-dropdown li{
    padding: 15px;
    padding-left: 0;
    text-transform: uppercase;
    font-size: .8em;
}

.yith-wcwl-add-button ul.yith-wcwl-dropdown li a{
    font-size: 1em!important;
    color: inherit;
    box-shadow: none;
}

.yith-wcwl-add-button ul.yith-wcwl-dropdown li a:hover{
    color: initial;
}

.yith-wcwl-add-button ul.yith-wcwl-dropdown li:before{
    font-family: FontAwesome;
    content: '\f067';
    margin-right: 15px;
}

.yith-wcwl-add-button ul.yith-wcwl-dropdown li:not(:last-child){
    border-bottom: 1px solid #cdcdcd;
}

/* === 6. TOOLTIP ===  */

.yith-wcwl-add-to-wishlist .separator + [data-title]{
    display: inline-block;
}

.yith-wcwl-add-to-wishlist .with-tooltip {
    position: relative;
}

.yith-wcwl-tooltip{
    z-index: 10;
    padding: 5px 10px;
    border-radius: 5px;
    text-align: center;
    top: calc(100% + 5px);
    pointer-events: none;
    cursor: initial;
    font-size: .6875rem;
    line-height: normal;

    display: none;
}

.with-dropdown .yith-wcwl-tooltip{
    top: auto;
    bottom: calc(100% + 10px);
}

.with-tooltip .yith-wcwl-tooltip{
    position: absolute;
}

.with-tooltip .yith-wcwl-tooltip:before{
    content: '';
    display: block;
    position: absolute;
    top: -5px;
    left: calc(50% - 2px);
    width: 0;
    height: 0;

    background: transparent!important;
    border-left: 5px solid transparent!important;
    border-right: 5px solid transparent!important;
    border-bottom: 5px solid;
}

.with-dropdown .with-tooltip .yith-wcwl-tooltip:before{
    bottom: -5px;
    top: auto;

    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid;
    border-bottom: none;
}

/* === 7. POPUP MESSAGE === */

#yith-wcwl-popup-message {
    font-weight: 700;
    line-height: 50px;
    text-align: center;

    background: white;
    -webkit-box-shadow: 0 0 15px rgba(0,0,0,.3);
    -moz-box-shadow: 0 0 15px rgba(0,0,0,.3);
    box-shadow: 0 0 15px rgba(0,0,0,.3);

    position: fixed;
    top: 50%;
    left: 50%;
    padding: 7px 40px;
    z-index: 10000; /* Thanks WP -.- */
}

/* === 8. WISHLIST TITLE FORM === */

.wishlist-title{
    display: inline-block;
}

.wishlist-title h2{
    display: inline-block;
    padding: 5px;
}

.wishlist-title.wishlist-title-with-form h2:hover{
    background: #efefef;
}

.wishlist-title a.show-title-form{
    cursor: pointer;
    visibility: hidden;
}

.wishlist-title:hover a.show-title-form{
    visibility: visible;
}

.hidden-title-form {
    position: relative;
    margin: 25px 0 39px;
}

.yes-js .hidden-title-form{
    display: none;
}

.hidden-title-form .edit-title-buttons{
    position: absolute;
    right: 5px;
    top: calc(50% - 15px);
}

.hidden-title-form > input[type="text"] {
    padding-right: 65px;
    line-height: 1;
}

.hidden-title-form a{
    cursor: pointer;
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    vertical-align: middle;
    font-size: 1.3em;
}

.hidden-title-form a i{
    margin: 0;
    display: inline-block;
}

/* === 9. WISHLIST TABLE TEMPLATE === */

table.wishlist_table{
    font-size: 80%;
}

table.wishlist_table tr{
    position: relative;
}

table.wishlist_table thead th{
    border-top: 1px solid;
    padding: 16px 12px;
}

table.wishlist_table tbody td{
    padding: 16px 12px;
}

table.wishlist_table thead th,
table.wishlist_table tbody td{
    border-color: #e7e7e7;
}

table.wishlist_table tbody td.wishlist-empty,
p.wishlist-empty{
    text-align: center;
    margin: 100px 0;
}

.wishlist_table tr td,
.wishlist_table tr th.wishlist-delete,
.wishlist_table tr th.product-checkbox {
    text-align: center;
}

.wishlist_table tr th.product-checkbox {
    vertical-align: middle;
    width: 40px;
}

.wishlist_table tr th.product-remove {
    vertical-align: middle;
    width: 40px;
}

.wishlist_table tr th.product-thumbnail{
    width: 80px;
}

.wishlist_table tr td.product-thumbnail,
.wishlist_table tr td.product-name,
.wishlist_table tr td.wishlist-name,
.wishlist_table tr td.wishlist-privacy,
.wishlist_table tfoot td {
    text-align: left;
}

.wishlist_table tr td.product-remove {
    padding: 16px 0
}

.wishlist_table tr td.product-thumbnail a {
    display: block;
    border: none;
    max-width: 80px;
}

.wishlist_table tr td.product-thumbnail a img {
    width: 100%;
}

.wishlist_table tr td.product-arrange{
    cursor: grab;
}

.wishlist_table tr td.product-arrange:active{
    cursor: grabbing;
}

.wishlist_table .product-stock-status span.wishlist-in-stock {
    color: #297E29;
}

.wishlist_table .product-stock-status span.wishlist-out-of-stock {
    color: #F00;
}

.wishlist_table .product-add-to-cart span.dateadded{
    display: block;
}

.wishlist_table .product-add-to-cart a {
    display: table!important;
    margin: 0 auto 5px !important;
    text-align: center;
}

.wishlist_table .product-add-to-cart a.button {
    padding: 6px 25px !important;
}

.wishlist_table .product-add-to-cart a > img{
    display: inline;
    max-width: 2em;
}

.wishlist_table .price-variation{
    display: block;
}

.wishlist_table .price-variation.decrease .variation-rate{
    color: #F00;
}

.wishlist_table .price-variation .old-price{
    display: block;
}

.wishlist_table a.button {
    white-space: normal;
    margin-bottom: 5px!important;
}

/* === 10. WISHLIST MODERN GRID / IMAGES GRID TEMPLATE === */

.wishlist_table.modern_grid{
    list-style: none;
    margin: 0 -7px 35px;
    font-size: 0;
}

.wishlist_table.modern_grid li{
    display: inline-block;
    vertical-align: top;
    width: 33.33%;
    padding: 0 7px;
    margin-bottom: 15px;
}

.wishlist_table.modern_grid li.wishlist-empty,
.wishlist_table.images_grid li.wishlist-empty{
    width: 100%;
    font-size: 1rem;
    text-align: center;
    margin: 50px 0;
}

.wishlist_table.images_grid li.show{
    z-index: 10;
}

.wishlist_table.images_grid.products li.product.first,
.wishlist_table.images_grid.products li.product.last {
    clear: none;
}

.wishlist_table.images_grid.columns-2.products li.product:nth-of-type(2n+1),
.wishlist_table.images_grid.columns-3.products li.product:nth-of-type(3n+1),
.wishlist_table.images_grid.columns-4.products li.product:nth-of-type(4n+1),
.wishlist_table.images_grid.columns-5.products li.product:nth-of-type(5n+1),
.wishlist_table.images_grid.columns-6.products li.product:nth-of-type(6n+1){
    clear: both;
}

.wishlist_table.modern_grid li .item-wrapper{
    display: table;
    margin: 0 -7px;
}

.wishlist_table.modern_grid li .product-thumbnail,
.wishlist_table.modern_grid li .item-details{
    display: table-cell;
    vertical-align: top;
    box-sizing: border-box;
    width: 50%;
    padding: 0 7px;
    font-size: 1rem;
}

.wishlist_table.modern_grid li .product-thumbnail,
.wishlist_table.images_grid li .product-thumbnail{
    position: relative;
}

.wishlist_table.modern_grid li .product-thumbnail .product-checkbox,
.wishlist_table.images_grid li .product-thumbnail .product-checkbox{
    position: absolute;
    top: 7px;
    left: 15px;
    z-index: 2;
}

.wishlist_table.modern_grid li .product-thumbnail > a{
    display: block;
}

.wishlist_table.modern_grid li .product-thumbnail > a img{
    display: block;
}

.wishlist_table.images_grid li.show .product-thumbnail > a img,
.wishlist_table.images_grid li:hover .product-thumbnail > a img{
    filter: brightness(1.1);
}

.wishlist_table.modern_grid.wishlist_view li .item-details{
    position: relative;
}

.wishlist_table.modern_grid.wishlist_view li .item-details:before{
    content: '';
    display: block;
    top: 0;
    bottom: 0;
    left: 7px;
    background: #ffffff;
    position: absolute;
    right: 7px;
    z-index: 0;
    border: 1px solid #cdcdcd;
}

.wishlist_table.images_grid li .item-details{
    display: none;
    position: absolute;
    z-index: 2;
    bottom: 15px;
    left: calc(50% - 150px);
    width: 300px;
    background: #fff;
    padding: 10px 20px;
    -webkit-box-shadow: 0 0 15px rgba(0,0,0,.3);
    -moz-box-shadow: 0 0 15px rgba(0,0,0,.3);
    box-shadow: 0 0 15px rgba(0,0,0,.3);
}

.wishlist_table.images_grid li.show .item-details{
    display: block;
}

.wishlist_table.modern_grid li .item-details .item-details-wrapper{
    padding: 15px 20px;
    line-height: normal;
    position: relative;
}

.wishlist_table.images_grid li .item-details a.close{
    position: absolute;
    top: 10px;
    right: 20px;
}

.wishlist_table.modern_grid li .item-details h3,
.wishlist_table.images_grid li .item-details h3,
.wishlist_table.mobile li .item-details h3{
    margin-bottom: 7px;
}

.wishlist_table.modern_grid li .item-details table.item-details-table,
.wishlist_table.images_grid li .item-details table.item-details-table,
.wishlist_table.mobile li .item-details table.item-details-table,
.wishlist_table.mobile li table.additional-info{
    border: none;
    margin-bottom: 7px;
}

.wishlist_table.modern_grid li .item-details table.item-details-table td,
.wishlist_table.images_grid li .item-details table.item-details-table td,
.wishlist_table.mobile li .item-details table.item-details-table td,
.wishlist_table.mobile li table.additional-info td{
    border: none;
    font-size: .7em;
    padding: 3px;
    vertical-align: top;
}

.wishlist_table.modern_grid li .item-details table.item-details-table td.label,
.wishlist_table.images_grid li .item-details table.item-details-table td.label,
.wishlist_table.mobile li .item-details table.item-details-table td.label,
.wishlist_table.mobile li table.additional-info td.label{
    text-align: left;
    font-weight: 700;
    width: 40%;
}

.wishlist_table.modern_grid li .item-details table.item-details-table td.value,
.wishlist_table.images_grid li .item-details table.item-details-table td.value,
.wishlist_table.mobile li .item-details table.item-details-table td.value,
.wishlist_table.mobile li table.additional-info td.value{
    text-align: right;
}

.wishlist_table.modern_grid li .item-details table.item-details-table td.value a.selectBox{
    margin-right: 0;
}

.wishlist_table.modern_grid li .item-details table.item-details-table td.value input,
.wishlist_table.images_grid li .item-details table.item-details-table td.value input,
.wishlist_table.mobile li table.additional-info td.value input{
    width: auto;
}

.wishlist_table.modern_grid li .item-details .product-add-to-cart,
.wishlist_table.images_grid li .item-details .product-add-to-cart{
    text-align: center;
    margin-bottom: 7px;
}

.wishlist_table.modern_grid li .item-details .move-to-another-wishlist,
.wishlist_table.images_grid li .item-details .move-to-another-wishlist{
    text-align: center;
    margin-bottom: 7px;
}

.wishlist_table.modern_grid li .item-details .product-remove,
.wishlist_table.images_grid li .item-details .product-remove{
    text-align: right;
}

.wishlist_table.modern_grid li .item-details .product-remove a,
.wishlist_table.images_grid li .item-details .product-remove a{
    border: none;
    border-radius: 0;
    display: inline-block;
}

/* === 11. WISHLIST MOBILE === */

.wishlist_table.mobile {
    list-style: none;
    margin-left: 0;
}

.wishlist_table.mobile li{
    margin-bottom: 7px;
}

.wishlist_table.mobile li .product-checkbox{
    display: inline-block;
    width: 20px;
    vertical-align: top;
}

.wishlist_table.mobile li .item-wrapper{
    display: inline-block;
    width: calc(100% - 25px);
    vertical-align: top;
    margin-bottom: 7px;
}

.wishlist_table.wishlist_manage_table.mobile li.wishlist-empty{
    text-align: center;
}

.wishlist_table.wishlist_manage_table.mobile li .item-wrapper{
    width: 100%;
}

.wishlist_table.mobile li .item-wrapper .product-thumbnail{
    display: inline-block;
    max-width: 60px;
    margin-right: 10px;
}

.wishlist_table.mobile li .item-wrapper .item-details{
    display: inline-block;
    width: calc(100% - 80px);
    vertical-align: top;
}

.wishlist_table.mobile.with-checkbox li .additional-info-wrapper {
    padding-left: 20px;
}

.wishlist_table.mobile li .additional-info-wrapper .product-add-to-cart,
.wishlist_table.mobile li .additional-info-wrapper .move-to-another-wishlist{
    text-align: center;
    margin-bottom: 7px;
}

.wishlist_table.mobile li .additional-info-wrapper .product-remove{
    text-align: right;
}

/* === 12. WISHLIST BUTTONS === */

a.add_to_wishlist{
    cursor: pointer;
}

.yith-wcwl-add-to-wishlist .feedback .yith-wcwl-icon{
    margin-right: 5px;
}

.yith-wcwl-add-to-wishlist a.add_to_wishlist > img,
.yith-wcwl-add-to-wishlist a.move_to_another_wishlist > img,
.yith-wcwl-add-to-wishlist a.delete_item > img{
    max-width: 32px;
    display: inline-block;
    margin-right: 10px;
}

a.add_to_wishlist + a.view-wishlist,
a.delete_item + a.view-wishlist{
    margin-left: 15px;
}

.summary .single_add_to_wishlist.button,
div.product .woocommerce-price-and-add .single_add_to_wishlist.button {
    margin: 0;
}

.wishlist_table .add_to_cart.button{
    padding: 7px 12px;
    line-height: normal;
}

.yith-wcwl-add-to-wishlist {
    margin-top: 10px;
}

.yith-wcwl-add-button > a i,
.wishlist_table .add_to_cart.button i,
.wishlist_table .ask-an-estimate-button i,
.wishlist-title a.show-title-form i,
.hidden-title-form button i,
.yith-wcwl-wishlist-new button i,
.wishlist_manage_table tfoot button.submit-wishlist-changes i,
.wishlist_manage_table tfoot a.create-new-wishlist i,
.yith-wcwl-wishlist-search-form button.wishlist-search-button i{
    margin-right: 10px;
}

.wishlist_table .add_to_cart.button,
.yith-wcwl-add-button a.add_to_wishlist,
.yith-wcwl-popup-button a.add_to_wishlist,
.wishlist_table a.ask-an-estimate-button,
.wishlist-title a.show-title-form,
.hidden-title-form a.hide-title-form,
.woocommerce .yith-wcwl-wishlist-new button,
.wishlist_manage_table a.create-new-wishlist,
.wishlist_manage_table button.submit-wishlist-changes,
.yith-wcwl-wishlist-search-form button.wishlist-search-button{
    margin: 0;
    box-shadow: none;
    text-shadow: none;
}

.add-to-wishlist-before_image .yith-wcwl-add-to-wishlist {
    position: absolute;
    z-index: 10;
    margin: 0;
    top: 10px;
    left: 10px;
}

.add-to-wishlist-before_image .yith-wcwl-add-to-wishlist .with-dropdown {
    padding: 0;
}

.add-to-wishlist-before_image .yith-wcwl-add-to-wishlist .add_to_wishlist,
.add-to-wishlist-before_image .yith-wcwl-add-to-wishlist .disabled_item,
.add-to-wishlist-before_image .yith-wcwl-add-to-wishlist .open-pretty-photo {
    font-size: 0;
    background: none;
}

.add-to-wishlist-before_image .yith-wcwl-add-to-wishlist .delete_item,
.add-to-wishlist-before_image .yith-wcwl-add-to-wishlist .move_to_another_wishlist {
    font-size: 0;
}

.add-to-wishlist-before_image .yith-wcwl-add-to-wishlist .feedback {
    display: none;
}

.add-to-wishlist-before_image .yith-wcwl-add-to-wishlist .feedback + a {
    font-size: 0;
    background: none;
}

.add-to-wishlist-before_image .yith-wcwl-add-to-wishlist i{
    font-size: 1.6rem;
    margin: 0;
}

.add-to-wishlist-before_image .yith-wcwl-add-to-wishlist img{
    margin: 0;
}

/* === 13. WISHLIST TITLE === */

.woocommerce .wishlist-title{
    margin-bottom: 30px;
}

.woocommerce .wishlist-title h2{
    vertical-align: middle;
    margin-bottom: 0;
}

.woocommerce .hidden-title-form button{
    padding: 7px 24px;
    vertical-align: middle;
    border: none;
    position: relative;
}

.woocommerce .hidden-title-form button:active{
    top: 1px;
}

.woocommerce .back-to-all-wishlists{
    margin-bottom: 20px;
}

/* === 14. REMOVE BUTTONS === */

.woocommerce #content table.wishlist_table.cart a.remove{
    color: #c3c3c3;
    margin: 0 auto;
}

.woocommerce #content table.wishlist_table.cart a.remove:hover{
    background-color: #c3c3c3;
    color: #fff;
}

/* === 15. SHARE BUTTONS === */

.yith-wcwl-share{
    margin-bottom: 35px;
}

.yith-wcwl-share h4.yith-wcwl-share-title{
    margin: 10px 0;
}

.yith-wcwl-share ul {
    margin: 5px 0;
    padding: 0;
}

.yith-wcwl-share ul li,
.entry-content .yith-wcwl-share ul li {
    display: inline-block;
    margin-left: 0;
    margin-right: 0;
}

.yith-wcwl-share li a {
    color: #fff;
    text-align: center;
    text-decoration: none;
    line-height: 1;
    padding: 5px;
    display: block;
    border: none;
    min-width: 26px;
    min-height: 26px;
}

.yith-wcwl-share li a:hover{
    color: #fff;
}

.yith-wcwl-share li a > img{
    max-width: 1em;
}

.copy-trigger {
    cursor: pointer;
}

/* === 16. ASK AN ESTIMATE BUTTON === */

.woocommerce .ask-an-estimate-button > img{
    max-width: 1em;
    display: inline;
    margin-right: 5px;
}

#ask_an_estimate_popup{
    display: none;
}

.wishlist-ask-an-estimate-popup .ask-an-estimate-button-popup{
    width: 100%;
}

.wishlist-ask-an-estimate-popup .woocommerce-error{
    margin-bottom: 0;
}

.wishlist-ask-an-estimate-popup #additional_notes{
    min-height: 150px;
}

.ask-an-estimate-confirmation{
    padding: 0 30px;
    text-align: center;
}

/* === 17. WISHLIST FOOTER === */

.yith_wcwl_wishlist_footer > div {
    margin-bottom: 15px;
}

.yith_wcwl_wishlist_footer .yith_wcwl_wishlist_bulk_action {
    float: left;
}

.yith_wcwl_wishlist_footer .yith_wcwl_wishlist_bulk_action label {
    display: inline-block;
    margin-right: 10px;
}

.yith_wcwl_wishlist_footer .yith_wcwl_wishlist_bulk_action #bulk_actions{
    min-width: 250px;
}

.yith_wcwl_wishlist_footer .yith_wcwl_wishlist_bulk_action input[type="submit"]{
    margin: 0;
    margin-left: 10px;
}

.yith_wcwl_wishlist_footer .yith_wcwl_wishlist_update {
    float: right;
}

.yith_wcwl_wishlist_footer .yith-wcwl-share {
    float: left;
    clear: both;
}

.yith_wcwl_wishlist_footer .yith_wcwl_footer_additional_action {
    float: right;
}

.yith_wcwl_wishlist_footer .yith_wcwl_footer_additional_action > *{
    vertical-align: middle;
}

.yith_wcwl_wishlist_update + .yith_wcwl_footer_additional_action {
    clear: both;
}

.wishlist-page-links {
    clear: both;
}

/* === 18. MOVE TO ANOTHER WISHLIST POPUP === */

#move_to_another_wishlist{
    display: none;
}

/* === 19. CREATE NEW WISHLIST === */

.yith-wcwl-wishlist-new{
    padding: 20px 0;
}

.yith-wcwl-popup-content .yith-wcwl-wishlist-new{
    padding: 0;
}

.yith-wcwl-wishlist-new .wishlist-name{
    display: inline-block;
}

.yith-wcwl-wishlist-new .wishlist-privacy-radio label{
    display: block
}

.yith-wcwl-popup-content .create-wishlist-button{
    margin-top: 15px;
    width: 100%;
}

#create_new_wishlist{
    display: none;
}

/* === 20. MANAGE WISHLISTS === */

.wishlist_manage_table select{
    vertical-align: middle;
    margin-right: 10px;
}

.wishlist_manage_table td.wishlist-name .wishlist-title{
    margin-bottom: 0;
}

.wishlist_manage_table td.wishlist-name .wishlist-title .show-title-form{
    display: inline-block;
    padding: 0;
    border: none;
    background: none;
    top: 0;
    margin: 0;
}

.wishlist_manage_table td.wishlist-name a.show-title-form i{
    padding: 5px;
    margin: 0;
}

.wishlist_manage_table td.wishlist-name:hover a.show-title-form{
    visibility: visible;
}

.wishlist_manage_table td.wishlist-name .hidden-title-form{
    margin: 0!important;
    width: 100%;
}

.wishlist_manage_table td.wishlist-name .hidden-title-form input[type="text"]{
    width: 100%;
    min-width: 0;
}

.wishlist_manage_table td.wishlist-name .hidden-title-form{
    position: relative;
}

table.wishlist_manage_table tfoot td{
    text-align: right;
    padding: 24px 12px;
}

.wishlist_manage_table tfoot button.submit-wishlist-changes{
    padding: 7px 24px;
    vertical-align: middle;
    border: 1px solid;
    border-radius: 3px;
    position: relative;
    line-height: normal;
}

.wishlist_manage_table tfoot button.submit-wishlist-changes:active{
    top: 1px;
}

.wishlist_manage_table tfoot a.create-new-wishlist{
    vertical-align: middle;
    line-height: normal;
    padding: 7px 24px;
}

.wishlist_manage_table.modern_grid li.wishlist-empty{
    margin: 50px 0;
}

.wishlist_manage_table.modern_grid li .item-wrapper{
    display: block;
    margin: 0;
    padding: 40px 50px;

    background: #fff;
    border: 1px solid #cdcdcd;
}

.wishlist_manage_table.modern_grid li .product-thumbnail,
.wishlist_manage_table.modern_grid li .item-details {
    display: block;
    width: 100%;
    padding: 0;
}

.wishlist_manage_table.modern_grid li .item-details .hidden-title-form{
    width: 100%;
}

.wishlist_manage_table.modern_grid li .product-thumbnail .placeholder-item.empty-box{
    display: flex;
    background: #f2f2f2;
    min-height: 400px;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.wishlist_manage_table.modern_grid li .product-thumbnail .placeholder-item.empty-box p{
    font-size: 1em;
    line-height: 1.5em;
    font-weight: 600;
}

.wishlist_manage_table.modern_grid li .product-thumbnail img:first-child{
    width: 100%;
    margin-bottom: 15px;
}

.wishlist_manage_table.modern_grid li .product-thumbnail img{
    width: calc(50% - 8px);
}

.wishlist_manage_table.modern_grid li .product-thumbnail img:nth-child(3){
    margin-left: 15px;
}

.wishlist_manage_table.modern_grid li .wishlist-title-with-form{
    display: block;
}

.wishlist_manage_table.modern_grid li .wishlist-title-with-form h3{
    display: inline-block;
}

.wishlist_manage_table.modern_grid li .wishlist-title-with-form .show-title-form,
.wishlist_manage_table.modern_grid li .wishlist-title-with-form .show-title-form:hover{
    visibility: visible;
    float: right;
    margin: 0;
    background: none;
    color: inherit;
}

.wishlist_manage_table.modern_grid li .wishlist-title-with-form .show-title-form i{
    margin: 0;
}

.wishlist_manage_table.modern_grid li .hidden-title-form{
    margin-top: 0!important;
}

.wishlist_manage_table.modern_grid li .hidden-title-form input[type="text"]{
    width: 100%;
    min-width: 0;
}

/* === 21. MANAGE MOBILE WISHLISTS === */
.wishlist_manage_table.mobile li{
    margin-bottom: 30px;
}

.wishlist_manage_table.mobile li .item-wrapper .item-details{
    width: 100%;
}

.wishlist_manage_table.mobile li .item-details .hidden-title-form{
    position: relative;
}

.wishlist_manage_table.mobile li .item-details .hidden-title-form input[type="text"]{
    width: 100%;
}

.wishlist_manage_table.mobile li .item-wrapper .item-details .wishlist-title{
    display: block;
    border-bottom: 1px solid #cdcdcd;
    position: relative;
}

.wishlist_manage_table.mobile li .item-wrapper .item-details .wishlist-title-with-form a.show-title-form{
    position: absolute;
    right: 0;
    top: 0;
    visibility: visible;
}

.wishlist_manage_table.mobile li .item-wrapper .item-details .wishlist-title-with-form a.show-title-form i{
    margin-right: 0;
}

.wishlist_manage_table.mobile li .item-details table.item-details-table td.value a.selectBox{
    margin-right: 0;
}

.wishlist_manage_table.mobile li .item-details table.item-details-table td.value a.wishlist-download{
    float: left;
}

/* === 22. SEARCH WISHLIST === */

.yith-wcwl-wishlist-search-form{
    text-align: center;
    padding: 20px 0;
}

.yith-wcwl-wishlist-search-form #wishlist_search{
    display: inline-block;
    max-width: 300px;
    vertical-align: middle;
}

.yith-wcwl-wishlist-search-form button.wishlist-search-button{
    display: inline-block;
    padding: 7px 24px;
    vertical-align: middle;
    border: 1px solid;
    border-radius: 3px;
    position: relative;
    line-height: normal;
}

.yith-wcwl-wishlist-search-form button.wishlist-search-button i{
    margin: 0;
}

.yith-wcwl-wishlist-search-form button.wishlist-search-button:active{
    top: 1px;
}

.yith-wcwl-search-results .wishlist-owner{
    text-align: left;
}

.yith-wcwl-search-results .wishlist-owner .thumb{
    display: inline-block;
    margin-right: 15px;
}

/* === 23. AJAX LOADING GIF === */

.yith-wcwl-add-to-wishlist .ajax-loading {
    box-shadow: none !important;
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    display: inline !important;
    margin-left: 5px;
    vertical-align: middle;
    visibility: hidden;
    width: 16px !important;
    height: 16px !important;
}

/* === 24. LISTS WIDGET === */

.elementor-widget-wp-widget-yith-wcwl-lists ul.dropdown li,
.widget_yith-wcwl-lists ul.dropdown li{
    padding: 0;
}

.elementor-widget-wp-widget-yith-wcwl-lists ul.dropdown > li a,
.elementor-widget-wp-widget-yith-wcwl-lists ul.dropdown ul.lists > li a,
.widget_yith-wcwl-lists ul.dropdown > li a,
.widget_yith-wcwl-lists ul.dropdown ul.lists > li a{
    display: block;
    padding: 5px 15px;
}

.elementor-widget-wp-widget-yith-wcwl-lists ul.dropdown ul.lists > li a,
.widget_yith-wcwl-lists ul.dropdown ul.lists > li a{
    padding: 5px 25px;
}

.elementor-widget-wp-widget-yith-wcwl-lists ul.dropdown > li.lists-section,
.widget_yith-wcwl-lists ul.dropdown > li.lists-section{
    border-bottom: 1px solid #e7e7e7;
}

.elementor-widget-wp-widget-yith-wcwl-lists ul.dropdown ul.lists,
.widget_yith-wcwl-lists ul.dropdown ul.lists{
    margin: 0;
}

/* === 25. ITEMS WIDGET === */

.elementor-widget-wp-widget-yith-wcwl-items .mini,
.widget_yith-wcwl-items .mini{
    position: relative;
}

.elementor-widget-wp-widget-yith-wcwl-items .heading,
.widget_yith-wcwl-items .heading {
    text-align: center;
    cursor: pointer;
}

.elementor-widget-wp-widget-yith-wcwl-items .mini .heading,
.widget_yith-wcwl-items .mini .heading{
    display: inline-block;
}

.elementor-widget-wp-widget-yith-wcwl-items .heading a,
.widget_yith-wcwl-items .heading a {
    color: inherit;
}

.elementor-widget-wp-widget-yith-wcwl-items .extended .heading .items-counter,
.widget_yith-wcwl-items .extended .heading .items-counter{
    position: relative;
}

.elementor-widget-wp-widget-yith-wcwl-items .extended .heading .items-counter i,
.widget_yith-wcwl-items .extended .heading .items-counter i{
    font-size: 70px;
    position: relative;
    margin-bottom: 10px;
}

.elementor-widget-wp-widget-yith-wcwl-items .mini .heading .items-counter i,
.widget_yith-wcwl-items .mini .heading .items-counter i{
    font-size: 30px;
}

.elementor-widget-wp-widget-yith-wcwl-items .extended .heading .items-counter .items-count,
.widget_yith-wcwl-items .extended .heading .items-counter .items-count{
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    top: calc(50% - 20px);

    font-size: 1rem;
}

.elementor-widget-wp-widget-yith-wcwl-items .mini .heading .items-counter .items-count,
.widget_yith-wcwl-items .mini .heading .items-counter .items-count{
    font-size: 1rem;
}

.elementor-widget-wp-widget-yith-wcwl-items .extended .heading h3:after,
.widget_yith-wcwl-items .extended .heading h3:after{
    content: '';
    display: block;

    max-width: 80px;
    border-bottom: 1px solid #cdcdcd;
    margin: 10px auto;
}

.elementor-widget-wp-widget-yith-wcwl-items .mini .list,
.widget_yith-wcwl-items .mini .list{
    position: absolute;
    z-index: 1;
    left: 0;
    background: #fff;
    padding: 25px 40px;
    display: none;

    -webkit-box-shadow: 0 0 15px rgba(0,0,0,.3);
    -moz-box-shadow: 0 0 15px rgba(0,0,0,.3);
    box-shadow: 0 0 15px rgba(0,0,0,.3);
}

.elementor-widget-wp-widget-yith-wcwl-items .mini:hover .list,
.widget_yith-wcwl-items .mini:hover .list{
    display: block;
}

.elementor-widget-wp-widget-yith-wcwl-items ul.product_list_widget,
.widget_yith-wcwl-items ul.product_list_widget{
    margin-bottom: 40px!important;
}

.elementor-widget-wp-widget-yith-wcwl-items .mini ul.product_list_widget,
.widget_yith-wcwl-items .mini ul.product_list_widget{
    max-height: 30vh;
    overflow-y: auto;
}

.elementor-widget-wp-widget-yith-wcwl-items .mini ul.product_list_widget::-webkit-scrollbar,
.widget_yith-wcwl-items ul.product_list_widget::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 7px;
}

.elementor-widget-wp-widget-yith-wcwl-items .mini ul.product_list_widget::-webkit-scrollbar-thumb,
.widget_yith-wcwl-items ul.product_list_widget::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: rgba(0, 0, 0, .4);
    box-shadow: 0 0 1px rgba(255, 255, 255, .4);
}

.elementor-widget-wp-widget-yith-wcwl-items p.empty-wishlist,
.widget_yith-wcwl-items p.empty-wishlist{
    margin-bottom: 0!important;
}

.elementor-widget-wp-widget-yith-wcwl-items .mini ul.product_list_widget,
.widget_yith-wcwl-items .mini ul.product_list_widget{
    margin-left: -20px;
}

.elementor-widget-wp-widget-yith-wcwl-items ul.product_list_widget li,
.widget_yith-wcwl-items ul.product_list_widget li{
    display: table;
}

.elementor-widget-wp-widget-yith-wcwl-items ul.product_list_widget li:not(:last-child),
.widget_yith-wcwl-items ul.product_list_widget li:not(:last-child){
    margin-bottom: 10px;
}

.elementor-widget-wp-widget-yith-wcwl-items ul.product_list_widget li .remove_from_all_wishlists,
.elementor-widget-wp-widget-yith-wcwl-items ul.product_list_widget li .image-thumb,
.elementor-widget-wp-widget-yith-wcwl-items ul.product_list_widget li .mini-cart-item-info,
.widget_yith-wcwl-items ul.product_list_widget li .remove_from_all_wishlists,
.widget_yith-wcwl-items ul.product_list_widget li .image-thumb,
.widget_yith-wcwl-items ul.product_list_widget li .mini-cart-item-info{
    display: table-cell;
    vertical-align: middle;
}

.elementor-widget-wp-widget-yith-wcwl-items ul.product_list_widget li .remove_from_all_wishlists,
.widget_yith-wcwl-items ul.product_list_widget li .remove_from_all_wishlists{
    font-size: 1.2rem;
}

.elementor-widget-wp-widget-yith-wcwl-items ul.product_list_widget li .image-thumb img,
.widget_yith-wcwl-items ul.product_list_widget li .image-thumb img{
    margin-left: 10px;
    max-width: 40px;
}

.elementor-widget-wp-widget-yith-wcwl-items ul.product_list_widget li .mini-cart-item-info,
.widget_yith-wcwl-items ul.product_list_widget li .mini-cart-item-info{
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
}

.elementor-widget-wp-widget-yith-wcwl-items ul.product_list_widget li .mini-cart-item-info a,
.widget_yith-wcwl-items ul.product_list_widget li .mini-cart-item-info a{
    display: inline-block;
}

.elementor-widget-wp-widget-yith-wcwl-items ul.product_list_widget li .mini-cart-item-info > *,
.widget_yith-wcwl-items ul.product_list_widget li .mini-cart-item-info > * {
    display: block;
}

.elementor-widget-wp-widget-yith-wcwl-items .show-wishlist,
.elementor-widget-wp-widget-yith-wcwl-items a.add_all_to_cart,
.widget_yith-wcwl-items .show-wishlist,
.widget_yith-wcwl-items a.add_all_to_cart{
    display: block!important;
}

.elementor-widget-wp-widget-yith-wcwl-items .show-wishlist,
.widget_yith-wcwl-items .show-wishlist{
    margin-bottom: 10px;
}

.elementor-widget-wp-widget-yith-wcwl-items a.add_all_to_cart,
.widget_yith-wcwl-items a.add_all_to_cart{
    text-align: center;
}

/* === 26. RESPONSIVE === */

@media(max-width: 768px){
    .yith_wcwl_wishlist_bulk_action select{
        width: 100%;
        margin-bottom: 15px;
    }

    .yith_wcwl_wishlist_bulk_action input{
        float: right;
    }

    .yith_wcwl_wishlist_footer .yith_wcwl_footer_additional_action{
        float: none;
    }

    .yith_wcwl_wishlist_footer .yith_wcwl_footer_additional_action .ask-an-estimate-button{
        width: 100%;
        text-align: center;
    }
}
PK`x1\��Y�� assets/css/themes/storefront.cssnu�[���.widget_yith-wcwl-items .heading-icon .fa-heart-o:before,.yith-wcwl-icon.fa-heart-o:before{content:'\f004';filter:grayscale(1)}.yith-wcwl-share .share-button a.facebook i:before{font-family:FontAwesome;content:'\f09a'}.yith-wcwl-share .share-button a.twitter i:before{font-family:FontAwesome;content:'\f099'}.yith-wcwl-share .share-button a.pinterest i:before{font-family:FontAwesome;content:'\f231'}.yith-wcwl-share .share-button a.email i:before{font-family:FontAwesome;content:'\f003'}.yith-wcwl-share .share-button a.whatsapp i:before{font-family:FontAwesome;content:'\f232'}.wishlist-title.wishlist-title-with-form .show-title-form .fa-pencil{font-family:FontAwesome;content:'\f040'}PK`x1\=x_assets/css/themes/oceanwp.cssnu�[���.woocommerce ul.products .product{position:relative}.heading-icon .fa-heart-o:before,.yith-wcwl-icon.fa-heart-o:before{content:'\f004';font-weight:400}.wishlist-title i:before,.wishlist_table .product-arrange i:before,.yith-wcwl-share a i:before{font-family:FontAwesome}PK`x1\1͑z��"assets/css/themes/twentytwenty.cssnu�[���.wishlist_table.modern_grid li .item-details .item-details-wrapper{padding:10px 15px}.wishlist_table.modern_grid li .item-details h3{margin-top:10px}.wishlist_table.images_grid li .item-details table.item-details-table td.value input,.wishlist_table.modern_grid li .item-details table.item-details-table td.value input{width:100%;padding:2px}.woocommerce .wishlist-title h2{margin-top:0}.wishlist_table.modern_grid li{width:50%;margin-left:0}.wishlist_manage_table.modern_grid li .item-wrapper{padding:10px 15px}.wishlist_manage_table.modern_grid li .wishlist-title-with-form h3{margin-top:10px}.wishlist_manage_table.modern_grid li .product-thumbnail img{display:inline-block}PK`x1\�E�q�w�wassets/css/font-awesome.cssnu�[���/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */@font-face{font-family:FontAwesome;src:url('../fonts/fontawesome-webfont.eot?v=4.7.0');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'),url('../fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'),url('../fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'),url('../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');font-weight:400;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-webkit-transform:scale(-1,1);-ms-transform:scale(-1,1);transform:scale(-1,1)}.fa-flip-vertical{-webkit-transform:scale(1,-1);-ms-transform:scale(1,-1);transform:scale(1,-1)}:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-rotate-90{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-close:before,.fa-remove:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-cog:before,.fa-gear:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-repeat:before,.fa-rotate-right:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-image:before,.fa-photo:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-exclamation-triangle:before,.fa-warning:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-cogs:before,.fa-gears:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-floppy-o:before,.fa-save:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-bars:before,.fa-navicon:before,.fa-reorder:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-sort:before,.fa-unsorted:before{content:"\f0dc"}.fa-sort-desc:before,.fa-sort-down:before{content:"\f0dd"}.fa-sort-asc:before,.fa-sort-up:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-gavel:before,.fa-legal:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-bolt:before,.fa-flash:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-clipboard:before,.fa-paste:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-chain-broken:before,.fa-unlink:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-caret-square-o-down:before,.fa-toggle-down:before{content:"\f150"}.fa-caret-square-o-up:before,.fa-toggle-up:before{content:"\f151"}.fa-caret-square-o-right:before,.fa-toggle-right:before{content:"\f152"}.fa-eur:before,.fa-euro:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-inr:before,.fa-rupee:before{content:"\f156"}.fa-cny:before,.fa-jpy:before,.fa-rmb:before,.fa-yen:before{content:"\f157"}.fa-rouble:before,.fa-rub:before,.fa-ruble:before{content:"\f158"}.fa-krw:before,.fa-won:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-caret-square-o-left:before,.fa-toggle-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-try:before,.fa-turkish-lira:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-bank:before,.fa-institution:before,.fa-university:before{content:"\f19c"}.fa-graduation-cap:before,.fa-mortar-board:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-image-o:before,.fa-file-photo-o:before,.fa-file-picture-o:before{content:"\f1c5"}.fa-file-archive-o:before,.fa-file-zip-o:before{content:"\f1c6"}.fa-file-audio-o:before,.fa-file-sound-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-ring:before,.fa-life-saver:before,.fa-support:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-rebel:before,.fa-resistance:before{content:"\f1d0"}.fa-empire:before,.fa-ge:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-hacker-news:before,.fa-y-combinator-square:before,.fa-yc-square:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-paper-plane:before,.fa-send:before{content:"\f1d8"}.fa-paper-plane-o:before,.fa-send-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-futbol-o:before,.fa-soccer-ball-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-ils:before,.fa-shekel:before,.fa-sheqel:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-bed:before,.fa-hotel:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-y-combinator:before,.fa-yc:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery-full:before,.fa-battery:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-paper-o:before,.fa-hand-stop-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-television:before,.fa-tv:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-american-sign-language-interpreting:before,.fa-asl-interpreting:before{content:"\f2a3"}.fa-deaf:before,.fa-deafness:before,.fa-hard-of-hearing:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-sign-language:before,.fa-signing:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-address-card:before,.fa-vcard:before{content:"\f2bb"}.fa-address-card-o:before,.fa-vcard-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,.fa-thermometer-full:before,.fa-thermometer:before{content:"\f2c7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bath:before,.fa-bathtub:before,.fa-s15:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}PK`x1\-��oErErassets/css/style.cssnu�[���.woocommerce a.selectBox{background:#fff;min-width:100px;margin-right:10px;color:inherit}.woocommerce a.selectBox,.woocommerce a.selectBox:hover{border-bottom:1px solid #bbb!important}.woocommerce a.selectBox:hover{color:inherit}.woocommerce a.selectBox:focus{border:1px solid #ccc}.selectBox-dropdown .selectBox-label{vertical-align:middle;padding:3px 8px}.selectBox-dropdown .selectBox-arrow{border:none;background:url(../images/jquery.selectBox-arrow.png) center right no-repeat}.selectBox-dropdown.selectBox-menuShowing .selectBox-arrow{background:url(../images/jquery.selectBox-arrow.png) center left no-repeat}.selectBox-dropdown-menu{border-bottom-left-radius:3px;border-bottom-right-radius:3px;padding:5px;font-size:80%}.selectBox-dropdown-menu li a{color:inherit;padding:5px 8px;border-radius:3px}.selectBox-dropdown-menu a:hover{color:inherit;text-decoration:none}select.selectBox.change-wishlist{max-width:100px}.selectBox.change-wishlist{width:auto!important}.change-wishlist-selectBox-dropdown-menu{width:auto!important}.yith-wcwl-with-pretty-photo{overflow:hidden}.yith-wcwl-with-pretty-photo .pp_content{height:auto!important}.woocommerce .wishlist-fragment .blockUI.blockOverlay::before,.woocommerce .yith-wcwl-popup-form .blockUI.blockOverlay::before{display:none}.yith-wcwl-popup{display:none}.yith-wcwl-popup-content h3{text-align:center;font-size:1.5em}.yith-wcwl-popup-content .heading-icon,.yith-wcwl-popup-feedback .heading-icon{text-align:center;display:block;font-size:70px;color:#333;margin-bottom:15px}.yith-wcwl-popup-content .popup-description{text-align:center;font-weight:600;margin-bottom:15px}.yith-wcwl-popup-content .popup-description a.show-tab.active{cursor:inherit;color:inherit;pointer-events:none}.yith-wcwl-popup-feedback p.feedback{margin-top:1.5em;text-align:center;font-size:1.1rem;font-weight:600}.yith-wcwl-popup-content label{display:block}.yith-wcwl-popup-content input[type=text],.yith-wcwl-popup-content select{padding:10px 7px}.yith-wcwl-popup-content .create{display:none}.yith-wcwl-popup-content .yith-wcwl-second-row{display:none}.yith-wcwl-popup-footer{margin:15px 0}.yith-wcwl-popup-footer .button.wishlist-submit{display:block;width:100%;text-align:center}.pp_pic_holder.pp_woocommerce.feedback{max-width:450px!important}.pp_pic_holder.pp_woocommerce.feedback .pp_content{width:auto!important}.yith-wcwl-popup-feedback{margin-top:2em;margin-bottom:2em}.yith-wcwl-add-button.with-dropdown{position:relative;padding:15px 0}.yes-js .yith-wcwl-add-button ul.yith-wcwl-dropdown{display:none;list-style:none;margin-bottom:0;padding:5px 25px;border:1px solid #cdcdcd;background:#fff;position:absolute;z-index:15;top:calc(100% - 5px);min-width:200px}.yith-wcwl-add-button.show-dropdown ul.yith-wcwl-dropdown{display:block}.yith-wcwl-add-button ul.yith-wcwl-dropdown li{padding:15px;padding-left:0;text-transform:uppercase;font-size:.8em}.yith-wcwl-add-button ul.yith-wcwl-dropdown li a{font-size:1em!important;color:inherit;box-shadow:none}.yith-wcwl-add-button ul.yith-wcwl-dropdown li a:hover{color:initial}.yith-wcwl-add-button ul.yith-wcwl-dropdown li:before{font-family:FontAwesome;content:'\f067';margin-right:15px}.yith-wcwl-add-button ul.yith-wcwl-dropdown li:not(:last-child){border-bottom:1px solid #cdcdcd}.yith-wcwl-add-to-wishlist .separator+[data-title]{display:inline-block}.yith-wcwl-add-to-wishlist .with-tooltip{position:relative}.yith-wcwl-tooltip{z-index:10;padding:5px 10px;border-radius:5px;text-align:center;top:calc(100% + 5px);pointer-events:none;cursor:initial;font-size:.6875rem;line-height:normal;display:none}.with-dropdown .yith-wcwl-tooltip{top:auto;bottom:calc(100% + 10px)}.with-tooltip .yith-wcwl-tooltip{position:absolute}.with-tooltip .yith-wcwl-tooltip:before{content:'';display:block;position:absolute;top:-5px;left:calc(50% - 2px);width:0;height:0;background:0 0!important;border-left:5px solid transparent!important;border-right:5px solid transparent!important;border-bottom:5px solid}.with-dropdown .with-tooltip .yith-wcwl-tooltip:before{bottom:-5px;top:auto;border-left:5px solid transparent;border-right:5px solid transparent;border-top:5px solid;border-bottom:none}#yith-wcwl-popup-message{font-weight:700;line-height:50px;text-align:center;background:#fff;-webkit-box-shadow:0 0 15px rgba(0,0,0,.3);-moz-box-shadow:0 0 15px rgba(0,0,0,.3);box-shadow:0 0 15px rgba(0,0,0,.3);position:fixed;top:50%;left:50%;padding:7px 40px;z-index:10000}.wishlist-title{display:inline-block}.wishlist-title h2{display:inline-block;padding:5px}.wishlist-title.wishlist-title-with-form h2:hover{background:#efefef}.wishlist-title a.show-title-form{cursor:pointer;visibility:hidden}.wishlist-title:hover a.show-title-form{visibility:visible}.hidden-title-form{position:relative;margin:25px 0 39px}.yes-js .hidden-title-form{display:none}.hidden-title-form .edit-title-buttons{position:absolute;right:5px;top:calc(50% - 15px)}.hidden-title-form>input[type=text]{padding-right:65px;line-height:1}.hidden-title-form a{cursor:pointer;display:inline-block;width:30px;height:30px;line-height:30px;text-align:center;vertical-align:middle;font-size:1.3em}.hidden-title-form a i{margin:0;display:inline-block}table.wishlist_table{font-size:80%}table.wishlist_table tr{position:relative}table.wishlist_table thead th{border-top:1px solid;padding:16px 12px}table.wishlist_table tbody td{padding:16px 12px}table.wishlist_table tbody td,table.wishlist_table thead th{border-color:#e7e7e7}p.wishlist-empty,table.wishlist_table tbody td.wishlist-empty{text-align:center;margin:100px 0}.wishlist_table tr td,.wishlist_table tr th.product-checkbox,.wishlist_table tr th.wishlist-delete{text-align:center}.wishlist_table tr th.product-checkbox{vertical-align:middle;width:40px}.wishlist_table tr th.product-remove{vertical-align:middle;width:40px}.wishlist_table tr th.product-thumbnail{width:80px}.wishlist_table tfoot td,.wishlist_table tr td.product-name,.wishlist_table tr td.product-thumbnail,.wishlist_table tr td.wishlist-name,.wishlist_table tr td.wishlist-privacy{text-align:left}.wishlist_table tr td.product-remove{padding:16px 0}.wishlist_table tr td.product-thumbnail a{display:block;border:none;max-width:80px}.wishlist_table tr td.product-thumbnail a img{width:100%}.wishlist_table tr td.product-arrange{cursor:grab}.wishlist_table tr td.product-arrange:active{cursor:grabbing}.wishlist_table .product-stock-status span.wishlist-in-stock{color:#297e29}.wishlist_table .product-stock-status span.wishlist-out-of-stock{color:red}.wishlist_table .product-add-to-cart span.dateadded{display:block}.wishlist_table .product-add-to-cart a{display:table!important;margin:0 auto 5px!important;text-align:center}.wishlist_table .product-add-to-cart a.button{padding:6px 25px!important}.wishlist_table .product-add-to-cart a>img{display:inline;max-width:2em}.wishlist_table .price-variation{display:block}.wishlist_table .price-variation.decrease .variation-rate{color:red}.wishlist_table .price-variation .old-price{display:block}.wishlist_table a.button{white-space:normal;margin-bottom:5px!important}.wishlist_table.modern_grid{list-style:none;margin:0 -7px 35px;font-size:0}.wishlist_table.modern_grid li{display:inline-block;vertical-align:top;width:33.33%;padding:0 7px;margin-bottom:15px}.wishlist_table.images_grid li.wishlist-empty,.wishlist_table.modern_grid li.wishlist-empty{width:100%;font-size:1rem;text-align:center;margin:50px 0}.wishlist_table.images_grid li.show{z-index:10}.wishlist_table.images_grid.products li.product.first,.wishlist_table.images_grid.products li.product.last{clear:none}.wishlist_table.images_grid.columns-2.products li.product:nth-of-type(2n+1),.wishlist_table.images_grid.columns-3.products li.product:nth-of-type(3n+1),.wishlist_table.images_grid.columns-4.products li.product:nth-of-type(4n+1),.wishlist_table.images_grid.columns-5.products li.product:nth-of-type(5n+1),.wishlist_table.images_grid.columns-6.products li.product:nth-of-type(6n+1){clear:both}.wishlist_table.modern_grid li .item-wrapper{display:table;margin:0 -7px}.wishlist_table.modern_grid li .item-details,.wishlist_table.modern_grid li .product-thumbnail{display:table-cell;vertical-align:top;box-sizing:border-box;width:50%;padding:0 7px;font-size:1rem}.wishlist_table.images_grid li .product-thumbnail,.wishlist_table.modern_grid li .product-thumbnail{position:relative}.wishlist_table.images_grid li .product-thumbnail .product-checkbox,.wishlist_table.modern_grid li .product-thumbnail .product-checkbox{position:absolute;top:7px;left:15px;z-index:2}.wishlist_table.modern_grid li .product-thumbnail>a{display:block}.wishlist_table.modern_grid li .product-thumbnail>a img{display:block}.wishlist_table.images_grid li.show .product-thumbnail>a img,.wishlist_table.images_grid li:hover .product-thumbnail>a img{filter:brightness(1.1)}.wishlist_table.modern_grid.wishlist_view li .item-details{position:relative}.wishlist_table.modern_grid.wishlist_view li .item-details:before{content:'';display:block;top:0;bottom:0;left:7px;background:#fff;position:absolute;right:7px;z-index:0;border:1px solid #cdcdcd}.wishlist_table.images_grid li .item-details{display:none;position:absolute;z-index:2;bottom:15px;left:calc(50% - 150px);width:300px;background:#fff;padding:10px 20px;-webkit-box-shadow:0 0 15px rgba(0,0,0,.3);-moz-box-shadow:0 0 15px rgba(0,0,0,.3);box-shadow:0 0 15px rgba(0,0,0,.3)}.wishlist_table.images_grid li.show .item-details{display:block}.wishlist_table.modern_grid li .item-details .item-details-wrapper{padding:15px 20px;line-height:normal;position:relative}.wishlist_table.images_grid li .item-details a.close{position:absolute;top:10px;right:20px}.wishlist_table.images_grid li .item-details h3,.wishlist_table.mobile li .item-details h3,.wishlist_table.modern_grid li .item-details h3{margin-bottom:7px}.wishlist_table.images_grid li .item-details table.item-details-table,.wishlist_table.mobile li .item-details table.item-details-table,.wishlist_table.mobile li table.additional-info,.wishlist_table.modern_grid li .item-details table.item-details-table{border:none;margin-bottom:7px}.wishlist_table.images_grid li .item-details table.item-details-table td,.wishlist_table.mobile li .item-details table.item-details-table td,.wishlist_table.mobile li table.additional-info td,.wishlist_table.modern_grid li .item-details table.item-details-table td{border:none;font-size:.7em;padding:3px;vertical-align:top}.wishlist_table.images_grid li .item-details table.item-details-table td.label,.wishlist_table.mobile li .item-details table.item-details-table td.label,.wishlist_table.mobile li table.additional-info td.label,.wishlist_table.modern_grid li .item-details table.item-details-table td.label{text-align:left;font-weight:700;width:40%}.wishlist_table.images_grid li .item-details table.item-details-table td.value,.wishlist_table.mobile li .item-details table.item-details-table td.value,.wishlist_table.mobile li table.additional-info td.value,.wishlist_table.modern_grid li .item-details table.item-details-table td.value{text-align:right}.wishlist_table.modern_grid li .item-details table.item-details-table td.value a.selectBox{margin-right:0}.wishlist_table.images_grid li .item-details table.item-details-table td.value input,.wishlist_table.mobile li table.additional-info td.value input,.wishlist_table.modern_grid li .item-details table.item-details-table td.value input{width:auto}.wishlist_table.images_grid li .item-details .product-add-to-cart,.wishlist_table.modern_grid li .item-details .product-add-to-cart{text-align:center;margin-bottom:7px}.wishlist_table.images_grid li .item-details .move-to-another-wishlist,.wishlist_table.modern_grid li .item-details .move-to-another-wishlist{text-align:center;margin-bottom:7px}.wishlist_table.images_grid li .item-details .product-remove,.wishlist_table.modern_grid li .item-details .product-remove{text-align:right}.wishlist_table.images_grid li .item-details .product-remove a,.wishlist_table.modern_grid li .item-details .product-remove a{border:none;border-radius:0;display:inline-block}.wishlist_table.mobile{list-style:none;margin-left:0}.wishlist_table.mobile li{margin-bottom:7px}.wishlist_table.mobile li .product-checkbox{display:inline-block;width:20px;vertical-align:top}.wishlist_table.mobile li .item-wrapper{display:inline-block;width:calc(100% - 25px);vertical-align:top;margin-bottom:7px}.wishlist_table.wishlist_manage_table.mobile li.wishlist-empty{text-align:center}.wishlist_table.wishlist_manage_table.mobile li .item-wrapper{width:100%}.wishlist_table.mobile li .item-wrapper .product-thumbnail{display:inline-block;max-width:60px;margin-right:10px}.wishlist_table.mobile li .item-wrapper .item-details{display:inline-block;width:calc(100% - 80px);vertical-align:top}.wishlist_table.mobile.with-checkbox li .additional-info-wrapper{padding-left:20px}.wishlist_table.mobile li .additional-info-wrapper .move-to-another-wishlist,.wishlist_table.mobile li .additional-info-wrapper .product-add-to-cart{text-align:center;margin-bottom:7px}.wishlist_table.mobile li .additional-info-wrapper .product-remove{text-align:right}a.add_to_wishlist{cursor:pointer}.yith-wcwl-add-to-wishlist .feedback .yith-wcwl-icon{margin-right:5px}.yith-wcwl-add-to-wishlist a.add_to_wishlist>img,.yith-wcwl-add-to-wishlist a.delete_item>img,.yith-wcwl-add-to-wishlist a.move_to_another_wishlist>img{max-width:32px;display:inline-block;margin-right:10px}a.add_to_wishlist+a.view-wishlist,a.delete_item+a.view-wishlist{margin-left:15px}.summary .single_add_to_wishlist.button,div.product .woocommerce-price-and-add .single_add_to_wishlist.button{margin:0}.wishlist_table .add_to_cart.button{padding:7px 12px;line-height:normal}.yith-wcwl-add-to-wishlist{margin-top:10px}.hidden-title-form button i,.wishlist-title a.show-title-form i,.wishlist_manage_table tfoot a.create-new-wishlist i,.wishlist_manage_table tfoot button.submit-wishlist-changes i,.wishlist_table .add_to_cart.button i,.wishlist_table .ask-an-estimate-button i,.yith-wcwl-add-button>a i,.yith-wcwl-wishlist-new button i,.yith-wcwl-wishlist-search-form button.wishlist-search-button i{margin-right:10px}.hidden-title-form a.hide-title-form,.wishlist-title a.show-title-form,.wishlist_manage_table a.create-new-wishlist,.wishlist_manage_table button.submit-wishlist-changes,.wishlist_table .add_to_cart.button,.wishlist_table a.ask-an-estimate-button,.woocommerce .yith-wcwl-wishlist-new button,.yith-wcwl-add-button a.add_to_wishlist,.yith-wcwl-popup-button a.add_to_wishlist,.yith-wcwl-wishlist-search-form button.wishlist-search-button{margin:0;box-shadow:none;text-shadow:none}.add-to-wishlist-before_image .yith-wcwl-add-to-wishlist{position:absolute;z-index:10;margin:0;top:10px;left:10px}.add-to-wishlist-before_image .yith-wcwl-add-to-wishlist .with-dropdown{padding:0}.add-to-wishlist-before_image .yith-wcwl-add-to-wishlist .add_to_wishlist,.add-to-wishlist-before_image .yith-wcwl-add-to-wishlist .disabled_item,.add-to-wishlist-before_image .yith-wcwl-add-to-wishlist .open-pretty-photo{font-size:0;background:0 0}.add-to-wishlist-before_image .yith-wcwl-add-to-wishlist .delete_item,.add-to-wishlist-before_image .yith-wcwl-add-to-wishlist .move_to_another_wishlist{font-size:0}.add-to-wishlist-before_image .yith-wcwl-add-to-wishlist .feedback{display:none}.add-to-wishlist-before_image .yith-wcwl-add-to-wishlist .feedback+a{font-size:0;background:0 0}.add-to-wishlist-before_image .yith-wcwl-add-to-wishlist i{font-size:1.6rem;margin:0}.add-to-wishlist-before_image .yith-wcwl-add-to-wishlist img{margin:0}.woocommerce .wishlist-title{margin-bottom:30px}.woocommerce .wishlist-title h2{vertical-align:middle;margin-bottom:0}.woocommerce .hidden-title-form button{padding:7px 24px;vertical-align:middle;border:none;position:relative}.woocommerce .hidden-title-form button:active{top:1px}.woocommerce .back-to-all-wishlists{margin-bottom:20px}.woocommerce #content table.wishlist_table.cart a.remove{color:#c3c3c3;margin:0 auto}.woocommerce #content table.wishlist_table.cart a.remove:hover{background-color:#c3c3c3;color:#fff}.yith-wcwl-share{margin-bottom:35px}.yith-wcwl-share h4.yith-wcwl-share-title{margin:10px 0}.yith-wcwl-share ul{margin:5px 0;padding:0}.entry-content .yith-wcwl-share ul li,.yith-wcwl-share ul li{display:inline-block;margin-left:0;margin-right:0}.yith-wcwl-share li a{color:#fff;text-align:center;text-decoration:none;line-height:1;padding:5px;display:block;border:none;min-width:26px;min-height:26px}.yith-wcwl-share li a:hover{color:#fff}.yith-wcwl-share li a>img{max-width:1em}.copy-trigger{cursor:pointer}.woocommerce .ask-an-estimate-button>img{max-width:1em;display:inline;margin-right:5px}#ask_an_estimate_popup{display:none}.wishlist-ask-an-estimate-popup .ask-an-estimate-button-popup{width:100%}.wishlist-ask-an-estimate-popup .woocommerce-error{margin-bottom:0}.wishlist-ask-an-estimate-popup #additional_notes{min-height:150px}.ask-an-estimate-confirmation{padding:0 30px;text-align:center}.yith_wcwl_wishlist_footer>div{margin-bottom:15px}.yith_wcwl_wishlist_footer .yith_wcwl_wishlist_bulk_action{float:left}.yith_wcwl_wishlist_footer .yith_wcwl_wishlist_bulk_action label{display:inline-block;margin-right:10px}.yith_wcwl_wishlist_footer .yith_wcwl_wishlist_bulk_action #bulk_actions{min-width:250px}.yith_wcwl_wishlist_footer .yith_wcwl_wishlist_bulk_action input[type=submit]{margin:0;margin-left:10px}.yith_wcwl_wishlist_footer .yith_wcwl_wishlist_update{float:right}.yith_wcwl_wishlist_footer .yith-wcwl-share{float:left;clear:both}.yith_wcwl_wishlist_footer .yith_wcwl_footer_additional_action{float:right}.yith_wcwl_wishlist_footer .yith_wcwl_footer_additional_action>*{vertical-align:middle}.yith_wcwl_wishlist_update+.yith_wcwl_footer_additional_action{clear:both}.wishlist-page-links{clear:both}#move_to_another_wishlist{display:none}.yith-wcwl-wishlist-new{padding:20px 0}.yith-wcwl-popup-content .yith-wcwl-wishlist-new{padding:0}.yith-wcwl-wishlist-new .wishlist-name{display:inline-block}.yith-wcwl-wishlist-new .wishlist-privacy-radio label{display:block}.yith-wcwl-popup-content .create-wishlist-button{margin-top:15px;width:100%}#create_new_wishlist{display:none}.wishlist_manage_table select{vertical-align:middle;margin-right:10px}.wishlist_manage_table td.wishlist-name .wishlist-title{margin-bottom:0}.wishlist_manage_table td.wishlist-name .wishlist-title .show-title-form{display:inline-block;padding:0;border:none;background:0 0;top:0;margin:0}.wishlist_manage_table td.wishlist-name a.show-title-form i{padding:5px;margin:0}.wishlist_manage_table td.wishlist-name:hover a.show-title-form{visibility:visible}.wishlist_manage_table td.wishlist-name .hidden-title-form{margin:0!important;width:100%}.wishlist_manage_table td.wishlist-name .hidden-title-form input[type=text]{width:100%;min-width:0}.wishlist_manage_table td.wishlist-name .hidden-title-form{position:relative}table.wishlist_manage_table tfoot td{text-align:right;padding:24px 12px}.wishlist_manage_table tfoot button.submit-wishlist-changes{padding:7px 24px;vertical-align:middle;border:1px solid;border-radius:3px;position:relative;line-height:normal}.wishlist_manage_table tfoot button.submit-wishlist-changes:active{top:1px}.wishlist_manage_table tfoot a.create-new-wishlist{vertical-align:middle;line-height:normal;padding:7px 24px}.wishlist_manage_table.modern_grid li.wishlist-empty{margin:50px 0}.wishlist_manage_table.modern_grid li .item-wrapper{display:block;margin:0;padding:40px 50px;background:#fff;border:1px solid #cdcdcd}.wishlist_manage_table.modern_grid li .item-details,.wishlist_manage_table.modern_grid li .product-thumbnail{display:block;width:100%;padding:0}.wishlist_manage_table.modern_grid li .item-details .hidden-title-form{width:100%}.wishlist_manage_table.modern_grid li .product-thumbnail .placeholder-item.empty-box{display:flex;background:#f2f2f2;min-height:400px;align-items:center;justify-content:center;margin-bottom:15px}.wishlist_manage_table.modern_grid li .product-thumbnail .placeholder-item.empty-box p{font-size:1em;line-height:1.5em;font-weight:600}.wishlist_manage_table.modern_grid li .product-thumbnail img:first-child{width:100%;margin-bottom:15px}.wishlist_manage_table.modern_grid li .product-thumbnail img{width:calc(50% - 8px)}.wishlist_manage_table.modern_grid li .product-thumbnail img:nth-child(3){margin-left:15px}.wishlist_manage_table.modern_grid li .wishlist-title-with-form{display:block}.wishlist_manage_table.modern_grid li .wishlist-title-with-form h3{display:inline-block}.wishlist_manage_table.modern_grid li .wishlist-title-with-form .show-title-form,.wishlist_manage_table.modern_grid li .wishlist-title-with-form .show-title-form:hover{visibility:visible;float:right;margin:0;background:0 0;color:inherit}.wishlist_manage_table.modern_grid li .wishlist-title-with-form .show-title-form i{margin:0}.wishlist_manage_table.modern_grid li .hidden-title-form{margin-top:0!important}.wishlist_manage_table.modern_grid li .hidden-title-form input[type=text]{width:100%;min-width:0}.wishlist_manage_table.mobile li{margin-bottom:30px}.wishlist_manage_table.mobile li .item-wrapper .item-details{width:100%}.wishlist_manage_table.mobile li .item-details .hidden-title-form{position:relative}.wishlist_manage_table.mobile li .item-details .hidden-title-form input[type=text]{width:100%}.wishlist_manage_table.mobile li .item-wrapper .item-details .wishlist-title{display:block;border-bottom:1px solid #cdcdcd;position:relative}.wishlist_manage_table.mobile li .item-wrapper .item-details .wishlist-title-with-form a.show-title-form{position:absolute;right:0;top:0;visibility:visible}.wishlist_manage_table.mobile li .item-wrapper .item-details .wishlist-title-with-form a.show-title-form i{margin-right:0}.wishlist_manage_table.mobile li .item-details table.item-details-table td.value a.selectBox{margin-right:0}.wishlist_manage_table.mobile li .item-details table.item-details-table td.value a.wishlist-download{float:left}.yith-wcwl-wishlist-search-form{text-align:center;padding:20px 0}.yith-wcwl-wishlist-search-form #wishlist_search{display:inline-block;max-width:300px;vertical-align:middle}.yith-wcwl-wishlist-search-form button.wishlist-search-button{display:inline-block;padding:7px 24px;vertical-align:middle;border:1px solid;border-radius:3px;position:relative;line-height:normal}.yith-wcwl-wishlist-search-form button.wishlist-search-button i{margin:0}.yith-wcwl-wishlist-search-form button.wishlist-search-button:active{top:1px}.yith-wcwl-search-results .wishlist-owner{text-align:left}.yith-wcwl-search-results .wishlist-owner .thumb{display:inline-block;margin-right:15px}.yith-wcwl-add-to-wishlist .ajax-loading{box-shadow:none!important;-moz-box-shadow:none!important;-webkit-box-shadow:none!important;display:inline!important;margin-left:5px;vertical-align:middle;visibility:hidden;width:16px!important;height:16px!important}.elementor-widget-wp-widget-yith-wcwl-lists ul.dropdown li,.widget_yith-wcwl-lists ul.dropdown li{padding:0}.elementor-widget-wp-widget-yith-wcwl-lists ul.dropdown ul.lists>li a,.elementor-widget-wp-widget-yith-wcwl-lists ul.dropdown>li a,.widget_yith-wcwl-lists ul.dropdown ul.lists>li a,.widget_yith-wcwl-lists ul.dropdown>li a{display:block;padding:5px 15px}.elementor-widget-wp-widget-yith-wcwl-lists ul.dropdown ul.lists>li a,.widget_yith-wcwl-lists ul.dropdown ul.lists>li a{padding:5px 25px}.elementor-widget-wp-widget-yith-wcwl-lists ul.dropdown>li.lists-section,.widget_yith-wcwl-lists ul.dropdown>li.lists-section{border-bottom:1px solid #e7e7e7}.elementor-widget-wp-widget-yith-wcwl-lists ul.dropdown ul.lists,.widget_yith-wcwl-lists ul.dropdown ul.lists{margin:0}.elementor-widget-wp-widget-yith-wcwl-items .mini,.widget_yith-wcwl-items .mini{position:relative}.elementor-widget-wp-widget-yith-wcwl-items .heading,.widget_yith-wcwl-items .heading{text-align:center;cursor:pointer}.elementor-widget-wp-widget-yith-wcwl-items .mini .heading,.widget_yith-wcwl-items .mini .heading{display:inline-block}.elementor-widget-wp-widget-yith-wcwl-items .heading a,.widget_yith-wcwl-items .heading a{color:inherit}.elementor-widget-wp-widget-yith-wcwl-items .extended .heading .items-counter,.widget_yith-wcwl-items .extended .heading .items-counter{position:relative}.elementor-widget-wp-widget-yith-wcwl-items .extended .heading .items-counter i,.widget_yith-wcwl-items .extended .heading .items-counter i{font-size:70px;position:relative;margin-bottom:10px}.elementor-widget-wp-widget-yith-wcwl-items .mini .heading .items-counter i,.widget_yith-wcwl-items .mini .heading .items-counter i{font-size:30px}.elementor-widget-wp-widget-yith-wcwl-items .extended .heading .items-counter .items-count,.widget_yith-wcwl-items .extended .heading .items-counter .items-count{display:block;position:absolute;left:0;right:0;text-align:center;top:calc(50% - 20px);font-size:1rem}.elementor-widget-wp-widget-yith-wcwl-items .mini .heading .items-counter .items-count,.widget_yith-wcwl-items .mini .heading .items-counter .items-count{font-size:1rem}.elementor-widget-wp-widget-yith-wcwl-items .extended .heading h3:after,.widget_yith-wcwl-items .extended .heading h3:after{content:'';display:block;max-width:80px;border-bottom:1px solid #cdcdcd;margin:10px auto}.elementor-widget-wp-widget-yith-wcwl-items .mini .list,.widget_yith-wcwl-items .mini .list{position:absolute;z-index:1;left:0;background:#fff;padding:25px 40px;display:none;-webkit-box-shadow:0 0 15px rgba(0,0,0,.3);-moz-box-shadow:0 0 15px rgba(0,0,0,.3);box-shadow:0 0 15px rgba(0,0,0,.3)}.elementor-widget-wp-widget-yith-wcwl-items .mini:hover .list,.widget_yith-wcwl-items .mini:hover .list{display:block}.elementor-widget-wp-widget-yith-wcwl-items ul.product_list_widget,.widget_yith-wcwl-items ul.product_list_widget{margin-bottom:40px!important}.elementor-widget-wp-widget-yith-wcwl-items .mini ul.product_list_widget,.widget_yith-wcwl-items .mini ul.product_list_widget{max-height:30vh;overflow-y:auto}.elementor-widget-wp-widget-yith-wcwl-items .mini ul.product_list_widget::-webkit-scrollbar,.widget_yith-wcwl-items ul.product_list_widget::-webkit-scrollbar{-webkit-appearance:none;width:7px}.elementor-widget-wp-widget-yith-wcwl-items .mini ul.product_list_widget::-webkit-scrollbar-thumb,.widget_yith-wcwl-items ul.product_list_widget::-webkit-scrollbar-thumb{border-radius:4px;background-color:rgba(0,0,0,.4);box-shadow:0 0 1px rgba(255,255,255,.4)}.elementor-widget-wp-widget-yith-wcwl-items p.empty-wishlist,.widget_yith-wcwl-items p.empty-wishlist{margin-bottom:0!important}.elementor-widget-wp-widget-yith-wcwl-items .mini ul.product_list_widget,.widget_yith-wcwl-items .mini ul.product_list_widget{margin-left:-20px}.elementor-widget-wp-widget-yith-wcwl-items ul.product_list_widget li,.widget_yith-wcwl-items ul.product_list_widget li{display:table}.elementor-widget-wp-widget-yith-wcwl-items ul.product_list_widget li:not(:last-child),.widget_yith-wcwl-items ul.product_list_widget li:not(:last-child){margin-bottom:10px}.elementor-widget-wp-widget-yith-wcwl-items ul.product_list_widget li .image-thumb,.elementor-widget-wp-widget-yith-wcwl-items ul.product_list_widget li .mini-cart-item-info,.elementor-widget-wp-widget-yith-wcwl-items ul.product_list_widget li .remove_from_all_wishlists,.widget_yith-wcwl-items ul.product_list_widget li .image-thumb,.widget_yith-wcwl-items ul.product_list_widget li .mini-cart-item-info,.widget_yith-wcwl-items ul.product_list_widget li .remove_from_all_wishlists{display:table-cell;vertical-align:middle}.elementor-widget-wp-widget-yith-wcwl-items ul.product_list_widget li .remove_from_all_wishlists,.widget_yith-wcwl-items ul.product_list_widget li .remove_from_all_wishlists{font-size:1.2rem}.elementor-widget-wp-widget-yith-wcwl-items ul.product_list_widget li .image-thumb img,.widget_yith-wcwl-items ul.product_list_widget li .image-thumb img{margin-left:10px;max-width:40px}.elementor-widget-wp-widget-yith-wcwl-items ul.product_list_widget li .mini-cart-item-info,.widget_yith-wcwl-items ul.product_list_widget li .mini-cart-item-info{display:inline-block;vertical-align:middle;margin-left:10px}.elementor-widget-wp-widget-yith-wcwl-items ul.product_list_widget li .mini-cart-item-info a,.widget_yith-wcwl-items ul.product_list_widget li .mini-cart-item-info a{display:inline-block}.elementor-widget-wp-widget-yith-wcwl-items ul.product_list_widget li .mini-cart-item-info>*,.widget_yith-wcwl-items ul.product_list_widget li .mini-cart-item-info>*{display:block}.elementor-widget-wp-widget-yith-wcwl-items .show-wishlist,.elementor-widget-wp-widget-yith-wcwl-items a.add_all_to_cart,.widget_yith-wcwl-items .show-wishlist,.widget_yith-wcwl-items a.add_all_to_cart{display:block!important}.elementor-widget-wp-widget-yith-wcwl-items .show-wishlist,.widget_yith-wcwl-items .show-wishlist{margin-bottom:10px}.elementor-widget-wp-widget-yith-wcwl-items a.add_all_to_cart,.widget_yith-wcwl-items a.add_all_to_cart{text-align:center}@media(max-width:768px){.yith_wcwl_wishlist_bulk_action select{width:100%;margin-bottom:15px}.yith_wcwl_wishlist_bulk_action input{float:right}.yith_wcwl_wishlist_footer .yith_wcwl_footer_additional_action{float:none}.yith_wcwl_wishlist_footer .yith_wcwl_footer_additional_action .ask-an-estimate-button{width:100%;text-align:center}}PK`x1\\�DŬ���$assets/fonts/fontawesome-webfont.ttfnu�[���
�PFFTMk�G���GDEF��p OS/2�2z@X`cmap
�:��gasp���hglyf���M�L�head��-�6hhea
�$hmtxEy��
�loca��\�maxp,8 name㗋�gh�post����k�uː�xY_<��3�2�3�2���	�	����	��'@i��3��3s�pyrs@ �� �pU�]�����y�n�����2��@������
��������z���Z@�5�5
���z���ZZ����@���������,_���@������s���@	��@��(������@�����@��@-
�M�M�-�
�M�M�����@�����@@�
�-����`��b����
���$����6�4�8�"�"""""���@�D@���,,@� ���������	m��)@�@	 	' D9>dY*	'						�	��	��T										�@	f�	%RE	 		$!k(D�'	��	�%��	�%	��	��0%�/�&��p@0 �����!"""`���>�N�^�n�~��������������.�>�N�^�n�~��������������>�N�^�n�~������������ �����!"""`���!�@�P�`�p�������������� �0�@�P�`�p��������������!�@�P�`�p�������������\�X�S�B�1����ݬ

	����������������������������������
�
	,,,,,,,,,,,,,��t�L�T$�l	x	�
T(��
d����l,����4d�pH�$d,t( � �!�"0# $,$�&D'�(�)T**�,,�-�.@.�/`/�00�1�2�3d444�5 5�5�6 6\6�7H7�88`8�9L9�:h:�;�<p=p><>�?h?�@H@�A0A�BXB�CdC�DLD�E�F�G0G�H�I�J8K�L�MdN,N�N�O�P`P�Q4Q�RRlS,S�T`U0W�X�Z[@[�\<\�]�^(^�_�`pb,b�dd�ePe�f�g`g�iLi�jDkk�l�m@n,oLp�q�r�sxtt�uD{`||�}}�~��������H��������l�@����������l�H� ���T��H�������`����@�����$�\�X��D�������T�X�����D�P�,���8���d�\����������������H���x��� �t���X���p��d��������x�t�������������@������Œ�\� ļ�ŸƔ�0���d��ʨˀ����͔�x��ϰЌ�,ш�҈�ӌ���8�,՜�`���l�Hش�`���Tڸ�۔�@���l��ބ�߬��l�p� ������������������������������4�����X���$�l���(����`����������	d

��
,�,��8��(�X���x|T�@��| �!�"x##l$$�'h(�*L,T.L1t1�2�303�4�5t6T7$89H::�;�<�<�?X@A�B�C�D�EHFHGpHHIxJ J�K�L�MN@P@Q�R�SDT ULV`V�WXX4X�ZZ�[d[�\|]�^�`�aHa�b�cXd�etfhg�h�i\jxn�p@s�vw�x�y�z�{h|�}}�\���l�t���4���������t���8�8���L���T�������������|�������|�������4�x�����L����������X�(� ������� ������@�����l���t����$����x�L�L��� �H������Ġ�T�(����ʈˠ��ϔ�l�d���P�Մ�x�p���ڬ�T�T���ވ�L�����<�H��$���l������4����������� �P�l����,���x���p�,�x�t��d����4���4,h�P	4
��
�4�<,,408$�8�T� |!h"�$L%0&H'�(�)�*0*�+�,�.$.�0�1�2@2�3�4t5$6�9 :�:�;;�<(<�=4?�@�A�C�D�F�H`H�I�L�L�L�L�L�L�L�L�L�L�L�L�L�L�L�L�p7!!!���@p�p �p�]���!2#!"&463!&54>3!2�+��@&&��&&@��+$(�($F#+���&4&&4&x+#��+".4>32".4>32467632DhgZghDDhg-iW�DhgZghDDhg-iW&@(8 ��2N++NdN+'�;2N++NdN+'�3
8���!  #"'#"$&6$ �������rL46$���܏���oo��o|W%r��������4L&V|o��oo����ܳ��%��=M%+".'&%&'3!26<.#!";2>767>7#!"&5463!2� %��3@m00m@3���% 
�
�@
���:"7..7":�6]�^B�@B^^B�B^ $΄+0110+��$�
(	

�t��1%%1��+�`��B^^B@B^^���"'.54632>32�4��
#L</��>�oP$$Po�>���Z$_d�C�+I@$$@I+��������"#"'%#"&547&547%62���V�?�?V��8��<��8y���
���b%	I�))�9I	����	+	%%#"'%#"&547&547%62q2�Z���Z2Izy���V)�?�?V��8��<��8)>~��>��[��
���
2���b%	I�))�9I	���%#!"&54>3 72 &6 }X��X}.GuL�l�LuG.�����>�m��mU��mE��Em�������>����/?O_o���54&+";2654&+";2654&+";264&#!"3!2654&+";2654&+";264&#!"3!2654&+";2654&+";2654&+";267#!"&5463!2�&�&&�&&�&&�&&�&&�&&�&&&�&�&&�&�&�&&�&��&�&&&�&�&&�&&�&&�&&�&&�&�^B��B^^B@B^@�&&�&&��&&�&&��&&�&&�&&�&&��&&�&&���&&�&&&&�&&���&&�&&��&&�&&��&&�&&���B^^B@B^^��/?#!"&5463!2#!"&5463!2#!"&5463!2#!"&5463!2L4�4LL44LL4�4LL44L�L4�4LL44LL4�4LL44L��4LL4�4LL��4LL4�4LL���4LL4�4LL��4LL4�4LL	�/?O_o�#!"&=463!2#!"&=463!2#!"&=463!2#!"&=463!2#!"&=463!2#!"&=463!2#!"&=463!2#!"&=463!2#!"&=463!28(��(88(@(88(��(88(@(8�8(��(88(@(8��8(��(88(@(8�8(��(88(@(8�8(��(88(@(8��8(��(88(@(8�8(��(88(@(88(��(88(@(8 �(88(�(88�(88(�(88��(88(�(88�(88(�(88��(88(�(88��(88(�(88�(88(�(88��(88(�(88�(88(�(88�/?O_#!"&=463!2#!"&=463!2#!"&=463!2#!"&=463!2#!"&=463!2#!"&=463!28(��(88(@(88(��(88(@(88(�@(88(�(8�8(��(88(@(88(�@(88(�(88(�@(88(�(8 �(88(�(88�(88(�(88��(88(�(88�(88(�(88��(88(�(88�(88(�(88y��"/&4?62	62��,�P����P&�P��P�,��jP�����n���#$"'	"/&47	&4?62	62	�P���P�&���P&&P���&�P�&���P&&P���&�P������#+D++"&=#"&=46;546;232  #"'#"$&6$ 
�
@
�

�
@
�
�������rK56$���܏���oo��o|W�@
�

�
@
�

��r��������jK&V|o��oo����ܳ�����0#!"&=463!2  #"'#"$&6$ 
��

@
�������rK56$���܏���oo��o|W�@

@
�r��������jK&V|o��oo����ܳ����)5 $&54762>54&'.7>"&5462z�����z��+i *bkQ��н�Qkb* j*����LhLLhL�����zz���Bm +*i J�yh��QQ��hy�J i*+ m��J��4LL4�4LL���/?O%+"&=46;2%+"&546;2%+"&546;2+"&546;2+"&546;2��������������`��r��@�@r�@��@����n4&"2#"/+"&/&'#"'&'&547>7&/.=46?67&'&547>3267676;27632�Ԗ����#H
	��,/
�1)�
~'H�
�(C
	�

�,/
�1)�	
�$H�
Ԗ�Ԗm�6%2X
%�	l�2
�k	r6

[21
�..9Q

$�
k�2
�k	
w3[20����/;Cg+"&546;2+"&546;2+"&546;2!3!2>!'&'!+#!"&5#"&=463!7>3!2!2@@@@@@���@�`�0
��
o`^B��B^`5FN(@(NF5 ��@��@��@���L%%Ju		�@�LSyuS�@�%44%�f5#!!!"&5465	7#"'	'&/&6762546;2�&�����&??�>

�L�L
>
� X ���
 � &���&��&AJ	A��	J
W���h��##!"&5463!2!&'&!"&5!�(8(��(88(�(`�x
��c�`(8��`(��(88(@(8(D��9�8(����� ,#!"&=46;46;2.  6 $$ ����@��������(�r���^����a�a�@@`��(��������_�^����a�a��2NC5.+";26#!26'.#!"3!"547>3!";26/.#!2W
�
��.�@

��

�@.�$S

�

S$�@

���9I


�
I6>
��
��>�%=$4&"2$4&"2#!"&5463!2?!2"'&763!463!2!2&4&&4&&4&&4�8(�@(88(ч:�:��(8���@6�@*&&*�4&&4&&4&&4& ��(88(@(8�88�8)�@�)'�&&�@���$0"'&76;46;232  >& $$ `
������������(���r���^����a�a`��		@`��2�������(���^����a�a�����$0++"&5#"&54762  >& $$ ^���
?@�����(���r���^����a�a���`?		����������(���^����a�a��
#!.'!!!%#!"&547>3!2�<�<�<_@`&��&�
5@5
�@����&&�>=(""��=���'#"'&5476.  6 $$ � ��  ! ��������(�r���^����a�a�J��	%�%���(��������_�^����a�a�����3#!"'&?&#"3267672#"$&6$3276&�@*���h��QQ��hw�I
�	m�ʬ����zz���k�)'�@&('��Q��н�Qh_
	�
��z�8�zoe����$G!"$'"&5463!23267676;2#!"&4?&#"+"&=!2762�@�h���k�4&&�&�G�a��F*�
&�@&��Ɇ�F*�
A��k�4&���nf�&�&&4�BH�rd�@&&4���rd
Moe�&�/?O_o+"&=46;25+"&=46;25+"&=46;2#!"&=463!25#!"&=463!25#!"&=463!24&#!"3!26#!"&5463!2�
@

@

@

@

@

@
�
�@

�

�@

�

�@

�
�
�@

�
�^B�@B^^B�B^`@

@
�@

@
�@

@
��@

@
�@

@
�@

@
�3@

��
M��B^^B@B^^��!54&"#!"&546;54 32@�Ԗ@8(�@(88( p (8�j��j��(88(@(8������8@���7+"&5&5462#".#"#"&5476763232>32@@
@
@KjK�ך=}\�I���&:�k�~&26]S
&H&�

�&H5KKu�t,4,�	&� x:;*4*&��K#+"&546;227654$ >3546;2+"&="&/&546$ �<��X@@Gv"D�����װD"vG@@X��<��4L4����1!Sk @ G<_b������b_<G �� kS!1����zz�� �"'!"&5463!62&4����&&M4&���&M&�&M& ��-"'!"&5463!62#"&54>4.54632&4����&&M4&�UF
&""""&
F���&M&�&M&���%/B/%���G-Ik"'!"&5463!62#"&54>4.54632#"&54767>4&'&'&54632#"&547>7676'&'.'&54632&4����&&M4&�UF
&""""&
FU��
&'8JSSJ8'&

����

&'.${��{$.'&

����&M&�&M&���%/B/%7���;&'6���6'&;��4�[&$
[2[
$&[��#/37#5#5!#5!!!!!!!#5!#5!5##!35!!!����������������������������������������������������������������������������#'+/37;?3#3#3#3#3#3#3#3#3#3#3#3#3#3#3#3#3????  ^��>>~??�??�??~??~??^??�^^?  ^??������������������������������������4&"2#"'.5463!2�KjKKjv%�'45%�5&5L4�5�&�%jKKjK�@5%�%%�%�5�4L5&�6'��k�54&"2#"'.5463!2#"&'654'.#32�KjKKjv%�'45%�5&5L4�5�&�%�%�'4$.�%%�5&�5�5�&�%jKKjK�@5%�%%�%�5�4L5&�6'45%�%�%54'�&55&�6'
��y�Tdt#!"&'&74676&7>7>76&7>7>76&7>7>76&7>7>63!2#!"3!2676'3!26?6&#!"3!26?6&#!"g(��sA�eM�,*$/
!'&
�JP��$G]��
x�6,&��`
��
h`
��
"9H�v@WkNC<.
&k&
("$p"	.
#u&#	%!'	pJ�vwEF�#

@

��

@

���2#"'	#"'.546763�!''!0#�G�G$/!''!�	
8"��"8
 ��X!	
8"	"8
	����<)!!#"&=!4&"27+#!"&=#"&546;463!232������(8���&4&&4�
�8(�@(8�
qO@8(�(`�(@Oq��8(��&4&&4&@�`
�(88(�
�Oq (8(�`(�q���!)2"&42#!"&546;7>3!2  I��j��j��j��j�3e55e3�gr������`��I�j��j��j�j��1GG1���r��������P2327&7>7;"&#"4?2>54.'%3"&#"#ժ!�9&W��B03&�K5�!�)V�?�@L��'�	
>R�>e;&L:�:%P�>��vO
'h�� N��_"�:-&+#
��:��	'	����+a%3 4'.#"32>54.#"7>7><5'./6$3232#"&#"+JBx)EB_I:I*CRzb3:dtB2P���$$5.3b�ZF�|\8!-T>5��Fu��\,�,j�n OrB,<!
5�4wJ]�?tTFi;
2�3j.�p^%/2�+
	S:T}K4W9: #ƕd�fE���:7>7676'5.'732>7"#"&#&#"OA
zj=N!�}:0e��%	y�
+t�D3�~U#B4#
g		'2
%/!:
���T	bRU,7����}%2"/&6;#"&?62+326323!2>?23&'.'.#"&"$#"#&=>764=464.'&#"&'�!~:~!PP!~:~!P��6�,�,$�$%*'
c2N 	
(�$"L��A2�3Yl�!x!*�%��%%��%��
p�P,T	NE	Q7^���oH!+(
3	 *Ue�eu
wg��a�32632$?23&'.5&'&#"&"5$#"#&=>7>4&54&54>.'&#"&'2#".465!#".'&47>32!4&4>Q6�,�,Faw!*'
=~Pl*	
(�$"L��A2�3Yl	�)�!*<7@@7<
�
<7@@7<
 p�P,T	MF
Q7�47ƢHoH!+(
3	 t���JHQ6wh��',686,'$##$',686,'$##$�/?%#!"&=463!2#!"&=463!2#!"&=463!2#!"&=463!2&��&&�&��&�&&&&�&&&��&��&&�&��&&�&&f�&&�&&f�&&�&&f�&&�&&�/?%#!"&=463!2#!"&=463!2#!"&=463!2#!"&=463!2&��&&�&��&��&&�&&��&&�&��&��&&�&��&&�&&f�&&�&&f�&&�&&f�&&�&&�/?%#!"&=463!2#!"&=463!2#!"&=463!2#!"&=463!2&��&&�&&�&&&&�&&&&��&&�&��&&�&&f�&&�&&f�&&�&&f�&&�&&�/?%#!"&=463!2#!"&=463!2#!"&=463!2#!"&=463!2&��&&�&&��&&�&&��&&�&&��&&�&��&&�&&f�&&�&&f�&&�&&f�&&�&&�/?O_o%+"&=46;2+"&=46;2+"&=46;2#!"&=463!2+"&=46;2#!"&=463!2#!"&=463!2#!"&=463!2
�

�

�

�

�

�

��

@
�
�

�

��

@

��

@

��

@
�

�
s�

�
s�

�
��

�
s�

�
��

�
s�

�
s�

�
�/?O#"'&47632#!"&=463!2#!"&=463!2#!"&=463!2#!"&=463!2�
	��		 	
�
�@

�

��

@

��

@

�@

�
�
	 		 	��

�
s�

�
s�

�
s�

�
�/?O#"&54632	#!"&=463!2#!"&=463!2#!"&=463!2#!"&=463!2`	��	

	 �
�@

�

��

@

��

@

�@

�
�	��	
@
	��	�

�
s�

�
s�

�
s�

�
#"'#!"&5463!2632'
�m�w�@w��w�w��
'���*��w��w�w��w������."&462!5	!"3!2654&#!"&5463!2�p�pp�p��@���

@
�^B��B^^B@B^�pp�p���@�@� 
�@

�
 �@B^^B�B^^���k%!7'34#"3276'	!7632k[�[�v
��
6����`�%��`�$65&�%[�[k����
�`����5%���&&�'���4&"2"&'&54 �Ԗ���!��?H?��!,�,Ԗ�ԖmF��!&&!Fm�,�����%" $$ ���������^����a�a`@������^����a�a���-4'.'&"26% 547>7>2"KjK��X��QqYn	243nYqQ�$!+!77!+!$5KK���,ԑ�	���]""]ً�	��9>H7'3&7#!"&5463!2'&#!"3!26=4?6	!762xt�t` �� ^Q�w��w��w@?61��B^^B@B^	@(` �`��\\��\P�`t�t8`� �� ^�Ͼw��w@w�1^B��B^^B~
	@��` \ \�P�+Z#!"&5463!12+"3!26=47676#"'&=# #"'.54>;547632��w��w��w�
M8
pB^^B@B^�
'���sw-

9*##;No��j�'
�#��w��w@w�
"^B��B^^B�

	��*�����
"g`�81T`PSA:'�*��4�/D#!"&5463!2#"'&#!"3!26=4?632"'&4?62	62��w��w��w@?61

��B^^B@B^	@

��B�RnB�Bn^��w��w@w�1
^B��B^^B�
	@
���Bn���nB�C"&=!32"'&46;!"'&4762!#"&4762+!5462�4&���&�4�&���&4�4&��&4&��&4�4�&���&4�4&��&4&��&4�4&���&����6'&'+"&546;267��:	&�&&�&	s�@�	
�Z&&�&&�Z
	���+6'&''&'+"&546;267667��:	�:	&�&&�&	�	s�@�	
�:�	
�Z&&�&&�Z
	��:
	z����6'&''&47667S�:	�:�	s�@�	
�:�4��:
	�|�	&546h��!!0a�
�
�
$���#!"&5463!2#!"&5463!2&�&&&��&�&&&@��&&�&&��&&�&&���#!"&5463!2&��&&�&@��&&�&&���&54646&5-�	��:	s��:	
��:4�:�
	���+&5464646;2+"&5&5-�	�	&�&&�&	�:	s��:	
��:	
�&&��&&�
	�:�
	���&54646;2+"&5-�	&�&&�&	s��:	
�&&��&&�
	62#!"&!"&5463!2�4��@��&&�&&-��:��&&&�&�����	"'&4762����4��4����4��4��4Z��f�	"/&47	&4?62S�4����4����44��4���#/54&#!4&+"!"3!;265!26 $$ �&�&�&�&&&�&&@���^����a�a@�&&&�&�&�&&&+�^����a�a�����54&#!"3!26 $$ �&�&&&@���^����a�a@�&&�&&+�^����a�a�����+74/7654/&#"'&#"32?32?6 $$ }��Z��Z��Z��Z����^����a�a���Z��Z��Z��Z�^����a�a�����#4/&"'&"327> $$ [4�h�4[j����^����a�a"Z�i�Z��J�^����a�a�����:F%54&+";264.#"32767632;265467>$ $$ ���o�W��	5!"40K(0?i�+! ":����^����a�a����X�R�dD4!&.uC$=1/J=�^����a�a�����.:%54&+4&#!";#"3!2654&+";26 $$ `��``��������^����a�a�����������^����a�a�����/_#"&=46;.'+"&=32+546;2>++"&=.'#"&=46;>7546;232�m&&m �l&�&l� m&&m �l&�&l�s&�%�&�&��%�&&�%�&�&��%�&&�&l� m&&m �l&�&l� m&&m �,�&��%�&&�%�&�&��%�&&�%�&���#/;"/"/&4?'&4?627626.  6 $$ I�

��

�

��

�

��

�

��
͒������(�r���^����a�aɒ

��

�

��

�

��

�

��
(��������_�^����a�a����� ,	"'&4?6262.  6 $$ ��Z4��f4�4fz�������(�r���^����a�a�Z&4f�f4�(��������_�^����a�a�����	"4'32>&#" $&6$  W���oɒV�󇥔�� z�����zz�8�����YW�˼�[����?����zz�:�zz�@�5K #!#"'&547632!2A4�@%&&K%54'�u%%�&54&K&&���4A��5K��$l$L%%�%54'�&&J&j&��K�5�K #"/&47!"&=463!&4?632�%�u'43'K&&%�@4AA4���&&K&45&�%@6%�u%%K&j&%K5�5K&$l$K&&�u#5��K@!#"'+"&5"/&547632K%K&56$��K5�5K��$l$K&&�#76%�%53'K&&%�@4AA4���&&K&45&�%%�u'5��K�"#"'&54?63246;2632K%�u'45%�u&&J'45%&L4�4L&%54'K%�5%�t%%�$65&K%%���4LL4�@&%%K'���,"&5#"#"'.'547!3462�4&�b��qb>#5���&4�4�&6Uu�e7D#		"�dž�&����/#!"&546262"/"/&47'&463!2�
���&�@&&4�L

r&4���

r

L�&�&�
���4&&�&�L

rI�@&���

r

L�4&&
���s/"/"/&47'&463!2#!"&546262&4���

r

L�&�&�
���&�@&&4�L

r@�@&���

r

L�4&&�
���4&&�&�L

r��##!+"&5!"&=463!46;2!2�8(�`8(�(8�`(88(�8(�(8�(8 �(8�`(88(�8(�(8�(88(�`8��#!"&=463!2�8(�@(88(�(8 �(88(�(88z���5'%+"&5&/&67-.?>46;2%6�.@g.��L4�4L��.g@.
��.@g.
L4�4L
.g@.���g.n.���4LL43�.n.g��g.n.�34LL4�͙.n.g����-  $54&+";264'&+";26/�a����^�����
�

�


�

�����^����a�a��
�
fm��
@
J%55!;263'&#"$4&#"32+#!"&5#"&5463!"&46327632#!2���$�$�8�~+(88�8(+}�(�`8(��(8`�]��]k=��=k]��]��8���,8e�8P88P8�����`(88(�@���M��M����N4&#"327>76$32#"'.#"#"&'.54>54&'&54>7>7>32&����z&^��&.������/+>+)>J>	W��m7����'
'"''? &4&c��&^|h_b��ml/J@L@#*
#M6:D
35sҟw$	'%
'	\�t��3#!"&=463!2'.54>54''�
��

@
�1O``O1CZ��Z71O``O1BZ��Z7�@

@
N�]SHH[3`�)Tt��bN�]SHH[3^�)Tt���!1&' 547 $4&#"2654632 '&476 ���=������=嘅�����}�(zVl��'��'���ٌ@�uhy����yhu����9(�}Vz��D#���#D#�������	=CU%7.5474&#"2654632%#"'&547.'&476!27632#76$7&'7+NWb=嘧�}�(zV�j�\i1
z,��X��
Y[6
$!%���'F��u�J�iys�?_�9ɍ?�kyhu�n(�}Vz����YF
KA؉L�a
�0��2�-�F"@Q���sp@�_���!3%54&+";264'&+";26#!"&'&7>2
�

�


�
�
#%;"�";%#<F<������7


���??""??�$$ll2#"'&'	+&/&'&?632	&'&?67>`,@L�����5
`		��
`	�����L�`4�L��H`
����`	��
a	5�
��L@��#37;?Os!!!!%!!!!%!!!!!!!!%!!4&+";26!!%!!!!74&+";26%#!"&546;546;2!546;232� ��`@���� ��`@���� ���@����@�� ��@����
@

@
� ��@��� �� 
@

@
�L4��4LL4�^B@B^�^B@B^�4L� �� @@��@@ � � � @@  

��
��@@ �� � 

��
M�4LL44L`B^^B``B^^B`L���7q.+"&=46;2#"&=".'673!54632#"&=!"+"&=46;2>767>3!54632�<M33K,��	��	
 j8Z4L2B4:;M33K,?		��	
�0N<* .)C=W]xD��0N<* .)C=W]xD?\�-7H)��	��	
�".=']�-7H)�
��w	��	
�<?.>mBZxPV3!�<?.>mBZxPV3!�
���&#"'&'5&6&>7>7&54>$32�d�FK��1A
0)����L���.���٫�C58.H(Y���e����#3C $=463!22>=463!2#!"&5463!2#!"&5463!2���H���&�&/<R.*.R</&�&�&��&&�&&��&&�&������Bɀ&&�4L&&L4�&&f��&&�&&��&&�&&Z� %"'	"/&4762��4���4��4�ͥ���5��5Z����	"'&4?62	62��4��44���5����5��%K%#!".<=#"&54762+!2"'&546;!"/&5463!232
�@�&@<@&�@	����:��&���	�
��& 

��&���&���
����&��	

��`&���:$"&462"&462!2#!"&54>7#"&463!2!2�LhLLh�LhLLh�!��
�&&�&��&&�&4hLLhLLhLLhL��%z<
0&4&&)17&4&
&&��#!"&5463!2!2��\�@\��\@\��\���@\��\�\��\ �W�*#!"&547>3!2!"4&5463!2!2W��+�B��"5P+�B@"5����^�=���\@\� \�H#�t3G#�3G:�_H�t�\��\ �@��+32"'&46;#"&4762�&��&�4�&��&4�4&�&4�4&&4�@�"&=!"'&4762!5462�4&�&4�4&&4�4�&��&4&��&����
!!!3!!��������������������������0@67&#".'&'#"'#"'32>54'6#!"&5463!28ADAE=\W{��O[/5dI
kDt���pČe1?*�w�@w��w�w��	(M&
B{Wta28r=Ku?RZ^Gw��T	-�@w��w�w�����$2+37#546375&#"#3!"&5463�w��w���/Dz?s�����w��w��w�@w�S�88�	�����w�w����#'.>4&#"26546326"&462!5!&  !5!!=!!%#!"&5463!2�B^8(�Ԗ���������>��������@�|�K5�5KK55K�^B(8Ԗ�Ԗ�€>�������v����5KK55KK�H��G4&"&#"2654'32#".'#"'#"&54$327.54632@p�p)*Ppp�p)*P�b	'"+`�N*(�a���;2��̓c`." b
PTY9��ppP*)p�ppP*)�b ".`�(*N��ͣ�2�ͣ����`+"'	b
MRZB�����4&"24&"264&"26#"/+"&/&'#"'&547>7&/.=46?67&'&547>3267676;27632#"&'"'#"'&547&'&=4767&547>32626?2#"&'"'#"'&547&'&=4767&547>32626?2��Ԗ���LhLKjKLhLKjK��	�"8w
s%(�")v

�
>�
	�"8x
s"+�")v
�<�
��3zLLz3��
3>8L3)x3
��3zLLz3��
3>8L3)x3
�Ԗ�Ԗ�4LL45KK54LL45KK���
#)0C	wZl/
�
Y�	
N,&�
#)0C	vZl.
�
Y�L0"��qG^^Gq�q$ ]G)Fq�qG^^Gq�q$ ]G)Fq��%O#"'#"&'&4>7>7.546$ '&'&'# '32$7>54'�����VZ|�$2$
|��E~E<�|
$2$�|ZV���:�(t}�������X(	
&%(H�w�쉉��x�H(%&	(X�ZT\�MKG���<m$4&"24&#!4654&#+32;254'>4'654&'>7+"&'&#!"&5463!6767>763232&4&&4�N2��`@`%)7&,$)'  
%/0Ӄy�#5 +�1	&<��$]`�{t��5KK5$e:1&+'3T�F0�h��4&&4&�3M:�;b^v�+D2 5#$��I�IJ 2E=\$YJ!$MCeM��-+(K5�5K�K5y�*%A�u]c���>q4&"24&'>54'654&'654&+"+322654&5!267+#"'.'&'&'!"&5463!27>;2&4&&4�+ 5#bW���0/%
  ')$,&7)%`@``2N��h�0##�T3'"(0;e$��5KK5 t��ip��<&	1&4&&4&�#\=E2&%IURI��$#5 2D+�v^b;�:M2g�c]vDEA%!bSV2M�K5�5K(,,��MeCM$!I��@�#"&547&547%6@�?V��8������b%	I�)���94.""'."	67"'.54632>32�+C`\hxeH>Hexh\`C+�ED���4��
#L</��>�oP$$Po�>��Q|I.3MCCM3.I|Q����/����Z$_d�C�+I@$$@I+� (@%#!"&5463!2#!"3!:"&5!"&5463!462�
��w��w@

��B^^B 
���4&�@&&�&4 ` 
�w�w�
 
^B�@B^24��& &�& &�����%573#7.";2634&#"35#347>32#!"&5463!2���FtIG9;HI�x�I��<,tԩw�@w��w�w�z��4DD43EE�����ueB���&#1�s�@w��w�w�����.4&"26#!+"'!"&5463"&463!2#2��&�S3L�l&�c4LL4�4LL4c����@��&��&{�LhLLhL��'?#!"&5463!2#!"3!26546;2"/"/&47'&463!2��w��w��w��@B^^B@B^@�&4��t

r

��&&`��w��w@w�@^B��B^^B@R�&��t

r

��4&&@"&5!"&5463!462	#!"&54&>3!2654&#!*.54&>3!2���4&�@&&�&4 s�w��

@B^^B��

@w��4��& &�& &��3�@w�
 
^B�B^ 
�����
I&5!%5!>732#!"&=4632654&'&'.=463!5463!2!2�J���J���S��q*5&=CKu��uKC=&5*q͍S8( ^B@B^ (8���`N��`Ѣ�΀G�tO6)"M36J[E@@E[J63M")6Ot�G�(8`B^^B`8	���',2��6'&'&76'6'&6&'&6'&4#"7&64 654'.'&'.63226767.547&7662>76#!"&5463!2		/[		.
=���X��Ě4,+"*+, 1JH'5G:�:#L5+@=&#���w�@w��w�w�P.1GE�,��ԧ��44+	;/5cFO:>JJ>:O9W5$@(b4��@w��w�w������'?$4&"2$4&"2#!"&5463!3!267!2#!#!"&5!"'&762&4&&4&&4&&4�8(�@(88(�c==c�(8��*�&�&�*�6�&4&&4&&4&&4& ��(88(@(88HH88`(�@&&�('��@����1c4&'.54654'&#"#"&#"32632327>7#"&#"#"&54654&54>76763232632


	N<�;+gC8�A`1a9�9�g��w����|�9�8aIe$I�VN��z<�:LQJ
�,�-[%	061I��(�)W,$-������7,oIX(�)o�ζA;=N0
eTZ
	 (���O#".'&'&'&'.54767>3232>32�e^\4?P	bM��O0#382W#& 9C9
Lĉ"	82<*9FF(W283#0OMb	P?4\^eFF9*<28	"��L
9C9 &#��!"3!2654&#!"&5463!2`��B^^B@B^^ީw��w��w@w�^B��B^^B@B^���w��w@w�����#!72#"'	#"'.546763���YY�!''!0#�G�G$/!''!�&�UU�jZ	
8"��"8
 ��X!	
8"	"8
	���GW4.'.#"#".'.'.54>54.'.#"32676#!"&5463!2 1.-
+$)
c�8
)1)

05.D
<9�0)$9��w�@w��w�w�W

)1)
7�c
)$+
-.1 �9$)0���<
D.59�@w��w�w��,T1# '327.'327.=.547&54632676TC_L��Ҭ���#+�i�!+*p�DNBN,y[����`m`%i]hbE����m��}a�u&,�SXK��
&$��f9s?
_���#"!#!#!54632��V<%'����Э��HH���	�(ں����T\dksz�� &54654'>54'6'&&"."&'./"?'&546'&6'&6'&6'&6'&74"727&6/�a���49[aA)O%-j'&]�]5r-%O)@a[9'
0BA;+


>HC���U


	#	
	
$				2	
AC: �����oM�=a-6O�UwW[q	( -	q[WwU�P6$C

+) (	
8&/
&eM���a�	
&
$	

��%+"&54&"32#!"&5463!54 �&@&�Ԗ`(88(�@(88(�r��&&j��j�8(��(88(@(8��������#'+2#!"&5463"!54&#265!375!35!�B^^B��B^^B
�

��
`���^B�@B^^B�B^�
��
�
`��
�������!="&462+"&'&'.=476;+"&'&$'.=476;�p�pp�p�$���!�$qr�
�%���}�#ߺ���pp�p��!�E$�
�rq�ܢ#���
%�
ֻ��!)?"&462"&4624&#!"3!26!.#!"#!"&547>3!2/B//B//B//B�
�@

�
�2�����^B�@B^�\77\�aB//B//B//B/�@

��
��

�~��B^^B@2^5BB5��2���.42##%&'.67#"&=463! 2�5KK5L4�_�u:B&1/&��.-
zB^^B���4L��v��y�KjK��4L[!^k'!A3;):2*�<vTq6^B�B^�L4�$���)��*@��A4#"&54"3!4."#!"&5!"&5>547&5462�;U gI�v��0Z���Z0�L4�@�Ԗ�@4L2RX='�8P8��'=XR� U;Ig0,3lb??bl3���4Lj��jL4*\���(88(�����\���}I/#"/'&/'&?'&'&?'&76?'&7676767676`�
(�5)�0
)��*)
0�)5�(
��
(�5)�0
))��))
0�)5�(
��*)
0�)5�(��
)�5)�0
)*��*)
0�)5�)
��
)�5)�0
)*���5h$4&"24&#!4>54&#"+323254'>4'654&'!267+#"'&#!"&5463!2>767>32!2&4&&4�N2��$YGB
(HGEG  H��Q�#5K4L��i�!<�����;��5KK5 
A#
("/?&}�vh��4&&4&�3M95S+C=�,@QQ9��@@�IJ 2E=L5i�>9eM��E;K5�5K	J7R>@#�zD<����5=q%3#".'&'&'&'.#"!"3!32>$4&"2#!"#"&?&547&'#"&5463!&546323!2`  #A<(H(GY$��2NL4K5#aWTƾh&4&&4�K5��;����=!�i��hv�}&?/"(
#A
 5K��2*!	Q@.'!&=C+S59M34L=E2 JI UR@@&4&&4&���5K;E��Lf9>�ig�<Dz�#@>R7J	K�5h4&"24#"."&#"4&#"".#"!54>7#!"&54.'&'.5463246326326&4&&4��IJ 2E=L43M95S+C=�,@QQ9�@@�E;K5��5K	J7R>@#�zD<�gi�>9eM��Z4&&4&<�#5K4LN2��$YGB
(HGEG  H��V���;��5KK5 
A#
("/?&}�vh��i�!<��4<p4.=!32>332653272673264&"2/#"'#"&5#"&54>767>5463!2�@@��2*!	Q@.'!&=C+S59M34L.9E2 JI UR�&4&&4&��Lf6A�ig�6Jy�#@>R7J	K5�5K;E@TƾH  #A<(H(GY$��2NL4K#5#a=4&&4&�D��=�i��hv�}&?/"(
#A
 5KK5��;�����+54&#!764/&"2?64/!26 $$ &�
�[6��[[j6[��&���^����a�a@�&�4[��[6[��[6�&+�^����a�a�����+4/&"!"3!277$ $$ [��6[��
&&��[6j[
���^����a�ae6[j[6�&�&�4[j[��^����a�a�����+4''&"2?;2652?$ $$ ��[6[��[6�&�&�4[���^����a�af6j[[��6[��
&&��[��^����a�a�����+4/&"4&+"'&"2? $$ [6�&�&�4[j[6[j���^����a�ad6[��&&�
�[6��[[j��^����a�a������  $2>767676&67>?&'4&'.'.'."#&6'&6&'3.'.&'&'&&'&6'&>567>#7>7636''&'&&'.'"6&'6'..'/"&'&76.'7>767&.'"76.7"7"#76'&'.'2#22676767765'4.6326&'.'&'"'>7>&&'.54>'>7>67&'&#674&7767>&/45'.67>76'27".#6'>776'>7647>?6#76'6&'676'&67.'&'6.'.#&'.&6'&.5/�a����^����D&"	


	4
	$!	#
	
		
	



 
.0"�Y
	+


!	
	

$	
	"
+


		
	�Α	
		
����^����a�a��

	

			
	

	

		
	
		P� '-(	#	*	$

"
!				
*
!	

(				

	
��$�
		
2
�~�/$4&"2	#"/&547#"32>32�&4&&4��V%54'j&&�'��/덹���:,���{	&4&&4&�V%%l$65&�b��'C��r!"��k[G�+;%!5!!5!!5!#!"&5463!2#!"&5463!2#!"&5463!2����������&��&&�&&��&&�&&��&&�&�������@�&&&&�&&&&�&&&&��{#"'&5&763!2{�'
��**�)��*��)'/!5!#!"&5!3!26=#!5!463!5463!2!2���^B�@B^�&@&`��^B`8(@(8`B^��� B^^B�&&�����B^�(88(�^���G	76#!"'&?	#!"&5476	#"'&5463!2	'&763!2#"'��c�)'&�@*������*�@&('�c���(&�*�cc�*�&'
����*�@&('�c���'(&�*�cc�*�&('���c�'(&�@*��19AS[#"&532327#!"&54>322>32"&462 &6 +&'654'32>32"&462Q�g�Rp|Kx;CB��y��y� 6Fe=
BP���PB
=eF6 ��Ԗ��V����>!pR�g�QBC;xK|��Ԗ���{QNa*+%��x��x5eud_C(+5++5+(C_due2Ԗ�Ԗ�����>�NQ{u�%+*jԖ�Ԗ��p�!Ci4/&#"#".'32?64/&#"327.546326#"/&547'#"/&4?632632��(* 8(!�)(��A�('��)* 8(!U�SxyS�SXXVzxT�TU�SxyS�SXXVzxT�@(� (8 *(���(��'(�(8 ���S�SU�Sx{VXXT�T�S�SU�Sx{VXXT���#!"5467&5432632�������t,Ԟ;F`j�)��������6�,��>�jK?�s��
�!%#!"&7#"&463!2+!'5#�8Ej��jE8�@&&&&@������XYY�&4&&4&�qD�S�%��q%��N\jx��2"&4#"'#"'&7>76326?'&'#"'.'&676326326&'&#"32>'&#"3254?''7�4&&4&l��
�NnbS���VZbR��SD	
zz
	DS��Rb)+U���Sbn�
��\.2Q\dJ'.2Q\dJ.Q2.'Jd\Q2.'Jd`!O�`��	`�����&4&&4�r$#@�B10M�5TNT{L�5T
	II	
T5�L;l'OT4�M01B�@#$�*�3;$*�3;�;3�*$;3�*$�:$/� @@�Qq`��@���"%3<2#!"&5!"&5467>3!263!	!!#!!46!#!�(88(�@(8��(8(�`(�(8D<���+����+�<��8(�`(��8(�`�8(�@(88( 8(�(`�(8(��(������<��`(8��(`����`(8����||?%#"'&54632#"'&#"32654'&#"#"'&54632|�u�d��qܟ�s]
=
��Ofj�L?R@T?��"&�
>
�f?rRX=Ed�u�ds���q��
=
_M�jiL��?T@R?E& �f
>
�=XRr?��b���!1E)!34&'.##!"&5#3463!24&+";26#!"&5463!2����
��
08(��(8��8(@(8��
�

�
�8(��(88(�(`(����1

�`(88(���(88(@

��
�`(88(@(8(��`���#!"&5463!2�w�@w��w�w�`�@w��w�w��/%#!"&=463!2#!"&=463!2#!"&=463!2&��&&�&&��&&�&&��&&�&��&&�&&�&&�&&�&&�&&��@'7G$"&462"&462#!"&=463!2"&462#!"&=463!2#!"&=463!2�p�pp�pp�pp��
�@

�
��p�pp��
�@

�

�@

�
Рpp�p��pp�p���

�
�pp�p���

�
�

�
��<L\l|#"'732654'>75"##5!!&54>54&#"'>3235#!"&=463!2!5346=#'73#!"&=463!2#!"&=463!2}mQjB919+i1$AjM_3<��/BB/.#U_:IdDRE�
�@
�
����k*G�j�
�@
�

�@

�
TP\BX-@8
C)5�XsJ@�$3T4+,:;39SG2S.7<���

�vcc)�)%L�l�}�

��

�
���5e2#!"&=463%&'&5476!2/&'&#"!#"/&'&=4'&?5732767654'&��@�0��2uBo
T25XzrDCBB�Eh:%��)0%HPIP{rQ�9f#-+>;I@KM-/Q"�@@@#-bZ��$&P{<�8[;:XICC>.�'5oe80#.0(
l0&%,"J&9%$<=DTI���cs&/6323276727#"327676767654./&'&'737#"'&'&'&54'&54&#!"3!260%
<4�"VRt8<@<
-#=XYhW8+0$"+dT�Lx-'I&JKkm��uw<=V�@�!X@		v
'��|N;!/!$8:I�Ob�V;C#V

&
(���mL.A:9 !./KLwP�M�$��@@
��/?O_o��%54&#!"3!2654&#!"3!2654&#!"3!2654&#!"3!2654&#!"3!2654&#!"3!2654&#!"3!2654&#!"3!2654&#!"3!26#!"&5463!2��@��@��@���@��@��@���@��@��@�^B��B^^B@B^�����������������������������N��B^^B@B^^���#+3	'$"/&4762%/?/?/?/?�%k��*��6�6��bbbb|��<<��<�bbbb��bbbb�%k���6���6Ƒbbb��<<��<<�^bbbbbb@��M$4&"2!#"4&"2&#"&5!"&5#".54634&>?>;5463!2�LhLLh����
	�	LhLLhL!'�Ԗ���Ԗ@'!&	
�?�&&LhLLhL�	�	
��hLLhL��	j��jj��j	&@6/"
��&&���J#"'676732>54.#"7>76'&54632#"&7>54&#"&54$ ���ok;	-j=y�hw�i�[+PM3ѩ���k=J%62>Vc��a�aQ�^��� ]G"�'9��r�~:`}�Ch�  0=Z�٤���W=#uY2BrUI1�^Fk[|��a�����L2#!67673254.#"67676'&54632#"&7>54&#"#"&5463�w��w�+U	,i<��F{�jh�}Z+OM

2ϧ���j<J%51=Ub�w��w��w�@w�zX"�'8'�T�yI9`{�Bf� 
,>X�բ���W<"uW1AqSH1�bd��w�w����'74'!3#"&46327&#"326%35#5##33#!"&5463!2����0U6c��c\=hl���ࠥ�Ymmnnnn�w�@w��w�w�w&�46#�Ȏ;ed����wnnnnn��@w��w�w����	]#/#"$&6$3 &#"32>7!5!%##5#5353����Е���tt����u�{�zz�{S�ZC�`�c�����o���t�*�t��q|��|.EXN#�??�������,<!5##673#$".4>2"&5!#2!46#!"&5463!2��r�M*
�*M~�~M**M~�~M*j����jj����&�&&&�`��P%��挐|NN|���|NN|�*�jj���jj�@��&&�&&@�
"'&463!2�@4�@&�Z4�@�4&@
#!"&4762&��&�4�Z4&&4��@@���
"'&4762�&4�@�4&@��&�4�&�@�
"&5462@�@4&&4��4�@&�&�@����
3!!%!!26#!"&5463!2�`��m��`
�^B��B^^B@B^���
 `���@B^^B�B^^��@
"'&463!2#!"&4762�@4�@&�&&��&�4��4�@�4&Z4&&4��@��
"'&463!2�@4�@&��4�@�4&@
#!"&4762&��&�4�Z4&&4��@��:#!"&5;2>76%6+".'&$'.5463!2^B�@B^,9j�9Gv33vG9�H9+bI��\
A+=66=+A
[��">nSM�A_:��B^^B1&�c*/11/*{�'VO�3��@/$$/@�*�?Nh^��l+!+"&5462!4&#"!/!#>32]��_gTRdg�d���QV?U��I*Gg?����!�2IbbIJaa���iwE33����00� 08����4#"$'&6?6332>4.#"#!"&54766$32z�䜬��m�
I�wh��QQ��hb�F�*�@&('�k�������z��
�	
_hQ��н�QGB�'(&�*�eoz�(���q!#"'&547"'#"'&54>7632&4762.547>32#".'632�%k'45%��&+�~(
(�h		&

\(
(�		&

~+54'k%5%l%%l$65+~

&		�(
(\

&		�h(
(~�+%��'��!)19K4&"24&"26.676&$4&"24&"24&"2#!"'&46$ �KjKKjKjKKj�e2.e<^P��,bKjKKj��KjKKjKjKKj��#��#���LlL�KjKKjKjKKjK��~-��M<M�(PM<rjKKjK�jKKjKujKKjK�������L���< 6?32$6&#"'#"&'5&6&>7>7&54$ L�h��я�W.�{+9E=�c��Q�d�FK��1A
0)���������p�J2`[Q?l&������٫�C58.H(Y��'����:d 6?32$64&$ #"'#"&'&4>7>7.546'&'&'# '32$7>54'Y����j`a#",5NK�
����~E�����VZ|�$2$
|��:
$2$�|ZV���:�(t}�����h�fR�88T
h�̲����X(	
&%(H�w��(%&	(X�ZT\�MKG�{x��|�!#"'.7#"'&7>3!2%632u��

�j
�H����{(e9
�1b���U#!"&546;5!32#!"&546;5!32#!"&546;5463!5#"&5463!2+!2328(��(88(`�`(88(��(88(`�`(88(��(88(`L4`(88(@(88(`4L`(8 ��(88(@(8��8(��(88(@(8��8(��(88(@(8�4L�8(@(88(��(8�L4�8����OY"&546226562#"'.#"#"'.'."#"'.'.#"#"&5476$32&"5462��И&4&NdN!>!
1X:Dx++w�w++xD:X1
-�U��
�!�*,*&4&��h��h&&2NN2D&

..J<
$$
<JJ<
$$
<J..

��P���bb&&�7!!"&5!54&#!"3!26!	#!"&=!"&5463!2��`(8��
�@

�
+��8(�@(8��(88(@(8�(��8(� @

@
�m+�U�`(88(�8(@(88(��
�h`���(\"&54&#"&46324."367>767#"&'"&547&547&547.'&54>2�l4

2cK�Eo���oED
)
�
�
�
)
D�g-;</-
?.P^P.?
-/<;-gY�����Y�

.2 L4H|O--O|HeO,����,Oe�q1Ls26%%4.2,44,2.4%%62sL1q�c�qAAq����4#!#"'&547632!2#"&=!"&=463!54632
��
��		@	
`
	��	
��

`?`�
�

@	
	@	
�!	��	
�
�
�
����54&+4&+"#"276#!"5467&5432632�
�
�
	`		_
�������v,Ԝ;G_j�)��``

��
	��		_ԟ����7
�,��>�jL>���54'&";;265326#!"5467&5432632	��		��
�
�
�
�������v,Ԝ;G_j�)���	`		����

`������7
�,��>�jL>�����X`$"&462#!"&54>72654&'547 7"2654'54622654'54&'46.' &6 �&4&&4&�y��y�%:hD:Fp�pG9�F�j� 8P8 LhL 8P8 E;
Dh:%������>�4&&4&}y��yD~�s[4D�d=PppP=d�>hh>@�jY*(88(*Y4LL4Y*(88(*YDw"
A4*[s�~����>�����M4&"27 $=.54632>32#"' 65#"&4632632 65.5462&4&&4�G9��������&
<#5KK5!��!5KK5#<
&ܤ��9Gp�p&4&&4&@>b�u��ោؐ&$KjK�nj��j�KjK$&����j��j�b>Ppp���
%!5!#"&5463!!35463!2+32����@\��\���8(@(8�\@@\������\@\���(88(��\��@��34#"&54"3#!"&5!"&5>547&5462�;U gI@L4�@�Ԗ�@4L2RX='�8P8��'=XR� U;Ig04Lj��jL4*\���(88(�����\��@"4&+32!#!"&+#!"&5463!2�pP@@P���j�j�@�@�\�@\�&��0�p����j��	��� \��\�&��-B+"&5.5462265462265462+"&5#"&5463!2�G9L4�4L9G&4&&4&&4&&4&&4&L4�4L�
��&���=d��4LL4d=�&&�`&&�&&�`&&�&&��4LL4
 ��&�#3CS#!"&5463!2!&'&!"&5!463!2#!"&52#!"&=4632#!"&=463�(8(��(88(�(`�x
��c�`(8���@��@��@�`(��(88(@(8(D��9�8(��`@�@@�@@��/?O_o��������-=%+"&=46;25+"&=46;2+"&=46;2%+"&=46;2+"&=46;2%+"&=46;2%+"&=46;2%+"&=46;2+"&=46;2%+"&=46;2%+"&=46;2%+"&=46;2+"&=46;2%+"&=46;2%+"&=46;2+"&=46;2%+"&=46;2+"&=46;2!!!5463!2#!"&5463!2�
@

@

@

@

@

@
�
@

@

@

@
�
@

@
�
@

@
�
@

@

@

@
�
@

@
�
@

@
�
@

@

@

@
�
@

@
�
@

@

@

@
�
@

@

@

@
�����
@
&�&&&�@

@
�@

@

@

@
�@

@
��@

@
�@

@
�@

@
�@

@
��@

@
�@

@
�@

@
�@

@
��@

@
�@

@
�@

@
��@

@
�@

@

@

@
����

`��&&�&&
��/?O_o�����%+"&=46;25+"&=46;2+"&=46;2%+"&=46;2+"&=46;2%+"&=46;2%+"&=46;2+"&=46;2%+"&=46;2+"&=46;2!!#!"&=!!5463!24&+"#54&+";26=3;26%#!"&5463!463!2!2�
@

@

@

@

@

@
�
@

@

@

@
�
@

@
�
@

@

@

@
�
@

@

@

@
���8(�@(8��
@

@
�
@

@
�
@
&�&&@8(�(8@&�@

@
�@

@

@

@
�@

@
��@

@
�@

@
�@

@
��@

@
�@

@

@

@
��� (88( ���

�@

``

��

``
-�&&& (88(��&@����<c$4&"2!#4&"254&+54&+"#";;26=326+"&5!"&5#"&46346?>;463!2�KjKKj�����KjKKj�������&��Ԗ���Ԗ�&&�@�&�&KjKKjK��
��jKKjK ������.��&j��jj��j&4&�@�@&&���#'1?I54&+54&+"#";;26=326!5!#"&5463!!35463!2+32����������� \��\����8(@(8�\  \����������\@\���(88(��\����:
#32+53##'53535'575#5#5733#5;2+3����@��E&&`�@@��`  ����  `��@@�`&&E%@�`��@ @ @��		 �� � � � �� 		��@ 0
@��!3!57#"&5'7!7!��K5�������@ � � @���5K�@����@@��� �����#3%4&+"!4&+";265!;26#!"&5463!2&�&�&�&&�&&�&�w�@w��w�w���&&��@&&��&&@��&&��@w��w�w�����#354&#!4&+"!"3!;265!26#!"&5463!2&��&�&��&&@&�&@&�w�@w��w�w�@�&@&&��&�&��&&@&:�@w��w�w��-M�3)$"'&4762	"'&4762	s
2

�.

�

2

�w��
2

�.

�

2

�w��
2

�

�

2

�w�w

2

�

�

2

�w�w
M�3)"/&47	&4?62"/&47	&4?62S
�.

2

��w

2

��
�.

2

��w

2

�M
�.

2

��

2

�.

�.

2

��

2

�.M�3S)$"'	"/&4762"'	"/&47623
2

�w�w

2

�

�

2

�w�w

2

�

��
2

��w

2

�

�.v
2

��w

2

�

�.M�3s)"'&4?62	62"'&4?62	623
�.

�.

2

��

2

�.

�.

2

��

2�
�.

�

2

�w�

2v
�.

�

2

�w�

2-Ms3	"'&4762s
�w�

2

�.

�

2�
�w�w

2

�

�

2
MS3"/&47	&4?62S
�.

2

��w

2

�M
�.

2

��

2

�.M
3S"'	"/&47623
2

�w�w

2

�

�m
2

��w

2

�

�.M-3s"'&4?62	623
�.

�.

2

��

2-
�.

�

2

�w�

2���/4&#!"3!26#!#!"&54>5!"&5463!2
��

@
�^B��  &�&  ��B^^B@B^ @

��
M��B^%Q=
&&<P&^B@B^^�+3"&5463!2#3!2654&#!"3#!"&=324+"3�B^^B@B^^B��
@

��
`�^B��B^�p�^B�B^^B�@B^`�@

�
�S`(88(``  ��'$4&"2%4&#!"3!26#!"&5463!2�&4&&4�
��

@
�^B��B^^B@B^f4&&4&��

�@
��B^^B@B^^/$4&"2%4&#!"3!264+";%#!"&5463!2�/B//B�
�


���0L4�4LL44L_B//B/��

�@
M   �4LL44LL���  >& $$ ������(���r���^����a�a��������(���^����a�a����!C#!"&54>;2+";2#!"&54>;2+";2pP��PpQ��h@&&@j�8(�Pp�pP��PpQ��h@&&@j�8(�Pp@��PppP�h��Q&�&�j (8pP��PppP�h��Q&�&�j (8p��!C+"&=46;26=4&+"&5463!2+"&=46;26=4&+"&5463!2Q��h@&&@j�8(�PppP�Pp�Q��h@&&@j�8(�PppP�Pp��@h��Q&�&�j (8pP�PppP�@h��Q&�&�j (8pP�Ppp@�@�	#+3;G$#"&5462"&462"&462#"&462"&462"&462"&462#"&54632K54LKj=KjKKj��KjKKj�L45KKjK�<^�^^��KjKKj��p�pp���\]��]\��jKL45K��jKKjKujKKjK��4LKjKK�^^�^��jKKjK��pp�p�r]��]\����� $$ ���^����a�aQ�^����a�a�����,#"&5465654.+"'&47623 #>bq��b�&4�4&�ɢ5����"		#D7e�uU6�&4&��m����1X".4>2".4>24&#""'&#";2>#".'&547&5472632>3�=T==T=�=T==T=��v)�G�G�+v�@b��R�R��b@�=&����\N����j!>�3l�k����i�k3�hPTDDTPTDDTPTDDTPTDD|x��xX�K--K��|Mp<#	)>dA{��RXtfOT# RNftWQ���,%4&#!"&=4&#!"3!26#!"&5463!2!28(�@(88(��(88(�(8��\�@\��\@\��\���(88(@(88(�@(88�@\��\�\��\ �u�'E4#!"3!2676%!54&#!"&=4&#!">#!"&5463!2!232�5��([��5@(\&��8(��(88(��(8,�9.��+�C��\��\@\� \��6Z]#+��#,k��(88(@(88(��;5E�>:��5E�\�\��\ �\�1. ���$4@"&'&676267>"&462"&462.  > $$ n%��%/���02�
KjKKjKKjKKjKf���ff�������^����a�a�y��y/PccP/�jKKjKKjKKjK���ff���ff�@�^����a�a�����$4@&'."'.7>2"&462"&462.  > $$ n20���/%��7KjKKjKKjKKjKf���ff�������^����a�a3/PccP/y��	jKKjKKjKKjK���ff���ff�@�^����a�a�����+7#!"&463!2"&462"&462.  > $$ �&��&&��&KjKKjKKjKKjKf���ff�������^����a�a�4&&4&�jKKjKKjKKjK���ff���ff�@�^����a�a���#+3C54&+54&+"#";;26=3264&"24&"2$#"'##"3!2@������@KjKKjKKjKKjK����ܒ���,����������gjKKjKKjKKjK�X�Ԁ�,�,��#/;GS_kw�����+"=4;27+"=4;2'+"=4;2#!"=43!2%+"=4;2'+"=4;2+"=4;2'+"=4;2+"=4;2+"=4;2+"=4;2+"=4;2+"=4;54;2!#!"&5463!2�``����``��`��``�``�``�``�``�``�````�p`���K5��5KK5�5Kp``�``�``��``�``�``��``�``��``��``�````��`��������5KK5�5KK@���*V#"'.#"63232+"&5.5462#"/.#"#"'&547>32327676���R?d�^��7ac77,9x�m#@#KjK�#
ڗXF@Fp:f��_ #W��Ip�p&3z�	�h[ 17��q%q#:��:#5KKu�'t#!X:	%�#+=&>7p@���*2Fr56565'5&'.	#"32325#"'+"&5.5462#"/.#"#"'&547>32327676@��ͳ�����8
2.,#,f�k*1x���-!���#@#KjK�#
ڗXF@Fp:f��_ #W��Ip�p&3z�	�e�`��v�o�8�t-�	�:5	��[�*�#:��:#5KKu�'t#!X:	%�#+=&>7p
�3$	"/&47	&4?62#!"&=463!2I�.

2

��w

2

�
-�@�)�.

2

��

2

�.
�-@@-��S�$9%"'&4762		/.7>	"/&47	&4?62i2

�.

�

2

�w�
E��>

u>

��.

2

��w

2

�
�2

�

�

2

�w�w
!��




�h�.

2

��

2

�.
���;#"'&476#"'&7'.'#"'&476�'
�)'�s
"+5+�@ա'
�)'����F*4*E�r4�M:�}}8��GO
�*4*������~�
(-/'	#"'%#"&7&67%632���B�;><���V�?�?V�� -����-C�4
<B�=�cB5���!%��%!�b 7I�))�9I7���	#"'.5!".67632y��(
��#

��##@,(
�)���8!	!++"&=!"&5#"&=46;546;2!76232-S��S����������S�

		��S��S�`���`���		

������K$4&"24&"24&"27"&5467.546267>5.5462 8P88P88P88P�8P88P�4,�C��S,4p�p4,,4p�p4,6d7AL*',4p�pP88P8�P88P8HP88P8`4Y��&+(>EY4PppP4Y4Y4PppP4Y�%*<O4Y4Ppp���
%@\ht�	"'&4762"&5462&#!"&463!2#"'&'7?654'7&#"&'&54?632#!"&463!2"&5462"'&4762��		

	����@U�SxyS���R���#PT����('�#��TU�SxySN���@����		

		�		

		
3��@��xS�SUO#���'(���V^�'(���PVvxS�SU��i��@��		

		
`�<+"&=46;2+"&=467>54&#"#"/.7!2���<'G,')7��N;2]=A+#H

�
�0P��R��H6^;<T%-S�#:/*@Z}


>h���.%#!"&=46;#"&=463!232#!"&=463!2�&�&&@@&&�&@&�&�&&&��&&�&�&�&&��&f�&&�&&b�#!"&=463!2#!"&'&63!2&�&&&'�'%@% �&&�&&�&&&&�k%J%#/&'#!53#5!36?!#!'&54>54&#"'6763235���
����Ź���}���4NZN4;)3.i%Sin�1KXL7觧�*		��#��&		*������@jC?.>!&1'\%Awc8^;:+<!P��%I%#/&'#!53#5!36?!#!'&54>54&#"'6763235���
����Ź���}���4NZN4;)3.i%Pln�EcdJ觧�*		��#��&		*������-@jC?.>!&1'\%AwcBiC:D'P%!	#!"&'&6763!2�P������&:�&?�&:&?����5"K�,)""K,)���h#".#""#"&54>54&#"#"'./"'"5327654.54632326732>32�YO)I-D%n "h.=T#)#lQTv%.%P_�	%	
%�_P%.%vUPl#)#T=@�/#,-91P+R[�Ql#)#|'�'
59%D-I)OY[R+P19-,##,-91P+R[YO)I-D%95%�_P%.%v���'3!2#!"&463!5&=462 =462 &546 ����&&��&&��&4&r&4&�������@����&4&&4&�G݀&&������&&f��������
��sCK&=462	#"'32=462!2#!"&463!5&'"/&4762%4632e*&4&i����76`al�&4&���&&��&&}n�

R

�

R
�z����f�Oego�&&�5�����`3��&&����&4&&4&�
D�

R

�

R
z����v���"!676"'.5463!2@�@w^�Cc�t~55~t�cC&�&@���?J���V��|RIIR|��V&&��#G!!%4&+";26%4&+";26%#!"&546;546;2!546;232�����@@@@�L4��4LL4�^B@B^�^B@B^�4L�� �� ��N�4LL44L`B^^B``B^^B`L����L4&"2%#"'%.5!#!"&54675#"#"'.7>7&5462!467%632&4&&4��@�o�&�&}c ;pG=(
8Ai8^�^.�&4&&4&`��	`f�s��&& j�o/;J!#2
 KAE*,B^^B!`	$� ��-4&"2#"/&7#"/&767%676$!2�8P88P��Qr��	@
U���	@�
{`P�TP88P8�����P`��
�	@U	@�rQ���!6'&+!!!!2Ѥ���
8�������̙�e�;<*��@8 !�G��G�GQII���� %764'	64/&"2 $$ �f��3f4�:�4����^����a�a�f4334f�:4�:�^����a�a����� %64'&"	2 $$ ���:4f3��f4F���^����a�a��4�f4���4f�^����a�a����� 764'&"27	2 $$ �f�:4�:f4334����^����a�a�f4��:4f3���^����a�a����� %64/&"	&"2 $$ -�f4���4f�4����^����a�a��4f��3f4�:w�^����a�a���@��7!!/#35%!'!%j��/d��
�jg2�|�8�����������55���dc ��b���@��!	!%!!7!���FG)��D�H:�&�H����d���S)��U4&"2#"/ $'#"'&5463!2#"&=46;5.546232+>7'&763!2�&4&&4f]w�q�4�qw]	`dC���&&�:F�ԖF:�&&���Cd`�4&&4&����	]����]	`d[}�&�&�"uFj��jFu"�&�&�y}[d�#2#!"&546;4 +"&54&" (88(�@(88( r&@&�Ԗ8(��(88(@(8@����&&j��j�����'3"&462&    .  > $$ �Ԗ������>a��X��,��f���ff�������^����a�a�Ԗ�Ԗ�a>����T�X��,�,�~�ff���ff�@�^����a�a����/+"&=46;2+"&=46;2+"&=46;2�8(�(88(�(88(�(88(�(88(�(88(�(8 �(88(�(88(�(88(�(88(�(88(�(88��/+"&=46;2+"&=46;2+"&=46;2�8(�(88(�(88(�(88(�(88(�(88(�(8 �(88(�(88�(88(�(88�(88(�(88���5E$4&"2%&'&;26%&.$'&;276#!"&5463!2KjKKj�
���
��
�
f���	

�\�
�
�w�@w��w�w��jKKjK"�G

�
ܚ

��f


�
���

	�@w��w�w�����  $64'&327/�a����^�����  ��!  ����^����a�a��J@%��%	6�5��/	64'&"2	"/64&"'&476227<���ij��6��j6��u%k%~8p�8}%%�%k%}8p�8~%<���<�ij4j��4����t%%~8�p8~%k%�%%}8�p8}%k���54&#!"3!26#!"&5463!2&��&&�&�w�@w��w�w�@�&&�&&:�@w��w�w����/#!"&=463!24&#!"3!26#!"&5463!2���@�^B��B^^B@B^��w��w��w@w��@@�2@B^^B��B^^���w��w@w���+#!"'&?63!#"'&762�(��@�	@�(@>@�%����%%��� ���!232"'&76;!"/&76 �
�($��>��(����
		��J ���&%�����$%64/&"'&"2#!"&5463!2�ff4�-�4ff4f�w�@w��w�w��f4f�-�f4����@w��w�w�����/#5#5'&76	764/&"%#!"&5463!2��48`���
#�� ����\�P\��w�@w��w�w���4`8�
��
#�@  ���`\P�\`�@w��w�w�����)4&#!"273276#!"&5463!2&� *���f4�
'�w�@w��w�w�`�&')���4f�*�@w��w�w�����%5	64'&"3276'7>332#!"&5463!2�`��'(wƒa8!
�,j.��(&�w�@w��w�w��`4`*�'?_`ze<��	bw4/�*��@w��w�w�����-.  6 $$ ���� �������(�r���^����a�a���O����(��������_�^����a�a�����
-"'&763!24&#!"3!26#!"&5463!2y��B��(�(�
�@

�
�w�@w��w�w�]#�@�##� �

�@
�@w��w�w�����
-#!"'&7624&#!"3!26#!"&5463!2y(��(@B@u
�@

�
�w�@w��w�w��###��@���

�@
�@w��w�w�����
-'&54764&#!"3!26#!"&5463!2@�@####���@��w�@w��w�w��B��(�(������@�@w��w�w����`%#"'#"&=46;&7#"&=46;632/.#"!2#!!2#!32>?6�#
!"'�?_

BCbCa�f\	+
~�2�	
��
	�}0�$

��
q
90r�
�

�pr%Dpu���?#!"&=46;#"&=46;54632'.#"!2#!!546;2��D
a__����	g	

*`-Uh1

��������

�߫�}
	$^L��
���
4��b+"&=.'&?676032654.'.5467546;2'.#"�ǟ�
B{PDg	q�%%Q{%P46'-N/B).ĝ
�9kC<Q
7>W*_x*%K./58`7E%_���
�	,-3�
cVO2")#,)9;J)���
�"!*�
#VD,'#/&>AX��>++"''&=46;267!"&=463!&+"&=463!2+32��Ԫ�$
�	��	
p���U�9ӑ
@�/�*f�����o�	

VRfq
�f=S��E!#"&5!"&=463!5!"&=46;&76;2>76;232#!!2#![�
��

 ��

��
�
�%
)��
	���

��"

��Jg
Uh
B�W&WX���
hU
g��
�84&#!!2#!!2#!+"&=#"&=46;5#"&=46;463!2�j��@jo�����
������g�|�@��~�v����v�
u�n#467!!3'##467!++"'#+"&'#"&=46;'#"&=46;&76;2!6;2!6;232+32Q�Kt#�� ��#F�N�Qo!��"�դ��ѧ����!�mY

�Zga~bm]�

[o�"�U+��������,����� @��h��
h@�@X
��h��h
��@�8���3H\#5"'#"&+73273&#&+5275363534."#22>4.#2>��ut
3NtR�P*�H�o2

Lo�@!�R(�Ozh=�,G<X2O:&D1A.1G$<2I+A;"B,;&$��L��GlF/�����3�D�����;a��$8$��".�!3!
��.�3!#!"&5463!���8( 8(��(88( ��h (8��(88(@(8�(8H!!#!"&5463!54&#!"3!2654&#!"3!2654&#!"3!26��(D 8(��(88( 8��@��@��@�$����(88(@(8��(8� @@@@@@"�}
$BR3/&5##"'&76;46;232!56?5"#+#5!76;5!53'#3!533��H��
��

�����D��q		�x7��	���K/�/K��F��h�/"���		@`����Z		s�Y��w�jj��jj��j"�}
$4R%3/&5##"'&76;46;232!53'#3!533!56?5"#+#5!76;5��H��
��

��������K/�/K��F����q		�x7��	�h�/"���		@`����jj��jj��j�Z		s�Y��
w"�)9IY%#"'&76;46;232#!"&=463!2#!"&=463!2#!"&=463!2#!"&=463!2�
��

����� ��@������@���`��		@`�����������"�)9IY#!"&=463!2%#"'&76;46;232#!"&=463!2#!"&=463!2#!"&=463!2��� 
��

�������@��������@ ��r��		@`��r������"��
$CV%4&#"326#"'&76;46;232%#"'&'73267##"&54632!5346=#'73BX;4>ID2F��
��

������8PuE>.'%&TeQ,j��m{��+�>R�{�?jJrL6V��		@`��7>wmR1q
uW�ei��/rr�
:V��r"��
$7V4&#"326#"'&76;46;232!5346=#'73#"'&'73267##"&54632BX;4>ID2F��
��

������+�>R�{�8PuE>.'%&TeQ,j��m{��?jJrL6����		@`���rr�
:V��r3>wmR1q
uW�ei����@�\%4&#"326#!"&5463!2+".'&'.5467>767>7>7632!2&%%&�&��&& &�7.'	:@�$LB�WM{#&$h1D!		.I/!	Nr�&&%%��&&�&&V?, L=8=9%pEL+%�%r@W!<%*',<2(<&L,"r�@\#"&546324&#!"3!26%#!#"'.'.'&'.'.546767>;&%%&�&��&& &i7qN��	!/I.		!D1h$&#{MW�BL$�@:	'.�&&%%���&&��&&�=XNr%(M&<(2<,'*%<!W@r%�%+LEp%9=8=L ���	+=\d����%54#"327354"%###5#5#"'&53327#"'#3632#"'&=4762#3274645"=424'.'&!  7>76#'#3%54'&#"32763##"'&5#327#!"&5463!2��BB��PJN�C'%!	B?)#!CC $)�54f�"��@@
B+����,A

A+�&�+A
�
ZK35N #J!1331�CCC $)��w�@w��w�w��2��"33�F�Y�F~��(-%"��o�4*)$�(*�	(&;�;&&9LA38�33�4��S,;;,W��T+<<+T;(��\g7�x�:&&:�:&&<r����%-�@w��w�w����	+=[c}���#"'632#542%35!33!3##"'&5#327%54'&#"5#353276%5##"=354'&#"32767654"2 '.'&547>76 3#&'&'3#"'&=47632%#5#"'&53327�''RZZ�:k��id YYY.06�	62+YY-06	R[!.�'CD''EH$��VV�X:���:Y
X;��:Y
�fyd/%jG�&DC&&CD&O[52.
[$�C-D..D�^^���* l�y1%=^�I86�i077S
3
$EWgO%33%O�O%35	��EE�F�W�t;PP;p��t;PP;p�q��J�gT��F�Q%33&P�P%33%R�
7>%3���!+}��{�'+"&72'&76;2+"'66;2U
�&�
��	�(���P

�*��'�e�J."�-d�Z��-n �-���'74'&+";27&+";276'56#!"&5463!2�~�}�		�7��e �	���۩w�@w��w�w��"���
$Q#�'�!#
����@w��w�w��
�I-22#!&$/.'.'.'=&7>?>36����9II ! '	$ !�����01$$%A'	$ ! ����g	
\7@�)(���7Y
	
 \7@�)(���7Y
@����	'5557	���,���VW�QV���.R���W��=���?��l��%l`��������~����0��!#!#%777	5!	������R!!�XC�C��fff�݀�#�� `��,��������{��{{�`��������Og4&"2 &6 $"&462$"&62>7>7>&46.'.'. '.'&7>76 �Ԗ�� ���HR6L66L�G�HyU2LL2UyH��HyU2LL2UyHn
��X�6X��

��X�X��
Ԗ�Ԗ�����H�6L66L6�L2UyH��HyU2LL2UyH��HyU2L�n�6X��

��X�X��

�����2#!"&54634&"2$4&"2�w��w�@w��w�|�||��|�||���w�@w��w�w����||�||�||�|���	!3	37! $$ �n6^�5�5^h
����^����a�a������M�1�^����a�a���P��
*Cg'.676.7>.'$7>&'.'&'? 7%&'.'.'>767$/u5'&$I7o�b?K�\[z�H,1���+.@\7<��?5\V
,$V��g.GR@ �7��U,+!�����
	#	"8$}�{)�<�?L RR;kr,yE[��z#	/1
"#	#�eCI0/"5#`�	��"8���4~&p)4	2�{�H-.%W.L>���':Yi4&67&'&676'.'>7646&' '7>6'&'&7>7#!"&5463!2PR$++'TJX�j7-F��C',��,&C
."��!$28��h�/���"�	+p��^&+3$
i��0(�w�@w��w�w��+.i6=Bn\C1XR:#"�'jj�8Q.cAj�57!?"0D��$4"P[
&2�@w��w�w��D��"%.5#5>7>;!!76�P�Yh�pN!�HrD0�M��
 C0N��#>8\xx: �W]oW-�X���45���/%'#.5!5!#"37>#!"&5463!2p>,;$4
��5eD�+W�cE���w�@w��w�w�K�()��F
,VhV��^9tjA0/�@w��w�w���@�#"'&76;46;23�
��


��
	���&��

��� ���++"&5#"&7632�	���
^


c
� �&�

��@�#!'&5476!2� &��

����
^


b	���'&=!"&=463!546�
��� �&�
�
��	���
��
��q&8#"'&#"#"5476323276326767q'T��1[VA=QQ3���qq�Hih"-bfGw^44O#A���?66%CKJ�A}}�  !"�䒐""A$@C3^q|�z=KK?6�lk)���%!%!��V��V��u��u�u^-�m5�w��}�n�����~7M[264&"264&"2"&546+"&=##"&5'#"&5!467'&766276#"&54632�  �  ��*<;V<<O@-K<V<�<+*<J.@�k��c�lG
H_�_H
�<+*<<*+<    �<*�R+<<+�*<�f.@�+<<+��+<<+�@.��7�uu�7�
�**�
���R+<<+�+;;	��"%3I�#5472&6&67><&4'>&4.'.'.'.'.'&6&'.'.6767645.'#.'6&'&7676"&'&627>76'&7>'&'&'&'&766'.7>7676>76&6763>6&'&232.'.6'4."7674.'&#>7626'.'&#"'.'.'&676.67>7>5'&7>.'&'&'&7>7>767&'&67636'.'&67>7>.'.67�	\
��
	U7	
J#!W!'	

"';%

k	)"	
	'


/7* 		I	,6
*&"!

O6*
O $.(�	*.'

.x�,	$CN��	
�		*	�
6
		
7%&&_f&
",VL,G$3�@@$+
"


V5 3"	
""�#dA++
y0D-%&n4P'A5j$9E#"c7Y
6"	&
8Z(;=I50' !!e
�R
��
"+0n?�t(-z.'<>R$A"24B@(	~	9B9,	*$		
		<>	?0D�9f?Ae �	.(;1.D	4H&.Ct iY% *	�
7��


��
J	 <
W0%$	
""I!
*D	 ,4A'�4J"	.0f6D�4p�Z{+*�D_wqi;�W1G("%%T7F}AG!1#% JG3��� '.2>Vb%&#'32&'!>?>'&' &>"6&#">&'>26 $$ *b6�~�#��= ���XP2��{&%gx|�� .���W)o���O��LO�sEzG<��	CK}E	$MFD<5+
z���^����a�a$�MW�M��1>]|�YY�^D
�եA��<��K�m����E6<�"�@9I5*�^����a�a�����>^4./.543232654.#"#".#"32>#"'#"$&547&54632632�':XM1h*�+D($,/9p�`D�oC&JV<�Z PA3Q1*223�I�oBkែhMI����oPែhMI��oP�2S6,M!"@-7Y.?oI=[<%$('3 -- <-\�%Fu���Po��IMh���Po����IMh,���#?D76&#!"7>;267676&#!"&=463!267
#!"'&5463!26�%�8#!�
��&&Z"�M>2!��
	�^I7LRx_@�>MN�""��`�=&&*%�I�}��,
	�	L�7_jj��9����/%4&#!"3!264&#!"3!26#!"&5463!2�� ��� ��&��&&�&��������&&�&&��19#"'#++"&5#"&5475##"&54763!2"&4628(3�-�	&�B.�.B�&	�-�3(8Ig�gI�`������(8+U��e&��.BB.&����+8(�kk��`�������%-"&5#"&5#"&5#"&5463!2"&4628P8@B\B@B\B@8P8pP�Pp�����@�`(88(`�p.BB.�0.BB.���(88(�Pppͺ�������!%>&'&#"'.$ $$ ^/(V=$<;$=V).X���^����a�a��J`"(("`J��^����a�a��,���I4."2>%'%"/'&5%&'&?'&767%476762%6�[���՛[[���՛o��
�ܴ
 
���
��	��	$
$�	"	�$
$	��	�՛[[���՛[[�5`��

^�

�^

2`��
`2

^��^

��`
�����1%#"$54732$%#"$&546$763276�68��ʴh�f�킐&^�����zs��,!V[���vn)�	�6���<��ׂ�f{���z����}))N�s���3(@����+4&#!"3!2#!"&5463!2#!"&5463!2@&�&&f&��&&�&@&�&&&�4&&4&�@&&�&&��&&&& ��`�BH+"/##"./#"'.?&5#"&46;'&462!76232!46 `&�C�6�@Bb0�3eI;��:�&&�&4�L�4&���F���
�Z4&�w�4�) ���''
�5�r�&4&&�4&��&4��������}G�#&/.#./.'&4?63%27>'./&'&7676>767>?>%6}�)(."�2*&�@P9A
#sG�q]
#lh�<*46+(
	
<
5�R5"*>%</
 '2�@� 53*9*,�Z&VE/#E+)AC
(���	2k<X1$:hI(B
"	!:4Y&>"/	+[>hy
	���K
!/Ui%6&'&676&'&6'.7>%.$76$% $.5476$6?62'.76&&'&676%.76&'..676�#"NDQt	
�-�okQ//�jo_	������	���%&J�������Ղ���YJA-��.--
9\DtT+X?*<UW3'	26$>>�W0{�"F!"E �

^f`$"�_]\�<`�F�`�F�D��h>Cw�ls���J@�;=?s
:i_^{8+?`
)
O`�s2R�DE58/K��r	#"'>7&4$&5m��ī��"#���̵�$5���$�"^^W����=���ac��E�*���c������zk./"&4636$7.'>67.'>65.67>&/>z X^hc^O<q����+f$H^XbVS!rȇr?5GD_RV@-FbV=3!G84&3Im<$/6X_�D'=NUTL;2KPwt��Pt= 

�&ռ
,J~S/#NL,��8JsF);??1zIEJpq�DIPZXSF6\?5:NR=��;.&1��+!"&=!!%!5463!2�sQ9����Qs�*�*�*sQNQsBUw��
wUBF��H���CCTww���%1#"&=!"&=463!54632.  6 $$ �	��	
��

`?��������(�r���^����a�a�	��	
�
�
�
���(��������_�^����a�a�����%1#!#"'&47632!2.  6 $$ �
����		@	
`
��������(�r���^����a�a�
�
?		@	
���(��������_�^����a�a�����/#"'&476324&#!"3!26#!"&5463!2&�@�&
�@

�
�w�@w��w�w����&@B@&���

�@
�@w��w�w�����"&462  >& $$ �Ԗ��*�����(���r���^����a�a�Ԗ�Ԗ �������(���^����a�a���]�6#"$54732>%#"'!"&'&7>32'!!!2�f:�л����Ѫz��~�u:�
(�(%`V6B^hD%��i�(�]̳ޛ	��*>�6߅�����r�#�!3?^BEa�߀�#�9���#36'&632#"'&'&63232#!"&5463!2
��Q,&U�#+'
 �;il4L92<D`����w�@w��w�w�����`9ܩ6ɽ]`C4�7�7�&�@w��w�w����D+"&5#"'&=4?5#"'&=4?546;2%6%66546;2�������
	
��
	
��w�ww�w�������cB
�G]B
�G��t�y]t�y�
���#3C#!+"&5!"&=463!46;2!24&#!"3!26#!"&5463!2���@��`@`�^B��B^^B@B^��w��w��w@w��@��`@`���2@B^^B��B^^���w��w@w�����'/?P+5#"&547.467&546;532!764'!"+32#323!&ln��@
:MM:
@��nY*�Yz--zY�*55QDD�U���9p��Y-`]��]`.X /2I$�	t�@@/!!/@@3,$,3�$p$0�0��&*0��&���&��
!P@���RV2#"&/#"&/#"&546?#"&546?'&54632%'&54632763276%�>S]�8T;/M7��7T</L7�=Q7,�i�<R7,�5T</L666U;/M5�<U<,�i���6i���Q=a!;�;V6-�j�;V6-�5	P=/L596Q</L5�<U6-�i�;V7,�7O;-I6��8��i;k���)I2#!"&5463#9"'.'.'3!264&#!"2>7%>�w��w�@w��w�!"�5bBBb/�/*
8(@(87)��(8=%/�'#?��w�@w��w�w����#~$EE y &�L(88e):8(%O r		

		�O�?GQaq47&67>&&'&67>&"&#6$32#"#"'654  $&6 $6&$ Co��L��.*�KPx���.*� 
iSƓi
7J?��~�pi{_Я�;��lL�������UZ=刈�����刈�����_t'<Z
�:!
	���@!
��j`Q7$k�y, R����f��k*4�������LlL��=Z=刈��������&$&546$7%7&'5>�����]���5��%��w�����������&��P�?�zrSF�!|��&0	##!"&5#5!3!3!3!32!546;2!5463���)�
)����;)��);;)��)���&&������&@@&�&��&��	�
6 $&727"'%+"'&7&54767%&4762������֬>4P���t+8?::
	�	
::AW��``���EvEEvE<�.���"�e$IE&�O�&EI&�{h.`��m���"&#"&'327>73271[
>+)@
(���]:2,C?��*%�Zx/658:@#N
�C�=�E�(�o��E=��W'c:������#!#"$&6$3 &#"32>7!����ڝ���yy��,��{��ۀ�ہW�^F!�L�C=���y�:�y��w���߂0H\R%�"N^ '&76232762$"&5462"&46274&"&'264&#"'&&#"32$54'>$ $&6$ G>��>0yx1��4J55J�5J44J5�Fd$��?�4J55%6�E��#42F%��$f�������LlL�q>>11�J44%&4Z%44J54R1F$Z-%45J521��Z%F1#:��ʎ 9�������LlL�����#Qa"'&7622762%"&5462"&546274&#"&'73264&#"'&&#"32654'>#!"&5463!2�

5�5

*�*��.>.-@-R.>.-@-�<+*q�6�- -- 0�<�o,+< ��3�w�@w��w�w��

55

**�.. -- .. --G*<N�' ,-@-+*��M <*2
z��z
1�@w��w�w�����0<754&""&=#326546325##"&='26 $$ bZt�t&�sRQs��Z<t�sQ���^����a�a�>OpoO��xzRrqP6�z~{{Prr��^����a�a�����]054&"#"&5!2654632!#"&57265&<T<����H<T<������H������<T<8v*<<*������
��+;;+l���:�������=:��*;;*���
%!!"!!26#!"&5463!2��@� ]���]�@�w�@w��w�w�����]� �@��@w��w�w���	
%)3!!#335!!5!5!%#!!5!5!%#H��H{����R��H��H{���G��G{�)���q���G����R�R�q���R�R�q�����	#0@#"'632#"'632&#"7532&#"#7532#!"&5463!2L5+*5��L5+*5~�}7W|�3B}��}JC��7=}�w�@w��w�w�D�ZQ�[�1�N:_��)�i�$��)���@w��w�w��
)�	�����������6.#&#"'&547>'&#".'&'#"&5467%&4>7>3263232654.547'654'63277.'.*#">7?67>?>32#"'7'>3'>3235?�K�cgA+![<E0y�$,<'.cI
	,#� '!;7$�=ep���	��/�/7/
D+R>,7*
2(-#=
	/~[(D?G  �|,)"#+)O��8,+�'�6	y{=@��0mI�#938OA�E`
-�
)y_/FwaH8j7=7?%����a	%%!?)L
J
9=5]~�pj

 %(��1$",I 
$@((�
+!.S		-L__$'-9L	5V��+	
	6�T+6.8-$�0��+
t�|S1��6]�&#"'&#"67>76'&'&#"67>32764.#"#.32>67>7 $&54>7>7>7�rJ�@"kb2)W+,5/1		#

Z
-!��$IOXp7s�LCF9�vz NAG#/ 5|����Հ';RKR/J#=$,�9,�+$UCS7'2"1
 !�/
,

/--ST(::(�ep4AM@=I>".)x��ls��Y�|qK@
%(YQ�&N
EHv~����<Zx'#"&5467&6?2?'&"/.7.546326#"&'&/7264/7'764&"'?>>32.��A�UpIUxYE.A�%%%h%����%hJ%�����D,FZxULsT�gxUJrV�D�%hJ%�����@/LefL.C�%Jh%�����C�VsNUxϠ�@.FZyUHpV�A�%h&%%���%Ji%�����C�WpIUybJ/��Uy^G,D�%Jh%�����@�UsMtU�C�%hJ%�����C-Kfy�EX[_gj��&/&'.''67>7>7&'&'&'>76763>7>#&'&'767672'%'7'+"&'&546323267>7%#"'4'6767672,32�,+DCCQL�Df'
%:/d
B	4@}
�&!0$�?�����J�f�d�f-�.=���6(��:!TO�?
!I�G_�U%
����.
k*.=;�	5gN_X��	"
##
292Q41�
��*����6���nA;�|�
�BSN.	%1$����
6	$��nk�^�'7GWgw�����2+"&5463#!"&5463!254&+";2654&+";2654&+";2654&+";2654&+";2654&+";2654&+";2654&+";2654&+";26#"&=! B^^B�B^^B�:F�j��B^8(�(`�(� ������������������`�(8���^B��B^^B@B^�"vE�j�^B(8(�`(�����������������������8(����/?O_o��������/?2#!"&5463;26=4&+";26=4&+";26=4&+";26=4&+"54&+";2654&+";2654&+";2654&+";2654&+";2654&#!"3!2654&+";2654&+";2654&+";2654&+";2654&+";2654&+";2654&+";2654&+";2654&+";26@&&�&&�@@@@@@@@�@@@@@@@@@@��@@@@@@@@@@@@@@@@@@@&��&&�&��@@��@@��@@��@@��@@@@@@@@@@���@@@@@@@@�@@@@@@@@@@@��`'	"&5#"&5&4762!762$"&462���B\B@B\B��O�p�P����������.BB.���.BB.8$P��O広�������3CQ#".54>32#".546322#"&#"#"54>%".54>32%2#"&54>&X=L|<&X=M{<��TML�FTML�F�v�"?B+D�?B�J�p��H=X&<{M=X&<|dMTF�LMTF�(<kNs�I<kNs���Pvo�JPwo�/��s.=ZY�VӮv�Nk<J�sNk<I�shwPJ�ovPJ�o@��+"&7.54>2�r_-$�$-_rU���U��%��&&5%ő������'-
"'.546762����@��F�F�$�@B�@$.&�,�&.]]|�q����#<���<#(B�B��B%'-%'-'%'-"'%&'"'%.5467%467%62����@��l�l����@��l�l,���@��G�G�&!�@@�@�@@�@!&+#�+#�6�#+�$*`�:�p������:�p���x�
�p����=�`$>����>$�&@��&@�

�@&�p�@��	&.A!!"!&2673!"5432!%!254#!5!2654#!%!2#!8���Zp��?v�d���Ί�e�ns�6(���N[�����RW�u?�rt1Sr�F���|��iZ��@7�����މoy2���IM��C~[�R �yK{T:���%,AGK2#!"&5463!!2654'654.#532#532"&5!654&#"327#2#>!!�w��w�@w��w��~u��k'JTM��wa��|
DH��������>�I1q�Fj?����w�@w��w�w�����sq�*4p9O*�¸Z^���qh LE
�������"(nz8B
M���'?"&4624&#"'.'324&#"3267##"&/632632.�ʏ����hhMA�LR vGhг~��~������K„y���O^
��ʏ�ʏ��В*�LM@!<I�~��~����������t\��0�������CM4&"2#"&'676&/632#!"&=3267%2654&#"&#"%463!2"&4632�r�qq��tR8^4.<x3=RR��w�@w���_h�
Y��Ӗ���	K>�שw�w���ȍ�de�)�qrOPq�Ȧs:03=<x!m�@w��w�E\x�g�ӕ��є��%w�w����d��Ȏ��V��
-<K\%.'.>7'.?67'67%'>&%'7%7./6D�\$>	"N,��?a0�#O���1G�����9�'/���P(1#00��
($=!F"�9|��]�"RE<�6'o��9%8J$\:��\H�iTe<?}V��#�oj��?���d,6���%N#"
Hl��S��VY�]C

=�@�C4&"2!.#!"4&"2+"&=!"&=#"&546;>3!232�^�^^���Y	�	^�^^��`p�p�p�p`�]i�bb�i]�~�^^�^�e��^^�^���PppP��PppP��]��^^�]��3;EM2+"&=!"&=#"&546;>;5463!232264&"!.#!"264&" ]�`p�p�p�p`�]i�b���b�i���^^�^d�Y	�	!�^^�^��]��@PppP@@PppP@�]��^��^�]� ^�^^��e��^�^^� ��3$#!#!"&5467!"&47#"&47#"&4762++�&�2
$��$
�2&��&��&�4�&��&��Z4&�&##&�&4�&4�&4���4&�m4&�m���+DP4'&#"32763232674'&!"32763 3264'&$#"32763232> $$ g����* �o�`#�ə�0#z��#l(~���̠)���-g+����^����a�aF s"	+g�(�*
3#!|
#/IK/%*%D=)[�^����a�a����	!!!'!!77!���,���/���,�-���a��/G��	t%/;<HTbcq������%7.#"32%74'&"32765"/7627#"5'7432#"/7632#"5'7432#"&5'74632	#"/6327#"/6327#"/46329"&/462"&/>21"&/567632#!.547632632
	
	*


			��X		�

^

`		���

^b
	��c�
	f�u��
U`�59u���

���

4�J���
	
l�~		~�	F��	
��	�2�����

�
�	��	�m����|O�,��� ����	

���
��������

ru|	��u�
�
"�����
)9 $7 $&= $7 $&= $7 $&=  $&=46��w���`���w���w���`���w���w���`���w��b����`����VT�EvEEvE�T��VT�EvEEvE�T*VT�EvEEvE�T*EvE�EvEEvE�Ev�#^ct�#!"&5463!2!&'&!"&5!632#"&'#"/&'&7>766767.76;267674767&5&5&'67.'&'&#3274�(8(��(88(�(`�x
��c�`(8��!3;:�A0�?ݫ�Y

	^U	47D$

	7�4U3I�
|��L38wtL0�`(��(88(@(8(D��9�8(��Q1&(!;��
(g-	Up�~R�2(/{E���(Xz*Z%(�i6CmVo8�#T#!"&5463!2!&'&!"&5!3367653335!3#4.5.'##'&'35�(8(��(88(�(`�x
��c�`(8�iF������F��Zc�r�cZ�`(��(88(@(8(D��9�8(���k�k�"	��kk�J	 	!��	�k�#S#!"&5463!2!&'&!"&5!%!5#7>;#!5#35!3#&'&/35!3�(8(��(88(�(`�x
��c�`(8�-Kg
kL#D��C��JgjL��D���`(��(88(@(8(D��9�8(���jj�	�jjkk��kk����#8C#!"&5463!2!&'&!"&5!%!5#5327>54&'&#!3#32�(8(��(88(�(`�x
��c�`(8� G]�L*COJ?0R��\wx48>�`(��(88(@(8(D��9�8(���jj��RQxk��!RY�#*2#!"&5463!2!&'&!"&5!!57"&462�(8(��(88(�(`�x
��c�`(8�������P�pp�p�`(��(88(@(8(D��9�8(����������p�pp�	�#*7JR5#5#5#5##!"&5463!2!&'&!"&5##5!"&54765332264&"�����<(8(��(88(�(`�x
��c�`(8����k�ޑc�O"�jKKjK�������������`(��(88(@(8(D��9�8(������SmmS?M���&4&&4�#9L^#!"&5463!2!&'&!"&5!#"/#"&=46;76276'.'2764'.�(8(��(88(�(`�x
��c�`(8���������6dd�WW6&44�`(��(88(@(8(D��9�8(��.��	����G���5{��{5�]�]$59�95�#3C#!"&5463!2!&'&!"&5!2#!"&5463#"'5632�(8(��(88(�(`�x
��c�`(8��4LL4��4LL4l	��		�`(��(88(@(8(D��9�8(���L4��4LL4�4L��	
Z
	�#7K[#!"&5463!2!&'&!"&5!>&'&7!/.?'&6?6.7>'�(8(��(88(�(`�x
��c�`(8�`3��3��3��3�v
�
?
�
�`(��(88(@(8(D��9�8(���&��&-��&��&�
?


��
'���6#'.
'!67&54632".'654&#"32�eaAɢ/PRAids`WXyzO�v��д��:C;A:25@Ң>�����-05r��n������`��H(�����' gQWZc[���
-%7'	%'-'%	%"'&54762�[������3[��M���N�����
��3"��,��""3,3"o�ng�$������߆���]�g�n��$����+��)��

")")"

��x#W#"&#!+.5467&546326$32327.'#"&5463232654&#"632#".#"o���G��n\�u_MK'����̨|�g?CM7MM5,QAAIQqAy��{�b]BL4PJ9+OABIRo?z��.�z��
�n�6'+s�:�������z�cIAC65D*DRRD*�wy�al@B39E*DRRD*��'/7  $&6$ 6277&47' 7'"' 6& 6'�lL������������R�R����ZB|��R�R��>����d�ZZ��������LlL�Z����R�R«����Z��&�>���«|��R� � ��! $&54$7 >54'5��������P���f���f����P�����牉�@��s��-����ff���`-����c6721>?>././76&/7>?>?>./&31#"$&��(@8!IH2hM>'

)-*
h'N'��!'Og,R"/!YQG<I *1)

(-O1D+0�n�������z�3fw���G2'3�rd1!sF0o ��.q"!%GsH8��@-!5|w|pgS=
"B2PJfh�G���d�R	�(P]ly��&$'77&7567'676'"'7&'&'7&47'6767'627''6$'67'654'7&'7'&'&'7&'5&$  $6 $&6$ j��j:,A��A��S9bb9R#:j���8AܔA,z��C�9Z04\40Z9�C��!B�;X0,l,0X;�B�*A8ܔA&#9j`b9S$#R99#&A��8A�`
������䇇�<Z<䳎������LlL�fBϬ"129�,V<4!���!88dpm��"��BV,�92[P*V*P\M�C�

�C�M\P*V*P]L�D�

�D�L&BV*�8*8!����f�!4<gmpd88!&!8*8�*VB�Z<䇇�����䇇��������LlL�����9Eis�%#"5432#"543275#&#"3254&'.547>54'63&547#5#"=3235#47##6323#324&"26%#!"&5463!2F]kbf$JMM$&�N92<Vv;,&)q(DL+�`N11MZ
%G���&54	#	i�<$8&@��0H12F1d�w�@w��w�w��B?@�UTZ3%}rV2hD5%f-C#�C@,nO	�a7�.0�x2	yR�uR/u�%6;&�$76%$56S�@w��w�w��D��<Hlw%4#"324&#"32!".5475&5475.546322#654'3%#".535"&#"5354'33"&+32#"&54632S����;<;||w
$+�|('-GVVG-��EznA�C?H_��`Rb���]Gg>Z2&`��9UW=��N9:PO;:dhe\=R����
+)�&')-S9��9kJ�<)Um�Q��/��-Ya^"![��Y��'(<`X;_�L6#)|����tWW:;X���	#'#3#!"&5463!2)
p�*�xeשw�@w��w�w���0,\8�����@w��w�w��9��I#"'#"&'&>767&5462#"'.7>32>4."&'&54>32JrO<3>5�-&FD(=Gq���@C$39a��LL��²�L4

&)
@]��v�
�q#CO���!~󿵂<ZK#*Pq.���%
L��²�LL��arh({�w؜\���i&5467&6747632#".'&##".'&'.'#".5467>72765'./"#"&'&5
�}����1R<2"7MW'$	;IS7@�5sQ@@)�R#DvTA;
0x
I)�!:>�+<B76:NFcP:SC4r�l+r �E%.*a-(6%('�>)C	6.�>�
!-I[4&#"324&#"3264&#"324&#"326&#"#".'7$4$32'#"$&6$32D2)+BB+)3(--(3�1)+BB+)�4'--'4��'���#!0>R	�H���MŰ9�o�u7ǖD��䣣���
R23('3�_,--,�R23('3�_,--,�����NJ
������?u�W�m%������#"'%#"'.5	%&'&7632�!�
�;�
	`��u%"��(����!]#�c�)(�	��� #"'%#"'.5%&'&76	�!�
���	�(%#�#���fP_�"�(���!�)'��+�ʼn�����4I#"$'&6?6332>4.#"#!"&54766$32#!"&=46;46;2z�䜬��m�
I�wh��QQ��hb�F�*�@&('�k�������@����z��
�	
_hQ��н�QGB�'(&�*�eozΘ�@@`���  >. $$ ����ff���ff�����^����a�af���ff�����^����a�a��>�����"&#"#"&54>7654'&#!"#"&#"#"&54>765'46.'."&54632326323!27654'.5463232632�,�-,�,",:!
%�]&
%@2(/�.+�*)6!	<.$.�.*�*"+8#
�
#Q3,�,+�+#-:#"</$�)

w�

���
,*

x9-.2"'
,,
���@�&,,
��Qw
,����,#"+"&5#+"&5&'&'&547676)2�%2$l$�#l#�b~B@XXyo2�$CI@5��$$�>$$�/:yu��xv)%$	��/?CG%!5%2#!"&5463!5#5!52#!"&54632#!"&5463#5!5`���&&�&&������ �&&�&&�&&�&&@������&�&&&���������&�&&&�&�&&&��������%2 &547%#"&632%&546 #"'6���������\~����~\h�
���~\��h\�������V�
�V�������V��V���%5$4&#"'64'73264&"&#"3272#!"&5463!2}XT=��=TX}}�~�>SX}}XS>�~�}�w�@w��w�w���~:xx:~�}}Xx9}�}9xX}�@w��w�w���/>LXds.327>76 $&6$32762#"/&4762"/&47626+"&46;2'"&=462#"'&4?62E0l�,

*"�T�.�D@Yo������oo����@5D�

[		

Z
�Z

		[	 ``��[



Z

	�2
,�l0
(T�"�.�D5@������oo��oY@D,

Z

		[	�		[		

Z
��``EZ

		[		
�5%!  $&66='&'%77'727'%am��lL�������m�f�?���5���5>�f�F�tu�ut�F������������LlL�H�Y�C�L|��|L����Y�˄(��E''E*(�/?IYiy����%+"&=46;2+"&=46;2+"&=46;2+"&=46;2%"&=!#+"&=46;2+"&=46;2+"&=46;2+"&=46;2!54!54>$ +"&=46;2#!"&=������@�������&&������@��������������3P��
>��P3��&��&��r���r��r���&��&���r���r��r���
he

4LKM:%%:MKL4�W��T�&&��%/9##!"&563!!#!"&5"&5!2!5463!2!5463!2�&&�&��&�&&���� ��� ��&��&&i�@����&&@&7�����'#5&?6262�%%�o����;����j|/����&jJ%�p��&j;&i&�p���/|���j�ţ���%Jk%�o��%��	:g"&5462#"&546324&#!"263662>7'&75.''&'&&'&6463!276i���~ZYYZ~�@O��S;+[G[3YUD#o?D&G3I=J�y�TkBuhNV!WOhuAiS�y*'^C�C^'*SwwSTvvTSwwSTvv���WID\�_"[�g��q# /3qF��r2/ $r�g�%4
�HffH�J4d���#!#7!!7!#5!������VF��N����rmN�N��N����������N���!Y���+?Ne%&'&'&7>727>'#&'&'&>2'&'&676'&76$7&'&767>76'6�#
<�;1�1x��#*#
�G,T9�3%�/#0v�N�Z;:8��)M:(	&���C.J}2	%0����
 	^*
J�F	
&�7'X"2L�DM"	+��6�
M2+'BQfXV#+]
#���'
L/(e�B�9
�#,8!!!5!!5!5!5!5#26%!!26#!"&5!5���������������&4&���&�pP��Pp������������������@��@&&@��!&�@PppP@�*
��	9Q$"&54627"."#"&547>2"'.#"#"&5476$ "'&$ #"&5476$ (�}R}hL�K�
N���N
����U�d:�
�x�x�
�����8���
��
�
� ,, |2222�
MXXM

�ic,>>,�
����
�	����	�
��̺

�
��'/7?KSck{4&"2$4&"24&"24&"24&"24&"24&"24&"24&"264&"24&#!"3!264&"2#!"&5463!2�KjKKj�KjKKj��KjKKjKKjKKj��KjKKj��KjKKjKKjKKj��KjKKjKLhLLhL��KjKKj�&�&&&KjKKj�L4��4LL4�4L5jKKjKKjKKjK�jKKjK��jKKjK�jKKjK�jKKjK��jKKjK�jKKjK���4LL4��4LL�jKKjK�&&�&&��jKKjK�4LL44LL	��'E!#"+"&7>76;7676767>'#'"#!"&7>3!2�W�",&7'�	#$	&��g�pf5O�.P�q�ZZdS���-V"0kqzTx�D!��!8�p�8%'i_�F?;�k��R(`��
!�&)�'�
(2!&6367!	&63!2�!
`�B��1LO�(���+#�=)�heC��Qg#s`���f�4#����6�������q�'���X�|0-�g��	�>IY#6?>7&#!%'.'33#&#"#"/3674'.54636%#"3733#!"&5463!2��4��:@��7�vH��%�h��EP{��0&<'VFJo���1,1.F6��A��#���L4�4LL44L"%�	
 
7x'6
O\�JYFw���~�v^fH$ !�"xdjD"!�6��`J�4LL44LL��	�+3@GXcgqz�����-<JX{�&#"327&76'32>54.#"35#3;5#'#3537+5;3'23764/"+353$4632#"$2#462#"6462""'"&5&5474761256321##%354&'"&#"5#35432354323=#&#"32?4/&54327&#"#"'326'#"=35#5##3327"327'#"'354&3"5#354327&327''"&46327&#"3=#&#"32?"5#354327&3=#&"32?"#3274?67654'&'4/"&#!"&5463!2_��g��QQ��h���^_�~\[[\]�_^���h��QQ��g�e��<F�$�$$��� !!�&&�/!/

!!�

00/e&'!"e$�
		'!!�''�
	8''NgL4�4LL44L�UQ��gh��QUk=<Sc���cc,-{k���jUQ��hg��Q��



�9

,&W &$U�K$$KK$$KDC(>("
!
=))=2�( '! '�L#(>(
&�DC(>(z�L#�DzG)<)�4LL44LL��	�
BWbjq}��+532%+5324&+32763#4&'.546327&#"#"'3265#"&546325&#"32!264&"2%#'#735#535#535#3'654&+353#!"&5463!29$<=$�@?�SdO__J-<AA@)7")9,<$.%0*,G3@%)1??.+&((JgfJ*�A�������!&��j�jj��GZYG�иwssw��PiL>8aA	!M7�7MM7�7M�3!�
4erJ]��&3YM�(,
,%7(#)
,(@=)M%A20C&Me�e��(X���0&Ėjj�jV��	8Z8J9���N/4���$�8NN8�8NN��	�#&:O[���	$?b3'7'#3#%54+32%4+324+323'%#5#'#'##337"&##'!!732%#3#3##!"&53733537!572!56373353#'#'#"5#&#!'#'#463!2#"5#"5!&+&+'!!7353273532!2732%#54&+#32#46.+#2#3#3##+53254&".546;#"67+53254&.546;#"#'#'##"54;"&;7335wY-AJF���=c�(TS)!*RQ+��*RQ+�Y,�B^9^��Ft`njUM�')	~PS�PR�m���٘���M7�7Mo7�q

@)U	8�"����E(�1��++��NM7�7Mx3�7��8�D�62��W74�;�9�<�-A"EA�0:��AF@�1:�ؗ����B�f~~""12"4(�w$#11#�@}}!%+%5(�v$:O�\z��K��?*$\amcrVl��OO176Nn�<!E(=�<&l/������<<������
[ZZYY�89176���7OO7�==..//cV==::z,,,,aa,,��7OO7�Z::��;;Y
fcW�(		"6-!c�(		!5	#
b�t88176����tV:
&$'*9	%e#:
%'*9B����<<��;
&(�����	�#:Sn�����#"&54632%#76;2#"&54632%4&+";2?>23266&+"&#"3267;24&+"'&+";27%4&+";2?>23266&+"&#"3267;254+";27#76;2#!"&5463!2�3%#2%%,, _3$$2%%��M>�ALVb5)LDHeE:<
E�Mj,K'-R
M�~M>�ARVb5)LEHeE:<
E�
JAB�I*'!($rL4�4LL44Lv%1 %3!x*k�$2 %3!�;5�h
n
a�
!(lI;F	
	
��	r�p
p8;5�h

t
a�
!(lI;F��`	#k�4LL44LL
��	�
2HW[lt��#"'5632#6324&'.54327&#"#"&'32767#533275#"=5&#"'#36323#4'&#"'#7532764&"24'&#"327'#"'&'36#!"&5463!2=!9�n23��BD$ &:BCRM.0AC'0RH`Q03'`�.>,&I / *�
 /

��8/��n-(G@5��$ S3=�,.B..B�02^`o?7je;9G+��L4�4LL44LyE%#	�Vb�;A
!p &'F:Aq)%)#o�rg�T$v2�� 8�)2����z948/�{�8A�B..B/��q?@�r�<7(g/��4LL44LL��?#!"&'24#"&54"&/&6?&5>547&54626=�L4�@�ԕ;U g3
��
T
�2RX='�8P8|�5�
����4Lj��j� U;Ig@
	��
`
� "*\���(88(�]k
��&N4#"&54"3	.#"#!"&'7!&7&/&6?&5>547&54626;U gI��m*��]�Z0�L4�@�ԕ���=o=CT
��
T
�2RX='�8P8|�5�
� U;Ig��Xu?bl3���@4Lj��j��a���`
	��
`
� "*\���(88(�]k����/7[%4&+";26%4&+";26%4&+";26!'&'!+#!"&5#"&=463!7>3!2!2@@@@@@���0
��
o`^B��B^`5FN(@(NF5���@��@��@�u		�@�LSyuS�@�%44%����,<H#"5432+"=4&#"326=46;2  >. $$ ~Isy9���"SgR8v�H����D�	w
����ff���ff�����^����a�a�m2N+��	)H-mF+1����0*F		+f���ff�����^����a�a�����b4&#"32>"#"'&'#"&54632?>;23>5!"3276#"$&6$3 �k^?zb=ka`�U4J{�K_/4�^����W�&	vx :XB0���܂�ff���)
f������zz��X��lz=l�apz��o�b35!2BX���
�G@8��'	'=vN$\f���f�	1
	SZz�8�z�X�#("/+'547'&4?6276	'D�^�h

�

i��%5�@�%[i

�

h�]��@������]�h

�

i��%�@�5%[i

�

h�^�@@������)2#"&5476#".5327>OFi-���ay~�\~;��'�S���{�s:D8>)AJfh]F?X��{[��TC6��LlG��]��v2'"%B];$�-o��%!2>7>3232>7>322>7>32".'.#"#"&'.#"#"&'.#"#546;!!!!!32#"&54>52#"&54>52#"&54>52�-P&+#($P.-P$'#+&PZP&+#"+&P-($P-.P$(#+$P.-P$'#+&P-.P$+#pP@@Pp�H85K"&ZH85K"&ZH85K"&Z����@��Pp��@��@��@pMSK5, :&�LMSK5, :&�LMSK5, :&����!!3	!	�����@�����@@�����	#"$$3!!2"j������aѻxl���a����lx�a�a����j������!!3/"/'62'&63!2��'y��

�`�I

��y�����My��

�`�I

��y'W`#".'.#"32767!"&54>3232654.'&546#&'5&#"

4$%Eӕ;iNL291 ;XxR`�f՝�Q8T������W��iW�gW:;*:`�Qs&?RWXJ8�oNU0�J1F@#)
[�%6_PO�QiX(o�`��_?5�"$���iʗ\&>bd�s�6�aP*< -;iFn�*-c1B���Wg4'.'4.54632#7&'.#"#"'.#"32767'#"&54632326#!"&5463!2��#$(	1$6]'
!E3P|ad(2S;aF9'EO�Se�j]�m�]<*rYs��hpt.#)$78L*k�h�w�@w��w�w��B

%
$/$G6
sP`X):F�/�fwH1p�dl�qnmPH�ui�kw_:[9D'��@w��w�w��34."2>$4.#!!2>#!".>3!2�Q��н�QQ��н�QQ��h�~w��w�h���f����ff����н�QQ��н�QQ��н�QZ����ZQ�����ff���ff�#>3!2#!".2>4."f����ff�����н�QQ��н�QQ���ff���ff��Q��н�QQ��н�	,\!"&?&#"326'3&'!&#"#"'  5467'+#"327#"&463!!'#"&463!2632���(#�AH����s���9q � ci��<=�
#�]�<������OFA��!�������re��&&��U�&&![e��F �������U?���g�����4_���������a�?b�+��r7�&4&��&4&�p,�+K4&"2$4&"2.#!"3!264&#!"3!2#"&=!"&=#47>$ �KjKKjKKjKKjH#�j#H&&&������KjK�KjK�g	�V�	ijKKjKKjKKjK���..n((�[���5KK5��5KK5�[po�Nv<<vN�:f���.R#!"&463!24'!"&5463!&$#"!2#!32>+#"'#"&546;&546$3232�2$�B$22$�$�*$22$�X�ڭ��ӯ�$22$�tX'���hs2$���ϧ��kc�$22$���1���c�$2�F33F3VVT2#$2����ԱVT2#$2��g���#2UU���݃
�2$#2UU�1݃���2��,u�54#"67.632&#"32654'.#"32764.'&$#"7232&'##"&54732654&#"467&5463254632>32#"'&�ru�&9��%"*#�͟ <yK0Og�" 
&9B3�;��㛘8��s%+DWXRD= @Y%�	!Q6R�!4M8�+6rU^z=)�RN��.)C>O%GR�=O&^���op������C8�pP*�b�Y
_�#��$��N Pb@6��)?����+0L15"4$.�Es
�5I�Q"!@h"�Y7e|J>z�iPe��n�eHbIl�F>^]@����n*9
���6[_3#"&54632#.#"32%3#"&54632#.#"326%4&'.'&! ! 7>7>!���������
�=39?
6'_����������
�>29?
5'17m-V����U--,�bW.�������뮠@Fyu0HC$������뮠@Fyu0HC$L���=??
<����=! A	<��`�;+"&54&#!+"&5463!2#!"&546;2!26546;2���p���Ї����0�p�����p���@��I�������pp���>Sc+"&=46;254&+"&+";2=46;2;2=46;2;2%54&#!";2=;26#!"&5463!2���A5�DD�5A7^6a7MB5��5B7?�5B~�`��`��`0`��rr��5A44A5�����v�5AA5�f�*A���`��`0`�����	!!!!	#!"&5463!2��ړ�7���H��7j�v�@v��v�v��'���:��@v��v�v���MUahmrx���������������#"'!"'!#"&547.547.54674&547&54632!62!632!#!627'!%!"67'#77!63!!7357/7'%#	%'3/&=&'	5#?&5476��!�p4�q"���"�"�6�"� ��'������h*�[���
��|�*��,�@���?wA�UM�pV���@�˝�����)��Ϳw����7(�{��*U%���K6������=0�(���M���		��"!O		dX$k
!!��!
����b��	
���[�����TDOi
��@��6��b��xBA�ݽ�5
�
�ɝ:����J���+���3����,��p
x�1���������Fi
(��R��
463!#!"&5%'4&#!"3���`����а@.�.@A-X��f�B����$��.BB.�.C��}
)&54$32&'%&&'67���"w�`�Rd]G�{��o]>p6��sc(��@wg����mJ�PAjy���YW�a͊AZq���{HZ�:�<dv\gx�>��2AT�Kn������+;"'&#"&#"+6!263 2&#"&#">3267&#">326e��~�└�Ȁ|��隚���Ν|����ū|iy�Zʬ��7Ӕ�ް�r|�uѥ��x�9[��[9�jj��9A�N��N�+,#ll"���B�S32fk��[/?\%4&+";26%4&+";26%4&+";26%4&+";26%#!"&5467&546326$32�]]��ee��ee��ee��$��~i
�qfN-*���������#����Sj������t�2"'q�C���B8!�'�>	
!%)-159=AEIMQUY]agkosw{��������!	%!	5!#5#5#5#5#57777????#5!#5!#5!#5!#5!#5!#5!#5#537#5!#5!#5!#5!#5!#55#535353535353%"&546326#"'#32>54.&54>3237.#"����������Q%%%%%%%%%?iiihOiixiiyiixii�Arssrrssr��%s�ssrrss�Ns%%%%%%%%%%�����������'<D<'paC_78#7PO7)("I$	75!����RA��b��(���ss�ss�ss�ss�ss�"/!".""."
!."".!/^.".^.".]/".�$$$$$$$$$$$$$$$$��Os$$$$$$$$$$$$$$sO$s�ss�ss�ss�ss�ss#��������}$)	13?*
,./:
-�s�*4&"2$4&"2#!"&5463!2!5463!2_��������?-��-??-�,@�@,�-?����pq�8��,??,D,??,��,??(�Z2#".#"3267>32#".543232654&#"#"&54654&#"#"&547>326���ڞU�zrhgrx�S��Пd�U <e�����x՞����Zf��_gן:k=2;�^��9��Œ��7\x��x\7����K=5Xltֆ�W����W{e_�%N��%,%CI��%���#+W4&+54&"#";26=32"&462"&462!2#!"&54>7#"&463!2!2�&�&4&�&&�&4&���KjKKj�KjKKj� ���&&�&%��&&�&&4&�&&�&4&�&&��5jKKjKKjKKjK��%z
0&4&&3D7&4&
%&���'S4&"4&"'&"27"&462"&462!2#!"&54>7#"&463!2!2&4�&4&�4&4��KjKKj�KjKKj� ���&&�&%��&&�&&4&�%&&�ے&4��"jKKjKKjKKjK��%z
0&4&&3D7&4&
%&��	&	!'!	!%!!!!%"'.763!2�o���]�F������o�������oZ��Y��@:�@�!�!�g���������������f�/�/��I��62'"/"/"/"/"/"/"/7762762762762762762%"/77627&6?35!5!!3762762'"/"/"/"/"/"/%5#5!4�ZSS6SS4SS4SS4SS4SS4SS4�ZSS4SS4SS4SS4SS4SS4S�-4�ZSS4S@������4SS4�ZSS6SS4SS4SS4SS4SS4S@�����ZSSSSSSSSSSSSSS�ZSSSSSSSSSSSSSy�ZRRR@%:=
:+������:
=���RR�ZSSSSSSSSSSSSS���������Cv!/&'&#""'&#"	32>;232>7>76#!"&54>7'3&547&547>763226323@``����`
VFaaFV


$.


.$

��y��y�	.Q5Z���E$ ,l<l, $E���R?Y*��@���@�2	!#""#!	��y��y=r�na�@@(89*>�*%>>%*�>*98(QO�!���L\p'.'&67'#!##"327&+"&46;2!3'#"&7>;276;2+6267!"'&7&#"(6&#"#"'�D��g��OOG`n%�E������LL{�@&&�N�c,sU�&&�!Fre&&�s�����s���#�/,�������<=�
#�]�g��L�o�GkP�'��r-n&4&2�-ir&�&�?���o 
��������4_�����5OW! .54>762>7.'.7>+#!"&5#"&5463!2"&462�{�����{BtxG,:`9(0b��Կ�b0(9`:,GxtB��&@&�&@&K5�5K`�����?e==e?1O6#,
#$
,#6OO��&��&&�&�5KK���������?!"'&'!2673267!'.."!&54632>321
��4��q#F�""�8'g��o#-��#,"t�Yg��>�oP$$Po�>�	��Z�e�p#����)�R��0���+I@$$@I+����+332++"&=#"&=46;.7>76$  ������@����ᅪ*��r���������@��@�����������r���'/2+"&5".4>32!"&=463  �&@��~[���՛[[��u˜~���gr�������&�`����u՛[[���՛[~~@��r������=E32++"&=#"&=46;5&547&'&6;22676;2  >�����``@``�ٱ��?E,��,=?��r�������H�����@``@�GݧH`�j��j���r������BJ463!2+"&=32++"&=#"&=46;5.7676%#"&5   &@�~���``@``�� �v�X����r�������&���������@``@����+BF��`r������ks463!2+"&=32++"&=#"&=46;5&547'/.?'+"&5463!2+7>6 %#"&5   &@�~���``@``��~4e	
0
	io@& �jV	
0
	Z9�������r�������&���������@``@�G�ɞ5o
,
sp� &@k^
,
c8~~��`r�������8>KR_32++"&=!+"&=#"&=46;.767666'27&547&#"&'2#"�����@�@���'�Ϋ���'������sg��gs�����ww�@����sg��g����@����@���-ss��ʃl������9���9��������OO���r9���9��FP^l463!2+"&=$'.7>76%#"&=463!2+"&=%#"&54'>%&547.#"254&' &@�L?����CuГP	��v�Y�� &@�;"����������ޥ�5݇�����ޥ���5�`&����_��ڿg��w��BF�@&����J_	s���&��&�����?%x���������%x��JP\h463!2+"&='32++"&=#"&=46;5.7676632%#"&56'327&7&#"2#"� &@�L? ���ߺu�``@``��}
�ຒ�ɞ���������ue��eu�9����ue��e�&����_��"|N�@``@��"��"|a~���l����o����9���9��r9��@�9���;C2+"&5"/".4>327'&4?627!"&=463  �&@Ռ		.	
�N~[���՛[[��u˜N�		.	
����gr�������&�`֌
	.		�O��u՛[[���՛[~N�
	.		��@��r������9A'.'&675#"&=46;5"/&4?62"/32+  ��'��֪�����\
	.		�4�		.	
\���r������|��ݧ���憛��@�\		.	
��
	.		\�@��r�����~9A"/&4?!+"&=##"$7>763546;2!'&4?62  m��		-

���@���ݧ���憛��@&�

-		�@r������m4��

-		����ٮ*�������		-

��r������+"&5&54>2  ����@��[���՛[�r�����������dG�u՛[[���r������  ".4>2������r�[���՛[[���՛�r������5�՛[[���՛[[����$2#!37#546375&#"#3!"&5463�#22#�y��/Dz?s����!#22#�2#��#2S�88�	����2#V#2��L4>32#"&''&5467&5463232>54&#"#"'.K���g��&Rv�gD�
$*2%	+Z hP=DXZ@7^?1
۰��3O+�l��h4���`���M@8'�+c+RI2
�\�ZAhS�Q>B�>?S2Vhui/�����,R0+	ZRkm�z�+>Q2#"'.'&756763232322>4."7 #"'&546��n/9�b�LHG2E"D8_
p�dd���dxO�"2�xx��ê�_�lx�2X	
!+'5>-�pkW[C
�I
I@50�Od���dd��˥�Mhfx�����x^���ә�	�#'+/7!5!!5!4&"2!5!4&"24&"2!!!��� 8P88P�� 8P88P88P88P����������P88P8 ���P88P88P88P8� ������������+N &6 !2#!+"&5!"&=463!46;23!#!"&54>32267632#"_����>�@`

��
�
��

`
�
� L4Dg��y� 6Fe=O���O�U�4L��>����
�
��

`
�
`

��4L�2�y5eud_C(====`L4����3V &6 #"/#"/&54?'&54?6327632#!"&54>32 7632_����>���		�	
	��	
	�		��		�	
	��	
	�		��%%S��y� 6Fe=�J�%��>����	
	�		��		�	
	��	
	�		��		�	
	��%65%S�y5eud_C(zz.!6%$!2!!!46;24&"2!54&#!"�&���&�&@�Ԗ��V�@&&�@��&&�Ԗ�Ԗ@��&���3!!!	!5!'!53!!	#����7I�e�����eI7��CzC�l��@�����@������@�#2#!"&?.54$3264&"!@������մ���pp�p���������((��������p�pp����#+/2#!"&?.54$3264&"!264&"!@������մ���^^�^@����^^�^@���������((��������^�^^�����^�^^�����v(#"'%.54632	"'%	632U�/�@��k0�G��,�zD#[�k#�
/t�g��
F��
����Gz�����	#'#3!)
p�*�xe���0,\8�����T���#/DM�%2<GQ^lw�����
&'&676676&'&7654&'&&546763"#"'3264&7.>&'%'.767&7667&766747665"'.'&767>3>7&'&'47.'.7676767&76767.'$73>?>67673>#6766666&'&6767.'"'276&67&54&&671&'6757>7&"2654&57>&>&'5#%67>76$7&74>=.''&'&'#'#''&'&'&'65.'&6767.'#%&''&'#2%676765&'&'&7&5&'6.7>�&5R4&5S9
W"-J�0(/�r
V"-J�0(.�)#"6&4pOPpp�c�|o}vQ�[�60X�Q��W1V�	
#5X		N"&
.
)
D>q J:102(z/=f��*4!>S5b<U$:I o<G*	,
&"O	X5
#!

��	R N#
C
83J*��R	!(D
#%37	�;$-.�
(,��覦�6ij
�	���"���)9
E�%����!B83
	j9�6/,	:QD')yX#�63V
��b�a	,
Ue��LPA@���*	̳�`Xx*&E
V36��%	B3%	B3XA	
#!.mU"A	
#!.mUB-#2+Jii�i�m-C<I(m��8qF/*)0�S
		
I
E5&+>!%
(!$p8~5..:5I

~��T�
4~9p# !
)& ?()5F	1	
	
� d%{v*�:
 @e
s|D�1d {�:�*dAA|oYk'&��<��tu��ut�&vHC�XXTR�;w��
��71™
Z*&'
1	9?	.

$��Gv5k65P<�?8q=4�a	
SC"��1#<�/6B&!ML	�^;�6k5wF1<P�C	�;$"&462"&46232>.$.�`�aa��sa�``��Z9k����'9؋ӗa-*Gl|M�e_]`F&O������ܽ�sDD!/+�``�aa�``�a1<YK3(
 /8HQelA�Z3t_fQP<343J;T7Q�+?Kgw  $6&$  $&62+"5432+"&=.54  $;26=462;26=4& 4&#!"3!26)����߄��4R4߄��mlL�������r {jK#@#Q�a����^�����@���@���`&��&&�&�������߄��4R4�Ď������LlL�N� �@K5#:rr:#5K���^����a�a��``]��]``����&&�&&	/!3#4&#!"3!265##!"&5463!22�������@K5^B��B^^B@B^5K���� �@���5K�B^^B�B^^B�K	/!2##!"&5463!2#4&#!"3!265�5KK5^B��B^^B@B^���@��K5��5K�B^^B�B^^B�`� �@ 	/!2##!"&5463!2#4&#!"3!265�5KK5^B��B^^B@B^���@��K5��5K�B^^B�B^^B�`� �@ 	/!2##!"&5463!2#4&#!"3!265�5KK5^B��B^^B@B^���@��K5��5K�B^^B�B^^B�`� �@ 	+2##!"&5463!2#4&#!"3!265�5KK5^B��B^^B@B^���@�K5��5K�B^^B�B^^B�`� �@ �{#!&'#"'&547632m*���
�0���((�'(�$0K
��*�*��% 3#!3# '!#53 5#534!#53 6!3@����@@@��pp��@@@����@@pp@��`������� �����	�+/7;A#3!5!!3#!!5!35!355#%53#5!#35#!!!!!!!!����������������������������������������������������������������������
�	#'+/3?CGW#3!5!!35!!3#!!5!#!5!3535!355#%#3%!53#5!#35#!5##5!3!5!3!5	����������������������������������������������������������������������������������������������������������������!"&5463!2!"!�`(88(@(8�`(8�}2�2R �`8(@(88(�`8HR2�2���##6?6%!!!46#!"&5463!2x���� ��8�(�`(�(88(@(8�
���� (8��(`�(8(@(88��	�'ATd+5326+5323##"' %5&465./&76%4&'5>54&'"&#!!26#!"&5463!2�
��

���i�LCly5�)*H�celzzlec0h�b,,b�eIVB9@RB�9�J_�L4�4LL44L44%��2"��4��:I;p!q4b�b3p(P`t`P(�6EC.7B�I6�4LL44LL��	�.>$4&'6#".54$ 4.#!"3!2>#!"&5463!2Zj��b�jj[���wٝ]�>o��Ӱ�ٯ�*�-���oXL4�4LL44L'�)�꽽�)�J)���]��w����L���`��ֺ��۪e���4LL44LL�;4&#!"3!26#!"&5463!2#54&#!";#"&5463!2�
��

@
�^B��B^^B@B^���
��

��B^^B@B^`@

��
M��B^^B@B^^>��

��
�^B@B^^��5=Um	!	!!2#!"&=463!.'!"&=463!>2!2#264&"".54>762".54>762��������?(`��`(?��b|b��?B//B/�]�����]FrdhLhdrF�]�����]FrdhLhdrF@�@��@�(?��@@?(@9GG9@/B//B�aItB!!BtI�Ѷ�!!��ьItB!!BtI�Ѷ�!!��ь�-M32#!"&=46;7&#"&=463!2#>5!!4.'.46�ՠ��`�@`ՠ��`���M�sF�Fs�MM�sFFs�M����ojj�o��@@�jj�@@�<���!(!���!(!�-3?32#!"&=46;7&#"&=463!2+!!64.'#�ՠ��`�@`ՠ��`��	�	Dq�L�L�qD����ojj�o��@@�jj�@@B>=�C�����-3;32#!"&=46;7&#"&=463!2+!!6.'#�ՠ��`�@`ՠ��`��UVU96�g�g�6����ojj�o��@@�jj�@@β����**ɍ�-G32#!"&=46;7&#"&=463!2#>5!!&'.46�ՠ��`�@`ՠ��`���M�sF�Fs�M�k�k�����ojj�o��@@�jj�@@�<���!(!3��3!(!�9I2#!"&=4637>7.'!2#!"&=463��@b":1P4Y,++,Y4P1:"�":1P4Y,++,Y4P1:"b�@@��@7hVX@K-AA-K@XVh77hVX@K-AA-K@XVh7����Aj"#54&#"'54&#"3!26=476=4&#"#54&'&#"#54&'&'2632632#!"&5&=4632>3265K @0.B @0.B#6'&�&
l
@0.B 2'	.B A2TA9B;h" d�
mpP��Tl��L�c�_4.H�K5�]0CB.�S�0CB.�/#��'?&&)$�$)�0CB. }(AB.�z3M�2"61�d�39�L/PpuT(If�c�_�E�`1X"#4&"'&#"3!267654&"#4&"#4&26326#!"&'&5463246326�\B B\B�&@5K�&@�"6LB\B B\B ��sc�i�L}Q�P<m$��3�jN2�c�B.�p.BB.���3K5+"�3,"� �.BB.��.BB.���.�G=�c�i�(+�lOh7/DVj�"�c�=���&5Jb�#"'&=.547!"&46;'.54632!2327%.54&#"327%>%&#"!"3!754?27%>54&#!26=31��?>I��j��jq,J[�j.-t�j�lV��\���$B.R1?@B.��+?2`$�v5K-%��5KK5�.olRIS+6K5�̈$B\B 94E.&�ʀ�15uE&
�Ԗ�Pj��j�dX�U�GJ7!.B
�
P2�.B
�
%2@	�7�K5(B�@KjKj�?+f�UE,�5K~!1��.>F.��F,Q5*H��$b2#!"&=%!"&=463!7!"&'&=4634'&#!">3!!"3!32#!"3!23!26=n$<vpP��Pp���Pp�w�*�Rd�ApP�]��'@�A&
3@��&H-�[(8@
2�EB^&1
=&�&81����PppP��pP w���cOg Pp��c�
4& #.& &,,:8(�%^B &�
.�&&��2t"&'&54'&5467>32>32>32#"#.#"#.#"3!27654&#"547654&#"#654&�Mye
t|]�WS�Sg�SY�\x{
70"1i�92�DU1&=	��	=&0@�c	>&/Btd4!�*"�8K4+"��@H@/'=	t�?�_K�93-�]�
UlgQ���QgsW
�]#�+�i>p&��3�0&�VZ&0B/
���%3B.�"t�o ){+C4I��(
/D0&�p0D��3[_cg"'&#"3!2676=4&"#54&#"#54&#"#4&'2632632632#!"&'&5463246#!#!#�5K�)B4J�&@�#\8P8 @0.B J65K J6k�
cJ/4qG^�\hB�2<m$��3�iG;��     �K5����6L4+"�3p`b�)<8(=0CB.@Z7OK5`:7O��k�EW�^�tm��@Q7/DVi�##j�������������%4Ia�2#!"&5&546325462632"32654&"3267654&76;74&"#.#"2676=#"&'+53264&#!"3</�U�X�dj���jP��ԖEu�!7JG72P
�
B�%
�
B.!7�	@�A�f+?�jKjK@�B(5K,EU�H*5Q,F��.F>.��1!~K5y?��^\��Vl�j�t-.j�[J,qj��j��I7$��?1R.B�+��.B$`2?g�vEo.�5KK5��%-K��6+SIR[��&.E49 B\B$���5K�G#!+"&5!"&=463!2+"&'+"'+"'&5>;2>76;2Y
��
�
��

M	

�.�x	�-�
	N�	�


�	�
�u
��
,
u
�?

L�W���

���#	�	*:J4'&+326+"'#+"&5463!2  $6& $&6$ <!T{�BH4�	�›�&�>UbUI-����uu�,�uu�ڎ������LlL�AX!��J��m����f\�$
6u�����uu�,�K������LlL���-[k{276/&'&#"&5463276?6'.#"!276/&'&#"&5463276?6'.#"  $6&  $&6]�h-%Lb`J%E5
,5R-����h
-%Lb`J%E5
,5R-���'����uu�,�uu��lL�������/hR

dMLcN����hR
dMLcN����1u�����uu�,��������LlL�@��� 	'	7	'7	�����`��`H� �����`�`H� �!`��������`H� � ���`�`�`H���`��'%		7'	7'7	' $&6$ ���X�`��(W�:,�:��X�`��(WL�������LlL�X�`(W��:�B����X�`���(X�������LlL��
��	$%/9ES[�#"&54632$"&4624&"26$4&#"2%#"&462$#"&4632#"32&! 24>  !#"&'.'#"$547.'!6$32�7&'77'&7�7N77N�'q�qq�q�qPOrq��E�st�����ts��st���}�||�}�������uԙ[W��Q���~,>	n������P/RU P酛���n	>,m�����'77'&77N77N6^Orq�qq�qq�q�t��棣棣�(~|��|on[��usј^�~���33������pc8{y%cq����33dqpf��	L 54 "2654"'&'"/&477&'.67>326?><����
x
�������,

(-'s�IVC��VH�r'-(

$0@!BHp9[�%&!@0$u
��
������]\��\]��-$)!IH��V
D��
VHI!)$-#3���6>N"&462."&/.2?2?64/67>&  #!"&5463!2�]�]]�3
$;
&|�v;$
(CS�3�1	=�rM=	�4�TC(G���z�w�@w��w�w���]]�]��($-;,54�0=	�sL	=�45,;�����@w��w�w������(2#"$&546327654&#"	&#"AZ�������\@�/#�%E1/#����#.1E$�!�[A�����懇�@�@\��!�#21E!��6!E13"�|!��	gL&5&'.#4&5!67&'&'5676&'6452>3.'5����A5R��V[t,G'Q4}-��&�<C!l n?D_@Փ>r!�
��G;��>��!g�1�����2sV&2:#;��d=�*'�5E2/..F�D֕71$1>2�F!���&12,��@K�
r��#"&5462>%.#"'&#"#"'>54#".'7654&&5473254&/>7326/632327?&$  $6 $&6$ �!&"2&^	u��_��x��^�h
;J݃HJǭ
q�E
Dm!
M�
G?̯'%o�8
9U�������(F(�ߎ������LlL��&!&!SEm|�[��n{�[<ɪ
"p� C
Di%
(K�HCέp�C
B
m8	
@Kނ
H�F(���������������LlL���"*6%&6$	7&$5%%6'$2"&4}���x����3��n��QH������:dΏ���Xe�8�����z��'	������l�i���=!��7�����S�o�?v�������M '&7>>7'7>''>76.'6'���El:F�gr
*�t6�K3UZ8�3P)3^I%=9	)<�}J���k+C-Wd��	&U���-��TE+]��Qr-�<Q#0
�C+M8	3':$
_Q=+If5[ˮ&&SG�ZoM�k���ܬc�#7&#"327#"'&$&546$;#"'654'632ե›��fKYYKf�¥y�ͩ���䆎�L��1���hv�v��ƚw�wk��n�]��*��]�nlx��D��L�w�����~?T8b��b9SA}����+5?F!3267!#"'#"4767%!2$324&#"6327.'!.#"��۔c�2�8�Ψ����-\���?���@hU0KeFjTl�y�E3��aVs�z�.b��؏��W80��]T��Sts�<�h�O��_u7bBt���SbF/�o��|V]SHކ�J�������34&#!"3!26#!!2#!"&=463!5!"&5463!2
��

@
�^B� `��`� B^^B@B^ �

�@
�@B^�@@�^B�B^^����>3!"&546)2+6'.'.67>76%&��F8$.39_��0DD�40DD0���+*M7{L *="#
U<-M93#�D�@U8v�k�_Y	�[�hD00DD0��0D�ce-JF1BD����N&)@
/1 d��y%F��#"'&'&'&'&763276?6#"/#"/&54?'&763276"&'&'&5#&763567632#"'&7632654'&#"32>54'&#"'.5463!2#!3>7632#"'&'&#"'&767632yq������oq>*432fb������a
$�B?
	>B
BB
AA�.-QP���PR+	42
%<ci���ђ:6&h�HGhkG@n�`��I���Ȍ5
!m��(|.mzy�PQ-.	
	je����	
�����q>@@?pp�gVZE|fb6887a
%RB?
=B
ABBAJvniQP\\PRh!cDS�`gΒ��23�geFGPHX�cCI��_ƍ��5"	
�n�*T.\PQip�
[*81
/
9@:��>t�%6#".'.>%6%&7>'.#*.'&676./&'.54>754'&#"%4>327676=
>���vwd"

�l����"3	/!,+	j2.|��%&
�(N&w���h>8X}x�c2"W<4<��,Z~�fd�aA�`FBIT;hmA<7QC1>[u])		u1�V(�k1S)
-�	0�B2*�%M;W(0S�[T�]I)	A 5%R7<vlR12I]O"��V/,b-8�/_��#3CGk2#!"&546;546;2!546;2%;2654&+";2654&+"!32++"&=#"&=46;546;24LL4��4LL4�^B@B^�^B@B^�@@�@@�����@��@L4�4LL44L`B^^B``B^^B``�� �� ��@@��@���#3W#!"&=463!2!!%4&+";26%4&+";26%#!"&546;546;2!546;232���@�����@@@@�L4��4LL4�^B@B^�^B@B^�4L�@@��� �� ��N�4LL44L`B^^B``B^^B`L��#'7Gk%"/"/&4?'&4?62762!!%4&+";26%4&+";26%#!"&546;546;2!546;232W.	
��
	.		��		.	
��
	.		��	� ����@@@@�L4��4LL4�^B@B^�^B@B^�4L�.		��		.	
��
	.		��		.	
��
��� �� ��N�4LL44L`B^^B``B^^B`L��(8\	"'&4?6262!!%4&+";26%4&+";26%#!"&546;546;2!546;232�

��		.	
��
	.	�`����@@@@�L4��4LL4�^B@B^�^B@B^�4L<�		 
	.		��		.	�:� �� ��N�4LL44L`B^^B``B^^B`L�2632632#!"&5463�&&&&��&&&���&���&��&&�&�#27+"&5  %264&#"26546��>&�&T�,��X�������q&&�1��X��,�LΒw�%��%;#!"&5463!546;2!2!+"&52#!"/&4?63!5!�

�(��&&@&�&(��&�&@&&��(�

�(�

�&&@&&@��&&�&�&�

�����#''%#"'&54676%6%%�������
�hh �@�` ���!�� ���!� ��
��
��
�
������
�#52#"&5476!2#"&5476!2#"'&546
� 
��
� 
���
�
�@�
�
�@�
��
�@

�
� 84&"2$4&"2$4&"2#"'&'&7>7.54$ �KjKKj�KjKKj�KjKKj��d�ne���4"%!������KjKKjKKjKKjKKjKKjK.���٫�8
!%00C'Z���'���.W"&462"&462"&462 6?32$6&#"'#"&'5&6&>7>7&54>$ �KjKKj�KjKKj�KjKKj�h��я�W.�{+9E=�c��Q�d�FK��1A
0)����LlL��jKKjKKjKKjKKjKKjK���p�J2`[Q?l&�����٫�C58.H(Y���ee���	�

			���Y'����w��(�����O��'��R���@$#"&#"'>7676327676#"�
�����b,XHUmM�.�U_t,7A3ge
z9@xS���a�Q�BLb�(�	����V���U�����
!!!�=�����=���w)��������AU!!77'7'#'#274.#"#32!5'.>537#"76=4>5'.465!��KkkK_5 5�� �#BH1��`L

I���&�v6��SF���!Sr99rS!``� /7K%s}H���XV
��P��V	e��		V�d/9Q[ $547.546326%>>32"&5%632264&#"64'&""&'&"2>&2654&#";2���P���3>tSU<�)tqH+>XX|W��h,�:USt��W|XX>=X*
)���)
+�^X^�|WX=>X�:_.2������//a:Ru?�
	
Q%-W|XW>J�(	�=u��>XX|WX�`

*((*


+2		2�X>=XW|E��03>$32!>7'&'&7!6./EU����noh��i����I\�������0<{ >ORD��ƚ�~�˕V�ƻ��o�R C3��7J6I`��Tb<�^M~M8O����	�	
5!#!"&!5!!52!5463	^B�@B^���`B^�^B `��B^^"�����^B��B^��0;%'#".54>327&$#"32$	!"$&6$3 ##320�J�����U��n��L�n��ʡ���~~�&��q�@�t�K�����L��}�'`� -
-�ox����nǑUyl}��~������~�F����ڎ�LlL��t�`(88( ��	7!'	!���\W�������\���d;����tZ�`_��O��;���}54+";2%54+";2!4&"!4;234;2354;2354>3&546263232632#"&#"26354;2354;2354;2�````��p�p��`�`�`� !,! -&M<FI(2�`�`�`�����@PppP���pppppp�#  #
�
�pppp��p	�j#"'&=!;5463!2#!"&=#".'.#!#"&463232>7>;>32#"&'#"!546���	��%. `@��` :,.',-���Xj��jX�h-,'.,: kb>PppP>bk .%Z �&�
�:k%$> $`��`6&L')59I"Tl�ԖlT"I95)'L&69Gp�pG9$ >$%k:��!+32&#!332 $&6$ ~O8��8���O�����������LlL�>pN
�����
i������LlL����	'':Ma4&'#"'.7654.#""'&#"3!267#!"&54676$32#"'.76'&>$#"'.7654'&676mD5)
z�{��6lP,@Kij��jOo�Ɏ���ȕ>>��[t��a)GG4?a�)
ll
>�;_-/
9GH{�z�yN@,K�ԕoN��繁������y��!
?hh>$
�D��"
>��â?$��	n"&5462'#".54>22654.'&'.54>32#"#*.5./"�~��~�s�!��m�{b6#	-SjR,l'(s�-6^]It�g))[��zxȁZ&+6,4$.X%%Dc*
&D~WL}]I0"

YYZ��vJ@N*CVTR3/A3$#/;'"/fR-,&2-"
7Zr�^N��a94Rji3.I+

&6W6>N%&60;96@7F6I3���+4&#!"3!26%4&#!"3!26 $$ ��������^����a�a`@��@����^����a�a�����'7  $ >. %"&546;2#!"&546;2#/�a����^�����(�����������������^����a�a����(������N@��@�����4&#!"3!26 $$ @��@����^����a�a`@����^����a�a�����'  $ >. 7"&5463!2#/�a����^�����(��������n@����^����a�a����(������N@���%=%#!"'&7!>3!26=!26=!2%"&54&""&546 �#��#]V�TV$KjK�KjK$��&4&�Ԗ&4&�>��9G��!�5KK5��5KK5�!��&&j��j�&&����#/;Im2+#!"&'#"&463>'.3%4&"26%4&"26%6.326#>;463!232#.+#!"&5#"�5KK5sH.�.Hs5KK5e# )4# %�&4&&4&�&4&&4&` #4) #%�~]�e�Z�&�&�Z�e�]E-�&��&�-EKjK�j.<<.�KjK��)�#)�`"@�&&�`&&�&&�`&&�)#�`)"�d�Xo&&oX�G�,8&&8!����O##!!2#!+"'&7#+"'&7!"'&?63!!"'&?63!6;236;2!2�@�@�8��@7

8��Q�
	N�Q�
	N��
	8G@��

8GQ�
	N�Q�
	N7
	�������8��8��H��H��k��%		".>2I�������2�0�]@��]��@o�����o@@o�����o㔕����a�22���]����]�p�^���|11|�9�9�|11|�(��%7'7'	'	7T���� d���lt��l)q��n�������luul�������)1$4&"24&"2 &6 +"&5476;2 &6 LhLLh�LLhLLhL����>�
�� �&
  �&�`����>�hLLhLLhLLhL�����>����&�&�����>��G��
	.7)1!62	1!62h��e�������2�20e���2�2>�	v
+4�	[��d����+
���d� �135#5&'72!5!#"&'"'#"$547&54$ ���Eh���`X����(����cY���z�:L:�z���Yc��������\$_K`Pa}��f��iXXiޝf���a���	���(+.>#5#5!5!5!54&+'#"3!267!7!#!"&5463!2����U�`��`' ����� �����j��j�V>�(>VV>�>Vq����������������(^����(>VV>�>VV�=&'&'&'&76'&'&.' #.�h8��"$Y
''>eX5,	,Pts�K�25M�RLqS;:.K'�5�R

Ch���h�����R�t(+e�^TT���u B"$:2�~<�����2�Hp����wTT�� V�/7GWg. %&32?673327>/.'676$4&"2 $&6$   $6& $&6$ d-����-�m	
	,6*6,	
	m���KjKKj�o������oo���K����zz�8�zz�Ȏ������LlL�U4>>4-.��YG0
)�xx�)
0GYޞ.�jKKjKq���oo��oo�lz�����zz�8�0������LlL��D��/7H#"'.7'654&#"'67'.6?>%"&46227#".547|D,=),9#�7��[͑�f�x���!X: �D�$+�s)�hh�i��jZ������t�<��F/��*8C,�q؜�e���\�r,W�BX���/C2��h�hh���=�t������Xm�����>NZ+"&=46;2+"&=4>7>54&#"#"/.7632  >. $$ p��=+& �35,W48'3	l
z����ff���ff�����^����a�aP���2P: D#;$#
$*;?R
��Cf���ff�����^����a�a��'�Y	>O`"&5462&'.'.76.5632.'#&'.'&6?65��\\�[�<C��z�C
25�U#
.�ZK ��m+[$/#>(	|�	r���[A@[[@A�#2#�
����7�*
<Y���$
+}"(��
�q�87] F 	_��1)
��	�	#1Ke34&+326+"&=!#!"&763!2#!"&5463!2#>?4.'3#>?4.'3#>?4.'3��Xe`64[l�����7
��
,	L;�����=+3&98&+)>�>+3&98&+)>�=+3&88&+)>	�Wj�|r�>Q$��~���d$kaw+-wi[[\�;/xgY$kaw+-wi[[\�;/xgY$kaw+-wi[[\�;/xgY���J\m�4.'.'&#"#"'.'&47>7632327>7>54&'&#"327>"&47654'&462"'&476'&462"'&47>&'&462i$		$^"

%%

"^$		$W "@9O?1&&18?t@" W�&%%&4KK�6pp&4���6ZaaZ&4mttm�^x	-���-	x^=/U7Ck���kz'[$=�&5%54'4&K�K�4r<r4&��X��4[��[4&m����m��'/7?GOW_gow����"264$"264"264"264$"264"264$"264"264"&462"&462"&462"&462"&462"&462"&462"&462"&462"&462"&462"&462�^^�^��^^�^^�^^�^��^^�^��^^�^���^^�^��^^�^^�^^�^� p�pp�pp�pp��pp�pp�pp�pp��pp�pp�pp�pp��pp�pp�pp�pp��pp�pp�pp�pp��pp�pp�pp�pp�`^�^^�^^�^^�^^�^^��^^�^^�^^�^^�^^�^^�^^�^^�^^�^^���pp�pp�pp�p��pp�pp�pp�p��pp�p���pp�p��pp�p���pp�p��pp�pp�pp�p��pp�pp�pp�p	��LTi{�"&4626"&462$"&462#"&4632654>7>54 "&54>2"&462%"&54&#""&546 %#"&'&'.7>#"'&'.7>�&4&&4�&4&&4SZ��&4&&4�4$#&�&&j�3$"('$������&4&[���՛[��&4&&4F&4&�]\�&4&�$��
	!D�4�%	,\�4�4&&4&�4&&4&-�Z�4&&4&;cX/)#&>B)��&4&�j9aU0'.4a7����&&u՛[[���4&&4&@&&]��]&&��Ώ0
�u4��0
)�4���#g�&'.#"32676%4/&#"326'&#"2632#2+&'%#"'&6?676676632%#"'&6767#"&'&6767#"'.7>327"#"&'&6763"'.7>;7632;>%5K$
"0%>s$
"0%>;;>%5K�VL#>H30
\�($$(�\���(�є�yO2F/{�(?0(TK.5sg$��є�y#-F/{�$70(TK.5sg$L#>H30
\�($$(�\#�(@5"'K58!'"5�8!'"55"'K#dS$K		K$Sdx#@1
w�d>N;ET0((?
-
2K|��1
w�����d#N;ET0$(?
-
2K$#dS$K		K$Sdx�DN\2654& 265462"2654 #"32654>7>54."/&47&'?62 &4&���&4&���h�՛[&4&r$'("$3�j&&��&#$4[����"�@��GB�[�
"�&&��Β&&]���[��u&&����7a4.'0Ua9j�&4&�)B>&#)/Xc;u՛����"�"
�G�i[����Xh#"&54676324&'&#"'>54#"32#"54>54'.#"32>7>767632326#!"&5463!2b
)
:4FD�N

[�1�,^�J��K-*E#9gWR�Yvm0O	��w�@w��w�w��C2�2c@X�&!�9{M�A���_��"S4b// DR"Xlj�PY<	�@w��w�w��%���e4.#"32>7676#'.#"#"&54>3232>754&*#"&54>763 >32�
''il$E/
@�P@��
^��`��'W6&�!.. ! -P5+


�E{�n46vLe�Vz�:���,SN/
M5M[��
	]$�[��^��5�iC'2H&!(?]v`*	��l�	��b��$9>
���=R�2
#"&5467%!"&7>3-.7>;%.7>322326/.76/.'&6766/&/&#"&676	&676&6766/&672? �=1�(H/ ��	'96&�@)9<'���)29%
�&06#���#��$� J� �07j)�5@�"*3%�"!M
��%#K�"%N�e8)'8_�(9�.<�c +8 8(%6 <)'4@@)#-<^
?%$-`%.
}Q!&�}%&N�-l���IJ�;6>/�=*�%8!Q ���#P"�\Q#N&�a��)<9�bR]mp%"'.'&54>76%&54763263 #"/7#"'#"&/%$%322654&#"%'OV�9
�nt
|\d
ϓ[��nt
|@�D:)��	
;9�8'+|�j�," �41����CH^�nVz(�~R	�9�\'	�r�

@����L��@�
	@�w4�6�HI(+�C
,��55,��
f[op@�\j�;(zV~����i/5O#"'&54>32&#" 654'67'"'>54''&'"'6767&546767>7���蒓��`V BM���R� B9)̟�!SH-77I�Xm�SM�H*�k#".o;^J q�ן���ד��>@�����YM
$bK���d ��ү[E"����;���Kx%^�6;%T,U:i�m=Mk���).DT4'"&5463267&#" 6;64'.'4'>732676%#!"&5463!2),�蛜s5-<A���4ϲ
2W9
�&P:\�3)SEPJ��D4:3NI�w�@w��w�w��NE	2@u��us�+,�����/?x�sa�tmP�'�)fHVEA(%dA4w&4J5*�@w��w�w�����O[4'.'&54>54&#"#"'654'.#"#"&#"3263232>3232>76 $$ �Cf'/'%($�U�L
(
#'/'@��3#@,G)+H+@#3
����^����a�a�X@_O#NW�#O_�.*	##(��^����a�a����q�[632632#"&#"#".'&#"#".'&54767>7654.54632327&547>P��9	B6?K?%�O4�T% >6>Z64Y=6>%S�4N�$?L?4B	@���{:y/�$ ,'R�!F!8%
#)(()#%:!F �Q'+%�0z:�z���O_4'.'&54>54&#"#"'654'.#"#"&#"3263232>3232>76#!"&5463!2Cf'.'%($�V�M
)
#'.'@��
3
#A,G)+H+A#
4
��w�@w��w�w��XA?4N$NW�&M&L�/*
##	+�@w��w�w����	O$>?>762'&#"./454327327>7>	EpB5
3FAP/h����\�/NG�S�L�	� ���R�P*��m�95F84f&3Ga4B|wB.\FI*/�.?&,��5~K %
&��Y."7n<	"-I.�M`{�ARwJ!�FX^dj''''"'7&'7&'7&'7&547'67'67'67'63277774$#"32$			*��'ֱ,?�g=OO&L&NJBg�;1��'����'ֱ.=�gCIM
$'&&NJBg�=.��%�����w؝\\��w�
�I�o�o��<�<���-NIDg�=/��%����(ײ+A�hEHO*"#*OICh�=/��'����(ֲ/=�h>ON.��]��xwڝ]��������7��e��[���@�����)6!!"3#"&546%3567654'3!67!4&'7S��gn�y]K-�����#75LSl>�9���V��%�cPe}&H�n��_�HȌ����=UoLQ1!��4564���7U�C"�
�!-9[nx��"&46254&"326754&"326754&"26754&"26#".547632632626326'4#"#"54732764&"264.#"327632>#"'"'#"'#"&5#"'67&'327&'&54>3267>7>7>32632632T"8""8�)<())�(<)))�)<))<)�)<))<)T�د{ՐRh�x=8 78 n 81
p��H_6�S��oc
�F@b@?d?uK�bM�70[f5Y$35KUC<:��[;+8 n 87 8/8Zlv]64qE 'YK�0-AlB;
W��#;WS9
&�(#-7Z�://:/�Tr++r,,r++r,,r++r,,r++r,,ʠ�g��xXV�ע��e9222222^�K�Vv���F0�2OO23OO��`�lF;�mhj84D�ro��B@�r+@222222C0DP`.�r8h9��~T4.&o�@9��1P���%14'!3#"&46327&#"326%35#5##33 $$ ����}Pc��c]<hl���ࠥ�Ymmnnnn���^����a�aw!�LY�Ə;ed����wnnnnnv�^����a�a��%�'#"$#"#.5462632327>321��I��U�Π?L���L?��cc�4MX�&��04;0��XpD[��[DpD,)&&�Q	9V\�26&".'&'&6?.#"#26327677>'32>&3#'&+"?626&"#!'.'!"&5463!>;26;2!2�P  P 	
92#.}S�P9:�:%L\B�� )spN/9oJ5 
!+D�`]�Bg�Y9�+�,�9%
Pk4P  P &�NnF!_7*}B<�{o0��&&�B;*<@$ucRRc�#@16#37c&�@@@
J"@*4�^`E�D�B�����o/8927
*@O�LC�!T!32�3X$�BJ@@@��&AS
0C59"'D/&�&D488$5A&�%O#!"&547>7>2$7>/.".'&'&2>^B�@B^>FFz�n_0P:P2\n�zFF>��R&�p^1P:P1^��&R
P2NMJMQ0Rr�.B^^B�	7:5]yPH!%%"FPy]5:7	���=4�QH!%%!H�t4=�<"-/ ?�1Pp+".'.'.?>;2>7$76&'&%.+"3!26#!"&54767>;2�'
+�~'*OJ%%JN,&x�'%^�M,EE,M7�ZE[��P*FF*P��:5
�
�^B�@B^){�$.MK%%KM.$+��X)o3"�a  22!]�4	I�>"">�,�&�S8J�B##B��12�`
��`B^^B�8&ra#11#$��R&��"&.2v%/%''%/%7%7'%7'/#&5'&&?&'&?&'&7%27674?6J�"�����0�<=���_gNU�?D��f���u�Y����G�b���7=^H^�`	�=v~yT������3����G���D��P�O	4F��ѭ����q������i_w\ހ�!1u�S���%V_-d�
���1=U{J8n~�r����'U4.#".'"3!264&"26+#!"&5463!232+32+32�0P373/./373P0T=@=T��֙�֙|`^B�@B^^B�B^`````*9deG-!

!-Ged9Iaa�l��lk���O��B^^B�B^^B�������	+Yi"&54622#!"&54>;2>+32+32+#!"&5463!2324&#!"3!26�֙�֙0.I/ OB��BO	-Q52-)&)-2�
``

``

`^B�@B^^B�B^`
�
�@

�
|k��kl����"=IYL)CggC0[jM4				
�
�
�
�
�B^^B�B^^B�
�@�

�@
���!1AQu4.#".'"3!24&"254&#!"3!2654&#!"3!2654&#!"3!26#!54&+"!54&+"!"&5463!2)P90,***,09P)J66S�����"��@��8��@^B��@�@��B^^B�B^U�kc9		9ck�U?�������@@88@@N�@B^````^B�B^^���!1AQu�#!"&4>32>72"&462#!"&=463!25#!"&=463!25#!"&=463!24&#!"3!546;2!546;2!26#!"&5463!2J6�6J)P90,***,09P)������"��@��8��@�
�@

`@@`
�^B�@B^^B�B^ՀUU�kc9		9c�������`@@�88�@@�2�

�@
````�@B^^B�B^^�(%.'"&' $&  #"$&6$ ��wC�ιCw�jJ~J�����>��������LlL�ś�JSSJ͛����>����6������LlL���$,  $&6654&$ 3 72&&  �lL������m�z�����z�B�l������>�������KlL�G���zz���G���>�����'7#!"&54>7&54>2  62654' '3�/U]B,ȍ����,B]U/OQ��н�Q������>�+X}��������}X�0b�Ӄ��ۚ�Ӆb0}�h��QQ��h�����>��f����f��#=#!"&4>3272"&462!3!26#!"&5463!;26=!2J6�6J)Q8P�P8Q)��������
�
�^B�@B^^B`�`B^V�VV�ld9KK9d��������`��
�@B^^B�B^``^���+;K[eu4.#"'"3!264&"254&#!"3!2654&#!"3!26%54&+";2654&#!"3!26!54&#!"!#!"&5463!2�"D/@�@/D"?,�,?�p�pp�p�@�����@����@����@�^B�@B^^B�B^D6]W2@@2W]67MM��pp�p��@@@@@@@@n`�@B^^B�B^^���+;K[eu#!"&54>3272"&462#!"&=463!2%#!"&=463!2+"&=46;25#!"&=463!2!3!26#!"&5463!2�?,�V,?"D/@�@/D"�p�pp�p�@�����@����@���
�
�^B�@B^^B�B^D7MM76]W2@@2W]֠pp�p��@@�@@@@�@@��`��
�@B^^B�B^^��A#"327.#"'63263#".'#"$&546$32326�������J9"65I).!1i���CC�u
+I�\Gw\B!al���݇���y�ǙV��/]:=B�>9�����+<F+a[le���Pn[A&JR7t�)��+�tH�������kFIK�e	� .��#"'&'>32%#!"&5463!2#"&54>54'&#"#"54654'.#"#"'.54>54'&'&543232654&432#"&54>764&'&'.54632� ?c��'p& ?b1w{2V	?#��&#9&�CY'&.&#+B

: &65&*2w�1GF1)2<)<'

(
BH=ӊ:NT :O	�)4:i F~b`e!}�U3i?fR����UX|'&'&I�c&Q
	*2U.L6*/
L:90%>..>%b>++�z7ymlw45)0	33J@0!!TFL����� P]=GS�-��kwm	!����*�(%6&692? $&6$ ��	' ����al�@l�������LlL���,&��EC
���h�$�������LlL���
/37;%"&546734&'4&" 67 54746 #5#5#5�p�pF:�:F�D<p�p<D�
����������
���������PppP<d��ud<M�-PppP�-�M����������Dž����9���������
/37;%"&546734&'4&" 67 54746 #5#5#5�p�pF:�:F�D<p�p<D�
����������
���������PppP<d��ud<M�-PppP�-�M����������Dž����9���������
/37;%"&546734&'4&" 67 54746 #5#5#5�p�pF:�:F�D<p�p<D�
����������
���������PppP<d��ud<M�-PppP�-�M����������Dž����9���������
/37;%"&5467534&'4&" 67 54746 #5#5#5�p�pF:�:F�D<p�p<D�
����������
���������PppP<d��d<M�-PppP�-�M����������Dž����9���������	+/37%"&54624&'4&" 67 54746 #5#5#5�p�pp�p�D<p�p<D�
����������
���������PppPOqqOM�-PppP�-�M����������Dž����9����������&.6>FNV^fnv~����"/&4?.7&#"!4>3267622"&4"&46262"&42"&4462"$2"&42"&4"&46262"&4"&46262"&42"&4$2"&42"&42"&4�

��

R

,H8Jfj��Q��hj�G^�R,

!4&&4&Z4&&4&�4&&4&��4&&4&&4&&44&&4&��4&&4&Z4&&4&�4&&4&��4&&4&�4&&4&��4&&4&&4&&4&Z4&&4&Z4&&4&

��

R

,[�cG�j�h��QRJ'A,

��&4&&4Z&4&&4Z&4&&4Z&4&&444&&4&�&4&&4Z&4&&4Z&4&&4Z&4&&4�&4&&4Z&4&&4Z&4&&4&&4&&4Z&4&&4Z&4&&4�%-5=EM}���������+"&=#!"'+"&=&="&4626"&462&"&462"&462&"&462&"&462#!"&=46;4632676/&?.7&#"!2"&462&"&462&"&462"&462&"&462&"&462"&462&"&462"&462��@?A�A?
@
�@R.�..R�@`�jlL.h)*��*$	%35K���..�..�.����u�vn�u���....��@@�j�N *��*.t2#K5���..R..R.��
@Hq '&'&54 &7676767654$'.766$76"&462&'&'&7>54.'.7>76�����������ȵ|�_ğ��yv���/ۃ�⃺����k]
:Bu�q��
CA
_k�ނ���XVo�bZZb�nW��|V	0 	Q2��-�
l��}���O		/	:�1���z	
q��%������z�G
4(

6�Ro�aą\�<

)4	J�}�������%!!#!"&5463!2�^B�@B^^B�B^�`�@B^^B�B^^���%#!"&=463!2^B�@B^^B�B^�B^^B�B^^�&))!32#!#!"&5463!463!2��`B^^B��^B�@B^^B`^B�B^�^B�@B^��B^^B�B^`B^^���#3%764/764/&"'&"2?2#!"&5463!2��

��

�

��

�

��

�

��
s^B�@B^^B�B^ג

��

�

��

�

��

�

��
�@B^^B�B^^���#'7"/"/&4?'&4?62762!!%#!"&5463!2�

��

�

��

�

��

�

��
�
�^B�@B^^B�B^��

��

�

��

�

��

�

��
��`�@B^^B�B^^�	! $&6$ .2�r��`�������LlL�f4��������LlL���#.C��&>"'&4762"/&4?62'"'&4762%'.>6.'.>6'>/>76&'&.'&7&'">?4'.677>7.>37654'&'67>776 $&6$ (4�Z�##
&##
&y�"�6&.JM@&� "(XE*$+8
jT<l$3-V<
2'.


-1
%#e"!Z�
+*)H	 8
(j

	#*
-ƷVv/kh?'��������MlM�$($�R#

&
"
#'#vZ@+&MbV$
�
G7
--)

R2T�
313dJ6@8lr2_�5m/."�G:=	)%5f0gt*2)?;CB66&, �	`48]USy������LlL���G6?>?3#'.'&!3!2>?3.'#!57>7'./5!27#'.#!"g�%%D-!gg<6W��WZe#1=/2*]Y3��-,����C1/Dx���] VF��I�q-H�����D2��NK'>*�%�R=f
07���=.
fD�]\|yu���,0>Seu#2#"'&5<>323#3#&'#334'."#"+236'&54.#"5#37326#!"&5463!2�		<	��zz�j��k-L+� )[$�8=".un/2 �^B�@B^^B�B^�5cy	
�
��(�ݔI�(8��?C�(3�>�� #"��($=�@B^^B�B^^0�K�S�&'.'&'./674&$#">&>?>'76'# "&#./.'7676767>76$w
.~ku�BR�]� T%z+",�|�ޟ���j<���)(!(	~ˣzF8"{���%%#5����)��}''�x��JF��0"H[$%��EJ#%
.Gk29(B13"?�@S)�5" �#9����dm�W"��;L�65R�A0@T.���$�}i`:f3A%%
BM<$q�:)BD	aa%`�]A&c|	�M��s!
Z
2}i[F&���**
< ��ʣsc"J<&Ns�F%���0@Wm6&'.6$.7>7$76".4>2.,&>6'"'&7>=GV:�e#:$?+%

q4����g
&3h�T`Zt�Q��м�QQ��м�pA������P1L������K!:<��}҈`d��l��b�,�9'


%%($!
���a3���)W)x
�������
о�QQ��о�QQ���cQ����ǡ-�җe)U�s2����XD\���ϼ�Yd����/?O_o���#"=#"=4;543#"=#"=4;543#"=#"=4;543#"=#"=4;543#"=#"=4;543%#!"&5463!2++532325++532325++532325++532325++53232�p00pp00pp00pp00pp00�8(��(88(@(80pp00pp00pp00pp00pp0� � � � � ��@(88(�(88� �� �� �� �� �/�Q�/&'%&/"&=.6?&?&'&6?'.>-#".6?'.>'&6'.>54627>%>76#"'%
%6��

2�7
2G
f���!)p&4&p)!��f
G2
7�2

��	*6���	"��
4�7
2G
f�!)p&4&p)!�f
G2
7�2

��"	���6*	�!k
3

j�&3
%,����*��&&ր*�9���%
3&�j

3
k!./!>��>$,*!k
3.j�&3
%�Ԝ9�*��&&ր*�ǜ,%
3&�j

3
k!*,$>��>!/.�&6.'&$	&76$76$�P��utۥiP��u��G��xy
��Զ�[xy
�-���_v١eN��uv١e	��=��u�ʦ�����[t7��8�X�
&6##'7-'%'&$  $6 $&6$ ��3��1�N��E0�����g��R�=|�����||�">"��������LlL����^��v!1f2i��Ђwg�fZQ�Q^>"�||�����||�w������LlL��&�Z�Xblw��������.'&>'&'&".'.'&&'&'&7>767>67>7626&'&>&'&>'.7>.676'&'&'&'.67.>7>6&'&676&'&676.676&'&>&'&676'.>6/4-LJg-$	6)j2%+QF)�b3FSP21DK2�AW")")�$??8A&A�E5lZm��=g�G2Sw*&>$5jD ���GH�yX/4F �r	1
	1�"�"!�l=6>��	6
,5./��'e



.*�|�Ed!
u&�&%&��	&��5d	
���))66@�C&8B@q��L?P^7	G-hI[q��:<�rS	U~97A_�IR`gp1	1	�;"("j?>"�T�6
,6 
&/`���LwQ'�	
��A	^	�	�	"�		$&	_	��	y		�	*�	<Copyright Dave Gandy 2016. All rights reserved.Copyright Dave Gandy 2016. All rights reserved.FontAwesomeFontAwesomeRegularRegularFONTLAB:OTFEXPORTFONTLAB:OTFEXPORTFontAwesomeFontAwesomeVersion 4.7.0 2016Version 4.7.0 2016FontAwesomeFontAwesomePlease refer to the Copyright section for the font trademark attribution notices.Please refer to the Copyright section for the font trademark attribution notices.Fort AwesomeFort AwesomeDave GandyDave Gandyhttp://fontawesome.iohttp://fontawesome.iohttp://fontawesome.io/license/http://fontawesome.io/license/����������	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`ab�
cdefghijklmnopqrstuvwxyz{|}~��������������������������������������������������������������������������������������������������������������������������������"	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRS�TUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~��������������������������������������������������������������������������������������������������������������������������������	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~���������������������������������������������������glassmusicsearchenvelopeheartstar
star_emptyuserfilmth_largethth_listokremovezoom_inzoom_outoffsignalcogtrashhomefile_alttimeroaddownload_altdownloaduploadinboxplay_circlerepeatrefreshlist_altlockflag
headphones
volume_offvolume_down	volume_upqrcodebarcodetagtagsbookbookmarkprintcamerafontbolditalictext_height
text_width
align_leftalign_centeralign_right
align_justifylistindent_leftindent_rightfacetime_videopicturepencil
map_markeradjusttinteditsharecheckmove
step_backward
fast_backwardbackwardplaypausestopforwardfast_forwardstep_forwardejectchevron_left
chevron_right	plus_sign
minus_signremove_signok_sign
question_sign	info_sign
screenshot
remove_circle	ok_circle
ban_circle
arrow_leftarrow_rightarrow_up
arrow_down	share_altresize_fullresize_smallexclamation_signgiftleaffireeye_open	eye_closewarning_signplanecalendarrandomcommentmagnet
chevron_upchevron_downretweet
shopping_cartfolder_closefolder_openresize_verticalresize_horizontal	bar_charttwitter_sign
facebook_signcamera_retrokeycogscomments
thumbs_up_altthumbs_down_alt	star_halfheart_emptysignout
linkedin_signpushpin
external_linksignintrophygithub_sign
upload_altlemonphonecheck_emptybookmark_empty
phone_signtwitterfacebookgithubunlockcredit_cardrsshddbullhornbellcertificate
hand_right	hand_lefthand_up	hand_downcircle_arrow_leftcircle_arrow_rightcircle_arrow_upcircle_arrow_downglobewrenchtasksfilter	briefcase
fullscreengrouplinkcloudbeakercutcopy
paper_clipsave
sign_blankreorderulol
strikethrough	underlinetablemagictruck	pinterestpinterest_signgoogle_plus_signgoogle_plusmoney
caret_downcaret_up
caret_leftcaret_rightcolumnssort	sort_downsort_upenvelope_altlinkedinundolegal	dashboardcomment_altcomments_altboltsitemapumbrellapaste
light_bulbexchangecloud_downloadcloud_uploaduser_mdstethoscopesuitcasebell_altcoffeefood
file_text_altbuildinghospital	ambulancemedkitfighter_jetbeerh_signf0fedouble_angle_leftdouble_angle_rightdouble_angle_updouble_angle_down
angle_leftangle_rightangle_up
angle_downdesktoplaptoptabletmobile_phonecircle_blank
quote_leftquote_rightspinnercirclereply
github_altfolder_close_altfolder_open_alt
expand_altcollapse_altsmilefrownmehgamepadkeyboardflag_altflag_checkeredterminalcode	reply_allstar_half_emptylocation_arrowcrop	code_forkunlink_279exclamationsuperscript	subscript_283puzzle_piece
microphonemicrophone_offshieldcalendar_emptyfire_extinguisherrocketmaxcdnchevron_sign_leftchevron_sign_rightchevron_sign_upchevron_sign_downhtml5css3anchor
unlock_altbullseyeellipsis_horizontalellipsis_vertical_303	play_signticketminus_sign_altcheck_minuslevel_up
level_down
check_sign	edit_sign_312
share_signcompasscollapsecollapse_top_317eurgbpusdinrjpyrubkrwbtcfile	file_textsort_by_alphabet_329sort_by_attributessort_by_attributes_alt
sort_by_ordersort_by_order_alt_334_335youtube_signyoutubexing	xing_signyoutube_playdropbox
stackexchange	instagramflickradnf171bitbucket_signtumblrtumblr_signlong_arrow_down
long_arrow_uplong_arrow_leftlong_arrow_rightwindowsandroidlinuxdribbleskype
foursquaretrellofemalemalegittipsun_366archivebugvkweiborenren_372stack_exchange_374arrow_circle_alt_left_376dot_circle_alt_378vimeo_square_380
plus_square_o_382_383_384_385_386_387_388_389uniF1A0f1a1_392_393f1a4_395_396_397_398_399_400f1ab_402_403_404uniF1B1_406_407_408_409_410_411_412_413_414_415_416_417_418_419uniF1C0uniF1C1_422_423_424_425_426_427_428_429_430_431_432_433_434uniF1D0uniF1D1uniF1D2_438_439uniF1D5uniF1D6uniF1D7_443_444_445_446_447_448_449uniF1E0_451_452_453_454_455_456_457_458_459_460_461_462_463_464uniF1F0_466_467f1f3_469_470_471_472_473_474_475_476f1fc_478_479_480_481_482_483_484_485_486_487_488_489_490_491_492_493_494f210_496f212_498_499_500_501_502_503_504_505_506_507_508_509venus_511_512_513_514_515_516_517_518_519_520_521_522_523_524_525_526_527_528_529_530_531_532_533_534_535_536_537_538_539_540_541_542_543_544_545_546_547_548_549_550_551_552_553_554_555_556_557_558_559_560_561_562_563_564_565_566_567_568_569f260f261_572f263_574_575_576_577_578_579_580_581_582_583_584_585_586_587_588_589_590_591_592_593_594_595_596_597_598f27euniF280uniF281_602_603_604uniF285uniF286_607_608_609_610_611_612_613_614_615_616_617_618_619_620_621_622_623_624_625_626_627_628_629uniF2A0uniF2A1uniF2A2uniF2A3uniF2A4uniF2A5uniF2A6uniF2A7uniF2A8uniF2A9uniF2AAuniF2ABuniF2ACuniF2ADuniF2AEuniF2B0uniF2B1uniF2B2uniF2B3uniF2B4uniF2B5uniF2B6uniF2B7uniF2B8uniF2B9uniF2BAuniF2BBuniF2BCuniF2BDuniF2BEuniF2C0uniF2C1uniF2C2uniF2C3uniF2C4uniF2C5uniF2C6uniF2C7uniF2C8uniF2C9uniF2CAuniF2CBuniF2CCuniF2CDuniF2CEuniF2D0uniF2D1uniF2D2uniF2D3uniF2D4uniF2D5uniF2D6uniF2D7uniF2D8uniF2D9uniF2DAuniF2DBuniF2DCuniF2DDuniF2DEuniF2E0uniF2E1uniF2E2uniF2E3uniF2E4uniF2E5uniF2E6uniF2E7_698uniF2E9uniF2EAuniF2EBuniF2ECuniF2EDuniF2EE����=���O<0�1h�PK`x1\��Uh-h-&assets/fonts/fontawesome-webfont.woff2nu�[���wOF2-h
��-�?FFTM `�r
��(��X6$�p� ��u[R	rGa���*�
�'�=�:�&��=r�*
��]t�E�n�������1F��@���|��f�m�`�$ؑ�@d[BQ$([U<+(��@P�5�`���>�P;�(��1��l�hԨ��)��Yy��Ji�����|%ہ�^�G��3�n���ڕ�
�͐D��p\Yr �L�P���t�)����6R�^"SL~�YR�CXR	�4���F�y\[��7n��|s໌q�M��%K�.ۺ,����L�t�'���M,c��+b��ׇ�O�s�^�$���z.�mŠ�h&gb���v���'�6�:����s�m�b�1بm0"ǂ��*V����c�$,0ATPT�1��<�;���`�'�H?�sΩ:�ND����I�$�T�[��b4�����,�μ�」bl6��IL�i}ی&�4�m,'���#�ץ�Rw�bu��,K����v��m_-���\H����HH������?���m�9P���)9�J��$ƽ����8������~�;�r�n�=$��Nddn!'����;��8��'�N��!-Jʶ�.����X�=,��"`:��		 {�����K!'��-FH��	�#$~�Z_����N5VU8Fȯ��%P�ݫ���Cp$Q�����r��ʽ��k�k��3ٷ�:R%��2{�ީ��h%�)8����
ILK�6v�#��,;Ц6��N�2�hv�����OO��t#��xT��Bf���q^#����?{�5b�I��%-WZ��b�A�^�1��n5���צNQ�Y'�������S��!t" `b3�%���35��fv;����lά�9�:jgf?gr��p�x� �|� $ e��Z(�$w(ZrS��v+�Z���q�M������ݙm?&s[��t�S�Sj��9���?�|��
���>G�,bDշ^��^���:l�3��NA�`�5�26�L�pS�	Aߧ/U�
�֘����'9\��Նt���!������l� PMR���9n�
�`(�@� Hy)M�dM�
�5�ԤH'ґ��mS<���q&k�)\�{;�1��m��8�{��X�1�-3ǚ��)�B(��,�%���������w�o~��t��HW8l��Z	r��=e���1+�/Ɏ1W?ְr�89PL��>uo9 �1 tØ��uc�����@��]KR�bN���v������(�"��y뽻{c�����scz�&�p5���,j�n �kN�!�.�n^��Uu@|�?v�>�����rUa�HR ����Ց��I
D��ˋQ��~p�
�܍;;�n���L$�t�	:	hFCY���TO�FNN~}�1"`�����a��(�?H ����\���u�0LԵ��'���͔PbnmO������Jl�?��s���0,8�x�B�B��F��_�RiZ����~e#j��w�hOc*&F6�Yq��{�}?��>�u��.�4�h%g�`�&�� ��)��R5�H�}���ˤ�kܩ��'J��O�I����_��qOb'�HǟBYEM�6�v��5�NJ
�O�NFNx(1�:\�߫C�k�c�b8Q�	d�[L(el+2u-��a֘d��5;�N$�"�H���SF�o�2i�"��\�h7I���<SCO���ȐH��Ew!.��!BSC�gĝ�c���s*էs�(5m�=q�ʊe���Y�$�\>fN8�q��x�#v
�6um�	���`�NM-J\�F��r�D��Z�0�#'ꥈn��GjL�چXʌ�A���gYs�*�Y���^ٵ�;"�$hb=�ϛ�0�vH<�Vv�c�_\Y���w;dB��N��3!$������I|P� ~&�d�.�԰�-a�a	++��9�.mR��4�cy���#�U��FW�u�
�	i/𜯔f~�4��l��XS�9Ä�1E��3@���k��@'#���c���n� ���S_;�%��I��+��.�L�Cx�����ꆱw	��Vۂ������Exf~H`��0�!d��@Q{Oh1��H��Fë�zs�7�݉��Ɯtrv���k���heS3�ۇv�9�q|�O��K)�U\�A�%����o{l<��K����͎���i���H�G�I�z�=6�WWo0��|�%A�jdD)!
��pw���_���;���c�D#�ˁM���Nz���p�^�CDx��xj)�5O�9�
�`��EDX�x� ݒGU��˯ę����ډ�.%
���Έ�~��=�Co�)
F�7���$Z��(�g��oB��
�Ɯ�@��&���e�{��厣�l��f�_�Rx�N[�]��8`-3�s����{Pj��Wuc9���[>�-�.D�܎Y����d������+^{���C��m����,��@N<������.��V��M��S�+�\D�+��R�|�6��'q\T�����9�D�X<$�p���"�酦��$�ҷ�,�p�s��T����b���NkI�_�`��
F��W��V��%��w�~���DԐ����*�xi��y[rZ���[S%�G��s`F<ㅣ��� ��V�+��!+������؍�9y�k�fb�82�s�}l;[)e$��T���k����)�v���9����{�u�u�t��޳@E��>|C��<\4%�Rv���������@׺C�8\��~)#k|��.a�o����00G�q0%����hp���
L���"�+>���%�^Mˊ�N�s��q��=�����䦆�K4r�-*��%��h#�%;pP馔h�C=����
��&)�ba��KL�@����t�!�~2�S]rYl�Z6�3ўJ�o��O�V�;�h&gO5�RT�/}����{���AZ�&�S���t����ͯ�P��C���0��D,�pbpз�z)� ]�I�>Q\Bl�"��^3R>r�*��C>����xPU�z�}Y=�̕�}�ж��
�
6-`/"H
o�&�D�I0�E2Xa��-�{5���<
,}��``6����ji���im<UujY�Z�jB\@�g�3Ejfp����:����W�Ǯ���߳����p�ij3ao���1�da�� ��ݫ����J�ײ? j�q7��M���ff�Y�f��s�$��	��H���l��������(%.�r��w?�m=~�y�cY�bg)<�W� /Vx�k���$��B�r~����9�6�0�&��_vMY�%��ҝ{�E�6<������%�%�4���ߠO�@��N����"Z��OD{u3S��W�M��R��3s<���س
����\I0��.��-2ݭ��ㄭ;�	�0��}N�/b���N{�I��|b_r�e��_pSi���>'�w�5��RF,ч�%SY����Wh�6L_i샣=���i1�3�YI7N�Cp�I��Ĕ��(�r���0��{j����r�K����Тo)l���3na�T1\��IE(�m����߃���D�l��e����$Å�wX���U��(@����M�a"n�,�*vG���̨x���>�G�S����g�̉"�Q�v�b0*z��PE�y�ɉ�?7�$����%��G����p�dY�&f�!��a6��|�)�;u7#�3�4�mJij�
o���O�p�ȁ�v8j��x(K�/Z�d���x�Ń�m7V�_\�f�L�7p�X�z�H7�-���,(1KHb�e��,r-��p�L����3=�T��2�t�2ټX�k:����Z�5��s�p��SsT����:.]��D"�@��-�E�̑!�A��2�ɶ-�F}�˒�2Bǃ��Q���)t�ç|�#4�|�\�㨀��`�fc,��#�g��1:�-����ty �]�����2�Z~��.)�����nj�����%R�K����(y�`�8��C��֍���z���K-N����`^+����n���3��ϴ����T��3�tQ�أ�4<>:J0È%�ݑZab`��vͬ��a�T/Z��aޝ�ГIi	�W1���_��>)���H"�����p���|7mF�^Z��~f�0J��^�I��3V�!���{�<e�/=�p`���q��8^����K8��O�9�w0��Z��|��v?�n�	�3��f�!��߷�~��T� ������ Jӛ����5��p���V	��3�˫����.=����-}��[�g�R�5���n�B8���3.��8	Yg�#0�&���S�/.fg\
E�f�}��,k����g��$�?XY�*������1��p��E(����RS��Q��t��6,�Q�j\��</]N�s���;�'HX]�E�29��d�kY�
�j���R6���Q!���� V���
%"^�`�N3O�����[�v:�ʄ:��^ڜr׿�@���
�F�_���Nc�B���8p�\i����7��g�*���,�C����[�6�T�?����%�z��@jApBN5�"4T����"�}0uJ􇏞�Ȝ~3���{}uW����M�j�9�-�]����'lS� /�R><�+�O����eB#�Bc���jL\��-�Zh�[�I<����q�v�~�k]�G���TD�?S����/�-��%ݒ����7��w�i|C�I��q�wc��W�x�� �/7�x��HO/���o]���G]�y�߃��#��7��b��$�t��R�$ ���]�a7�F�Ѯ���,n!r��I|2���8�x�6�gS�h�	��R^^�D.�x�M�MS?漞'G�#�~�+�����v4�d!FyT�9�-�fVa7h�B��4�����,�2�Ɖ�&vTHMqp�4?R\�����Xa<��4�@Mi�H�D_��	�Eg��R�y�M���lT�ؠJݮ
��yc��"�HJ�, 6�u�/ڴ��������y��V���nJn۟H\P�R�Bd|�4�_�$k����.��w��™I�pS��$��|}j���9������m�|�1�ߘ����n�93�9���5qS�|���xW�9�����B��VZ!����m�K/�Ln;i��u��$�*�t3�Ͷ��@}���B{�Y���ԑ�z�2J�u@�a�\M���R7o��dz����e��7�/$4]^���2k�h$�=%��1�I�B�؃ ��H|�N.[�M\L���b����1Mg��:�NV._0�,�+�,��h�t7�l8�s~IV^
N�˼M���ؑj��ك-�	oܮůQ�o[m��j�=r��m>�~z4$M��}z �s�h""���u7�V{Rûݦ�O-��D9V�٥g�IʎK�Lg۶B�T��P�'�K��̦�
qW�֒�3e����p�&���ے��L�hp����N�aS��w��
&���;e(�,-7v�x�-��w$W��nX�U��������t8�����Y���?KM�ct�Y؃�p*Շ�����-���БfL�|�[nL��
}4�{5�頠�3᧌�n���$$,+�DNԄ-H�V>��H����Os\���-�;�W6N��M��8��Fi���;���7k�2�6%֒�a],:!�ʲڽE,��{U��naw����Ng��.��I9r:j������<IE�1�`$`Lbrǒ��ם��]�x�9=Rv&*Q5�0z��y<���`M|�ԙ�dO�٥iZ���$���+#KH�F
��������	������)-	�:M$�yc��E�%Ai��2]���l嶨����8�I�y��ZGJ����\�2֙Xb�L���I�A-�GrR!�0���L+�Qh�S�Y����S�5�_�(�poF��T���#kN۾�l|r�n�d�H���yۊ����&ۆx�p�����[�8G���dt�����z찃٦	8��B��KP"@2e�e��y�x��j����JKˆh�XŬB�}��6�â��`?�i�*�[9e+b�VL�aL͙����dBYp.�ψ
�n\4�糅Ƥ���d�<w��W"��? �'�O%�a2N�9��,�ߟ���!���.�y�Z��%�4�U�^��u�φ�g�)M%��C��V����M!z�&�����|D�,�i�~R,%��|O"�����h\3+��a����������i8��\$!1�L��a6s�
z+M�R�b��_
k�v�j���U��裒-��jX�Gt������b�~�˚��ꖺwt���͝�SkP�2���(=cvt�"�[3��&��h�DN�=�򈎋Pɛ�A�G���'_�R#��M:.���3�	���tJ~��3zwx ���;�7��O�8��Y)
�DSE����/����7�i��!wy�6��$��8E0�Taތ�|@�
g����.;m���9�9�s�HrL7&�����3Bs�|[o&ou�Sg�խ�+{�AE���kZ�	�"N�d�5��:��IV��ڊ�>�F�b�K��Ψf)*c��G5<��C����.g�]��k��
��� A0�-��٣��v�T �d4K(��Yq`���(u��{,�:0*$|2����/I��,�`E�����xP��#q�����`��/�:�����';�ىV�D)˴�r��89�w�}[��F����ޜη���+��šh�KH�\�ǚU���䬂J�V$pUj�|c0���{���L��A��?�V�=�4���S�Ŵt`���d���o��d�bUP���J�x�g��JR�r�O���s	�����4Mw���
�""�42����`M��D�/N!��v�3չ���.�f+�@xO�V�q�j^�Cߪ�Km���,�8H9�Z��<&�o��(�@��k����M5����]�M��U2=vpB6DXj`�r��<�w��1�Y�:� �o�<�9�;����F���$;2֜�j���޺�x,�ʁ�C�Rĉt��$�VJf�f��9�)�a�9P��&���6Oo��l�<������ds=#3�s��P-�bD��"��[:�wɺ^j��Ӂ��Qej`���Tq�=����H&�o��kĉLD�W�O������*J3s[�6�j1�@��nr<�ξۇ�#���@	�0��c	���?ﵝ<2�D�Ӧ	��}��Ts��S��"�R�
���.}�oZ���Fo*���ݗ������:�������7��H��䍚�x��]���a6v5�R��̾e1��$XL����
J�aa�݆,��섐�"3-�G�!˥8���8
|�T:S�P������pMR�Y�b��{�+�O�eۛ2���g���u��V=�U>-�kb6U���ЩpZ�M��O�`���$W�D�y���A߻�[�4��a��J?�fD?=�d��(KD䴱:�D�/[�#��$A�#KH.:��x?%��V�r�@[B$�}�c�o��S6`LPfM&ɔ��A<:��v��Ú
Q�~P�w���[��+�������`+j� V��+��R*���u�l!���|�+'�KY�6�6��_�ud�}_���[�yuۘ�j����o$��Y=�yjR�i)��b�ԋLaD(�X�U�wI�ڻZ�$�7ڻ�9��&��4Z���'��DF���[N]�~�dD?V�Q�W��Ͳ�}vS>�Nm���+S�q�H��a���U!�Β����Wb_+�����U�O]�^���l59	@��1�'���A�^��m����o�:��9�ף�s�-�N:���tD-�zkS��j�a4�rc�zF�ۻ ޿�x��v��7[�äC8�#7�p5�+��� �~*�bJJY�zֳw+�����-��p�/L�L[cg���n�lc��a�P����H�F����$}�9`������\
��83�Ym�1b>�~ƽJ��؂�Ϗ�yBs="�����f�(zK��M�"�H`��w�c�Ed��:b8�6(9��<��c�l�ݘ/���k��g�G���������^ESE)5�G�_^��k߇�v���̚�}T3�;6� WvTCP_���k���._e��єNJ�L{T�!��6�j>h��0��#���[��㗚����K��z�,�!�3���2����:6d>�himE�\�=�H��Z+{6��@W�ʯ&lC'�,��rX !8�(\�̭2�-�P8h��@�C4��<~����Z7j%)e����eF�pZ�'15��^6B���3�nc�o#~���²q��R�@!ա�� z�^�Ks]T�@�TN�T �,S*@7��C���ī�Ʌ����L��iQ�N�,��	#:��RѪ���j��9��1�-�Y��P�N¿�\&�yL8�ӹ��&0�c��v�Ɖ\�����J�A��;��Q;�]���I�M8	�s���Mf�?԰�I��r�r!�K�9я8p�}Q�콍��g�-�*sm�~�X�P0d�M^��?D�dI�m<��p;�y�,"ۦ�6��v�pT\^�n���3m�>8�eC���N}����cà�٭$s7ۼ��#յ<SF-A����z��≱�
�B�	*{�6cg���Tz�GX2+�����a��0����;� �EEaG�d�Θ׿�[�M���
�i���g��:B�[�	U���3�J9�
0��I�2'	o����\e�%4^5}����5��� �0=�
��J�}m�y�&����"��.cւ	V��}e�J���:42q`G�O�-���-B���J�F��Y�۾�3|��|)��������IG��a����+�*��ttPb��A�Do?C��g�t��;��I�]G��2RE<^�mK3����+��;�
�[���3���[1����y�v���
#��p�<j�iC�af�~\�G�C�4���dubt B�K��бQm�=�a���Tq<��^z�ء�(�޹�G~QۼZoO��c��r>R�{b��4���vM�q���l)<�V�{ě晐�2P��T�'D�
Vt�������oP�aU���6`���"�Qe�]ka-�^<xj�<�G.���~��������5۹�ۯ]�V��`8Ϧ����%���r�y�v����;��pc���������`�٘�uҙ��9q��q�E���ҹ���B�����6�Ǒa�e��E�ثO�Y���Ǒ#:y�p���/!/��5s���U'! ��"|���B㡪�
�t\�T#���ҝM�$+2n_��� ���b���^�&��������e��i��c�I�=��u%E���ȭ�֓
���fj�aظ֐����E�ӝ��_�e���(r}�mo9��UP6zH$g�4�ٺ6�P�@@�X
(1�Θ��x_	Jy�{�3���',����M�1n���>v�O��ճ����j���ְr�1�f4cs�_%v%l��K�ZNi�+V��3�'�����~��N�M�G@H��B�b+���v�VFq@�ݱuKZ�h�p@��E0�����ua����SXd��U���K}ԯ�8G�X�KiI���%���uR)�E��I-�ږ8��|1��G�Ξ��f6�Ȁ�=!K�F6�Qf[X���~��_��j�\^�͋^k����`����D��s�G]~�㤛yo�}��;+i%�N}�Q��0��ԥ�U��u)M��[�Z`"�7
��?/[C�{�l�)�$Mr����|^��	a�����:���"�֊��a	�l�>�h��y��a��{�2>��CP����L� �j?�ntg���]��S����{�UӇ�('��b�'f��g0Ӄ����LPA�Mtd�)�2ú�Y!�v�&`o���2P[�aޔ��5��S�|#+��7J��
#ȸ�_��dU��6#VD����B"K���|�����)o���tk�l���,��l���U�)ݹe�5�<A��\0��_�7���^~{�$
qR�ΰf���P
a!f���XU���hX�l۽^��:(�m�?��@=bhg��O͖{-�i�:�'�A�8?g��zHFz0�[D#�A�.��%'��w�=23�ɸ��Z'�Hx�����&I��4�1I�Ji����e�z����͏��o�ٴ��{�����i�ß8	0[�K�/�n*�a5���ᰉ�,c������+��A��BDrlDo���"$Th�T����9�$�岣�'���0V�'|�"������
���S�AJ!�Տߑ�6�F6R\�6\��9�-�_=��Q�"9IW.\.zmkz�F͵U�x<9��ɑ�$�7i�FS����ʧb߂@�ۨ�}��u��o���Ͼ��Ѫj�4=���oeUK�xd�W�뻸1nD�X���y�"���5倘�ʂ����K�����-�o7B"��ě)��uW��E�h9��b)P�%.�$�G��(@(��u��R��fLT ϪJ6
���)H*y����=���Q/����uI.��<���,��r#�y|�l�<`��Q��=���F$��A�t阍2��d6c��Wǥ䇣4~�%�vb�a�Е_Cծ�Y�l�̨�vq��s$m:�G���\�W[����C	�l��}�R�^�2J�I6�X�l9��=��`t�ӑ�/���P��jes"��_�
L��w�m��~��X���N�M�1x���ٛ#��NmzS�%b��,���Ž�~�B��	`�9�Vu6U�}ֺG��u�n�wO�����fsC�\������g�������V��Φ��@����:�_`c+}�L�<�[��#U��*|�歺[��[姙�ԧo��ɼ��\=GR�K,![<��H�?��;�9���:��Iͣ+��a���!���*��?#�'G��=���Q6�,�g�m&;���������X故0��
�������;qW�q�'�4��I�C�g���΃Y�`�~`6ix0OG�g`���[~��?NC�Q@�Ȅ6�N΁���A}j��Ba�3�ť)���˴:q�I���gZ�2�vlf,�У��Y��Ѯ��bԩ����Xo�Iė˜�X���_'���5��]J���2P�92��C͉���@�C�����6E�e�B@���A�9�߇���Ǵ�y]�H�	�-� �b��9
��O�0uw��I���7J�x�ū2��\�Vf=nV�V����"#9���v8x
��mpAh���y�3��pQ	%��t^��� |�‚]�YB8jC׬n�#&�ɇ��ʴv�˒P�>�O�������y�UAt2�_�������n53e*��1���v����(K_H�vV�ʉ3},��A�C�Uƍ؂�Cu���t��i�-]�`�����7�]R�
!zs�N��t���&��̉̄k)��SL����̹�y7��$��ϥDJ�N�d��"��9�
�31 I��Z(^(
lw6
/�@�Y�B�^���}�OT~9c�c��]���{�)��}�D8�${����yc�,ʤ�{�tA�W3zHI��m��D�4ܤU��T3d�I���D�)
��I۬�.d�~�[-�K�^2�Zc��
�8��u�,Y�^\�_��ԁ�_�+�cJ��$�\2:ZW��b�B��w=��[1'N�YVz4�;��(�fzN���U��f(p֙�!x�#����L�=#ŋT�hn�b��a˳"��,�T�\o�!��@@sN%��|
���t��Xj�	j��	�Qo5��������o�eF)o�� �9˷�:�h*'cJ�孏��[��{ȄNf�nz�]8F�/�|��1�v��g@�J:�Y��նNu�:�d��hH���o
����t�M��`��R̍�R�i�:|N�_P"����B@���� m`a����:M���	c2�Ũ<���ؓ��U�O�S�\��%a\A�p���ꄯ�e�\��A�����.̰{���w�ǿ~<dXIh��RN�gkv��o�{n�Ԝ�}���H|e�iV�W����?��#�(K:��m`�&�L�x^F��+'�����؜Z慉��ŏ1?^�E�(�ݝ�D��u��6��T˜��LS��6O�am��d�ʙy�2���|�^�S�K�}*�2L/Ř)�h~����\1�� 
D�̅���$��1�G/Εo��0^����_|q,��|��`�ܷ*z�|���'�usv�j(q�R��zL>��6������	�;s2�ŋ`���W�`�TyP�g�ee0����00�}/ǔ��;h[tG�D�5�^E��#�h�ȍ:f?	�u3z0�ڎ�$�T���^T�Ahz�	�x
�I{��5�������'�r��K
��z�o l֢<���Nl���f��M*�~�Uʏ�W��_�?�v;(A���ͺ�R�^� 3�=6�6=2�n�~}c���O7�X���d��J�|��LP�ޝ~ͅ���8�+QD���\���ҭíS�\�=�U�v�
M䅚c"a��K;�A�=ԨĚ����k�J�N�p��M%AR`�و;�(���5�W���=���Y �g-�^v4��X�ى��J�@��=�c�3���}�*)u���b�T�F�'�|�N3����E����9��ڪ)1��!G���k8��6�D�
~H���Gp�%�Fz3�2��M�J�aZ��?�c��n0�)?�h�N��u�����m3H�~����1rD�'����1������Kr�t�sJ�Js������ָU�����2��r^�+hNzg��l0'\/e��tXԐ�v�l �j�cm}!Q�ϼ��t#��z��#]����ϕ��O��ׇjE�:�#	�6�n:<�N���u�i�����{�z���1ʞ����UV��l�+�a�N��W���h��)O�2ymEl٤�A��7���YQp���fB��<8����;����'gKR5n�����T@	�n�*��!=a5��������Z~CW��P^DX-Xf�j�N�ű�q4�O�I@��S����}�Xh/�>�,b����89����-:G|W��)��b��A��5G��<*ٕ��:ğ�!]gj~�O�&��U�N뢹8�� ����g�]-WW(W�NI�3��N��gr�3|��m
�m��'=[n�힬M,?�$��HD��D�-��O?5uX�]˓��3�7�>�*�w�g?���*!��JyT�@U�g��z��I��_��7�&�\t��H.Y�Z�(4Y'�d��T�
�F��s�-�qy�a�7�
[��67K&�J�/$�c/��x���[���ᶏ;�Ī�z1Fv��]G�'ڏ�Q�BSO�������І$�y�(��TS��-;�hűz��T��%D��ts��"��=�gwU�uD?b�$Zr�9�G���<��&�Ña<�v5��0�]f%S��an*���؊���oмb���8pJ9����⠚�'�-s�@�r��넅��T���AX��I�\8m]{�Of�`#��X�T^f�5��''������W�2Ϸ v�sE�\��Qs��(�ː@A�jR*Z���a��̳�Slі�R�[�ܜd�*)�ɩ���P�¢ĽHt�o��5��8��.��]�h�\s�І؋����?�Vs���h-U�'�#E�g�m]��2NjWl�rm�Z������#2�BE75^^��a4��wU��K�'g?ge���213����Ǹ�o`��lKzP6^� �$�$9N���Wvg2�HϏ���CR�ߜa7F�/��3�\8���F�\�/zP��/?������{x��Ӽ�]�������/�^9�@7c�ޥG<Ho~�F��!�6�:�j�*��Nb�lNy����C�cG��d2[d7�W4]�
�5�4i�2���*��h��p�*�9���mYmط��kh"ɋŊ�W�!��A�an��J�|�V�N�c|�u���j+�'���7������('tcnV��d�Uc���)�I╵��8()�K�Ζ9�U'���պ�j��?Vפ@B�O�E�G
,�cC�"Q[b�$�9td҆�=��X� �dL���M���͋��h��~���l�c�.��ж�t�q�?Y'{'ވ�A�cS�V�M�%�kD�
�{Ʀ�X�=�:��*|�ͼe"������~��Ov	;�G_RϞ��\���G�$4<��ie�f3���Ph�H��b0��6ĎU����s����LӨ���Q�|_P�����3�0����D���C��H���,A1^'�M4������]%�EJ53�蕂
+ͪBP�^$R��R
DB+�M-�	�s��b�R�VFeP�;7����I��o��m��^��M����k��++_�����[9K����W��R�vۧ�?f�q2�s��}�X�@y�f��������H�/=�����֯�A~ ��0�̜�xra� GD�v�l�Q���Z\\�D,h�i�J�]&(A/�"Fb��a�ƚ�
��m2�l]��x$��E5x�Ð1x��{�����A�1>^2���_���Be�;b��~�փ)�Ό2�j��� �r�8]'�7��
���� b�C�h�T��d���)�+���mD)���.5�1�-���|Yy���*��o�ڤ�L ���4A她=
��T���@|�X$�in.K�I|�R���@�P����@���P��*���a����k@�۟�������=I��	�=�l����[���ג"�h�X0�QҜf��˒��펖�c�<#9`|cO}$o>e�X<�`,�o���_��K�3�����p�{Y����An[�9�M�
�T(!"��?Z�]�iE�m�Ğ�>�'����{G�t�� ��*~���y���`�'�A�?٘#��)�o�($��ȉەL���vYO1o���_<�/ǐ�M�(���W�藑Q�'^�#0�M|�3}x7t��<��a��@�̻�H�l�1�>���& .�m�v��!*��)$�z��mr��t���(�:���G�G�beV�w�i$C�O1� ���c�Z�Z�<Gc<z��@�:�J-����_`�8���~�چ��M�	���)
uE����sY1�B��7�4w�0�G��5��z��A0�|Р��[��@��V��ܟ�Q�q^@W�r-���U��O���$9'��IBjf`5
�"ѦYx�Z�� �U�O/&83��,�8�k�2�&�� '�?�eEv�$��L`�B�%�=�T��ftF5対8�.���<1=>�0�G� 7z@Jy��~��p)g�,g��YL.$�,�� ��-�<�k��{�y�c*0�2�/q1��������g������K���M&�R<���7xC�y[M�ʛ
#ͺ����Dya���3\��wf�wr�F<G�W>�ĸ��M�]\��N���s�Wݍd�<ӡ���W����064�t�ȴ��v�Ȼ0>ԯ����; ��)f�#�*	�2<�h�� �~'B�w���m�H/��������wqM����o�gC)̵67�#�B�S��>_-[��L|R�R����lQ�}�\T�H)
�9Fa��"^�b�A:�ݳQ4��' �=�sO	���'�@.���Y&8z
�,i7����3y�;���U}p/�I��xV�x��il�F�Z��f���hX�c����.b��B*�|&��|g��e/�k�u��v\_H����b���d�p�G��/�A�}�㬬'�xȜ�Ջ�;�E����
�!W�����j��{���ZI$�z�{O�p�;�x��=׺�q�{�����5�l2�3O��=�@�j�j#�GY�T�n�>�&ެ��#��CBϩ�zLuy���lS�a�a���0�LTv��3��,�2
�sdTr�U}E����l1�z�`Xa*h{�qiuU�\��"L��д@�T��X�RU��Fg�]s���E���5�V0��X��/��u��k�z��B��'ك�J�x����	�Iz����7�������Y��Ε�1t���y���Κ_}��|�xm�[�xJ}z�l��D��V���r��csdsq�v�[��&��`�oU���l�?<j�C�!	OeqB��=�J�\�`��Lr�孈�d1Mh�o�w�ѹKi�ģ�d��*;^ҋ��$��xH���U��U`]G�kC�ꆂ�����O��QS�C��w�o�g~�yG8P�{{H��.$���6�!}d4,q>�`�ll�UMBR��Pe�2�A�1R���H�q��lB�Q���$�W�%��b�hB���ÚV@(?��F��A�Q}<GD�2�:�e@�f�$"�8�ȍF����f��5`��{���K�uv�\��X�+���vj��^4=��03O��(���0-I��fK�R���o���O���i�2�)؆�G�Ǟ
X<�ǘe�l��m��S�\��P��!!�ox�$�+��>dl���+��b���NIM�dT"+�ƌ��o0��`�89����\|5 ޣ�ئ(������y�j�q�m(����<\G�	�2���dT��P��0���$���n��@�
Ē!�X�㺕�����N��kճ�xiki����ݝͨћ"0?�^2�XF�,{s��r_e@V�����y�g����N�_�i����wq�;X��ED��\��b1G��(����Rs���T����<\ډQ���2tT	�;��`���[�,��Ak��K��bDl#�b8�,]�i\����|kC����xLq~r�
�Ά>|�ž�B����a��b�?a��ag3�0����(	j��"F�A*�{ߣ�d�]ř+XH�z�s����Z�S��L�u:��˅�)�Ҳ��n�J�EBnS����>Ħ�����	m�h,�R����T�~}�9,	�/������.��H�~�!���`��E���x��O�ۖ �mwI�l꧴ёUz�z�k*�*|m��*.?���~�
��c��hp��?e�Y�]�*H|̛1���e?�V;	ا	2�PQV���lW6m5O�3'�^���x�,�ҹ�a)T��eU��s10����ft9�����T��{�!��L���@�OL���tǽ!���^�L!t��i ���^��:C��R��	����K��
?2T��Yx�۩Fq#0���
<��hѭ����)���kes�a�T�l��
x����9���d��%+��b8X�Z� ��;g�v8n7�ϻ��a��&�^���o�b{w	OO��7�jϯ�زΞ��,�~��WY��ػqÎz����Voλ�g�'5�(��"ե�
�A�Ӄ[�:��P��|�Ӓ+>��#�2?$Mnd�u�e�S�J%����e؞~��U�q����
�޳�҈z�Rn�п,7��˱������>`�
�/�uFg��Og)P�J�\)X�k VF"��\t����r�#��wE]�s�:Y�#n��8��Lm"6D��
�Vġ�H`Q ௢��ү�QkG�]�<2�N�?����U
��&��|�a���_G܏�}�di�!�:`Ⱦ�����[�\,Y��]J����Ϲߐ���ì~���O���A%>���]��2P�l5p��O��ѐ��[ʀ4O@�¡,�Ҭ���-�,�4��X7�-#?�3��{���M·�C��1�8�a��Y)�M�"k��a�_=4�JqM��?��nh6�k�ɜ��P� 	�2�;�3�g�4ՍZЦө�GZ�k(m�p�v��riZF�}���i:�/��czP��uV�Q9E��&'�/���v��<�2���ۊ����YQ)�j.�HN����11�s��ʗ���؋�{�
��'|�k��lT�%�1�ꪋC���g�QUJ[�'��U�ؔ�̝�ֶ{�81� ��r�n���ҹ��}��
:,�й�6X7����f��e�'
NM�2p|�4��p6��Vn듁p&S=�[- ߞ��~�Nj�I���Y�/c`YAq6�-��Y�30#V~hs��EPT;�u��b6��WD#�N1o>��)Θ��Cx4�$�/jl1�
y�.�/���,���Rr���[YE*GЕ�Km/�|7�����SI��SƗ�q�F��㍹���6��:c�Vs�@��w��+�k�1��c��aí�����w0:Y5�Q�"
���+g"%*�2�t��`�G��ݴ�
�f:hN3�3�^�~<PM��Z�*w�����Ґ�I0�p!"`�PS�L�6
6�O��{&���`(�ۅ���Mq�aP����=P��Z_]��pv�W�{m�h:
�Uu,
A�j9�^��*��7#�C�f��]��gr�{NY��� 5���$�O�e�
Gn��s��$��\�i�`�D�����?�߾;���w���5U�xj~�̦�ܵ����֝�>�yө��)�o)l*��H�-�;���+�|��+[��-��ZG�X�f~<F���_��̝����r�f^R��
߂�4/)+��1La1PEv~�:+L>�M�e�b75���[	�Ho}pi8�;`�$�7��~�Yw�4��RypJ�s�������}�!*Yf�~����W��]�TKV�0Fy��l��$"��\��A��E?���W
,�[b�0q���.�|��x�Z�/�ˁ���]���P*4�$*(����R7��L�&����`goTܑ.�$�V̇�h�U�L�Hn�e��i_�"���o߁��e*mb��D2���u{��ݹш
߶\����ؿ����Z�D�ܚ��
v�z�1Ul��Rl-wk2V�x�Ց;�؀4�00�=ԑx�~޽ګ��o2R�mԔ��=��_��r���Z&�ן/߸�����(��[��C{�%b[f�.��<Nc0G2�ڼj��~H��iDP��ce�|:P�7i�/q���-ڏ���\�b�7R�>�\l$}�V����چU���*B3�l�RPf�	�d�'���<j�E����x���}�6f�s�(İS���e~4�U���)�C1�i�s%C��r�H"�3���؃)	��L[��ө)�mj��U��ٜ"����I��R��6�W3��nP���H����ߛ5Q7s\�@��Sw���RhƄ�eq�܍G0?޽~�ؑZ>���GL������c[�d�N
�%C9�X�<�Q��^i����p,U ȑTÉ�~��U�2('w|�/��B3�����J,�t
���WgLN$� [�V�|޾�v�h0X�X�����<�j�h���j0��{rLNm���[[L�3S�$Y����ʈ~
߇���K������!�QE(؋�����P:&��{�ƼӬ4sœ��WL3A�6�R
iv-7S:�L�3��e���=^�����Ŧ4˳�4�OC��R~ܐ��NK0+c$&3�M����u<:�"Z���,���n2N����EG���%Wթ!`�4ى‡��_��`��}�.�Kq���~�J�k��t��k�S�y*�
��)�I��k$Q��r�q3�T��)A
Rs��=[D�
j9q���v�C�no�KR2�v�)���1d�c}D�2k<9?�];�8����BR)x�ˣ;H�i�}{�74���4Ϗ[��:g�V-}@� ݡ_׀JPz�������X;�)aDJ�?���\#X���r��w�m���A�Ў2\�
�=�69j�R�Lm���.I�eG��R�'��v�$�	P�>5h_
��c�ҠW�?��+��������`ރχ�#C�����B��W'B��~����c�b
���5~}`��A�E((r�{2me5�
t>`v���d,p*=�ϕƼ'�� o�$ݥ�;f�`�̢�t��ɟJ�$��H��Z�K��Ԋ���k�+Lm����R2��1�,�q������F���p�̹-��J%b�����=g�V���^�y���~��׼�0~-P��ת{�ƛB���2X�Z�?�oG!x�n.��}%�}Oo	_�?b�J���N��v�$bl;z��`�&K��x^]"���d�+�geI2����� �B#�(ijNN>SwF�W��|�b�	���W�oW^\q�?��1>BL�/=�iR��,����cykW�Z)�BU����kjy�4X���K��,
3�
�F��9�pK�u���շ����q�@���OAv�yG4����.,m��#D"^�ѣ�8l�QZ��1���C����\�4oJܨ��힊������dD6�h[��|��L�]�V�~�.��:������0z*��HX�,�Ͽ�7��z��U�QN�e.7$:���.��0֣M��j��9�g�{2ڬC���O��墸���N٘�@.��W�1D�z[���[�M%V�5�r!4&U�r�
s�7%y�N�J(?�nYm�"T�C�Mmr�.�ݴ{bSNT��]*}�v`������1�^H����v�No�UۆAS6W�Oىe[(��B�͝�to1bϫZH��{���~�N�}Vˋٹo��<�>#��o���TFD"�%7�3���.�(?�f������]��`!��������1%U��qL:蜧�ϸ|��@8'�+��V��Wu۠��0��} +T/��Qn���l�~�c��{�p��a�=��V:#vm��~���1���t	0�SPH�]�/�j�g/!���{/�c �j���h���[�=�U�@ʍq�Ig6�M������mq�%Y8�dc�`"��X�t�������>�"��{��ri���P�O?��0=�/�9��F�nV}�OY[՜���"I��
�{GEz	`)Ӈr���OoK�Y꺧�S����4;�������L'�>�c���N@����8 �ʋ�{삕zb�8_xV������(X"]Δ�ěM6w�,�f�gf��+͜)T��JUt>
-�]z}�o�*�mGŶ�1�S��<����۵��&��:��Q�z�H��j��l�j��L�
�F,����a�Y�"'Lˬ�ɴ��bJp{���6�ի�h���]��m�
�E�=��~��f���Fv���E�`EWinux�8!GVY�??7K^�+�[2���%_�mw�s�Z���MZ?�v�l���9��f��O��{���,�'9�/}
T}�����6��V�zô�vU�[��dT,_u�V���E�+B:�x��a�Y.L4�r�P�1�"��n��j[)Xs�54��� �4s�S�6����{�(,�kW���
�:Dm�3����/
�T�*���z'�1�o�'3��o�w|Ћ��=�Y�<
a�D�m�?F_�Y3�f^�L�f�f'@�&M7�F0{���G���T�B����/�f��zqc�].L.I�n^����W�k��(�h��c�!Ȝ��|�%�?%��\��6�Q��n*��0��'�'����W�hĩ�=��ŝL��CgR񛙌��9V��玫؛A�ӚT�Q��y�č&i�٣h���QJ,#�|d驺z���|yYH�����{�FI%��O���RD�&�k�'�	��(����k�ͷ_�u�XT��4�J�o���tǠ��`X����l�/��-�ԩ����
TBIj�ԛ/�
��J�n0,�ħXB��U��H�h�Fe�%�6�%�/���:&zLl�dKT��
�^�Gv͊��SA4�:�D�I����ʯ���<��!.�1?nT���zhԓ尵�Z�B�����Cn���I������~+��sm�8�T��=f!c�(�KH���S���H7!L�S�.D�4�$��~]��ٴa�G��s�iK7���"dϸ}�����|�{���ܰQ�7�r-�y����̂z�RaV�]v4t��������2�����-��讨YD�ی�S�@�%_�B(F���Hke%&5��='�jF,�����G��oW�9�;�(�ڤ���X�3z`�f�M��<�~�1��bR�6t��0l�u�F���Ij˯���Jo��I�q���Ĵ(��cǘ�U��@���Ѣ#e�&��V������y(�	�{̧Ku���WKe��Z
^>(wDI���߹}x��
��ƺ�5�gY�G2�2��&���sσ!q��\	�������C�P%U�
fb���S����'�H�Lbi�,�s��F���6���7߼D�
�g̣oGa)j�S-&�>7��y���CCΖi�]MR���A��0��
Kf��F=z��gg��tf�7Kx �[��L^.[��ԭ>�Z�c�7���36�c͗��q��w��*CC�V<��])E��9��)�ϛ�0l�SM�.$�bAS��Hib%z�qݓV��޷ʀ7�+8�{
\�H�A�Z#[�8��0�*��r[-�swn�xP+HEl���Y./�k6wKb�?�8�8G�I.�u���r޼�l9�Eiޜ����`�"�ƃ���ȇ�˺�&v��I��բu*J\[�^en�Q%j	?{�nW+��1��Z���C��	�$��3��!��6���/�SG� @�4ΌE�!�Rd�8hg?��J~���u?Zi��D��4��K{j%)�'�x��Ma��YvkEt�,l���c:��w�Xk||2��$�.Ey�=x��*-LM��_���xC���{�t��4.��<�P�r�͙��s�1��/��N8�uu��.ӿS�_r�j�]�\���av^�����s��Q��ZŜ�-��D�u�S��g�6����{${�r�2����5�>���,	��hc�b�J֊�?${ou�o>ͨ��vCl��(��<�/0�x�(D'aԧ�R�0��"�o@����>N�9ߖQ�]��}��3�(� z^)(Үe�}E1\�p�B�(y��f̷�H����Y��/HI��;,���q«=���d��<zl�hi f|A��f�g]y\��:e���}���կ�F��M�.M�-L�C��E�f麬��u��\Q(K�ۄ�Rj���R�Ǐ��/��[��uTOb��D;Cطc�E���E�TSq��h3d��-{�fXp���6��h]���V�Ha3<���v��J@X�����M�zdR�Lb�3��/�����dz�"���?Ԁg�:D_���P��7���_٠�Sc}����ߨ�ʕ�0�$��0��s���MG%^��X��5��Tn;���>&T�<��)3SfV1��ړ'���vh���D���n�$4n���'�r}b0��D�xo�V���U�JgIN����}��4��/��|ߥ\��$M��y��"�j�}j����ib�!�NӽSB�v�C9�wp�7}��5�����q2�Ѫ��Ҵ�UÍ�,��鼁I��}�;��Y͜ȝ�DJm[���O��sޥ$Fl�X��~�=/_��S�L��J���&��^(
qwv#��	�꒎��.�P���:bB��fV�2q�gn�ٙ��l8VӅ��b��0�aG-OTlO=A�f��W�O׭OJ��{��̑Ͳ�g�� k:���I��3��*z�A$���̊k�P
�`��n�FGx)�G�RPE%�5�\�}������3۵Ruu��W�-�������2�����G��������%v�oM���k x��B�uF��N7ׂkV)12�dB!4
��.
��N�8O,f����2TiV
u����d�L��zy���u�g��’�;�Ks�'^���y+�7UUO���B��ж�+�$�%O�9elե*��c@��F��c6gg�MU_�~1f��v�V�5
��-V
��0�� )_D�{��Գb1�#Q|�k�9=�?���Po���c�s��$&��}�BoWT��"M���=�Dy$,I��N,چ�	w�I�x�E���6��x�n�C�C-���,�ϕ��̲Y
:�y�~��ʝ�،��=Y���c�,Txe�qU�k���*O��Tq�\�E���*��/ؒ/��NS�Uf:��b��?�ī�H�t$ٶUfu��dH"��$�2kQ�/���WiX���N��x
�r6���_y{?2�ڽ��C~{���u�8�|�܁�Sf��+��{��3�0`�wbcC���Q��+zƪ\T�-�{�]��ξ6�Ѯ�c�?�8�Z~|�&�e��D��9qW�2R,Y+���y<`Ow�A�bz6|�]�:q��Z�O�V�gM��̥ic�kJ�0�=,������4�,am"����RC#��,c�f���Z6RcG�Ţ:�)e�		���eI��r6.��Z;��P�+O�)��$\�wI�V��(h�`z�{%�fp��xl	}�o��nr
��7�%ӧ��{��
��x�m���1o��i��q�� J���O��'V!��"��=�$

ї4��KS�+���&Z�ۙ��'�憥Y���^��e���~���}�,��x'"s�o߮d����߽}{.�k���TJY;ff��j�KV���B�+�j��qM�WL�"�e�/�׶�߻Yf����xw�I��:k�I��q.��Dz�dLWim��]ɗ���]
f��)�B��{l�ֻ��`�j�~�ކ��;ā;~�7��-zA����X�'��tb����WO�.��$�GS0R��a�#�Q���P�O�|�P[����%`C)c���"�ͽdD1�xp_s*5�ac<�v��P��c�q`{D8�Shv��i ���W�	��w�pk���R|��O�2/n�@�6M��R�իB|��\Un��^�l�s���=[{���A�?��zJ_R6��SA���	�������o���wn���~��GK+�(uhK�7���,���H��⺔���Q��/��,���Z��y�(NZ��y
����ɧ���e+u�h�C�<�/�,s	wy��#�j��I��诵�{�Ҏ����,ٿ�%�`S"[;��_~`!>�]�܎*��t]8J�u׷�uO�
��աH>��h�Lkq7g��R2�,ʪ��Z]�|��$�CZ���m
������q�X��	�LrS���Kb��홞���%H���/���w�>G�9�(|�v�v�NnNvX
N
Ѐ`p�����+�{(��u\� s��Q��p�ݨ3��q�\��͟��$�ﵧ�;Q�Sřz��[jl	�6n� 8�DT�}��㔨�P�E	%��BW�ح�Y�w��.�����!����/^�mdSZ~j=�*Qgd�⨎�0t���]�����q�-�.P�JBp��1	�ث��at�l�/���y�p�q�{~��TOH���6���	u�N���wY�|�
A�Vr��wDh4Kk���+
�/�@
@��O�����J��ZB1[�?l{�JՊ���q�9Pv�oY6�CJ������������$���H`7Ei���)*eK��؂Y8��{V���)b��pNv/A�%�;�uh�(w̃�l}�*�4�y|uV:&�*P;L�Q���g*}O��W;xT�!���F�[���o�
l���*�����K��K��Uv�ܼƌ٫NY4�$Gd+�3�$K�VZ���F&FuR��j.GN��ۖ�5ƴ�revv�v���Ȭ2M��C[�)�|��eGyb�{�)ڻ���.I{l�1����C��e�sZ�t��h��ɻ�RæGp��7?��(�d��W�^=�

���&�f�V��͞�iϟ\���G��6$��$��uP=o�u87����[�%>`<�.��$�Mtӗ�B)G�jS�Q���Ud�`��S�"��3��ɽ�}Mױ�Tth?�7���]�����i�EH���zş��|�-���td���ۑ,�:�D�����j7l��D6٧-�����+�}ZU4�^��xO�ݼ��f��QH����U;"I{�)��1��Z���.����@�2󄖩b+q�z�V��s^�>��V[ŵ���-5�v�����]蚮���c��"��"f���\�߬��<�ۋcy��#��Qj�6dr#�ȑ���J��4l�O���(y��N��}$m�[�-�|�Ԉ*��S�\�ќ��臉@��@
���ie'�m��'q$��s'B���੻A��d�)��.�*	�_y��#z_Ы_����{��_a�_=+䊒ӌϞ'P�ܺw
G�J��l.���r�q�Z�vD(�DCG�&�C�ر�!��=�ǣz4���v(�$;�{�2 @�iǘ�u��pc�E��
	hh	s��>
��L�^�f�ڻw�
TWޟ��R�
�/_�I�Ħ�M'B.���,P�-�H�j)��%P����Dp2��^�^w�`K֫�K�Pa>ξ﫥jϨg�)�KS��ټ�dGFYG�$����X`�7%�Ҁc�K��QO����"BաB�'��^.�`"�;�G����leԒ�O^l��:�Q�>�45e�=[7$z�����i��F�\*B�'ǝ�A�ko����MFc�������3|�Ӭ%v�>!���]�€����'!	��}:xi�/�xcR�^W��I������C��z��_`~c���V��Fvf�]5On��C��?��ҷ�7�9��']�/g}��փi��UIȃ��O�t��̒�?��k���:����[��>TSi������E<7�E-�N	ؐw;�mD��u���[�����z�+9��g_PO$��UYN��[�#j���I&���3�\e4n����)Rvcx�/�V�C�?�K�����g{G��X����"b��(�6��ʛ�|����	R�r�I���&�-Nձ��*�?��2BpEYP�[��.���r?�gO�h��/%l�RO�E�
�f N=d&�u_qb�?X°��f:��J/��}?(u�6����P�"��L~�iV-�g1��YBg�	�����}H�K2�4鵖r)�ۡ�#|ti�@@��J�R[��k
x����cE^����I2߸�dVo�qP���kZa2��H�/�=(�c[lW%i����cX�c���hP�q���6�c�M�?�}iSh�Rm��]��6;���?'����B}g��M�m��Ǟ���Cj,v���Ա��>����G��+zYl?G�ܦ*{��.�m7�A�T�^1D�"�;R�Ur��"bh��lqw$���/gy�R�mZp�%�0B�ϝ#4�b���\q0n�	�N]M�<�q��N��{Ԉ��h�@��1?��~�t����6͜��T��k���̆ҙ҇�\M�|�t �5O<4> J�}��,�QrQ*ͯ��A\'�)yz�'�KdخD��Wdi�@gzu'1\}�^q���I<>e^�h)�Q*��lz�B�l?g�������G��Z���0`��~���9�<!:���+��xۣ""p�[�W�}��"�Y|ʒ��>�/ie+U�r�W���Ws6
�g�*�D}�z�yn+ህwUӋ։��f�G�%!���L[#��"�h2�fmh��|Fqb}*�H��#z���nV˴��]�xA �1����m��k�
	ׂV|=�@�=��OB�z�P�d��5Vrl$���ZՄ8����8^Ϗ�qp(:A6J5PY2		èV��'G����pe�᝭\��hj���p�1a���w�ʓS�A$�|�H��E#7ч����|��p��*���
�`�D]Z�B-��\6�iWẍG������GG��׮~�Y�J��T7Mq^��#�0����õq������b�0�KVot�[
�Ֆm^�k k��-d�p�ݟ��^J��d�3��ݕF�F�T�Ϻۗ�9o�\S�8��qk�"�σxL_:��P��Lh��0!��iˌ�{��8�:���zE
 �Oy���/�l
,)�G�����q��Q��R�`��\J�>[����ip&Հ@�����
��$��:�Q8���Bt:@`{>���'�a�ޝu9��9�'��L�cи�đHh��d͞���YG�f�������/�	N�=�Sf�0T�;WJ&� �I�2����31��kÉr`��}��A̶���������d���@\q-�9(�B�,vѣ�ALX�q�H[�!�f�-t|����n�PΤR^�b����GO�f�=+����h���W�D;Kf�x1��^U�]�3�@j�K8{V�. "k5���h�G¾�pC鹒�*�6i��S+п�u4495�dj�+��Kk��Nq�B��M�++?{�2M��NJV�u�90�$#dV�/�,)��
Ak0�Ƃ^����F�ߛ����n������<%��J�����vq$������d	@�ww��?��R��s�
D1�F-�_�E1}�zc�ƝZ�h��[����$��&DWx&fe�%�� ~)	~��XL�t˛�҅��JK�//(�F[�KY=;��ؕb����~$Vd�]��8��|��bJ�):v ���3R�R�Q��}˺�O��	k�UP��}��SV����xsQ�ro���3��z�2�F���'֯���nN?��{"]�1B+�յ�
�;*�
���eO]���-��N~���2�̜�u%l�(Z�����b�9M�h]Z3')�9�#�>�*�<c�;�Ԛ}l>�%�)�V`leY�.5*���D~�-��d5J��Z�!Q��Ӧ�^fP��/fj��T�X��X&(f!�Ý^�g/j<	�/��륃S'J֓5�V^	���ߟ��^�m�{��2��;��
0i7$�&⩵�ӵ�����XEOS��x�5DZ�يt"�h��v�_C���S���~A$�<�@���f�\;S�a�)��6C��_���Ίg0(4i-k�<
#5t�\CC��h�>;�!`���� 3��-�6�ht�D]�S�eN����
�}�}�����"����#Qn����`F:��>�79$lV��e~���̈Ja�%��q~�ܣ�˴��^l�C��
f+/����eBa��<�'� \*F�C�;��|�c
��ڀ�N��f�!�L2i~�<[
����p�&�ѕA�kn�n��r�틧���n&�fvnjn�-��2�5(!�������rC~��D���"`\T�'j	��P`�0i�O͚�F�krf�uə��کj\'�3�!B�IEl�Q?��m12<T���R礥|�X}���v��f�*�?_�K|IY������{�%m`*5�D���`��N��9$#�c�����z�K����t�؀d��k؁�7��[�3�z�ܐ,����b<�|S<�~غ-VE�l̤��iA@O[��.5>�pQ����e�>��R�w�تD�.ۋ���
XN#�'N���jj��о4�!��tK_���f�R��!@棼C�J-�ja�H*�����N��p�@w�V�[;��
��➄s�q���H��l��ڜA�?�y�	"�j�!���<�U�?�h����k�1��oa޻���e�8S��1�Н䋄��!���9�h��I
��B��
9K�o_([f0���o!����31�C���;X�Ih$�ɀ禹@��@0Wl
�]�&)s6��4w�Y�3c.��Mg^��1���O�qs#Ms�3ZNLMi�}���
�9�U�~��x~{�$6���F�ɬQ�Ei�2Wv�YF�A��Vl�����VDXer�(���Z�e���Ͱ�3)��\t��5\^�"r�Ш�s�
�w�P�5��f7�N�K$f��^q{�"L���]��z`@��DQh���6f���~h�G�5�uU7G�����~�
���.�#3�P��TV�!�n���ژPf6�Չ>l�6	9@�Җ������5Ϛ62�t@7
��L��2	�� t���'ԯ�bH���Լ�w��Wf��Ɋ7=��.=bx
%d?
���a��� �9�e�p����H�ҩK��\��ۏ������$����C%�0����
������ntv��:��M�`᳑B���asp�&)"-qc���	��@�I����bk������3eP�F8��ZmUL(�(qP05�n'���C���V���i��������j���ɿX?q�g^:ӛ�[[P�V8�����6��=Iɉ(�c�G���@���Lb!l�l��8߬Mv���vVb�q�~��/���%�Ii����҂ϡ֣T�=�!B��PS:�m�u�v��P��s�ϥ�;����Z|s,G��:��pH���g��Vu��ZR>f��@��e⋮@F�<6�Ͳ�.��L�
�/�)�X�3"LN>�^�m��w'����>��\�C<��C�Kb`�(.��u�ְ����T�'� �o���MG�{x�$
v��9�
�|�F���x�ʀa@QI�֧�'�=�z|Q�o�^B�f��,�Zf�W�4�#�4��y�I���9#��5ZڭE���2�p�'��B��~���U�j}ۣWwE�`�	
m�'?�!�@ ��C 2C���pc��lݻOš�{(�C2��kC����k��'�U�"��C?�T�Q^��ڝ��kK��m�3��m��$�۝��ͮ��]�<i(Q&wldmY�1� s��3�hOJ����:�N�I��7N��$�zڸ��##ot4zϊ�p��驚�0��k�x�ȬU����ÜF~:(|�B�����n��m�	`N-���d�l��9�/\T�&1����9�V<vn�:};B+ׇd�S�\H���l5� j���fe_�����Ńa�8��||g���x��WF�i��%C�F#�Mk��1����wJ%"�\Ӿ7����R
��6�;�{<�UK�9`�;$�Ѿ�<�{b�a*MwfԱ���O_�g�2��Ej�]V��4�X�*��g�S0�K���c��A��T�P�ݏ�`~�e?�F�[��n�jX�nر�U��5Z �"��p�ss���41�@�����Gi�<J��<{��z���ޢM�}�a��!Be:�܍o�`-�C\�.yk��$��exdz�N�H���(���_����!�KF���otvW��w-��s�L�>��]9b�	�Jn�)sn�t_���_xEK��D� ��B	�$gY�A�V>g$�%L�0L#��{&Ν��Ftd�\��P�=��a4��
�8"�<ܝ��s�L^^N���Ec��v���H-_>���֋��;|+�c��!�������8�O/�.规��Jn�8�&�,���%�s�t�]6(k�H6��Fq#(ۉ[�y����{��0(�^��ֿ�b��ף�Ŭ�����������&f��zCqI���<Μ$��((h\�ED�C�������c_�x�/��E�.:���i^��+�Ο�1צ��҂Ji4@`l�xN�L$搘6��T���.��?���4]�X�1h|}g8<1Ȥ<�@K��/��/��5�p�ל�o��t��p�a j�t�bE��E�y��&Ц4`د���$�L���"����Jvi��l�j�Z%=')��8�e���`8�T����*�M�8���.������w�~��\(H�t�vr�"jDo�GG
�i���lHe��%ia&9�d���d>�-i
�lM�ܰ��TA�$��VHG|��
�$��:�1Rs\�Z $�Pj�ۇ��]ً�g�8`簆 �zߒ��V�X��ݕx�rtX/�A�p�2�^[1~R{�뚬���ɇ�:kCU'5n��%�'�CXP06G�ۮ��l[�<�N�scOFeQ��-�gi$�RN���o7�Wz�
_t��"?�z<Q��l&��B,5�"�}\��i^�|}��R�����l;$��ѻ�'dxw��A*�ͺ1_w�f$or�w�V�$
��T�Hi�����L����lVc\����7O슚��ŹR�D)�]��B����=3���qF�MM��ȓ�B�g����
�OM[�԰`�W[pBΉt��i�\��`�{X���/)�ƩcD�R��Pvz�x��49H�_��ه�#�1��&��P�/��֡��&�U��u���)��l9�Э�:!�}ɑ�=[�*��;����u{����.��p��"�!��,��|v�nN�K�63ud>��6����y/H�}���ё�{qL���$��
��-���a��[���st�nS�n2�ğ�@���ѷ�����xHNp�������2���&��3	�����f��x�)�WP'h�7f�>�� �s!�;�p��&Q����cN>OgdH�E�1u	{��^�گ�V�}���2�@�J�H�S��>!~��L�^d	��r��5/��GyNW�-�`����ɚLJ��=��(R�V2�ȏ�M;�:�-��A0<Ȥ	L�1L<F(�J��L��Cl�Y���N��_7�:*�\8͏�w��
d5'L�����H�s5M �2ID�%��WP\pyr�~��ҍ�)qN0�E�|)�(�@��(";�JGZ�!���U��,WL�#E׬�E�����O5.K��������Slso��z�d�7��ӳ;%n<�5�*���iu���?o��mI��"m��.�XL���F������r��s������
8�!���{N�c�yٗ����Nf��2�!�n"5hU�F��J'�d�B�2��sv5�	�����C�r>~.���ܤ�kg��LinN�d����u'����f]��B�sL��A�5S�h�K�v�vn-�_e�9e�V"m���B:�GΫ�x�c�ZX
���o��y����HKgT�~cN¸���OZK:�b�A�%9C	]��o�ʗ����w�1��)(�t��^�?��u�Ʀ�-A���9�����9N�لL����#�A2Yu����5��/_=fql��j���އ���ˡ?u��Ar�Z����]�A�X _�v�M��1V��&P\���6X��2��m7䥱[lҏ'�A��Q6R�S�Q}�딭S��e���S\D-wLrTC]�ӎorly�݂X���J^fo�-���˰��(�X3�R>\�#�	9��VP饘QՐۑ,a�e���X�#�*���gV�Tnq���GL�(��Z)�o�M�i��!#Z��H.��$�ɀW�����\�p���*ȶ��/��.g��y 9��L2��p�(�#Z-)i�����j��jԭ=�0b���`n�0�a]�k2�I)�X�E�8f�nD�η�%8�CS.�o��ě�Ng�'d�p�-��J�=a���Y<l��Ǡ�OYdb�Hl_LC
^]����o����>�ɹب��Nk�Y	��Ե=�����f��N���H�^�����f�<���(|�E��(SL��\���>�u�4vdN��~�HN��[�nD���eh/ڈ(2�1�he_ʔQnV=�C��H�E��gi~�%�B��15���czŕv
�>a�Y��%�e�&c!��pIB
�8г]~A-l�64�1���/�[\\ZI�
T4�W���aa8'l��xRY��N�e��j3:��-:G��6�v��ad$$`�M,ܔC�z�3�!q�1�����]Ӌ��n#x��B����l]��K�^�t����_@Y�u�gS��k��]�OƤ�&v:��N��a�L�ewɋ��-hY}:��xi O� ��x|+^�ñ�Cq%��]{[[�q"�	�x@L�upՔ��j����-��[=�����ئ�\�e��jq[�%��^W���'�Hj�y�c��%J8�Imx���=�C/�].&�w4�D��,Ƙ��3���"�z���`�U���
|M:3Qc!�_ǣ��W(Wj���q��S�#f(G4GޗI>�����n�ڄE��٩����^�����˗��<D$>n�HG[�M�'�C�&�Ǹ'o�rUm�����N��ݾwJ?��6�\A<��N���ZK5�D�)����Hi=�i�qlS��:�B2�&yY��^�bخu}�Y+lc��Z�mL��%9��s��̪Y�O�1�ߺYD2L�
���ʢ%���c+7�V�_.rsIq
pש�� >�bG�Nz�Ž2�q�X��D�I��a����'H�V�T��으���E�t�|��G�3�(
oOtrJl�s<�;���3)YQ��`gw�8"o�&��7>�cѭ��^��@&��t�T�}g��$�}��0h�h�)�GT���s��y4r��
 o�
M�H;Φw�~|� !(���������ad�"	���-sQg#�,1M��|��/�u�h�R���-�.k$G�K,݅1a=a���YP�A�,q�%!�
ONzvN6�^��>��ƬA�v�J�F�ӽ�)��
/���ުl̒�B3GM��'[�,n\��\k�ѣ
m1�hm�o�>!����jM0C <����埵��ߎ\������`K|_xN�`ǀ���pWJ�jHL�M�<��_���=����C��M@Wޅ�%ꉷ��dž���f���%�Mn�p�Z�3�@>'�M��d
�Y�,BT��u��J�:����o>��b^չ�ȑ�ދGx��_W�`�H��"=�ϟ��z&=�@�%ӌH���qi�x�DH�Xx�jꄯK |@QT��P��+�:u�c�}О�T�����B5�ڨ�81��hȩ����a��Fu�XLc[�nNרxtN�D�X��*N8������s7�|����2
�R{>}78��.��G���yՂ��Og�#�Q���q�'�g
�f����K�Y��`�9�h�2�„�6�$}�� ��(�T?��}A�`�7�8��LHFR�G�
E�FJXw!S�K�r���@EKa��2�'��ʌ�%v[؟[7��S�F�j��j��[5�h�Mt,���^���i#��Co���q§�Z�e���t��e�Wi�����p_�t��^*>����Vlh�Z�Q�jX��B�㨪�9�q7�@������'������[=e��H+^ї����a/�G�6�z�<�6)yж��DH�wF����v�2nF�)%�d�����.�)��ەP6^÷r	��{�h��<�L�?�Ih.�����dht[$���]	��fŘ�9&4.�;�s;�B�����
�k�����~�>�j)ϰy"T�㝼j�MU��d΂M�ݱ��[��D�g4{+�ݝ���:�<�9q���A��w	L}��A=£6�۠ev��Au�+U�_��Q�3f�?���R�\�0R�
�R^ �,���V�w��W����2�`A	�v�G�<9��4nX;�?��?�*uV0�����{[4"��΂,���qӼ��<��RK�+���k5�WxcF��PO�=*��;E����D�~��:�	�m\A��p�����\XX�d����+�Hk6��Zb���WsX�/��$_��Q��Z_���hh�L�u|��8�
	���Z����}�IH�:ƋoK}��
�a/-�k��xVq0��r��LC�_�D6h&軓S�q}pߨ�=��~38���^x�Sߡc���8Um��e~7����VUZ�:�vƯ�[m�>���?�
��p}�_�gKB���_
%�_�g=�Ih|.ݥą�V^1䓺0	"{��7��m�s�9�ꛦ���B��N��I�p��i{
]J� ��:M����y�%��u�����G��Vց����kk<o)�{<O�GJץ�xCNj3-˪���W-739�Bƒ(T
`�P���X�i��wQ�:����6�)"S #�-��,�"v	��\��d~n��2rr2Ob�6�[�T���
R�Kc�Y�犋��4c]�>����py��jp:G]�Z����$0
��_�N+M7�Y2l
@x��6q��	��4���59O�Т�}T��r�f5��2�k t�߲�}�p�U\�ur����sVl�ת�a���޲�
}Vm���~3�gm���,\7m}�-���*�,EH�q�$Yx�=E���_V'��C��R�i�ND��9���/Cb����x��@8`�2I̪,!���f݄�nE��8�b�+Q��2쪘�CZ^?G��Vf��砱��(B��Ie�+�9��:
A���
��v����4�RB�H �z�ѳy�|�x���֣�W?�E�t��FO�ܔ�c��=��1E�$V(T��}�rY�!HhQ!.F/
d���իG���0����;j86t��������	8��y��QG��/Z��a3=
���O����_�ؤJ��Pג�I�Rs�Z=��|ڼA#������#�su��曻;.�����.t�ש:�KIT'�6���m7��"�:���s�b�q�yL�@Z,Y�	bg����,���n����{O�;]�ɪ!_�"=c�Ӻ���dij�2�G�B�X�$���|��i�!���*nT�%��;�*���^3�/c�E��s�4��CwLj})���<(��YpHw���W�^��HL�-v��p��đ@w��Пp�̹�U�K����>1뷀��L˾�f�0p��Ύ�=�_��!	9�q�[���ƭ��t�-c\
�	@�q�]���CAJ��p�Pao|y�lN��{F��*3�F��xLTv���0ԛV,�������jH�A(\���x�����xtP�
���R�^����S��h"�H��Jn#_p�.�$���s2�i��B����{T�uZKt\�LI�%���*���P�={�b�"U�Q�"V�R}	>Z������ŊN��Vݮ�-�J��hσ��
�^����;��FQ��,*+�"�"�00)�:;:V��P8*e(7�Jl�����0oHe^Ɗ��y%�`��4��Y�[eX}�6K�J˩���^#<ɝ��I�_/�23-@�l�4��`��P�=�K&=.)��՜XvL���f�o���BG]ޮ��+��؂Py��I�n�V`�k-~S��d��d��cU��.�gƗ'� 1N����0P!��ί��H��]Hf��[�Z�x���\.� ��+�\_4b��Ov�����#������v!�l�,�x<�DxIN-F��e,/�\m���d�Py��Ir��ǐ&$�G�K�K��և1�q�zG�!����A��38�̍�97U;ȴVe�g ��݌�L��ΐo�tp�R<s��k0U�-������=C���C����WjA����Oi�ퟌ��il0Gtc=T�	�u5�<ل�'M�>#��
�A�D���䶅�)�m�"Ǜ�X!-�Μa�R�����_��});�;6��П�(��o:֔�qC^��Ǖ��۵�A=�z�O�b�	�d�~���������hz�n/J~�ǪŤzS�,J��J#2ŭ��i�Z~_�{c��]o�bR:�v:��?e?	tZ]ָ�ՠ�gժMk�&�zz�q��%�UCW\Y�ڻes���7iv����Z�d��T�V�Q�C�$mČk�i�w�ƿ#��;�̋�	%y�G�8@5:yq)���|⌬N��=������Bց�^\��S�8]�]�?{��rW����[-�+W�q�)^2���-��KK�0g4�LҼ�&O��SP�d���Ş-m���>����n�x�QyY崎b��y�CQ����A��)��B��D`<`���������7����%f"�Y����>���ШG]�T}�_�����T�,a���^&xԠ���,v�4�EpW�¶��S�A�N�Ⅽgj�)����&��d��5�4��(���$���sD�Bݦx��O�h�XQ��L�w��`�q�nP�sT�s��'@�Tz��,�2��J�*njވ�4_�}3�����י�j�ҫ-�%i����
����P�O�F?��kjS�#�G�'��p�1��J�m�b���a[�2��?kKq��!��@-^Y97�*��o0�i�M�l�=�ߺ��������(�7g���_��Ǚ�W�أ��..��
�p���k�����#��c]@��q�o�s]�vK��i]�C+�K6�-�/'S���{V��F#pƦuO&��g�z��u��t��xeL�.��v�s�Mf�џ@/��)�u����A�)0!۽�)/Y���_$mU?S^�	Gq����Vċj.v���UH��0��mǕ��*3����bt3����(��$F#��P�hzZ���o��\��d�沠pmL�~�Ljb�mmK���	�qsN�"Q_Qh9�	-��㳟CU�џ��O�=ކ�y�5��Yk�����N.eu�i�#u��ڒࠠ���p�*��!��C_߻3��Q�p�azm�g�-���	�-���k
8��Z��莧�YP�d�M����`TG���hѤ]:�d���VN�vc�W:w��|kҁ.:ӫ�O�ڑs�w pT����%z΁ه�*�0)��A&3��PPQ_i.�-Z�!���%�Tt���f3�k״�+��f���6������6mP�яH4�ׇ��2��
�umMCͥ�pm*Y˭���9�_����J[���.9��&��,r�H�i߃8Ʌ��a������[�N�n��<�CrxL��r�J2�vc��>x�	�����J�#u��:nY���}l�z�Ӯ��^Y;���z��Ӊ�1�`7z�v/��_眓��{��='T� `Jټ]�ȇU�)K{v�[���՝y�`�-0-�?���^����[�mSƐ�=�O#_D���q�q�mR0���)�
i�bJ��}���<�w�o�a�6�[����^D���Zz`����̶.D�K���=b�	����b��l�޲w헂M���7dֆ������#wQ]!���˘��g1}BJ�9�����Ԏ�I��=CVR��%�L�MU�]C(�+#O�1Q�dj�2��~&�B'٩p��c�Q�4�1#���qʸL��̮�L�➒��GZt*j�I�`��Q���/�HJe�l���豎���x[0�D�֌1�STK�af�;���3`L��}�{اJ&5������J�^����G������&���x��%n�q##�G��7���p(/8����ʶJGy���8�?�����+>I�����克W�T�m
Aj��/b����YFNG�uc����\�����:�i%���fU,p�I�p ��^y���B�cx�2�����
Vb�6N�d�ٍәT���l�W�{tĈT{��S/�Q�Y��K���7��#��pQcGo���g�Q��G?e<���t���J���8�3�Y��ި�F^:�̊�|�ʚ8`r}�Q�hF�4�뢺j"�:k�2;k��.,�&��z�TIF�Ty�=�K��;�pr$�Ѳ�8f_��TIV[��[�ź`���.N0�U���8IY��
�D5�7�o-
!�mv9��\/�KR����!���6���b��\�+'I�e/��a��Fzͷ��{���P|�w��4ej-��t�۠^�\�SK�+'�J�R��S�f����4��Ԗ+�e���"Ӄ�j\��ʌ�E�.�>p���!�\�B���}vچN!"f���R�0r�G�߻�*�� ����/J����6�M���n���~��}}<��o���lϸ�p�f%��n~��W�X�U�lA!�ˍ!ӫ��8�iD*�z3��@��EYo�J�N�C8f���,�R	�Ə�m�w�E��(�i�wL��e��7�xЬ���2��Lz� B��,�'\n@Oޤl�o<i���YU��ʣ�:�8��p�u��Z�8�&>�s4PcX�Y��������}t�p�-�	��yC&��z���
Z`7�)�<i���6Oggtx�
hTI�w1a�r���3;e����0t����Ysmv�YE����{)�K���Yh�&�ۑǶ��X����>T)�0�jJ���ׯ�$7
�����۷o�Uck��w��Y;8��>���+g�6w&$�>ނu���>�
�VZ�J�����g�˿�=���>O��i�]@����QY������O�����ƽAI�N%F(��Y�9�9��J�C4�Q@J���9��u�3p=�0A��1
��,^�>�(��HR��Bx��Lԇ�j-���a�p3���7ub�NV4|u��砋ale��z���J@��5���y�C�Q@RRq�O���</�&�IG&-p@_S/�mn�����c��Z5;�<y	��/骞P��e ��������P.Wk�Y�D4�<�A������NǬ��i�D��N$�7 �.� �+�gI�g��:�#?ḤPuG�q+5<(��ڮ-H�JD����U1&g�ξ#Y�#}ă��-�s�<I�ʹ�`�{6p�S���uA�mm�G�p<��s�Oic0ʶ�u�����f�5o#������.�o]�l�<(I�Ֆ+� [D-���d���qꝻ�)�<UPqyoQ^49K�#	*���%^��"Vv�*-���s�y1"N�!�4��\U$џʋ[��M}�ߑO�r=��K-�
��82I��+��(�Ydmh����La��$U�T��
��C�(����' H(x��
��=��<XU��Q�����L)FM��^�>�¼�p����1�B��j�*�O��|O�,������0�߰�ʹн�,u����
�Hs�5��IJ��R���(���+��F�L�?Fh#~J��1�������p)O"�-J��q
�Ƀ7�u6��(ۄ������!P@��>Á1�
�&'�s3�ه�X,�9Y�|�s��A�CEvp�|̺%��3�7�_*xC��8�
<�"�'"G�����!�£���V�볩�s�&<6D-m�������t�t�z�q5��"m����J���}_�(^�m�'V����s�۴F�>}*s�V�Ӈ"����m��������9oq�����{��o��!<�]w�@a�#a���Y�Y}i����|#�r��\��I�_ߙ�W+��"푎��Nܞ�0�|��9�8�ֽ
.�yf����n�sˡ�b���~p*5E#�s
�vN�9>�c���QG�!�Ú��8��Њ�y�6&���-2�~Q����[�aṖ��о)5�����_[��z�_i�t���b(߭O��=�C/�����P4?9�T�,�1��լ��9��"�f���P]S���Ԝ(0v4�s�Jsb��nQ�{��}�#�@����ɏ���U����^��R+�/6�'
������Kh��-��F�s�5�X��ޖX�yXQ�3����
����WK���b"��&�â�{�[�m�p��Z���ֶ/ʲ��Z[��Z-l$�N�e�WHW�M�_�
Vӧ�x�s�䀱X
)���o�C&�6�l�ktIp��].@?wS���h�s-�$�9��n�P[������p�Y�ӲG�:������E�t����b&�<
�E�_���p�0Jtz�X��B����.R��
.E��Ď��u-0OSBþm	���Ǣ�����]v��d�`��ÝX�P���[
��V�C�4O�������0&z��u��4�&��E�ʙ't�A��B��%�+�DˎG~A�x��CPKZ��n���Rg��x�+��i|�o�ʜ��8��o�qJ�`��G��~��ɕo P
�8�yuq�뢵����𐠵�������Ռ=ƶ��T�·n2p���aA/�F[
]+p^��F���(���?ɬ3gg���Q)���Ċ�DLm4��G;�?81�[ѫ�T�> =�Q8��)ʒ�5��ck+gdR�����A|�v��a�kBcz���[���C8�^'�դ���O�S0��* )�5r��|��Ȥ��^�?�z}�[�SWU�����T}��?L���U�^����}L	�6h�8�
�b�ǎEڰn�/�M��A��6����6Mk<��u9�o5)?q�	#�019u�A.�mX�iȪ�fg�Q���Wo�g�@��u�;�	�o#���&�o4�O�:on��M^���;>��r�0�.'�}�)X��"�9��O����~�.7@3����_~I*���`���֣��q���^Q(T����ߠ1�``��w2����u���Փ��أ���0�F�(zc<��mL�hc�-p�:�|m��.Ǣ�VfhJ��M�~� �[е�}��r��2��~��wzJ�:Ս{�s	�3��xԺ�,G� �MKd���v%b�o���|��l6�z	^aCG;zVl� |_����m௷E�ZQl��Z��>g��sSo���l���P��8�C�4>@���e1bς���	 ��z���F]�5�Qƃ�/Y
�vAfG�WJ;��=�yw@�R���q�\kK0{2tv�0="w
0�N����r
�D�n��J`3�7�%/-�*�R��.U+�[l�Q��7H����0x�/{džq���8>6F��'0*G\�Q�a�$;�h�fEB���C����-`0��)�y�[hʑ����V�
H2�pC��xQ�P¥��9�>&zgိ�*�+kɼ�'���W_�~I����Pg_�CO{b���̖���aշ�N�� ���
��~A'�/I��팟o����"��ܬ*0w�����K�OLx���i1�M*ˀzܗ�{� �m�eJ�!,O'��Z2N�m��:���ܢ*G�`��x]sҶ#fD\�����FI��Hw��]���I���?�7#ȂU�.�5w5ɮ�R?7�����0�:�3��np&9&�Vup���AFs���Uc;I}�!\��Uv���}��b���z:���9y�! R����ξ�����
N@)�0ߗDd;(A�Xr�[B�N�a+��{��?X����/��Jڽ՜v�ݶ�6�lҤg���O%���P
(�/V�� �j��>MT��c74bɤ^�~^�()y�I����Єe7a'x�U$u8���/����N�Ψ'n���h贑�51��;�^n4�8�ߖS�q�F;� Jx�����]�]��Y ��MG-WM���_�	K���V�gGg����>���W&��i�&
�əۣκ5�X�n��F>gla�⧲�0���x){���8��}>;|��9	i� 7?��kN���W����� ��A��P�Ej��p�Y�rҊ���J�p7�~V����8��o�?������� ����3#JF	;Sl6QA�i����C��fT0Y�w�I���+~��[��kB��4�1L��[�*��;/j�LAM0X�}>������.�tغu��tj���iZ���6��)���u�d���n�������?������
�|n4oZ��8H�/��h�!��}�I>����d��	�_�Y�3�rD�wc6�Z���K�ج���A�;��T�� GXKb4�p:I9��m��{#?{��X%��C��KM;���E�({vT6La�Y}�j�O��ѭT�в�`u ������J��ۃ�2f�1��D���/�M��R�1�Cb� @#�^$yH"�c�%߀��.Mt��B��l7 ��^���]]]�*��e�g^1:��	v"t���2��=M@f]�M�̟D_��w`tј������m�����uJw�"Bh����O;��ֽ.��w�3,�eJ�VKm�C2LCyӝO�L��U�{�/\"����K�	h����	�bxZ���LR���i�O�(=�|���V}��)�׾��[[��P�[����n���2�6Y�K��	�UL�}�W0$ڃR:���O�3Ij�(ΒRօJ���)��������H�I���n�S�(�g�K�p���2�\���oN��ya軚����8�'��p��%�K�EE�gO�[:*�׸�p��ⳇW�����F��t��!W�o�ڧ�"�˲"Cրo��o��B�J�d��;'K͒�__���h�v�+���d�����ލ�� '������V���m���I.^�˅	��8��B��s�f�G0�8�ռ�*ʮ ��꩐�Tҕ��c��6�s~���Jim���xY~��V�)�I��ƛ��+��h���Μ�;]��E���BAАQ��l"�U����,�C�)��'f�C{�KD�]�p#(^�����y�s=��=U��jon��lVe�u�iJ+$��d�U�#�;��O��
	?9�2��<�;�q>o	T�r�x&�
[��'-�x�p�0j�[�;3�Iw����6N?;��<m'*�xD�?$A�ʂ�8�f""0���ZI�;�� _ߢUcGk�"�#�+QE	��p�Xd|ĭ̧�!x3�f2��[��F����K��oa���K~�۷R�6	�Y�cj��<��L]��%���TS˶R�O��Wöbc�£�e�P�}�S���\��
��T���u� h���Ыk��.x�{���zZ	JTo�;�8��H�����P^EsT
'K�@�����
�t��B�%Fj�dC���ת
o����@XV+���z.�T��"!"�����B����F�.~�_��ac�a;��
�;%#	O6�L��=B
dX���o�
�ߡ�s���L�!.�A2�R�  �4
����:g�_�*[t���S*]��6�,�O9�3����5��ؖ#^��l��m��[�e��П��W�
=�68u�P�ݤ�_��
��M��p�"K�}q��fn�V}[�[�!q�e���*`g if��|T��/\w�G3�	��zC�Ulr������QH�$q�}r`���og�՚g�O3�=���+����ƻ��{�N�b��-p�g[r�:�􏃽����~Df,�!�>��K���9YR2��v�r�D3��'�
��K�gՂ?h?�r_��K&`t͡񟞉���y7��&.�>�t��u�4�ߛ�G�
���:�^M�pv��wڴ�Yz~ڇձ�M٪�!�RW�d�;�#��	^�z�ʈ����Q��t\�Wy�\OJ14��:5�\���SXT��� ݓ��g�v�V9�UkX,m�iM�\����(n��>E�I� a���I�i�_��,������(�
;.s�)�=5�A�I��(��wX�g�}4Y����Dp�4��{�jq(Q
̷ZJ�U�Zf�K��*�xC~p"�2��r�#�$!�J��zZY�.�^|h�}���z���Xa�I���E�Xg�t^4�R{��f�L�y�p�ᚚ�1ި|�O
�2��5�"�t�U�A�ޗ�@��u�R�PN�X�1�ZN���/�ܨ�x�����IQ�×��_�y6�EK���� /������ cuD�o���7դ�	���|2��V�C��f+H��
�:`�w��i��y�~wk���t@�4OE],�<����ͦ?s��b1-��
�J����A�������A2��-=��t�칙C�õ̍�:�
�Ba�;�W�CE�Ξr��{�`�&��,'��t�����[8�q�u�
-(�J�]��4
����ʹ5���ay��
hh�Y����.��4�j&���4��a����q�'(��5���s�X�G�jWB���~����cm۶�/��.6�a�_A5���+=d���>Ĺ_.�h����8tB�s��0�HJ��l��l[UH4�v.	��>]�(
k�9.� U�A:,A-���w�yʰ�҉��V�jVU�^���}�|wTH�Ә,Aq�0;,�ZD*��#{���l�H7��bRX�0C��d�uBѢ�5�d�=�V�\T=�Q3�7o�qA̐A���O��l�ܿ���!��{_uDG_���rk��ߘT�^���}W�o).8����|gWP�Ce�J����x�6N����(�~v�_�;�Ξ���S?���W#M�˿��^��S����mG�
θJ��Q50 �i�<�&+��;��V=�K�rU��
�e������#��,�t��F�jë��Γ�U��|N'uL�����x��&�)
�6wrroG�4
���L�R��	gn��Za�����#t+2�>if!ϥ�)Ǿ�>0$&��q�����qJY\���I�S(�ˤ7�^+�'����w�ٚ�ze�!�e��-���ݙ{��a��wτ� ��K"�Jd
��Ly"F��ջ�P�n�)�ж��w�-YU��6L�8"�!ѡ��|�F�j=c��Ƞ���E����R���z!�<�nU<�Qc������o+�-`(|ɍ ���O,�tcR҇�ӆ���/j�n�@<�Q�g�����4�6���W=Z�ڒ�9���4cK���&{���}�8#Z�X��WUU+�QG��Q�����3,��/�%�Eo�����އռ���d�7z}
#O�t{yD"3����K��d��� {Cu7��'�
C)n�0{�4�k���(|	u(5��u)"�|�V ��Wr���e��n�n���XW�O�{���Bu�WU���,2L!�(�K}���=��	�[�MP)�s2��l�6%�j
#\Jg1a^9Q�.���F�/
�
y|x��&�>z�|%%N��{�9��c׉S'I�#�ܳ&�QF��n�๕��!JƄe�e�o},��X�M0c�s9]��e08u�x���޾�B䦂��@h~T$�%
?��-&�=���Es��nϨ��f'$��Є`9��w����vȒ�ߖ���$sNy�7zԯ�3.ɉA�>��c���,v��A���?p-?�#�G�v˧�hm,�Qv��G�=KԾ	��n�k@p*�;r��Q���w�Z�*ړ�Ǥ��� �3ν�եwR�-�`Qz\�ӧ�v��c�<�s���*)���%m�gNܦIy�~#��+U`~�U����獫l'�-q�'��֣����h&ɚ,�B�L��<�g�MIM	٧����@nf��\��}��do�‡���[6[�B$��9-��R]Ղ��T�}�uA$�+�eҢ4�k���v'����^K����6
a;8d-x+���J_�u_2΢G��re=�?���(�����w��//�(�_`�5�w�/�/+:X}�Z�X��.ruȐQ����W&��eUs?�z�N��|jj_�Mw31���#qJ[u�WF�x�Ԏ�}�y}M�r�.)r�1+��)	�Qn�"|D�U)^8s6���c��#���A�;}�/�
��	���?��K��θĻ�G���Mg�i��9^#0��;؎�Jb��ꘙ��#�<���M�z}tum��k��p��aS����� 2�p.A^S1�_.wGao%7�,SUW��Օ
7�md�%E�=,�P���[Ұ�劚���l����K�=3�>h:pZ7ן�g~��#��;xD�t��O���|��tҺ}��&Y9����ƮpbuU[]���T���ι#��U�Fo~�y�ե��j��`a����~�.;&\UB�D����<��j���5y�уo�)]���,���+�]�*�D��89�ż���mS��T�I�9⺹���"����_KKgh��&�\^a=�X���(�u`��mgO,�Ӊ�h}����y�$�ے�$�E�[��b����\ڊ�xl~[����l:�鈼�,����g�\j��gY�	��'��&f)�GL|�ƭ*�Q��pr���~�;�Z��I]��
!<�aPB�I��b�CUxЏ��Eg��C�(�<g�d���РrM{LWҮGh7�9�W�Fɜ,sR��ߕzH7�zϙ�FrcHK����oS���Fa0��z���h�C���:+/����ҭ�[-W�� p���3v��\uq�GG+ԛDX)��'��&M�uƗ�Û~E��ވ�Wp���5J�pGՠ���0��_�ԍ���qW�Ę��
]5�x�����1�yu�&��8Hȏ'��;��@�<Q�v�8�����uV�<�ɦEY)+��tn��|�߲�K������3*����"���ޫ##���
�ЎN�i"MC�F�Z�uT
���7���y\=�ц�ёc�XY$*�^�IN�h�q��h�<��쇢��[�筆��%���UY��A�G�8�m^��s��u�¶��$6	y�7YVP�߾���tF�(j�:���ڸ�$j����{w%ph�B�L���\=@�"0���4)U�w�' �O�w4��#��N>q��٘���>��0S|�_Ae�g�<2�8�@�+�5�	3�gKp:���E�L�Bv�K����j�:��*&z����0�V >��G�X�CJ��I�O��Er����W����b�$�W+�^j�ɒ�����ϖ����6�H�X#18�ˌ5����ԋ���`�֩�wG�U�,�03	�������̵1��Q�&���g;!��]v�X��~0�a������	��\�M�����F4C&h� �V�Ӿӗ|���怙w9�}��9�/��H�Y����1��˚�W�(�u2igo�}9�~!V7�;�:H�	�xǗ�~㲿��vW�ز�j��
�w�$��kʪe���1Z^�W$S�+ļњ,�-�3��!�cm�h��9����% Q*;%�_���8�FV(����s�߷f�8d�����شgm5@@7V։��!)���^`��#m�܊����G�k�!��y�u訦���(+�q��:�­�D݉5/��b��w������b+�b��ᎁ���6�}�H�Л�m$��te�1-ě
���G]i�ܘ��$��Q:npy�s�ǩ��B��q8��H�r-;�-c�N�*�r�J]c����G�Y���ucyUk�u���DQ�)��:4^���K<|�XE�ޚ.Hx�r亞�j�Κơ���-�]��eU6���x�bk���_lo��Ⱟuv��oL�zA+�$^ҕ\w�%>�[�P��G<����2���<�U����w�����+=ܧT�2bwݠwx����
�ay�#G���t�s+�s������[�U�Y1��n,�,(�4��c$�U�S��9���B�%�Z�H�\R�׮��m�YZ�,]�KH�[�E�ÿ��/l;�f��
�$�6��![aB�r���d�Z���V�zoْ��n�H��K�VU�%����)G��B�$�E7\f�YֵT���
�Kg��ɷ;�7� w��Bh�)�k���4�����\�r<�zu��t�S�o�?(#�"�*G����<K?�'<i��T?����Zm
l��ױ�k�ưC��d�	@�P�J�����uU� 7"C*����l�e����A�I����̮BZ|G�~ۙ���Q����ec)XH��#�����k�����3��KV� =[����X�_��ߐ���W�Co����F�x�#)ȁt8�6�]��H��w3,ky��ѡx���,A�׷	e��#��/��t�su��#���8������;g̗��]�[�d`�o��A�l��g#� o�@�^��vI�C������k��r��k�Mp�Ԁ��K���mnJ�6���!�	{�zQIVN�r�rE�Z��p��W�w([y����
*
N�C�S��!!�أc�����-q���UwJ�=j,�������l�[^sM��u�;כΧ�:}�Ҝ�	�	qg������cNh����T�v�)W��d���]�]�*I����n����M�:�2�ұ�ux�v�>����F��n�D!�$S�x8��;����;�(���~
�Wou�\�Ht�*GĞv�:��[�L�r��-���y�G�m
k�-6K�=�9�D>�Gk����aD�l9�<j�U�r��7����j��*�Nl�����)8�j�2��b��S�-a��s���4d ,�`�8j0_FC*�6���*�[$_\ q';C2lD�I�=#��:�Vp-(_��Ha̹$�$=w�#mC*A�1J��P�%�s�d*�:��%	}���4�AR8������zø���=�?Eu,q-��أ����÷���,!�p��N��:��Ő5��V�I4����?>�*K2����J8Os������P"偙�bN�%�
�p�xc��N�&ay�{M�lƪ3#L�mN̕&�>��4w��ՙި���|3����}+�e�}����_���,�,A�L��u�[����ϲQJ5�'z���@Nԝ�Z̉�ED�@�(PVdl��\8N�&,��)I]�d��N���Y8+�ʞ�_�w���u⥊�8�#��+�1d�8s6����Ǭ}壯����Uy��fc����+��!)�Ȧ��1���[�N����}3ǮIG��u]��x~�^�ʔ�4
���qd���[>�,{�1#�^3��ID��=�q$�%�ɥ��:A*��Cg
R��@�B��H���@�!Tn���w�l��˭��a�]���ɬ���z5����{z���1�R&��l�\Wџ��g���EIّt)���8�R�Tp*YM�ڋ�FfR�8V�Y�bJir5Fč	N4e�gH%�<�ټ�
��n�j�c*v��<᧼ /���U��jao.lG��vA�vP���ؠ�Z�j����9�IdA��v�Ɖ<��jO��3��j�5�Kh�iMt|��en�*=-AB��Q����׍.|�"?��Ïs���\Z��%�g��t2^L�#;K�0>;���!���SSI��!!��H�>�S��|�B�ϵŵQN�,$�,J��,��y�a�>A���"T�S�M���K�����"�I쫈�+�;;�Ӽ�[���5��*^�1!��;m�--?wb^e��Ci�O{�*���N�C/���.M�s'������f+v�S�'�̘��
T�kO�H�L��T�pR��s�#2�Y��@�2��N�6^T��)u[�>4(n#�*w�²Jb����$Ȥ��F�TxM3,"&
�ܴy��Wm�����k!o� ��	��,˒�e����6�G�G\r]U2%��8�WH��
C����Qo娣�)���*�[zb�2�n����ʹ�.CL?��g��l�2�\��#�.W���Y`�WG��>r8��e1����j��B����
��U���q8�`{l_d<C�hj�h��|�v�o��L9����g���䇄�b�%�&��h� �x��L��){(fo���P�H���~l����8� -s�3�(!���Ckb���er�
A�E�H��Њm�q�ؠ̮�x���+9&V��HLa������jK##0c�e��[abh�@�/9�����Jy1�MK��:�5b�oN�K�T��hw���Q��	��)坁�(
�i�Ƕ&p9������F�d�I���S�z��Ԣ���uq�g�ݴ�VD�Z�&`�W�::�*�^�!�V��p}�����a���,?���8��晛�K��_���7�g�?�r�W.U�[���c�>��9)\�<����r�.-�^�
�BtR@�͓�f�8�w��<_I���a���Ɵ̢��(��C�U��/)�\R�~���?~ۨ
ÿ�dZ��ZەGƐ�����rg���Jp_�"}�Ie�g�����̒6-G�;����K�>�$n�����+��L�[��o�"�N�>��e��Y�f��C-��\Qz��%��se�g����@��%��� I���^؄������*�Ӭ����D��<�����!��0�O!
�w!����ޞ{����D�S����r.��~���B�z��+�B�mA�*�+y����(k����w�_�3d���V��y��4/ܺ��Y���hs�v�zJ�0�a�p67��X��6����	��y�n�o���}l��k�n�r7
yyh�D�bK��S�OR5p�8�.T�a[��Y�hKHCJ]c@�/�s-`ϼ���E��a�Gk�Yr�ʇ�K<�E�e��W�V�RP���t�G+$�д� ����R��b��͇P��TE[j҅�
���*���NU��Z��{�V<�����Q�����w�*�?�Ӄ7N�s�O��	j�$�0`۱���/�N�K�]ϫ�]
iZ?;:w���<����7҆�҇��ߦ�٨nV�wl�}D��A�%�yv���+�w$,��Xl>�/j�1�'$Y�F���\��(���AЃ�]x�i�Zk���$5��U܈�?Z��N�:5�Z��C�'Z�ܤ�}w���~HE���VN'�O:�R��|J%�ء��C.^��ڎ�`��g͐(3!��a
�[0ɘ»#��c]j��)��`��rsJ!�*j�c�f`��o�+�
���;mx���x�� �2<s�5��@�HT�}��^��P��:u{��P'����/���>=
}JKo���
a
��XN�-��K�;xL@@����a��,�����u]Ϻ��U,Y�;I�a�˯�%y��\	��#�2"�d���aE޵>P�~�?nŠv]wZ���Y׬���a)���3�3t2������T��۷MN�6=�?Cݹ�ސ�d�}1�y"9�gV��˚!Z1�qz&�W��w��-f�R��C|K�>���'�cwA?`6$,�|C�kٝ��0�->\�#�˽�����5K�Li�Tom��\[کNJXu�}ꕵۡ�x���[@4�u�	�g�����@���+�"��R.AS�T�+�8S���3r
P,qݕV^�f���b��ڝ]d|k�
xtQ�ä=�:�qC/Ѿ�K�6�9@�̦��8ۃ�)��6m�k�ϋ�z{�v����C��G���v�̠d���
lC�ȇ�`�h��r�����.�S�F�m�إ>2푈��n��\�y
���3�k��43b�?��s�Nj����T����%�a�)���2��}7
��� I���
}A6m�"o'�iLI��I5��y��?����|��Ue-�Ң�hb��=Ϫ۱_�*'�{��h�3r����y":�U@>�q��|J�!����׎���72ZΝ��	]�p%}��,r	�T���āe�u�1't�̖X�m�٩X$:Dl>�O������KX[�;���4E�h!�BA���j�Z�<|:f����^�O��h5��a� ����K�����u����/bz�t��w~�8i$��oo��t�^3Q?r��Lˊ�f��o��In�H���i�qUgg��)Ӈ�i�-a��ui��4,a{� n�Y$����H�kJc��J8@�t1A�y��8�RQ�)(�
�qr�<���'T��2QUE��T�����ԫ
���*D<!�⥘`��]�0^ߢ+=ǫ��I|	^�O�ax��'��D�TSR<=�O+_.��㨊����d��'��	tl�9���e5��,ƙOv'zz�{�S�]���x����j
D]�âKqo"
���M~���7��*5ׯ��S�p�E���B>WV-J(��YWZ~]�^��oP�6{
�[���=<ozQ%��g�fx��>���ʤ�Ɣڗ��>�����!���C�/�9���ky�y�r�L+>;��ʒ����[�/�	�f�n��>�O<�1�#r��y�w�70"���a�YM��0Ib�8H^-r�i�
a�޴B��7�N9�!��gI 2�iOB���*{Ȫ!�&�F�s��S�����mt�*V��ch|��ʢ�&E=��E�+��BJ�&Q"/q�d��"�8Yn�����$�:����W�|�8���a�%	�F������~�\����\� ���=��w��帙�"��i�4��}B��W3�߬���[o4Yf��"����31Doڔ��r�]C���pϼAyl��k�7S L��j��
�@�>��s�%���0�)u�A� �9��-^{#x�/�ަL[`�0/��(��?¨Y�)�؛a
�wI{�d�dC1������ڐ�G�d�j��<����R��0�*eYC�NsI(~.�D<��ouwϪ/۟EP�q�{��cۉX$6����i��E���<�-����o�mp�V�tX�b�K�ͻ���/�mjh��o��2,;W�́�x�I�gƭ،90s��Q�NO�� �HP�1�'�gK�,-���"�z2��ט�m���q
Z�(Ez�QNe�sD���=Ն;�,c�P�_"bpy�Ik<Ɖt�,_��B����-�q��� ��ܐ.�_����h�"{��g�G�j����y����;!X�;����C
H��*g�r-��;2I;���d�T��X��%\�fT����ǚRs��m��-�/,���;U��U�����v-{���=�nO	9���k�U�땐������(�ndz�Ii���P_�
�k��a��6d>*;��	ڻ�{�V���q��S���[�B�O�l]yW��MRZ�$.��%������qj"�̙��.��9*����H*�:�H��fc�Ep��R��o���Q#"h��tL��\�V�	���Of������}=Q]��L���H��|�<l�%��C�6h�%`t4�5{�)�D�$�C���W2M���F���D���p����VI4e@� ���G"�����S�]}��ۅ��M�b�F�)�Ktݸ�����Mq9%qc+���9����sf�
Ѷ����b�!�t�Oe�
�^7u|�P����^g-jъ(B�	q
7�~���?V\x]�oF�og&�w5O��o�,3�۪lLT���õ��Nn�U`z�\T����d��S���\��k��+](PX����x%2��_�垘�2g@�E����g��Hj��t�M��M�6�FN�
�c^���ٲ���c���-J�D�_�.+�LQl�O��d�`u����;��֦U�b�h�+�}O�]�����ډõ!�bh�	�����y2/�$}-4���-�����}��|�~\��/m�ڈϱ� ^�$2�͔�5#��\�P\�kX����txM�)ƕOl�)^�V9f+�ts�j���˗##��x���?g�B�P|�Cv
޶�q�?/�&�����yt�g"�g']�OIi�W�vd��/����n����)�0���P#X2?�Bdž��)�5�sb�b{t�c�zc�7�U�A�Ԓ1)!��(����S���,�4���H�C�$np?$�=��i[��~�׉�����YX���A#�_0�����j�%#J��8_���f.�����-Ί^�.��'
�du�����x,=r�#�e������*AZ��݅�[S*k����촀��HN�T��%�E����v�A���c�R�Y�6��d�̻�Yܲ��������G&�c�<��o���&�l�wu��?LHZ���n���M)D/�U�qֲ;���;�
�쏌���g������)��ݢ�������yw|^~d�l�&ɾ@��S
�lև�΍r�S�Z�.b~��
�~��ey�ye���f�i���S��ԑDT�����M���O%�,%d,�L�=�B��-��1�;,��{�}�,Ҝ�=��s��n��=ǺOI;�$���p���'i&k��7���G.�����t�0�r��
'��b\9��r���
lgjO��-r��l�c���7icm+�!�D�]���a1=Ѥ5q��l��l��գ�%���ґ�j�	G�dT
�v/��	��#����N޾�^�x���B�:��W�ڼɏ��E�vR4q�U=zjUdARK�]����hl!�W���uB��
m(c��'
He��t��o{R�}$oEb��?����ˬ�A�y�f���C/Ο�{�ֳu7z䒏���XG�v�����-W>���_~�kϣ��񏈔�v�rți�&!�*)��rI���b@�쪖%M5Нs�!N���=�3h�%`�U3����yV|���p��k,6��խ�]+{���EΗ\��^����yn۔.*Qz�MO��տ��D���'�T��S\�0�WU'5���:�#�h΅A%�EZ�ʜ5b�Ҝ�6M.�^q���Ӷ�X��(��1���]l���(4��A���Ң�ۋ���VXkv)^ۚ�n6�e�Q�~�q`�a4E������l�Z{!����e�ٹ�R��fm��wš|���N�wda{%Q�	c�y��g��R�����A9z�X�BN�|5�ّ��O��49_w��9������.���f�o��(�D��\EPl��~�P��ˢA�'��Ǐm���� |��)�]ˍ��1��<|`){��y?�J;|Ɠ�=���J7��M��MA���~we����H��b^;+��4���T��1纲ѳ�'ZNWR�f�Z�x��
R���}�����E�ڢu^���}�
����=ּ3�CA�lC\�'EΩ)�.�b.-��GB���؄��HA|ZE�y�˭�y�H��:��$��'�X��v�3&�y�VQJ/����I^����	�'4Z�Y[}>�ēn�����ѭ�ţv�To�w(�kxǂ� ��Կ�^gWzۼ�r�1k
}Pc�.f�ŝ��L@�^�-��7�pj�o����rͤ�DⶴppKt��r��U}�$gmJt�AP���v���h*ٲ�͛-���Z�v&�dH�j|4�P�9���?]]zw�� �w���L�����z� z�����Щ!�.+',z�b8����*߮$����jΆ,��7�bC���o�/�]�E�h+��#PN��:
��<�D�S_S4;��LG������V_�!G��8��ʜ%���gq]�wX���\z]�B�W���λ�z��TS�v��l�������V�+#��ᡜ��������L ��W����ϛ=�u5�f�]�Y:�5tgq8hĢ)����+��<5d��P�:9�?tun$�{`�Y���?!�&]ܳ��p�a���R�<�ұ�nk}�DpzawY��$�z�:�ߓ�Hz�����dY�Gj�a�r�>��q͸E@��G�4�����+������5|��"�E@������8�x�y>�XqI��3%�4&���Ueѣx�ޜ+�V[
W�?�$�U����7���H���2�ܘ�m
�&�{}�3�}�������`RU��=}ii*��"Q:��, !8��6�ܤP�'�T�s���rvw���MDKOx���inM�'\W��	mF���f�P��O�V�
	��\����`���%~�J�JvCm�8�kv9�E��g�fv�G١�w2�0�$�-�\��I�MD7�Oۺ��rU��:Qڃ�1<;�	-���:�z�^%�q��B�ZK�QD���{җ�x�oe%�*p�7|�-t<^�xأ�bT��*n��}�ۙo��˞�(��ﴲ����\���^(�Zn��3�f��Z�,2��:����"��n�@{��8,�-�^��wQ���R����E~����'>�@^U�>���W5��%3#X�5�"߶縵�mw���#,�,�C�8閅�W��O=Ļ��H�7��=ζ��:+�
ᓞ(N�<��n"];٬�D


+�M}�Y`��*L��vl �q����Zf���u&��-��A8�M���������6u
t2i{�5���k���
	�v@����Jgv;1ph�Pu�2[�p��C��Um��
�^H��n�|:�}���Jt�8��2E����l=�U-�ӭ}����0��s�	.>Q����x��T��a7$�m�}�;aÿ�mk.�4���7���Kt݋�B�{����Z=���+�I�����w��oN�.��R�"k�O5h��a��C�K�0O���P�$�/�{q�u[��_f�_".�w�y$�8)"oX�;3�4Z'��G&���o��5��gȬ	[�푂p�x�$~VlYy�?A:�O0O.?Iv�{��~l�z]%��x��դ�1�G2��
ͯ�4`1w����^��"B�~��<׎k�h�:���&�9D�ɗ��@	�I���4<�l�C"�`��6���7Ћ�콀{�=V�+��
`��T�U0딎��s*Oʏ�tj���y�2�Ϡ��|*(Tw�l�d��b�nQ/��7Z[�i}�hím^��W�L�m�?�,/okkX�Ft�����+�-��{V���X7�NFd���39�ȑ�V��{\��o��o���7*:�^�.f��=g���
;:uP[�u�+�Z��P��ϸ�u~({��������R���ʑг%�?�L��'m�O#��8�x
��$N>�|�ߖ^��y~r���׮ۙ|�,y-�n��Q�ߖB�N�"n���%;Ts��B֭f� =3�EXX�7�W
��s	��i*(*+"AC.��ڥ�+�:����WR^m�SQM��z+�.� �sS��!�F]��bZxL�}N��N�
�$��pgv��E��mA~D���Ph#�.�0k���㲧�o�n��?��֭l���/Ox��$]��L�`.\(�P�+:rj{�x}cO���#V ��̥)�:��f���(ý�Q�� �ǀ�*��[�յ����~�-`h��1):����ҙ���n@-��݁�'>c(�����>,����U0�.Q����/��sU*�k�ޑR1&&;{�=<�	Q���dÅR%����R�	�����F@"��z��EG1�M�}<*:Q�5	��zW���՟���D��Kj~�_������[#������Z���/��9XMF��ۇ{��7�ș���ک�����+�h����sDf!!/���y��{ܸ��=��g0<���)�8�4�T�Mʦzj�^K"��$L�+�܏�!^��\*��d%\��%��N��s���$���Z��:˼��&�,�t'U�}�~�#���
�\���ɝ��/!-�mY�V�B-Ei8ɷ9���2<��S~N	K۩�p�'�Â���*�֜�wcWF�c���K?�ZAJ�ƺ�p7Է��b �i����KL�`]��gɎp$l)�q�����ҍV�B�C�*c�K�irz!�3�ڇ���|0��F��
`�Z�B�Q^��z}"!թM���r"�[�R���M?����� �7���	�dLdH+X��Tp�����;��߻W����3��k>j��W]�[��т�QT~�79�E�<�r���jO>�3�Sѧ�B0�n+�\q�\Xh�;ed���I�x��6�>� ��XC���Vr�pN�F��K�|99QP�ba-�~
$�GnX��?:a.pf.!®C�f��߄Z$����
���ݞ\؉j����rv�b�1��F4
%B �B
k"�r�,$��$��\�7K��5�s��n_���+����v��� ��P$�ϩ3�/��x�>J��aw/��T�i�X�F�N��)@��ԅA����K$r>�G�nc	Q�R]
��]e\C w^�ʺ�𑞯W6ު}LB|��ұ���61�R
��pn=��b�>@k��D�R��ƌB�<d�D�OK���gzJ�2�mo��zMnE�}EKG�W�䷔H�C�	i���3��<I>�MQ����n�h��5�0�qb9jC_�~P�o��a��ʀ�1�>bש����i�v���63u_��;fj�/1'y�9�D8�a� ��n+.Z��fq��>�Z���T��Οά�s6����
���w�V�@)������w1����`�h�	�|Zw������U��i�a�{�]�"��5�X� �M��DXfl|6�b��3��Z=c�d�dž/��bWO�����g�L �Á^�~Їo�;Lx��0e�_�Z��,���Cõݷ%�"����({���>��9�6?���������C��`/���}�G�(?���Zi�	�6�m��	v{L��3�Z�[a��x���'�96!��1�2�'�p���ͥ�[�˔�)�)�L@ƙV~+r���2��ʑkk��9�Z��	0NG����2�5r�aQJ�#�+�Z�,�O���h�O
�:��X=`�O��0���ߋ��W<�N�;��{[�����e0�^�G���ݬ�-{:�&ܖ�V�O=t]����4ƏKF}1Q�WP�y�@O�~k��[�+��c��D�����@��k,�UB�#ű&�rC��e�,�/at[XOd�Ԛ{-�@�a�i` Q�/�
��B�X�I�HU�,}�Ȥ]�Oy�,�����tGd���.@�뾄���}�ۀ���9S�U�W�!O��ҕ��`h��?�/�=���
 �o�"���:8��A6VK�#��X�����Iq�q�K����y,Ѹ�:^PAu~���[��5���<�`d��l2u���v
6�5b��ǭ���K�v����o�����
�o��
Iѐ�8��0���M����	S��N����&Q�%�����x["��:�v�EbJړ�0��K"�`�G^���!�ܾ�3#G����WT�b�Aý'���4I��Io��5�K@�d)ƻ�H9eW�`��p�[��':��q�\}���4=�@D7�Z���w�Y5����06���Ә��В� �*)����z�G�S<.F9"��Ca�!z����[�~�P>��ݴc��ZB��b�4l’ٟ��s���ԳܻY���j(J��՜�:�qZo%9" ����]c,:�Zr�PA<�@p�/�"����
��g�]�[u�o�W�(�AǸ3aI�L/��)^j��_��s��;�_"����K�Y�		mĄ�"�oj��=1H��f�Τ;F ��
U\V>��{��9Yc6J�?x�̀W�0M-��7�ؙ���HrV�2
��I��<�����(�����
5uywjBt����A���֏o��\e3Y��L\�ʺkl#s�s���˯�G�b�/k���BZ0��r�D�h�D�q9�W���z�C�8 @���C�4������.7��U�{_�\���_}#!|z�(12�O������d�@�C?�x7�N.?y�jvGC��Ҍ��"�ʚY�lC�`���2�'%��b[iܫ6���hLF�
�HO]������
�M���"��U��1�P��
[���9���������X��
�|U��B���� S~z|.�4���TP��{.��b9�p�y�-�~^z��
�\��@J��X`n�bDWpk9_c,:�2�Ya��FμҦ׭b�1���DLc�a�u"ҝT�T�7+ov�z�Ӏƣ<�n�siDw١/�ţ�����3mW.�{2+ا���t�b��J���c�"��9����ʓ�����8�lɭ@��Ѥ̤%�>i�����O��������~��}$��f}e���]�Է��9��9y2�6WL���u�SMv����q��9t�)iG׉��0���6��G	-0I�#�u��1��}ŭ[c���z���6WŁ!-pi?K����8�'`�PCrr������p\���B;�k�i��~8�߯I��{'�D����ʪ�J�"am@!�B��S҂��� �?{���łk}�Mq�W���W�,/���R+O��C�[��Yw3|c����k=}Q����c;Y�4���������ed6n���گlc`��,�ɩߤ@7iM��=���Gs��4g��%�rG���p�H�C5p�#��S/ڝ*���	ϓ]6��}�N�x����������Er�P?Sr��b���O�{Q��p���h*L���b���YS�n�
/�BZ�;}�m~9a�4����-�h�[�����͎ϭ�J$�1��N�&�|'�c�䬥/ʺ��&᧥�,��/�94�
�g��)^D��/�P"�܈Edӽ&S#��pK���D��D��
�Ț���M�9B��4G��e@�f�~޻;a~�WOk
�CL�� T��|�;��v�)␳aH������z�=lyN��S^���xG��0�f��x!e�Ƹ.�9����\(
�(noAiO�@ut:)�S�P�U6�&*��B�v���pF~�[����@���]���J��a0��dT�x͊Z�С���q0.�W2v���1hd�-CZ�V�A@�G�ñ|g;��=E�4�'K<�@��|��4^�q	|�\���V���1p�%[�#S���#�F����#��-�C�I����̥�+\),�Wyy�:#��s�Q�����P^<���E�/�P����Ny����ߞ�?)��e��S��b:	jw�na����\�T�]n>,��Jz���F "穼�ƹ0-���h�����q�(B?���Z{)���6{�o���ݔ��2WC��tˋ��g�5�T8�����,+O�e0HU�ܺ�vRrA�D�
��6���ř��!��D)n:��nc	�a��=2�ݫ��ws9�O�Y�V@^��XI�{+���#��b�����W��y+@%
��0.�{�'~{d�z�r��/�ێl����L��*b��d�_����Ec�f����a�"�sص�-	��v�$�95�]�&,�̋�P��L�Y��$8�>���=��[��w�<*	C~�$\���Y�Y7��W$Y���^��q�F%E����A�W�Q�7�{����EH2�C�)C��u͔��.w9A�Yȓ�K������c������d
�Ị�<����w��TPN�wb���ԡ���"~H��6�6�_�0wnDKAAN���e9������iFVg�?����#���|�����ּ^2�|�Ś{�A&�X�|��[QhY�^���oG|���#W*��fe`-�ޣ�\�6�i��˺�.tu/^��y���kA�������/�˙��5��n�nמz�]1���Z[ϝomV95˅_�6�	e^�^��!M���M���H�чVx]m$��Տ�KJM�4F-��oQ�C����2����3q/�T�]�)�<6.jxo�/|CA^�[cB�2��|A	�{o�1��K{�2A`O��F8��;��' ��9ƀ@bR�]ʷ�q,V�o�<*�l�^�ܫ�QcT��_�5?$�U�0_9׊ f��)��C��ץ��)���י�P�["q,6��
���<sZ�mNv.
���.'��
Ԝ����}9��P̂�$
���h?���˃2=��+.�#G=wO��G>�#�a���cd$�\�ـ����ݻ���g�y�Z�g��v�b���Էaz8�{ț}Bh�A�{mD�����.��'*K��Oik;��D �#�����/h����;�@��±
!��+�ګ�-�c�kn.���v�$?:���ܗ���b�{��az�K���ޣd�GkyVֶ����Z��ͥ:��'Z�sg�.�O\/+�i�.��5j�>(��=��>��v
��w=7\�4���߈y�~)��qNKs�s~�9<��k
��{d����o�Þ;���Z荄��A�R�4�vríḾ�Ѳ�ʀ���&�_>�p<a\&�R�_q���o
@X"P]TU�0y��v�v�w��t�]�U՗�i��<C���i�x=c1v79�(f�
�M�k�ڄ:�'ڪ
�I���`|y�9D��5�n��U:�C+/>9U�F(#eI�|�K!����l0��36��n�LG�e*6Ne
/ˌ�Ԏ�Ūjj՚�w����e��7r|т���֔������讞��
�A�Z�S�Cr
֔B�I��nt���~�-�#Z�V����v��L��Br��"9ŗ5���9��8V��x�h�_d^�:�|xmW(��~��
�M�y�+�)#%ʂ��u�����~ޯ���щ�*���K��X����<���g��7|`����z��H0���ikY�=2�����n
_��u�X��GWVҹ����Y]/K<J�Tdn���Y���JM6@��rݍ��N�bj���D8�| ��'�+^�j��t}���΁�bFAGĊ���̃��/��c�D�;'f�{s�)y��'�	�K17���E��m�蘷Ҕ�k�<#���ꨏS�I��V�:�	�e�8Z�(t i��@>�8[���4XL��{��J.��.
5|E��^]sҝc�C~���L@�!=�I�uz�m�ʐ^��IU:���d���݌a?a2h/���i�y�;��nQ����o �(�����&�=X;-�?�vkC�)���fm9��ҟE��f^��-MזJ��=�4o,q�˒�i^�X\lX޳�ۓ����{-:�������V{��??�&��*_i��]�Ţ@����T~�9{��U�p��M��Xא�j���S雩W::��@V�Vپ��=-��}_e���y{�Ď�^�g�if�h�j�r�Ԯ���0(��w90���{�T�,OT�<~
����>ϷXVX���8��^tΪ���/�����y
�F&��$ZL����ȏ!D����Hn˃8�m�����L����:�d�J'�!c\?�<ƶ}���@}���������݁
"'�||�2�_}��W	3:����}6)X�.�邈�I���e�mś�[�:ޝ��r�m��L#hd ��c^o����;�6��a�!m����L�S���
>�n��N-���j'�9BP�B��"7�%"���J�<��Z���)�
}�B	�[S�����gԓd%���7
�O�M�mf�Z�dQ?��8k����
��8V��jW��{z�
�5�zՄ���ff2!�]�J�7�����3��Cƅ2P����,�Mw��ǹ���*)��5H�����% s�9ҏt�I�TH��'�~�ic��K�"�~X��=~KH�^�!O�q&�
�"�^���S9c*l`t��12�2�Q�d�@���Z1�N���[
:����H\��t܆���Ce�S�S�R|D��XECyd�hp�9@<(�+�����$̙4���;.9댋)5��d�e�s׷z$���U��f����{��<&�v�$���b�)K��W��T�����R�8Y�j���'��?K^GW��{�o%8���dw������J�g�M�z	3.��7S�[�^�n�?�ԣ��l���C9�Xd��C?��5{/�����{/���{� �2D{D
u�wo����̧���
�Cj�c���T�#Ț����y+L��@w1�����c�@�]��?�|���K��9��d�X�����e,r���755���뼼�ِ���\\5A���	�7�	�[��B�~����b��s�^w�E)`sOrя)eަlCZ�@Kg���ߝ��z��/mi�M)�|D�R�ѿ��=���/��|��pzW�PC<��x�u=(9�m8m؊�-LW��.n:�Z}w杠6�
w�$"��O5��t�5����Nց�;&̢� '|^0���R�.�T(|$p��Ȳ���!��M:�
toTĦK���MH'������O��|2�6N�5�k 1J-�1�YYs��ViU�8o��fYp�s�*�l	�/�Evs2J��/�?|��Ÿ�F�b-�VAcF��:���l�l��{类�.K�M(6MYW��,3��w���Ec©Q���<
���CT?�l�7UZ�����*��{E��ipCT�4�c)f�(1/�Z,�O��,��T�eE��C���kؖ��K�,�KH:�&��#H���D5mrH���?3�Q�F"���D�Љ���6��ŷP�>���	!�Uq�u�.��f�c�^�t��X�\ZZ�J��9V]�бو+|�f��q�,��ҏ��A�_/儘�(#� :�Γ��k�Q�n��~C�
����<�ϳM�f��ɥ�$<;���e����ڤ1%��i���EUg�q*;�R��1=X��hW`�VU�r7���.Y"�q��y�W�(�M��&��q��ψ��b�)�c�����Anj�I�W4y��tҝ�1���Q�܃��j�	6���W!h�d77�"N���˴��:�C�M\t��i1r��[?Ѓo�{�TEz�r�	�6��k?Z���Q[���7�/�����V�{.�=ծ�"�+����9=� K�Le,`S��w�9oW͡ɓ�l��
�_��G�׆aR�0��e����_ǁu���5��X2��k�>���[�:��k�ї/7:�YÒ���+W.1Ad�e;�f��4�����Y.����H:��^����θ`"<�H�W��G!�u�M�,�Z@LT7�cC����ގ���
��>�7%1��$E5��:D�kP����2r�@����5�����ݕ+�Z����f}��G�
7���R=�4GOb��T˷�
��ώ�#_�w�Taҳ�j���t��[����H�	�-ys���G�d�h�Au.Z�54N^�����R�ӲG�2Qё��\I����>�]zP����=�>';��r���?�8D�x[k5j�4I�T�U	�W�0�*����hڬ�Fg��LRg�X,���cA�!����*��}%��s�Y|�{�F����+���u]�$�_oI�r+sź�v8��s����R���?,%_��'N,�8+ ���kħ�F�gd/$[�5�'��Z�ǡ)���A�{P���
{�2d��fܥ�C(���QU�g1�r�\;�H��b��b�τ�����e+lI�"�"�Ӝ��
�.�?��>ik����V2Y�r.��6�ы�<�OF}K��lc�+$�#˧{ɘ
6S�9Ґu����d���`���*�ٕX���5�=��e���ou7~�4�-�x��f��&�|ۼc���;¼�,�Z�_ݥ�&k㯩���\&��cwF��c렮7��ؔ���WK��]�}Q�Y�:��HA=r/KuWT�7���Voi�������;�Ս��+�ݖO?e������m�+�9W���*�3���M��u=��-�ZR)����Q�v!E�Qa�(9�P+Bv�{@�E5�*q�]?�����vS���!W㐸�7g!�N���£Ir��WO���ԇdmb���W�B���M�!��*I��>t�3<Z��o��30X������ܧ�?�y��I=�5`ռ�4�j�M,��Cy�=�o݉�TpGX��Fo���~U�o���+ZmG��z-�V-���;z�i���ʁ@�5~c8{���n�PL�T�{���+�<�T4��B��-ܾ[�@A��d/y@e��A�*m�hɛ��03�N>�9� �3��D��˓���ʬ�������y�*{+�I�fD$5w����[E�G�e��L�e�ur�H����1�����T�~ΧtWyw�$vsj�f2(�d���F�g]kSz!~�']:4`�lyi1�Yʸ��7y��T��)IJ��u�� ����^��ճ�ķ�'^D��v������IwN{+$>�|��ؿ�z�Fd����a�����O��bDL�{̬��o���<5|�ʐ��-DI��ߚk���y�BoW�+�o���^��'^N?�� =8\|7rp0�~Iq��X��������3�
X���dyz��l���0�E�p)��K�d��BĔ,�D�K��Ξk���m���?^$�fRd9M"Q��%��ƨѣf�H��ç�]�9_R�U��Aq�}<����=�^��F-ڋ�V���욽Vq�*ĝ�/s�r��������u!`D����[I�w�=)	Ek�v���kȿgou�S�,`����*糣:�g<�N����Ͼ${֩ڗm��ߕ�˻:7m�L̝VP�	���Zo�x��\�b'C��L}zq!=Ew�
h8���t��[�F3Xc���Xru�.�$K|�3�b��8���r�ҋ���?Mzbި�A�ԧ?�k+Q��=�JZ;T�gr��]M{C�}BK��&0��F~~�Y��:�P]�\��
B���T�*&��,F�u�U�y���`H��n�
n��
F��|�K�ln��x��\.���H|���Im�,�i]�&�+C��9�DZ���7�+�g����Ds��>���������mb�|{�{q�Ouye�ڬ(+7��oʈz0'�#2�VQ���ǗM�E��}�
��LK�4��~�I�:�ֲnj5'J�e9wse>{hP��g���,��f!�k���土^��Ɔ��l|�w�u|Ñ߬�<e��͛�ԝ|wZ@O�iP��	�l�ns��S�֔���L��|���Br��%I�Р�u֡;E��R,���Mj7���l}�-[���`�p���ɮ�0ف.u��I"uCC6�L���N��-�J�b�;B�!� ��~)����4dn�dNj7s�'�E	o�9J�	n0���p�3�;����̝�07*]�R݇�Ɖ�C�� ܙ<?��4���?�{t�q����������b�X��ݰ���e��m�7��	�	w�v�C��l�W�j�m'�|[d��>���D�Q�x3Ck�p)���e���C>��Ԟ$�2f=����:H�h5ڢ��hF��L�,@��:�����E��~7��BV?Q#���3QA�.јڬ��xW�uj�T�a7`N�"�*�kKbY��JD�:
��,T����3sq�%̓!L�ooP�M�Z~8_BU�h�2|��H@�����m�Ej]<��m��	wFɇ�|�![��$��Q��#�z����T�֞N��6�		�讎�HNb!b'r�V���!R�n�&>w���w�������)�rR`�><\��|�a� 	��+��Q۹o���=b$Jh��ܒ"A丄�uu?�\��hG!�7�˽&K>��p50�E��*���~#>ĤR�>p8%�q��{��}�#��p����q�Ϳ�fOG[pVa��rN�v�
@`H�r�r��UHk�έ|z��g,t��Q����ͭ�Nb��)��Y�0G�}ws=�?1�]�Ο.:����X��ӻ$��V�ލځsw�/��@�@���{W,}v✥"Ըz����EIIK�U��ŏIe�P�`��fq�4ꒀ<Et�\|4:C(zm�;n	�ih07��1(�XX�b>�y]%]� �-"Փ9�s��zRi� 
٪Ӎ럤1�!�Sj�3
��^��-S`Y9����%̥ʒ�>�2�.�-}�pѷ��7��^�-R��2�U�[��KV�^����j��]�N牅�a��"}���-��|����� k�2a�^����!b)-D��*5�7ho�Ѡ��J���?\ζn<�o��Q���0^�06�%g�>)�f��U�*7���U��'��M$+���6_7	Ԥ��Y�|j���ip��UzǵA�������[���.`�{f�"[ꨃ����H17�0��u eeɲH�k.���a0<�bGQ�Ji�%��_�+!���}W�jۑu(Gkf��EsF�/�r�yy�#�X5�F��H�Ʈ5��Y�e��8<�1g휨�}fP�}�,-�^_�J��Ϸ&}$��6�vƸ����e���o�0��?�
{�d–�"�+�=����*��c�y��xy�Z%�=vS#C��9
p"8*�^Zx��7S�͊;���s���_"�̯i��#'�+*�q2I��yl%��E����^[Ɖ��7�8A�-�4�㋲�.��A�uF�EOZ�a�;R3G�F����~#�ž�T�]\{jg�W�X�~�<�pDm�E�ݭ���Q��G�C���=p�$sC�T"���Y�uG?��1zˠx��i�v�5:�h�`��亟#�*�����,����f�#>3e�Tu��u+(�l�:��*o�w����Q���ʑ��GwE��8���w����U��՛�n�K�-� �͎K�M��r�9�]�ay��+��2���p+ҹ����x��?�_Q{��(Ƕ;
�-!��1FR9n�f��!������?n��
 cD$=K��n,P�Yg��xq�ͩ�'C�� 
�}�G�%3Cg�Q�Ӝc$�n�%lcf�Uˌ�N�^�ޤ��M�-�'KV�Ϛ�9�y��e�z�bQ��ȵ��ƏxT�R�Q���5~
^��u9g��3�f �{��&#T��u�H�8%���2t�):�N#�s�??%��?05����љ�T*�R��g�)Sאy"҇SAܻ�錪�)q���R�K=W�H���=��.(<���>L}�,�7�汫�Ǝ��P��� s�+�fI��X\h���;s�b)�.V��Ħ,��|pU����YY�
��}�0ӐT�z��q�M�eRp���-NS\ �.�]���H�d�v�i�dK9}�dqz���K�5�nX e���5bF���6�ʍm�C��@;�?�{R,l�=���p�e��(��FM-��c�<�:G�Нn��喊����&R�aRV��z*/�ҴT�#�H6����v���#�I�(����V!QҠ��G���߄�+x�m2k3����zU�35հ����2o�~Gq��r�v �����*�
��[Ւ�C�[~:�m&��$�4ij��B8�4|���؍pH��r���+ƺQ)��؂�I�
�<Dmh��	l��H�7Iy�C��j�����AG�@���^�rUe5��ôc�G#[!C�"J�Tܻr7+LUʻ��|%�#N�M�6�t?&���B��D�o��;�<>��g�H�S��ba-ui-��l����/о�0�\M�}K�?�FdD��{=�{<ԍ���^Ѡ��;��|x�݋	��]94j���Fa��f�|�l\�Q�!�r5��3L�c6�?a�a���5�c��G|�-����ls^���8�%�6u�O��9�Q��ǟ��nXIx����4paܽf�ζ�K~�?+2yIb)��;�(��J���Ε�FH�����+�*1&"ɰ��ɍ���P�a�%'o�f?���cO�O�K����8�Vz��M��é�cg��֧�6Y_}�	�o��m��+zgT|�VQ?'����"�x��R�;gO^�L��8;��q���a��ߘl�Lb�L\�Ww�>k���~[gwk��:��>2}Z�B�{��W
,�w�&�S� k��a@�Ը�?�6>3����n=)?{�2���������H2,)q��H`��ޕ�3jkTĞB���?��Qm$%�)�����}bU�q_�c�qY	-����_�1Ӂ�)j�?���E=7>��-9�6�l���.�� s�x"�h��c���[��y��7�?�N
-������ T��K�����7�9�|�Ѱxz�j�gmh�I�n�H�o�g)�v���~����
C�;L�Jq�u��p��mW�<���˗=l+(�lCP���m-�[I�H�HK(��|LQk�g�ª?C�EBx��}QN�"��;��FNU��cE�\k5E�G
н�^Jv�<�+��Dk���r�K�C�N
�w¹*�{�����Ϛ�>��j��h��É�W~{�|�k�ÿ��$a�=�����g�1�iz���f҆M��m�� ���z`��0X�*��+G��n�� ?J�>�[St�d�>)�`zdM���+�9���,Z', į>cu}n��mĐ�N�=�z8$Rգ�3�c��1ME��K�Y�$����������
5�
�]Y<z�(�����:�Ob�N��A�E�5إ,��/��-���D�ʰ���sU�2
b�C=���(�F�sU�;ˏ(.��&��@÷?K�*ؕ�1���E<�
�|g�<�%u"
���kC�D%ʫ��p�zE�]�h?�*d�Pg�\�R
D�ć�U�$F��&�i�橇�Z>^=xܠ�KHUNy����xU���q��Y��d*�gg�mnL�%��r䰼!�@��Z"��["(�͘pf��k��"v���$�ρ9&L�I�Q����V�:���WIZ�k�7��TT�!�X�52Q���I��e(�Z���P��
b��}LL�ϰ�:�.'���T/�k�S-�>���l��T��5�}T�r��#�e�(��S�G��:�'Wm�P 8��oV�V����7S*��6⋫��-���7k�I�5P|-�w����S�X�����-g���`(�T��zI(j�aZ�c^�w.��8��g-�fV���]hl�3.yO�u�2&������8EAD|L|Z�3�ɡ���2�]�ۑ�5�KqO�[�شܵ,Մ>�k*���j��sέ�	*��Ѯ|\�A[
��T����O��=5�@'����z��=]Z(CGE��fM��8�G�W��P+q�NE��m�F06�8Z:b7���-�Ь��%�{��Ch����1��^t��m,R��\��H�T�Z#x�㮽���`��Y�'���}?����}��iou8�K��P1�����㥙夆C����������Z�"�8������@x�
µ-�``�Pj�}6Ll�R����U\�6[��CZ�����N�"��*Y���=3C�Ⱦ3���ڣ��x~���,ce�G��;�,5�R>U�w�6Լ�SAR7|aq��u��^�ځ;V�`ۼ<��V�����V�HɪE-�3��t9Ʌh��G�;��~V�n<r-˥������V��?�%�asR�1��>:����{�~۔x�9:�7N�+m1����f75dGr��z��ZFݬ(:��%�P�
9�G��a�xLI�rl2}���>M�n?��K�wE/��:T�@��Y_���a���^O�ME^3�	����O��\��������s

_�^��9$-�Q���5��y�'��m��s���с
�c�v�V �I����߇�!?�I���$7�ܡ�\ód[�#���mH��܁���F��&8�$*����p��w,意�hiḩt�-,6�i0��I�^�,`�Ś7��{~�5Q�R<?OȊc%S���(��D<�Cɓά����*��r���W/�<5�IT���,�y�P�	��4�M^�V˿�׏��e?1�M��BO�P��<qBT}��6Z	|.<��3p�G�2q�Zoݹ�p|UNbUqk��w~m��9`�L�E�E@Ka}��!,��/��p���7���b�� ]��G�{�����O1�R1��
;č��A��&���u³F��?�m	��]��1���ϛ�Gg����돾��IY���ƃ�#J��j�aZ��z"L(�Bz~Fq���i�eU7m��4/��u?��@��H���	D�B��L�����0}*�X"��J�Z���
F��b��N�����@FP'H�fX�DIVTM7L�v\��(N�,/ʪnڮ�i^�m?��~����(N�,/ʪnڮaBRic�0N�n�q^��~?��yd��=#?��j��ߴl�|�`�p���B�XB�+��J�Z���
F��b��N���q ���$
����")�Pit���py|�P$�Her�R��huz��d�Xmv����z@��H���	D�B�Y��`��.�/���L�P���No0�����p����?_ �%R�\�T�5Z�!A1� )�a9��d�Xmv���x}~�	e\H��u�Ӳ]n��)�&�q!=?�8Q��4ˋ�����q��uۏ�s���I���(Ɋ��iَ�A�I��EY�M��8�˺��yݟ� #(�$E3,��$+���e;��a'i�eU7m��/!��m)hrYzb��3�3�S�H`]A�Mx1A���>]���5�j��^F�i�T\?8E|ӕ��_�e��oH{U��Ġ��T�&L�-3�QW�n��Ԥu����M������*
ۥ����D��+�%�j;�b�ͮ�' Y�>
(؟�4��w�]|���/���JW#Ȥ�Zca7�����B'8:{�} ��N�$�8�o��Q|W���� �mOnL�)��Q^!W��CM8�}:N�hۑc&4ٝq�o���_��@�xމ�ɐ��5����
Q�+�t�*\��]�w	�C!�W��^"�yw��n������e�/��R�=�`���*��5b�J����z�MwZ���N	h��PQ�7޴���-�␜�E��g�����C�29��*X����YK�Uk�&D���\�4����]�aw�-�5�&_kD�@�;���I1f�ͫ�{�C�[ŏY}E��xd�S�9ɇ��@�~��$�`�K��P����K}���=�wv��ZR
?P��h{�%���Zdϙ�'�bi��ys-KhO�ü���.�� [4/%0y�]�|�(��珫D���Bˀ(�D��뺹�"�c��fw��8��Ng�P�m���zd�o*Ģj6h�n�i[�}�iY
L�ٱ�E�f�9��eF�8�d�ǣ��O�k�@�p����#B\���'Mo�=�)�
uĐE�B>:��6Qlo�����6��]�Z* �)�
˸k�ֿ����� �/�d?6�
Q���7D��x����'ey:��K��CaM�۽�T&�uf��T����x_�����W�D�){5�PJ7�A�����2��wW�q��o-C��g*�����te�
���j^"�~�4�{;fo-�W�?��*w�W�1�{���|���k�.Q�Z"�
X�-��J��/~������۵�dp��;�<W����4�M�S��/��+�En���ش�0�;��=��N���{�3����!�Q)9]=$}���޵���2����K��Pg(۫PY�)k�揚�f�,�}�eK��fh��#�*�3W��A+�����xv��fe��+�+�,��fTr�~j��)	�[Tn����*��4p��]���W1dz�%�f��5*y�����W	��	@Y�9~����Ë���Ʉ�T5�X�ٳi_�q# �;�����K(�56�9L�FQ�/�R���L��EE&Rz��O�EK��-�Q}Y�kv���
������qsOLc�G�2�h����n⪻� :`�֥��$����ǘ7UѬr���_J�Q!wJ������:6���m�纏h�%��b��4����	�T�M��_�3\j�z��Fs1g�.�c�b��G�d?2RY`o��;�����2u��%�{��^r�)`+�v��۳������7�Fs=���CuC�{�C.�=Z8kV�Ye���`�Ԯ_Y�ꓣUu@�i��R|:��^�y��%�����}.ӀT4O���.]qq�Z-v.w�e��i��������o���:��f/1I|F�b���D�X����CE��?{���U�-Nx���0�w���6�~U�~}.x�����c��f�!�6�x�>�}�WAD<i��3��״)�>�|Qķ��~������X���C�����}���<A�>�������6cT���;k���#7.{7c��8�T����_���4��X��;B*bm���#"""*��RJ)EDDDD����̛?9��7���t3Zk�g�с�hz�������t&ޯw.���Y�N�ˋվ�gH@E���!�6����~b�rݴ���z��]DDDDDDDfffffffVUUUUUUU�i��{z�����6�Nd�PK`x1\3{��~�~%assets/fonts/fontawesome-webfont.woffnu�[���wOFF~�
��FFTM0k�G�GDEFL �OS/2l>`�2z@cmap�i�
�:gasp��glyf _yL����Mheadb�36��-hheab�$
�hmtxb��
�Ey�locae���\maxpl� ,namemD�㗋�posto`�u�����=���O<0�1h�x�c`d``�b	`b`d`d:$Y�<��x�c`f�d�������b��������ʢb��l��|6F�0#�F��nx�͒�J�q��gje�>�"�D���>�{�E�O >�����,"�u�^�[[[���j�os���_�M��%:0g80������B�.L�s�zðפ 1Y��lKWv�es�t��)Mk^�Zֵ֪�m���׉Θb�k̳�2����6���>'�Y�Җ����jukZۺ�g�m2� ����(�4�-iEk�Жv��}�X�B��Y`���`����c��9�Z�JV��5�e�Y߆6�G΂�`3�|6����[uI�p�n�-�����[pL��0�Lp�;��׸�%���8�o��>F8�	��G8�`�W�ί�����"�E^�_�=(K,F�K�+�y�b�����x���	�TՕ0��o�}{�uuuwUWի�n�njmz-��nv�E�EAAJ!*�(��hD�2c�%F�ʦ�Ebb6���$&�����7�߹�UUW7
��t�w���{�9���8�m�8b�I�	ڃ�����݌7�S�E�G�!�3�����j�㔐=w;�P�^I�A;RR�n��k��LS�.��)�o8G�([��)�9O,,�At�S�
��h
y�u�jZupPGx�N�o��n��{��ho2�A�D�-r��]��u��5��e��^��dM�X�8=���r5ͻ^Q\�~��2��V�0 �o�0kC� qA跍����G<�
�9���v�`�|N�X�W�I�:"�'�a��W޺O=}��k�#�"�7�e	��%Vs�~-�y$ŵ������X��w&'q��.n.�E��K�#��JD�ڝn봽7����=�|�w�L:Ӎ2vmrRv:=0P�@D�ۓ��V�Z7eO��d��7�HM�SY�|�[o��f'B��L}��Ʒҗ�V����^�+�{W�=���uҤ֦='j��,�|;�v�A���o=��0�q8"�I³��8���yZ�6Ǵo9��q<i3���k������1%�&��
���u���k�����{H}��@΁W�—^q�Է��4;gg7���N�y��/��
q���P���OЌL�4��q�,���ԇ�"�Sv�=jL�/U�jC�-w�o���ȍn���j�̮�{�j\��
��vE��k

���z�>p�n=�^=�ajID(����෠���qu��F;э�5֮�s7;QC7�U��[����׈���yZIۘ�ػ�*�!$	�dⵄ��Ŗ�-ˇ?��{��m������f6��po��~�mԽw��o���G6M��oz�a�--�m#]?]?V��k�z��ܥܵ�.�>�)�9NH%�&T/� ��_���I�Ax���O��B��]8(���.v��)�G=���H�P�S�U��P���>f�F�E�-G�G�s|���'?~z�I*���R�|��[`���-V�'ݙG�P3b�'\R��I̞#n�;W��ٟD�T��ѹb8�0�^s6,rȥ��i��������sm15kk��,}��q��Wȝ;�t�s��e�Yq�qC/���0�q��|>��
3������W�/�ը��s�F�"���s��I�oAHI� 8��C�„���w���~�@
����_�(�]h=������r�9���p!�;�H���-[If��w;%=�d��꯵���bmH)��k=o��\���h�E�i�7i:-!mn:`[�G�]���GE,�;��s�yH6�2�ƈs�՗:��I��@�^\�w���OV�õ������<�g?]�Y{?qK�g�H�[��X��&�td�n�[�,�Z�!H�6#�=nݳ����;O��W�U����G4]]�6�ٰp��7��[�aM�5P���B�]?����4�����P呂����7o\�!׺ߜ����ؤ������
��2>8�/p�2�h@�k~ھ��B~�a�[�r��=Pr8�S�e�sc�F�
ӗ�� �S�#P��|0z��'�z��S��)��8aFB�FE	��V�r�J��(E���fDp���U�\���'h4P�� 	�j��<t�$>d3}Cv�f���M�}Zlf���,.��p��j1��t�Y�j�2�lƗ,U������<:�z��t[�%�Y!1v��M�frc:_n�"��7z�w�v��m�
z�ui��dt���O��.3K��<y��d0��3l�Ll؞�Y�ĭ~�bg�#8H7��J�C*gY��_��YKi�n��0�AQ���PiMg-c�����)<�9ܹ��JH�X-��o��w��aX�;�����<z�̳�@)��*��rw��|u�`���l�c����߸m1�:���H2yΡ�ؕ�d��Yנ�E�+�G�Z��Q
k��P*��.�6�O����W�=���n���u��B��d�u��8�<�7�4~c�8�(bK]4�x�~�*x�=��¿���1T��2��Gߡ}S�}����J�X��ùP��@z${P�™��"h^���b�ؙJr����`R_3���@|8~� v:G�E8�c�i�]5&4�t��َS��צ��	#�������5���jQ ��0즰���N`��v�!
�Ry�S(v
]wB}J]�>u��=�.#Cjn(,THu��_Z���	6�q���hh�P�4#J�H�%jt�3�M�)�#��z���z���dt��1Dn~�9�/��ȋ������B��@NV?�p'r��f:�;�b�B�QHb�$h�3�CG|��#v2�y�d�m)�e��sv��w�~٬�fp�~��DG�	�r�0��^Xzˣ����Շ��c���l&
 \�`\�8HHa��IC?������6���:5�H;�l��ވ�4C����&�\�F����jԬ,�|MC�ݔ��/f8��ܮ2���	�.��ҍl
_/��A���kT�V�Νg�~T��΂<`2����Q�&;�X�A�W@��@g��j{��j,�	�s�uuE
����֟���:�A��
8,&���ռ
}|��b0��lFQ$px=��4ddm7��nru"�N:O�u^��x@񝂍��C�G����*�%F�>Tm��?��2.�o��p������ˮ�1�r�\T��١K+L�؜c���n��:8����q�y�N��\Dv�j���[��ܦDy/�*=H	�[0�l�8=���`�D��d&�<����qR�}~��|m?9[�Y
{�H�I��FP��H�p;@���Y�����[D��]j��}�*ÞhJԆ�'v^��6XD��L���V�a@XF�k�<������N����.���pV�e�u���p����+O�;����FG�\E��нb�kfy
z��s��

	X����k��M֊P����Y�_g��#�f��}{���Lh.tMV((���/���4u�X�4u�<�k%�Ņ��s=x�f�Ȍ�ݐ��P��(�.(��q\��+����i}��J�/[��O��k<Ew{W%��҂p�RJ�
˙��$["�H�6#] �F���C�֫C�_c����|=�F�2[�#�\��eyÃ�.�a��nơz�K�9řeN��Ԟe����Uտx��Uw�Ϋ�m>����76�t�O�d�٧�,崅v���2+�׷� TU[�NHN8�W|���fG{�ܘlT�_��Z1 ���8j
�`A����r��㼌��`h�*�b��
���#����ռ��B����j���0s$n�^�7��w�$�Gɡ;�N
.�A>3;M��y��?��zpͥ�Ι��4�aqp҃GF��w�|]��֯�!��ؾ�bv�q8�e�+�)��h.,U~�4]�h.�P4s��)��+k�q�D2�u����ϸu��E3V�⭯�ҟ�f�S��8��/D�]5���ޖ*xWG�j���}�l&k�lnçi��Pv'�6#�������(%��)>q��E��o6U+�6�ŋ�8ۢ��lޏ>���`����M���n'���'��zB-t�/ꬱ����3ik�3
���55��Z	1ao�|+�
őm��
��0$Yə�Oa��1ag�9��up�9Gת+����b��=H߀��Q1h�T��]�Ғ�Q���^��?������s9��ػ��� ��l��B�|4�TN���YBL�,�
g�#�5��A�㉐=!�7~=�/X]W��uw�ZW����避[��Ꞟ�W�d==B��m®�ҏ΋v�?$���
E#
�L�!7���ط��!����T��RR�I4��)���H#��l*�:#��H.���)����pӇ�
źR�M�B���=�ƅ��(ǂ�͵���˥�>A��,�_��2�%�5�p�yn�6/���Mb�t,�L֮���l+�9�Q�Gb]*�D;�
����{PZ!�*��U1���|���s��{�"�3�\�g�������Gχy��G:�-nQg7��`ԏ3�x���Ax�%ÏU���XMZ�&HX9�>o��s�Ga��
��'��!�lü��|�EW-��e�b��bxs��Y0��6E��>�)�V��H��߰}��V=��G~�Yk�h��/;��ۇ��0�{4.c��\h`�5���
F�A��5��Tg�[4��#���S�o3��yuy��=����<'j{�	h�N�k�6�	�@1c/��5-T:��`Y�X]��g~���i��l�p�!��e>�1x06�?�e�oA�s�b���̪fy�b3�@B�߂�Yq�?;�m)�h4s�k�P�����UfW��62��c�>8F�(�t*G�C	ym
s��r�p�?��I��C�Y:ϻ&͜9��9T�Y�-k���%�)�@�|FF�h�9*��(Rt���K��ǻ�T��XM-IP.%�C"���?�,+ˆ�=��	��>�t�����U�gQ���W��w#�Υ7݋���[��P�	��ޮ���'j7��7̗�9Z���I
�S����O4YkDE�͂�B~�`�Ig;�m�����u�֢z�Sg)����r��E܉�=m�K��9�ZD�]�4����~7߉R6Hۂ(��j��i!�BldpӜ^���zz拾�g�F:�qꢝk�Wl�/С��uX2�r��TsB�נ�����ͫڂ�t�}}ƶ��_5�	��k�4���	�A;oH�L�Ϲ�)�z�.�qu���A�z��yx�j�k5�F�-��@�lҙ��c�ڗ�җ\6�=�
���O]9�/�5ڔ�볝�\tO���C�T3�f(i
]�w�P��iQ���w�γ�=J�ߌv�Gޮy���[�[���,��Et&Q��o�c�Â��yb66k���MK|�֋$Y��z%���P��(���^�87D�rK��`��%�5�.�:��	�Ďx=m��n�ً���m]�Ю�&�2G�(-@�Q7xu3%@�p���~н��t���S�]���=�)AG�����A��Vg;��*=�$mz
�-|_E�Z�ˢk�<�5U5�fF�I�j����`�=H}���)0��~�F�,"���N�6�k��"��}�Ṓk���T�"$��mZPc�',�ϛ�tz���Յ��];+�j��+�NG�>K#�h-zp�6\��;y��b�~�9�.m�	�\�=�qrqü�=fS
6�u(����؍��3���#����0����
:�Nz{S�M�]"��`R������.C���r`-��U{낍�z�n�q��	t�x��
�ic+Ԛ:3Y��㳙N��*�a�V��P��
�`�1�Q�b���@fc^X�9�̼���ܶ����jtҜYӂ��hھ����3�	i�js��+\�8Tv��i|�Q<
v��߹c�8�1���-��t�������\1����6���G���I��n�J�:̇�h�X��G��r�+��<�O�|a��l�yxuco���7狿P�'�j{���G�w��s��ʥ���s�����
?��?kL5>4��Hj��v4���l���!���,��c�C�5�4{�ٱ�4d��R��~��p�*;9n����C%d��}�d�A4Q8�i��O�i	���T����gd��ul�U�S���A�q�$.j6U;�MǶ�ۏێ�ۏ���j�9J�D�vAF��b�m�LOI=`�j�f:��>Iǁ�J!�
�6T�xư�qn���̓��S9�ĀM|�!ґ8X)��h�ͅ��ͳ�(����,�ӌ���2����+l�D���3Qɕp�$`�Pt�[��� ���DV��2�op��o%x�Z)�����n�:p4�N)�F Նt�T7M�u`8��P*r
>�(��O^����tX�i(��M4!
t(�>h��cU��<�@��ܦç��$�M'���(��J�׳��Q�܃�<8�Vj��j7P�?Ͼ;�������_��!Q����.h|:B��)Ӓ��xܘs��_���d9��aN=�.WO.�\|�_O&t�k.�".D�p53�͓	6�`8���I�u�����Kj��k/�����wi�U��S��us��U�lr
̥;��ѠMe`�T���B�&��n¦\�	g2pd���[0��O�v�z����I�'m%�4���1}�@�€:įZ���/r
@1m8_.���W�R���lv(F5A�ս���~]*@Qؿ
V�����g��M܊�����:M��ʞQZ�㖵��.
H��f��J�wK�IA��\������f7�z��l��}5�V��z����G����Ɛ�
u̻vߋ�a��ɰ��Z(�S6W�z���7e��k���[j�����#6[���6i���Sڣn��@�d��`�[��}�i�]<{b�N&k��G�[�Q������`E�������k�$|'������GO���R��4:	y��X��1d��hz3T�ʷL-�3��D�G%�Z
��b锥�3�I��陌R�^cy,�3��P!�@�ieNq좀FS'}@4�шÏ~�����*�T(�P���Y+�=�!?�}>�Ю�+�����w*�3�U�����sƽ ��i[�9�a���\��u�We�Y5���	���+����,��iK�\��ʚe�<����z��K�C�&�Hd�bktݩ7<��Gh���
�f�O��fp�+d<�8�Y��X��(�ϴ�s�>!;B�TR@J	vK��U�8�bU�H^Q;O�k�b%�[Q�H���O�9谉����0r�0��}����U��>�ʔV5^����ܵ�����}ecF���mۈr���qLEl��	"�I5��ڦ�fU���2c��W+�O,
���MJ񝁧6���y�?*�0&N�ݚ�xq?�)��>�e�(�	@��qT�Vx��>sjA�i�2W@�W�<K������P
+
�i
���4�(ا����	�
����xA��̓��	1Jz'O����?�<L0,;V|'[�9;j:[��B��خRk�nC�.и�iޱ�T���ݝ&[h��5V�,�R��I��N�{oF|Tn�_|Q�W��>��U����{L�Г�K^A'�96&�E[h8�����J*�X�>�w��yW��+��V���c�*��Y���P����!���3�
��^������%�"��`�ɒ�R������cD@�2�ܵG��5g��L6}*X�l틵�\�"������*����p9������B4M�z�A����65L��.���2�k,0���^�>�G@���@H�ty����Z4iepWt��A�h,8�<{9Ƚ��ǷƶwZ��OY�E�<���Z�)��t#�/�崐�\F7ʔ�B>(���&��6�ld�i��t��/���=�n�>?&s��]@Ν�0Z.3Ĥ�9M�G�6�XI�J�H�Xa�:��C�}��3����6��~>�D��3��U�O>[vZ_�}ס�qN!ʃ�
��-�W� �������
S���Ha)Y���'l�g8=�`z��(bwv�����i:2E�!��`�;x�,����Y ������ߩ����
=��Іj^ǻ��Q�^��_�Yy`���Q����[&aY��Q
u�s0{&m胑*����j)���T�C��$YQ�>*�P����}H��������˥��_�7��!n?Vا(s����O�GRB�X���bG/*󨴉b����E��(��"�lrʔ$Ϋ����dJ�wGp6���
P�/�#j��mtC�R0�}B�j̣R��X�v��I�>(�j=���:E�C�t�V�:O[h[5�"u�E�3W�.
f�[eܫ8�P)�e
�0Rԁ��d.ُ:~}����t<)��/Q
c��O�B��GGp�<��"-G�-b΢�y3�b�#����5�RPCk{d˚� ح6�d��]������L�d�Lu鋶
��LCz�Ӯ��IYs�;�A��@*n�yڢ�����Kˏɩ���E���W���eM����â��x�[�*u����-z��җ�rizH>�������2$�����=�_�����j7�{�!�h7Ύ�|p�fs%9LA�Q,��2��WH�(EEug��&�/�
$̃cm$0^(K_�C]D����i����+�/�TR�hOJ?��N���ޛ j�;�쁳�#��ISm0Q�4W�����Տ��5_��fd���"0�ԏ� ��~D}��R'��k ��GK1(���_/�T��F�Ȥ8��>��Q8����m�.m���s��t�Á��-��`wZ�a���x��x�";ͯ��2�o2�:�h*4X���-hW�3sn���P,ɞ
��"ޗ`7�Nw8ɐ�D\���	�(,f鄝�	��I�M�|؟��ն���k��ÿl�5�n�v�xL/L��M}��ݻ/�Е�um�.�u��m�d>�Nh���&k�Ե-h���#�
+���q����s�}v.��L��8�c|�P=/2�,��T�,��\f��x���P!:*���}��uL�v�yj{C��[��	���^�܋�����lV�͛C���Z��k������9�~�_��+�2_�ʗ����7��%�\~�N�V�w�|�:$^�fH����-œl6��[D���n��i�D�>�=�}4b��=�U{��x�C��u���:����6ݨ�18�=�Z��%�ܓ��&��?i*�V�߻"��z��,K���=�,�5keb �PÒ��}aM)d��Ő".Aǝ�2�An�K%
���%7;��QΤx9:�J'���s�������9��:�(��w��̿s��lt�W�����N�~�+lA�ڏ��m[w�7���7n\����W<9��-N�߹t���i�?��"�;�i�w�[��;L�vP�2�z����r�g�k�cl;#��E�*��b��8�*�<~h!������:�Q�@�qӼek�/��#�@w��ꪫ'���	���r���*2_�2mp�pm��"Oގ�:�wFgR��ۜ����������{z�h?U_3�������m3�ؾ)��[�_�.��/��d��
j�����G�̨�.��+{����7g�|�6w6؟>d��5��;{O"�-��<���+�jaW2�2�����p�����W�a��g��y6&�Bh��I2%��1���S������*�[Ϥ��F��۷�%nwT��	Q��Ķ!=����00!�dP��$O����j!%��l�6bd������[6�,6��`^H�fɖ3V߶[��8|\��M��Q
���lƜYxj�?KO�3��ٲ�%)���)JrGƼQ��̼)���2c�"����^�–�;��@Y5��u�!���'�h��VGTi M9��#�(ן<�4�s�{��������@�e�fQ`�Gy�
�8�L��"KB3�+��fOx����_�c`=C@�d�-T�Oj�+�Jw�]��f1���򉠦J��� ��-�L��[,�Əv�u�&}��z�)Aԫyz�X߶"��M�Ww�P-蒺Mr�k����
4�4L�ZvɎiZcK���U/N��j�a,�a����!"Y<��]�K�����-��������{S��&�,�-��l�5�V�(��DSJZ�������U����+�6��U�Ԥ)�j�ȀMXju5xk�O�x�kC��f���>���v;o�Ău)O[���H<t��_X���4�i�+*�d��Ԓx7)�l��O=��R�|O��h�\��ؼ��E�RD*c R?ʇ�﫯��"��bL�+n�wSB��IZ���^��ģ|��r#R�e���A�>����%��rJ���r�ZN���C�Q�n�?|��x�����_B��*k��gY�n��3:B��4Wͤu�Q�������.�R�M�F�2���>��8�G�3J<ZŠ�r���Vŗ�Y�~P�9��w�;�<
+�iչ+�5�D��D�hp,;ʹ�j���fƼ=䵫9�� �3�Ƒ,�@�('h:���Ƌ&m��TkP�q�8�󨴱�!�ä.���#��Q�{�=����=4��V���#��m���x	�_�)If�C�#y��F��N�������
u����Q�R��PQ��y��Q
�u�:�]�g�*O<�j,0?��g`O�N\Z��\�F�k�rIݝJ%QM	$%G�/-�S_hz��t�>U����֧�c��'��P���fՅԭ���ں�o�>x�,u�����P^��"���������yXdc�i+�Y�_'�z�����6~(+q$��U�;{S<�^x�Gn}���ou�vXt%�&3`�.:gA����'�%��O�0j�@E�w���:���м�jd���q�g��e��<TCB=�nҗ��Cq�+���d������)Ӫ�L�Z��&��ίYْ�bv���sm��������k'm�xl�0�k"���ȓU��\��{ӲY�zY��.T���Yt|�"�������cK����:6�.4L�S��z�D&D��LJa|��+Q����h��_�}�e�Ξ��z�_���
b"	P8^����Џ��>�����4c�&ū��Y3�]��*��tI�*�
r6% ���&A�R�^3��$�p��,a2GÇ�}O>W4�7�6Ո�n7[�Y��Nq����O�e�cu/=�cm:&�4���C�o��<���}��i�A�O6�ă�N�Y�����m�:�̲f3�J�"M��K:�Ek���:e-O��7�
�6��;k�h}x�?�1�/\���g^��y}7�|�4����q���'�7o^�� o.�Uξ&�d�5���v��� ���3�_P� Mp���Ĺ�V�jl�U�	��a^vqǹ�܈\��?虽쪰��:���Oo���b2AL2���9�zXv��Q� VUq��^�k%@���$Ǡ��#�o}��Ts�cFW}�$y��F����$y^2:�����l4�/�m�a���Խ�&�o�L�3Ѥ�N��Iq�!�#��ĺ~������N>�0=�ٞ��bD�A�w�	���O��h��C���Tѡ�
�����֩F�I��.��M[�V�#�Œ�3�z�e�{��EvceR]�
�
�ecsER����n��`{ah��Z]���'3W�0v��Ix�V[mQ�8��f6�4�Sc%�Wr��F.aR�6�a��Lv0�n���=,L	�Z�BU\���]�a�JX��L���7�e銛
ljQƀ�c��H�j\���}MG����ޛ
�[X@"�W�dNS<���+�������#(���;<�"w�~o�myL�'�D���pEb�Y?�~�{{����,o,�RD��(J�bC�>�ܶ�_�dՇw��f�f�s�ܦk3�ގ&��~�L	�=�$&���Cyd�"�le��؄� ��tQRʉ�@*����΋����7����JՄpC��#5-�V�g�o��!G�i
4�&��N�pO���o޴խ�9�k�'y=JS4���/�;�٬����v�Y��3M�iB<�
���(Yuv<�9_�m��@|zU��
_<'�;��^;��#�b})�K�yw���n����o�%���6��,i7�-+v�(�k6i�c"Ym���=t#WRT�����m���R[����na��<���j
X�)G�VX�,��gB���&blц�*�ϸ"^(���^�Bk(tǒD�>f�ʭk��l�W�޼����(�I��d�r�U��U5=^�Df�j}-���:�$r�p(��<M����zM���Ư:|�%7L�>%\�x�+>w�W�؄	O��u���
gq�/�,��W:˺/Ɏ��+�����y+�&��Lo)�	���@�[�@e�x���b�i�u;���:��Ykw�[50��x:��r���s�S&_Xx��f[b�T���:7ak�}���Yx���<5����r'���(>q�-��p�r���o��ɴ2��H��U&�I-K������m�h�ɠ\���YF���Y`��|fM0]63���B�w5�%#�'iH(�8�[*�k�.�Etc&a���Nm�V�JQ�K�T�M��b�X4�?��#4c�왓Q�,<��v�5���?J��	[��J�s'�ڛ�iӒ��Ӈ�C�>�䶵���h��Mz__�m2�7��b�2�HC'���
 j
,J�N؋����
��Luq�M�Z�W7��'./�^L^�DL���%S�	������n��4:O�W���^�o�f߷Rпl�q�{��\�PȖ叙y4*x�Ba�v���� k��x@͗qY’.3�HQ�F����|�:r�Ɣ���9`P_�SRL���
6b�|jAn~<D��N��"�u���0��Q����\�� W��u�ާ��fn6�oH�玤�N	N'�S;���)̓vG�vejO��XJUP��s�p�����s<���׷4�����}��a��m}S�j�T���Y�Cheubm���20�~�t��'r3��:_H7��M�笜�Y���rN:1��!-��z��\�M�a��P}���l��&pq�6�*_U�Y�IG�~O����_KU8��FT{��t��(���av"CBf���_F��;Q��n�qӳ�B$MU*r��g,�^��GD�,I�H:7FD�	�Jl���k6��c'�]�u��;��&��Fb���F��iB�"�&͙Myk�U�����P�\�M���]J��~q��Z JP�$5K���?��1/,#	K:I�)�D�o�Y��:Mg�!'�S��$���M� }��Ê�N��~�$��Ū��3�w��m6�]r׊s���O^�
��ll
6�H�{R�vB����o���Lg(�i��Z�hVd��˂��]�w!��r�<3��H�/����7Cy�Y�N9���Y����@��Lc���eY�֖�Y���$�rz�2�d��k`����8v1�gI1�"0��k�~��,��c�$����ty��h2�^/�sv���骩m{��T���UM~{�W���Ï��ɿm���k�U�ٹ������?��΅s�4a��:���Z�D�g�;�@�V�ם�4����`�gلw]x�/���g�o��L���v�w�'v��ڟ��ڔ��y���K<+<f�>�Ǟ�����~NF�=ΐ7�.'�h��ٖ�}�t�)v�SK4�Yԉ����s]kW��N��-Я��K�`~k��R�-^���"9BF%`%5��S'$��^\o��;��NKM#_5y�<C$(V��*ޖ��Zj�����/��IV�Z��et�M��k,��x�C_m��{�ۏ\�ʶ�k@1�R�+ې�.����臬������t�и�����l���=C;�x�|^c&�a=w���9�9��p�t袋�Š��7���1��R���1@e��a�����<�3�w6��Lj�(
~���n0K��M.��
�E�aR��I��W�1[S���,9p'��Y���P�M>�r��֖
�j����K�g�M�dn7Y
n� Nl��ݮ��m�G��Y��N�̂0�9E&W�K��b�K�|�ĸ������JﱵWr{�ݷ���kQ�cZ\2�R�؛�O����ۡ��_��h]��Ը��y��&܈V��;~��M��/�׭�n�߮>�_���[.��/m�2������A	�q�J���{�>��L���M���8�A��f��]��'�v�HTUO��μ�Ń���̚u\�eA���b�~�u��:�y���nw��������ݥIٸ��$j[Q�����V*b�聇nE�C�*�ZɭE�o?҃�&k=�t��#��=�K��T�rf�W�Q�jJN^yٔ������Q�W/����O��o�^�rr��j��;�N�M4I���`0wϚ� _���ߜ����!Io���uz�#�3�tz�i
��k�j��m��f�L�'��k�
^9�u�Dћ������Vn�Ǽ^����߲r��n_����CSC ���"�6�Gi1#�W���0=p�'��]�@8z}�Q/
F�"�̒��&=�lF�w�d�F3v1��F�uDFY�V�'F���`.bN�u�䡁��V�l�|I׀��ɷ�*�~���)���Z�*�!+��u��Qv���C�M/��vԂ.q��c���Ys��,������wD������iN6� Y���r�L����U߲�[cr�c�q5)V��!�c0�31;�B0ތeG͝Ua�V��NU�e�	�(��;�;��|d���;��_T��A"�?/}�M�i	���;]��w�t7W�Y㰛�n�����Ng��h7���E��B��7_R�E=S�x�V�5P�s���m�`�ržYa�������z�Ra�t��	�k�����_�F�=���dVٿgC��j��߇%��T�}�[��n.�Z$��Uq�:�ۛ*<gg�n�Gh�(U?.b�=Ђ� z��3ek�
4��	v^�QVJR�T����+N�1�E�y���D���;Y�C�+�dN�A݇n$9�M���Ay��hpJ����=^�蹭�%[ҫ{���\r8L^Rڠ����g8�ޥ~�a�d8U=�gP��'�1�.#l�
��=ΑѬzR6��np�~[�E��fn��G�+y��|:���f���E˻�~E׶�M�ʟ�]�����f�}jE�3�qMOϚ���{��d?]u���U?���#�/;��s�~���򹃫ؚǀK��-�6�B��'闘̵�L��gc��g&�=��G��'�
���}�S�唩���VC�I�s�y�����RCM�)�r�d��7&UC͝w�4�N�sc�a7�fl���]t��Tw�ݵFè4�o��u��֍�2�B�>#o7(���J~j�E(�EM���-P<��n}�en�pt^���
�^<���5�fͬ�>3���/rQQ@��Wヌ�����(�Q��Um��)!s���G��7����ꜜZ�4���	��…U��l���ڟ��p�d��:�Cc�e���'s2�E���;�u�*�'����$�]"���c4��}�
v�zyDz�ɨ�n4��bTF�.b4R#�P*��~6��t�jt���ŋd�ۥ�y1W!�ןD}g��lْW_A�4R�/�u|��]���P	�Ǯ~��:t���[�����94{-�.�ǀ���y�A��0�� �x��6-NMv�M$�c50g���hQ6����1���B��n����W_u�s��;B��E���g��}\���"\�a���Q=�#���ͧ���վv����1�ŊS�Y(R.i�[��9��Jd��QӜ<0@B�Nya�)�j0Vh�2쬄�s��O�eP5>I��~���1!���-�A8ag�j�Nq^7�6��e��/�쾇ݳRuԢ�Z&�U�EJ��l�p�Yo�<2�"_���:��97�9f���阎���.�!
hI��4
Rk��Cj�G�Bu+b���tQ�P�u�/А1��TZ5�����V:+�zp��8��j����y\ST��!�zr��u8Y۸$��Յ�F�uFY���Tj
+[k�j`�GŦ��+�yl�֦Y닍�4R����,�+��h"�)=��U�>���yV�˕!��V]�Z�8G_
jW��p��H�� ֬Q6P��8=w�Q9�]W���80��9���{��z$�5��p�+��҃D%ꔒ�-��R`5CbJi��h�EI@����x�Q@��-�J����h�n��א!7���#ם��Y
ѣX�����2��M��n��Ɣ���i&�#i�x2n�B��~��#��}2n)Ͱ�.w��o��B��(��Y�k�"��5n��G
PTF����;�N�Q@�(�奣$���%l7Q?��lR��P�fB!w�ҤJƝa�îG�ٍ�J� �vK�g�WOӬ��L_�$��t���a��[!i&�M�>J�LBf�R����%�ۣ6!�o����"$�,J�{�l2"Qo����#BQ'!"#����H�:�.	o	��<�9*a$
<1ʔ/-
᪠(J&���$�
f^o�ћ�<o���n�!����A���E
fl��5
��H�<�o!ͭ�(�p�N��tH¼բ��.�a.�&3�!"I�:L�fsZ�0A�:�A� RE�E�b"`��\�`qbѦӻEA��lr�Zg0��_
�X0JX�	�Щ��9�1��"BN,�b�q�H/b�I����2&0�6�IM�U��%U��	l�I:D�Y%�Y�K�xí�AЛt�PG$Lx7��0lĤ'vluۏ�x���!"Io#�E�NF.�`�E�b�Uo���˘'�\�y�
����~ّ��$�(�d�Fnd3Haz���I��+F��#�&�z��h$�Yg�u.����X���l��b%��N���[/���*W8����BV���0f�^�@�`^y'/T�z��:h��M�#�$��<E�H,0���A��o�a�,0�(�i"!1”_E�63�;�x���Mr��X�v�uaQ2���C_�yY��#"/輘�X�Hp#9x���1@1@�
6�	Z ����m��݆�Q���D/��.T;O|�`1�e7J:�^G�	:^��&#�a�A��$è
:d�z+
a�(�~�d�D[��i��F�XVX��DX�F�'�
:Cqs�����jӎp�q��2��E5!K(����K�Wk̙�g�ط(����h���P+���R���^Q���-O˻�h�@�&�l�o�%<x��j/ޅ��G6R-V|l��ht��iL�`���xlhY9��U~�S�㨆ӵ(�`*�J�|�u���(��xn\T�"K��L?�
gKl/j����P�[�&�cr�n�l�*�oEŅ��u�̬۝�dU���F�W
5�\�1�v��C@��4P�b�|�M��e�^I�]%�S!W�}�`��*�_��U�<���(�cnu/�Xxh�w���
���)��k�0T�$׻Z3
^�^v����1e�F��g'P��JAR�#F��,+E��Y�@�'��C�K�_}B}�~:@ŏݏ.��g2��K�.�L�KZy��,��ߍ��6:&5Fs��n���-Ț\%��۹I�dn
��[ɸ��@�i��5�]�i��v�$��t��W3�L\�	C^\L�>}��6�,����+�7���
�g��2�.��;����H\Ұf��,-Jǒ��Ew\��B�wjǎ>�fM�.��.kl�Dj�.Xv�}����mW\:5֔j����K�ضV�3�B������S��$l��&�ijD�YdIO�~q��!�rW��)\�3�
H��.iT2�R
˔D��'�i���>-�(*�Q�����o�c��$`������g�#A��ꆘ���0�����ߨn������7.>�x��;w,yc�?�Ơ��3����6I6��1�q���	���($�����,��Njwܴt�r(y��h�2�l{s\p�@5�H?��]�J�Hʽ���<l��n�h��'�1��P�mϣ�So���7i��$��½݇�����a͙�~}�Z}gP��$���6M��h������M_:�~z�{�dZK�e���:s�/޵�bR��+ʤm��.F_�����-m�AE�L��ǭ��s;�;��\�激��q9��:��L0��hֳoȰ�h�mS!��S�b���f�D"N��� (����(�YqG�"�Č��;Ck%�mD��D�͙mvKa�5:p�5��<p��Fi͢=Oӛw�4�->�g�Ihh�h�{�� ���e��f��
�zUs|�+�D�W��xst����-�}�"��<;�p>�#��?���X;$}�u�pȖ�ow/�&�ν'�dޒ���M-�3�g�֛떤������$y���I��E�uR�
;�5�It��Б��f<�n;u->b��{g���-:��6ާ���>�k�0ڹQ��s.A�,1��xB��U\�tBBA=
��)~�3�.{�ҍPa�~�OBP��:s��QS�=��:Uf�s1�K�ɗM
�@����P����s�y���gQ'�)�_�@\l`�|N�1�6f�p�p3��,Y��,w�Z�1��~ט���On���oy�'�Ǘ�lfC��W�?�Ot=��Kz
����(U�QC��dP��n��.<����=y�]��S����d�2�K�Zu���{�d���^�&P�^	q��h��E�AakF�Q���7>�<�~̈^�=Qby��A�s�X� Gr9�A���ժ���`�	����Ε�Mʆ�돱��,����,)���4K���ݑ�Y���Z���?0J�d\;|���h��~��ki��?�e��v��宰�����K��v��2�)i�9J��cj��~�Uivo��	V޴�ʍX�~�eC�k�ˆ���Ɔ�K�ڰZ�n�߹ZX�ko�n�퀭���:�h7Τ�����G�+Ș��}I��]Sfn"u�!�`*��ئ(E3	��M�N�4���j�nRX�M��Gs/Mtb������RS���{i��+�-��v	��a�J���u�3�Z/�WS9ZK��]>�Ɵյ�68N^~�i�>v$�$�&x���;�ό/n�Tu�������
�_�p��d���R7���#ƌ��]��Kqk�^:J�1�)Ǥ5���$�2
;�ʗ$X��[���Z(ޜ�h�J���7*�%2E叙#����z�g��{��hLK,����M�������#�ǤOkdւ�n�n��V����Z��Ħ��پ�[���ȷ����kV���%��ʂ�:�@S>Զ��}��S���~�.��vm[k������l&�ż��V�L��s��H��uvM[2���/z9ն���.�S<#y\�6 n�G����fmȬ@���xʃEӻe���iwX��D��v
[#:b��L�_�hkm[-�Nٌ�E��Z~�emM����%Y��뛮��%���Zbt�h%:���9}6xn��.��^%,uXF>�.1^�x��o��U��Q��O7��������}����\�1�B�,53V̒ׄ���'Ō�z�w6�7Oi�6��o_���rU���qp��,�1���qOi#*�n�;6������F(�Ny�'�+ܣcT��q�<e����LA�"qe���޲Sq�x�LPQ�W��Q�W�y�h�Bf��M���(��[�vL#���ۛ�Q�}�;��Ε��˒-�$�glY�o+�s8q�N�er:��@B���p��&�*АB�y	�����RZhMKy-Gۗ����̮!��>������3��3�3��~x�h�4[� �A�=,O�c⋢�rx{�+=�.z���f�G�A=��SM�ϒk߉�kѥ1|���u�g�<D�k~>�\==j��=$��rR3�,��xٰ�U`B�!��"LQ�� �Jc@(��{˯��F�/�����4��3�i��bM6A�
>A� �0Z��������(�	��zc��d�I
Q&������Z+8L�T�W���&�� ��a�Q<a���"�*F�S)1�^T�}uМ�5`��-q'6nh���־�ڻ�O׬��%��3<h��%r�ܿ�e��	:b��
VY���z�l�N�]6��p�/oyiOc������5x����r�M��{�>_�ؾ��v��5������>9�X�ru�ʓ�3�r0�rd���e��t�|��¶����L�d_���*�5�hct,g�}��W��i��\�<�c�s���p=�i�v6��l��۽�N��8��E�߹�����ٿ}aq̈́�s���+Wߚ
D�ٶ�D^�؉>[DP�jq\j3t��h �d[�)��7r��h����UW]�jiK�97���
X|����/����>g],p�K�4�Y�W_�ځ��/&���-�.S���0����+���0:��A��H4bc���7o��|~۶�F�y�W��ub����^yV{1���
�o�8�����S8#(�緥~���w�޹�jҢ����6��ĉ�"�h0P�T�	u)�� �$�`]+�E:�E��q؎�W7jD����-7�(3�uŲ{�Q�l`Y��$����OC�oɊ���= ��;h�>���E3g^tP��e����N�B*���ʘ��!x�%�	�֙�Y}IK %�ep��H�	�ZR�́�H�+!)�ʵ	*	1B�1ˬ�B`�>� &�)ç��	&��
���)��,~�)|H}��ؚ"����od�A��[�aO:)�禓�G����wLr��(y����ļ��C��g�Q���#[U�N��84��~��c�!yz��ݰ��ҔZ�3�;z�ss��.�F������M�ؾ�1F�SI`A	��4Q�ByE軼a�"�Oi���P��S�b�nByḰ��XK���G�����`SVЍC/|WM�߫ʪkj��v�!�:�|uQ�(�U�Ϝe׷��]N�#h<;�����v�U{�}���f��j�H�%X&?	V�u����~���V~j����6���A'��MY�v�M��!�GP۹re紳�� ����D��k�����/�s�)�k�q8vI8��#x�
���G,�c�?��;_�?��!��sy�ٯ3��ηw�>w`����||����t���u�P~I�����hh�nE/�&�j��y+���ٸ�uT��S6�o�o�O�oh-N�p8ޗU��2$�u�]������v$0$��
c���߂��S��T�6��h�Bڭw�.ci��[����ҙ-:g������<F�=�*ǫT���9� ���r��%@+�2�u!t�ޮՒ�2#��ލn�A7�A���YQ��Ⱥ�U���ax(�Ę�[6��b��œ�8���{`.�92q��+vK��$	2�+���p��*~M�r����Vs\IΤ_!���j)p��j�f�]_^ș�P�G>��*�K���h�q��{F�A��
�lW��?}�'�M��R~<3.(�[v<�QHPC����c
}I�br`\~`8��{�;N\�w��Yu��I-��U'N��y]��9
��Kp;�+��I^����^�V۳dv�9!Ns�߁��_倻l�1p�~�G��� p�F#�:��:ԅ�[���	H��˯�����쀿�":s�-@w��;1n��3�+���U�&���97��ϳJ�:���W���ja�3�,���)���a>�� ��'Tgx4J�A�]ԧ?21:��yA�c4�Qd�8�`��b���4�D�lu�*�l��.]�&'� ��N�Y	�?�_EJ�OG�#�y�n�	^��TA��/UB
{d��Ȏ��U�}xX�1r_i}~8b*��=�^]W*s->��K��d��fgQ�U�(��s,�Ze��M\�����]2�)�1
��$l!?OnG'o~��P]h�꙾V�'���E���6Fo���/�q��+Z����jz�*�S`�O�Ɓ�| M�U�a�����{o���0�3g��}�(骪�5�J8��+�5O�OWU�$#��+�����Z	�J,�2Y��i�n���>Ŗ��X���p�'E!��4�l񺻜��i��	S�(�߁T��R_ʠ�̈́�$^����ŊM����O�wޯ,�cӊф惞�\I�`�T)���&IX��3��W��
Sv$F�ݸ{�e�1�fH�ț�aw�(Q �\�9u�\����O�x���7N�Ѝ�%��hۑ\W���TT۪��˻�Um�ʂ�j���r����S�-���kU-����n�E�*+g]4u�,}���뮻mf��msM����X���9�U�uu�UNGQ>+���U���UG7O���(��Y�A!��9ې�#I�%�y���\��gf<�/
��Z-H��L�HP&O���E�Z�:�3.&0B�}�H������`n�(�.�Y�2�,L�~�]��Da��x�Q�`2�:��6_u>�6��)+���{?�D�C�<���Uk��mb��~�c|T��`�ᾮ����&��
>E�7�"B����1�����;��/��� ʤ�A�$v�Bf�������Ytج�G_))P@	p�7�:�z3hfa2
������:v(�^&��m胍���ɛ�7Mi(�&�+�;��v�v��&����1��S���	{��\ر���%���W��[�7m�nYm}������5q�oqQ��ˊc���^��nBq]�dZ������CG6�\i�9I/�����`��b��}��ޥ7���5!���pa�r�H�ٰ�)
|��\����n���@s�؇Ӂf��s�޿j��Z�V��+m�#~xd���	���Iq�|Y�;$���`k�G^i[ي�F�T�X�
*�Ql�N��+����xD�Ց������-M��L���[J�� ��ϧ����},��i.F,2"B�G�щ�����0��~�Ie�O��Ö��[咛���o���}�T�a>��ľ��/���o���z>�E}ʋ�`v�z%5Q��l��ҥH��+�+��l6g���S�Ô|�B��h�8��ڱ�t}C_Ꮐ֣*�=��d�[™��M{�W�J���fw.a4��4���D�o��*��V��VA�8�sP-��Ҟ�}��A���"�
�@�"Ȥ�����t0���+|�|E�4N��Ł�ݓ1	�9��)*���Y��Ѷ����QoP��@�	�J�2��::b��?2�H���ϴ����3�Y_�n�x[��b¼�Y1-��M�ҧ���i��.�#?<���e���n��g���_�+�w,��1���?�Q�`���tt@��܁�
�w|3OQ�������ozi�/#����@ :�ۨDl���#����w��w
k�h�i��Sy�I����M�@�$�I��g�QC�3I/���Iү�RО��c����}>�\!��Б��c�k3Fʷ�׌8'�חe�d($lٷYS �hC�:Sl��i�,�ɯ�䝂�<d)r�$�S����Ib��T�^K���p�+Vu	i����A�>F�i��$��柌��t���n�_=���Pp��T
�;�(�3V�{I�D{��iEZL�I
��sҢ�c����"3�[*8#��^NG#�c�`4�cCf4q���&������E�:��r�@B��$�=��D���M�RI��'���04	�'yP^�?R���xS^�3�Ԡ��j�"�����!���p��sm�h��g8�����G41$�G>Lx���Ny8���.'R�ԇG@"�L��C�8S1�I�.u�ߣB�G�?>�����sj��6�خ0FƆ�{�1�7qD����X�SJ�Rʳ�R%F�L!sM(�~l^0�������a�v$.��X�V]�Υ��t:�J��t����1�"GЏ�e��C7�aR.#*�f�E�|[r���X�\�p���M�[�\c�3�����`�Z�*�؇q�fPW3f��!�u������6�����1SJ���rm�o��XQ�N[�1�c�_.ʁ6�a<������K�#�QGRs�7�gc7�P߀s���ޝ�to��s02z�r�����{V�{n͕�{6>]y��T�Њ�X����(�|�'��׵�h����%"� ���׫��{�i���`./Md�!����]Ђ�[�x��C9w�<�X�c�pKC�a��bP�#lm�Пur�8�/�^�W`���Mfs��(=TA��{r���\�X݃f��?8��:4�g����d��<�Pm#�4Vo-Y@PV��p	�׆9�1JȺ�C�F?��!i�&0���I��SH��H�o
7A?�U'S��C]�
7�4���O��z�C$���=*E�L��@1NfY�oȒ�:4�����#�}n,�uN���\}Za�gi���~��@S���d�&l�'�Y��p}�@�&:y�0�o�)�@���}H�U��q����Ss��G��|����@S�
��$q�Os�I�#KH�OsY�d�Y/�R�����&5�@�ѩ�Ff����k.�`����G뺦��Ÿ~%�0iB�7}�y����1_��w�lᆬ��q�_�M��R�uŐ���p�t�����{��JH��E�2#�f�,��t��D%Q}�:�0�Z`�1��
b������W6K�+���b�d�
f��e�+7�r�JLZ+S�!�}w�P�3�wi-V�6�u���o�+6�]�
�`W��d�d)���P��L �#,{yi��*�+��ӕђ�����	g,cʺ9^V'��0Y�2����[��g�?��)M�������~0�9?8�21�����^:3y��+�|�W�#�ܻ�oط��
���{^GǼ�?]�M��=p��K�W
B��K�捋fljh9i\��	���ȜE��Κ�Ι�v���ÿ+~긇���}�$���9�3&�E�4ɹDR�u$���c���<�a!�;���Ă��Ȃ!ŕ�1/嗋X�v��`�t�K��e�K@H���2؅�Ѐ�8�6T��jLeˍ4�T�,�	.��7:́�b���x�*GASt�=����I��,�"���G^H�Pu�e��PCn��A�	�G���W�fD#��OR~^�e����*��\�����NY���LW|i��=��<��ѵh�ώ~<�h��o��Btt��U��]Ns5x�O��|�2�lm�6h��ݎ]7;��S���.���i����ZU��\W9�?�[��ڜ���Uj��u��rl��!�.������D߄I����D1
�'�G�W�<�Qf���BŒ��*1S8�)�Z:!
)QH
��I„Zu#��v���Ro�o������ 5��\G��zx��dT�f17e�E�X����\9�ZAm�vP����{�Lj�	
��t8/��Ҩ���9��ӥ��%���}�����	�{��_�<`F��=�2!���1��������ʔ��ۢ�n�|�����o	v&F��H�/�~�_�:$���n��Q��$�ǟ%�~��:���٩2j��2�A���l0�l�Z3�q�єɢGĉ�k&b
����i[���cu<~��x����sE��U@}�Mt��nZ4�01yS�Z��&�l�^}o�_l
Ev�k�����`�oM���M��`�7-�����҈����lXd�m��)\Ԩ�HA�q�j+o	�ƥM�,Zq�O��,�eT-5�ڂ�C���$���(*��9l�R�:��j���j:��+�=����ҟ��F���k�*WE���pIk�� Y�j.8��J�
����
:S�5��G^М��F���m���.䜼����CcT��@��%������kKH.!�%
��ud�)�kAA�T��1��x�7�*�\�y��p���g�
*����5�U�ftL���1���ń��Zm�I���j42`���W�Y��c�D1��_��-����D�w���|㟥lS�2�4�B���a"
�OR��z#2���(Klq�h\X�*I��_-�4V�.��7&޹kxp�����1��*{cG�I�	0��ݻ�
�q���M�e�O>Y��c��
O���*Eu�DmO[,���	�f<�a�#$�K�0w �>�s�	�6�W�X�����6�����b%���֢Bۇ�ߕ"l?Y�k�Z��&��|�l�
��!��\I�8�����
�|��`�&��1���1�P�/��IK)����){@'ZY�hv�&��g�
@6`�	wE�&yI���IJ9D�I=A���b̚�|�/����H���u<��R	禓���̘*���Y.�F�E���vP�ߡ��<�ݓg�Z�E��=tL�T�"&ǣ2=��"��ǾG
GL `D݋g�9��X�F��Me������
8�~ErnE�F�*�Mlu|BWY�Bv���i��J~{��^*/m��*X\�wt��˥e���R,k��T��$�ӈ�� �t�R��6j����<ڭ�'������E6���ZhP��q;��q>D���@&� ��찇��NQz�^�~y�
��@^,,�Q��`q�q__X(.l�{^��/�/T8 �c�#*b�i����&�O���a�S�	�l"y�$�&̲D�s7P�u��
=j\.Qܑ?�҆���|r���z�4�ʻ�}��ǃ��u�fůs���fB�Q���B���Ev^M9�4�$?��8<�"<.��L��3�j��L(L5��FV��w߽wpf.p©��M�n�c^��8(Uν>�n�.K�e���y�@��{SF׆�{�`�|���73���7K��ݒ�pȕHd��Q"�p�(@dY��T
c�T�YKKJ�+�V�O�wd�C$Zѧ�tH��ο����n� ���w��?�&i��G,���
蛙�������|шD�>y��A�-@K��#��L����җ|sĩ�i@3@g�M��/<�X��6t��\��_���e���y�̺�q�*�������+j�/������2�����<y?�1!�Ak(���+����݅b�������	��K�Ev��_��X���V�!���{Q�:�_���׍��u�{Zf��u�>�+&�Z=�9s��{�]	F�l�Ǝp7�@��Ŭ�7G��/Ð"�^9M��4%?�}e�%C�i*�fFi�i�&8{L�?�p���G[m�����Xګ`d�l�'k��&���cb5n����cd`A0g�	-������X
R��Y�<��z�ŽU-���̞w�'�
v�8�
j�BX���V�����>�ג�k5`Y�TT�j���,O�Ƨ.
�f�ء�6;*;��Z�dNywM���"��0ԈKՒ4D=#���eL�p�E�H�6_�-�8��(�u��wʫ���%S���$��#0��z�ޓ���d%NQ��o�c�[:��@~ƹOq���S>P����䬕�}Ǐ�{�"�f+�wm�3;�a�8Z�x����
9�a>�n
���
f�|��}�X���<C�;�>�ϓѸ?G�c�"[yg�����g�Y�Q�@z䛒��K=�"�aU5v�:t��o�p
��I+<I~��}���*���2�E�$�Ď�K��ڿmO�l(4��{��_ծ8��L^�6�i��4��K/���Œm��9]��e`T�%*��������~�?"bH�)Ԣhr9�>���'���	/N����AO٠#HzK/� �]^z� 1Q�8��0�)�]��h"� ��+�_Ta�U8�i�cm<����ǥe�}�d���@ų���Ac`h9�NQ�S&�ݫ�M���XK���X�~�����JЃ͠�X��)��=Pԯu<�u�LU���A���i>M�7�:u��&�e�V�b�{��u+9���de�n���W���jdS���X	6>�A8ozt�+�$�5�Fv��_��iN�&,�����>�V�2��
���7>��#_f�
0Z�Ҭ�`>�&$+H
кe���H�!oڇ����և�h���N�+?����]����¿�0Ck~��\�,���������?0evg�φ����
�cuH��`�s$%��C_�V���@D��b��Q���R���Uͫ�YA��$|E���{Z|u���a�ޡU���_C�Sn�n"�k� ���ǥ�ES��ʇ�8��A<��vQ �#��\�W)WI0���#F`�w�i~m�!F���Q�R^�ȥ��H#�|ap�m� �#���gaH���F�A�>�
2}桫��j����>��M_d���d2���/��?�(�J�t5X�O�wN���n�
���r>-�|<��+��> ��z?=y
W~>����<����W䯀������\0�gj[�y��c~޷��CՀC��C��<�9O�E2VnK+�g�j�2*��j�~�y�\'oޱL+0+1{��iu�W7*�v���o�ܨ��U�j�Fc=��|LƦ�~�߮��e����˴P9i�̫���ˉ�~��d�
9y��r }�u���f�**�?��8��?'a"U�[/�͑zyU�@��ʙ�p��y=�K��.��۳�H+9�ې�3۽��R�NgQ l�]�}g+D�d���3E�
d�٠�C|=����"�猖���D�$����1���K��/%���c�io&5�O���p�F��r���r��re�+��9�Sn*���Y�L�I�D�#�#�@	fq �패����a�#���'��b��}=�I�\̮��'�
Z�h|,=��:=(��T"����)F`E�E��V��j��,���Q��|�FQ��_�/���a��|2�r�K�bIx�X��^��b����I�&��$J�t2(i��]�NE�Wؗ�,�ޥ���x�V��c�m�pF&+a�)
�����z؇d�=�>���>1F_9�=�!��~S��`�����;{�L��|c���pn|U�^;�-�.�߄�m���"��;�aX�(��Ȑ�1|Y�Yz�_-�^U��{����3�u��!��C+Hn9��d>�)Ȯ�˵�U�I�ͧ@E�$*}���*�~�� V���9�_��X��AW6��Я5�D�T��@BlE��M��+��Ք��d0X�v������mRf�Fu%�T��c^�*-q�)tS9岠G�)A�o�jYJ����}A�8�I}J�J�e��<Y�s�����\�����X&Z��?�kUY�Q2�*�?���q�C#�M}�;�x�~Z�T2#�h�n���o	��Q���E�^y =@'��\�]��ce}�溞z�F|�`ė��з)���芛����/�����%�g��@Y@�k�K��ӟ*
�E����{R"��p>�r(��Z`Y~Ir��Ximf�)~�U�(�0�$���(���@z)��p�_\zv�Ow�^�9;]�W��U����5�c(?	z���?ܶ�g��'�h��N�rG]u����a���!z�"�!�`4y��p
�A72E{�\G9 �T2	f��t�B��IQ�
W���sxn�R��P>�#G����\(:�4Q�S�R
��7�~�F��9�����r����@ ��:b�Q&e�P�3��R�N�ZD�%&J ��~�2�{�@1H��r�X��/�SV�18c����Y�Ϸ����w�5��m��4�����y�� �/T�4"9�	|�O��"u(�M�(�֍�nb.e1�"���r%��	�ӆ���ڠg��t� }*�ݶ7�DH��B�lg�]��rt9m72��Z�.��T�6ku��u�N������^�=���Œ�B��a�F�_�l���cY����@2n6J
�Ea� �(z��6���i��d0[\����Ioھ�fЅ�<����j���W��}�q�G��9�aM�\WWr�!���(�^�k���=s��F��-멜�jH ��NQ���k��p�è�],/�?��nM��b=�Z��dy׻�p�Q�/{B5T�)�~�+�������0�c�ы�[�p��kM��[��J%����~uD.7Jwuw��:�l���{��ٻ<��X�rf��qU���bÆ�f��fkL��v�[����R�^U��O
���[>p=�[�amEeĉ�u�B=\��,�UX�簙ŀ�b\CӴq��<�a��23'Z����@�cA��"�H��Qj��H}g{�;k�����*Sp�
g���Y&���3����֚������J��K�V~c}l�w�]�O���h���p�h�}Rm9������x�q��fQ4���j��sD��,/�yQ�e�H@
���ʋ�u_@�WaJ��M9j1�2R_%�F�j$��l�g��P� 1���l#�L�щ��t�JA�8�g��,:�F�ջ����-�
�&
��|Q�5Jp��l兡��Ep�d,��$c� Η��Q~�(�����QOtu��1WJ~ɲ�1��dSʨ�H{�pTWؘ~I~|K,y�x�D��[C�K�.��.y��?ґ
��}� ��i(�v
�h{�R@�[u1)�s�"�>�� 倢#Ҥ��Za����͍�t��a[;Ogxl����Ll��{�]W&�#3�l�����w��G��O܏�z���a�5xs�bV�3�w�g�ug��=N~%8w��o���%q���1c>(G�3��J&�i�J��t�X2�E�4}��	{ѯ���D�VV��"���o�N��`4���~[�b���1BM%�CvL|"0�-��m�}Fq$Y"��;(:j�ш-��P=4]W�	im+�w�ԀvZ9�Z���ی|d涋���]v�8Uz�xc����]�N�n�Sz묝�-'<S����hC5�j<Ҕ������	<��X�*��]����r��j;sjQ��Sp��{�~5�7���������A�ǀf
f��
|�:�54=hGq���A�%�xIl�w�J�`ޔ�Pv�,��K�7�E��oA��������瑽o)�n��6u�,T~x���.��{�>{=��.t������(F������~>WZ�Y��fu3 �����i7�Q�K���T��
�h2
SF}R&�U���*�0����,	6�1*a��p������2Հ���:��:�A/��J\���`�����`�A�I��_/�q�ZΤ��oޒ�W��z������]����aГ�2KV�@o��/��,h�Z�[��8��F�CwЗ�<�����O~��p���z���7Q3�;��{��a��N�
�j�i�Z�C��1�j��v���WqӰ^�@ub��w���+#!δƮ2��_Y��~�t�$ّI�)�s�";�g�Z�A���Ie���ߔ���Z��=F���a�V�;vk��u��v�f��e��[���ϳ��}�{���X�O��V���`^B5�	�����5յvv�NN�y�J���>���)�M�`h�3�ͮ��sw�����׈�sR����7mKWl�Xu���8wN�Y�o����k׬?��޲<�;Y��(6.x&��U�8����ǹՓ��9�G��̯�/��!��?��C#��F�l�ndB]�]�y����u?��y;��x��m/1HB�
D_���A//Q!�;t�B�!�Ll���
1�q]e������e%]���/��+�
�8{k:|�K��V�U�Y�3i�$���a�m�b�A���l�]�V��j�oin���ݮr�.xIA�-��>�9X�h�J����f�3�U��Va�����1s�8�ٗ7R��mD��C�1�/Th��&���Dc5��[O���`�L�o�F�E�
�&_ug�K��y��%�:jz�%!W`׌��O�t�\�hԆMKMgZ"��
H{<ܲh���䂥3BNOsim�M�6W�˂͢oab��x�+@��]�&m
6����b��Z��ؑʩ�������;�G�_^��W�"Z-�F��E�/�.�[X�Ge��#^e�Y3,1h@$N�E `���u�:�i��4jA���y	:�
~�%���|8@�0mLtJ<����,�a �Z��Z�Qx7Y�fK��'�_�6��=�i��V;h�
���vo�8?i�;ZWd��u�.�;9 _�H@���X~��w��+*&�V݄�0����Ƴ�G�3y�&��|�����fsGj�lO��8�vN����_��Z�?��dy1������BK��:��87����+��UZf{R[$��Ґ��&w(T��5!�����=��.M�dnEk2�M�=2�������M��t,u�������E��F�q7�-�_���	���h��᢯��!���ZE�S�Q=��w�"���6�x���o�גyyQ�;�����aZ@dԋ�c�?ڭ%�<�%]C��^�%=Dhtw��2}O�g�����+a����9g�5ԸA~i�j�]���i�Xc�Ǵ�Xm��ŕ�c-��
kU�����¢�HQ���.aQ��i�Ӎ��.�nz
~L�C������}S������Paa��#Tf-��V5K-�=��?����QU�qx������l��#_X��,��U{/�~|<�k��J&-\7+�gC��ۭ��֤IoMN/�t[S7g�q�M�>�i�j�Q����?�iځu��o'?<]�~��d�l���p@����`��K�ys�MI8�p��j���
�2�2 �A8_��;�ͪKp�A�u|Q�_���_�n�Ng���)!(��N��iU~�[�^��T	V�mCg��-V���祯�̌���$e�E�z� �h΁���v@�ba��p�(��[�Ӣ���~^�՘�)��8oy�#�k��m�>-��<n�~�"5
>��
�����`,�g�0�}�`���O��1k(O1�F�N��/�2���+l�ESs����_��*3	��- D��[�H�
|$>�h��^���zN
�R �%� x�N!�+ސ�_SR���C�Ap��4X�e��tf��+XO\7��뮋/F�ä�hZ�,����:o��EJ���R�b[���hX`l�� �@��6�)��?��l�lG���z��0=,�E��l�#;��B�cY�[�7�?�6��s��>��9=����1���,�	���?䟃"z��s��`<�h\������Ȥ��?,�/gyLI��h�k��������h��6�ҋ��;��^׮}|���GioH'a��n��C���ҧvѻ���KN�u�����u9/�m��Br��h��S�����ڱ��t���b9���y�97�e�4��O�1�
�ĺb�.y�p����vY�&�k�[�j��_8��ӟ�籺��\$�����%i�2NC;q��*O��<$����~J>o�Iz�wm"8#�e"���L�
�:R�4p�E�\t�#����)_�����/�9�^�\�-��}�\��_���r9*G��B��pH~}>���jƊO�f/a�A���l�}ع0�3��wW��r�KDoSB﹄E�;N#iQ"�H���������܅ :��3�3#^�b��Z�=.*�t�7
/�l�N3�/]��#�Ԋ�����Yo�������d�/���2'a-�r�a|�ƙ�p�g+�}C��2ٌ,��KK��K<���]`�m�f�k��Z�̱��&ˆ-�NZ��hn�;������]�-_T���Dך�N�jڢ��������n����NO]�eOȽ�P4�]��}i�CS]��I_%VuY[	��4d�oD:9a�*�X����P}	�3��FU�.
����!n��S`9^ik��3XWG	��sJ�Ayx�4͢}}4�WN��Ik{��+B�6c����[���z=k�K���L�w|���c�\k)��[�����#��^�
'�?�'����xP:̚wky�ݺ^t�Z&�gX�^��Z<4�\k�r|�Ur�H�`��4͇��>�pk�lw�*iB�U����
~�u��㪗K�:�_�m-\b��l@jG�C��1`�Y�����*IbQԟ ��X=��G��,�=�i�[:�[Y�3�
fȏ���g��Y����\���.۸����EC铞���|;�� FS[�Z|Q�Ё>	��Y�`�-tSkESI]��S�q
`�k:��/�mդ���7�);p��s�k~&�*�.(�O^ް�o���P�T�Q�1j�}l�~e6�w댂N�è�ZU�@����N�fIb��b0�SB�4��T�V���q5H������`9�;Xed$i�8p3!3@7��f�%�St��3�����w(�<�K0�Pp`�3V
��2���zO�.==��pF�
^���NA�_�@Y�ͨ=C$�QU簰��0�J�Xf'��
2ܪ
ѝ�jg7��]��Y�`B��ّ�o�~��S��+W���cy]ݬ���E��X,�NO����3a���^�����A���P�h�,�|ы�Ζ���b����
�h3�����\�(`	Z����?J/�\rh;v�bz�rX	�+}.��w}��H�7�1��u+���2�"Itҁ(�6F�'Fݲ�,�tnʒT�`u�,.���Zb�z��Z��p�8O��è������{�v�ch���iAs33+Q9�yA���f0�*�!9�*y��`䧮x{�T�h�a|�����)r�(��h.��77���5K�U�?�?+��*x+�1���/�/5�a_Y�>��7f�*ojB�(���%�&�4H��� x*L�T��B<��q����J7����;x��Ē��B1u9�hԏ���0��P7����@š!O��v���)��c?���p��Y"��h��#^��ކV�!ю��@JI�+��h��
X�jȏ3n�A�V�p���Z�C�/��LU�:4�q�aE�aa. `�M���1�8�@���
�a�)�p#`�DIq�hފ�����ո>I��P���!`6���N$Or[�F�Y��-�a�Mz-�J�RƤsjh�6��4��2@ =?��4
y��i�o�O.6��&�@��ƪ��8
g/��"�*,v�h��_�.�@k�u��-X�+v�&��N����8,s{Y����k���UCӂ�����v#���tᬘ�Vf����(:fi �46/9�����-e�h�t�GS&T�#h����*zD��l�B��J@���]���BZG�z���ղ��2Q�\g�9��Fc��6i�,
�2�F���V;䝎�+�	�(��
���S�@�VL)�ݛ�%�NV�
�:a���E���(B�?M�����'8��iѪ�p|G��A����5A{�z�```]wxB���a��U��&$n�unw�/�E��!�l�t�g�6�tF���^���`r��� ΀vM����s��²=j_��/ʷ�NS��\������ֶ���B�rgU��X4��9��m�_C{������3	�Sj�Қ=&�@�
h(6UCZ�E���J�`p��j&=�`�Z��JBsŌ� 	�aLfɤe��e����2�[��4_�6���{�A\�qڊ�
%�	k^�q��TUJ��j����Z��l��pU�Hݖ�ym��ĠWO�Y\jY`��B����x�q�z�0`�4?������1F��Q���K���n�EF��6�Ȏz2zK�����g,z�B�y|�Dk`t���鳲��T�9
v��C�h�
�h��nB��Ӻi~��l/�t�kc�k�6�x֮r(r��X�c�7�L)��D���ElP���{��W(@�*��M1G<n�I��Dz�@y�]E�R���U�l��ct(��,�P��X�
/�� �|���;�a�P_EF�VP�a�ae+!4�n�sE���Zl^���a������BAF\w�ER^PE��֯��x��?Фg=�M׬K�N�9���}h���wO*��%3&w4G�=��#�|%g�������e�pч�߶�C0�7��7�7}�\����B��u�J?z�5)�l��}

���2։����4��~��r�T��s'Gj=��{���!��-�[���;J+T��8�4���a�(�	E�=��n\4���SX&��w��T��6=�ӑ�������Yvo���욲ڢ��?���������y�<��Fs��X�ޫ��p�<o6�,3�>�3Q_\Uܶ��eIsP(���p�[Y�m�\zip�G>�6o|��v��ݫ�ȃx���Hwx�IJ�Q$�*c�|�ZBSʳr����_�	��t���B[��Q́����F��&��F��D�Ǧ���ݵ>�F�F^n�4Ļ���H��dZg03�����LE��-6tmYQ�y��[���n��[uZ�]�k�]������O-�\J�XwP4�Q��g�8�vi"3��b����N��~S��Q��K.���B.S(W�����b�
��d'~L��Y��R4@�lm$�����/����kmȕ�X�_51�
i���sQ�����u ��Pf���������`�>y�It��/�&N��K4���G��K�� �a��t�=��K��2��A≫
���l�6��Q����K'�?���
�ݛ�R:!+<y=C�HIޔ��-}P&��{�&�Z��{�aV� ꒡p(�j��쎒�,7[��K�8K��J�-�UY�̢̧�=���b�WJK��U�3�~�cD�/�fO�~ԉW�aj[A
+8�-$1�,q��'�3�A�#��	�<��a�#��Φ��Χ�ܶDـ��Y~�h��yu���&����a��?�e3(A'A��Z��qP�N��$��n�6Q�#�n������,�t:3��aM�7���,�U��Y�ut�l���������Q��x\��GF�HmI�cԡN��IC|`�a"�3��꟔_~��ק��l�A4_��˗
܎)f���[*,�o��C'o8��q��	�M���}�����ѵ�~�ʿv�
o�8^��q�g������"b�P�`�q)զ]�z0s�o���ؖD�\���3'��`�P������‚�p8���T?�æ����"���n%�����W���bPI��%���b���zB���7%I��/���ĕ㓑5�M��)k�S�h�ˍ
��1)T'���Iu!�؀K��N>t�³�BGw���$Iz�5��08�;6
o��b��-��b!�B�6�� uٳϢ��)
�)�e�g���K�Y@��\͍4�VB���}��f�$��9�z��x+C�#�…{
�i������<�A���ǜ�J=żT�g�յ4�k�B�(g�j�t7Lp�:�d<È��So^�,��齺��S
v�5k�u&sQ����9Q�c��s�F�l��ǜ��-�	�EЈ���`s5�Dr�Yu����o{���wi�g�����a��m��j
`��I���hf܄v�SWzM?�6�YNB�&C�m�
����@S���Y:�h�k�]һ 0��b_c�␾�_]����|Ik�:�dMZ��#�kv:�##^55�ZO]��ƬN�gc�D��#���5XJx��b<VDz/ql��v�:�Nk�(�>[�ZBPCcH�TT� 9F�Xe�*:��~g��b��m�Q(�-��D�6n�]]}�o�
�#�˧�Q������A������?�����W&��M�d8��qW�������а�cۼIS�@�.js�1����/����1����������
��9�l\>�$��6��e��b��/_�S�f��'�{n�,8>;�l�����O��0�0-q�`@�6��m5
zԡ���wգ��2���ӝ�X㬞�V�K�u�y�cRT��9��|�b��$�O�m���k��Ǥ�%�̣��bgD�ܣ/<�/��_ʷ�_}�~P�D�x5�(�߿|��o��m��C�٫��g��ߤ�俾�
�F~VY�C��N$�m�k/4U9�'(h, 6�q�p��i�ĢU,�i8hx�k#��9�dwz-�]�|V�ٲY>��rI�@�ڒ���\0׷�˷�D]�}JNJ9���W.h���,cи���	�H��%,g5<R���آ�t�p���,G-�޽c�5�'��Z���)��>���Px� j��̭�fvU\�hH[��m�\h��5��՘�;;9�i�6_�Q��}֢��c&���;ڢ���1��9-}>�W��Ab�
�.c)�In%�UD���>��,�/h�021�:�AJ1{+��������[�{��q��`�)���~�jo��cG����j��1iL�	�b�*�i�dS!2}���5c�����a2�Z��l��d��iˊ9KqsT��ɴ�;;��afT��U>���%�+k��b���GY���jQ��,VC�j)�[eP�����G<����\�x�՞[�]�jt=�~'}�����6*�#A�8����ϭT�2�
�X���bK��p��D�Z�(�����׷���e�!�?�����x�2�K-_ȥ� �5‚���Ap���~Uj�,{��?���?�Z/���g�o�~�ڒ�����[
"m�'N:����L�a:����h�x�>�,j�Q����
�8�;Ѡ;�_�+B��U�����۴�}���K�Pkj6u���O{�{�i�I=
�?��s~����^�X����@����,h*�*#���Q԰��Q��3aXHp)Brk�$,1J=�$�����_ߥ9���$�t�0��us0�(L�L>��(�U�3'�)˲��X�|bk�{.�$�#��{��b�*��M
3R*���V��.+��r?Q~{���3F���O��]��j\��x�	�_�b}�*JpPh���=�->"�WT������>��#��БZ: a�^�a"�/�9��$����3yɘH�y����❕�;�/)��������a��Pp-��YVt�E�z�����k;K�KC�m�?���9��i�N_u"��iS���"b��Pɦ��˿	��w:�W(x�7��(c�غ��D��d��b
Q�"!�2��4�:��n�H��%Ux;�R<�4�~�:w�C��������r\3��������2;^q���]��9�;�ʉ��4�q���6{��;���������-g����*����{���t�G�w�GUe��{�{�7�f��'3���N���zh�w	 ahb��(Qv,(�Y�ZP��ς����� s���L�t?��?0���}��s�9�eq�r��>��rt<�gn)�Ȼ=!^�?TG/�J�鹠b��{5ق&�:"@�vd_Ү�C���i�I��M��@%����})6��~Z�s��yi��
�&��zåU���C�C��-F����
���uMΜ�|�:��AY���A)j!�ff���íYKl���dD��x��y8��%
�,�̓��Tj1E�xB!�D?A���Ax'�?���ą�h≩}�7��5[���X	����� ^n�T�?��A��M�����JY��δ��
rx5Ͽ9l�R'�5�����Ӹ,�\0���b�<��0J���$�0�6tϥ�Ly���+��@��۷���!�A'���+>A/����;w��S��@ʇ*���]N���r J=�R��ҵ�Ԟg�u�H(-�]�R���R�$l^����}��{���n�"<̩'��T]���Gh=�:6�'cğ0J��1�HC1��T��O�k��0�q�)�}F?H}wÊہ�
�4i؟�q�O�m�'���ێj��%#��=k3:��)%���ї�¾�袺�s�ql&�{��d��ܑ�xMJf�W8�O�
	��
%E��T
��O�'%�_�I�h�N��$t�Ϛ"������58>��s�dO2~�$��3џ�~�烌V�JLL��L�dR��Jj�ˡ\����䰼�N1=f21]8��GЋ���A���R�yã�[f��
��j�S�G����Z3GZ ]����&�D��� �g`6Ko��$XL��	����ZU�}xRy$��f��s�w�,��J���6�ؐ�R(���K |�F��K�dU����X�:4��r��i�8���Je�~Y�h���O!y�΢��R>�z�Vt��UG��V���w�<�����0v��&���7TG����8����Vl����Ƣ!;�^�8O�W/�&H#LD90((ѓ���?
�a��)A�m�!�L<|ئ���%\��ÌL4⏕`n�?`�������V�Wk���h��b�+i�Ś��b�%8t�i���5���@�/th��$�pK�套��s�����G�X����h%��bɻ�b�/u�5K:����`��Ěc�bֈ^�:Mžr�ݹ��׶gY5e�\pA:K#xs"��N�t;�f
d����B�C	3�v���Dk��/���U��1��ղ9GsX-B�����C<��27ǽ�� �M�.E�guL�͋\y��Y6��{�Zbu��y���E�5%���.wA�P3}�S�nc�e����z�5�2�QYͫx`�բ*'/Η���C�i�~��E�'`ciE�*������&9��ҞKA��#��
�\���:+/�c)q!�r�^=�{�p�n7�\ݱdq;������z������kڗ,\�Ր9�N.�N�[�EZ4��w^/<4�z29愘�+GU�=��0R=��9��#}�^�)t�r�����grt:��".����^Q~;���3�ʪr�mNEE�@~��}P�f\t�z���Mբ�I�`/81iS���N��M�PV�v�<_aO�6)��h��N�v�9dy�X�O�JA�1�`S�N�F�0d
���7�����`z�$�
8g0:�a�ї
���Z\f0<\o�����qg�~1�?8`|�l�"�[��nb�1 �Mys���B�'F~���Zb�vGN���u_f�͉�k�E�/���˚�>����6��D٘����HN �T1P>G��O��6g��\��=������WNe��qo�t#u�z�:J�O���'�)�%��A]4Q�WC���MR�&
�$%�j��¢
�7�Hl�%�Gm�P�P�F� ���@9sBM�\���+�,u�`4c�NZ#�,�U̥����.a�L��Q<4I&ũ1��@��aWN�]��P9�h�^^�=T0}�\��$y����'�Ѿ�Y!�aE�D��*��n�Ĉ\n�E���*���e����S���4Op����D��1���K��r�2B��}���qj���1�Ʀ/T���
7�8K�YY&�駵��l�W�S�J9�=�4OG�:�ٝf+\����*Z8�N�ʢ�g^�@��$�|%�-ϦWH�M��VLR:/Q�J�h{8�s*dX�J�5`��j�[p��k��&UY��b���d`l�&��L�S�Tr��@���t�ڞ�)�{i�E���ڲ��Z�w�:��0Th���	&�!̀\��V`)��;^��L1�C�|]ߢ����r.-��8��e�u�J�|�W>R���N��r �8x�A���#��b�+�<���SfL�M�6�e-��
!��d#_��Ԛ�Q&��q����qPB�k����A��(#Zq�Ɨ!���Jp��l"�1ײ�kI�ZV��p@�?-�=6�S��s���,��e:3���eZ5���R9+7�N�9��In�ۇםX��gCSٮ嫳lmu�
��,�3��m�9z��O�PEǰ�B^��r�������F&B^m�c� �r�4�s�ͅj�\�g1H9T1rFBC�Z��0JPh��w����an��]b�յ�P5��ނ�G���n��W��g��k�uʥC��?■�ͮ��|��@�-^%;��x>�@5e�yA�U�9��54mƄ�Wbp�\!,�G��hD"��	3!�
鄛HT\�6H8�`9L�E5t�V�\�)���{`��{����
ꔻ�@`N�����{��9�瞞ݷ�v5�ٛ:W�nY�u?={���%�1�4*ve\{z�?gm��e&��b+hP��9B��{�
O�Q,m��ճ�U[`l�\5zH�ṽu�=���`��zr�������X
~�UӚ
�gv�^5y�#�Q(2'}CW��Ks륊�O6��7�Րo6k��C��D��&PS���<�J�N��,\ՅDe�PZC1$ӡ� *r���1ѽ�c�ȅOQe�4}�TB��%"�9:���v̀��OHn! ˆ�"B]b���	��PIH'h�$tl$gup;0y�\#��0�¸iI�q�Z����!����-z9$Ey�(�WȬi�����*/c�[4��\6����P��u𹚫��H53�g=>㯳�X�N�o�Q�5���\�8<��O�n�����}�թN��h
f ft+x��2�����mS4���8�vו2�
)ѻ����$:(��Z�1��F������bpB�2k��Yc�ÐQ+Ꮏ�n�#�4w��ݩ�/��+�kO�T=�#�ʶN��=;��3��3�Q�
@&.֯ɗ/�oD�{����L��=a���M�M=I�����;�eχ,'���d<�FO�c�J��wy^��@��L�{��i׼���ɥa��r�q�SY��<�.��'\�J2���+��]>(E��5�^B�K�1��g��Հ�bAt������p��7o�C/�Ҳ�j8�Q��Q��ޢ>”�Y�nPj.����$Qlw�����[�Dž@>����|���rF�R�=�v�?$k�sH
�L�k꿿��
�N	�\|D g������C ]<xF�L��_�=�	�g�L/ۅGI��^�TGd�e!�ɐ�2e���Ӻu�}��9�qt�t�;�GT�{����Z�DIA���I�ɓ��'�n���L�S���h��|�	_D_1 ���FO,*������4&0�4�	�aDr
�g�ส����غ��7��eS�pW-���5���_�ԧ���m0�j\�rM+9�3ZG5mj!&\9�m�ޡ�xK�X��E{��W,�����҂*��s��1�\~�m~e�-K�q�ޥsV�7�]�����E��,�/p���ț������g��K��C����S���u߮���׿�{]��^�>�ݭ�~wS$cw��T<б�|�"QDRMc����jI�d*Y�N5����~w��Q�Hպ�A�k�3��`�$0	��t1B�(_�%�Z��U�h*\��Tz�R׋Py��Rя�9�h����`A����s�d�Ӭb ��ဟRX|�
N�j��hZ��; �'���h0{*�A��Z+�ehȦ��`�<����r�����^P����Hm˄V���}��T��WkO��' �#gm��k�O���W.���Q���ZQ����{�p������=4A6
Ҙ‹B�3?��#9���Db%>O�Cxu�'@<�����>W�8���-{�j��>���9أW�9�.Yz&�o����m�C}�s�1��e5�\Z<rI�)u+�Z�ǹ�/���M�7��/o���Թ���}蹡���Ѱn��YV
[3�ܖ����L�����\�����[ 
�/�)UC���2�x���&�#fz�QJŽ�m`ݲ�k燚G�>|犩��]�C�-`���.��*����
�4�5��K��}_.]|[NIw��z�������d��6?rp����%�K끼5�kq��Ag�Z �3�g!B��E	��R�Ǖ�>C�l)I���]{�k�m;���sZ���=-�C��s�[����֯{l���|~󪧭�[�OV�ƀ�#@��I�k�<��I�{wKk�[�V�?Z�����E?��oxtϥ��A�� E?P��R�>
Tk	�l�R"7(�/��C��m�Ue�@$��8��} ��,�	a�[ҳxq�^�Q:�ZRP��j�Vu�t��%n�2�f9��ر]7�~,�U�����n�6c�6:�g���ѫ����+-.?�M�&��fv߱����s#zV�wq:꙱m۫۷��c$_�g)��O&�&�\@�b�d�3�4�n�'B�X̡�<i �!�h%�D�ĩY.�St A��8��Mt���x�+8�����P3��M3�� '�
�F�<�,�o���w���R����dž����Wd)����+L����Ӥ����>����1�R�;�q�"��LN�,`/m�O䔰m�8���F0�V���\6&�������yhM&��t�3J0��`���g�����@���5��zzX�—#�Ն1�o�ԠRڮ�T�}�V*�y���p-����"D$ן2�pԓ1 �8��G����0��7O��y#��xh��(���������>
��M�s�wL��iw��:&m�H����)�yi�*F)�I�$q�����K��wN^�~2��I�����6JU`>�u���<����I{�2��Yp���)\֤M}��$/p��3�7��`r�$����k�㹗8AȬ�UP��L`��}�QLda��~��TW�l�i	�f�Gџ0Q"�쉠
E��oE�V���-ȃ�Ǘ�1I`�|�؁����%Aݶ�����8���C���D�À��H�R��.L4I���f��N�H�Ry����K3�{>0P5m��h��9v��y����ռ��%��M��|Vεz0�cQ[}��У��cvg��-�����3���盲��^Y��)��Vؿ�娢V�ԳV��B��a�\��Α���.ї-�&<���_6��0�¡��0z�̈���B�@�}
��0�g�I=�FS]�+(��]`��\x�����\J��
K<�WRC�Q�4j:�s�ۨ�ۨ�T/�.�Ez����Gq3���h�9�< Fv��Ķ7a&�8�P����3���(���e�ӊ;8�sd���g$�"ٔ�0&FD��2@�l��D�i�az��s�B�x�_�o�:�@	B
Z�IH�\�V��Jf9
�J����\!��2ٙ/��:T��٠Tf6ˤ�v�jUȡ���f3T��F������ �����(��KZN>��R�q�bN3�8��ʔ�ʗ5
f	�j�A3]�֚�@�Z��Oj�M$%��RN
�Y���[�w��z�t��e�r�Z������l�JYV�����9��q*� �N&[��5���L��[2<2?��K����l�*�}*�g?je܏�Id���?r
��`�^1�}/U�߃wyE�|k4~N�T��~��Wr�Z�@
�څ_(�Z���V���T�%��ZZ#�X�>u㲻�^Eo2˽�T����'��v�����	<Ր�*`��c�N-FK�+���P���
��W�A�v4?JScF�'�c�7���3 ���SR��Ӏ�\��Q>j2;�ⱳ�I�ܯ3s:�,([.�edW��=s
~��=; �!F�Kl*`D��ǯ���P 1�I����𿐁�I����
�Ș,a�8���p�c3X)W�W�`:�5KQy��7��j$uE��|p�M�5*`�l�h��$��J�6�R/#�������4*�8B��ݺ�ؖ���WX.m)R3�fa�-�v4�+�JP�<�g(b�v��#l.�؄�+�a���攀��³�eGw_���HXc,�@�u���-���ѫs:�f��p{����(nX8fQ����:����h�o�6���֏E��:�~�D|%�5V'���8��jK�mڿ/�ѐ�K'��oB�vNg!d��K�uK��,`�靿�����|��Zh�����Q��f$�v�,�>��%F������v��ځ���'�C7�8-6��F�
�@���6��a�Y9�_��,G�o���Чͳ%�{#Q�kA6>��oh���ͻ�㥌��d�����͟���_G����蓌���/t�k`�R�Ӎ)
��|:2r	�⯿s<�ʖ����5E躉�]���]Z�m/x�Ɯ�����O�	X�R����\�r��o�yt�X�Q]��$��^����Ӎi���ܠ���*�nR� gf�5�/C�7A5(�1���������G��u@����|,J�$�4
�DI������ID�m��x��8=9��="�zc�����q2���wНv�ȅGZ�5�5��!��_�u��*�Zm�ߴN3^#�7$��Q��LZu%!^AI1)��91�C|G�D�M��߰A7Y݌:֨�n;VB�������NRS�q%y��o|�&5ز��g��t1��cL���0�o�1Cٍe��^w�>����½!6�jf4��K��	Gzi��d�ߴ���L]���/y �r�E��F�~ӛU�Q@�߉��`��1q��Uwb���\L(�bY�����%�)�
Z��Rlҿ��˪��0-Wi�UФ�I�S��+�_!���y���]����+���r�=`�'tv7{�������}��1���{\ǃ��$
��c�ϜZ��;
�;usg,�kv۸U��߻|�oz�r��PQ�w�Gb�����
���"]lɵ\��{h7���{�‡{8ֻo=`����#�vN���_�2}N��$�sSz̙Z	6t6��@f��n:6�i�!�T��$"�W8=�����(}�mZ�x}}5hK�ż�{�8P�޾7�yƾ7�^:�8,B����7l�{�8���O<�Ĥ��lt	�j��C`�)7�a�9��J��l��6C/��?4g�Z�+q�+�Ia���Ʌ��������q&�g����w���.���yE�Z�EW~q7������K&*�/��:�;,w��oܳ����eCk��5�7��n��u��g͵�&շ��7����ڱ�f�}����?��u���P��;�o>r;��N�}�z�t�Pu]C<֘���јs�Uۧ.����
��o bo���?�7�g�W�� ,I�$Z*�!N�|˲f<s&|헪��m�����:�?������^K���g<���CB]DSX�I*᪤�hs�9!?+K��_���_�%9����@�s
Nz��O|��j������ĕ�D�������A���i���������$���ڇ��~�>��z��Qtc���+���k����x>�7n�鸧��H1���L"�b�N65�|#.h��d
�`/�0�뉚�]R�>�[�K�����R;tHdNk�Vrh�*�<;?G��j3� d4���	ьi��1;����^C�g���&c�P��S��V�9y8xqcn���蒳�ѡϷ�]�j<B��Y+��<08Һu��%3\Nk��&�,�5��E���O>^���	�閪�8�����w<:ml튵ݳGV�t*�魏�7Ϛ�q0J����g�!�=B_Sb>7L�S���*�J�&�o#�'����q��&���]+F.O��	s��!����qLCDk�tK���||<Q����~J����%�� U�Z�+P�a�8�<5xz���y�μ���ե�6�d/�6���w�Xi�<t�ۥu��o��[��Z�/w��΢��%E�e��R�?���W�� �h\��z�SWJ�}e�@��Vf7��:xW���$7)�{t�֓�Et�xr�֓�t�ʓ�]d�̪��u�[)�'o���%�C��C��Rnj��_ރoI�rL�=e8�=gLN���;�������h�($Mj��Q��\�������19���z����:�)�t�^�=�QZ�	zpƽ9c����ɶ|Z��b��dY��T� j.��h7DJ���)��2j�F��O^��d8�P��
����7lLč���1I#n��5�peZ�����.PaӤ��f��[[��me��1�+�ًÍ-�'����ŭ���+!���]x���ds�k�J?���{ӻK���բ!ő�b8c�H�d}M-�9zTg4p�ӹdLd���5�,t`V~�O{��Vͺ-yR�%�-�jO�MfsZ��2v|�u,��e4�����O��X|����CGl�����ZA�z��ĿMV$ #C�. ��F��+�&��K����#Z��(Q�T��.�
����D��U�ΐ��?8���X�vP�s�;ֆC��nj��vZ}I�
5C�<wMW�4�ć�!'
�]�qJ!g��]��K�ה�G��J}�VV�>���4c�LzbU�[���)���3K�!w����Y�޶��o������X�q��¾���é���	�[�?�b(\�5�La�乖�/{�s�a��t���q�/�Rˀ�Ɠ���/�=����V�!疕��	�r�R�|��B�DP�xt���|߳eg)����V��A"#�^A����qF��$ڻ"��d���b&B��%�+�ձ�����a�6��U���{�����n�m0�Y�o��M}4�Ғ|�y|*������I{���6�b=�}
��6d1y�ݰ��=���s�/�}q���U�|gF���OS��1�
j~��;q/^��u� 5�eZ�XnK�Dk��c`LSU���xM��֔v)#(���&:�!��PU����Ԥ:��ˮ>�eKqGe��6(ABO3�cC~�QgTh&�*�F&��ak�[:�V#U�J���5.Ugp+*�¢�*���f����=�c(ך��W����1^��4���٠.Q�K�� w�ƐetC��<�(�a,��z�B��0�������V<[M��>CwUc:�y'܃i���9�}��^<� C��08C\�OPE��^1��sZ�R5��Hvn}}n6m����p�b1,	��P	��������؊����������A�1���e�Wv5�wǽ����#
��h�#/����_]�ps3:��������u�8��i�fٟ�>�0��[�v۶�D��Y�4���a�g
�"DR�9K�v���H�R�]�S�Pŷz�Jƛ�3�в
����?X§)�V�F���1�I��o���0O����%�eœh�yw����	x������A�;�2ބ���I�>��g�vz
�_�a�p����^�i5��ҕp}��ϛwJ�9���ˉ�lԔV�4��W5q��H�>.{�C[�|_B�>�N�=�^[��r����9�^5b�U�Ιv��J��ڂ�k�|�߰8��Ng��NJh��J����,�J��A��9���*��r��D��x��0s��{P�6_WF����j��pm8Ϛl#�)k��u?���!K�́�Г��
V�{=��ӓi�3a��3�	`�F�`v�i�n`�n7�<2n���7�un�h�C�"�$T/^B��dG�#�y�Yl޼r�U 5)� ����������嘭���C�/Y�Z��,�[,�r�ͱZ����h��XqE�~D�jŗ�=�k����q�W[Y�$9.��v1r�q�j�3�܈�m7�%���q\���b�r��2:�.�G�!�D�8��<��%r�ըר�i��^��`:�X����+�r:]�<c�r6� ��yi���䜂��?D��E;�x6��@K��Ih�u���϶��aں��q�V-���6u��U;����V�3���V��Z��������G�>E
�;B4�����1zb�_h
{b��#g�¼��p9�t�(��J��8!�RY'�%��saX{�D_�!"8�d����r50�.&ʷӾ�6��ې������9�p:��X�	�q�w�3Ϡ��h��u8�e�D0�7D{ s&B�yf��th�sȤ��'�7VT����
l�L������.�/!�”��.7����5��^����FV�=.H*�^W�R�֮,_�0.�iW�]��ee+�ܸ���&��w��o]M�P��{�(a�W���80�=���p���\�����qZkք�΁���w��3�V]��"�K��f��E����J���ne��*����k��T�7�*��>q{-��ȕ*��Ln�w��WX�r��.� �ҫ�.��z���=���b6���9b��X`-���Q�
�@�w�����?qm��Ep_���|#�KW�W�%eB�3µ{ҷ��e(�K@ږ��˃K{�[@ Ǹys0df		��Q�9��)��8��{!�����p笯k.�U}�>�}�kk�׳v�@�՗.�q٥W�&���o����E�3C^?C�?�G[��۷��={b<}��a��A�� ���ui���������p�(u����iW����2JM�_+��X	���^]��"�~ǡ@�)��<��MN=�B�ó�M-�L!�mL!]�}�c@���ж���\��%��:����%K��o�`���*�*�|3�*]I˰��@��uXK	{��(|I|�~�_� hq���%� A_&A%D̠ڍ��ޠ-hCxB>�Y����3�=��8�:Y�7bzS8?%,���S���/�ҋ^$(3H�ݝ��H�
��$��#�BL�*��f@��p��O ���UF����ٳ\��@ݟ����� ��e
�
E��H����q��uA�o=���S��g���DQ.����b�&.�{���f�׋�w	Z���%��0���.7�s�?��?���~���u�?s�Ȋ�	�'D�;F�F�����El��188:����UgFͯ_6�m�0c��YV7w�U֜��'70�6L6�rh��+F�Z�|T��~����815��5ipM��V���OKZ�۲s6���ž���b����D
��K�읁;���!�f
I5k�%��f�poZNK�$p�܉���7&�x8"~����}���3c@�qL4����GK2m�
<J~))��g�y�8s_�����#���g{�œ`.��ڨ�d����"J�ϐD��1��x1"".@�P��9�~����O����QO�mUP���h��P��O����
*4�V�}]�}���JV����7�l�˸{����B5���寷I�N���].�g����[h���`����/����]�����,�lr�ƨT˛k�2y�dB��H�㍰թ��rё��
j�[�c����	��eЍ�c|��I�O����!��E#�� )����Kx���2��_��$ϳ}�S>L��5��	T�N�y���#4��I���� <1�BD��,5X
a���y���$y�R��c����T��P��YL�єP�����Z�Wfj��z�A�3��*S��Us(�go����.K�Z�!���Jڊ&A� 0���%Έ��-B:�)NゝKg��u\6��߸~��-o��_��wSg�+��g��g�C�.�f�$����]H�x�G�h�c
�n���@d���V�`����2���]z��uܸV�J�h�s��UW���+�w��,W�D���}�n���O���Ӥ т�f�}́R�j5��Nͧ��y�O8�<lH�.�6�N;@{ ��È^x]8!�D�h"=�eN��2�3�x,>
I����$�,>�扵��pB��]41����+�R���KH���)'!G��,�~%!�z��}���< A���
 ��&�d!�t2�B�	��&Jd4�1Q���4y�A�I@6d=c��2��/c����~�{V̢4�������Wwv��Ñ@������|'�]_41�z�J������qKOtT����)��j$4�+���ӎ0�K��Q�1��sm|�~2���k����<L�*3�{ �̟��t<��$E�4�ou�ఇ�.T��k��@�/n�H�9��� ׇ���̙ـ޷�`x-�m�K�.�]g�àD�C���<��'�Ap-:���bxJ��qh-,�
��Z�̀f���h7��,��8�z�	b��ҸorL@p�G�}�`)B����0g�������w�f��h"j2G/��ܓW�KhFI+Oo,WԢ�!H�:��![l�pϠ�5{�Q��i2��m�^S�W\�׀�d���}ﲚ��-%?�I����.�g�+A(�>5�oZ�DnH�����g
1���,��:/X9c^��k4y�UzK<u���L?F�+�MK�k�\*J�bN�	fS����^�)���P+n�J�Ɓ5�j��q΁�� �'$Po��aȤ������@4�3F�0F|K�1s4AsA���H4/)�\�E�%�B}��cĹ�����
y��4O�ő���Zl6�������IQ"��r��c|Ւh�	���%PL6��;I�9!�
��%�6y��d�y�H;c�E�B�N�sw�W1�3C�I�p�oz^�tf&��Ȗ�
0��	�'�p5"���ϔ�M���bĈ+�̹)�i�;�M��~����6N��)yӜ#$���7������+����a���	(���gL&^o2�ypW%���0}��O��f�+љ$�Ȟ;`�P	��G\Nk�F�h\.���qp:u6�hġy�Pm��
J���*TY�V���qz6JU*����pg:�!�Ǥ���L�&���rʥ2�>�q�j�No6�y����u�4vg(�t����N')&]�tjJC!�S�F4�!�H!C3�Ą'$O={�b���j6i���A�9C�N��@������<Rb�l\��8M�*�A�R�2H�Y@ZA��-V=o��V��������C�n�3���,�v�0��56h
���@F�QX���uj�΢�r�*{v��*�=��
�&�G��[|�����-J���̥Vg��n\=ؐ]�m��#-�� �CA�0��
D���\ dz����RӨyx&�����Y�rHa��!�Cx]�9<��!��
)�Q��q-�*A��V�eЩ���s�B@�D�'��K�@Tм"���Bj��J����|]�jN��1|ʔ�JW]��N8�v����.˫����Td����@vqMMAn0n�=�9���nz݋I<�`��v͛���w����V,]��)��}nKu��:�&~�&Z[�ωV�S�c{��V��\�<	=����
��z��h�$¾l�J�4�y�ڪ��@]��!�j��cf�I�	�۱ᚢ |��t��9q�'+�,m.C�]�m+,A�m��3�Ҷ�R�{|$举��AL��1��xs�é	�Q�oxg��A
�FQ|4d2��Z�3���7O@<��q��BF_��x��E�	`P3� �C&��	\���E�����txa4s=&����L��g���TH�^!��B�y��s�'� Ẹ���B�IO��6H8pb�t
�(AD'���h!�Lv�<&Ap;0A�+Q��D�o��@�(��IyD:�h]�9����
��"!�Nl�|X��t��j���Q#��'�cD.������L���&o�n�6]�uɼѭp�B簄,ٲu�#�R�i�xk!���=7�Ⱦ+��Eք�=~�:�r`6�f��YK��>q�z�|jP���8uMn�˦{��n�2�z$aF/�K�17~��;��D�1c��A����2�=��|�ɪ��x��\T�>�m�:��V�����b̗����o�}Y��n��[�7��}_Yj/��c
�������7N\��v�u؆-5\�ƭ�I�~�ĩ�/��,H]>|xq"�v��JϠ��
|�.(D߼��*+��੧R�\���N�?��h�p��;�$�O�UU��Ӂz�Y��������&�7uj^�c`+)��4�������U��3ұ�sX&�:��t�q�{,8�q�d>�I�M�L]��Z��
�E�M��1�V���C9eV�H꙾r�J	XE�E
�֣o_��r�Uxv��|0�'�5�#G�T�O�|x\��.��P������ި�D�K�8�ć���GK��g�d,�Xo�3.A	�5 $@���k3�7_� ��c%ByN�;I�p�M����h��Z��UT�M6��;�$��=��=<�RI��R�5�c��X6IQ��!3�;*��j����
n^��JC��C���Y���z�A�H����El��E�z@.�Y!��ᩡl�I����%�����Y�@Գ2��+���^�����D*��ԿV"���h��2-0�e򽻴2.��tKUr�]�����U��т�@�@]��������b��ҿk�5���ԥ���-�:�TB�����
�nz��҈܄�
�n"������(E�.VX��䫋\I^X�+�PM2q��2$��E��)�2����(O\"�DO}Q���
���:Z��B�"g�[?�kDQ3[]����Ь�,e�R��*��7�jw킗��Ƥ�w��FF�P^A}AA=�pQdrע�ļ�ڲ��3�3<�KZ5(�p���iE�UeR�<�Y�PSy�Emֺ���فl�[�ոD:�F�]��\�%��t��e��=���겒����nEix�ܹ}���v�de"<���j��y��Ԙ'�VB	� +�ͤ��~p���c��2�D`J[����f����^��D�^b������zw'�V[1:k6������Q8�4�W��9ii{�t�s1p΁��WKZ���9�Z��ْZ�]v�>)�w��gys&�p߷W���7�z��0	��D{�s�a�tD�����]3jA��%<A:�'���b��*CS?�s�2��"�7�;��U��Q����_|��fڂ(J�Z��7<�S�^枮���l�_Ε �C�w�0��D��_�	�f�
�ė���q����.�40�:z�89zA�ы��.с� p�&M[Ԇ�4M ��@A�����0��e2e;q��e�e#駄��()	ܭ�e�'h:]9D��.��PNު��R��O:(̺�KW�����׽#gw�j�k7
��'�7^#����~MG]i����ׁVf���P�m�-~r�r�8���5-��rx5��*���l�Y�l�g��֯^@��=q�Mx�$eq��R��d�$p���r�~c���Ӫ�O��
K��\3L�sS
lɾɷ?��o[�^�
 c��R�d�Y��q�Eh?z?�	��M�-P>���������SVW-80�{��Wt�N�B�D���[�����|�D�`��-��
�BU��0�?1�D�ɠ�X�T�Fv�K�R�8�������|dO�2i�M�A�<�xaC<��2FI��ϑ�(����
�^?K�&p�\1m�G��^����^	u�4�98�r�l�P�DŽ�Bڜ�'�����Ȑ ��N����^;��L��h�]�D5#�47�2uպ�'�u}O�����/k�[Z�5�Vk��ֺ�Ys$Ԥ��q���L8�>9
6��ز�4�O�Iw��������I~�y��~4=�:"`h��0*� �6���4`��F��)b�r���#��!�f��"G#jS1�s2�_F8���t�r}������]Fs���u9��b�W�������&S���e!��n�%~����g�!��a�����?F�D��[�&����N��תM8�!�
!P�+�:lb�mV������̯�ֶ�s�Y���[�cD󂼊%t��H�@`������u*	za-�N2T_⾗���+��Z�R���>�Y-�{���=MA�<�ɭ���;�����S�;xށ��>\�23��[�'��4�'��͝y6�d��F�[Ha��,��rTH�*��OQW/J��UZ�<�֋�p�uB�L!�LH����Q�X��P���u�%!�]��D��kա�m["��)���\0$��R.w��`б�s�Z"e�bEVŸ�]�ӭ��(���8�&t���{�+s�^7{lyEN����K�5c�5�*���.J���`s�����Z�ϙmW�'|�������/w��;.��Ѯ�����x�`�m����i3._�#�����,�9�bn�Vw�~�6�(���b#0֟��d�D�0T�پ�0)�H�-^�L��*K��l�D?t�0̹�Ep�|��e,��u��O
�=���k�v�g8b#+�6��B��'G�|b�Lzp�ӓ�ʜ%���?����ϔ�O�����3�<?'����R@�F��;
K�9m�8�T�ȶ��M�bHq�S3��'_b�,l�ಹ��_a�R>��1d�~r������Q�|ϻ~���!*L�G�Z<�C-�%<
2ɴ�x��X�n��W��<{�;dmKQ�U�&!h9W!s�Dߣ7��#�w_@�'��|�Ļ����_�������o����P����F����>�K��*��5D"ђ��b2x8��@������
Yx
�">�!���~�S�&�����J��Z4O���>ˑ�!��ټ��;�֗�� eM�kd�#�+���M�O��#@
*�)���T���=/���9�N��W
�� 	����1ń��A�)����_���$7��"���>s�Z�̔����JS���rm��X�ē��`����;o�]5'�\��G] O�3`T�D����.ķҕ�'13��0#�n�CX��o���a�.&�
��aH%
�&
� )���!i�-{�`D6��P	�f�ӌ���xI��;RRw%cÆŒ�N�^^n[^Y��
��օ+p��[�����0-�XE=J0#�,��!�1@Q����8T���� <��OF��z$����ܗC��5��{<��=d��L�.Bl���9`iĿI��}���?��ӟ%��q���9��?���6Enj�#���z��Lx�C߀;���w��>���#~!�?؄~<!v���C���q�_&`��f}󆂭t~5��d&{ZpNM�Wd]��i�V\WB�Q��F��ID�$��#N�$���5L����]q�PXT�M�jV�DI�h��>�d�]�2t��x�9>��>]��rհ"�0|�f�ڜ�
��;
�۬�n��-{�w*EXP*sǎ�pj9�V�8��j�h�J��G�;�H[K�·���%�';VW9���h��J
���w�TO��oϢ��1�����Ҿ�vi�r�e/g���}}?�\cS[ڲڧ��ѭ�5���^s�Z��1��8x��<�w�L��+����J(?
9ul��^O�r�N�p|b�Z[��z���>3��N�]�3�L�5i�'O�݅���$����#럍�8��\�|�Տ,t�����'
z�������"`�Հ�4,�{K}��;?}͍��^g��e5r[<4�����L�Lu���B�	�Н/�8�ԭ�kG�V�$��ʗ�͒<��p�X֢c\�?SP{��z����mZ��hH���Z�x��*�Rkj�JZ��;o�R%U�YOV�V�*_�_?M��̺�v�vqR��c =8���0���j�Y�3��}B�-�Ӎ��a{��- ���VTD�8h�{�}�
e���9�$!��[N��;��#�g�V�[�eɲ$W�Ȓl�e٘bl��f�馛N���$@BO�@�R)��0�KB
�A�8�4�\��Kli���J�l��}����������̛7o�<Pف��*aOiaZ6�$H4x��ڱ��U���Q\�֭���NEr/��ރ�IKIz'�bA�h��m��X��*
ĺOH��FK�$���*��B���S���[�:�7m���4m��[�s���,.���_㸯;�K�*+}p���Lv%}���-��i45c-B{
����
wÏv_�
_���u|i$���L����u��q�(��?�����q5��D5Ss���r�
�@�A�Q�QG�����ԓ����k�i�]�!�Ll�.�?��1���t�8J�mv?�	�:�����b��k
h�"�MN�'���@@g~΋V8&#c�x�F�2i��&�9�� ��n
�{�I�O�^ø����:�W�NL~1e֟e���{R��h�5p��lJgO듙s���[ �}6�dւmj�ܥ�wo��/�#n������X@�W��BM?W�Fg�oչ�
i���T��+�0Hi�H��E�dW�{���GX ~̺d}�{���Y������gft��u��a��K����(�ǖ��=�<�vG�5���>�D�NO�Ŧt�^��'��`���H�T.M�ҀF���-'�
�=I$��ݨP�Wش�Y0V3V"�ར�����4h=sF�1\�U�	��l�?|�U��'EX^*��Փb�h�V�
|�(��S1�6�mZ�y|�^�v��'�`K�€�,,,�/�_>�_G�_��?���)e�gΌ������1�(�;��	�xϯ��Mϯ��}���Bh�*�����
���!��(�0�zO�ެG��vJJ<{cyK1�qA|��^t��@K9�#����72����e����|�:�?\}c��`�G�0%S	��в��O?���\0�=C}%7�6�
O�uL:{g���p�1`]��L��K��X��c���r��,��w�'c�AL�� �����/?d�$��{mX����3x���9O�C��&~���Ϝ�bϞ/N�	�����W
�{�C�{�m߾�7[5�Ƽs��O�?�ӧ�,\������x�]�!.�g��R�ښY�:*�d���oarrs�3[�{VE�y����>����v�[���ˡo��XM@Z!��
�+V�x���V�4Fx��an�wud<�����,�>8d��7�[���1���j�:pBZ�����<��p	�"�}��C�}���7���~��?��*�LamI�FP$��~��S���jˣ
)UJ�S�T_��塈2���#�<��MͧQ˨��BoDz;��{���1�"X��$G�݀��L=���.������	��[��q���Xi�����ԧ"���o4y^��ȵ�������>�~f�3��B5S��~VrnV
�����n��#��~0,���/�x��聞�?^ԙ�3�e�/�]����wuow�$3��gbj�����4�ר7�!�*�Fyj�gQ�;����9�?�2�~~�hў�������tO:�)��t�=�'݃���=�=��Cu�Y4$�[����:���,	t�BoE�Ԙ����LoHMe@��-5��,B�o;�{���q^̍,f4&��v�p��h�Ȼv)��"<��
�'�*�|�0Nز�0[�JnEE.W����
:��LD�.��D��8�ߵ?O���DP�I1����We�s��烏�8�ba���v���zig��������k6~���[~��΍�����q�D��>M���f��U��^OM8�R����u���6.x~���j��T�A��k����Mg�z�և�:j崉a�U�����3�iP�R��t��LU�xY���`�(��@|R��*���EDzgcg�@�
��'uA`�2+���,vЋ�ć/	D�t�U�wm���Kb��I"��et�'��&�d���{��b���D�r�RINf��$U`�>��[�2ThӌN�Յk��-��z�*�FO<����(��:s��X��v7b2u����Tt�\k�.��7�ǻt(���?���GC�߱7N9�5C�t����%��igC��̉g�S`/�@χ�U0>��`;lc�(��������|0��v0���:Җi#!5�a��
�*:���0,����O <R�|M���YJ���)llj*������S��nE�뇀`�O��Do�k��ͨC�b
��+��z%089�fx���1Æi��a�P��p�_�?�=/!U���z2,l�OZ��t�9���@`������~��m�nC�N�NPf.���l/�I���M���l��LX��\ܗKj)E�u�%u*bN �c� 7��kg1( �;�p{1��-�g1�@�\����2t��	7D�	P4-�oo�'�)%z�2���9�L�5)2<:�B&�)�:O�¤������T�]�E�ݶK����~�M�[�uN�9�\[F_���)6T��V��p�H��tK�u4�ӬV��<k��z^βɎ���tG2��y=���<�H"Go������1o��J($�g��fwd;�Ag��`viI��!����;�oE��q�-��EIc�
�(!"PG����in�Mv/���^;��1�b�Mx�	q���"���3��&�8*�^���|��ҿi�3�շS^W���Yb�iJn*M-��ű���]�o�.e��_����k=e�o:�Z���
��…����2w�����/�����/ץ���y�ԥ��yV��2s����:Q�b���9?͖�VtX�JOq{̿���;τv���yhOÈ�l�,oe�'t�ALAV��qҩ��1��ʳ?��Ϯ�Z���9����eM��*�L^w�©u���,m*3�ql�����U0�2�'�z�>��6_W����ʧU�;�(+��4%ɤfei�^o�H���$S���;�C�!;��竭�>��N�5)D{ʎ!�K�}� �rљ��y�V��Ќ�w�1�H�d�����e�;����N
\��D�FC�hW��vπw�;ty���9rӹ�p��\;�>#�~��`�)��a��h��Z�b��iz�Y�jq�;~���\l��ЛS����+�rjB���k���oPl���
�)^��NA]'ޮ�h�}��f�"�c����.�!��ok岭�o<���PB��{?L�'�Eԗ�
�D��	�=���]*�.�g�����J�Ŷ��}Bo�t��&�&��
e��\��E^׭{��/�NK޽��DX9#^4x�C_
jK"���w���C��j�M{��.��(,����ր���+M�sQD�Q��c�T�P^/4�y5���@^+/��'w��4}
����Zsũ���"�`W%��
�y��GIpC���0��:E?kݺY��Ɏ+	U"���5U�@��Sx�W�����.�0p���Ka����X}����:���]z����I��nN�6����C�̦�߾uQ'�|䘔U��V�є���N���=�?��v7�	9l�&m�O�N�b��{#p���G^]<Mb�H�d�|r!��q��؍1�����a+�n�a�|)�S��Z6�>/��	�SJV������N\�*��T-�@vf���V��O��!h�4Rh�t��LaH\d�,�Ӏ"F�'aKDP��o�(�z�
p�=��c��wd7b]Z�8p`�"2����X��:�"�ŋ��׃�'��H�����-2����s֯�{�/�Ǿh{�ThrĐ��!CT0b����/��b�
����	Ԝ[�9�>�(^��0a�tv�av؀ńQ1�So4�V�x��E
�Nl�n=��˜z�x�ϒ��Œ;�ؼ��Ѥ�$���.	)����_$��1(�}�5$ӊE��P۔��&�~F̩��8���ޫ�`(1���E(ѻ��&�G"�T��¹|���b,i��(��(��1��8��W����0w#BS��GX��K�{_g�S�.�ф6��g?{i�֛��뷛��⥶�v=�vlTRa���dځӖ�Ȕ
��\v��힁���U�U7V͋ ����*5}�$2��uC0w�҇A�å�ήC�v��E���L�SY��>{�4&��<zq�D�ADh������B����>�~�MjF	%ۇt�_��O\�'�,}�%�l)��h�z�%ۺZ���y�I�F��]݂�Շ_�'��7~�U�)�<2N(�;h-��P�q�]�aV%�?y�y�N���M��	��َ��y[�{[�h�1r�#�}B+:>̮�ׅ���N �"
��	ܖ���7A�q0������t�#I�$O*}~�����T��w���D�E�	7^� ���ٝ�#D�(�%�M�*�6X>$�@p^ ���
��")	zA��G���%b�>�>�T�^}��;�
�O��ǘQ��;c-/
^��#7w�Vt	s&��G'*�-#�צ�����Q%��^M'p�c��"��-�W��+*m9z�LԎ�p�������힒�{ɑ]�}}��(�b��0}��;ax]����t�[)��Q��@��]�g�Д����vÉ7g�㮆�'fToJ�fȬ��"�R���ۚ�˫DŽ*
S?u�=95�j�U�!9F�9��j.��4�p|�P�{wΔ���"Nz(m�W`���yخ����`Ű���Kf�?~F��m(ȑX�0���s�r���6��D#�P2	�='����H���BL"�-0j�0d�NG����̏r�F=/�t��u�?�"J�u*���/�^]2Q.U�����ԩ�\��|�O�Y�w�/^���p�9�ߡ�%�Ԟ��v��%���(�-��FʋkB��e�Nk�=vuP37g���,��	�}��Q�įKL����Z��>��:M���N�⏆���/�"[I}II}{R…�w�u
�R�_����Kn��x�RFmX`HS]��}G�ŝ�-g(�K�qA��M�"�����qpn��8o|�5R�g����1:?M
�N���
<�/@����U=��x���oZ�N?䞧���m�Yq���o~Z�7�Z\�Cѝ���-�:�O����4��u����y��	��=Q��W\A�F[%2|���	�BbE�6RM�|u������B)�~]�T� ��u:�L�*|<��YR-fgg}����L�b�u�}�aLW�W�ЈR<v�3A/VK�	�"�������g�Ԥ���7�vDȉ��o�n��GC�#��&����}��?G�p�.�cF���x
v�n�Kp_w�}^������
�8
D�������P�X�@j�%C���H+�O�5�����8}ރ���,�ψ�!��Bp�����=��z����x�Zm�h3����@|ُĉ���7F��^��Qef���^XDŽ7���J|6��ީo.��9�4����O�˲|!�,
E�(�4
a+�[Kp�
^�Ŋ&^�j�Dth)�b!�72A��yc!��$��y��� D�#��4j�oH��Vp�	����ٖ�O'Go���Z�P��T��1;�!�*�7����
��9�t��/��W���ȩ��
Ze���n�ꪞ��vMOL�v��:{\�~K�����n���jj"�)���|o����x\W���a�4�I3rXڍ=1�]�	�f"!
V@��7����cۙ�.��⃴#❍B���8����xq;�[�/6��P���.���]�ĞC�>��1a�%O0�<�;�,�A[w��*�
X�'����!(�=��i��}��&?��#�^$	^�2)�m4��sD��E|g�P�b�2�Dq>�����n.*�?�W̸x��(Ļ8�s�D���SD<\��"�5�3PsA90�7�@�R���F�q1x�od�YХ&���]�b�nʁ�db��zy�a(r�j�~���}@��8��
��	>���>4��J�.]���R��RŨ�2��*F
A�6�r���]��eH}KK۔��J��ҡ�ObƆ�������L�
G�hN'%+Sx�̒jU�,�V/�}�2�D5�NwY8�G���,�Je���A�h*c�幔‚�����wޡ�.���0��{D�x��Sf�Ѣ��2�w�$�F�-�:W�Y\���D,o�Iy�ך��nN�I��	�,i��)�m�#Y�Ǫ��j�U�-3���Y$v�%%3�Z��p��V򒲗.#�cNf.�5��d�$��C}���,�KSצIX�$fX�͊D��M�^uV�J�0R���s0=t�@k�T�o��RZ$��b�X��*e�V�E�W��ϕ�5��T0��T��nk��ޑ
��7&�$2�iy�ThF7�����u�bqe�y�#l�R�*[)I����M��k\���a�#��u[�N^��3Vq�אnL��(v�\���f�T�GQ�I7p��=3?��קw�(sn�Y�IS��M�g''g��aFm�L*1��J�J�2U,��O����}}���]�&k9-��D�����i-%�}jS*0������XX���W��b%��c��R�LR)��$M�����NK�,N����c�إ�Udf��I��$�D�Ģ�*$R�� f�LM�Mu�LձK�7�)lJeh�Z%�V1՛
�ڒS��.u��4e��l�J=�RS�j>��r�l��ڮ��b���4����%ǎ-Y]�#�,E�J����؈�]?��S�gz-K���=��:�b�����+4�A|h��FCR�(��"���F'ch�)���=
Ejj�����R��7�﫧��W*J�o��J����L2�lX����B��a��a��r��:���Z�cůM��?�'�-�V���<C	�^%�y/�ϻ����v�YYL�� �A���iˤI[��&mij�S:{��=ܠ���?�3)���?gՠ��N���%r�|^���E�����$��$����Zo�I�IM���C�ͩ<4ƻx���ij�V[��{
���r�T�Zj��Bu�T���4�+��v4�{Y�X�;�	X����ڸͳ� ��	 ׈�_�l��X�l|��ن
��b��q(:�f��j�M�+g�:R�?�1T�l��J@�׿����+�&�9��s�>��x��n����]m�P��Q�Y��5eS��0� ��Ư_?^�:w.rMP	ToܞL"�ʛ_��b^��GS�7e�ZUd����<Z�i�׈<Ol�k}���VM�PŇ�&�jY
��V�����j��dI|���Q���2��=�`H7��E���R�("*E��z!�Խ���Q-m�*�8���Н�1�QK�OJ"��R0���,�cW"�a!(�赺��L����nb���ޖ�N&�N�3:�\��)��h��Vw&�@ѵ�6���i���l
��,��>
l�X�������>�ͧAGM1	������0�B�ǖ�c(B�0lEguKP��pl
G��»v��h[!A�9�v
qo9����b\����#�}v�@�0�4>���
B4ZQ)�?ݘ�:>�u��X� vn�(��z�HE�~���Jń�s�(�7Pz�Xx��@�?n;����E)҃�4�E�J��ACuJ�yc>,Fu�U��i���Z:^�����{��P?��cY�ոOB�k����3Xt�5�P��T�Er�ׁn�*~)pD�����M�0��;bMA�폨p�[인�ւ��	4��]�Lv�ky��4a.�YB\��UE/5lbK2#M%P��J����vW�θ��n�p�����k����'`�@��ɴ�`iʌP�W��8Ġl�%�t�	%ʌ�SQ~V����pj*���$�w��^#G���1i��6��}��"vw�"��b��<nc?��ͦN��i&�t�~�ؤ���֭��:f~Y�g�m�-Y�`�ΔisV��3mJA�Ų�ɹ���_3��YUj�B�$,8�;DQq�����ܓE�,X�6P�+��բR`_P̋'�4Y�{[�*�e�7-n���w��r���'PŠuw
��?�u��:0S*�{����?E<�y��N�!7�Pղ��A�&��1�6l�'o�5�=���C��oJ�2�����x
^~�	���[���Acb-��~6��?���������u������!X��燚�������G�cD�q��n��-���&�h��ˀ�Hp�����:EG+�n�!�.<����zMh���9�l��b�젮�@�ȑ��p,.��U�i7�e�Q��j.��`)Ƒ�t�;��h��yAP��IظLK�q!���"���zF�Z�c
J�g��4�����F7eV(���`1L^5��B�+�������ڽa�]�-���j�l�ԅ�:�[Ų!�}!b�(����8z)	���_J�|�}dR��*��jq�l�Ͻ���KϽ�Mv��Dg5�Z5��q��.\jm�Ek6��md|v4�MVlq�dvԵ���_<r��&��M�ל`Oy���E�~�vҙL:|�Ư�0��g͂�aG:v��p	(M�S�<�ӆ
?=�&��g���<2��j��z��N�n�߿�V[��0?H�l���nۂ��&U��>�zrMZښ�]�].����?+;�z�����#��#J���z�����~:��vv��ۻ������$���3�1�~e�����ݹ�+t��J�G;�I	���mW�y�ؤ�q�k�*�dƜ^VX_<:7''wtq}aY��a#����TH��3:��#C�y�V��Z�Wj��U֕�?��;A�Y|�.d�7�R]���&�ODh<*z@��	i݉Aw�N�A�%L
@�v�I0�c���*�T����.3����9R[�VJЩ���,��՜�b��M1W�R
�߫�>EƉ�N,�`õ��>U8�z����/{��2�3Y��h�확b��^�āpQ����{�/�RX��_߲d8Ȭ��6e;���зk��	}�B
r�fq� � �Hˠf�ŬD	�ζ��%�,�Ĭ��m
?sx\��j\�W�W�UqC�S�~����m�lY��3M�>�q����s3`ػo���SL�4.\剶�jl��u�[��I��77쵥������������S4�m3�23��ȧ�ꑳ�����lg��@��͢��؏1��W��%`T�;�����ω�
�ExC�t�#�8*g��3�0Gx{�!w>滢x�i$�pl�ɣ�`
;f��7kA��fy���h�3>>��G�U�4V��O-����H�M֌o�K����<'���)m��?����%�{[2p������;��>κ��K���>�e}��}����ڸ�0�D���2`�TIH�nP(�A!6�Ƣ��2�h��k}�U�3��Y��ެș�t#d}s�|����'��s�|�\�P_��ξGփ�$��į8;���Bh�Q�",Ƙ��{5�k'Z�Uָߚ8��~�)��A�^�R�-��-�.fG��W�ԋZ�G�E*�.F��zӘP��������.$-J�}�&��\�V��T�Tnv�������?a�/'�n��-{4�yʐ����`ʡ5���e�9<�4��e�U斕d�T���	U6��?��AX&�튨Řf�5?M��A����6�eb�$�d�`�t��%Q��p3�`��s�b3�N����n�MSp��U�5�G
[�6C�n���q��Ҁ� �0y��"�U�(t�K\�SR�*1�S$AW~��g�S��v���t�QR[������
��%������Z��ԛg��X�o���3c(|�:c�(����s�V�l��`�n����Hz���*_��~�uz�<J9L�,���,3X�ӧ����X �
�,����t�RYP�����%$S׭)]��d��K���nB�d&�n&|���)�ò�{���
����K*�/���~4Y���k�N�_��J�u�q��h�@����kߟm���84@
����"�b-M�/g�.�,��@hL`H���.	�}��k�o�py�\�#4T �3�qЎY��cvh�/a_�I��N��O+�U�i��
S�V1���O�!�D�t%C��ԯP4`��@|��&��8CP_�º�OV*��^��w�v������Y����7�~�E�U������zD���4:
f�b��ʃ��HB��k�s*�DT�6tFY��e-�}e#t�5�}CŹ�Ο��z�B��Zs�����	���#��C��8�3k�؁�0!�\M �z�`E!hЛ=U����~��VФ�U�Ƥ�Ҿ�=Wi���0�t�ն�ş��4���<}�K񬗱���ā�a)*��[k�9��'�n�JG'�������Pٔ�	�0�u
��V�Y��T�J&Y�c���D��$�ϫb�r��<��oVH%��.��T�(�O$��
-ӶD��\ �jK�Z�4R��I5r����cѧ��Tɜ�kt�kI)�CB�u������P�T�`���8�M����.o� �0��$T�	�0a����W>P5���X"�ݫ�~P��]���#jDy���%K�j��$��-v!��F�~3�2ܪQ�5`.|�ap���>nw���/y��#?X�##J�w�5��(
�����Nx�4슩q�V��^�����=~�R�'Ҫe,�ҧX����M�}�j�J-�)T�:�א��w�3r�T�'�����x�}scF�y��7k�
�V0�\���S�M�(�2@��u�:-YzǮS8���W���[4;0���q��Ʒr6�SBIX��qL���t&t�&��#M�
�����G�#�&t
ڠ�4�7�0݆���I���p�X2���M Lu��w��Do2�`
�%\��7߳��g�
^mlm�W�)s�X��7a�o`B���f�b�nQ��1J�)�?F�T�7ѣ���;��C6���XV}EBq��:��ٗ�zh��W���*S/�'��W
I��~F,��앀��Ud�
�A:�ɫ�+�z:�b��4'�Ŵ���؉�szk��ܮ�.08q/8���k�Y��H���E��>��Qv��ŋ����g�O�~aժ��b��x.��쨽���'��T�Y�&7(�w^;�����[�Ս��$�\0w/��6p'�"�>@�'�w.XHZɋ��(���j����X�yc\X��{'Dy�>z-�z�x�y�>xm˔���ۜS��^��O]Ђ���{��E�&`��`�w)�+��ySL��>c���u�a=$+�h)V,��7�R�H�֯a=�U���<��35@f���F��9N��i@6�݅�L�D�Q�s��-�cr�졂z	���
��W^׏�~���чS�2���5�$��Z}�݊#q~��d{VF^�ުԚY��l�&'��Jk~O�� �V���{��W��|šG&�$��d�]���8��/�v�Dj��&���7��x��Ҥ�U떦���ʐ3���{W��(1�O-����T��}2�����k@N�H�:e �i|�}�,N���j��$}^�\�����X��,_+V�r{-���s�v�7d/�zk�ux�C4�9�9/���%���V���<��S���[ƅ����ٷ��_��:<�}3�^;[��l�z��A�)���d���}���-��U�������}�����sQ������H���:�z��3
\D��_�+B��3F�	xh�&��>����ϕ����4�]����j3�=/�#���T�Q��c�ϱͫH��Bw��_��Ee�^f�[�џ�3���76N3�w���\�"�R���1��v�/}}�"�O{<��Z���@!�g�(��E��=
5�uW� ���n��&�iK�$j!�jw%P<��T�<�N=���Q��Z�UA�nŀ82�+�^Ra>?�1	�E>��9�|�.�mV�
�
40
����l�<kO6�ҋP�$K6m�����
�&�w63�dV�k�'�Ո!���o=�t
4H���Je\�r.mOa�z���
*Z�ҩ�W���[.s�ߟV"����k>���K�҇k�|2A?���g��`�f.�}�W<wպ���+�����~�8�U)��-�l}P�ժ����*R3���7�9~�>�F�\���[XQ:�J1�D��~�NN�*(|C^�&�@���G���j��1:�;kN�\�	0�ƅf�Ө��p?���$��0����o�G�G�߽�0���Cは/�������z�����F�4X�~�d�IE���[��.����9љw�I���`� 샧�'�a��b��$~�+�/�m��`��.-�� Q�b��'͛�"+6�XJ̓n+�fA0�����H+�l�_��sʴ��!�-Td�ؿ�O����dɜiL�j�����N�q��J��ɘe���O�;;%G�'o����;"),=�K��
�][��� g<�F�h�.��~�[�?�
u��}r�����f�2h^�3���s�j��ƾ���5��q0f� 8���u�Ĕ�,'���5�D�k��)@?\��a��^�=M��Z_1�&����c���M�Ͳ�k���׏��>��|���M�o<�<
���4/�c遷�<�l�ٛ��,�v�߾={{��5���Y�{~�'��=	,�\k����^&�'0�tX���Dl}�F��G*��QT?���.�ZۂK�
�u-Z���Rhu���0��!$7@d~X��ɢŎ���xx��+x����4����V^�Vu��P��i�f
���w�z��9i�{V<��ї�Kw�#=��`������~ёޏ��_���ф3,1&W->�xj��~����ܱj�a>�t�x�k���la^�3�qn��i�i�З�1M��Ɏ�H�͌�و������
KQ�j�1$a�g2g#��K|�!�y�eD��Q�Lx�X��{i�4�{{V�����N��l�	��Ѩr��|�_I�G�$iu,�N�?TW�߂bt*x�����A��u���t�A�Տ�7���Ѐ�\84�d��ه&��I~�Xsu��l����0eZ�~�rsUJ�kG����
)�2S~�m��Vy��n#�~�c�hV��A+�c%�YY�� Z!���W1������t���A�1y51�+A�E��8��ICo.��V�3��['��1�;��S�v2Q��:p�ؽ{�/f��b/�����vܽ1<I$U�
�PUa�hTRI����ԴV\U��j"��RkMoy���Ӈ�
9* ).�:{f��=�Ͽ���oQ��j�%k�1���y���T�}�[g���h��n4�4�\�5rd���]qۇ�C�<i�̬�𳦅�l\��E�O����C&Z�*ZZv�i�-��w�����*1��t)����S�*%/��R�j��J�5e��y3�֏W��l�S4j˔j0���4�ܮ��ղ"��aDwϘ֯��F8�Oͦ�&��}�6_:-�HŜIE?�2̓���u�q�Cg���b�Za��f�J�j�4T��L�
J�c���X����h:p�{�[`���:�N�6�84�����J&�n�F�ٗ�,-P2d��_
'1@�2�'��r�dD*�Q�����e?<slj��I\��x
�+��ӽ�Đ��vs�.��b	'���YE�UpC�ӥT�)s�N'S��mٱ�9X�x��mS��D��Ž���1�ON������hS����Ve�湕�E�T�:0�Oap��Y���§Ff~��]8,K)���7��BTpK��/��Ue�dm�Az���kT��`��c�o_�e��k*m>��l��^:����f���������y%����6?a2Gy������8�r�mng�ô��0.�ׂ~�X�nj����cpD1�N70%��p{����UWܥ�҄�oS�(آ�	�v-6=�C=s"�n�"^�D�͐8'��ݿ��
�ڊE�BTPAE��U!�DwU�I�O�e��p$�F���Zo��|놪��'܈s!}��q�"T��P��d����(le��+�����
V���W^�Dl�Y��s��:�a����h�I�`�X��k�����Uq&HI�R�&�
����5�R	�	
�r#�F����<oj��25�O	�	�jv�IS��2_'z�"�e�l�+]f(�:�xt䊬��!^G��@��<~�$;%�"#?xmC��}��\x6�4�+��֢}����+��B�6��ԡ{�v�d�d�N�?&s����T����ca��x���i����R�vKf;�7�C�U*�i��U�व�fZ���4j[���o�`@H��2�,W����i�Pr���U���)����L	{�<��\\c�@���sN�D�:�_Z��h8))zo�^�R�A�4����f[G�h�ml[���Yoo�m�
J&��N��s��KŁ���/��e���(���i�lX�J��7x���$*��1�p<�p�iJ��@/F'�Ƴ�v��xD,�)�N!At!f�=��ΣCs�^p�gs��������߯��x�c��b{xT���N��S�@�`%	��I�S���O?©�7�q�^�.�3l�T�Uf�����>�-���M����>/?�}�D��Le��J�����{L��'����:�y��!��=l��g�w��K�sC�8��3�j�wV˩}.�����'v
c���U����Q)I�{W�-Ly�}0W�_훰���S%�����YIV١g�D�7�;���;Z�X�4vh��H��;��n}5���>J1�3��U!�P�3�xd��}�?1mډ��w����E��R`*�A �36��?M~h����Ix�Y=	2��8L��q,�6�h=΅��P�t����{k0f���7?��rF��R�����8`�vG<����ؔkTzgL+V����aL�wp
�#�
��&�ɼS,Y�~>�o~3b��!w�cE.�� k����,��)���O��>�������e �1z<���g�T%5"�<O0��;���J7�Քc� ���vZub�o���9�� 
|DIϧ���\,.�M^��<{vrZ�|���l��	GՀ���RE
h�+�hN���,#O���y��ߛ����~��l�}��������MMGm��@�S��a1\���q���r`}X$b�SRRe�ߎDK!F.��ӌ�ޥ�В�Bݧ��{�b/�Xϐl��b�01�v�.LQ-�c��dX����B��G��������AWZ�S����Xw^�y������Z�$)�퀜`c�Q��f��qوa�����1X�� �^j�e9r$Kf��d9�Lh�p�qը��`#�t��dO�Axm�~ >���<��aIŽRZ�P3C�y(�Q��0SrO��
yI#l�YeRivff�T*M��I$E���F�"}��
Z�2j�,}2x
k:ح����~�(����a��
�/P��{���7w3��߮��l�g������J�-8���h�|���W��yw��?���W�m���x��@�_�~�>���	�V*1���'�_�n��F�BQ���X
�!�I'��P��!q`3�Q���ltS���tb‚�����	���/��<�;ɖ��?��&%�yD,eOp8jb�>��
�@T����ᄊc�η歿Z��y�w~?��z���E���g�Z��sq	�s��n��ݴŖ'��2��;�����͹�����G�z�,>���#Q�Q��?_���bN��Ɇ���Ӎ��i���v��njj��~���w`�GS�^`�=�O3c��M#�!�ȧt�xۄ��~����.k:��D!�,茮�?�:�A���t�$6p9�*�> bi(�[�nϠ�A#�鰺I��h*~��[��Dqt珓�j`���my.� ��7���e5/����6u�_T
BXa
��?��-t:������U��fr�4R�J��J��o��E-���-j��#髳,��*v����>�&�$Q?㰗.;Q��<a�U (�b���t%�ա��G1*l�%�:�ӣ֤��l�&ĩ���d��,�cqku&Kn^��xg#V�i��؜��k1�n�'��6�09�+�l����|4j��cS��]�V��j�e��A[��)��V٤O���Y�Қ��s�]�7gxzM�/�]���K���ҿT�af8g���zYw��b;�I����6@^�ԲzHI4Z����!�D�ћo��l��}!
0��'��\F�ō��2j5�� v��MxK�UM�ܻ�-~���C�g&�
<~L�vU��3
�� �[���|V�\�f��V|�r��9��ܐ�v&��q��o����G<�7���kZ��}�)+Ig�k���ʋ+���ɔeҙ�9s�
�9���h��O�0�Rk�+�_��6�`S(�X������:��G�i|�K��o�_���v�����fs0Ca��&����������<�7(�
ه���H2��*�2b6��4����OR֍��}q��rdK,��WS+c���+��Y���W��:������Ē7lVCn��d���\�O��0�ƢZ|׌�����Z����1.k�?WC�t���E�jt:��dK]իG��>�� ]'��׬=f͚S�'�
��3rx�W�˯�f8�{���)VLo0�床��|`��;&ޱ~Riqì�^OMN�T�u�G��:���I.A���R(��_�M����o�=p��Nt�M�j�7���#�~��s��&#�K(�=<kw�r��M�X�wZ�S� P{����D_i����5��ݦ��v��K�~�eh�*9p=��Į�Χw+zB���=�Ԓ�\��s���V7�ӣ}�i�m5�Uk����	z�G9�r�k�A3�W��'Z܂|�Ȉ�C�'<�FB�o3�>q0:]�p�N�8D�G^>��HY4���׻�]�F�#��
÷,F��h�L��u�O�'zܴ��%���*����cvv�d E��lg���:�1h�r3�5kg��Fa�t�u~��ˆ�����m�>џ�z�9q�L�I)U��<�g�x�
_�ifm����љ�`��.���l��8�s��dg����鶍yX�Wx�6ݴ
�e}�ư_("�/�[0:�ӻ��އ��6:���l�6%��P�,4���
P8�u�,:��N/6�Ƿ�7���.A�ߎ��gd
6{�r0x���؋LF"\b�6(����%D��"`�F��v�p�g!b`	�_��J*eK83|q(�Ԧ�J���>W����R��!&)A��|r�*�2�H�8���%ݠ�Je[|MojP?�C[�8����ra�9�3{c��bqo�5&��0�
4���%�e��ٳw��<<�`��� [�S7�߇�?�����C��Ӟ�̶�{"��yP�����n����)�hAc���W�z���Z*����y�b.u��rܚ�[�%Xq��Ꮳ605����n���'N�y'ND����~^���%s�%��藂]ML��c��B��uJ�D�O��_D~��_�8��;U�\W��#'��s�o���MgC=P���9���NWǐ�u0-�ת׶�Nn�k9tz9M�F̍��(�"���QIS�?�E�@!&O�"��>H@!�����}Z%?
�����?�	��q�x�6r�D.�L0"��*r�8"���GO5E7�9���?Е)A�ֆ��u)�~Q}@l��� Lrz�\�'��I���,�\z�ӷy���M��ڞ�0�`�����V�+����έxFGO�_�C?ҭm��2h0���~����|l��C��l�q槇�L?���d�n��O�u���D��`�mp�t����GD������Vf�롷G3�H��	>F`��h㖋mp��M6�\.f/�ђ�E8��	:|12ؑ92�^
����ԍ5k F?��p�A��
��Иwd�<�	����w=6���J��@l�^�������}SCG�mr�������f��%[ϧg����i��\	�[�x����,�ރ
u��*�Ժ�0:
|W�l�rJ��i���6��}�w
�,�i2�ִ�i&׈��y|�[��I�0�������C�^ym�r򑯎�i���&�"H����m$��ۖOv���y�x��t)�^��F�(  
�buroQ ���i7��c#���R�s��M��a�v���)����)f�DjL�(s�b�&[��s��d�Tb1��s_7�牀��:�U������_��UX�/ϭXqX@	��Й[�F���AQJq��#?����)��ߺ|�V}+-H6���a�Gt��S�x�Yq~�ㅰ�Vjh��W#��r���#1�!���w�48Q{�n/��������i=(
�U�-�z�FnU5�˖g���R�qw`�c���4�����g�e���j+�6C��9e�in�33�Ѭ1[w���c�⭽�ҿ�ˏ^�.L�\�x��K��1m��s��\�rG���U5�^4�Z��!�Oѷz�h3Φ���w��ye��ƹ;�R=}�&��z���(��6�It���}	|����ZieݲNˇdK��ۊ�8�'�slj��	9I�!��R �j�p�%�p�%�H�Z�޶�(���h���ʎ�Ҿ�~ߗX;;�������<���<�4�kA`��6KTV2�^4���"��?K/�A��nyܵE!��JbG��*/����J�Z�X���?��3ҹO�;��OCBp�`����D8o�r[Lf����5��~���V;������>Qq�����J������D>�C\K7���]�A-�a�oy�@]
"
;�v�sHH��'����&����!�zX��X5���g�ԞNpCM�N���14�^4���x��F���~Fe2��1����)�^p?�#fJZRԙ���1]�����顕j3�R�%��i5��!���̐�?�����B{��WJ-�sv���a����{>�Zi�9O?��W�������'+�Ӽ�Q�J0]z�L�BVQ=>�J�}FS*)ƉFZ5�˨Vj�	�p4����]��!n
s��Ds4���3�Q:�pӞ#�
���'��N%;g_��=� �.�2I_Y-,V��H���>{L�Bg6��ep�;k��J���W��"u.#|
��]H�������(Pڰ��������F����t�oQ���,�V�XST�fA�ápuN�\[;o�����l��BME��hZ���ة>g�6	%�ؑY�$h�0g��gyX$�^�T���D�V��Å� �b��$R�rIh���;�,J�>`���i9�� P�*N����J���}�׌���.G��Be���i:㳙���CB0�1�Z[-O�L��|9���uG�̘1G�\~��;�]k�L�C�S�Y��bz�	ɪ�:���Q��R�����n��NH_�X�>�����҇B�B�)�,l}�U�1ƙ[	jV�]Ҥ]/��?�ϝ8i	��~%���I7モ���l�4U��b��5��˨5��Q7Sߣ�;{��ȅ0N��|�v4�-�]�����$����e�q�����2\Ni�%b�d�.�3�]��@�8m@�n�|7��\9+�إ2�9�e�9���?�G-���n@�@��R�H���T�lI[���RV
w=b�C�����A9MVꐗ#�bPƝ����&�b��f.A���@�c5I����ؚ�=����>,�/�eM|ဌ����b7dI~Ќ��Ӧ^���@�5p��|��n��`LZ�A�Ŧ���*�C���}d��.y��<5P��U=kR,��5D��«2+g�/
G�3�2�
�S�}r��.q���nƬ�(^��*p���ٍ���9=\�<����,�Q?"�|��p�)�+F�kr�x���o>.�����|4߅�A��d
)S:�ƦI|*���Έ� q�Gs�6;^O�~+r.�uD� �뻐�%WC���A�QTیu��ր�W�3��e�gչ+��H��D)����)0:&��p�L�N��t��~�N��m���yF�yOs�[
���`\k���y;�h_���e��0�@�.ӿx�9�?f`�/�Z^���}�W�BHR��o7z�`��@�Q�4��Άб�����L��w�l_7�^=t�=�SU���Z7HGq���g�E�G�J}9�R��c�jB<�T��M��B�>=)Ĝl
#=�v�~�����x�q�vwo������D��k(���k��.�	�@���@ºk!��}��!��HZ;wg_8�}V��ܯ�pt��>���׵>x4G�;r�>�p<8"���d4\:~F�B���/�P�Gb�fU�ޓ��J�i8�ۆݹ��uM�5|35��.a��xn�o��X�0f�1K�����4?��szRG|���{G�gjC��B��*���:����m�6H�}�W�u{ˁ�6���֒B��-�yC=�Jۼ�;&[8��ի���4�|r�q^��9������pH�/U�`mP<=�c�x�O����A����X^�kC��]M�I��h'����P?�Lq�A�C�`�S6ħR�_�h fA
��tL2�jX�BZ����`�͘�p��iDl��JA�Lx�f�ˮ����Ѻ�������ԘUА1����3�CO�9�Ka��|�{۾��T���z�%��E"˫T*��7C�xvi2V�d�9'�a=�z�ˣ�VI���x��F���:��x-�
�i
!p����;�m/�Y���p|x(��~���B%��W��~�FA)�1S�~�����?E4���=K�R���0j*^F�R0*9GH�g�PR�
�Ar��X㲁�xkҽ��쯎����[��q���-E%�C!P�L�4"�z��ڲ��\̛���_�L�#e"�ք���D�WT�SҁP)ǥ���
`�Uo~گ�9,O�`g
��^O��&����W��K5�0��<�0�Ħ��������]o�G���p�
���+���
*��H��EL��� �b�5�pd�L�_Rӥ�J`wD��c�C�l��<�lV�s'`a�bpH���������؃���Y��"⺽�~p��.��|�T0�?�(�CҌ��Y��d�T�c���ؙ�kMC�ba�2x�GM�x��ؚ��6�HF"�"���v G�h��]~l�K���$n(L�bn$E�-��ѐ�po��aT��3�'�f��r�I�a�l���4�;�%�Ն���WE��Qj�+i�"\�6�u�2O�����,�G�>n�%-u�'�w8_iJ�qX�����l0kD��>��%����K�>��g���g^Қ�(a
��󬬔���H���΂�l#�*�~������)���e�,�3L]�,�.p��`v:�W62|���]�����ţ��^J+���q�XrJ�Ű�/�a��b�
��`�ݰZ�<��TVb�;o�ßv�����	^���Ї�@�IoCe�W���\�c7
/����-��dǶ�.���}���.GK�w����������e����O?}pr�60�����l�zo���v��>|�t�y�ֵ��B׭�Tup���m_��%�m�z�c���NE�(�O�D}�˹�8%ٛ�	�/V���a�M�r��8NJ
�,�3R,���w_V^�Xk���� ��a���'VZ,��CL{�TpU"2vh{^�scS�*1�b#�O�QCm�xf���.{@(*��Fz孷A6/V����f��p���'�wG��`�)gI�	%[�?�hN�}��Do.�ۇ�̡c��ܴ�m}��J'cy� �
��*2u��=/6�u��X8h��kll��eT��ŏ���P�7h:�xX�hxQƯKh
:����a׈�~RF���%
6�.����x��0����F�s�u.V��l��t���Oa.`Epv�:��V�v����q�dE&�;HpYs�`P�k��3��$7�L�X�ʎ&�x9ݾ��J�R�35�\���zMp�hg�>�0[��Ġ�[����JN�M�y��F�Y�������ԏ�O��
f�N�ȼ��믨Z��w��b!��;;��kԜ�9_]Բ�?R�pD�,�V��]�Z�n�6yA;S�k����Wi`���� ��@]�!t�e�Km&N��̈� tpT�ڄ�?D��!~mR��+�u���&
�Z�9"�O�
 "��FB�M&�A�J&�PD��zP_�N"��ce��`��:P��K�'�`.
c Y�D��D��g��:1�Jj��rQ�U	��yH�"6_zH���7c��aO��2�i�s+�����sz�Dm���^��uK~�
���I�\J��lذ����S�G�8ӧQW}���{��J����ޠ��9Q-r�y�!pF}F�KA
P�}%#��2m�W�2�cMK~??X͈g�f�63F�{��/��C�xU��~hx���_�D���0	D/�(�g�[��~���=�jG�օF�t�Z��.;�NX8�)˞9�3Dk��k��pHα�6���A���#}�w�{{�N��ޚ�@�gDvYv��,[��a�%���ģ5�	�;�nP��s�;sZ(x�pѐ���+�u�G4�߇s�����>=%�s8V�o~��Q:Ot?����5'��f=tg�t�%���_���4�-�9���\��G�p�Oϒ�E��7�s�0H��u�L�c�W��@B�T�]��n�����yK���fm-���1�����V�|���u+�f�Ï��'�����7��6g#�w����v��7��
/������F�)ˇ/��N����w�'�gH��\��Ǩ^_�9]>3�O�P�h4\J��n��x���I���A4�]:2�p97�i4T�z��YS��FMa,�qXK����AJ��9%��+dDF��������ر��DBF�t(LF_2��d���u"�ၝ���E9���*���D\���5����A�5�Ќ���o��a��Zwm�ۛF��^w��L��ꛆ��S��c�X6K+5gff�g��U�ߛ�vK��sn��1Qδ��ƚ*�L'S]�+ �~��)�WOK%W��'�-�3�Y�P-
Vh�U�<�į����V�-"��aO��_����*��}3n���Ƚ�]\�g���=tr�	?|���[s*������Z9��	�7ݶ�wͥ�p|��xb�h�d�}����-��P�*�vsӋ+�I�4d��ʢ�|ciS;<�|��ʊ����}帤�F�9}4d^v
��dy֨��A�����2��
-�d8ߒ�S���80De�D���o�[�Ā=��9i�o4�g�pìi5�߾�����L^�d)�L�X�&�s���7�ts���X��5KI�Ճ�<7s�e���ajE�o��9'��F^1#��L9�����>�k��G��Y�ܝ�f�^L�MR_g����S��du��v�mySgOOg�r[S�FL���������8��J�FQ�x
u6ʆe��z��>z�7Ʊ����1ɰ]5��Cքя�ҡLؤMf)7�&\
Cʓ'ky�D�=X!.�M�Xuutpsر��^o��S�*�qT�8�l{%�zT�
�TOmػ��j:�D.[>*V���Rn�BU~Q����{ڞ�y�&W���(�Z��
ɮ�v�k�:	(R,P���(�����
5�\��T:%�E���5��k2�U�::f�g�R���޳�!Г�d8m�/S�����t=��Z
`���I��;�B��������VUaft��e�������	�0)/p�������!cU����JƧ7ŀ=d���!]�3iu�+*4ƀ��3��s$\�(��R�g��E��������m�p���X7��y���LC�ZQgin^�Rvzi{U{|*����͖:�:�+�w�iEHaW�q9�U���u�O�Q�Q����=>���mLi��\�@���W�icU��u���`��̶��V^eL���?�U��IT�ch|58��rTVRmS�TQ�+Ř�~��cՎ%p����������"�覫!V��S�`D/��\d������߄[�Vy!��UE��d…�[�[F�ص�¨�A�C��V<4����m,�i���)C;�w��f��\�N����r������+�K\ �֊�lm��N�����}W͠�޸��0Ӯr��a�#2u��SǼT���!z�؊�?����n���+�k�s��~�����W�V���_��W�w>ҁɅRS���I?�;�|Tɢqj5"#kU+�+A�14�r�F�t�y+IN�y�����0�MYcX����p���dW>��q++Zb�m�bilˊ]m`A�Z^�L���ޒ�|X�b"ku�~p�t8Bf�x>[�&�cf��0{
����]�����3�̟y~&�H�3P���|m][`7T�GY�rfn��,������k��f�x�/oK�_���
��*{���t����@�����2��#g��=��/���{��Lg�5S?�(�lK?òc��!_0��3�	�γ%��
�
�ɰRO׎��-S������m�r��;�<����ɪ)��1X��ɫ��l�̊%�"a ���	ΘG՞��v'b�X����Z���ȝ�܉�������l� fm�"&�}GPX9{ΰ&ߐ�R��asfW��1�^|���q�4���t��؍�Dӻ'w��'�wTRE�dj���i����}�GU7�c.�.}�!.zs�Em��j��1��ݐ=�0Z�,S��qK�+��J,q����&ʹ�V�
�)A{���0�7�Ы.B�,=�1yd�q޼��΅mIƣ�*�?����	2�|��*�0����V�B'G!�$�h�B��Va{�(�H���e��Rz�q�#.O��b��{�o�2E�+�RGqaaa����l��ZR�J���-[~����[�ٗ��V�-T��l"���C"�,zw0�gѬJƩ7+�f������g<�Džo�����*p��RG�oҟ&���%c^�~[�$��[⑩.wػ�<�G�wą�u	���a���D�Z.n��&E�uF���C~����L_��3��ϐ��v�5䙾��/�\�!���̫zB��kh�y�8!�� ��G��JR�^ό�*�_���4>��S�k6�A��\��6��n�Lz��#��UC�ر-�Ww���a
�HI�I?�� ���2P���j�&����%v�sh1[M	ћ��r����%݈$wH���d��~A���7�ś? Wa�º�G~�*|�M���^��nY�R���o^�zz�j=��#[ۀC^�W��b�H�Ro�0�
sd�y46~ZC��7�{�Ɨ�����sݳǟ�n�8d]�I��U��֝{6N���Jgnys�]���7��,�m�9�F7��	���|s�湟3�i/�峹7���fe6ʏ�z��&1>�+a��K;��i�
c*��k�پ�m۞Ρѕ���s��0���HzBτ	=�gW��V�OR>���#9��~��Vs#�y��nIUM�R��<��}H$���ո��6����K��.^�P�����}M�̓�X�O__,��!�0�r��I���]��^�H@���L�d���\LӤ����)5mb<��O��J����D�F:ya�������/,%�׿���v�#�!�oS���� 
؋��Kn�biBq}���c�׈丣���&�v龖�V�^p���%�Bڹ�L�YL��LH|��F��N�
��F�	;9d��3Y�	o�#A����b玲I$^9J ^�o����Z*E_�|D$�_��k56�����2�Ʃ��Lmȟ�x����m��n_�ɱ;'�.6���~�ģJ�%�E�g�/�E5�E.Ì��sn��8ڗv	�t���Dx�r������礟/j��;�QR�nʋ$�;��O�6�^G ��Ez��Y���g��&��UuB�����W����Y{o���3A����c5�Y�Y"q�.��SF�/��Meg�H����4��N�^��3��\�m:���������.��z��69lP�P�i}���Vi�D����Ty��7`�k�(�\fs9�H�&Rv�Pi�*��@�h^߼N�5�kpW�V>IV-��ZP+�B�3�5p�%��oN�����ਟ�q��o��D�
6q�+���uVh�Y�ᔅ��ё�BVӊ���*��b�K��h�.8���̲�6���_�^�d�dy�ԠԘ]B"ђ)��,��i��37�ܿM:�_�i��~�X�@����,�-�Ѭ��,}�pa���<2����8����<�|{����ޝʰ��~�Ő�;,j^-�@��d.��=���4�cj��
u
V%]��8���})��Ϸ���$'*��K��	�X1��l8HH̛J����41��E!gy��,�U=U�=M5账��z�GV��!�=G�?l�^3�B_n�evM����IY�dkۖg����5�:�ñl�fp�l\Cl���;�>��m���J������_����$�\������?�7��wj=zŊ�q�
}Lx�	{�o�FQ�.j.��ZM]Im�n�vQ{e���W`�el�|cΑJJ�b�L�sI���R���0)���-����
�;U��M*��C�*.T��]��<���
�z��]ʗu��@V��ޗSޕ5����3J'�Grd�)��,���ꁪaWw�iְ]�"Fs�-aאb�J:D�r�1I���'.J	]��-[�|����:�j�6"y�F�vju/��c�Y��x��|�P�/���A�ޡ\(��.�]V��H���!��O6q���r�����q�Gv�X?$K
���q3̘�&����丣߹|d:dnI&�.���B�Zz�b@�&�[1�㹞��~�_��OG�>����բ��h��^��Q�|��w4]���`��]��w`増�s��^toǿL��ψu)VB�l�N��u�x$�V��6����}y�q�c�<$^�G�VM�)$��U�e_y�[��ń�$�`xK)J�_Sn@�6z�D霘�1���-��=F]` P�{����7�>0����!Mz�m��)��?�������7?�y����i
��XyUUê�Vl9�U5Q�y,4(�/��5\}�?o�&,{w�)3�]:�~@}.m�@k��&�^I��'%���ŏ�q���i�%O�(5L��A١���z�j�q� ~������q
U�@�J��X����g[��_�RE�J�rb����r�ֿ�|��v���� �e4L�E�Cލ��f?��_^r9�-R��7~��'�rfna����@S4�S`�@4z��9���Me�`(x$������[vrQ���
�p������
AW�_v����.L��1@!��Cd/;)̡�X��?x��{;T��?V�v�a�vՠ8������m�rqF�ߦt����>��_�A��?���P5(~N{�'\:o_\z���ʬ�c<�%�}[��J�5��<<���_����yR6$��k�j�~F���Lt���ɦq�N���DrÄ{��� ����x!E��:��0���r ��D�8���ҡ��hWaY[�p���q.�p�Qr�Fv:
�:&!=Q�Ί�PXǠ&e":�آ}0���hԺ�A����
oU�{��6���:��+D�޷3�2-m�y���,ͿH[�>�`�P�P���tQ�Z8�f�����	:g�AQ�V�*)�Bȃ��&���1�^o)*���k�V�y,Z��/X��V˸E���J?m��N+���g�jGl����ч|}���kC_��s&`4��l�-�B!�W;�ZmH��5��ƿ�+qJ�(�l�9��@gQY�9O2�]:�jXڠUPRb��Ty�q[T|�,1�%�g2�WZ�B�����bh����u�aI,�{b�A�1٪D�P놜�z�|$X>�t��B�����wʞ�N���j�a��Nn��6~,
��Kڠ��uX�h�}y=HЂ�h$�����A�T��g��wLa엪�͏�1a�x�r�
�J���t�<��&5Q���)`���6/4M��%���go��oj,
Z
cM��Z���p���Lh�֩gGdW��a����75Ł"�֨VFm���:jYh�ڴ�i��6�͛�q4e�Mݰn�1�Bt\�T1U�x�;$��1��H�kh�b�Ą�Џ��H�����1�S�[.�s���Kګ�d:�I����J����,
�~�~=8�p�Ӭٻ�ddx��
&�%b�(�Ns�
�ZF�sE=����X�x�-9��FTx
ʡ�6��u���sJ�n����Ԭ�xO*��(��^��F��fа4JH�۷���}wI�@-m��R�硢��'��,����(1&^�D
+1��/������������J_�i�^F"�����5<�M�ҍ�œ�KѾ���0�5J�@��c�����"f
�j�W.Z�1�mҴ�m^�d�����
oJ��)�m�[_s��E
��}�/�of��+�~��`P��]�q)��H����׾x�Ego��륾ᝁ F�i���� <���]4d+�>�P0�c#ۜ�z�w/��]�=�s@+ܳ�<4���-���#�H�w�4�f�EEi�xk��!���+T�-
m5�_Vq��&[�A)�f�����ӆ�5��,�(���>�,_mW�`
Ђ���v��9t�͛�Eo�s84*O��{����l�ӧo�	��LjF�/x^ý����^��&�S�P8��>��A&���::�ف V�7C3�!D6d���!X�|y:E��_%7���gk]�&Tm�c��VO�#P_�3k�*�"��_�/�o>|�����������1�r�'���X>�ҧ�/��%�H���yӳ�>����Z�j4һ�T@h��n�u����/~�L�y�C�a��aU�4�Wi���@~�d���y��G������Z�qi�$ݥ9p�C�@����&�sr��<>K1�ѿK�;J����D���,~�t���&�<��g��OvL���;^��I�C��J=��^FmB}d�C�,~�P�xG�2�?���XVD~��h"^�?�]n(5����2?�(8w�L�3�1��[H����E��l�7�?���+�G(���6}�[0�)��ư4
�A�k߄b�؝��k�Ŋ��uX��U�#�)V����7Ń��D��e��t�[���ٙ�>�@����84�� �-9����Z�.n}:���Ε�z���#��dh�!��
ǥ����k�O[�:���!�]Y�)�
�t��dO��r�����rv��P2�+�2�*T���EڄUj�PB�wK�Θ
=�����|�Ǥ<��3��n魠*ڿ�fMh�s�X>W�gO����N'$�u7��tAұ�A�����q��h�͌̇��D0��'�*��&4�0<BXFF�V�}�o�q|���߻�Gg�^��ä�kש�G������NrJ��w��s`Ϗ���U�L��:��J���^��	��c�k@�� }ߓ��M�$�?��t�^"�Y���S�N[yļ�+��]p}�L���FY>�HCA���qp��y��M?�x��	MzA���
�>Dm�7�r)y��蒾V�͍������l�1ύ�"wm�_\s	�ɬ�?�=OM�fR��5�U�C��ԫ�{�G�����eHa[�y����
�=sD� R�U�W%Rd1�'�=�uR�(/_� �9�ַܺI��
�"�%����;�0��ݎ����b�+M���G`�p�\�{��?sX΁R�K����V7��M3��y��>��
��s���h�)wd���c���yt�\��̌m��7�x���5~ng��l4mp‰�Ѩ�!k	ԣI�dBG�4CB�s�5C�OYb�jo��۰8=vMa�.��/l�n�����M�q�f���J��,�i��a��s2�`0:�{�Y�),fs~v�A�t��T��1��2?�+E1�V��h���cO=��B@����U�
X��y$c9��h���
����h�ׂU
��ׇL_�CAkHq�>�������yJ-��-?��I'��<��TJ#�2v��$d��1��h0�Y!}=��n�b�J0�d��N݊�T�l_9V9��Jk����m���{\n.ӡ�&GTA�B0��f�s�f�X
|,c�:��k;�u>Cv����F�ގ�sZL��W�T�x�c`d```a<=�|Ed<��Wnv�b|�F�������
��``b�d#�x�c`d``c������8�"Ȁi+{
�x��VKkA�y�<��,�5VIL�,���E����"�E"�'sj�����J��U3U=ߴ��K>�����Փ��g�_��(�ET��u���=O�'{?<c|u�>�Law��]+t�w���^��nD.�}k�zՇ��쯍U}ɩ�o9�:�΋���;��FШ����O��;��XS�B�[x���e#2U�o�ا�C��������??✼	9�Xz{w�>�	O3��E��*��De�[�=픖wE�:s�e�I5o�ÞR݇�G����=SB�P�s�|W�+�Ⱥ�	��}[0��l�]�1V����~�ٴ�F�o���M���r�����;�'�����O^gL���y�h�o����l7��/���ӌr�q3}=vC����C��HF=�ǡv���@�i�lr�.�r�4�C���үV����ldV¬�L�[�e��N���0WԿ�o�ϓ�iosW�wz:�z���Q��Y��Y��3���R�y��K �>?��+#�B����|�J���zj�����6�]@�UD-�P�v�>n໌u�;���W����O���MeFY�г���\�l@���*�!����u?�'�m������
�'�18��>�w��C�Ú\f�M��c}��~5���l���mo,.�}��Y��r�[�K����f\�y���B�G�y���o����C[�����
����|�E�E@
����\}�d<�z��/�
|�x���{T�g����N.��i�B�d�b!���3�i�M��e�$׹4��M�=�'4r���i�!�e������������}Nҿ�1��H6dH��A�T8T*�
�H�GJ%��K�^�
������2	RY����HY��Ryr*УB�Tq"(�*ѯ��T���D�S�Tu�T-�I����z
�jp�E/�N��:�R]ɕW����gKn�l7w��S�G�G�{�o�x���D��J�=é	=���Ż7����,5�w�0@N386C�����&�9^5��;�J-�H~�i	>��j�^+z���O��P�u/�/��w�R+�����=q� �v@G�S�LLgr���<��IR�B��]�<�1���ug���fO|�E���_�P;�ap�K\?��G�������ǁ�\���Ti5��s܇�}8�A�p	�O�?������Ͽ���R� �Kr�Q'�s�?�YO�w���1��IN���0��EQ
�S�9�?�'���0��i�O��do91�1��ٜ�X�Ų�X�b9�s�?��84�Q+����q>�_��:K�ຈ��L����zK�[�w˘Y<����r4/G�
f��+��*�$p�V�{"��r
�kr���Z��u�1	nI��x���c�7�l��Fzmd���f��L�-�ڂ[9�[�L�6�i{�[�G
�w�o:wSo3܇��j?�R镊���:�g&
>��u�:��s�GXK�˟���Qt�����8�;��<O��$�'�|
ON������2�Ltg��k��uo����\�G���|�؋輄���]書竬_×�h�ιȆ�
�o2�[�ݢw� ��q���L�g��<D�#r�=��'�|J~>��S�g�9�^г�o��/��/�
ͯX{]\Fe�l�)�H�X�L��eJ�dJ9�8+eJ{Ȕ�*.-��o�x���2|@6�t�L%7@l�^�@���(��ce�E�T�q>%S��IN-��bυ����!�.�ꎔqeϕ��ʸ�ȸ�xP�!�Fލ��4�I2^	2ެ7%���w�i$��<���_�L+8�;�гu�L�X�-��@��2A<;���@c'8��3�tAC�.3���=P&��p�(ۓ��1�����o���������O��)2�	ye�e0ڇd�eN��d��gF�{u�B��p��o����q�D��>�*3��	�s3������=��6��(���T~G�7�����7��L4���Y�C�ٜ�9��񜋮��z���]�����%�q	���ϖ1�T���e�W�e}�(�=��dr��w���s�oWs�e
\����迎�$�H�}nEc2�pϘ��o�����K�S
}w�o����Z{�/��o?9��w*z�� ��%
އ�a�a/�G�|���<�lO0��!�������r���Q&�<�/P3\�w��D��p����ˆ�
�n��܂�-��?�3u�>w�y��wᘋ��ɀ��u}�є��<��m�󐼇����O�~�p���)>���k�y�g���{ü�,��Ǜ��u���β�<d�-rJ�X�l	�K���l�<ٲN��Xs̖��'[��J���lOY'٪��բe���&ٚ� ]�%R�6��$ʺ˾C|� �ĺ=�m0C֝5�,�w�d=x6�V�\YO�(J��?(�m�,�!��~Sr��������~n S�%�Z�@6m�e�ю��p@~����e��tx�c`d``:�$ɠ�L@��`>(Mx����jAƿݤMk�`�R��AD��ݴ��7�?�Mhb�W�6;I�&�av��k_@��+@���U�o'c�BMH�7g�����<�������d�E	�,p?-QvZ^��S��J��r	/�g��p�}oyw�/��x���G��Y��:w�LƜl�e��>[.�1�[.b�q-��	u�y��זK�輵��mwfy����x�~������b�b�Ї��1BL I���vQ����K^��I��k��&���LŽ���D��0�fb����`0�(JfRMdD��I/��DK1�Z��`*�t�M��Ƭ d.�do<U��ڨ�U�ڴ��Mr�;�g�zpXm�k'�F�}���FUF��]�=j;௲��K��i"���bD�.x�B$�d��y�&��_j����Q�>��º\ՒO���-�9"Z��mW���j��\DI�滎��Sid�IΩ+�Щ�})��dG�»�2']�Z����J�Z��rl�$��;2��V���z���n�M�"�L4�R�+�_�
���e�k=��~^^8����D�9�yW�y�1�E&���ϋ�x�}Wt�ȲuU�b'X��̔ؖ�,O`����ݶ5�-� 0����̏��1�}�̰�����L�s~N�$ݾ�}oW))L��?����nJ]��.uc�ԭ�R��n�4d 9����0����
X	�ư	l
���l	[�ְ
�	���`{�v��`g�v��`w����`o���1����P�	���`8���`8V�L��¡pG��p
��p'��p����p�g��p�
�P��zj4�Fj�-hClX
]p�}p��5�C!D0���·�B�.�K�R�.�+�J�
��k�Z����F�	n�[�V�
n�;�N��{�^���Ax�G�Qx�'�Ix
��g�Yx���Ex	^�W�Ux3��
o���;��.x7������!�0��������	�$|
>
���������"�_�/�W��5�:|�	߂o�w��=�>�~?��O��3�9�~	��_�o���~�?Ÿ����+�
���¿����/��0��b�pX�a�Q\��q�čpc�7��ps��ĭpk�߄��v�=�;�N�3�n�;�{�^�7���c	�XAM��N�~�?��Ax0��p
�qg�P<�#�H<
��c�X<���D<)�:����x��g�x����X����:6��
[��ڸ��`�袇k��C�p�qq-���x^���x^�W�x^���x^�7�xތ��xގw�xލ��xޏ�>���>�O�>���>�/�����f|�߆o�w�;�]�n|�߇����C�a|
?�ŏ����I�~?��������E|��_Ư�W�k�u�~������w�{�}���?Ɵ�O�g�s�������o�
�����?��/�W��������?�_JQ�2���i�
T�a�QZF�i���hcڄ6��hsڂ���hkچ�D��v�=�@;�N�3�B��n�;�A{�^�7�C���S��T!�L��M�~�?@�At0B�h��i�f�P:��#�H:���c�X:����D:�N�S�T:�N�3�L:�Φs�\��ydQ��$E-jS�lZM]r�G}rɣ5�S@!E4G�@���Χ�B��.�K�R��.�+�J����k�Z�����F��n�[�V��n�;�N���{�^����Az��G�Qz��'�Iz���g�Yz����Ez�^�W�����cA�v#(�ot�?��S���tZ~A���y�b:
��n�N/vj������� D���UϝS���۫�|\�QHn��
�v�r��3�o�t��<Ϧj��C��Ҿk5���|����l�I���uw��9�b�a�
G1���0竖��N^�O踍n��X�o��uܾ

s��T��S�M!���ˮ�nS��V\Sh������Kѳ�n���~�mX=�[������ڡ�؍b��ZG��NX���v3��Y�_sT+N�
��_L:��>��WGAh�Ӳ���o�{	N��wG[VCɩ���rs��#_e=�o�N�gy5Y��VS&��u��f���L����D�� T^�n5���iY|��^~�Hˡg<�M��p�\�e|8~}Љgҝ�Z��0��n��A'��DAM�Q��}�,&&��9��#k"�G�8�
�������T?�ሆ%�b`�*ԭ��i��;���4�U�v���#�#�r{���"���g9�r��p���nY��b�)��w�Wy��Fc5���p�@
���~;~=���W���~���o��\��X�l�j�UX�W�;GY�=�W*�{�L��;�b*?!+�,a�^���C�W�~��l_�b���$��C�er�b2�}�N_crߥ�ZL�m�z�H؉z���*�L�d���I�rZ�8�$1%'�r�q�~�͙e΋�ok�o��9l��qB�~�ɽ�b�m3C=�A�&��p�c�'D��˛t�	��p~��l2s6�K)����7��4�R����r�bC����B�e��\܊�dDdE���zG��`$�`�C��!H����Uv��;�ɄV�
�Qy3Cu�V����87�'���F^Z�2���ٺ�8BP#
YJ�O��b��^:��TAΧVg�v�q��~��A����]vx�vg(����PwT��k78�G�������;�����y7�b@q�@�5T�>s�;�'M��I#��I3>+�7�A:p}��=�[|y�-N*��y�.��orJ���qQ�Y�X;�(�C�k�8����>koqD�Wpd5�E=�q�un���k�6�t��$��z�"cÎ��|١(�S	c���J)�0.Geɔq:�-�#�����$�Y=f��
��f��-Y��V�t�y�����XK�h�Q]�ԗ����H�
���e_����`~�(�5�TA��Fֱ<�b���=�.��o�w�š�
��I3љw���f�w3���ł|0˗��8-	��/�Ona�.�%�e�/$��է�����<���0�"/���h܈C����3��e9i�b�į9���;�8�$�"���G�!�H��J�aW�k��dqIf)�H���Ƕ��I�_�({�ڵrv�j(N�2���f-�����i�M����j�&�Pd>Q����ij�hr���&|���`D��C�����	{��nA9���YH��61G&Ύ��m/��%	iź�A�J��c��O��� �wt��C�����ŗ^l�4b�&��ψ8��W�V/��g��|�%�%Y����]%�Ԯ{M��>��ɏ���6�3Y
�����8Tcx��7�V.M�\7r8�G�
6��C����p�WlЋcS�\�Ha/r6��z#��^`����ޑ��5�,�Q�!����������^��ߴ]��&����h�����#���*Z�L�>K�,�G�ҧ��K�����\w>��5�]���-�2�䖠��qRs#?X�b�9�Vq�-ˎJK!	<�=
"��4s�ύ=���q���Wv�����/TK���k���Xe�dI���$9G��M7\�@�&��S��J�5����H��⁚+C%)�R�V��U)&���E}���Uc|��8�L
h�,]M
hR@����d�V�ui��(KQIf���)EU�	)4>&�<и��+RRb\��k�ӵ�J�+	�$���J�+	�$��0���,�� ʂ(����	g�u�!в��1tm�Z&��a�kEX+��V4tV�
!6dZC@��2dȐ���0a
����zh�L@f�ϻ?PUTTPUT��*4US^nHKh���Ą ��EE|Q_T��EE|Q�Ĥ &!��L
b��n�b�܊BLa�)���$EY����U)&����)��K2�!�0��X�Kb	C,a�IIHJ�3bC�`�1�!f0����3bC�`�	_FYeA�!0ʂ��"�� DzC�7DzC�7DzC�7*�0!���!���!���!���!���!���!�� LA��)S,z��.��sK"�!�UAT!�"�!�"�!�"�!�"�!�"�!�"�!�"�!�"�1)��DC"����JU۴41�kƙ"�)қ:�&]�2X�bB
�3�K��o����o����o����o����o����o����o����o����o��f)���Uz���u]�uY�z���RW����zB׃�V�zJ�Ӻ��lROi�)�;�y�4��ҼS�wJ�Ni�)�;�y�4��ҼS�W�Ҵ�ּӚwZ�Nk�i�;�y�5��ּӚwZ�Nk�iͫckI��Ҍ�Ѽ3�WGؒ����;�yg4��Ѽ3�wF��h�Y�;�yg5��ռ��wV�ΊS&5�&�դ��tV��j����	�PK`x1\1��˜�assets/fonts/FontAwesome.otfnu�[���OTTO
� CFF 9s�7���EPAR(�l0OS/2�2z^��`cmapǢT��head���6hhea
��P$hmtxJ+��t
�maxp�P
`name>$#
h
postx FontAwesomeC�������������	�U�6����U�6���2�2���
�",04<>EGMT\_ehmqy}�����������������#)4>HT_lp{������������������
'4=GRYfoy��������������
&,39COVcoz������������"/5;FPUZes}���������������&+16<EOW_hmqv|����������������)04=DPX\aju����������������(,26GYhy���������������%16;>EMUckox��������������				$	5	G	V	g	l	p	v	�	�	�	�	�	�	�	�	�	�	�	�	�




&
*
-
0
3
6
9
<
?
B
F
O
_
c
u
�
�
�
�
�
�
�
�
�
�
�
�
�&5BQafmty�������������������!%)-159=AHLPTX\`dhlptx|������������������������������






%
,
3
7
;
?
C
G
K
O
V
Z
^
b
f
j
n
r
v
z
~
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�	
!%)-159=AEJNRVZ^bfjnrvz~��������������������������������
"&*.26:>BFJNRVZ^bfjnrvz~�����������������������������
"&*.29@GNU\cjqx������������������ '.5<CJQX_fmt{������������������ '.5<kvglassmusicsearchenvelopeheartstarstar_emptyuserfilmth_largethth_listokremovezoom_inzoom_outoffsignalcogtrashhomefile_alttimeroaddownload_altdownloaduploadinboxplay_circlerepeatrefreshlist_altlockflagheadphonesvolume_offvolume_downvolume_upqrcodebarcodetagtagsbookbookmarkprintcamerafontbolditalictext_heighttext_widthalign_leftalign_centeralign_rightalign_justifylistindent_leftindent_rightfacetime_videopicturepencilmap_markeradjusttinteditsharecheckmovestep_backwardfast_backwardbackwardplaypausestopforwardfast_forwardstep_forwardejectchevron_leftchevron_rightplus_signminus_signremove_signok_signquestion_signinfo_signscreenshotremove_circleok_circleban_circlearrow_leftarrow_rightarrow_uparrow_downshare_altresize_fullresize_smallexclamation_signgiftleaffireeye_openeye_closewarning_signplanecalendarrandomcommentmagnetchevron_upchevron_downretweetshopping_cartfolder_closefolder_openresize_verticalresize_horizontalbar_charttwitter_signfacebook_signcamera_retrokeycogscommentsthumbs_up_altthumbs_down_altstar_halfheart_emptysignoutlinkedin_signpushpinexternal_linksignintrophygithub_signupload_altlemonphonecheck_emptybookmark_emptyphone_signtwitterfacebookgithubunlockcredit_cardrsshddbullhornbellcertificatehand_righthand_lefthand_uphand_downcircle_arrow_leftcircle_arrow_rightcircle_arrow_upcircle_arrow_downglobewrenchtasksfilterbriefcasefullscreennotequalinfinitylessequalgrouplinkcloudbeakercutcopypaper_clipsavesign_blankreorderulolstrikethroughunderlinetablemagictruckpinterestpinterest_signgoogle_plus_signgoogle_plusmoneycaret_downcaret_upcaret_leftcaret_rightcolumnssortsort_downsort_upenvelope_altlinkedinundolegaldashboardcomment_altcomments_altboltsitemapumbrellapastelight_bulbexchangecloud_downloadcloud_uploaduser_mdstethoscopesuitcasebell_altcoffeefoodfile_text_altbuildinghospitalambulancemedkitfighter_jetbeerh_signf0fedouble_angle_leftdouble_angle_rightdouble_angle_updouble_angle_downangle_leftangle_rightangle_upangle_downdesktoplaptoptabletmobile_phonecircle_blankquote_leftquote_rightspinnercirclereplygithub_altfolder_close_altfolder_open_altexpand_altcollapse_altsmilefrownmehgamepadkeyboardflag_altflag_checkeredterminalcodereply_allstar_half_emptylocation_arrowcropcode_forkunlink_279exclamationsuperscriptsubscript_283puzzle_piecemicrophonemicrophone_offshieldcalendar_emptyfire_extinguisherrocketmaxcdnchevron_sign_leftchevron_sign_rightchevron_sign_upchevron_sign_downhtml5css3anchorunlock_altbullseyeellipsis_horizontalellipsis_vertical_303play_signticketminus_sign_altcheck_minuslevel_uplevel_downcheck_signedit_sign_312share_signcompasscollapsecollapse_top_317eurgbpusdinrjpyrubkrwbtcfilefile_textsort_by_alphabet_329sort_by_attributessort_by_attributes_altsort_by_ordersort_by_order_alt_334_335youtube_signyoutubexingxing_signyoutube_playdropboxstackexchangeinstagramflickradnf171bitbucket_signtumblrtumblr_signlong_arrow_downlong_arrow_uplong_arrow_leftlong_arrow_rightapplewindowsandroidlinuxdribbleskypefoursquaretrellofemalemalegittipsun_366archivebugvkweiborenren_372stack_exchange_374arrow_circle_alt_left_376dot_circle_alt_378vimeo_square_380plus_square_o_382_383_384_385_386_387_388_389uniF1A0f1a1_392_393f1a4_395_396_397_398_399_400f1ab_402_403_404uniF1B1_406_407_408_409_410_411_412_413_414_415_416_417_418_419uniF1C0uniF1C1_422_423_424_425_426_427_428_429_430_431_432_433_434uniF1D0uniF1D1uniF1D2_438_439uniF1D5uniF1D6uniF1D7_443_444_445_446_447_448_449uniF1E0_451_452_453_454_455_456_457_458_459_460_461_462_463_464uniF1F0_466_467f1f3_469_470_471_472_473_474_475_476f1fc_478_479_480_481_482_483_484_485_486_487_488_489_490_491_492_493_494f210_496f212_498_499_500_501_502_503_504_505_506_507_508_509venus_511_512_513_514_515_516_517_518_519_520_521_522_523_524_525_526_527_528_529_530_531_532_533_534_535_536_537_538_539_540_541_542_543_544_545_546_547_548_549_550_551_552_553_554_555_556_557_558_559_560_561_562_563_564_565_566_567_568_569f260f261_572f263_574_575_576_577_578_579_580_581_582_583_584_585_586_587_588_589_590_591_592_593_594_595_596_597_598f27euniF280uniF281_602_603_604uniF285uniF286_607_608_609_610_611_612_613_614_615_616_617_618_619_620_621_622_623_624_625_626_627_628_629uniF2A0uniF2A1uniF2A2uniF2A3uniF2A4uniF2A5uniF2A6uniF2A7uniF2A8uniF2A9uniF2AAuniF2ABuniF2ACuniF2ADuniF2AEuniF2B0uniF2B1uniF2B2uniF2B3uniF2B4uniF2B5uniF2B6uniF2B7uniF2B8uniF2B9uniF2BAuniF2BBuniF2BCuniF2BDuniF2BEuniF2C0uniF2C1uniF2C2uniF2C3uniF2C4uniF2C5uniF2C6uniF2C7uniF2C8uniF2C9uniF2CAuniF2CBuniF2CCuniF2CDuniF2CEuniF2D0uniF2D1uniF2D2uniF2D3uniF2D4uniF2D5uniF2D6uniF2D7uniF2D8uniF2D9uniF2DAuniF2DBuniF2DCuniF2DDuniF2DEuniF2E0uniF2E1uniF2E2uniF2E3uniF2E4uniF2E5uniF2E6uniF2E7_698uniF2E9uniF2EAuniF2EBuniF2ECuniF2EDuniF2EECopyright Dave Gandy 2016. All rights reserved.FontAwesome�[_�������"+/37;TX_dhn���������������#'Prz�����������.26:@DHM����%*.48@ENUZ^}������/3�������������PW^cgl������8<FJ�������������CUajov{�������			@	J	Z	�	�	�	�	�	�	�	�	�	�	�


&
*
.
:
A
T
m
r
}
�
�
�
�
�
�
�
�
�;BFLTX_cinsz���������� .38@FKPp|�������������

&
E
d
m
z
�
�
�
�
�
�
�
�
�
�
�
�
�
%1=BGNU[e���������
#)-7=CJO]kr����������������):PUblqv|����������",5:BJOTgz���������������$6HZ]hs{�������������
 &,6@JTX`hnt|�����������������
)8@OSX\bhp~�����������������"/4;?FLSW\hmt����������������
',2=HS^elw�����*
�A
�T&������fA�V��
��T���l�f��P��������������z�z����
�P
���4�!
��t������
���
�����q
��q
�bt�&
y}}y�3���3%�3���3�
`z���T~����~���������������4���]
�Tg@Z
�4��
���
������R
��,�T[@��
��<���<4
,
^�2
���%�%�����%�%�����%�%��3�
�T<
�n�h@;�TN
���TI���TN
���C
KFKk�6
?����������J
��������
�
:
K,:
��y}���Tj
5
�/W
K$'�T$����V
L
v
��
�
L
6
f
y}}y�y}����������}y�lz||z%
��1
��
��������K�T���T�Y�=��|�zKz||zKz�|����������N
�
!�5�
�!��
�
�f�f�(
������������G
���
Q
3|�T|�T|��T�
�T�
�T��|zs�
R��������3��&'
'
<
@A
��������G
������������^
���[�=������
�T� /
3
c�-�`�V�}�h�n"����B�v
�����g
�O����G���
�`�E��}n\>l�g
����,�������������������h����h�@�@�h��E�Q��P
�|�z�@z||z�Tz�|���������|�z��z||z�Tz�|�����7
�F
���x�
����3�C�DRRDD��uy
;
�;
���5�!Jb���
h
����
�����5
�/������
�T���T �+
-tzux��u�[��Br�lmy�z�~���5�������q�s�������U��hnnh�hn����������nh���
��t��t��t�T
y}}yKy}���?
j3CC��
��
������5�;��(�=��Z�XW�G/�9�;���/�_M�knm��n9��:Y�I�Ƒ���P�`�q���������������~���d�_�i�r�c�rr�i��i�i����������y��
@�H���-�R
�'
�����
���T� �����1��<t0
��l�n�l||��}_zob^��^�b�z�����������M�<�M�<v��������������	�o�_��}|�|r
���
/�0
���]�}
���]�
���
�E�Q���y�
v�(�
��W���
��T/�T����
���
�j��i�h��{�t���*
�<���<�<���
��<+���B�����������
�����A�S� ����i�^wv�h�������v�i�^����S� �A��E�]�#���'
K(
��D
F�m���3�'!�����%�Ơ���#xM'�nq��w������d����������������o�^�]���
t
x
�1�!���!���������EQQE5������i��������'�Ty�}���������
�tV`�����
��
K��
�T�����
��
��
����t��
kb
K<����z�
X
�@3CC3�@���#P
����n�hQ
�h����������/�:�n�h��
��
���:�
���
���;x��t������u�l�TK�
1���
�0
���8�i8_dd_�~~�x�z�������������������ƅ����y���"�9��O��9�%������9�)��o�'�0�q�i�?�@�h�h�?�@�i�r�����C
�TFKk�Tr
P
��;���;�Y�S<��!��y�o�t�s�{tq�T/�T��g���5��[��
�F
��
��s
��*
�41
���������������������Z�Zr�w�h�)��S
�
-
v�v����z�z�����:
�t�t���t�t���t�t�
1
����7
�Ԏ���8�
����J����n�������������������+����t����m�y�;�
[�8�����
�����������
������hn�>�����~�w�~����~�w�~����������K�
=+�tX
�@]
�@g�Z
�t�V``V��;
��;��`���L����<��� �xra��������
Y�W�
@3�&��
~~�w�~@���������5!�����������}y�vKy�x}z��y����n
������T7rr�c�r����~�g
��hnnh����
���YYG
����P
�����~�����*���*�*���*�*���*�*���*=
�4�����
�4����������)
.@�����(�����[
�h
������������������P
����v��T�~z��$�j�
+�[
��<���<�5�!I
��4���*
�A
C
�7
�r
C
��7
@r
b
�!�6��g������T����E ��
��ˋ�������h�3�/�����{�V=��������������n���������������\�n���]������������9�
��v���������x�{�zz{��X
�����CZ�7)������D
�T���}�y�T8�TC
�T7
�Tr
���]�]��[
1��
��
����������
����7��������U������f�
�@��m���
����� �
��<
�Z�Z�������Z�Z�������{�B
����r�r�����z�{���
+
�T
<�Z��������:�������w��B��������D�$�$�D�����(�=`��h��Z����������TA
�
/��0
�����nh����&�&�����&�&�����&�&�����{��V��v�7�+�4��2�y�qpV``VV`��������J
���Y
M�Y��
}�
���>
��|z��nhyy�rrr�r�ypttp&pt��1��5
t�v�������'
K(
����
�����������;���;�����g
���
$�4��������y���������~�M���Q��������������s����Q�Dnt��y���������������������y���t��
��F�t��e�11e�BB������T�������������2
������
����������r��������I
�F
y����������'�&��K�
��w�_�_�c����������4��4�����4��4�����������p�]��R����
���G�T��TX
��������������x�����]�]��
 83��
���w�rrh�������h�@���;�f�v�eK\xcik�v�ss]tRat�7�+�4���4��7�&&����
7����
�V��(����-
hn�����D�$�$�D�
�,
�}�t��P
��`=��d��b��9�7�B��x����������������������t���3
�������?�L���g�__gg__�g��������������a��
������`�V������������������C3~�w��]������}
���y���6�%�6-��������������	�_�$��cX��~
�TR�V�2�2�V�V�2�2�V������P@��z�y�z����z�
������s�/A����v����������zz{���������������b
�������z����-
�
�����f�t����&
���3�
������
���]�]�EG�xZ�n�yt�P
P
�������������+�+P�,������������ʲ�������,�������
����
_h�m��x�����2
�
������������
����ˋ��
�
�
�d�4����������4
�T[�`�M���`�My}}y�T,�V���;���;�0
���&�&���T��
��3
��
����������t'.
%���@p
�)qt{t��s�o�y�����s�%�$����������33�3v�K�����
�4��4\~�v����
}jii�C�@�@�����x�~�C
��Kw5 !4���wk�z|��|,$P��+�+�
����������-
�������
�
���
�g�s��}���}y������������f����
����#�E���T�@��)W��b�it���
��S
���4X��wmx�yj�h�����o�fZedZdW
f�r
r�syy�'�&� �������������h�@�v� }�������������59������������2I�8��8��!����~			I	�
M
�
�?y���
*
�BP�|88;�l�]5��m����+\��<���b-�G_y����'>U��>c� R �!0!�","^"�#0#�$$q$�$�%%~&5&�'A'�))�*J++�,,m,�,�-�..1.�.�.�/P/�00�192�2�45q5�5�6<6�717x7�8h9�:S;x<<T<�==�=�?�?�@!@�AjA�B�C�D�E�F�G�HJH�IITNN�N�O"OxPPPPP�R-RvR�T�UGVV�V�V�WX1YXZ�[+[�\C]]�]�^�_+_9_G_o_�_�_�_�_�`�aaGb6b�b�cPc�d'd�eNfGf�f�g>g�h�h�i-i�i�j j�kwl%l�m7m�m�m�n$n;nOncn�n�n�n�o"o�o�pp&p>pXqq
q}rIr�s8s:s<s�s�s�t�u�v<wIwhw�xGx�y y�z&{6{u{�||�|�}�~~�~�~���C������M�����9��C�|�����2���8�V�����P���	�c����S�������O����I�������#�|����L���������`������m�
����P�o�������1�����*�x���������4�f�.��H����U�\���1����������'�C�w�����[���W��������(������b�������;������J�{���.�ŝ�Qƭ�fǮ�*����ʛ˗̉͌����|�`ϫ�Zҝ�(���Jտ���׻����p�9����D��9���������g�����t���g��,������q���?�����o�]��1�a�JC���0��g����	$

�N��
F.yq��4����+M�<�� �!>!�";"h"�##�$b%g&D&�''�'�'�'�'�((�)�*"*�+�+�,?,p,�-F-U4>4�5~5�66636>6�7	8"9�9�:-;F;�<9<�='=\=�=�>?Y@RA�B�DEAF�G�H(H�IImKGLL�M^NZO�PxQ@RS%SlS�V�W�X:XRX�X�YY]Y�Z�Z�[+[n[�\d\�]g^Y^�_2_�`5`�a�a�cBdd;dWdvd�e!ff�gog�hNh�ikj@j�k�l�m�n�o�p�qhr�t�ukvYwfx�zV{r|�}/~~�������U�����u�����[�������
�t����J�����~������������������3�J���#���������c�������$���;������������������������������������T��t� �T��T���4P
�4��� c�
��z���.���.Ȯ��h�K�h�<�Nh���-���
��
�����-N�<vhNK�hN�<�h���.���.Nhv<�N��N�vȮ���-���
�����-�hڠ�����v�N����v���4�4���T�
�4�4V``V�T<
�4�4��TA
�4�4M
����0������T���y�u��uyyu��u�y�����������y���?�j�`�,4�G��y�u�~�8������������գ����������YSKkj>h3c�#�
^u�i�����������ƭ��R��������������@2�A
��4
�����F�M�f��fM�Zn�n�w�������
�������������v��
�x
P
 �`�V��������c~ofa�[�!
�Y�������!
 �����
����
�T@
����������b����@�
���s�u�w�#��$���L��>�����������$��#�����������69�JX�"�!�!`V+/E��E+�V������1�R�F
����_r���
�Z���o�
���p�]����������t��
�k�s����u�[��z�tv�U������������Z
�tq���9�
�[��[�9����:�Q��Q��:M�q��k�s����u�[��z�tv�U������������Z
�Z�����J�����
��J����&��	���	��&���a�
�)���|
�����s
�Kw�����
����t�������
��w��4X
��]
��g@�
 �v��
������
�����
�������Y�T3
���Y���`�V��V``V�TV�`���������Գ
���
�T3
������Y�T3
����TV``V�T�;
��Y����TV``V�T�;
�T\�TV``V�T�;
����
��^���y����
�$�%�����
���I�������V��������h�h��������v���j���y�����������������y����
���������
���I���������I���V��������������V������������ ���V��
V��������
�t�tC
KF�t�tFKk�t�t�
�r
�t�t>
��@
�
 ���V��
������
��FKk��r
��@
�
���������
pP
�����t�W�&S�:�aR`S�:�a�)�)�6����z�
�6�)��õ��`�a�;�R`�W�&��t�����P����Q�EEQQE�E�Q��������������Y
���8
��&��8
��&�T�8
�T�&��8
�@�
e
���{
�����z��K���}�z�����������������a�E�V������������" n�m�l�o�L��{�y�ry}{�{O�J�Nl�l~n|�������i��&js�����������^�^�[{m~m�k�No|�y|�rz�{���Kp�i�j�ki\f_i]�����������Q�M�[�����������!��|�����Lz��~��r������Ǒ̒Ȫ���������������'������������f�g�i��������M��������m����������������������������([po����p���H��H�4���
�wO�V��VOcZwE�;����L��1�������H�u
 �v�
��t���������n��n�����t/��
������s������~��o�J�,z�W���`a�G�ah�c��~��v�~�A�������������H���H��������������������
���
���w
!�4��t�4����t��t����4�t��t��
��to
�T
�4�#
�)�v��TV���{�||��||���������N���������g���|��5����p�p����Ty�~}y�:y~�����T����ppur��5��|g�ccn�_��Tz}���������������y�}}z�T���� ���
����T�
�d��gf[wXX[��f���e�6
�
��t�q���T�K�T�����T�T�
�T�T������x�4���4�t8����
��z��T~����~���������������f���9x�4���4�t8��(���������������������������&
��T���
��T�������9�v��T�
����,�T��,�T���������h���X�h���������Ym���}������}c�h��hcqj}����}i�Vg�v��
�����w�����x�r�w�wvt��L��������������#
������P
���
����!�S�Y��
�y�l�D�&�������������������)�'C�3�$
��Y4����K
�Ti
������t�}�y�T|��}�zcesd�,.�9/�F����-���
1�T5
�T��
����"�Q>�W�����������������
����"�S�X�������5����z�|��[������������,�9�F��Z3����
�Ti
�������9
�����"��!
��!
�
�T�����������@�
���
��G�����
���v��T�i
���T����T�
�T��+�3
k�T���^�^�����^�^���Tk��c�����v
]�b�t�k�r
�������Kg
_�=��1ln��o����1�"�-SK�q~n}s{x}zs�z.�������;�3�n� �L��������� �v��T��T��V��T���/���W�W���/��!�(�Z�Mj���:�kD
��L
k+8V=_G�xɁ��������������H�KxMG�_8�+��������M������������r�������r����N�-������hnog?���
�
��?g�o���������� Gw���_
r����N�-������hnog?���
�
��?g�o�������������_��Q�P��o�x��}��y�C���Q�(Csyrp}t{xo^�������P��Q�_����K�����
��n�{�}�������|�z�x�8�
�S�`�`*�S�8�
qxozo||�{�}�s}|{n.��������
�K���������������
�������������
��
���
�x
��
�����������
����
���������
��
���� ����0m�� 8����
����������������v�v�ʪ�ʪ����ꪫ����������ʪ��骫������k��i�hvv�v�i��j�i����ʌ�����������
�����1�
����
w�������
����ʓ
����ʓ
������1�Y�������1�����������������������Q�
kl�l�������ʙ
�����F?������i��j�ivv�v�i��i�j����z
�)z
����_�^�X*�D�t��cX��_�^�s�jii}jtt�j�jh��s����������W
 m���
����g��|�v�t��y�w�x���og�`vf�/TF��w�����������������.��������q��ra�\��zz��z������aM{tsw�x�y�z�z�Vc,sj|wu��t�{�t�v�\h2p]�yx}�x�z�u�x�Wi:mY{pvz�s��~�{�s�w�w}e�_�^#��:��/�����������r�����8����"������ �����
�����
�������������4<
�4���K��4�"K���m�e��,�,�eB�V�4�
��K"44"�4k�t�4�:�4�t>
�)����T���3���3�3���3�3���3�3���3�T�4�tX��r=�E��E=UIrX��t����
tK��

�T��/
 ��,�Q�����i�ep�%�/��,�xx�x((��(���#�Ɏ���������	w�����������R��'������V��b���gfV�p��o�q�qq�������{����������\�/�j�}�}���Y�h�^��?�DF�G@�E�a�t������V@���h����a�%�-n�<����5���s��c���������sŔ�O��������5���*��V�JM���(0�x[[��_}�~􊢋��������%����������;�AH�W�{�'Q�bgf��g���
��F�I��G���������f�=��R��!��G������v�^]�^����z����8����'��n�\��PuH�#hPMqJ�K{�-�!ߜv���`�������Њ�����xġ���������M�M�N�������[�����������Đơ�ϦԖУ�������!!�!�����x$ǁΓ�m`r�;�n�i~G�h�ftnOlF�Kw�z6���������-�������������;�������p��6p�_�ph��6hp�o���;_}oh���6�h������6���}�_�����
�Ǐ��\����������|��}�Cy�	�^��^�^L���uZ�
����������������������q�����m����ept�c��CD�C��m����������
ǐ��]����������|��z��b|�|}3��mrS�
�6��6��7W��,��������
�"�����������������m����~yv}u�������������]� y�����]h��vp|�zww�z�v�����{����y{ ��������������|��p��hm
��R�<�0
���R�<P
0
��R��<�
i
m
��R�<�0
�������R�<�i
m
��1�<�0
��1�<P
0
��1��<�
i
m
��H
��H
��H
��������t�#���#����@�������w
��t\
�
�����������������������>
t�Tdw
��T���i���������F��y
�������������td��v�0��{�t������z{�~�'�&�9*
�T��T�3���3�T&�:�'�'~����
�)��T�T�������Tn����4�4�����4�4����Tt����|z�@���
���4kX
���S
�@g@�
m���� �
�����D����������������~��������������������~U�T����4�4�����������~�sj�iij}st�:�9�4�4�:�:�W
��
�
��
���{
����
�
N�L�T���_��p����������’��x���J
������ 
�����v�����P����P���������Ϡ������������H�G�w�w�srP��
�m�X�X�j��:���b�kkcv`~:���j��X;`Y;l-&P���y�y���Q
�����4����������S�+����,�,������|�������|�������������������������~���KK�������X����������������������������fc�c��Q+�4�4�4�����4�4�0�0����f��,�,f�M�ff//������ ���
��g���t�������}���{|y~w������j�X������������������|�z����h
"��Q�����2��{�z�����t�{tq�T�4� 7����\�3�u������������������l�z��*���� ��p�4�Tq�t��������������
 ���
�Jw���
���t����������������KK�������3CC��
��
���������������������G
���������������fc�c��Q�{������k���k�Y�kk������k�Y�kk��kk�Y�k�B�B�k��������������
����C
��
�
�����
�����
���-
�4����=�����
1���
��
�����
�������gs���v���������Z�v��Z� ���S���Z�v�Z�Z��Z�Z�r����Z�����h������l���vl�r|h��h�|��e
P
@g
���
��@��g
���
��i
e
P
@� �����
�Z�w�Z�Z�2�Z�Zr�w�h�Z�
���P
����
�Z�w�
�Z�
����������
�@�w�}����rr�w�������r�Z�Z����
�
���
�%L�.�����2�:�:��z�z��z�z�r�����:�:�2���������%L���'�2�z�z��:�:�����������:�:�
�z�z�������������
����p��������h
��H���� 
Z�������
��hn�����
���� 
e
}�2z�z11z���I�I�I�I{�zzz��1�����������I�I�I�I�����������������
���I�I�I�I��������1��zzz�{�I�I�I�I��{z��v 
�P
�����������z�z{z�����������������M
�v�v�,�+�M
�1��zz���6��
����T���
��4y}}y�Ty}���T��
�T���4�,#Q?`\pnZt�������ҫȧ����P�Kgjzx}wy\O������������~������#��7�@�T��K��T 
��t��t��t�4�
���4:
�T��
��+y}���4j
�����4��y}}y�Ty}���4��
�4��4 
��
����`�$���$`����$���`�$���
���$���$�����$`����$�<���Tg
�#Z�k�=�=�k��#��#�kZ�=�=Z�k�#<�#��k�=�=�kZ�#��#�k��=�=��k�#i
���]�������&�&�
�����
�&�&�������&�&�������&�&�k�K#
���g�2%�������'�'�%%������
�:�:�!8#
��t��
 ���������%��5�����6�&��{��S�j�����������jQ��h�[�=���<�<���=�>���
��>Kw��P
��^�C�T����������}�s�@��sk�iij}ss��t�v
j�t�� ��
��������}�s������TӸ��Kw������~�s����sj�iik}ss@@st��j�t�����TC^OG�G�O��T����s�v
j�s�@t���E��������� @w�K�������sj�iij~st��s�v
k�s�@s���������TC�^���Ǹ��T����s����������� @��K�T��@��sj�iij}tt�����T�
��
�T�����tj�iij}tsA@s�v
j�t�� t������ �W
��@��j{�����������t��,Q��a!���� �K��t�k�v��������������������q���C�t���
�����
e
���t�����
�������ԛ
��������4���
���*
�<���<�<���
��<+��!y}|z��
|���R�����T��|y��.}�|�y�Mx|��z������������p����������������
��������4�Hhnzh�Thn����h�T��T�hS�\��V`��f��y~���5���V``V�V��5�������`V���R�L����'�HMoZd��9��9�dM�H�''��e
�L(
��$�4���A
�4�u
��v��߈���
���/J�7�I[^_[Z_~}�yhn����������{�x�(���H���Z�f���7p\XT���H�aG��-���w��h�h�i�w�V�Q�Z:#v���z]��l���`���L{�l��{��,�+������\�^���˒�����1
��t�4C
��FKk@r
�������C��������N�.E���Ti����C�������k�h����T�������$�T�$������?���L������L���?�'���0�cGv=<���
v�c��0;���'�d�quuq�--��]
��������L��a������a��Lv�trr�t�v��L��a������`��L�������v���$�T�$���]�D�'�#�5�'���0�cGv=<�#��7���quuq�-.��]
���S������v-�y����U*�PN�O���_��Z~w�rsr�s�w��H�7�*�V3�ziU{������Q��������g�
�e��g�
�������S����������A��:�N�T����~�=�����L��=�&��0�����E��rA�������u�X��������������������5y}|y��
}���R����|y�R��
~�|�y�Mx|��z�]�����������p����������k�o�u`�\\`qbu����ud�[�dd��s�P
���������u����z``K�4K++�4�4�-�3���������������������������V�������
+*���������������Q�Q���������������듔����V�V�������������������������땓�����4�L�5�5���4K� �
�������4��
�˫��4�4��˫����
�����
�4�������������4����T�t��
�T�t��
�T�t���4�������4��K�
���
�G���t��������4���
������t�K�
���
�G�������q
��q
�bt��������.���"&��F�t8�t�+�
�
��������������+K�
�
Qc-b.T5���M�K����Tz�|������������sRrQnS�SL0��t8�t��������ĤŨ��������Ty�}���v�0����%�������%�����_��I�b�	\�;COLD|yz|�r�����s�{���������A��0����������%����e
P
�T�%�K�i�``�i��K��%�,����Q�Q����,����g
��
�/�����g
��
�/������
�a����r��z�y��z�yrr�b�r�:�9�r�������������
�:�9�k��
�l����r��:�9�����������:�9rr�b�r�z�y�
�z�y�)��
�����������4�T��������T@��������y�xxy�}�����||�g
�T�4�4r�d��Tr
��4g
�T�4�4���f�TF������4�T��������TB
|�|����}���������������� ��
��
�����p��Q�EEQQEE�Q����Q�EEQQEE�Q������g
�O����H���
�`�E��{l^@l�g
����,�������������h����� �v��
��4�
�4�
��&���Q�)�WW���X�g��3�
UGQ�� {y|ss^������
����� ��������
���
�������� ��/�����
�����T�����
�
�����
����1�4����=�����
1����i
�������
����
����
�����
��m����}
����������������������t����������������������������2o`gfbn��������h������.���������/�>�p�����������+�>�������|����R�i���������/8�C�����������rb�������{Zja_q���������V �O���m�|������
�P�C�������������4��4�T%V``V��
����L
�t�e�����P
����
���������T������
�����
�h���P
�
���T��T��T��T����
no��q�q�on��
�������������T�����f������t//tq�:�v++��������n�+�*�m�����m�*�+�n������3�3�V����y��p�p��v��-�����)m�v�v����
����
��>��{
����ERQDEQ��c
��ERQDEQ������QE��9���}��,����~��������������
�q������������
2s�r�q�t�-��}�}�N}�}�~Z�T�Yp�r�r~�������n��
pw�����������e�f�c~r�r�q�/s~��|~�M}�~���,s�o�p�pndmfne�����n�
 �s�����������
�������-}�����N����������������1��������������������k�m�o��������/�����������
`
��
>�a�����
B`
���
�aN����t������y���������6��$�7m��F��
�����d��I�.�3�W�W��-
��hn����
��fo1\��s�\ko��{�y�xx�<^��
�
�����U/�Sk��W���?Ÿ��������j�-����@�	�
+6�	����OG��o���
�	��D�ɝ��·�l��Z'�#ik}ts')��2OKebh`i_��mdG1dq��h�����W���m��]��a�"W����Y����������������
V��F�� �����e��
�G�.�3�O�׈����-
7�hn����
��GNOH���	�6�
�	t@�K̬�-*�o�s�r��^��?<kO����篞������
�O���Y�	O�x�x�y�t�R]׈s�sv�k�c\k}\vsO����1f��O��z�k������O��~�r�������v�d�����O����J��.�eY�$�n:mo��O�h������q�1�d�_�`�c�Jl�2�)t��}�����Ǐ���y�m��D׈��
�	���83�������v���b��@�K�M�>����������M�>�K���R�4�)�<�5M��n����ɿ�<�5�)�4�RP����
���p�]����������o �u���d�r����
�T�������~ϧ\
�ԕ�T�3���3���~ϧ�4���
����J�������{��{���{������J�{�J�� IYU:��=Y��Ͽ��ڼWG��� ��j�8Ke`bz�|�vw��{���	�̋�{&������,�(�i�"���z ���
�����4�t�4��
�T,
L
�T�4���8��0�����Q�E�EQQEE�Q������0�8.�(�y{���������������w�Ai
����
��
t���
��X�Ti�TQ��g
��B
�4�D�D� � G
��U� � �D�D��
�����t����
���*
��^�Gof��������Tp
��^�Go�
��& ���
�������8�^�!�Y������1���/���)���Yb���1��+���3
���X
��]
+��V``V��R�z�f��|�X�m�}�[�YKKkK+++K+>��7��+�++k��˙����������̚�z�f�R����[�
�/��`����������������������������������o��������������������������b���������������������������t��������������������������@��������������������������������������������������������������������������v�'�T�_Gq���������z�y������Y�w�j�����o�`�)I��b`�__`�b�)�`~oD�W�~jgw^S�X�_�~|~~t�jn~@t^�o�Y��Y�k��|�P��/�"���`�c}�{q��_�'�T�v�Q
���y�y�����t  ���
�����
�?ApDU8��8D��p�?�6
�\����x��T�T�z�{{z�~�T�T�K
���T���T���������������
�1� ��!���8�� 2 �Z���Z���.n8��2����Y\uZQ m{���������r�������^�-Ʒ֫Ϧ����� ��[�����������@�{�wx^�^]U�p�[�c��\��ˀ�t�� ���������b�de�e�	����@�$fb%� <l6fGW���G4���� 9�<:]ua\Q ,�2�������n��������{����
t���������Z�w�R�Q�S��qk�lN2�IUph��s�J��&�J}�r����I���m�{�j�l�kā�u�v������gE{|jZvkSr^kPxOH.�7�6�N�P�T�>�a�a�>"�i�p�ul��e��Ǟ����ë�����ѯ�����
��
�������X�����4*
���(�����3��&���
�����
���&�;�*2�26�;�*���������qX�sIm�[FHN��M�o����;�ot�p��л�ͩ�������������&�o�x�tt_�Jdw�r�y��0�A���y������u���{�&A�y���������  �v�(T��QrLyJ�γ�ʣ�MfEpB}�P7�.�G�$�%�Fr�r�s�������3�Xo[{TO��(�QV�Y�`������1���(m�pn�nvw��w���.�"�4��X�+pr��q/�#�>V�K�����?�����ʹ�ķ�����������S��p.���v�/����n�������������������Q���11��'�A������<������*
�<���<x��p����%�����������j]^��h�Y��E�֊�ׅ�B�
�����������?��G��ߩϼ���qٵ�˟�'(���͔��͂z���'��w�!q=�w�U�G7���HJ�?x�s�]C$�8rw�s�����p�����+�q���������������������������i�������������������������^�������������������������a�������������������������r������������������������ʆ������������������ŕ������������������������ �v��T���T���T��T�$�T�4���\+�T�
��/�i
�)����������*
��l
@Z
�����@�G�t���t��
���
������ ��������V��
��Tn���z�i.�]�,�+�+�,�]�i�����{{���}�zy�j�p����n�������j��r����������������y��'�����������'������{{�~�{y�#j�o����i�c�c���i��q��#���������������4���
�����4�4��������������4��@�
���
��G���2�t�1�v���������~z��1�v�F�4������Y���tH�A��AHZEt�Y���r�tp��g��
���
�2
����
�4�T��t��t]
�Tg�E�u�F�F�6����!�1��=۴�����n���_�F�(���
�R�D������\�����������������\����D����
��V���T����$�4�[
�
�.���G�^������S������S�����G�^�J�(��@�t�w�T�3�f������V``V}�~���d�3�f�T�w�@�t�(�E�Q��T�!���
�T�e
`�����������w�r��P���N����x�y�p�r��NV[�P��w�r�q�q�yx����y�p�r�r�ww�r[�P�N�r�p�yxxy�p�r��N�P[r�ww�r�r�p�y����xy�p�r�r�w���P[V�N�r�p�y�x�����N���P�r�w������������}�����������������P�NV������������V�N�P�����������x��,���4���.����o����U
w�t��FPPF���s�\k�{o��y�xx�>\��V�?��Ck������������������������w���k+�+JL����OG����
�	��
������=��3��`�?.Qm\ibgbjnG5[��ho��������fu�e�l��Y�������=� ��	� �,���.�G�c��4���n8`��X�C�>��[�B��
n������a�tĹ�����o8i�x���������FP��������v8�+��֫ঽ�t��t�t�u�V�]�]B��1�����������
o8��[G�ng�i�m��Q`�?��3�4�=_�`�b�
��
�	�� ��	� �=�a�c�fn��}�|}K�K�Y�X���S��#�L���n8�������
�
���4���.����B
�`�K����P�V��?�Ck���1�B�]�]�V�v�u�u�t����������+��������`��PF���`�������xi�������P��ta�������
�?����M���Q��YK�K}|��}�Pf�c�a��=� �	�� ��	�
��
�b`�_�=4��3��?`�Q�m�i�g�`�n�G[����
��
��ʰ�����
���.�G�c��4���B
��t���ZB�
��xx��yatRt]ss��vikcx\j_��q����FPPFGO����LJ+�+k����������������������ϰ�k�p�C��>�[���������H�������k�f�u�f������
���h��[5Gjnbgbi\m.Q�?`��3��<������
��	�
�� �	�� �p�=������ϰ������ˠ�������S���L���������H���
���Q�Q���{zH��
00��
����0������,
��{zz�{�Q�Q�����
� 
���
����X���00�����{�zXz{��0�����������Q�Q�������Q�Q���N�����0��{z��� 
�����������00{���Q�Q��p���Q�Q��
�������,
������{z�����
���������P�������00��
�������M
�Q�Q��q���Q�Q�,
��{z�����
�����%�������������Q�4�.���������&����E��݂���������v����'�����*
�<���<�<���
��<+�'����������������~��'���������������|iyz���r|���������x|��~t��}�uz��������������������������~�}����t���yzr����j����hv�������������~|�����'����{���|����������������~�oz|������������'���������r}s�pw�h����������������������jh�y�~�|��������������������}}��|x}�o���w������u����x�����������z�����p���}�o�~�v���q�y���v�}��}�{�o�����������y�~�t�����c�����u����������������y�u�u~�������x�����������r���}�������|�~���g���w������������ɛ����������|����������������c���������x|�����������������������|����������������������������������v���������������'݀���������������t���|�������$���|����~����������������d����������+������|������~��������v���r����y��������s~�݇�����uw�}�{�~|�G�����|��}}x�z���ut�����������������l��������݇�������|���������~���|�r�������������������������k��������|��������������������'�����|}�����y����������������������~���������z�{�������|������}�{����x����|�����sv��~�v�z�y�z�z����������y���������'���7�����������������������������������������������������������}�r~�����������w�������������������������w������������/*�G�s �k�i��n
��8��"�W��=�=s�v
j�t����
�>�>��G��ww�|�&xj�U��t���=�����������N,�B[
��Q�?��F������������������
��������������
�������������������t��{���t�q��������z�4��~����
�z������������v��
�x
��
�����������4�4B
���
�4�4�t�
���t�������X
����S
�{e
�w�$�$����
�Tx
�Tqt{s��t�o�y�$�$���������$�$��������t�q�T5
�T�p
�$�$����������
y�o�t�s�{tq�T/�T���
���������$�$�K
�T0
�T�
�$�$��������)�
����W�n�������|`_�]�#�v����:��[���������vV��i���\�\��i��V��v�6�*�4���4��6���e�T�a�
��u܎���v#6�]_��`�u�uu0n1W@��^�;������e ��U�U`�4�U�5�T���T��T�T`�4�S�2�SB�����zyr�rrr��y�b�cy���������j��d�M
�d�j���������y��d�d�y�sq�S�Umtvw�jo�XV``VX�o�jvwt�nrr��yB�d�d�k������y��b�c�y�rr��U�n�T��d�d�UA�?<AkST3��«���n�U��b�c,��UB�>�?BnUU�'�&UVlA?>�C�T�d�dU��m��ի���3STk@<�?�B�U�b�cT��m�,��Ԩ���'�&������)�����J��,�>��������
KQtd_�O>�K��j�
}�|�}�,D!�/�G����
 ���
�������#�����
�#�����@�*�!�
�!��@���i����#��#f�l���A�\���4�v��4����4��4��3�T�3���o@�T�M��K���"��������~�x��������������F��͇�������������F���6)�-1?pWSRWn?�=�%�(�EU��m�þ����������B��B�������_X�S-(mU6�EF(�%�=�?�VX��p�O�������򎬇������������F������������˞���������y��\�&sqb]�NE��N��e����������wd��G�&NS6�}dNDwO�]b��qNñ����џ���s��Se&�G�F�������������������\}�w~vt���:�4+q����������������4�����C�K�t������ې������E����,��
����� ��aV�����4dYztd���P\�4VAlff�,�,fflAV�4<
�����:�\���i�������?��������fflAV������4M
�4��4������4�0M
�4������������������|�+�f�L�����dU�S�55�T�T�d�.�.�������Ġ���
�.�.|�����������|�����e�WT6LL6UV��e����[�o���!���"��m\�������������
����B)�%�h�;�=�h&�)�C����M��e��0���0���������
�����������4\���
�4����4<
��A
�4��{}������~�bx����4��T�
���
�T�G���k�m�e������eB�V�4V``V��Te
P
�� ��
�&
�P
�T��������
�w�Vn���5�!Jt�4C
��
7
�F
����nt�4C
��
7
�F
�T�
��
7
�F
�����'��)�����������h��	�$�J��7�_�H����,�� �� �����`djXg]�S��ˈScfzheb��pR3� ^��v������" O���m��(�;�.?GdFj�P�������yi7�vo�My�y�y����4�
�������(!���?�������:�:: @(��t���
�T�
�@��
�Tz�|���>
�������$����@1
�i���{p�k�g�G�R�[��"�.�_�_�u��š�����ȟ���mN��g�G�&��߅���������Ȃ�������A�P�_��AT�e�A�a6226^%�O�L�J�n�p�s�����o�s�x�Z�WS]{`lcmcbnXzyY\�a\^��cb�h�n�n�p�s���z�f�%�_w�h�Y�+�W�~������������ cv�͉��Β���������������������И���������������1�5��h���v�9��U�!݉�}�t�{�D���$�<�T�;�J�Y�Y�b�ll��|����ԡǩ������������������+�}������������������������������������y�L�J�G��a�7�5�����t�|�m�`�P���v���G#�?}Z�hzdqcwuvltlsj{h�xPK�GQP��Ob�k�t�l�{·�}����y����ُ���������������ˌ��|n�a`�Z�U���TS�R{S��-�de�h}~��~�3U��������:
�@�4
u
�R
 ���`
�����
���4������y}}y��y}���T��������}y�T����
�����
�5���X
��]
��g@�
 &e�e��O ������ �.�����Z�Z�{�zz{������{zz�{��Z�Z�����
�����������R�%
���O�XO�X�XO�XO�X�X�X��r�6�%
�v�2�%
�������	
��>
�
����������W�W������2�����
����g
��5
�T�4g[wrr��Z�ZTT�<D��Aٕ���!���
��!���
�ف����1�;�������)�)�����P��P
�+�<���<��Q��������̙������r��ԋ����ѭVLE^"t*9x�I��&�O�q�=���b�}�%�B�VH�\�f�z���w�}�i�~�w{�z� �Y�
��n�L������U�i�w��<�u��8=��q^�E�i�{PjPn]v�Ӏ��
���)�9��
�(�(�����N����K�‚��������s��Ӌ����ЬWMF_#t+:x�I��$�M�o�;���`�z�$�?�TH�]�f�{���x�}�i�~�x{�z�!�Y���l�J�������S�f�u���:�s��9>��p_�C�i�v9U:j\�i�C���eM�#&�nY�A� �������,�Ó�m�����x�wr��� ��.������f�f�������F�f���������H����4 z��e�����`�c�����`�c���#�NW��[�S���9�Z��)���)�)���)�;�����7����e�e�f�e�e�f�e�e�f�e�e�)���4������
������
�������{r|�sv>��(���T�+����J��~�f�f��~�J�J��~�f�f��~�J�����������K�
�
�����g
�5
��/{i
����W�Ԃ
�����W��~
�����������
�T�T�{z�4�T�T��
�������������T�T���
�T�T�
 m�
������F8�4�
����������
�����X
��l
@�
�@w�W�T�
�~
�K��W�T�
�@w�W��~
��t�0��mjingr�;��<��7�
M7#?����#��7�7��<��:�f�i�m����
���B�4�@ V7)0��[�/��1��/�^�/�������/��1��0������6���;�$�����p��#��s�����E��AA*,�?���������m��6�"�mp�F=(G`���$����.�����������ƣ�����0�����������п�����
����D�&�l&�y�P�������������sj�iel{pp�������������m��o��������������y��,�,�yr�rUg[giyx�tq]�u�m���~~���������~~����mu�]qt�yxgi[gUr�r�y�,�,�V�����������o�m���������������pp{lei�j�t���t�������W
�m�
�b��
G�T�TG�@�u�^�9v:p%"M$�%�M�����ڑ�����������h�i���G��G�T�TG��T�����&�&���@��;�$y����z������%��:�@������b���
���%��������%�����
��v�������
�T������D�d�d���D��WX��YV�_lw}v~v��*���A���d���D����������y����o�6��$�7���������	�^���~������ )�?�c������w�r���vy~x��]�͈}�|�������������*�Y���v�v�������������������������T�����
p{���3
+�T�
���T�A
��\���
��<
�T���
�T+�
��\+�T���T+�
��\+�T���T+�
 m �4���
��X�vv�uuv��v��HNNHHN��)
��	�	���	�	�����������1��j��
��j�/������
������������������������������eU������>
���k�)���������$��1
��
�����������
����
��4<
�4�����T�
��
�T�GK���4�������i��m�e��,�,���~���\��-���4�:����4� �#��x�:�4����t�T���.F�
��pF�
F
�4KqHaZxuuvwtD6O'���x��O�D�w�u�x�a�q���\�_��I�I�_��\������D�������D��$�2�?��?� � nzykjs�t�z{z�tsj�m�y�}�z{�J�l�Q��e��űťž�̛������������{�������y�n�������׭������
�0���|�z���T�|�����������������������T`>
�t���7
`�Tz�|��)��t������������������������������������t��F
�T�G��t����t�
�)�������4z}|y�t����T�
��ty}��������������������������������
������b
������t�T�4���T����N�[c�����G�=B�^�60�A�Q�EEQQE�AK����u��I7#e  #��7up�jj�_�p�B:��
ܾ�ئ�_�������Wc��[�|��a�
��m��
��w�����������������7�E�p��{
��m��;�4�U��3������ua�[�
�RҢ�����&�{
�&������
�R�D[apdu������-
���U�;�4�mp��h�]�@��@�h���֦������
���t��
�t�����������K�}��������������
K��Q��$�4�[
�
����(��@�t�w�T�3�f�����V``V}�~���d�3�f�T�w�@�t�(�E�Q��T�!���
�T��)���T��T��T���
K����5!�����
�K���h���h��5
�t��
�T�Q���
���
��_
����4��n�hhnnh�4��n�hhnnh�:�B�p����
��צ������g
���U
��k�t��E�Q������9��
���w
!�4���4>�Ti�T(
�t�t�T1
�Ti���T1
�Ti�����9����9
�������t"��!
���N
���T�|�zKz||zKz�|����������I���T�|�zKz||zKz�|�����������|�zKz||zKz�|����������6F
����^P
�
��@g
�5
��/�i
���������
��� �����U��t"��!
���6D>
�����^�
��k<
�TA
���������K�
�+�K�
���
�G+���

T�G���E���g
���p�\�T�
�����/�i
�)����������������������>
G�����������W�W���������2�����G��4��
�t�t���T������1��5
��4hZwrr���Z�ZrrwZh�4�
��!���"�"��
��
�"��
�Ti
���������
�4��
��4�����4����
�t�t�����T����t�������k�}�����4��4�����
k���Q�)���T��k��k����������������t�K�����
+�4Kk�4�4�T�t+kk�T�k���Ts��Ts��kk�T�k���T�t�4�4Kk��4�
F������t����ˋ�� �v���
�����|g�>DR������������T��T��˫k�T�Tk��tk��K���h�@�@�h������T�T�����Tp�����p�q�����q����4 ����
���p��������h
�����
�� ��z��Z��4�
�����
���k
��
�����
���k
��z��Z����
��
���!�Z���tL�L���A�Z���4K
�K
���z�����t���k
�
�����
���z�������
YY�������������
�����������Y�
���������L���������K
�)�d
��{�����
����|z�����X
��]
��g��4KGf�g
��0
�K�����
�)��+�TK���x
����
�^�4����Z
�T���]
�Tgk��F
��G�T��Ԁ
`�t���4+V�`�@�Ӷ����+�r
������S
��
�>
n
��4��Ԁ
�T�
��q��]
��g���
����4���������d�_gg_��
�d�4����
�T�
���G�T�T���[
�r
�������
��E�Q��������9 �v�
�
����ԫ��� �����
�������T���T��Y��������w����N�������T��t���"�R�DEQRDE�Q��������bB�T�TB����Q�EhE�Q���X�x�C�3p
3�C�Bc
���B��T��
���
���b�&��'&��e
p����e
P
� 
��@*�j{�4���a����,���t���
�����{z�4�����
���t�C��8�qb�b�b�{�y{x�{��������������K�  ����t�4��
�4�t����_��_�4���\���<�������-��7����������������ʗ��7��-�t�D�&c�+�������z�i��0&H.��0,�-##�s&�&�2iGz@@R�Q�T+�c��&����&����t������������
� ��������x
P
�tV``V��
V`���T�^
�T��
�T��T�
�4�
��&���Q�)�����������F������|�~������aiEjV��ul�������������Ѭ������o���70 XDQ������^
���
�4���7������mG�G�T�4�}
���
��&���������������������
�T�n�a��x�j�i�gx�i j(C��(�j��g�j�i�xh�i�5��'��=�=�'��5����G8
m�T�i
�n���5Y�'��=�=�'��5Y�i�h��������������C ��i�x������������8
�����
�Tg
��
�0
���T8
�)��TK���4�T��T������T:
�T�Tx�
�T�T4
��[�T�T��T�T�����KG����xP�
��
���x��
���
���y�y����
����p<�
Z��Q
�)����
��������������������I
����t�+�����t�
�������I
���4��!���+�������
�������I
��������r@I
��������0��I
��������I
���p%I
���0�0
����+�����t�
��$��������
��h������
�������q��������^��jM�P�di��oo�� '��.��<WN�����2���XV�u������
������^v
~\�b�u�D
���
��
^�z�xvu�z~�L������^�?
ޠ����������˜�0���������������$]�U�M��'����T�6���"W�
N�Q��(���Y��cjM�P�im��p�P~�~�~�����+�����r������+�UQ��������t�b�3���L�?0X�3>���X�������
�Q����v
\�b�u�D
�J�
���
�zxvu�z�L����J����?
����� ���s����
��]R�T1
�T�*�)�\�&���������Y��
�f�f��f�f���������z�M�{�y��z�	���z�y���z�������	�%��
��@��tJ�j��Z�!�!�3�!�"��
�
��$y�f�+�/���Y������
���kz�X�,���Hn���|�}���������������1��d�t���Z\�I����<P��W�3�֩Ó��W�W���}�O�����u�[�}z�y�yy}p~�u�[��BO�}a�`���5��_��q�������U���U������������5���������t��y�����w��{�z�������q~}m�nn��w����m�r�������������� ��
������������������4R�t�����������~�w�~������tT
�t�t?�t����t��t�t6
��������T���T����
�
�
��V``V�V`�����
`V���
D�M�j��e!_�NPZ|UzXr���Ĭ����D�M�j���RjdMD!�5�
�d�R��쿣�3��>���ێ��Ĭ��� ��TPv�4�T��T��T���T��T{��K����=b����u�t���5����m�U����z�x�w�y�������y�sq�ggK�g�������y�w�x�z{����T��m��Ө���'�&�������h�~�z�����UB�>>CnUU�'�&TUmC>>�C�T���z�~�{���������k������y���������
7�5��������u�+�=������
�T������Tg
K���%.�Khnnh��<��K�T/��i
���v�P�����K�t/�
�����o�h��honh����h��n���
���������;�m�g�<��&S�3������r�<��
����;�|��#����&�%6Nkj�k
�����hW�
x�}�p�������;�F�&���<U�3������r�<��
�Y�;�|��$����&�%6Nli�k
�����hW�
y�|�p���)������
�������9�I�v]�Y��fh{os���je�V�]]��n���������������w� �v�v���K�u�Kp��J�Q��T*Fhl��tn����ݖݘ����Ǝ������q�DA�������5�%!*Q���TFhulstnl_�a99��:��P���p���������������~�݀������������*�������P���k�9�o������������k��թ������������m��
p�
����[
�S����D
�
�����D��
�D�U
���D�$�$�D����m����8������������?�C�I������9��
�.�.��9�~���������`�n��
���[
AE��N����������������^�
��U
�������T��T����%�� 7;L9\Xpq�T��T��g
��5
���9�������������$�����9 �
���
�
#���
�������4�����@n
������������������T+}��~|��������C�3p
k�n�r�]J'�V��{k�e�{��������������o�h���c-��#���<���/���&��|�~���T+���������������� �t`�`����
�t���{�y��S;����RQPIOD�w�������t���{���K���������������6��������K��������t�������������������q����v�M�����������n�;��<����-��������=��v��v�k�h�F�����8����������
�!�!�f
�Z�Z�3�Z�Z�g�%�E
������E
���! 
��������
�a�!�f
%��3������3��g�Z�Z�E
�� 
Z��������!�f
������f
%�3�Z�Z�g�Z�Z�E
���! 
Z�����������f
�Z�Z�3���g������g�%�E
��X 
�����F�I�C�������?�6��I�Y����(�����u���C�� �XV�Y���x��\���������b��6��6�������S�������*
P���e�S�GQ���G��z�5�:�5��'��D���N��������5���T�T��(���TK��K�T���(�Tn
��4R��~����~���'1�
�A3�Zp��T4��
�T�7׷���
b
,�9�_�7�T5
��2
�T��Z��A�1�
�����������~���'��~�������������Q�1���
������
�Q�1�.�����
ꗐ������v@�T�i
���T�����t���2
�@�$��k���\�����9
��
���e�
���
�
���y�y���Q
�a
�U�)
����������_
���T_
���T_
�������_
�T_
�T_
��s������s����
G��-�������
���|�a�9�9�a�z�~���������z����������������
���|�3���3�z�}���������z�9�9������S e
���*
�<���<�<���
��<+�����������������w���������������������vttvw���_������������������������������+������3���������s�����E
�������Z���@@��@�@֋������Y�9�ZYh��YY�9�Z������@�@��@@���Z݋���� Z���������
������
�� ���t
���
��
�tR��1
���
�~���������*
��Q������
���9����{���s�Y�sn��{x�p�ut��}��T���������4�T���~�������T7��T������������
���������}���4�T��������Tru|u��t�p�x���n��������������u�r�T���}�yZ�n��n�A���f
�����3���g�g�g�g�g�g�%�E
���� �������������(�@WWS�+���������}����������}���������������������F�������������������簰ɋ�f�,�,�f�Mff���� ����z������z�����q{tt������z{����
�����f
%�3������
x�����������t�
�t���� ��4��4�����4���G{�z�����s�{���4�O!mFNB9x�*����}�}~��������������5�W�]������4����������x����E
�G�� x���������t��T�������c��������
���##
�y����u�s�su~u��v�q�x��Tz�����������T��������QO�y�7����}���T�x�vvx�z��T}x�q�vu��~����������O������z��T��x�q�v�u�~us�s�u���������T��������T�t:
�T,�T[�T��}ys���x���E�F���v��d�y�������������Ds4�>�$�0K��������������������_�������|�������������������h�)�!�<��z���������3��������������5�#�����N��2)(
�$��h�e�kI��
�z�|�������P���諌����������j�j�n��W��{����2�v|���#R�6�'�I�2|���6
�S��k�����G�������������������������\���L�9�x�s,'�$�*��
�*$�P�*��
���[��f�����d�L��"�������*�
 ���������������&�����������_��DS�z|}y�H�ec�$�,�L���t1�HD�U�
\+�!W)�E� ���������������$���z����� �~j�Cy�}��7�C�h��&�5�`���v�8�:�$�:�����R�?��v�k��}7�S��(
�z�|��%� �e@��1(
%$�?�n�P�D���
�������Q�]�(�E�5�U������W������������+�M�3�T�)�3�w��'���T�<�*�|�v���;�<�#����������6
�S���7��}�y�k��א�����������S���S�8x_uaz`{�{�s��k�=�����V��������������j��
#$��6�
$$������@��v�t�T�
�i�T�i���{�������_�,1�!��T����!�1������N�H�����'�	���)$�t�
�t(
�$�t�T���;7�T��6
�S���
�����N�H����v�����������������@���3���uk����1��������@����������:���6���zi����
�4R�G���%i��쎔����������|~�}�.���)�����|�}~�}�*����1����~�|���������������1
�"���C1
�d�4��}�����3������;���e�:��}�����3������8���i�*���O�J�K��.��J�?�7�����1�.��.K��z�J�1�Z����.S��cb��b���.K���jj�l��h�M�8�����ʟgk�������������&w�l`�����l�KK�\��������.���������K�.������H̢����W/�&�����~��k���S�ڡ#���ڨ�ZD�p�A���4�����I���
�����l�������,�,���}��������V``V��T����V`�������������,�,���}��l�l�������p�8V`������V``V��T����t�
�T�
�T�
 ����������$�����+�����)���f������}�����]�|�
��z
�@�\
 ����$�����������+��)���f�1���z
�\
2����}�����]�@�|�
�+
�t�)�f���R��8����8����T8�T����8���*�+
�kR��8��7�t��)�f�4�R�T8�T7�T�TR�8�7�T�TR��8��*���
����iw�q
�s�j
�)�f��Оm�a�
����"�
�q
�j
��)�f�d���
��� ���4�gnohgo�������H�4�R��5
�/��0
���3�#�������������؋�G�t�
`aM�PQ�Oddlli`g]_Q+�f�j�ooj�h�o�����v�uf��\�#�������ͥ�����ȅ֤�������������������������� ������T�n�hgoogh�n���4��-
���
���
���
����)�������|�m���������x�r���z�e�`�I�3��}�y?z�#�\f�LuOvh�i�moh�j�o������Q�]�`�l�d�O�Q�P�M�a��t��G��m�q��������������v�i���� ���Ǿ������n�4���^��ːΆ—̀Ə����n�԰�+�}j�{x������t�������zj�1�"��L��������zii����|E�;�;��]SH��v|~�}������������I��q�z��x���������c������������y�pst}qv�5H��ίp��}��������������Gq�|�z���{t��������}��yp�jip~rx}x�od�d�n�yr��~������������������W�����vu�yi�0i�z���������x�`6�0w7~Q[`R�|���������R�[�~�wߋ�������ƻ�ő��������|�ą�`�P�8�05�����]A�]��|�s�|�z�|����W��W��[�
d�m}yrxq~jiq��y}�����������������~r��x�nd��I��mpr|rv|������������{������������������H�� ���X�?�����A���܅w��l�D���z�ك��{�ц����Ԩ�_���~�q||�||��|����������f�|�mm|t^]��Z����'��X��"��-�I���bgiwknv����������v����}�������������(]�j�vg�rxhkl��m[2�+�*�m�������xf��w�j]�Y��n�w���w�y�{hsfy\\h��qx�����A������������zi��r�eV$�G4]�t������������~��%]~smn}���f������t]�f�c�����q�y�J�>���L�N��M�M�N�w�K=�KQx<r�����������<�Q؃v�L�N��M�M�N���Lؓ�Ş�������z�G��D��!�M�L�M�.�E�Z����
�#�������x��rh�]^hzirxr�dV�CV�d�qi��z��������������0�nwx}y����������0�g�s�|r��������T�����v��������7���y�g��}������}�~�5����������T�~�~�����������������K����������}��g|ut~���$zm������v��s�����������������������:�������/
�s��s�A����~�T��z�}xp�M������������X��������l������������L��y{���q�������������-�g�������p������������Ln}������t�������"�V������O������w�( ����[�,���x���x���M����
��y�h�>�GC�TU{�x�%��%�����%��%���T��D即���#}�f���
������؋����›���%��%�����%x�%{�T��G�>�h������
��
˳�&�����~��������'+�����������'���}���������~������~�����������������}���}����������3���3	+�t�4��b��4�t�D�����8��0���9�m�i���%�i����f��������������+�q����U�����3���������@�������
��
��n�D�D�n�n�D�D�n�n�D�D�n�n�D�D�n��.�b�XXbbXX�b��������p����c��}�z�p�p�q�h�&��������c&}hzqppppqzh}c&���������&h�q�p�p�z�}�c��������������������������
�����o�1�1����!�"�!!"�!$���o1111o����!�"�!�!�"!%�����1�1�o������$��������������Z���<� �<��ps
�����7
���7
e
���&�]���&�8�t#�4��#�4-�_�G�_�G��� 
���C���3��u����X���r� ���9�*�Hb=g���h�`�̀�����,�����������ް��5-��"����MM/�8��(x�,��(�9�0�KDz�іɕ�O��T��Om̀ց�Q������\����Y�5����Yy��{�)�)�+�)�j�x�Yh�m��G���{����I�U����s�V�7�=��o�{��vu!� z'f@o&d1��c��a��a�P�E�b�4�"f�|�au�n��O鿦ɯ�˱�n��n��o��I����7�J�!�I������5����.�OB\W�Q���Ħ���dRۛ~��-aOpbK�I�2�C������@�l�U�[������s^�Y�oc�`̄ƃ�~����ƒΑ����~vD�,@a�D�1��"�@�3�b�yЀ�ѐ����l�"����k�"��rbs��Ir�3p�1o�1�]_qew�G�1��(�'�$�:�e�����r�)n�'y�*��ԧ��ӥؘؒ�6��;��2]�z�t�[�u�n�s��� ����P�D�cl|P~_���q��������<����������}�N�x��0�k�<���N�������������/
p�ti"d-����"�`�#�6��9�VѺ�D�����������M����V���"T�A�������K�$�� ��T��h��������~�t�T
� �t~������~�����������h
������������������h�������������������h
����������~������t� ��t���������{�tR� �t������~�������������������򕃘���������t�6
���������������~�����~�t� ?�t~����������������������
qq��P�V�]�]�t��סж�������i�h�h��MD�;ZQuItI[�nt]��F�EQ�Z�-[+@@*e��-�8��;�@�@��4��������������u�vǹ��������ߤ��������������p7ZYCYCq5�(����������������������� �v��
�>����>���>-r�>-��>�j7��)������1����
�;��a�u�a��b�t�a����vz��������yvvzyu�:uz��������yvvzyv���LR]]S�BR�]�ĸ���B�]�S��x�*�.N�Z����wR�]�Ĺ���w��wR�]�Ĺ���w�Ǽ���|���������������C��NG�CCG|pNC���������������!C,��3�1�3,�� ��q�|�]�RS]^R�BR�]�Ĺ�����_���w���η�����}�����|���w����$��䔻k���i��ᦿ���ů��I�7�����J��+��k��t���������}����n~����x����?�����z�}}���}�������������b����;u{�{~(0YP��
�K��S{T�Sm���������������������{qiTAsF�G�K�i���wz�������w0�o�_ew��k�j��	"�˒��l�s���h�z�t���u�|Ц������y(0u"�5��������@B���'��\��ϊ؊����s�q��ٱ������0@��.&7�e�}�|�_��g͗��������������������������|qD|u�n�l�a�K���]�~���������������������d� i��q�qq��u���zw��|�wʎ����ó����^�=~Ş�v�}M�,������7���Qu�p�z�������T�S��(�����p���zKY�N��G����J������ ��b/ѓ��������c�c�t�u���p�4�K�6�gp1���zy�������@���������������������y�r�7�Y�}�{�w�\�������w������x�F�i���������������������s��}��t���x��y������������������������������o�G���qt��
�s�p�^�)X)iz�=J<I�
����ԑ�yʂ����������X�j�eˈP𫐠���{�y�M�9<��I�b�q�u�ҏБ�Z�=�Z�>�F�df�|o�L{1�$�+���#~[G0`SQRn�e*wXjs�I�x�[��Ͽ���^��d�7�,vX�9�<�D�B�c�r�������������~�������������������������}�\{zeugwT�qtmq�F�X�ec_�d���d��y�q�]ʼn���������������m]�n�r╠�����Ĩ�@԰�=�������{������ ����j<5x0�3�%��������������������\�Q�M�������������G���#�K�.�<(�������؃���f�f�f �h�8����z��_��=�K��
�8��^�@��m�K#�2�'(��h�U5���h��KQ�����y�����������%��.�"��/��b��7�������$�:�,M%��s�y���s��vnX������}�|�|�����,����#��/�� 
K���=�{���@��������m�_�X-�P�u�P�ª�����.�M�IJ��T�2��&��&���<�_�]�A�Q�S@�QdXJ*���13SsVQ�~�y�s�"k�=O�B���m�m�Y����������XX��[�J:�3�3�:�J�[�XX���������Y��m���
��)�M���C���K��K�|��|��v�pus�r���dopdad�o��������mn��no�&�{{�xoj�p��h_�hm�nf����������������A�����rk��R���h�������g/Q��Q��I�s���������7�z����������6����ݺ�����Ͱ�H�f�H��́b������������48�T�T:
�t,��[�tR
���4�:
�t,�[�tR
��4������������t���������cM�A�AM[Pc����|�xxW
������w�������/�����g
�T��M�Y��4��
���T@��������/���w��p��{�M
�4��|
�������T�t�t�T�����
��
�4�
���$�D�d�d�D�$��
����|
e
���~��mp�k������`�Yy��u��������ݶ�S�Hk�pf�1H 
��������x�
����������������������������������������H���H��������������������������������-�H���o�{�H����遏�������������+�������������H���H����������������+�����������������H�������������H����-����������������p������m�t������}�%��I3�U�����[���R�����H!f��������������_�����x�x�o�r�iB?z<���������.�"����������t�o��2|���3�������C�������T˳��T-
��hn��4���
��Tg
��5
�T/t0
��g
��
P
i
 �v������@`��g
�t�����A�A�2��A�A���A�A���A�AI�'��t�
�t��2�F�^�wtp�c�s�����������K�c����I��
��>����Z�Y�
�2�d�e�Ҧ��t0
�t���E�
�E�E�#���)�v�����o��}���}�4����u�{���z��u\�
O#���nWv�Z�����h��,�l�t�:�$�4�Zsj{rg�������l��b�1���Xl�dvG�'�b�Q�^���{���y�q�����a|x��|{�j�j���������s�}�����������������.Ӣ�ѡ�?�I��Y–�����K����k�.�#�4�)�s�V���
�1��|��5���G�c�%�1��A���� �X��R�f�
����7��n]Mw]�^�}�����ǟ�x�w�Vo]�
�yt�y�y��������������w�y�B �A��'��!��3EM�M��!�#]��([�B����4��W�t�I��m�@��n���x�Wx�W�t�I�����������W�ȇ���$�r�z����ӎ�l�Q�3��J>�Rq�����_�(�%�v�v��=�=)�G�/����H��{����uA�R�6�=z@k�wl�k�k�w��������l�l�ae��l�j����������{�R��I�7�
��A��5i�f�sg�f�f�s�����h�.�/��g���g�e���������0l�F�
����
mi�E��#�=[�Z\�Z�#�=�E�O��i����������N�����Q�@������Q���������������y��Q��������@�Q�������p������z�E�������������&��}���9�ً���܉���{�H�[�1�����������N����[�G�C��J��ۋz"q*g2E��K�a�"�8�1�&����*����a�/��rwxrr�w�������T�(����v��]����������������*I��0���������������
��
��3����30�H��5
����7
��Tz�|��4#
�5
��
��T�|������������������6
�T��>
�4�#
����T3~~����T��z�wwv�x��T�������4���4O����e����9 �1
�����������d�p���S�F�4�7�z��w8�,�l�����������r�7����R��Z(�x�[��t�s�[{��+��;f�������C�3DK^Fx���u���k��r��l���qv��}�������������T����K�����?�(�&�P�X�+�)#JU�^m�m�m��jg�e�nyiYW�»������ë���P�����7�i���S����պ�ԤÎ�˒r�Spp�o��G��.����B��%���r ����u�`v���t�T�tp��
�TR�4%���Z�d��z�{�	
�	
�IS�4(
���
�k�.�
p�k����T�������t
�t
��
�tR���M���o
����
���6
��~���������*
��Q�)��ۛ��S�%������4��՘Ζ���T��˫�K�T�]�H�A����F-�"�K�
g_�y�z�}>�Q~{{�~؉؇}�zy_�g��K��飳���ܩ�n�_ZZp_bn:�������v�k����bA*t%n�d�ʋ��̫�����4�4���������m�����4��tb�����m�����+�+�4�4k��kL�J�J�l.�d ��
��|{��|�8S"��1�Þ����H�=|}��}�6TV�5�wS�L<JI<{�{�|��4��"U�4�wT�L;KI<{�{�|��3�1VPwcSM;�Nۛ�����0���0VPwcSM:�Oܜ�����-��7O��d����ٛ����T�8���9O��d����ڛ����S�;�@�Ǡ����L�9����"������t��������s
���V``V��V`���H�z�u�|�K�R�Kj��g���
�ů�������ɣ������YPOdq2P2R2QreL]]]L��e3�0�3�a�S�f��ó^U�����hv������n�2�o�����E��������`+s!���j�m�d�f������������J�\������e������܌���
����<������b�d�a��ʵ���֊��ی���
�������������!�z�2v�Ԁ�����������<���r�qo=w5d���:�y��.�����h�O��6���?���)�k��k�k��
�k�k���k�k���k�����������
�������ɲ�~�=�`�U�f�6����@�IV������������`b�����1�N� <��:�M��@�x�i�]�'8��������T���
��}
�T��
�T�mh�n��������������PelnhK���l�eP�����������������������;�T�
elnh����l�e��Z	�P��I�{{�{{{��{��Iy���!�����������
�������~�������������$���~��}}�����#M4m���	eupb[^�d�tQ�E������������T�����������Q�E������r�e�����ĸ� �b���������$�����������0�Y����	�`�	�_��_�	�����fd�egg��h����1���(���'���,��� ���ge�ffg��h�a��C��N��~�W�����������������������������H�y��n�����j�m�����j�m���)�KT��e�]���B�c�=���=�=���=�O����J������i�����!�G�)�e���G�l�G����}���ff>TT=��g��}������}��R����������������I�c�ZYccYZ�c�������c�YZccYZ�c��������\pcdw�y�wx�R�j�.�����j�.�R�����c�o����ͭ�}t���������������qZ�������bZZcbYZc���\�L���
��g�S������VI��m�
0�ܰ�
�.��G�.�����k�.�L�.�k���?�+�����llH�\\H��l����������Z�釧�鏼����������0��
����
�k�cthjz�{�{z�7�L��v�v�K��7�����i�s��ù�Ĩ�w�л�����������Qa�������haahhaai����?�U����l�[�����Ĺ]S��Z Z��+�)�*�*�����MO���v�rqvvq�� 25 �3�����
�+�q�v������������6!M���r�34��2���o��q�v�������*�
����� 
�).����`��`��`�������N�W���{�W�M�}�|�X�L�y�R]^SS]��������������T�T����V�Q�~��ù��ù]S������S]^SS]�����WQ������U�R�����T�T���������t���t���4�''��t�T�T�t����t�T�T�t�T ����7�8��8����a��`��a��a�`��a�^�������M���kl�`���
���8�a�M�a�k�aW�`�a��9�M��9��7���B�a����
���8�M��9��7���B�a����
������H����g��g�[�o�������\���@�\���C�G��%�:`d��h�b�gb�ۏ֯�Ȱ�����������:��%�G��?�G��%�;ad��h�b�gb��N������;��%�G���H ���v���/��}��������7����������
Q��Yr�3F���ZXa��X�x�wx_blk�x�����B�)� K��%Lo�3�B�����J�������w�u~�k�u��x�u�����*�k�?��O�z!x�yxv�z���A��������Y�����
�Ϲ�������[�D�j�m�hl|�{�{������̡���ԡԈ֊���j�8ч�������������5�T������&�9�E��
�Z�$�j����������b������������<���r��������(�B{]�<��6�T�Y�u���Z�|�i�JC^E,g_zsyub��Ֆ�Ӫ������u�^�q�-��1������ݛ���zJ�1jI�1jgT����iԻ���E�Y��}M�F{M��`���@��������]�����~tv��t�z����,�������������������������J�����~����Y�������=U/�0���A����������������q��t��ת��ԛ�����d��z��}��������PPxvtnos�������������������������~���}�m�z����Vz-cObPru[�N��
�S=��)�i�d�<&l��i�X�sŒՍ����0��Z���Z���6�:���3W��4�U��_U�2�6�6�W�B�N����	h[aj6GUv@cLj��^�H�I���,�+�����T��j���k�(�j���j��c�+�,�5�4�+�,mmZZ;�Z�Z��۽����+�,33m���0vH9*��/������o���⩩�+�,�4�4��>4�
��q�{7�$�//�)�9�wh�	���0�m��+�,�5�4�+�,�4�4�,�,n�Z��ܼ���ۋ�Z��,�,�����>�'���l�4�n��,�,�4�4�,�,�4�4�,�,�m�Z�;ZZZZ;�Z���+�,��/�o���-��D��������/�#5>'}���n00nm�,�,�5�4��,�,�4�4�,�,����ۋ�Z�Z�;ZZ�+�,����j���������+��
����J��Ѳ�"�^����������z�}�i�{��ѧ������錐��������z�s�s�^my�z�Svn�n�U{u�u�w���z������~����������������������˜����ڦ���L�vewe��:rnwt]R{���������ϝ��ȹ̯�����\�����j�����t���a�z�������m�|�}�l�~�~�n������h�~�u����������������������N�?�M�a�m�����J�}�����f��g�^�%��l���l�I�%��u��X������Blznxj|Z�6{�&���1�~\�����������N�UL���������ܿ�I��4�����'��6�������k����Z�6nNw���������������������������a���������������t�T�T�T�t��
��
���T��������]
��g�Z
��`�7�7�l�f��,�,�fA�V�4�
�g��K���W�?��t�qE���E���E������4��4�
��������
�
��
��@��
�5
��/�0
�x
���AA�K�
�TV
1�CK�
�TAK�
�TA_�K�
���y}}yKy}����������}y�T9
����;��9
>0����y}}yKy}����������}y�T9
���P��t�t��p����f�e�O�ef�x�x��x�xe�O�effe�O�e������D���D��������8|
 Z������ *�`�7�Q��� �`�6�����w�%�	�Y�4�W%*�%�	�X�4������������j��%����1�������������g�6�`� �Q���7*�`� ����D��4�	�Y�%*�&��4�	�X�%�W���
��T�����#���E�E�#�����\��[^��h��n��T�����^������\������z��.����}��T���N���N���N�����i�Y��T���}|�|||��}�T��Yyi[U��\�`�u�T������������T���������v����
��
�+�
�@��
������8���T�j�M�Q�M�Q�M�Q��W�m�[��F�N�$�l�\��T�T�{z�zzz��{�T�T\vl]X�$�F�N\vl]X�4[�^�v�T�t��
�������������T�t��
���������P�8�j�J�2��R��Q��k����V���o�����8��������>��A�
��,��������'>�&�&��������2�u�����Q�e�����G�W���n�!�e��q=s)b?�ɽV����W��X��/c���������@���o� E`(�������y�k����2@�	�/������@���O�l��m�C����L�����A������A���l�s
�����	e�1<fXEi�o�B(�4�G�#������ɷ���R�M�7�L�M���ģ��[�?�Q�m��k�ȥ����a3N���H��
�F�?���A�G�!�<������/0�U����@Y\@���քd�= @�6��>�������U�*���*j�*�.�N�������������������z����+8��a��{�z�{�a�����Y�%�#������������y�=���<�=���=�<���=�<���<�*����`�`�����`�^������+���LPzlX��1�A�z/�-����6�D�&��@��I�����`�_����4��|�����4���B������
 4���4!�����3�}|��~�j�k�/k;j:/d;�j�k�j�L��`�������*
�`�h��������������u���Y��5�4�Y�\�5�5�\�Z�5�6�\���~� � ���
q�@��-�3���3�T&���k������������������v�vXw��p���D�>��m2W��.�_�Z���8n��������E�� 5<�hL��hL�Q�R�����S�u���'/�����>0����A�g���z���8�(�Ғ��ӑ���P�����0K�C�'�Z�L{o_�u�����O�n�	�ɋ�#��x���W�{��D����ߥ���p������B�dȋ�e�E��)�p��3�����+5�7w�p�	����n�t�T�y
���@
����y
�4��'���
���
��
��
�
��u
����n ���
��t'
�T��
��
K�
��K�
�V
��'�� �t��X�t�@
�X�t��v������&�'�y���&�'�Y����
�
���
�Y�&�'�
�y�&�'�
�b�K�HJj�p�������̃Έ��bi
����������a����ouwr~�������'89�{=�{��mx������������<�*e>����o�kjqpi{������A��R*7}xE�|��}jp�����������]�VY0�-�|�xp���aime{���}��l��d""�p*��}�|bl�������������v��\&�A�}�xf�a�) 
����W������po��"��_m���3���m������������"�������3��s������ٝϞ���¿���������8~���~����}������������~�������h�s�������������������������������׌���������������$���������������������z����������������c������������t�c��^�����������_�������P����������v����������������������������v������������������~���������w�~������������������������������������y������������������f������������{�h�������������������������{�������������������
�����
��Z�~���}}��}}�����}�����������������||{������|������������Z}���������������������������	��z��}���������{���1���0df�}i��t�j�\��KMuTu���z�y�~��������0���0�����&
����
���
��
�
�<���!��!����
�
��!���<�
��jv�����t�
��Ǒ�m����l�����!��4���CP�W�h�Ќnj��������������������������|�vw||r�yI����s7h3^1c:gJlX������������JU>�]�w�������������������D����&���_��n�����������������������r6�Hgd��al�o�r�@���/������K&``m}�"�,���� �����y������������@��}�z�~�|�{@��Ë�����)�������ҧ̞ȭB�O�`������)y)o3h������������m^��Z��x���
���
�:���w
!�4�i��� 1�J�{�z�~�v����������$����$���{�z�~���������������J1��� E�8�)�3��y���������������{�|�|��y�3�8�)E�
���
���1��V�!�4�g����V���Q��G��� ?��3�������������������3A��� H�W���T���!����� �5���������������|x$�5�!���
�~�;������
����~�V��!�4�t���/�����|��h�7��S.1l~gd�`��;�!������������������w�g��vp�h����
�i
�?v��
�x
V�!�4�������m�T�T�T���������
�
���x
�������-
��V���P
����P
����P
�������P������fA�V��
��T���l�f��P��������������z�z�! ���
�P
�����4��4�����r�n<��B@(��vM��z�zy��:�(�(�������! �u�6��B@�!�eDR���Ĩ���nhhRnD�
�����
�x
K����!�4B���f�~����:�;�8��:�;�����
������������5�E}}��o������ۮ���h�J�t����������o�%����]�8%{~y�x�g�(|{��~r�����������x�j�r����������q�O�>99l>SO~~z�z�
���
�x
K����!�4����
�E�Q��y��
����������
����1���������
������������
�%v��
���w
!�4�4��v�����{���v���}�������������J���J������}�X�}�w��}�����v����w�}�Xe}��w�}�J���J���}�w���e�������v����������aʁ��������ӎ���y�L�z�z��y��ӈz�z���|�c���y���u���Y�aa�f�f�6�&������̶Q�HyA~`��D���ޟ������(�����#�P������g�Q+<�3%�!!!�S�|�B��D�����������M�h����ߺ����� ���ђ���O
�.�-�.�-�.p�l����H��s���-�����U���7����s���H�<����J���J���J�?����H��&������U�����r��s����&�l�~�v�����~|�|||��~���v}~rr��r�r�}�������������������������|�"�����������������d� �^)�[O�K�0���-n�p�q�
D:��)�r�J�?�t~���������r�I�F�o�9$�"�%�����9��/����i�ü��I�IR^rdcl�m�k���ԧ��2�*�:�8�)�0��\��pFN[BA�\�Ÿ����g�h�gGDDl)�3��=�
���
0�
���jR��V�V�VT�PQS�yV�V�V�����:��R�j�������V�VyV�TPQ�S�V�x�������V�Vy�Á��•���V�VR��j���h���h�
��@��x�m�����Ł�y��V�V�����j�R���t�t��t��t��F����4��x��P�p�����������������[��p������x�4M����F�q���q�q���q�Iw�w��v���|���yx���*��|��8�����������G�}�A�I��r��w��-�u�����\�?�	�5'���p�����x$�� PY8������4�I�5�K��� �G�3�#���T�1��!����I��%�>�H�G����U����������B�&�����������v\w�ͷ�����- �-������%b�b�d����&���-�JRp�r�v��Qi��u���,������t�~��՗Ӣ�9�������R�M�g������Ĭx�{�}�ާ�EvhrjplJ�- �?�&n	�5d�b�b�I������,��u�e��u�i�`��M�6�f�X�P�����lj�iij��l���PXlf`�M�6`ZiRuL�};�p�omm�o�p�|;�L�R�Z�M�6�`�m�[�������
���[��Ɨ�����M�6���Ġ��|������������}�����������+��v�j�������S��&�z���������z�g�M�Rj�h�e�d9o�I�CAA~CtI�o}d{fxg�j������;��v���+���I������z5�&o�?� ���m�j�hĬ�7�;�j���j�j���j�j���j��j���j��
�0��K����B��H���
��\�O�+�:�������x�O�a_U�TS˄�B����g�f�t�XRweWW�k�!�����:�{�z�{��z�zy"J<%wl�y}jh�w���|�m'�!+\�!�
��ո�ϡ�n���������M�b��������x��������7�������������t�tt�p�o�p��yje�f�{��m������~���	Ǻ������ �i�ii�	yz�yW�uf�^�������
���V]g`[[f��������_\��� ����A���^���N�?�I�`�U�j��f�#�b�'�^��j�T�m���4=yBF$�������3P��:kS43g��߫��ޯG@����pFAw@�UM�M�M�%��O&��i�Wt�LXU�_�o��gBF��b�WR�?�d�/�y����(#�-������:���=�������������;�������������r�a�``��^�_�^�r��ruke�dA~����������R�?��‰“��w�n�mm"�?+��R���������������U`�B��=�j�ȕ����w�S�<;QE>?�F�` �����
� ���R���X�����X�4�! 55 p�q�sa_^U^H��K��ʲ�Jp��w�����������m�����7���ų���u��~�������������������/�/�:�q��������~�i�y�����k�k�����k�k�����k�k��gf��ho�py�p�o�o���������������
�����n�0�
+�(�\f�m�j������ő�¡���������C�B�{������������g�tzl�dg{S������)���������i��k��-���������z�/�R��ɮ٫ސ������q��,�Þ���2=�5�����������q�n���Y�V�L���9+�3��zZ$�;;�#�}�Mwz�V�qzvy^oy�z�z���v�!������UggTUT���¯�¯gT�{��fggTgg������¯gg����UggUTU������gT���ffgUgg��������gg���!��M��m���#�����[��8�I�C�n���y��y������|����������죢����������������������������Ԟ���[�T�I�&���%�7�O
�����~�~��������Tvt�s�r�v����6���1����p�s�����������������Y�M�	�O
���w�p�v~���Tv~t�s�r�v���l�U�Xq�s������������������k�	���%���]�r���������������Kw�x
���ܿ����
���D�&�l&�y�P�����
����>�T
�/
��������Ua
�������
�
���������3�����������^�������bX�k���>��C������_��}�g55�533�3g}cm6ﳽm�v�%f���������~~��O�~~��~�����^���������a��}�g76�7/.�/h~bn1���l�p��.[���Rh�5kuZi/�4o�e������������
^W�f����������������7������������h�7jvWi'�2n�f�������������z�#�z�C�p�i�s�L�2r@;pEVP<Q<m+�,�4�>�;�O�d�l�w�����
�#�>��
��������������������ƭ��
��t��t���������4��������t��t ��t��t�T��������t��t�����e
���7>jVR���H�����������%���HV��j��E�#�#�E�E�
�E�E�#��������H�R>�7�E�#��E�#�#�E�ج�����H�����E�#�#�E�E�#�#�E�E�
�E��?�>�?�
��������	++�	�
+�	��������heXuS�	+�
�
��	þuh����������	��
�	�+�	�
++�	SX��e��������������%���������	�+�
���� ��o�9�˫�4��9��/�ː�/��4��G�j{fj}�^11^�r�t|q�����j�|����$���$�J���|�j�B������G�r�b�rrKK�&�	���������������j�	S��ˤ���r�eG����e�����~�1�~�w�~~�w�~�1��������G
�z�z�����0��v�~���0B��������KR+%+
�~
�T��+u�+������~�w�~10����������G
���4
�v���2
���d���������d��0�
����m���c����Fr@:}77:��@�����ڳm�-�T�0�>�����2���tM�����2�V����3���3V��2Y�&���L����t�������>T�0-����������V�-���
K��K��K��K��K��K��K��K�����T�tY
�T��Y
��TY
�"�6
������������g�n�~��Y
��T��Y
��TY
�"�@6
����
��������H~���������Hf����T
�T��������g�n��p(���������������p�T��<}~�}��������<���4������T�����T������~�}�<��2
���<����p�4�t�p�
��Y�:�YY�%�$�~�~�$�%����Y�Y�:�YZ�$�%�*�*�4�4�o�ol��8�������I�I�������8��o�o�4�4�*�*�%�$����Z������u������*���
������+���
����u�H����d���8�lh�Tw�w�v�������y�m�\����_u����5��������^��/�7���h�Vf�������J�C�2�2C=+�J������V�hX�[�<�*�N?�Y�3�: ������]�#�������"��S����:��Y�3�N���������%��%�I�%���%���%����%�F�%�"�F�%�F�%���"�m�m�m�������%�@�5����z�"�m�m�m�m���F�F�
�V���m��y�j�j�g�wrPE����]�����}��������~���S�u8ӗ������������������)����x�m�6�����
���|u�w�}un]~�'�)�k�p�{�u�~������������������������y���������
����n�k�upto�g�o�>�4���y���}����Ϧ�)�Q���4���
g������y�r�=���7TRyy�t�v��z����3�����������*��������WJ�t�t�x~����8�tA&���ys�j�m�m�}���������������՗����������������
��:
V�x
�������
����������������������������������������d�T���T�-
�5�������P
����������x`�������
����������� � ����ee�pZp� � �������%�$����
� �B�(�(�BP! ������(�'�'�������$�$����
�G�G�������(�G�G�����s�$�$���z�h���l�?��9�����������%�$����
�������������������������_�{����������_�{�������
V��|
��m
%
�G���G�G�G���G�G����EQQE�EQ��������QE����G���-
��
����
��
����%
������
�E�Q�t������
�
���l�T�������^_|_j-Z7BG:?)_�s:y8�C��Xc�cs{~s�y�y�y�y�z�y�o��t��������������������o�����֎�~���@���,=��"��H(�`��dine��|�An��q��������������˗����NJ����ܨ�,����+P�מ���
���M���	q{mv��=�m�
�����RJ������C���w�w���7�c��l�!�w��/|�)q�%�
�Q�X��e�������Y�G���D��������W[���r�����0�I����d��?����q�o��v|wv���N��X��^�U��������������Z���������l�-ƒs|e��W�"}f��ڋ��\�G�Q�+�L�������~b����G���D����C����d�5�.�2�6�J����:#��:���t�|�m�c�U�Jmopm�v�n�]�TB���4�B�@D��d��$��r���������v�J�L�8�������8˿}~��=����.|Ն��s�=�x��zo<�B��������������d
��������l�8�l���	�\�������ʨʩ��ܧ��x�x��Ӫѩ��̉�Ш�ܧ��̩ۨ�~��������+U������n��/���nT8)m'����x�x�����x�x����+U��mT��s���_�����^���^�����_���������x�x������x�x��((��8���m��0���n�y�fz�������z��~���|����~���w�L����������������������������@���������������%������"���s�x�@�����{�s�@q|xs@�m��w~x� ���~�x ��_s�x������{�rr|xs@��s�x��@�����z�s (r{xs �2C���������������������������%���������������������$����������������������%����������������������w� x}s@n����ww~s@m� (�{��������|���������vk�6��~�}�xen�������������H�G�)�qtyduw��{���������������z�~�l�{������������s��{�y{��������������s�i�����|�h���o����b�p[N�@~���� ������r�@���na����&s���� ������u}{x�w� cn�������3�������o������w�~u?m���{�������D����@�����}s����~�szzqq�z��������s�}}�w��_o����G��~�}�xem��������������HG����������o�����x�~u?n��{������� ��~�}�wfm��������������G�������������(�����������������%���������������������$����������������������%������������������d
�����;�z�u�1�t&�A����"Ω̵�i�����&��L�̔��+��@�����~�t��vq�az�p�������@��������u�bw&�����8@�SJZu\ek pkf�Y8@,�����F)��:�������J\^GZg��m��n��|���������~���~�r�N�v�����Ư�r�i_��z{�wow{vy���}�p�sV��1}ns�o(>�������}�>�pt�lN[XKH�[ͨ����>��-
���"�?���4�����'::'�':��������:'�,�Ah�"����t�t������LR�A�S�1�S�c1���J����ֶgLXpjZ�@� ��=�P�B�BPOA�A�O�����������gŬ�\�]�W»�[�Z��3�)��S�����f�f�@�_±�R���D�=��̹���|��ͻ�M�V˹�$���Q�G̟�^ͫ�w�_�B��G�.����O�`�I�Τwϓ�RϺ�T�EDjX������������3��"����"��7�<�"�ߊ��m�Q�1@@ry�t��8�����s���pv�u:@�����r���fqv�u:���d@���r�_F�������/D@�>�L6�L!�� @���+���������O��h�h��h�h������[�N@�c@92;�����@�����1 ���y������,����(�(��,�m���m<��}ni�k�<�ytg�n��������(�B�nl�mva2�gW�TP �����Q���~a���w���e���z�����!uP�������!�Eu�������:�P�B�BPNB��G�=�_!!@1�@��Z�*������y����@u@��������_@��M��_��H�EQ�Ji�Q�wr�SrNG2��Jt��A��������(���@w\�EQx�]�nr�TrN��:B�N���������c�T�X�.���E��!���]^����g���������g�T�W�-�������|cQ�� ����f�
P����������+���(�(��+�l���l�>�vI����I���<5�������YaqT��;�Qvy�{�Q�ŷ�����`b��Z������
�Y`qT��;�Rwz�{�Q�������9�RI�P��P(�����*/�inW�����|ϊ�L/b\04�]������O��_��_@�P������(��	���e�,�l�,���|�}�
��v��������)��e�iy�����z ��������)��v��������?��������?����4��
F���������or^{g=Z�������i���
�*��������������>������薚��=�v�������������*��0��������������������9H����3��
�F���������os^{f=Z��P�����i���
�E�(J�-�����I�������4��������������i�^x�����z �������x��d
����6��2��3�������~�����*�*��)��(��!���=�
�x�e�t�pqR�t����������������J�͉y�iiylH����Xzdipsl_~UGJ��h��s��x������y�W�9�Y������������ӿw�y��k]�]s}�zw�~�{��m�h7���k>�Yi�{�������
�zt�dYg��rn�|���oM�򹓝�������������gp�tx��*�k��S���������������k�*�k�l��1wGb_]aT�fvs��t�+�*r����\�������zh��e�N;�h��_hg_@_h��������h_�����i�����l�u�~��~����������$rfP|KEU��f�a�v���,��ɼua��a�P@��d
�����Xv�v����T��@���A�!����!�K�Ty�	�����
��~@7뀙v�~��6����
������������D����
����
���T���4�[
*<�씒�������<�Jڔ������o�C��j�����S���R�'"��p�G�	�*��J�,�����)��!����!K�Ty�p��v�~��6���
����������������9������4:�T[��R
�T��:��T?
�T��:�T?
�T���t�
߼wO�V��VOcZwE�;��(
�K�&
�L��1��������H�u
m�4�"�9�!�4� �D�7���*��*�����~�b���������EL�pC�Q��'�]�V���O�
nLE�������
�
��3���(���`�`�����b�e���!�u��!��3�U��a
�������
���
m�O����%��*� �&�-�~�&��ހ���`���b� �z�]�A�)߀���F�9�:��5�$����
�_���_��
�E�A��������������b���w�}.��$X�'�����[�����[ހ���������poG�b{����������������������
������S�x�Y-��	���q����|���k������j�o�uh��yə����R��r�	�����T�i
�����_����s�u#�
�f�f��"���ss~ki�_����K����_���������"��f�f�#�u�s����_���^���T�T���T�T�O
�O��
Z]ukh���PUj=;�<��$�=�ӭ�������}�(������7�0�!���u��c6�rt�v}ra��f��'�����Z�X������,�W������a
p{��Y��
�XXuxmihaX_)(X��b�hu�X��
�{�T�K�T���T���T���T���T���TK�
�T���������������������������_h�m��x������������
��������T���Գ���
��������
�i�V�!����������!��V�iK�������
�`R�Go|iv��
�
�d�d�}�}�
���T�T�4�4�}�}��
�
�
�
�v������8���7��8�W�9��7����̩��u���x�t�o��v�w�p��E�V�3��'����(�������I�6���/H#�@��_��6s�2�r�����������v����)���	���������7�,u`melh�@K(w,�k�/�T�c�W�B�R�Z�s��Z��������V�:� �[�X�2�;�@�L�p������Z�"
���x�#�&��|C���@H�#SQ�4� ����+�� �2�й����y�z{�6C'r �v�'�Q�j���a��N�S�c������I��=��λۊ���6�O���F�u����������ɷ�a���y�r�v.D����x���yl�u\eh[��x���O�~�|�i�K�!� ���u���F�
���$
���z�z�������0�	�N�e�e%�N�0�	����z�z�������������������������������
��������������������
������������������t���$
���z�z����
�������-
����F׀����
�D��
�D�����w��P��ak�O����N���(瀰b�X�S���9}�^�H���t��T�U
�D��
�D׀�������7׀����]�]��FJ{oQ���$�w�v���
�r��G���
�t��K�KB�=׀[
��v�N�;�m��Y��������i�)09Q��瀷���]��
��T���
�4���������������G��%
]� c�mgc���cm����������*��um���v��pvvp��qu���������vp�$�i݆�y�"�Z�4x������+�4x$�Zy;�N9�������������@��?�@�?��@�]�?�?��T�e�[�R[ed\\�d��R�����j����������b��O�� �����e�[�j|ƒ�����������~�b��O�� [ee[\�e��j�T�SP����e�[�P������Z���[���ZQ�R�T�[ee\[�e��Q������Z���Z���ZŅĀ���������������4�
P����:�����
l�����9�4��t�M����J���lrH��m9�	��M��������qxttur��������������Je��
���sp�szy��}e�
���<��������cH��u�Rtyzuw@B�X�����2�����ʳ�8�g^zp}UY̲nx�v�w�ww~zm��#����Ԓ����������,���������f�����������������������~��t���x*��}�-�������������oA��c�2S�3_�(���%�Q�,�d�F��W<~����4���g�E�W�RC�tp��|��1����$�+s��<����
��
@�T�)�0��a�_�i�3��� 4��X;&��
���us�s9&%9l�_�n�hY5�����]��\�a�\�<�R��V��k���_�k���`�1�T����<�kOF�w���2���ϵZ6��_�"
�
��g���<�jOF�x���2���ζZ6��`�"
���g��-���~�	L9wu�z~\L��y����Ǟ�My�v�}�N�}�������	����������ǜ����z]�����z�7�����T������t�T�t��t�4�t�4�t�4�t�t�$���r�r���d(
����
���*���*�����TR�4(
��*���*����'
�4(
�T$�d���r�r�����n���Z�\������J�x�k�^kwwk�k�w��^�����~�|��}T|����z�x�k*kw��U|����z�w�k-jx��T}�����һ�����xj�������Һ\D�����E[[D�S^m��x�H|��|T}����.һ����һ\D�.����#����##�����#���������
�'�V�'���'�����8�����������L����t�t�2���2�T�2���2�T�2���2�T�2���2�����������������O���
)�$������x�r��O��������r�m��c��������q�ly|�~��"��|�yy|�~��@� ��|�ylqrk������e��w�}xt�����[��p�wtop�t���b�������p�t���U�������k�r�������#�����
����$�����������������U�������������a��ᰥ�����m����}�||}���€�����#������V�䕌�����O�V���@�P�[�������d�������������������������������\�R�\���D?���G������!�cL���������m����������?J���9_����������	��l��q�1�:���KI���������<�E�Q�8���8����?�E���������d�V��w�s������-�1���a��������S�]�aA�����<�U�i�u��t�,����������e���#���z���_6�������������������I�c�������l�����������T��7P�7���o���7������w�>��������>�����?�������������
�D�����B��(�D���D��(�B����z�D��)�A����NZ����ȼ���xȼXN�=�v�
�:j�TR�R�;���;P�P�Q�2�<���;�5������,�$�(�)���M�U�]�(���)�+���+\�T�M��q���q�z΂�3�����4��y�p�m�1��
�.�o��Qk�e�^�
�����'�u�v�&������^�e�k����7|��e��pex�#�B��9��o=������9�B]:�#��/���ݠ��p�����"�\&�����"��iR��e��x�p�����
hB���
���R�XD�@���������� �_*����� ��pX�����@���Rp��c����h�E�����:�dM�+��A�����*�[ �����$���0�b�w�q�f�]�]�]�U���9pttp.pt���q�������to���q�J���N
�����J�A�N
���A�J���N
��l�L��6�H���������������p�A��O�YK�I�+���+s�r�s� I0�"�/�r�I�H�q��q�I�H�r�v���;�(h�q�j�u�q�i�F�����
����ﷰg�����(����7�]F���$������g�����)XP
��������p'���7���)���28���]8�����j*�%��j��j��j���A�o�]��"��
-�]��"��-�]��"��
.�\��#��<]�i�|����i�|����i�|����j�|�������6���6����6���F��ٯ��������6��UaZ�g����<��xg��w��������������������;�A� � �A�@� �!�A�@�!�!�@�A�!� �@�9����ŵwv�mQ��uL�flD�^A����94�wHMZ��X���a�ǂ��ݏ����,���!���|�����)�
�
�*�)�
�
�)�*�
�
�)�*�
�
�*���*�
�
�)�*�
�
�*�)�
�
�*�)�
�
�)����[�O�CPZ[P�5���5�Z�P�CO[[P��P�[�(ǻ��������.�S��"�0���@��:��M���������`ed��e��������S�O����[/:~~|yw�{���
�>�g�7�.�iczdfp�t���+��&4��R���������l�^�����v�Q���B�R��������{�xxgd~y<��/R��c�4��j�c�'��^������d�<�/�g�Z�8�%�V�������d�
�
X������'nh��`����z�{����{�������@����X�'�&������'�&����H�`�������h�������-�Q ���N����������k�g���-�����`����`��%�`�������a�z�x�w��wx�z���xs�h�t�T��~����������T������x��������'e�'������'����
����
���������x"�888ށ888ށ888ށ888ށ888ށ888ށ��888�11�
�r�����J��8�
�����8��m��D�ڱ��8�
���8��m�898݁xy���f�΢�{�c��E����H�����
������$��D����EQc}{[�h�f����KK8݁��898�11�
�D�r�����'m�$�������H��D�
����m���������>
K��4�T+�T����������������DqT1���aa���1��q��������������������ӌ��������������$�����ӊ���������4��Fl���G��u�j���������/���>�c�v�Y�X��wr�lO[MOO[�Olr}twXPY�v@c��>kPS�/k�������_�`�b�j�p�N1k���I�|�������
��� ��F��k����u�U�)�4�S�'�-{:d��@�G��
&zz�����E��w�v��lmul�c��h��r�������]��t��
���bF�s^�[X�V[
��v�N�;�m�Ћ�������D�1��� g�%/O���,k���j�F�?�j}����y�y��k�����D��
�D��������'���w�s�xx������
t�D��
�D�������7�U
�1
��t��_�>�h�jt�h�h�j���bg�S��g��T.�
�
�T譁����b���������j�h��>n�_K��D�;����D����
�h�/�����4+��|
�Z���su���S��&�yp�rxo�h
nr����R�/E��o�qwn��������������������썍�����c�@�
��"�;�;��d�������xp��X�B��B���������}�t��q��۽���������w
�
�T������d��m�l�su��r��|����j���to
�t�t�
�t�tD�t�����E
[
�S����)�����\�<�����D
�4x
���/
�m�
���
8���������{�uNv����Q�*�3�3��Q����~Fu{uv����+�N�R-��X�v�D
^
���v��X�R����X/
m�
��
����
������*��6x��l�l�sv��r��}����jX�m�
�9
��������)�����[=)R����~�[�~�w�~5-!��i��5
��D
���"�~�v���_��������V=)[���D
X����w����a����u���q�u���� ��f!D!��� }��q�q�uu��r��|����j���to
�t�t�
�t���tD
�t�tD�t���ì�|��r������6�Z�<:���S�
�vg����$gJAv<��������ֽ�Y�i��<A��J�������Z�)����
����������
�����P
���0����u�l�c������
�
����*��5x��l�m�xy��v�������{����?�������Z�S����!��
���4���t�9�M�kj������t�9�M�k��x�xw�����
�J�1��1���Z�`���w�w�x�n��=�O�v�T���J�1��1E����`���������nm�=�O�v[
��m�������� V������
�������)����
�gN/��#��-t��e�Z�\i��\�������h^
����ֽ��?�#f�,�����W�S�����CZ�7)������
����6�Z�<:������
�vg����$gK@v<�S���T<@��K������Z��i�i���#
�@�@==�)�����\�<��� �!�������� � �i�j��D
�4x
���/
��
�
����w
����4D�4�9�/��������^�]��^�]�����9�4o
�4���j�|����ѡ���l�s��m��d���������t�����K��/
�������
m������v�~^^���M�M���t�M�t�j����|��r��u�s�lm����d�����������t�����t�
�t���M�M���^�~���������2���/
�����
p�
�T��
�D
��D
�����T/
��������[
���]�]��E
������������O���m�|����*
��\ee\��\�e��s�
�����V�e�\���9���7��M��|�?���S�#`���������<����`�R���w�<����ED��z8D������^�7�E�&S�M�X]�Z-���`L�M�L�����<�z����=��a����3������l����x�-��v����x�m��qY*m�����S�Z�]�e�a�u�������ж��X�������p~�v{�}|[^s\�I��F�F�S���#Jw��a���â�������������7�z��_����
��%��>�}=�a������������������f�4���4����	��)x�5��M��k��4���4�4���4���+�����
 ������
������
���T�
��T��
���T�
���
������{���{���{��������t���T��
a�T���
�TF���7
����
�Tr
����J
��t�T���s�R@�6{���@),\��,��)�@�ə������EQ����Z��T��
a��������������������������������������������������������������������������������������������������������������������������I�Is�~��������xx�x{���?+)]��)��+�@�����8�s�~����������v���
����������T��@����P
��Tx
����{
��������T���
��T�i
�
P
��
������������T�T�T�T�����T�/��������/�T������T�T�������l�v��T��
��T�
�T�����!5���
��������
��s�^v���t��
��4�����~�������4���������������4���������
��������������}}�{ptr��m�g�}�e�}������������������������M�p�������������������������vw�y����������ۏ�
�
��P
�������X�t�j\���b��'�d�j�����гg�[���L����״�(�
����¯����#��w��m��ݿ��������b���t��G�(�r���|�k�j�>S�l�s�t�������� =���������S�l�s_ti�q�n�����v���„Ņ�3I`QnN�^�D�y��a��g�T�Q��3I`�nȜ������n����;((5;!!6����r��y��������q�h��������n}�����.�d�9�=k��%���)���}���|�|���������|�{�z�v�v��������u�yyv�v�x�}�������������̖ҹ�֐�������a�c���r�p�p�xs�w����z�n�}{������w�v�v�����������������Ӎ⟳�����͂�p�T�l�Zx�e�y�R{��0o|W�b�e�V�H���q��u��O� �z�|�n*�)j4_SnNe]_\]“��†gwkrmn�n�n�y�{��ʼn���Z�lvTdp@�J�I�4�X�^�xԉ�@����������j������w�v�w�������@~�n�y� ������y�o�r�pm�ue{`nY��n�p�r�@�^������r�ss�~�~�x�v�v�y�v�����}y�@u�wzD8{�{������|�z|{}{x}�~������y�z�~�~�}��	�;���$ˉˬ��7y�8��8��S�iˎ���;���	D8������h���������L����p�`� �d|�j�K������='��������t�<�<������vug|c��`��|�[���hf�@�_�&u1�||�~��y�o��������9����������ut�w��KrjR|Y�% �������ڬ�Ӣ�
2�H��������[Q|+�<c�g�v��EU||��zzЕ֦����������dBr;�9�Wd�������Ir�Pmu������͆�~������/���/�0���/�/���0�/���/�x��y��w�`~"�b�|������ьҋъ���[[~!�[�s���'��ҍҋӌ��l��3z���Q��������R�#�k�r�w�:�v�����������������t�v�v ��L�F���T����Ő�����{ό���������x�s�x�<�ծ���������������������
�|����D�B�F�+��D�~�I�#�6�B������7�}IH_I�D�&�\Ӂ��@��r�{�)�5��
�������?���}�����������������������z���������
������ T����&�#?�a�O�C�����:������������)��x�{�}�������������.`�A�<�~���������$��!��	������������z�~�|�}�}��������X�X�X��}s�r�uj~^�a�t\C&OD�I�H�}���������ߤ�@������J�6�	�r�B�00AA00�B��������A�00BA00�B����������N������p��i���4�r��������������������t�����������T�������_�	�	�_�_�	�	�_�_�	�	�_�_�	�	�_�0�
�$��k��t������
�t�
�$Kh\�b�u�D
��������
���<���<�<���
��<+��t��+�
��'��''�+�
��-
��
����
��
�����i
��T�� ���������������i
�R
��,��T[@R
���������
�4���]
�T�3�C�@Z
�4�
�����������K*�����������K*�������������K*����T*��
��
m�������{�z�����s�{tq� �p
���S�X�k�{���E֫���}��]�p����
���FV��*
�K�H�W-C�C���HK���h�@�)�4��
���)�@�hK���H����-�W�H�K�h��)����
�4�)��h���
�������������� ������������-
���@P�����@��h���!����(��@@���P���
! ���@@�� �!������@�@���! m�iP�t��
�����m������P
�����������������������������
�����
�����m��a������� ����������������a����R@	�������@�P(���" ��Z���D��

��$�����@��@D������
%����D�B���" �
@ �@��� �$"���� �@D�� @�$���

(���
��>
���jm������P
���P
�Z-m���m����
���
me
����f�4�4�����-�4����������L�L������m�������x���z�z���M�M��z�z��������V``V��������4�3
���-���ժ���L�L�������\�U�I� �����(�f�c���}����s�m�������-� �-����������y�i�s�n��������������������K�8�A*����,����g��t������x���^�L p&����{'��%�%���{��p�V�J�9��$�5E���E�$�ݑͥ��}��r��:CW*����[������_?P`X=��}��[A�����bo���/
���k�������k�������(��2�2����I�����2(��U�J�U��2�k����������������������������������������������������������d
�
�+��Ԁ
���
��G�����X
��]
��g��Z
��X
��]
��g�4��4�
���
��G�4����
�t����
�����������������T����T��T�����i��pE�77EV@p�1
��U�_�x����o
�H
6
�f
���������I{��
_gg_����n
���7���b��n
���7���b$
���Xr�zspp�s���^?�`�������`���^��
$
�_�`�b���������������Z���[��z�[;�Z����$
��&j�W���W�j��&�[�@�"�U�����z�U���U$
���Xr�zspp�s���k�G�+�P������
���T�v@�T�
�K�
����x���I�L��L����I��������I�L��L����Ix��^�
m����K�+��� �t�������t�����t�t���������΄�PH����t��
��������ZV����t��
˻WL��q�q�r��H�r�qqr-
�hn�����n����u�~���t��
�t˻WL�@�m�A��
˻WL.���t�
�JMs^\�t�lj�i�!)���������tI�K�^�����0���������t��H��������!��ww��x�t�^B�<``uf�t�`W�U�4
�x
��������t��t��t��t������*
ɽYM�$�����
ɽYM�������
ɽYM��w�w�x?�)^�cj]�Dce��s��
���ҳ�xk��.�a������
ɽYM����$��
�18X:b��}}�}��F�hX�a�"���!��
�D�����(�������� �	��������}}��}���b8�1�m��o�9�����t�������t�����������ʓ���������
�0�

�%����nl�lb
!�+�f�z���x�!�����p��|/�7�c�h�h�k+��^���[TH�P�}��.�}{�{MY�ɷ�����7��o��_qccy��4��{�H]���ȣǦ��������ɽYM�|����%npzdc�Z�}!��DR��߼�
�����\Z�j�����ћ�����|���0��!�����߼�X�E���������dk�dNYTMNX��������������
�0PcXR}��6~YV�W��������t���
���
��
�S�
kI�J�X���%��Ba��8�k�������#�E�����
���b�>�����[=�:����-
��
�Y�v�k���2��������
������O������T�����\0�OU�ƀ�������ԫ��afob~h������S��wk�����9�&&�����F�D�[� �����_���J�������ͽ���� ���"QQO;���������2���x)��+?�q$�@8���q+��*;�u�~-%�x�x�x��q�u�utg�f�h�%�'��E���̹VL������*����v�����˺VM������`�����w��z�������TE`ubiq���zup�p�J_e���'�%|ŕ�}���r�����ɾ�ɿ�dZ��,����������ɻ�˾�gY��%����8�>������4
�x
��[�;������k�t��t�T��t��T���l��*
��MC���
��MC1����
˻WLN͜�f´[V�mJ�J{K/�o�qwn�bce��s՜��
����ѵ�vj��+�^����
������d^�]� ��� ��
�b������l�Ք���m�)�xy��x�^H�Cii�}l�\N�J������p�"���#���k�����k՜��͜���k�眫�
������t�������t���:
���o�V�t�t�
���c7�/{{��{���b
�z��f+�!b
l�l�n����%�
�0�
������Ǔ���E�t�^�+��jf�f�l�l�ɽYM{�{�}�.���}P�HT�/�7������q�ͻ]H�{���4��cycq_MY�ɛ�������Ǧ����s�������jZ��\����
�
��!�}�Z��cdznp%������������� �0DR�������������ɹXNMTYN�dk��d�����E��X�ÿ����!��0W�V~Y6����R}XcP�^�v��H��Z��t�|�z��(
�	z]�����������������������}�z�!~�����q���{�y�z�������p������~�"{}~{�=�U�������������������P�?�����������Q�=���{��~�����G
����������4��I���H�t����Z���]��4����1YW3�6�������u�bQ�������������E����d]�"��(
�T$�7��/�V�������,������������'����t�
�0����4�����4����
�'�%�Y�T�8�l
�������9���|����2'�8�
�
�(�%�X�U�7�l
�������9���|����3'�9����40�
��k@���t�t++�����U�U�t�t�t�t�C��<�<�4�4�4�4��
�T�T��������U�U�t�t�t�tC�++�<�<�4�4�
�a�J�Z�Z�Z�Z��44c�����������T�S������������c��������++�T�S�33����������Z�Z����
0��g�Qv����O���y#������D��O��R����K��P��K�������a�XWaaXW�a��������a�WWabWW�a�������� 45! 5����4!�� 5���4!����-���.�.���-�.���.�.���.���.���.�-���.�.���-�.���.���X����c�c��@����c�c�����c�c�����c�c���0���ɂ���������ь�8�`��a�@�a�NdC�9�s�����b�c�����c�c����@���c�c�����b�c���������X�������9��X��E�-�JF,b���������H�5����@�Y�&�n��Ë��49�H�������b�F�8s��̷�������p�z�S�z�N�{�R�{<��	���`�_�����`�_�����`�_�����`�_���9��'��''��'�������pq�D�-A��&�a�a��-�D`qX_1�`�A�M�t�CC%&*)GGbb�I�c�~�c͋�������%�)�G�c͋��������c�����B������ս�_�m�����
�3�P�D�33DD33�D������j���Kgl:VF_-zM��W�S�R�n�\nn��nn\�n�Z�E�C�S�Snn\�n���n����������Ӿ�N�+�F�:�g��˝����V��C�&�&�Ӌ��l�gZ���G�%�%�G�G�%�%�G�G�%�%�G�G�%�%�G�P�8 X�P
�����������*
�6DD6���s���r�p���s���G�4�T��mm��v�)�t�~����̩�v������������VJk}ltu�(�vumm��4�[��	`��$�����O�?���$�d����`���`�z�w~���y�8�M��v��a�\t�i�N��߶܎�`�����4���s�~���nkA�[�"�gwdL�a�G�$l�Υэ����`v�~{ҊꅮK�-�5��%L�
�.��U <�B���B<�Gi�
�Џ����|�r�`��0�+�=� �E��=��������w����	�y���K����w��"w����o����I��l�khslji�s������Q�x�K�)]`������J�'�����������R~����������×b�B!�-�(��pW}��������������^^��_�I����������|�Dc�/ %�)���p}�����[���D�e��\�]�]Ϛ����������F|��E��/�+'���Ǚ�����eT��G��f������{������������H�B��-��*�\��������m��������N�����N�N�����N�N�����N�N�����N��
0�
���
������
�@�j���<�Z�\�
�f�zd?�*���1�"�0��-���)/�!U�=�I�T���AI�z�W�dd�]�,�O��+2�=��q��4��{��E�)��<��A��1���t�1�j�1�(��w�;���;�;���;�;���;�;���;������
�	��u��p�������R�@���@�g�����L�)�w�te�C�#��B��3�B3�C��V���j�>|���肙�����i�5�4�_:�v�x���H|�Q���̋����y�P���B����CĻ�*��O8Q�z� �}y����������2����!��v�����
�w�
���2�!�d�x��������%�%���u���ou������y�f�"�2E"�c��i�P��8�+�H�>��V������V�>��8��P��i��cE����0����}�D�8�F?�:/5mV?�_@�)������*���_AU��m��֡���F�8��~������4�p�w����:�{���h�I������K��6��AOR��||�|�����7���:�:�-�R�=�6�j��snVK�
{Qr2w..�4�$�<��1��U��n����k���;�H�K��T�C�$�[�����E�Eq;rI/�(���6�������F����+������G��-�7+`=(c2�F����]�U��=��P�O�>��U��l�������x
�x
{�����
�T����@�q��]
�Tg�t���1
��i���t�
�c�����*
KWWK��K�W����#�1b�nZ�yO��L���/���õ������B�+��
�h'X�=�-k7yS[rWmK|C����O�]�e�w�,������i����@�R���F˿���W�K����Jv�f��|��������)���}������xy�����k��~�������������JJ?X7gf3.x,+.��46�?�J�G�X�j�kځLJ��������v�l�~�d��o��J�L�N�*�4�A�@�P�ba�u�����������������l����~��x�y���JJJ���������ww�}���IIJ������������������������Ð��N������������~���L����kR�{�m�m�a�U�U�L�E��C>�<;;{mDRs*MSP��w���������m�s}wy�<u�|�������������ƌ���
����Y1��0����Y�
11��22�X�48��C�1£dz���ʧ���r]��^�NJ����qZ��o�e�~|Z����~�����W�4�3�X�V�3�2�X+1fIHJLh6�7�����:�g�f�s˂�u�n��c�o���r�~�E�M�U�U�a�ml��|��ؚ��ѩʵ�����ɩ��ӛ��l��G�@�/��' ��"�vg9���������~�{�~�i��������ye��n�a�M�����������x����x�����,���w����M��������������w��^�����Fy�l}�l�
����6�6���x����t�m|�c�w�&�L�L�+d�t������������j�iJ�4qq����ߠ�������˚�|���O���)�x���O�p�Y��p�Z�,���,��p��W��wT�,�J��y�I���������E�7�w�t����4v�Q�^����6���_�4
�T��T�4��
�������P
����q
��q
�bty��
����%�
��������%�
���
�@����t��T�t�L
�t�to
�t�t�
�t�tD�4
�T��T�
�
�4� 
���t#�4
���
��+������P�P�P�P�����]��w�~�P�P�P�P�#
�Q�P�Q�P���P�Q�P�Q���k��#�4
���
�������]��w�~�P�P�p�p�#
��������������i�P#�
�T��
��
��/�0
���
���
�x
�`���t�����T_`��b�#��#�b`�_���
���y�y���Q
��
�t�3���3��
�V�2�2�VL
'�
�������!�!�yr�r���1�1K��-
��/�H
������!�!��e�+�������T��T���T��rr�yy�!�!��!�!�V@�;���v�����������y�u�w���������{�{�{����s�{sq��v�w�������������������������������t���z������z�
��z�����m�
���m{�`���m����m�
����
�
��
��F���������������>
�����������������v���
���m
�m
�m
���%�������%�����W��B�S�	q�g@\LP���{��|�����������@��)���҅����%����������V�����`
���B�B�B�����
���%��������%�����
������������������������������������������������������������������@w�\�����h<��;��v��-�;�������ݯ].��Sg9G��FXVi_d�:f�t�l�\m�M>�U�:\!-<F<C;D�)�Ե���4�C���5��5��4�C��3��.�N�$���r�j����m��2��	�O�
���W�������q��q����q����t��*�Q���t������
��4�������������+��j@8ߪ�rr � Rr���@����L�iO;����{e��S�w�����)}5�T��Ԓ����������?����>��B�	�o�-�Bvˌ{�b������є���������~�8�������w��������0�R�8�#�0�F�2�SXteg��J�]��l��A9�H������H�8QXi[s��y�x�y����\��HN�-�fX�R�22�<�G�j�m�kk������K�L�����Ь����̬������[������H98HH89H������,,�K�UU�K��,|����������}N�v����������}�|�u||��a8H��������H98HH9��������v�[�����y�-�r���n�
��� �f�����������=�q�����F����)�����?��
��`�9{��d���P�3o�&?����(���$��������W�2����
����3�C��Z
���������������`���@]
�t	�t�����T������0�����!���,���J�����J�J�����J������v�'�k��$&�8�C�����������������P�B�4��n����!�4���8���V�����%�%�����%�%�����k��,�H�����T�����4�Tw���������/�+�,��{�{�a�{��������������L��{�{����������
���=��=������

�

k�
�����F
�o�~��������|��܏��f�
yh|lid�boo��p�������r�mmrrmv�w���~o�v�F
�����I
�����������v���	�o��T��~�������������ƣ�������@��V���5�!7EV@p �-F�1�M \Z�G#�n'���x�!������ϼ� ����1�-�+���T
��S��(
++EZ��[s�p�k�������������������T���������������~���O�@�������������G�A� � �B������H��E��B� � �B�c��
0���-���/���-��-�-�-�-m�J#66"���!���!�!���!��p[��m��������m�V�J�E��4�6��H���`�`��Z�[|]~c�`�}�����������������p�G;�-�7���-���m���������{�<��8�Yn�,�=�a�u�K�K�v���Q�.�-�Q���j�K�s�[�hshs�\�h�F�:87s;\Fsh�[�t�����������������3]�-3�s�\�hsht�[�h�"����e�E!sh�\�s��������������-�3����������~�+��**���*�����}���Mz�]�c�.���p�����%��$��f���M������5�5�2��7�7�<�������&�������U���A�+��+�K�������q�5�P�Pm�;XY����;����v����2�
��,�c�T��T��:
��,��[��R
���T:
��,��[��R
����� 
x�t������t��t�
��
e
���:
��,��[��R
���T�� 
��t��t��t�ԙ���t��~S��(
��$�t�����
��Fh�͉y�y�}~����������������������p�j���P���P���jprk�5����j�T�h������c���
���c�����t���������t��������
�R����*N��^����Ȗ��*��
�R�D�e������jo���k�4���������p�h��4�hplh��/�X
��4�X
��9j�oqj����h�p�����4���������l�h�\��ƙ����;2
���;ǾbP��0�&�M�	q$��;1��
�;�$9�	q&�M���t���������s���������T���������������
���
��|~�}�S�t�������������K����|�}�S�t�������=�������u���������=�������t���������������t�����������������������t�����*��w�����)�)�)�������(�(����������.��������������d�d����������Z���N�����N�Z�Z���N������N�Z��
�Q�+������A�@�A������A�@�!�����������[��������	���	�������[�������P
��������������P
��������B����
�����
����a�
��+��1�4wx�{���������~}�g
�4�������t������4��a�
��Mr�����&�Ȃo�l�y���
���������������_��l�Z����b�����������
������&���Z����_��l�Z���b��>�������T�t�4�t�9��lF9y4�d��;����1�?;�U��Ғ�/����t��t����<�%�����%��<����"SKj<5�e�Z�>���:�$�����������$��$=�:���Z�>�e�j�S����m��������$�������5���������������������������4��4��4��4��q�����(��������������f�?�f�?����������(����q�*�*���*�M�*�*��w�I�9�(9II9�(9�I����������*�'
�w�����d�A�4���6�7�M�������R����*�M8�=�I���F��[-��2�	�~�����������
�0����������X��P����d�ow�����4
�4�����b^��hvii�!r(u)����-���v�jzfj~�����qs�����o�q�z�az�qHoC�wq�s|q�����j�z����������)�(�!�i�v���������i�#�o������#���v�i��%G�������������������T���;���;�;���;�;���;�P����
�0���V�v���i�W�P�V��gu�m�l��w�a�|��������|�q�����{��c�Y�il���i`d�H�_�_·���I�5�)4�����y)Y>B����ݮ��U�1�1�V1h8SM������$�w�h��#�h�A�Q�WƇ�����¹�Ð�������v��Z�]�����;�();;)(�<���&�U�1�1�Uԡϱ���B.`������������	�����eSGtCm�$�t��]�$������t��t������R��4'�4����$�B�L��8��,�L�9�}�x���9�����������������������`Q^fxOoDk3d�G�������Դ��"��T�Ua
�������
�
���v����s�X����Q����������F�55EE65�E��������������������<����xi�UNg�s{�����f������<ϖ�Җ~�h�r�8��4�W��{��m�X�x�|������������c���������������q��J�_�s��'�*0����󍂎������i�ZӵԵY�n��5�U+������"�C��������������~��?��i�h����y�v����x�n��n���n�6������������������>��������#A0�W����9���
�|�x�����������uz�l������������Mx�|��l���������T�(����x||x���x�|�������T�*���0������(�=��`��h��Z�������6��,��
�L�8��6��-��
�I�8��6��,��
��������_
���-i1Yn��||�|jj��k�8�d�J�!E�+z�$�9�9��$�+�!��8��������������YisV�>�c�r�bxy~v�z\\�\}v��{~�^�ws8~644�6�8�w�^�~��������������y�b�r�c��>s�3�%�����������p�[��rr�c�r�r�kii~kssqr�b�r��I�I���������V�*����B�+$$c+CB�~�����I�I������%�%�U�a�a;�U�%�%����
�5�?�?H�5��
�~�����)���ԫ���
���
���
�T����t
������������t
���`�
�����5�!J�����
�J����n�����
�J�����
��������������w���N��k����+���m��T��T�T���11��������W���
�E
�
VNMDH>>3�5b
d�-
�E.�
���������:��������V�2�2�V�V�2�2�Vd�������'��c���U�/���o�c�uovo�c�v�?�%��	q��|����������~��f�F�F�
�0�.�*o�c�vnvo�c�v�&��0q��|��������������K�T�i
K�T��T��d����h�jw{i^u_oYln��u��s����
��o^��i�w����hY_��u{�j�h���������������w����u�ji�>�q��w�[��GA�?�ij��k����Œ��������[�V�(1g=V����������i�j�N�bi�6�%�Qt�b�(���e�nz�f�l�4��u��~������d������p��������������"������v�[��~�}�����d����t��V��l���������d���v��tş���W�4��t�t�����������}�}�}���������"��C�Vt[�R�t�����}~��[tvR�[���C������lj�h\^��a\�Qwt\s[�R�sj��z������\oUwQ�V�f[�VT[��g������d���k\c`^ebi�O�bt���������6��Q��b�(��T�e�����|�������T����T�&��&'������d�q���������:=2G<LCYR��hn��@K�5�������
�$������������c���{{�q�{�<�<�{����������{�q�z{�c�c00�E�3�'�ҥ��}�}����{���P��RH�L�������byz��{*Tb�#E�.ᕖ�������������������z�<����������_d�_:@sgD�������_�^�_�*d��J�A�	B�ɴ�׵�to��������'W4p�w�ο�š������������v���W���X�M��u�Y�������1�A�3�g,{ ����հ���������	y�L�� �����Z�=�x��s���a��v�^�������|�Z�Z�[k�.k�/k�.h�e�m�f�$��6�k�+������ː]V���$���Iq��o�~��QN�ڈ���7�.�;�������gh��h��V�N����D�<��������{B���3^w����/ۍ�ֵ��5�b�	L�Q*��G���J���W���}��ϗѝ�ڏ�����������y�������� k�T��U���nn~ryj_�M�l�N�y�|bm�����m��T������]bj[��X�]�~��-�u�����[_k[��T�Z����K�N�W]dW�T��]��T��kY�acYU�a�������ö������1����r��&�>k�f�b��r�(�yw�vE�^n�w����������������"�'h�R�cl`j�O�b�����������e���nf�Q����a�WT�`]�T��t�i\~{�&�X�U�3t�O�Zq]s~Q�[������8q�Q�]sZq{N�\���[����k�P�`m]l�M�_�����������|��r�(�n�h�d�&�>�l�e�c����������o��������v�D�d��$��H������6��}���z�~��������t�1��Y���b��������Su��������\�������������������q�����������P�����y��������������,�:|��`�B�/��O��������~���T��a��KJ�~L��y�����y1V�w����y�:�p�I>�/���2ndgaWr�s�w��	��	=������������!�Y�	2��R?�2�"��?��=�.� �O?��U�����<���<quuqqu���u�d��dV�Tqu���������"����w���+�������B�~�o�ftaz_��V�SR�t�9�K�x�x�:�K�t�p�;�V�w���x��������QM�M���t�����#���"��Y�(�)�������#�`�Q�x�g��i�hi��V�K�����������l��f��T����'F�b����(��-���]�������ݸ�u�W�h@JM;uT|NwbdghsK[b�e�i���(���{q�}P#�4%Sa��j�����_≖�����������`�/�7�b�b�/�6�a�a�.�;�c���}�}p�m�m�lj�i�0���+�.���1�0���.���{��������\�YY�F���C�?>�AD�$�(-�}}��}�[ׯ���M������g�Y�S��T�*�*���l�SmMrWJB`e��n�ū�)���c1&E,u|�����Ѱڡš�����X�MN��9*
�T�(�T�3���3�T&����V���
��]!zl�t��ahqr�p!s,��o�"pr�rg����l�!�������������������|���������������������N#��l�[he�e�e�����������zpK��^������7�L�w����}���� 
 c�b��*
�[��)F3�RtZ�>UK�L�L�����dl�lh]rd.�^�7|�}�}\".% _q�q�o�y��~yG�Ao��k�zAï��������w����P�W�����������~��|Ԫ����A�����y�o�q�q���0�[�������]y��Z�igmpg������ː�����t�@�6�)�H�����W�����������\!zk�t��aiqq�q s,��o�!qr�qh����k�!�������������������{�����������������
����N#��k�[ie�d�e�����������zpK��^������7�K�x����}���p ����
		��
#`� R�N�{��M�{ ��xi�wi9�#G�s���������E�����}T������������l�+������{��X�|���������V������}������2��h��8p�ihE[��&�Yr!h�g���R��o��q���������-ε�ߝ�A������ ���U���Ǿ�����Ծ�*��������}�t�~�x�q��i#�E�3l�g�c��2�F�j`�\�Y�=�u���r�r�qrq�s$���>�tY~\w`r�k�2�Fclgglb�E�3�j�r`w\~Y�u<����r�q�q�q�rr%����t<�Y�\�_�j�F�2�b�f�m�1�F$�k�q�w�~�v}�����������$}���x������$�k�1�F�������E�2�j$��������t��}���������������������������������%��%����%��%��%�L�X�0���X�/�X�/�������T���T����T���T ���������&�O�,�-�O���O�,�-�O��jj��k��1�����'��
�'�-���4�n����O���x���q�i�ggg�h~ie$DN�y�W��������v�w���#1���rH�e�%����:qzt{s����������[����s�,�w���������!���w����"��"��0������t�dcubhg�c������8��cliccm�������������id��@dmh�o
�id�0�B�cli�o
�id���Bdlhccl���������id����@��Y3�W�,��zh�ehjwmy�xj�hhj�
gk�
ditiy�7�4�k�g����
}R�QP��t�����d�,�c��*�p�q�q`NAp@�`��J�Q���zH~GF�+�/�2������������rY�N�'K_IFF_��ʷ��зIL�	���P�&0������h�Fyz��y�\\�[� V��������_�
�J�P����m�z�
B��pg�fsvy|s�#L���������c�|������������gV�XTVtbe�wv�v�N�A(�$�h^~mo_��~���|z}y~x�|n�f�{D��BY�L�\�'�
��>mZR{Qss��t�N�]�wig�g�X��n��Ϥ��O�Tͮ����m��w������m��w������m��w�ŷ������	��v�����|����iI�#&�bS�S�!�����������m����v�vu�� 
�
�D�4P
��3i-k�b�US�T34��5�II�I��yq��߬����
)�
�
))�
1�9�j���4��������:�P�*�������������C�3���������+�������K��}�������T���
��-�M��u����jmatvhj_|[�t>4a@�kk[|^4<��N�����hc�_���/���2�2��ģ��֖k��E�b=0���/���Y������� �-�"�$�3Q��t�l�Z�[�Y�f�b�e���7�]X�U�nPI"�R�g��ɰ��e��������;��o[��1�Hw���T��
�T��g
����<��R���;JLwgV�VL�J�	�B;����95
�4w�2
��������
�N:�9�����՛ͻ����ů��F��4�O
�cb�c{������"犖����M��88�']L�����"/������f�
��UA�������=�0���;�}��������������Q�<�0�^�'�����0����ř����}�W�}�w}�;O�<�0��4
����
�b���w�}�GU)@�'�eY(.E�������"E(�Y�"�+�G�}�v��|fW�}�x���?�r�?��Q��<����������ŕ��z�E�٘������+�0��@�
�4��|��c��������������"��-d��c��|��.�4��4�|�q��\�N���E���E*�#�������"#*;QE�"�	���9�a�Rqs|ig�4���v��������ߟ�	��ތ[��l�i����f�����k�����8I����`�����Z���\�����u���ρ�6�ٿ�������<�������0�J���A�e���c�i�>����z�8���qF�l�;�7��M�t��H����������$��v�"�?-�=���x�G��n��������S�-���������u�������������������b��������7È������
A���������
������w�c�������-������E��������f��7��-^���������D���Nf�������r������x����������������~�������5�8�������~�O�������	 �������K������������(JD;��;J��E��Y�Fk��T���«��F��Y�E�A���#�	��#�#�	��#�$�	��#�#�	��$���R+��7�TS+��V
�T�}�y����� �
���`
���������$�	��#�#�	��$�#�	��#�#�	��#[�pdIH[<<H��I��Nm�}�!7�5������'m�w�S�@���T�|�z��J
+���J
+��r
������@�
��
��G����������������
�x
����)4RMD��DR��/��@�2o��[��ͻ���2��@�/�1��$�%&��%������%��1��:
�ԩ
��R
K��w{{w��w{�����������{wS��::
��,�u
��R
K����X
�@l
���A+���?
+��c
����������V���w
���)�/e�@�2oZI[BBI��Z�2e�@�/4�M��������1���%��%%���&�����1�Q� 
���{�w��w{{wSw�{���������'
��1
���
�����M+���L
+���
��
��G�@��X
�@l
��
�4
�������Y�X��y������y��X���O�:�>�+�N� � �����>t�:��O���O
�����
���%�%�����%�&�����$�'�����b���
���%�%�����$�'�����#�(���
�����Gg4�(�K��
�K4�(�Gg.�S�1�>�P�;���;�>S�1.���
���F���
��
����ڨ�����z�z���'�.�<�!b�V��[�b�-�;�P���P�-�;�b�[�V��!��E�$��@��h���h�
�?����	+�����Y�Z�<�	[���	����Z���Y���+��	��
�d
��������0d�A�1]ZInBBI��Z�1d�A�05�K��������.���$��$%���&���������T�
`������X
��+����S
�@g�T�
�����T�����������
���B[PP�>P[����,�c��s��£�����,���P��
����t�
K���:
��y}���j
K�y}}y�Ty}����
K���
K�����[�R
+��X
�@l
��
����9������t��������k�,�ccTsNNT��c�k�,�B�P��>ƻ����Pn���4R�T1
�T7����}�y��1
�T
��8
K�
��'
�T1
�T��
����@�
��{����X
�@l
��
�����o�0�v��@��0��<��;u�^'\�	=*�S<�,cXP�*�������"����c`�[����h�3\�5��j�����j�5<��U�gF19P��R��E���i���j���+�#���h�d���$�є�������Z�ۯ��ӄ��h��w���*�K���	�(���Y&�Z�v�V�^�e�1�.j�4�E�9��"�"�о���������q�rQ)�`j�#�KE�[�|���z�0�Y�`�7�~����������?�g
��drlf.�������k���g�*��{W�r����r�Z^mwvl[�s� n���jb�gn�z��������h�y�l�qf�S���B�[�<�	��.S���������������h�t�v�i�����K���k��������Tp��x��vn�mn`�j������|��������k���f�Z_��Fn������������ʬ��Ҟ���gn�����|�rR�M��H�h,�Irqprg�^�s�A�M�/�)���8�[P�D��0nf�	�iv�q���Xѵ�+��D�D�
��y�Znb��t�9�#��t��x��
�3���u�s{����q�[���Ƣ��᳚�s~N�\���
0H���"
H���"
H���"
H���"
��1
��
��V��K�T����T�6�  64"�
��E�#��E�
�E����������P�/"�@���Z�<��[�@�E�
�E�E�#��[<:Z�������
���T���T��T��@�T��T�x �T�)�������
������9�
__��&��X�.��$��
����K��p_�A���;�__��9�~�������2��M���@�n�h�
���M*��
�TK�����MT��
���@�n�h�
���M(���@�n�h�
���M P��
��M@ ��
�@��
����i
����������@ ��T��T��&�D�Nu�y�e���  �}������������
���
�V�ҽ� �T��}��
�l�j�l�l���R� ��
��~u�fH�7�Nuu�������a���������������a�������uuT�A�Mr�\J�C���+1
�7����}�yy}}yy�}�����K��}�yy}}y���+
,
@�j�
����������v��������j�I�I�J�#� �%B��z��Ϝԝ����̒�����<�L����Ro�s���x�z��c������������������������������e�%�k�������������������$�l�d!�������|�{�{�t�u�v���������\�������|
��k�����~��}���l�r�����>�+�+������������������6�Y�����F�$�&�E��{��Y�I�v�['?E�������l�j�o�~�����
��(�9���
��������������������0�tX
�@]
�T��������������
��
�����
����������������+����������X
�T]
����S
�Tg�TZ
���c
��������k~~w�~��}�}�}�}~~w�~��&�&~������}�}�}�}~������&�&�����~�}�}�}�}�����~�&�&�~�w~~�}�}�}�}�~�w~~�k������������=��=�=�=�=��&�&�
�=�=�=�=�
�&�&��=�=�=�=��&�&��=�=�=�=��&�&�}������������
����"����"�4���
0����_�}�2�/���b�����w�������_�1*���S����@���H2sp�o��ȫg� �����������z������z���������9A����{�e�z�p�{{hh{z�q�z��@�e�z���������������@���z������z���������'���L�`�F�F�=1<1�#�W�X�
����]�vv����L;�3lK@+�@L�V���	+�<������q�U�]�%��F���������O�^��e�PV���n�`�r�'s���y�sfX\Rq8dsض��������������s�F�%����Kٮ������J�}�3����������х�b�s�lt�[�`T��������v�uai4�.�:�e��?�2��%��ٰۂ�~�%~��GbRSl��g}^�`�s�t�`�an좾]�4�jމ�Q@���.���&�%�����&�%�����&�%�����&�%�����	�Y��J�	������I�������8�/����������-�p����R��%�s�z�w�8�����&����%����Bpq2z�r%�����!�����!��2.�l�?A�����R������჋Ί�t�,�����ә��$j�"u/}s-����|�Z�H����8�����	��	��
�H�.�w���_�������������pu�j}���$�x�������������l��l����`��?^���� �l�2�B�A�A��q�3�l����۴����l���8��o�km��YQ�SBjt��v�m��l�	�.�����ڎ\K��H�qX
�@l
��
�)����u��A��p�6������w�Y������l4����~�y������U������������������ѯ������W�?Q���Y�m}�ptjh���������F��E������Px3|�����(���/�ŏ�4��5��&ϻ��ą���f�am����J�?�j�ԋ�<�#�>��n����,�����i�I�Ι������J�\�D��Hհ���4����.���4��g��"]vzuyia=sA|M5#M�o�`Ba,����l���#��:��P�hC�t���"���]у��������H���������������ą�����������3��B��̖ڒ���������/���q��u�=��hU��U�v��@i�����/��
:�:��hU��������yr�w�>�g���g��j�k>��p���D���L���U���x�z�����x�z�����x�z�����x�z��������[�a�����������7���������M��z���R��?�ݙo����b�����4�~�{z����+�4�+�4�+�4�+�4�+���
����T���@ �
� �
 �
( �
 �

 �
 �
��
`�
@��{���������3
���
�@<
��A
��������P�������
 ��������
��������
�P�������
��P���� �
�x
�7ޜr�8{��M���1���1��M�����ז��@�;��N�����y�y�d�my�N!�4���p<%�����0���d����*�TK���j��j��T�*6�L�d�������0%��p�b�;�4�N�m�d�ylym�c�z�N �;j|@�������������1���1���8�r��z�;j�N mz�c�m�m�����N�T�4o;�b�����0���d��SL�6�����j�c�j���K��S��d�������0�<��o�T�4�N!�y��������m��N��
��]��]���z������Ϟ�Ҟ������ԝ�������x��x����y����5��_��_��_�Y����t�	~�r�l�3�/����������������r5�l�3�/������� ��� ��H���r�����vZ�j�G�
��?��C������-��������T%����%��\:�R�R:�R��_�D���D�D���D�D���D�D���D����?�)���|�8��oC��A��
�/��-���$��"�,�B�5��|6���-�G�c�K�dԛӘ��
�p����y��|���|u~w�'��~rb<!��ێ��j������w�w�s{��z���}qr^r}d�0�Gة蘵�и۩�޴�r�~�v���~�������������w�v�y�������������y�7�-�8�����<�ÖC�K�l��w�x�x�w�x�w�������������|�l�t{u{�l�t�t��������{���������h�h�[�sgsh�Z�s�r�����|
�9�q�Y�fqgq�X�f�|�f��������r�!����|��b�R�$�������I��=�X�,���3�|�Mq&�h�8 �?�4��ye�R�R�Y��Ni�ꏏ�������]ȵ�9ЉОȶ�%�[/�+���(y�f�qypx�f�p�p��������y��|�3����u�u�u�}u�u�t�}����������H��q�q�q�zq�p�q�z���������,�N\u�\�gugu[�f�g�������v��~�$��x�x�w�w�w�x�~���������S��w�b�nvmv�b�m�m��������w���������������p�@��
�����
���
��#'+/2<@EJOcgkoz�����������BFJNRY^ly����������������.9��������&.9=AFMQZbfmsw{����9BJNRY^u������-z������������<MU[agos�������"29@EN^px~��			 	V	Z	_	�	�	�	�	�	�	�

	



/
>
F
o
�
�
�
�
�
�
�
�
�&,@es{������������� -:KUcglu|������


/
O
V
Z
`
j
o
u
{
�
�
�
�
�
&Dbs~����������������-18>EKOTm�������������� ).7<DQYns��������������%:@Ui{���������������"',1CUZl~�������������$(-2BHP`gku{������������������$,2APWZ_drw}���������������+8EOU[binty~��������������	$).38CNY_doz���������
�<���<C
KFKk�r
=oYB;�
��E�#��E�
�E����������P�/"� �@�Z�<��[� �E�
�E�E�#��[<:Z���@���
���T���T��T�� �T��T�x��T���������B�t)
�
P
�����t�*
�i�@���E���X��X��E���+y}}yK��
�.
+��E���X��X��E���P�
�
+
.
' 
�3���3y]����hnnh�}�y���]�]�����]�]���s4�
.\��2��A
y}�B
,
F�TkB��B��a
�U�)
y}}yKy}����������}y�TN%�
��=hnnh�hn���q�F
A[
���]�]��E
�����}�t�����	�� �"�������������"� ��	���M
-
\
�
��
���������������1��<�0
�0
+������
������������
����������f�f�
��}yf_��"-
.hnnh�Cp
�}�y�T(
���-�V�`��C�3�}�y�Ty}}y�T�
c
���|�zS
�+o
�+�
��D+\�T2�TA
���������� ʆ��iimdod���������$��@�~� K������z�&�w{�y�yw��}|� |�}���x�z�{�wa&z��������K������������$|��'��������������[�����[�!���!������oZ�S1���
0
[��R
��Y�W�f�fG
�f�fU���
]
�@gw
�TH
U
�
3CC3X
K]
+>
��T�Y
�����[�R�Dh���1�
��T��T�T��G�������_�^�X*�D�4�
�4D�*�Y�_�`t��������W
����!�
�'��''��e
������
�
�T�T�
�
�T�T�
�i
��h���h�
���
�
O
g
�B
�4�T�T��=�T�T�
y�}��7�!�x�!hD�:
�,�����
�J�����J�4��
����������F��/�B��������
NPuc]�T<�O��d�
}�}�|�1B&�2�B����
:����5
��/���%�%���
YY�������������
�(
�f�f�����������9�>�!����
�
�>��9��U��G�
��@���V``V}�~���d�3�f�T�w�@�t�(�s�u�w�N�5~��w�}�+�}����PV�
������{z�g
�����:
�T�
�TR
�]�Ky}��Hg
�TB
�4�$�$���G
��U���$�$�
V``VV`�����
`V����!�_��I�b�	\�;COLD|yz|�r����u��{������������A��0����������%�����{[�k������@�hhn��z|������r������4��~������~�4`_��`R�`e9C/R&a���žҦ�4��A�'�"�)����~�4���U�f�f�
,u
!55!=
�=
����������T-
�/�T���
�����
�{�z���G�C���C�8�=<�<�8��C���G�C��������� �VV�����z�|�Y���Y�.�:�t��:���}
���&&��T�O
�'��Lf��eN�z�y�z����#� u��"������������=�1�?�u՗����f�f�
YY����
��Y��f�f����
������&��������/����]�]������1����a}�.
�M�M���Y����;���/����������������������a�3����:��������t�������@y
������t����������
g�Z
!�5�
��\�|�\�?�Z���E�ԅ���c��*y^H�(�ym�|�[��n
��U
��t�3
�������Z�Z�r���EQQEEQ��c
'>�
�0
�4Z
V``V�
���������~����
�����������������������z�z����3�'�)������������
�����{z�4���
�+�<���<�<���<�{�������.�=�=
C
�9�"��T�M�5���������{��~~�D�;��i�
�f�fW4��x
�!�x�!�Q�E�
���8�
���8�
���8�
����x
�
���i����
��������	����������������	�tkR��E�;V``V��<
��A
5
��/�
R��T�&
�
��
+
,
3�
��� ���O�>
��������z�r��^�`�������`���^?*<�씒������<�Jڔ���>��������@(
���
�St
���}��
�����
���
X
�@]
���-
���
����
������}y�yr�rrr�yy�
��(
���y�y��~�w�~~����������
��������������������[
�
���t����������t���|�z�@(
�Tz�|���}D}��}������������������RD��,�l"�7o�''��$�{��������������������������1���D
�
�������
����!K��
��z{�����8���T���(�A�(�A�(�A��m����t��������K��x�x�t�w�����~��̍�����������t|~�}�:����@�w�{�t�s�o�yx~����������R��1
��7�OI�I��gX�!�!�gX���g��!�fz���\�J�$�9������:�l�A~�w�]]�w�~���z��
�
m�m))m�m�)������{G
�YU3-
t������a
�h����N�0����������K�m��
+��
�)vP
�\��
��t�4���4�
�
�
��<
�A
���	,,�	�	,�	�	��	�	�,�	T
���
�b
�<
�TA
����F
���}t����.�+ݭ�����������������{����`�T�3���3�����V��@�
���t����k�r�crr������@�
>
��xy�o�ts��{�SK(
����
���������tp�
�����y�y����:
�������7�D�$�$�D��������������nh&�T*
�����5������������������@��$����$@!��quuqqu���;���;��uqf���
K<
�����p�������
� ������QEt�����'�rrc�r�2
������TSTdJ,]��շ����49��arwwvyr�/��������(DB%$�A���Ό������%
����`���u�ttu~w�c��cl��������q�t��������=�h�F��� B�4������4�����
��
����V
s���V�������E�z�*�6�z�*E!�!�$��D�D�$�
����7�T���-
R
����
�5
���y�y��C
�.
���@�h����������<���<�<���<����o7��������T�T�_���L��d��h�aahi`a�h���������
�/ti
�V���H������
��ԫ���ԫ��
��
��]�������������T�t���.�;���;��<:�Z�����:����3}|������A���P
3C��ɽ������Nb�a�]����
0�$�7o"�7�l�����
������������
��
@���
�����������������<�<��y}|z��i
�z�{�R�D3���$�$D�R����i�p���������w��������
����
E�Q��y��
���
���1�
0
��
fM�@�
jm��q�����������,�4[�
���@XtxmihbW_)�RK(
t����:���z�{���������z}R��%���7��tC
(
�t�
���z�x
����x
�
!5������x
����&�%y}��������_g��������g_��
����
��*1���0���˒�����������h�����
��`V������m�����������[
ˋˋˋˋˋ�7���ߋ�7�������
K��������[���L����z����������-
�-��������������������Ty�������!�5�����z��+���&m���/�%��t��~���-���������\�$�"�W�T�*��������n�h�t��t��t���v��������������#�#��
��	��h��3��3s�pyrs@ ��  ""
	���x@8 �����!"""`���>�N�^�f�i�n�~��������������'�(�.�>�N�^�n�~��������������>�N�^�n�~������������ �����!"""`���!�@�P�`�g�j�p�������������� �(�)�0�@�P�`�p��������������!�@�P�`�p��������������\�Q�A�0��ޕ�R

	��������������������������������������v^��%|�_<��O<0�1h�����	�	����	��p��v�_�]�����y�n�����2��@����������������z�����Z@�5�5
���ZZ����@���������,_���@��������f���@	��@��(������@�����@��@-
�M�M�-�
�M�M�����@�����@@�
�-������b����
��� ����5�-�8�����@�D@���,*@� ���������	m��)@�@	 	' D9��>dU*#						�	��	����R										�@	e�	
%RE	 		$�� k(��D�'	��	�%��	�%	��	��0$�.�$P�//:/K/Q]�	
���	^�	U	k	"y	U	$�	U	��	a		y	*�	<�Copyright Dave Gandy 2016. All rights reserved.FontAwesomeFONTLAB:OTFEXPORTVersion 4.7.0 2016Please refer to the Copyright section for the font trademark attribution notices.Fort AwesomeDave Gandyhttp://fontawesome.iohttp://fontawesome.io/license/Copyright Dave Gandy 2016. All rights reserved.FontAwesomeRegularFONTLAB:OTFEXPORTVersion 4.7.0 2016Please refer to the Copyright section for the font trademark attribution notices.Fort AwesomeDave Gandyhttp://fontawesome.iohttp://fontawesome.io/license/PK`x1\Op�n�n�$assets/fonts/fontawesome-webfont.eotnu�[���n����LPYxϐFontAwesomeRegular$Version 4.7.0 2016FontAwesome
�PFFTMk�G���GDEF��p OS/2�2z@X`cmap
�:��gasp���hglyf���M�L�head��-�6hhea
�$hmtxEy��
�loca��\�maxp,8 name㗋�gh�post����k�uː�xY_<��3�2�3�2���	�	����	��'@i��3��3s�pyrs@ �� �pU�]�����y�n�����2��@������
��������z���Z@�5�5
���z���ZZ����@���������,_���@������s���@	��@��(������@�����@��@-
�M�M�-�
�M�M�����@�����@@�
�-����`��b����
���$����6�4�8�"�"""""���@�D@���,,@� ���������	m��)@�@	 	' D9>dY*	'						�	��	��T										�@	f�	%RE	 		$!k(D�'	��	�%��	�%	��	��0%�/�&��p@0 �����!"""`���>�N�^�n�~��������������.�>�N�^�n�~��������������>�N�^�n�~������������ �����!"""`���!�@�P�`�p�������������� �0�@�P�`�p��������������!�@�P�`�p�������������\�X�S�B�1����ݬ

	����������������������������������
�
	,,,,,,,,,,,,,��t�L�T$�l	x	�
T(��
d����l,����4d�pH�$d,t( � �!�"0# $,$�&D'�(�)T**�,,�-�.@.�/`/�00�1�2�3d444�5 5�5�6 6\6�7H7�88`8�9L9�:h:�;�<p=p><>�?h?�@H@�A0A�BXB�CdC�DLD�E�F�G0G�H�I�J8K�L�MdN,N�N�O�P`P�Q4Q�RRlS,S�T`U0W�X�Z[@[�\<\�]�^(^�_�`pb,b�dd�ePe�f�g`g�iLi�jDkk�l�m@n,oLp�q�r�sxtt�uD{`||�}}�~��������H��������l�@����������l�H� ���T��H�������`����@�����$�\�X��D�������T�X�����D�P�,���8���d�\����������������H���x��� �t���X���p��d��������x�t�������������@������Œ�\� ļ�ŸƔ�0���d��ʨˀ����͔�x��ϰЌ�,ш�҈�ӌ���8�,՜�`���l�Hش�`���Tڸ�۔�@���l��ބ�߬��l�p� ������������������������������4�����X���$�l���(����`����������	d

��
,�,��8��(�X���x|T�@��| �!�"x##l$$�'h(�*L,T.L1t1�2�303�4�5t6T7$89H::�;�<�<�?X@A�B�C�D�EHFHGpHHIxJ J�K�L�MN@P@Q�R�SDT ULV`V�WXX4X�ZZ�[d[�\|]�^�`�aHa�b�cXd�etfhg�h�i\jxn�p@s�vw�x�y�z�{h|�}}�\���l�t���4���������t���8�8���L���T�������������|�������|�������4�x�����L����������X�(� ������� ������@�����l���t����$����x�L�L��� �H������Ġ�T�(����ʈˠ��ϔ�l�d���P�Մ�x�p���ڬ�T�T���ވ�L�����<�H��$���l������4����������� �P�l����,���x���p�,�x�t��d����4���4,h�P	4
��
�4�<,,408$�8�T� |!h"�$L%0&H'�(�)�*0*�+�,�.$.�0�1�2@2�3�4t5$6�9 :�:�;;�<(<�=4?�@�A�C�D�F�H`H�I�L�L�L�L�L�L�L�L�L�L�L�L�L�L�L�L�p7!!!���@p�p �p�]���!2#!"&463!&54>3!2�+��@&&��&&@��+$(�($F#+���&4&&4&x+#��+".4>32".4>32467632DhgZghDDhg-iW�DhgZghDDhg-iW&@(8 ��2N++NdN+'�;2N++NdN+'�3
8���!  #"'#"$&6$ �������rL46$���܏���oo��o|W%r��������4L&V|o��oo����ܳ��%��=M%+".'&%&'3!26<.#!";2>767>7#!"&5463!2� %��3@m00m@3���% 
�
�@
���:"7..7":�6]�^B�@B^^B�B^ $΄+0110+��$�
(	

�t��1%%1��+�`��B^^B@B^^���"'.54632>32�4��
#L</��>�oP$$Po�>���Z$_d�C�+I@$$@I+��������"#"'%#"&547&547%62���V�?�?V��8��<��8y���
���b%	I�))�9I	����	+	%%#"'%#"&547&547%62q2�Z���Z2Izy���V)�?�?V��8��<��8)>~��>��[��
���
2���b%	I�))�9I	���%#!"&54>3 72 &6 }X��X}.GuL�l�LuG.�����>�m��mU��mE��Em�������>����/?O_o���54&+";2654&+";2654&+";264&#!"3!2654&+";2654&+";264&#!"3!2654&+";2654&+";2654&+";267#!"&5463!2�&�&&�&&�&&�&&�&&�&&�&&&�&�&&�&�&�&&�&��&�&&&�&�&&�&&�&&�&&�&&�&�^B��B^^B@B^@�&&�&&��&&�&&��&&�&&�&&�&&��&&�&&���&&�&&&&�&&���&&�&&��&&�&&��&&�&&���B^^B@B^^��/?#!"&5463!2#!"&5463!2#!"&5463!2#!"&5463!2L4�4LL44LL4�4LL44L�L4�4LL44LL4�4LL44L��4LL4�4LL��4LL4�4LL���4LL4�4LL��4LL4�4LL	�/?O_o�#!"&=463!2#!"&=463!2#!"&=463!2#!"&=463!2#!"&=463!2#!"&=463!2#!"&=463!2#!"&=463!2#!"&=463!28(��(88(@(88(��(88(@(8�8(��(88(@(8��8(��(88(@(8�8(��(88(@(8�8(��(88(@(8��8(��(88(@(8�8(��(88(@(88(��(88(@(8 �(88(�(88�(88(�(88��(88(�(88�(88(�(88��(88(�(88��(88(�(88�(88(�(88��(88(�(88�(88(�(88�/?O_#!"&=463!2#!"&=463!2#!"&=463!2#!"&=463!2#!"&=463!2#!"&=463!28(��(88(@(88(��(88(@(88(�@(88(�(8�8(��(88(@(88(�@(88(�(88(�@(88(�(8 �(88(�(88�(88(�(88��(88(�(88�(88(�(88��(88(�(88�(88(�(88y��"/&4?62	62��,�P����P&�P��P�,��jP�����n���#$"'	"/&47	&4?62	62	�P���P�&���P&&P���&�P�&���P&&P���&�P������#+D++"&=#"&=46;546;232  #"'#"$&6$ 
�
@
�

�
@
�
�������rK56$���܏���oo��o|W�@
�

�
@
�

��r��������jK&V|o��oo����ܳ�����0#!"&=463!2  #"'#"$&6$ 
��

@
�������rK56$���܏���oo��o|W�@

@
�r��������jK&V|o��oo����ܳ����)5 $&54762>54&'.7>"&5462z�����z��+i *bkQ��н�Qkb* j*����LhLLhL�����zz���Bm +*i J�yh��QQ��hy�J i*+ m��J��4LL4�4LL���/?O%+"&=46;2%+"&546;2%+"&546;2+"&546;2+"&546;2��������������`��r��@�@r�@��@����n4&"2#"/+"&/&'#"'&'&547>7&/.=46?67&'&547>3267676;27632�Ԗ����#H
	��,/
�1)�
~'H�
�(C
	�

�,/
�1)�	
�$H�
Ԗ�Ԗm�6%2X
%�	l�2
�k	r6

[21
�..9Q

$�
k�2
�k	
w3[20����/;Cg+"&546;2+"&546;2+"&546;2!3!2>!'&'!+#!"&5#"&=463!7>3!2!2@@@@@@���@�`�0
��
o`^B��B^`5FN(@(NF5 ��@��@��@���L%%Ju		�@�LSyuS�@�%44%�f5#!!!"&5465	7#"'	'&/&6762546;2�&�����&??�>

�L�L
>
� X ���
 � &���&��&AJ	A��	J
W���h��##!"&5463!2!&'&!"&5!�(8(��(88(�(`�x
��c�`(8��`(��(88(@(8(D��9�8(����� ,#!"&=46;46;2.  6 $$ ����@��������(�r���^����a�a�@@`��(��������_�^����a�a��2NC5.+";26#!26'.#!"3!"547>3!";26/.#!2W
�
��.�@

��

�@.�$S

�

S$�@

���9I


�
I6>
��
��>�%=$4&"2$4&"2#!"&5463!2?!2"'&763!463!2!2&4&&4&&4&&4�8(�@(88(ч:�:��(8���@6�@*&&*�4&&4&&4&&4& ��(88(@(8�88�8)�@�)'�&&�@���$0"'&76;46;232  >& $$ `
������������(���r���^����a�a`��		@`��2�������(���^����a�a�����$0++"&5#"&54762  >& $$ ^���
?@�����(���r���^����a�a���`?		����������(���^����a�a��
#!.'!!!%#!"&547>3!2�<�<�<_@`&��&�
5@5
�@����&&�>=(""��=���'#"'&5476.  6 $$ � ��  ! ��������(�r���^����a�a�J��	%�%���(��������_�^����a�a�����3#!"'&?&#"3267672#"$&6$3276&�@*���h��QQ��hw�I
�	m�ʬ����zz���k�)'�@&('��Q��н�Qh_
	�
��z�8�zoe����$G!"$'"&5463!23267676;2#!"&4?&#"+"&=!2762�@�h���k�4&&�&�G�a��F*�
&�@&��Ɇ�F*�
A��k�4&���nf�&�&&4�BH�rd�@&&4���rd
Moe�&�/?O_o+"&=46;25+"&=46;25+"&=46;2#!"&=463!25#!"&=463!25#!"&=463!24&#!"3!26#!"&5463!2�
@

@

@

@

@

@
�
�@

�

�@

�

�@

�
�
�@

�
�^B�@B^^B�B^`@

@
�@

@
�@

@
��@

@
�@

@
�@

@
�3@

��
M��B^^B@B^^��!54&"#!"&546;54 32@�Ԗ@8(�@(88( p (8�j��j��(88(@(8������8@���7+"&5&5462#".#"#"&5476763232>32@@
@
@KjK�ך=}\�I���&:�k�~&26]S
&H&�

�&H5KKu�t,4,�	&� x:;*4*&��K#+"&546;227654$ >3546;2+"&="&/&546$ �<��X@@Gv"D�����װD"vG@@X��<��4L4����1!Sk @ G<_b������b_<G �� kS!1����zz�� �"'!"&5463!62&4����&&M4&���&M&�&M& ��-"'!"&5463!62#"&54>4.54632&4����&&M4&�UF
&""""&
F���&M&�&M&���%/B/%���G-Ik"'!"&5463!62#"&54>4.54632#"&54767>4&'&'&54632#"&547>7676'&'.'&54632&4����&&M4&�UF
&""""&
FU��
&'8JSSJ8'&

����

&'.${��{$.'&

����&M&�&M&���%/B/%7���;&'6���6'&;��4�[&$
[2[
$&[��#/37#5#5!#5!!!!!!!#5!#5!5##!35!!!����������������������������������������������������������������������������#'+/37;?3#3#3#3#3#3#3#3#3#3#3#3#3#3#3#3#3????  ^��>>~??�??�??~??~??^??�^^?  ^??������������������������������������4&"2#"'.5463!2�KjKKjv%�'45%�5&5L4�5�&�%jKKjK�@5%�%%�%�5�4L5&�6'��k�54&"2#"'.5463!2#"&'654'.#32�KjKKjv%�'45%�5&5L4�5�&�%�%�'4$.�%%�5&�5�5�&�%jKKjK�@5%�%%�%�5�4L5&�6'45%�%�%54'�&55&�6'
��y�Tdt#!"&'&74676&7>7>76&7>7>76&7>7>76&7>7>63!2#!"3!2676'3!26?6&#!"3!26?6&#!"g(��sA�eM�,*$/
!'&
�JP��$G]��
x�6,&��`
��
h`
��
"9H�v@WkNC<.
&k&
("$p"	.
#u&#	%!'	pJ�vwEF�#

@

��

@

���2#"'	#"'.546763�!''!0#�G�G$/!''!�	
8"��"8
 ��X!	
8"	"8
	����<)!!#"&=!4&"27+#!"&=#"&546;463!232������(8���&4&&4�
�8(�@(8�
qO@8(�(`�(@Oq��8(��&4&&4&@�`
�(88(�
�Oq (8(�`(�q���!)2"&42#!"&546;7>3!2  I��j��j��j��j�3e55e3�gr������`��I�j��j��j�j��1GG1���r��������P2327&7>7;"&#"4?2>54.'%3"&#"#ժ!�9&W��B03&�K5�!�)V�?�@L��'�	
>R�>e;&L:�:%P�>��vO
'h�� N��_"�:-&+#
��:��	'	����+a%3 4'.#"32>54.#"7>7><5'./6$3232#"&#"+JBx)EB_I:I*CRzb3:dtB2P���$$5.3b�ZF�|\8!-T>5��Fu��\,�,j�n OrB,<!
5�4wJ]�?tTFi;
2�3j.�p^%/2�+
	S:T}K4W9: #ƕd�fE���:7>7676'5.'732>7"#"&#&#"OA
zj=N!�}:0e��%	y�
+t�D3�~U#B4#
g		'2
%/!:
���T	bRU,7����}%2"/&6;#"&?62+326323!2>?23&'.'.#"&"$#"#&=>764=464.'&#"&'�!~:~!PP!~:~!P��6�,�,$�$%*'
c2N 	
(�$"L��A2�3Yl�!x!*�%��%%��%��
p�P,T	NE	Q7^���oH!+(
3	 *Ue�eu
wg��a�32632$?23&'.5&'&#"&"5$#"#&=>7>4&54&54>.'&#"&'2#".465!#".'&47>32!4&4>Q6�,�,Faw!*'
=~Pl*	
(�$"L��A2�3Yl	�)�!*<7@@7<
�
<7@@7<
 p�P,T	MF
Q7�47ƢHoH!+(
3	 t���JHQ6wh��',686,'$##$',686,'$##$�/?%#!"&=463!2#!"&=463!2#!"&=463!2#!"&=463!2&��&&�&��&�&&&&�&&&��&��&&�&��&&�&&f�&&�&&f�&&�&&f�&&�&&�/?%#!"&=463!2#!"&=463!2#!"&=463!2#!"&=463!2&��&&�&��&��&&�&&��&&�&��&��&&�&��&&�&&f�&&�&&f�&&�&&f�&&�&&�/?%#!"&=463!2#!"&=463!2#!"&=463!2#!"&=463!2&��&&�&&�&&&&�&&&&��&&�&��&&�&&f�&&�&&f�&&�&&f�&&�&&�/?%#!"&=463!2#!"&=463!2#!"&=463!2#!"&=463!2&��&&�&&��&&�&&��&&�&&��&&�&��&&�&&f�&&�&&f�&&�&&f�&&�&&�/?O_o%+"&=46;2+"&=46;2+"&=46;2#!"&=463!2+"&=46;2#!"&=463!2#!"&=463!2#!"&=463!2
�

�

�

�

�

�

��

@
�
�

�

��

@

��

@

��

@
�

�
s�

�
s�

�
��

�
s�

�
��

�
s�

�
s�

�
�/?O#"'&47632#!"&=463!2#!"&=463!2#!"&=463!2#!"&=463!2�
	��		 	
�
�@

�

��

@

��

@

�@

�
�
	 		 	��

�
s�

�
s�

�
s�

�
�/?O#"&54632	#!"&=463!2#!"&=463!2#!"&=463!2#!"&=463!2`	��	

	 �
�@

�

��

@

��

@

�@

�
�	��	
@
	��	�

�
s�

�
s�

�
s�

�
#"'#!"&5463!2632'
�m�w�@w��w�w��
'���*��w��w�w��w������."&462!5	!"3!2654&#!"&5463!2�p�pp�p��@���

@
�^B��B^^B@B^�pp�p���@�@� 
�@

�
 �@B^^B�B^^���k%!7'34#"3276'	!7632k[�[�v
��
6����`�%��`�$65&�%[�[k����
�`����5%���&&�'���4&"2"&'&54 �Ԗ���!��?H?��!,�,Ԗ�ԖmF��!&&!Fm�,�����%" $$ ���������^����a�a`@������^����a�a���-4'.'&"26% 547>7>2"KjK��X��QqYn	243nYqQ�$!+!77!+!$5KK���,ԑ�	���]""]ً�	��9>H7'3&7#!"&5463!2'&#!"3!26=4?6	!762xt�t` �� ^Q�w��w��w@?61��B^^B@B^	@(` �`��\\��\P�`t�t8`� �� ^�Ͼw��w@w�1^B��B^^B~
	@��` \ \�P�+Z#!"&5463!12+"3!26=47676#"'&=# #"'.54>;547632��w��w��w�
M8
pB^^B@B^�
'���sw-

9*##;No��j�'
�#��w��w@w�
"^B��B^^B�

	��*�����
"g`�81T`PSA:'�*��4�/D#!"&5463!2#"'&#!"3!26=4?632"'&4?62	62��w��w��w@?61

��B^^B@B^	@

��B�RnB�Bn^��w��w@w�1
^B��B^^B�
	@
���Bn���nB�C"&=!32"'&46;!"'&4762!#"&4762+!5462�4&���&�4�&���&4�4&��&4&��&4�4�&���&4�4&��&4&��&4�4&���&����6'&'+"&546;267��:	&�&&�&	s�@�	
�Z&&�&&�Z
	���+6'&''&'+"&546;267667��:	�:	&�&&�&	�	s�@�	
�:�	
�Z&&�&&�Z
	��:
	z����6'&''&47667S�:	�:�	s�@�	
�:�4��:
	�|�	&546h��!!0a�
�
�
$���#!"&5463!2#!"&5463!2&�&&&��&�&&&@��&&�&&��&&�&&���#!"&5463!2&��&&�&@��&&�&&���&54646&5-�	��:	s��:	
��:4�:�
	���+&5464646;2+"&5&5-�	�	&�&&�&	�:	s��:	
��:	
�&&��&&�
	�:�
	���&54646;2+"&5-�	&�&&�&	s��:	
�&&��&&�
	62#!"&!"&5463!2�4��@��&&�&&-��:��&&&�&�����	"'&4762����4��4����4��4��4Z��f�	"/&47	&4?62S�4����4����44��4���#/54&#!4&+"!"3!;265!26 $$ �&�&�&�&&&�&&@���^����a�a@�&&&�&�&�&&&+�^����a�a�����54&#!"3!26 $$ �&�&&&@���^����a�a@�&&�&&+�^����a�a�����+74/7654/&#"'&#"32?32?6 $$ }��Z��Z��Z��Z����^����a�a���Z��Z��Z��Z�^����a�a�����#4/&"'&"327> $$ [4�h�4[j����^����a�a"Z�i�Z��J�^����a�a�����:F%54&+";264.#"32767632;265467>$ $$ ���o�W��	5!"40K(0?i�+! ":����^����a�a����X�R�dD4!&.uC$=1/J=�^����a�a�����.:%54&+4&#!";#"3!2654&+";26 $$ `��``��������^����a�a�����������^����a�a�����/_#"&=46;.'+"&=32+546;2>++"&=.'#"&=46;>7546;232�m&&m �l&�&l� m&&m �l&�&l�s&�%�&�&��%�&&�%�&�&��%�&&�&l� m&&m �l&�&l� m&&m �,�&��%�&&�%�&�&��%�&&�%�&���#/;"/"/&4?'&4?627626.  6 $$ I�

��

�

��

�

��

�

��
͒������(�r���^����a�aɒ

��

�

��

�

��

�

��
(��������_�^����a�a����� ,	"'&4?6262.  6 $$ ��Z4��f4�4fz�������(�r���^����a�a�Z&4f�f4�(��������_�^����a�a�����	"4'32>&#" $&6$  W���oɒV�󇥔�� z�����zz�8�����YW�˼�[����?����zz�:�zz�@�5K #!#"'&547632!2A4�@%&&K%54'�u%%�&54&K&&���4A��5K��$l$L%%�%54'�&&J&j&��K�5�K #"/&47!"&=463!&4?632�%�u'43'K&&%�@4AA4���&&K&45&�%@6%�u%%K&j&%K5�5K&$l$K&&�u#5��K@!#"'+"&5"/&547632K%K&56$��K5�5K��$l$K&&�#76%�%53'K&&%�@4AA4���&&K&45&�%%�u'5��K�"#"'&54?63246;2632K%�u'45%�u&&J'45%&L4�4L&%54'K%�5%�t%%�$65&K%%���4LL4�@&%%K'���,"&5#"#"'.'547!3462�4&�b��qb>#5���&4�4�&6Uu�e7D#		"�dž�&����/#!"&546262"/"/&47'&463!2�
���&�@&&4�L

r&4���

r

L�&�&�
���4&&�&�L

rI�@&���

r

L�4&&
���s/"/"/&47'&463!2#!"&546262&4���

r

L�&�&�
���&�@&&4�L

r@�@&���

r

L�4&&�
���4&&�&�L

r��##!+"&5!"&=463!46;2!2�8(�`8(�(8�`(88(�8(�(8�(8 �(8�`(88(�8(�(8�(88(�`8��#!"&=463!2�8(�@(88(�(8 �(88(�(88z���5'%+"&5&/&67-.?>46;2%6�.@g.��L4�4L��.g@.
��.@g.
L4�4L
.g@.���g.n.���4LL43�.n.g��g.n.�34LL4�͙.n.g����-  $54&+";264'&+";26/�a����^�����
�

�


�

�����^����a�a��
�
fm��
@
J%55!;263'&#"$4&#"32+#!"&5#"&5463!"&46327632#!2���$�$�8�~+(88�8(+}�(�`8(��(8`�]��]k=��=k]��]��8���,8e�8P88P8�����`(88(�@���M��M����N4&#"327>76$32#"'.#"#"&'.54>54&'&54>7>7>32&����z&^��&.������/+>+)>J>	W��m7����'
'"''? &4&c��&^|h_b��ml/J@L@#*
#M6:D
35sҟw$	'%
'	\�t��3#!"&=463!2'.54>54''�
��

@
�1O``O1CZ��Z71O``O1BZ��Z7�@

@
N�]SHH[3`�)Tt��bN�]SHH[3^�)Tt���!1&' 547 $4&#"2654632 '&476 ���=������=嘅�����}�(zVl��'��'���ٌ@�uhy����yhu����9(�}Vz��D#���#D#�������	=CU%7.5474&#"2654632%#"'&547.'&476!27632#76$7&'7+NWb=嘧�}�(zV�j�\i1
z,��X��
Y[6
$!%���'F��u�J�iys�?_�9ɍ?�kyhu�n(�}Vz����YF
KA؉L�a
�0��2�-�F"@Q���sp@�_���!3%54&+";264'&+";26#!"&'&7>2
�

�


�
�
#%;"�";%#<F<������7


���??""??�$$ll2#"'&'	+&/&'&?632	&'&?67>`,@L�����5
`		��
`	�����L�`4�L��H`
����`	��
a	5�
��L@��#37;?Os!!!!%!!!!%!!!!!!!!%!!4&+";26!!%!!!!74&+";26%#!"&546;546;2!546;232� ��`@���� ��`@���� ���@����@�� ��@����
@

@
� ��@��� �� 
@

@
�L4��4LL4�^B@B^�^B@B^�4L� �� @@��@@ � � � @@  

��
��@@ �� � 

��
M�4LL44L`B^^B``B^^B`L���7q.+"&=46;2#"&=".'673!54632#"&=!"+"&=46;2>767>3!54632�<M33K,��	��	
 j8Z4L2B4:;M33K,?		��	
�0N<* .)C=W]xD��0N<* .)C=W]xD?\�-7H)��	��	
�".=']�-7H)�
��w	��	
�<?.>mBZxPV3!�<?.>mBZxPV3!�
���&#"'&'5&6&>7>7&54>$32�d�FK��1A
0)����L���.���٫�C58.H(Y���e����#3C $=463!22>=463!2#!"&5463!2#!"&5463!2���H���&�&/<R.*.R</&�&�&��&&�&&��&&�&������Bɀ&&�4L&&L4�&&f��&&�&&��&&�&&Z� %"'	"/&4762��4���4��4�ͥ���5��5Z����	"'&4?62	62��4��44���5����5��%K%#!".<=#"&54762+!2"'&546;!"/&5463!232
�@�&@<@&�@	����:��&���	�
��& 

��&���&���
����&��	

��`&���:$"&462"&462!2#!"&54>7#"&463!2!2�LhLLh�LhLLh�!��
�&&�&��&&�&4hLLhLLhLLhL��%z<
0&4&&)17&4&
&&��#!"&5463!2!2��\�@\��\@\��\���@\��\�\��\ �W�*#!"&547>3!2!"4&5463!2!2W��+�B��"5P+�B@"5����^�=���\@\� \�H#�t3G#�3G:�_H�t�\��\ �@��+32"'&46;#"&4762�&��&�4�&��&4�4&�&4�4&&4�@�"&=!"'&4762!5462�4&�&4�4&&4�4�&��&4&��&����
!!!3!!��������������������������0@67&#".'&'#"'#"'32>54'6#!"&5463!28ADAE=\W{��O[/5dI
kDt���pČe1?*�w�@w��w�w��	(M&
B{Wta28r=Ku?RZ^Gw��T	-�@w��w�w�����$2+37#546375&#"#3!"&5463�w��w���/Dz?s�����w��w��w�@w�S�88�	�����w�w����#'.>4&#"26546326"&462!5!&  !5!!=!!%#!"&5463!2�B^8(�Ԗ���������>��������@�|�K5�5KK55K�^B(8Ԗ�Ԗ�€>�������v����5KK55KK�H��G4&"&#"2654'32#".'#"'#"&54$327.54632@p�p)*Ppp�p)*P�b	'"+`�N*(�a���;2��̓c`." b
PTY9��ppP*)p�ppP*)�b ".`�(*N��ͣ�2�ͣ����`+"'	b
MRZB�����4&"24&"264&"26#"/+"&/&'#"'&547>7&/.=46?67&'&547>3267676;27632#"&'"'#"'&547&'&=4767&547>32626?2#"&'"'#"'&547&'&=4767&547>32626?2��Ԗ���LhLKjKLhLKjK��	�"8w
s%(�")v

�
>�
	�"8x
s"+�")v
�<�
��3zLLz3��
3>8L3)x3
��3zLLz3��
3>8L3)x3
�Ԗ�Ԗ�4LL45KK54LL45KK���
#)0C	wZl/
�
Y�	
N,&�
#)0C	vZl.
�
Y�L0"��qG^^Gq�q$ ]G)Fq�qG^^Gq�q$ ]G)Fq��%O#"'#"&'&4>7>7.546$ '&'&'# '32$7>54'�����VZ|�$2$
|��E~E<�|
$2$�|ZV���:�(t}�������X(	
&%(H�w�쉉��x�H(%&	(X�ZT\�MKG���<m$4&"24&#!4654&#+32;254'>4'654&'>7+"&'&#!"&5463!6767>763232&4&&4�N2��`@`%)7&,$)'  
%/0Ӄy�#5 +�1	&<��$]`�{t��5KK5$e:1&+'3T�F0�h��4&&4&�3M:�;b^v�+D2 5#$��I�IJ 2E=\$YJ!$MCeM��-+(K5�5K�K5y�*%A�u]c���>q4&"24&'>54'654&'654&+"+322654&5!267+#"'.'&'&'!"&5463!27>;2&4&&4�+ 5#bW���0/%
  ')$,&7)%`@``2N��h�0##�T3'"(0;e$��5KK5 t��ip��<&	1&4&&4&�#\=E2&%IURI��$#5 2D+�v^b;�:M2g�c]vDEA%!bSV2M�K5�5K(,,��MeCM$!I��@�#"&547&547%6@�?V��8������b%	I�)���94.""'."	67"'.54632>32�+C`\hxeH>Hexh\`C+�ED���4��
#L</��>�oP$$Po�>��Q|I.3MCCM3.I|Q����/����Z$_d�C�+I@$$@I+� (@%#!"&5463!2#!"3!:"&5!"&5463!462�
��w��w@

��B^^B 
���4&�@&&�&4 ` 
�w�w�
 
^B�@B^24��& &�& &�����%573#7.";2634&#"35#347>32#!"&5463!2���FtIG9;HI�x�I��<,tԩw�@w��w�w�z��4DD43EE�����ueB���&#1�s�@w��w�w�����.4&"26#!+"'!"&5463"&463!2#2��&�S3L�l&�c4LL4�4LL4c����@��&��&{�LhLLhL��'?#!"&5463!2#!"3!26546;2"/"/&47'&463!2��w��w��w��@B^^B@B^@�&4��t

r

��&&`��w��w@w�@^B��B^^B@R�&��t

r

��4&&@"&5!"&5463!462	#!"&54&>3!2654&#!*.54&>3!2���4&�@&&�&4 s�w��

@B^^B��

@w��4��& &�& &��3�@w�
 
^B�B^ 
�����
I&5!%5!>732#!"&=4632654&'&'.=463!5463!2!2�J���J���S��q*5&=CKu��uKC=&5*q͍S8( ^B@B^ (8���`N��`Ѣ�΀G�tO6)"M36J[E@@E[J63M")6Ot�G�(8`B^^B`8	���',2��6'&'&76'6'&6&'&6'&4#"7&64 654'.'&'.63226767.547&7662>76#!"&5463!2		/[		.
=���X��Ě4,+"*+, 1JH'5G:�:#L5+@=&#���w�@w��w�w�P.1GE�,��ԧ��44+	;/5cFO:>JJ>:O9W5$@(b4��@w��w�w������'?$4&"2$4&"2#!"&5463!3!267!2#!#!"&5!"'&762&4&&4&&4&&4�8(�@(88(�c==c�(8��*�&�&�*�6�&4&&4&&4&&4& ��(88(@(88HH88`(�@&&�('��@����1c4&'.54654'&#"#"&#"32632327>7#"&#"#"&54654&54>76763232632


	N<�;+gC8�A`1a9�9�g��w����|�9�8aIe$I�VN��z<�:LQJ
�,�-[%	061I��(�)W,$-������7,oIX(�)o�ζA;=N0
eTZ
	 (���O#".'&'&'&'.54767>3232>32�e^\4?P	bM��O0#382W#& 9C9
Lĉ"	82<*9FF(W283#0OMb	P?4\^eFF9*<28	"��L
9C9 &#��!"3!2654&#!"&5463!2`��B^^B@B^^ީw��w��w@w�^B��B^^B@B^���w��w@w�����#!72#"'	#"'.546763���YY�!''!0#�G�G$/!''!�&�UU�jZ	
8"��"8
 ��X!	
8"	"8
	���GW4.'.#"#".'.'.54>54.'.#"32676#!"&5463!2 1.-
+$)
c�8
)1)

05.D
<9�0)$9��w�@w��w�w�W

)1)
7�c
)$+
-.1 �9$)0���<
D.59�@w��w�w��,T1# '327.'327.=.547&54632676TC_L��Ҭ���#+�i�!+*p�DNBN,y[����`m`%i]hbE����m��}a�u&,�SXK��
&$��f9s?
_���#"!#!#!54632��V<%'����Э��HH���	�(ں����T\dksz�� &54654'>54'6'&&"."&'./"?'&546'&6'&6'&6'&6'&74"727&6/�a���49[aA)O%-j'&]�]5r-%O)@a[9'
0BA;+


>HC���U


	#	
	
$				2	
AC: �����oM�=a-6O�UwW[q	( -	q[WwU�P6$C

+) (	
8&/
&eM���a�	
&
$	

��%+"&54&"32#!"&5463!54 �&@&�Ԗ`(88(�@(88(�r��&&j��j�8(��(88(@(8��������#'+2#!"&5463"!54&#265!375!35!�B^^B��B^^B
�

��
`���^B�@B^^B�B^�
��
�
`��
�������!="&462+"&'&'.=476;+"&'&$'.=476;�p�pp�p�$���!�$qr�
�%���}�#ߺ���pp�p��!�E$�
�rq�ܢ#���
%�
ֻ��!)?"&462"&4624&#!"3!26!.#!"#!"&547>3!2/B//B//B//B�
�@

�
�2�����^B�@B^�\77\�aB//B//B//B/�@

��
��

�~��B^^B@2^5BB5��2���.42##%&'.67#"&=463! 2�5KK5L4�_�u:B&1/&��.-
zB^^B���4L��v��y�KjK��4L[!^k'!A3;):2*�<vTq6^B�B^�L4�$���)��*@��A4#"&54"3!4."#!"&5!"&5>547&5462�;U gI�v��0Z���Z0�L4�@�Ԗ�@4L2RX='�8P8��'=XR� U;Ig0,3lb??bl3���4Lj��jL4*\���(88(�����\���}I/#"/'&/'&?'&'&?'&76?'&7676767676`�
(�5)�0
)��*)
0�)5�(
��
(�5)�0
))��))
0�)5�(
��*)
0�)5�(��
)�5)�0
)*��*)
0�)5�)
��
)�5)�0
)*���5h$4&"24&#!4>54&#"+323254'>4'654&'!267+#"'&#!"&5463!2>767>32!2&4&&4�N2��$YGB
(HGEG  H��Q�#5K4L��i�!<�����;��5KK5 
A#
("/?&}�vh��4&&4&�3M95S+C=�,@QQ9��@@�IJ 2E=L5i�>9eM��E;K5�5K	J7R>@#�zD<����5=q%3#".'&'&'&'.#"!"3!32>$4&"2#!"#"&?&547&'#"&5463!&546323!2`  #A<(H(GY$��2NL4K5#aWTƾh&4&&4�K5��;����=!�i��hv�}&?/"(
#A
 5K��2*!	Q@.'!&=C+S59M34L=E2 JI UR@@&4&&4&���5K;E��Lf9>�ig�<Dz�#@>R7J	K�5h4&"24#"."&#"4&#"".#"!54>7#!"&54.'&'.5463246326326&4&&4��IJ 2E=L43M95S+C=�,@QQ9�@@�E;K5��5K	J7R>@#�zD<�gi�>9eM��Z4&&4&<�#5K4LN2��$YGB
(HGEG  H��V���;��5KK5 
A#
("/?&}�vh��i�!<��4<p4.=!32>332653272673264&"2/#"'#"&5#"&54>767>5463!2�@@��2*!	Q@.'!&=C+S59M34L.9E2 JI UR�&4&&4&��Lf6A�ig�6Jy�#@>R7J	K5�5K;E@TƾH  #A<(H(GY$��2NL4K#5#a=4&&4&�D��=�i��hv�}&?/"(
#A
 5KK5��;�����+54&#!764/&"2?64/!26 $$ &�
�[6��[[j6[��&���^����a�a@�&�4[��[6[��[6�&+�^����a�a�����+4/&"!"3!277$ $$ [��6[��
&&��[6j[
���^����a�ae6[j[6�&�&�4[j[��^����a�a�����+4''&"2?;2652?$ $$ ��[6[��[6�&�&�4[���^����a�af6j[[��6[��
&&��[��^����a�a�����+4/&"4&+"'&"2? $$ [6�&�&�4[j[6[j���^����a�ad6[��&&�
�[6��[[j��^����a�a������  $2>767676&67>?&'4&'.'.'."#&6'&6&'3.'.&'&'&&'&6'&>567>#7>7636''&'&&'.'"6&'6'..'/"&'&76.'7>767&.'"76.7"7"#76'&'.'2#22676767765'4.6326&'.'&'"'>7>&&'.54>'>7>67&'&#674&7767>&/45'.67>76'27".#6'>776'>7647>?6#76'6&'676'&67.'&'6.'.#&'.&6'&.5/�a����^����D&"	


	4
	$!	#
	
		
	



 
.0"�Y
	+


!	
	

$	
	"
+


		
	�Α	
		
����^����a�a��

	

			
	

	

		
	
		P� '-(	#	*	$

"
!				
*
!	

(				

	
��$�
		
2
�~�/$4&"2	#"/&547#"32>32�&4&&4��V%54'j&&�'��/덹���:,���{	&4&&4&�V%%l$65&�b��'C��r!"��k[G�+;%!5!!5!!5!#!"&5463!2#!"&5463!2#!"&5463!2����������&��&&�&&��&&�&&��&&�&�������@�&&&&�&&&&�&&&&��{#"'&5&763!2{�'
��**�)��*��)'/!5!#!"&5!3!26=#!5!463!5463!2!2���^B�@B^�&@&`��^B`8(@(8`B^��� B^^B�&&�����B^�(88(�^���G	76#!"'&?	#!"&5476	#"'&5463!2	'&763!2#"'��c�)'&�@*������*�@&('�c���(&�*�cc�*�&'
����*�@&('�c���'(&�*�cc�*�&('���c�'(&�@*��19AS[#"&532327#!"&54>322>32"&462 &6 +&'654'32>32"&462Q�g�Rp|Kx;CB��y��y� 6Fe=
BP���PB
=eF6 ��Ԗ��V����>!pR�g�QBC;xK|��Ԗ���{QNa*+%��x��x5eud_C(+5++5+(C_due2Ԗ�Ԗ�����>�NQ{u�%+*jԖ�Ԗ��p�!Ci4/&#"#".'32?64/&#"327.546326#"/&547'#"/&4?632632��(* 8(!�)(��A�('��)* 8(!U�SxyS�SXXVzxT�TU�SxyS�SXXVzxT�@(� (8 *(���(��'(�(8 ���S�SU�Sx{VXXT�T�S�SU�Sx{VXXT���#!"5467&5432632�������t,Ԟ;F`j�)��������6�,��>�jK?�s��
�!%#!"&7#"&463!2+!'5#�8Ej��jE8�@&&&&@������XYY�&4&&4&�qD�S�%��q%��N\jx��2"&4#"'#"'&7>76326?'&'#"'.'&676326326&'&#"32>'&#"3254?''7�4&&4&l��
�NnbS���VZbR��SD	
zz
	DS��Rb)+U���Sbn�
��\.2Q\dJ'.2Q\dJ.Q2.'Jd\Q2.'Jd`!O�`��	`�����&4&&4�r$#@�B10M�5TNT{L�5T
	II	
T5�L;l'OT4�M01B�@#$�*�3;$*�3;�;3�*$;3�*$�:$/� @@�Qq`��@���"%3<2#!"&5!"&5467>3!263!	!!#!!46!#!�(88(�@(8��(8(�`(�(8D<���+����+�<��8(�`(��8(�`�8(�@(88( 8(�(`�(8(��(������<��`(8��(`����`(8����||?%#"'&54632#"'&#"32654'&#"#"'&54632|�u�d��qܟ�s]
=
��Ofj�L?R@T?��"&�
>
�f?rRX=Ed�u�ds���q��
=
_M�jiL��?T@R?E& �f
>
�=XRr?��b���!1E)!34&'.##!"&5#3463!24&+";26#!"&5463!2����
��
08(��(8��8(@(8��
�

�
�8(��(88(�(`(����1

�`(88(���(88(@

��
�`(88(@(8(��`���#!"&5463!2�w�@w��w�w�`�@w��w�w��/%#!"&=463!2#!"&=463!2#!"&=463!2&��&&�&&��&&�&&��&&�&��&&�&&�&&�&&�&&�&&��@'7G$"&462"&462#!"&=463!2"&462#!"&=463!2#!"&=463!2�p�pp�pp�pp��
�@

�
��p�pp��
�@

�

�@

�
Рpp�p��pp�p���

�
�pp�p���

�
�

�
��<L\l|#"'732654'>75"##5!!&54>54&#"'>3235#!"&=463!2!5346=#'73#!"&=463!2#!"&=463!2}mQjB919+i1$AjM_3<��/BB/.#U_:IdDRE�
�@
�
����k*G�j�
�@
�

�@

�
TP\BX-@8
C)5�XsJ@�$3T4+,:;39SG2S.7<���

�vcc)�)%L�l�}�

��

�
���5e2#!"&=463%&'&5476!2/&'&#"!#"/&'&=4'&?5732767654'&��@�0��2uBo
T25XzrDCBB�Eh:%��)0%HPIP{rQ�9f#-+>;I@KM-/Q"�@@@#-bZ��$&P{<�8[;:XICC>.�'5oe80#.0(
l0&%,"J&9%$<=DTI���cs&/6323276727#"327676767654./&'&'737#"'&'&'&54'&54&#!"3!260%
<4�"VRt8<@<
-#=XYhW8+0$"+dT�Lx-'I&JKkm��uw<=V�@�!X@		v
'��|N;!/!$8:I�Ob�V;C#V

&
(���mL.A:9 !./KLwP�M�$��@@
��/?O_o��%54&#!"3!2654&#!"3!2654&#!"3!2654&#!"3!2654&#!"3!2654&#!"3!2654&#!"3!2654&#!"3!2654&#!"3!26#!"&5463!2��@��@��@���@��@��@���@��@��@�^B��B^^B@B^�����������������������������N��B^^B@B^^���#+3	'$"/&4762%/?/?/?/?�%k��*��6�6��bbbb|��<<��<�bbbb��bbbb�%k���6���6Ƒbbb��<<��<<�^bbbbbb@��M$4&"2!#"4&"2&#"&5!"&5#".54634&>?>;5463!2�LhLLh����
	�	LhLLhL!'�Ԗ���Ԗ@'!&	
�?�&&LhLLhL�	�	
��hLLhL��	j��jj��j	&@6/"
��&&���J#"'676732>54.#"7>76'&54632#"&7>54&#"&54$ ���ok;	-j=y�hw�i�[+PM3ѩ���k=J%62>Vc��a�aQ�^��� ]G"�'9��r�~:`}�Ch�  0=Z�٤���W=#uY2BrUI1�^Fk[|��a�����L2#!67673254.#"67676'&54632#"&7>54&#"#"&5463�w��w�+U	,i<��F{�jh�}Z+OM

2ϧ���j<J%51=Ub�w��w��w�@w�zX"�'8'�T�yI9`{�Bf� 
,>X�բ���W<"uW1AqSH1�bd��w�w����'74'!3#"&46327&#"326%35#5##33#!"&5463!2����0U6c��c\=hl���ࠥ�Ymmnnnn�w�@w��w�w�w&�46#�Ȏ;ed����wnnnnn��@w��w�w����	]#/#"$&6$3 &#"32>7!5!%##5#5353����Е���tt����u�{�zz�{S�ZC�`�c�����o���t�*�t��q|��|.EXN#�??�������,<!5##673#$".4>2"&5!#2!46#!"&5463!2��r�M*
�*M~�~M**M~�~M*j����jj����&�&&&�`��P%��挐|NN|���|NN|�*�jj���jj�@��&&�&&@�
"'&463!2�@4�@&�Z4�@�4&@
#!"&4762&��&�4�Z4&&4��@@���
"'&4762�&4�@�4&@��&�4�&�@�
"&5462@�@4&&4��4�@&�&�@����
3!!%!!26#!"&5463!2�`��m��`
�^B��B^^B@B^���
 `���@B^^B�B^^��@
"'&463!2#!"&4762�@4�@&�&&��&�4��4�@�4&Z4&&4��@��
"'&463!2�@4�@&��4�@�4&@
#!"&4762&��&�4�Z4&&4��@��:#!"&5;2>76%6+".'&$'.5463!2^B�@B^,9j�9Gv33vG9�H9+bI��\
A+=66=+A
[��">nSM�A_:��B^^B1&�c*/11/*{�'VO�3��@/$$/@�*�?Nh^��l+!+"&5462!4&#"!/!#>32]��_gTRdg�d���QV?U��I*Gg?����!�2IbbIJaa���iwE33����00� 08����4#"$'&6?6332>4.#"#!"&54766$32z�䜬��m�
I�wh��QQ��hb�F�*�@&('�k�������z��
�	
_hQ��н�QGB�'(&�*�eoz�(���q!#"'&547"'#"'&54>7632&4762.547>32#".'632�%k'45%��&+�~(
(�h		&

\(
(�		&

~+54'k%5%l%%l$65+~

&		�(
(\

&		�h(
(~�+%��'��!)19K4&"24&"26.676&$4&"24&"24&"2#!"'&46$ �KjKKjKjKKj�e2.e<^P��,bKjKKj��KjKKjKjKKj��#��#���LlL�KjKKjKjKKjK��~-��M<M�(PM<rjKKjK�jKKjKujKKjK�������L���< 6?32$6&#"'#"&'5&6&>7>7&54$ L�h��я�W.�{+9E=�c��Q�d�FK��1A
0)���������p�J2`[Q?l&������٫�C58.H(Y��'����:d 6?32$64&$ #"'#"&'&4>7>7.546'&'&'# '32$7>54'Y����j`a#",5NK�
����~E�����VZ|�$2$
|��:
$2$�|ZV���:�(t}�����h�fR�88T
h�̲����X(	
&%(H�w��(%&	(X�ZT\�MKG�{x��|�!#"'.7#"'&7>3!2%632u��

�j
�H����{(e9
�1b���U#!"&546;5!32#!"&546;5!32#!"&546;5463!5#"&5463!2+!2328(��(88(`�`(88(��(88(`�`(88(��(88(`L4`(88(@(88(`4L`(8 ��(88(@(8��8(��(88(@(8��8(��(88(@(8�4L�8(@(88(��(8�L4�8����OY"&546226562#"'.#"#"'.'."#"'.'.#"#"&5476$32&"5462��И&4&NdN!>!
1X:Dx++w�w++xD:X1
-�U��
�!�*,*&4&��h��h&&2NN2D&

..J<
$$
<JJ<
$$
<J..

��P���bb&&�7!!"&5!54&#!"3!26!	#!"&=!"&5463!2��`(8��
�@

�
+��8(�@(8��(88(@(8�(��8(� @

@
�m+�U�`(88(�8(@(88(��
�h`���(\"&54&#"&46324."367>767#"&'"&547&547&547.'&54>2�l4

2cK�Eo���oED
)
�
�
�
)
D�g-;</-
?.P^P.?
-/<;-gY�����Y�

.2 L4H|O--O|HeO,����,Oe�q1Ls26%%4.2,44,2.4%%62sL1q�c�qAAq����4#!#"'&547632!2#"&=!"&=463!54632
��
��		@	
`
	��	
��

`?`�
�

@	
	@	
�!	��	
�
�
�
����54&+4&+"#"276#!"5467&5432632�
�
�
	`		_
�������v,Ԝ;G_j�)��``

��
	��		_ԟ����7
�,��>�jL>���54'&";;265326#!"5467&5432632	��		��
�
�
�
�������v,Ԝ;G_j�)���	`		����

`������7
�,��>�jL>�����X`$"&462#!"&54>72654&'547 7"2654'54622654'54&'46.' &6 �&4&&4&�y��y�%:hD:Fp�pG9�F�j� 8P8 LhL 8P8 E;
Dh:%������>�4&&4&}y��yD~�s[4D�d=PppP=d�>hh>@�jY*(88(*Y4LL4Y*(88(*YDw"
A4*[s�~����>�����M4&"27 $=.54632>32#"' 65#"&4632632 65.5462&4&&4�G9��������&
<#5KK5!��!5KK5#<
&ܤ��9Gp�p&4&&4&@>b�u��ោؐ&$KjK�nj��j�KjK$&����j��j�b>Ppp���
%!5!#"&5463!!35463!2+32����@\��\���8(@(8�\@@\������\@\���(88(��\��@��34#"&54"3#!"&5!"&5>547&5462�;U gI@L4�@�Ԗ�@4L2RX='�8P8��'=XR� U;Ig04Lj��jL4*\���(88(�����\��@"4&+32!#!"&+#!"&5463!2�pP@@P���j�j�@�@�\�@\�&��0�p����j��	��� \��\�&��-B+"&5.5462265462265462+"&5#"&5463!2�G9L4�4L9G&4&&4&&4&&4&&4&L4�4L�
��&���=d��4LL4d=�&&�`&&�&&�`&&�&&��4LL4
 ��&�#3CS#!"&5463!2!&'&!"&5!463!2#!"&52#!"&=4632#!"&=463�(8(��(88(�(`�x
��c�`(8���@��@��@�`(��(88(@(8(D��9�8(��`@�@@�@@��/?O_o��������-=%+"&=46;25+"&=46;2+"&=46;2%+"&=46;2+"&=46;2%+"&=46;2%+"&=46;2%+"&=46;2+"&=46;2%+"&=46;2%+"&=46;2%+"&=46;2+"&=46;2%+"&=46;2%+"&=46;2+"&=46;2%+"&=46;2+"&=46;2!!!5463!2#!"&5463!2�
@

@

@

@

@

@
�
@

@

@

@
�
@

@
�
@

@
�
@

@

@

@
�
@

@
�
@

@
�
@

@

@

@
�
@

@
�
@

@

@

@
�
@

@

@

@
�����
@
&�&&&�@

@
�@

@

@

@
�@

@
��@

@
�@

@
�@

@
�@

@
��@

@
�@

@
�@

@
�@

@
��@

@
�@

@
�@

@
��@

@
�@

@

@

@
����

`��&&�&&
��/?O_o�����%+"&=46;25+"&=46;2+"&=46;2%+"&=46;2+"&=46;2%+"&=46;2%+"&=46;2+"&=46;2%+"&=46;2+"&=46;2!!#!"&=!!5463!24&+"#54&+";26=3;26%#!"&5463!463!2!2�
@

@

@

@

@

@
�
@

@

@

@
�
@

@
�
@

@

@

@
�
@

@

@

@
���8(�@(8��
@

@
�
@

@
�
@
&�&&@8(�(8@&�@

@
�@

@

@

@
�@

@
��@

@
�@

@
�@

@
��@

@
�@

@

@

@
��� (88( ���

�@

``

��

``
-�&&& (88(��&@����<c$4&"2!#4&"254&+54&+"#";;26=326+"&5!"&5#"&46346?>;463!2�KjKKj�����KjKKj�������&��Ԗ���Ԗ�&&�@�&�&KjKKjK��
��jKKjK ������.��&j��jj��j&4&�@�@&&���#'1?I54&+54&+"#";;26=326!5!#"&5463!!35463!2+32����������� \��\����8(@(8�\  \����������\@\���(88(��\����:
#32+53##'53535'575#5#5733#5;2+3����@��E&&`�@@��`  ����  `��@@�`&&E%@�`��@ @ @��		 �� � � � �� 		��@ 0
@��!3!57#"&5'7!7!��K5�������@ � � @���5K�@����@@��� �����#3%4&+"!4&+";265!;26#!"&5463!2&�&�&�&&�&&�&�w�@w��w�w���&&��@&&��&&@��&&��@w��w�w�����#354&#!4&+"!"3!;265!26#!"&5463!2&��&�&��&&@&�&@&�w�@w��w�w�@�&@&&��&�&��&&@&:�@w��w�w��-M�3)$"'&4762	"'&4762	s
2

�.

�

2

�w��
2

�.

�

2

�w��
2

�

�

2

�w�w

2

�

�

2

�w�w
M�3)"/&47	&4?62"/&47	&4?62S
�.

2

��w

2

��
�.

2

��w

2

�M
�.

2

��

2

�.

�.

2

��

2

�.M�3S)$"'	"/&4762"'	"/&47623
2

�w�w

2

�

�

2

�w�w

2

�

��
2

��w

2

�

�.v
2

��w

2

�

�.M�3s)"'&4?62	62"'&4?62	623
�.

�.

2

��

2

�.

�.

2

��

2�
�.

�

2

�w�

2v
�.

�

2

�w�

2-Ms3	"'&4762s
�w�

2

�.

�

2�
�w�w

2

�

�

2
MS3"/&47	&4?62S
�.

2

��w

2

�M
�.

2

��

2

�.M
3S"'	"/&47623
2

�w�w

2

�

�m
2

��w

2

�

�.M-3s"'&4?62	623
�.

�.

2

��

2-
�.

�

2

�w�

2���/4&#!"3!26#!#!"&54>5!"&5463!2
��

@
�^B��  &�&  ��B^^B@B^ @

��
M��B^%Q=
&&<P&^B@B^^�+3"&5463!2#3!2654&#!"3#!"&=324+"3�B^^B@B^^B��
@

��
`�^B��B^�p�^B�B^^B�@B^`�@

�
�S`(88(``  ��'$4&"2%4&#!"3!26#!"&5463!2�&4&&4�
��

@
�^B��B^^B@B^f4&&4&��

�@
��B^^B@B^^/$4&"2%4&#!"3!264+";%#!"&5463!2�/B//B�
�


���0L4�4LL44L_B//B/��

�@
M   �4LL44LL���  >& $$ ������(���r���^����a�a��������(���^����a�a����!C#!"&54>;2+";2#!"&54>;2+";2pP��PpQ��h@&&@j�8(�Pp�pP��PpQ��h@&&@j�8(�Pp@��PppP�h��Q&�&�j (8pP��PppP�h��Q&�&�j (8p��!C+"&=46;26=4&+"&5463!2+"&=46;26=4&+"&5463!2Q��h@&&@j�8(�PppP�Pp�Q��h@&&@j�8(�PppP�Pp��@h��Q&�&�j (8pP�PppP�@h��Q&�&�j (8pP�Ppp@�@�	#+3;G$#"&5462"&462"&462#"&462"&462"&462"&462#"&54632K54LKj=KjKKj��KjKKj�L45KKjK�<^�^^��KjKKj��p�pp���\]��]\��jKL45K��jKKjKujKKjK��4LKjKK�^^�^��jKKjK��pp�p�r]��]\����� $$ ���^����a�aQ�^����a�a�����,#"&5465654.+"'&47623 #>bq��b�&4�4&�ɢ5����"		#D7e�uU6�&4&��m����1X".4>2".4>24&#""'&#";2>#".'&547&5472632>3�=T==T=�=T==T=��v)�G�G�+v�@b��R�R��b@�=&����\N����j!>�3l�k����i�k3�hPTDDTPTDDTPTDDTPTDD|x��xX�K--K��|Mp<#	)>dA{��RXtfOT# RNftWQ���,%4&#!"&=4&#!"3!26#!"&5463!2!28(�@(88(��(88(�(8��\�@\��\@\��\���(88(@(88(�@(88�@\��\�\��\ �u�'E4#!"3!2676%!54&#!"&=4&#!">#!"&5463!2!232�5��([��5@(\&��8(��(88(��(8,�9.��+�C��\��\@\� \��6Z]#+��#,k��(88(@(88(��;5E�>:��5E�\�\��\ �\�1. ���$4@"&'&676267>"&462"&462.  > $$ n%��%/���02�
KjKKjKKjKKjKf���ff�������^����a�a�y��y/PccP/�jKKjKKjKKjK���ff���ff�@�^����a�a�����$4@&'."'.7>2"&462"&462.  > $$ n20���/%��7KjKKjKKjKKjKf���ff�������^����a�a3/PccP/y��	jKKjKKjKKjK���ff���ff�@�^����a�a�����+7#!"&463!2"&462"&462.  > $$ �&��&&��&KjKKjKKjKKjKf���ff�������^����a�a�4&&4&�jKKjKKjKKjK���ff���ff�@�^����a�a���#+3C54&+54&+"#";;26=3264&"24&"2$#"'##"3!2@������@KjKKjKKjKKjK����ܒ���,����������gjKKjKKjKKjK�X�Ԁ�,�,��#/;GS_kw�����+"=4;27+"=4;2'+"=4;2#!"=43!2%+"=4;2'+"=4;2+"=4;2'+"=4;2+"=4;2+"=4;2+"=4;2+"=4;2+"=4;54;2!#!"&5463!2�``����``��`��``�``�``�``�``�``�````�p`���K5��5KK5�5Kp``�``�``��``�``�``��``�``��``��``�````��`��������5KK5�5KK@���*V#"'.#"63232+"&5.5462#"/.#"#"'&547>32327676���R?d�^��7ac77,9x�m#@#KjK�#
ڗXF@Fp:f��_ #W��Ip�p&3z�	�h[ 17��q%q#:��:#5KKu�'t#!X:	%�#+=&>7p@���*2Fr56565'5&'.	#"32325#"'+"&5.5462#"/.#"#"'&547>32327676@��ͳ�����8
2.,#,f�k*1x���-!���#@#KjK�#
ڗXF@Fp:f��_ #W��Ip�p&3z�	�e�`��v�o�8�t-�	�:5	��[�*�#:��:#5KKu�'t#!X:	%�#+=&>7p
�3$	"/&47	&4?62#!"&=463!2I�.

2

��w

2

�
-�@�)�.

2

��

2

�.
�-@@-��S�$9%"'&4762		/.7>	"/&47	&4?62i2

�.

�

2

�w�
E��>

u>

��.

2

��w

2

�
�2

�

�

2

�w�w
!��




�h�.

2

��

2

�.
���;#"'&476#"'&7'.'#"'&476�'
�)'�s
"+5+�@ա'
�)'����F*4*E�r4�M:�}}8��GO
�*4*������~�
(-/'	#"'%#"&7&67%632���B�;><���V�?�?V�� -����-C�4
<B�=�cB5���!%��%!�b 7I�))�9I7���	#"'.5!".67632y��(
��#

��##@,(
�)���8!	!++"&=!"&5#"&=46;546;2!76232-S��S����������S�

		��S��S�`���`���		

������K$4&"24&"24&"27"&5467.546267>5.5462 8P88P88P88P�8P88P�4,�C��S,4p�p4,,4p�p4,6d7AL*',4p�pP88P8�P88P8HP88P8`4Y��&+(>EY4PppP4Y4Y4PppP4Y�%*<O4Y4Ppp���
%@\ht�	"'&4762"&5462&#!"&463!2#"'&'7?654'7&#"&'&54?632#!"&463!2"&5462"'&4762��		

	����@U�SxyS���R���#PT����('�#��TU�SxySN���@����		

		�		

		
3��@��xS�SUO#���'(���V^�'(���PVvxS�SU��i��@��		

		
`�<+"&=46;2+"&=467>54&#"#"/.7!2���<'G,')7��N;2]=A+#H

�
�0P��R��H6^;<T%-S�#:/*@Z}


>h���.%#!"&=46;#"&=463!232#!"&=463!2�&�&&@@&&�&@&�&�&&&��&&�&�&�&&��&f�&&�&&b�#!"&=463!2#!"&'&63!2&�&&&'�'%@% �&&�&&�&&&&�k%J%#/&'#!53#5!36?!#!'&54>54&#"'6763235���
����Ź���}���4NZN4;)3.i%Sin�1KXL7觧�*		��#��&		*������@jC?.>!&1'\%Awc8^;:+<!P��%I%#/&'#!53#5!36?!#!'&54>54&#"'6763235���
����Ź���}���4NZN4;)3.i%Pln�EcdJ觧�*		��#��&		*������-@jC?.>!&1'\%AwcBiC:D'P%!	#!"&'&6763!2�P������&:�&?�&:&?����5"K�,)""K,)���h#".#""#"&54>54&#"#"'./"'"5327654.54632326732>32�YO)I-D%n "h.=T#)#lQTv%.%P_�	%	
%�_P%.%vUPl#)#T=@�/#,-91P+R[�Ql#)#|'�'
59%D-I)OY[R+P19-,##,-91P+R[YO)I-D%95%�_P%.%v���'3!2#!"&463!5&=462 =462 &546 ����&&��&&��&4&r&4&�������@����&4&&4&�G݀&&������&&f��������
��sCK&=462	#"'32=462!2#!"&463!5&'"/&4762%4632e*&4&i����76`al�&4&���&&��&&}n�

R

�

R
�z����f�Oego�&&�5�����`3��&&����&4&&4&�
D�

R

�

R
z����v���"!676"'.5463!2@�@w^�Cc�t~55~t�cC&�&@���?J���V��|RIIR|��V&&��#G!!%4&+";26%4&+";26%#!"&546;546;2!546;232�����@@@@�L4��4LL4�^B@B^�^B@B^�4L�� �� ��N�4LL44L`B^^B``B^^B`L����L4&"2%#"'%.5!#!"&54675#"#"'.7>7&5462!467%632&4&&4��@�o�&�&}c ;pG=(
8Ai8^�^.�&4&&4&`��	`f�s��&& j�o/;J!#2
 KAE*,B^^B!`	$� ��-4&"2#"/&7#"/&767%676$!2�8P88P��Qr��	@
U���	@�
{`P�TP88P8�����P`��
�	@U	@�rQ���!6'&+!!!!2Ѥ���
8�������̙�e�;<*��@8 !�G��G�GQII���� %764'	64/&"2 $$ �f��3f4�:�4����^����a�a�f4334f�:4�:�^����a�a����� %64'&"	2 $$ ���:4f3��f4F���^����a�a��4�f4���4f�^����a�a����� 764'&"27	2 $$ �f�:4�:f4334����^����a�a�f4��:4f3���^����a�a����� %64/&"	&"2 $$ -�f4���4f�4����^����a�a��4f��3f4�:w�^����a�a���@��7!!/#35%!'!%j��/d��
�jg2�|�8�����������55���dc ��b���@��!	!%!!7!���FG)��D�H:�&�H����d���S)��U4&"2#"/ $'#"'&5463!2#"&=46;5.546232+>7'&763!2�&4&&4f]w�q�4�qw]	`dC���&&�:F�ԖF:�&&���Cd`�4&&4&����	]����]	`d[}�&�&�"uFj��jFu"�&�&�y}[d�#2#!"&546;4 +"&54&" (88(�@(88( r&@&�Ԗ8(��(88(@(8@����&&j��j�����'3"&462&    .  > $$ �Ԗ������>a��X��,��f���ff�������^����a�a�Ԗ�Ԗ�a>����T�X��,�,�~�ff���ff�@�^����a�a����/+"&=46;2+"&=46;2+"&=46;2�8(�(88(�(88(�(88(�(88(�(88(�(8 �(88(�(88(�(88(�(88(�(88(�(88��/+"&=46;2+"&=46;2+"&=46;2�8(�(88(�(88(�(88(�(88(�(88(�(8 �(88(�(88�(88(�(88�(88(�(88���5E$4&"2%&'&;26%&.$'&;276#!"&5463!2KjKKj�
���
��
�
f���	

�\�
�
�w�@w��w�w��jKKjK"�G

�
ܚ

��f


�
���

	�@w��w�w�����  $64'&327/�a����^�����  ��!  ����^����a�a��J@%��%	6�5��/	64'&"2	"/64&"'&476227<���ij��6��j6��u%k%~8p�8}%%�%k%}8p�8~%<���<�ij4j��4����t%%~8�p8~%k%�%%}8�p8}%k���54&#!"3!26#!"&5463!2&��&&�&�w�@w��w�w�@�&&�&&:�@w��w�w����/#!"&=463!24&#!"3!26#!"&5463!2���@�^B��B^^B@B^��w��w��w@w��@@�2@B^^B��B^^���w��w@w���+#!"'&?63!#"'&762�(��@�	@�(@>@�%����%%��� ���!232"'&76;!"/&76 �
�($��>��(����
		��J ���&%�����$%64/&"'&"2#!"&5463!2�ff4�-�4ff4f�w�@w��w�w��f4f�-�f4����@w��w�w�����/#5#5'&76	764/&"%#!"&5463!2��48`���
#�� ����\�P\��w�@w��w�w���4`8�
��
#�@  ���`\P�\`�@w��w�w�����)4&#!"273276#!"&5463!2&� *���f4�
'�w�@w��w�w�`�&')���4f�*�@w��w�w�����%5	64'&"3276'7>332#!"&5463!2�`��'(wƒa8!
�,j.��(&�w�@w��w�w��`4`*�'?_`ze<��	bw4/�*��@w��w�w�����-.  6 $$ ���� �������(�r���^����a�a���O����(��������_�^����a�a�����
-"'&763!24&#!"3!26#!"&5463!2y��B��(�(�
�@

�
�w�@w��w�w�]#�@�##� �

�@
�@w��w�w�����
-#!"'&7624&#!"3!26#!"&5463!2y(��(@B@u
�@

�
�w�@w��w�w��###��@���

�@
�@w��w�w�����
-'&54764&#!"3!26#!"&5463!2@�@####���@��w�@w��w�w��B��(�(������@�@w��w�w����`%#"'#"&=46;&7#"&=46;632/.#"!2#!!2#!32>?6�#
!"'�?_

BCbCa�f\	+
~�2�	
��
	�}0�$

��
q
90r�
�

�pr%Dpu���?#!"&=46;#"&=46;54632'.#"!2#!!546;2��D
a__����	g	

*`-Uh1

��������

�߫�}
	$^L��
���
4��b+"&=.'&?676032654.'.5467546;2'.#"�ǟ�
B{PDg	q�%%Q{%P46'-N/B).ĝ
�9kC<Q
7>W*_x*%K./58`7E%_���
�	,-3�
cVO2")#,)9;J)���
�"!*�
#VD,'#/&>AX��>++"''&=46;267!"&=463!&+"&=463!2+32��Ԫ�$
�	��	
p���U�9ӑ
@�/�*f�����o�	

VRfq
�f=S��E!#"&5!"&=463!5!"&=46;&76;2>76;232#!!2#![�
��

 ��

��
�
�%
)��
	���

��"

��Jg
Uh
B�W&WX���
hU
g��
�84&#!!2#!!2#!+"&=#"&=46;5#"&=46;463!2�j��@jo�����
������g�|�@��~�v����v�
u�n#467!!3'##467!++"'#+"&'#"&=46;'#"&=46;&76;2!6;2!6;232+32Q�Kt#�� ��#F�N�Qo!��"�դ��ѧ����!�mY

�Zga~bm]�

[o�"�U+��������,����� @��h��
h@�@X
��h��h
��@�8���3H\#5"'#"&+73273&#&+5275363534."#22>4.#2>��ut
3NtR�P*�H�o2

Lo�@!�R(�Ozh=�,G<X2O:&D1A.1G$<2I+A;"B,;&$��L��GlF/�����3�D�����;a��$8$��".�!3!
��.�3!#!"&5463!���8( 8(��(88( ��h (8��(88(@(8�(8H!!#!"&5463!54&#!"3!2654&#!"3!2654&#!"3!26��(D 8(��(88( 8��@��@��@�$����(88(@(8��(8� @@@@@@"�}
$BR3/&5##"'&76;46;232!56?5"#+#5!76;5!53'#3!533��H��
��

�����D��q		�x7��	���K/�/K��F��h�/"���		@`����Z		s�Y��w�jj��jj��j"�}
$4R%3/&5##"'&76;46;232!53'#3!533!56?5"#+#5!76;5��H��
��

��������K/�/K��F����q		�x7��	�h�/"���		@`����jj��jj��j�Z		s�Y��
w"�)9IY%#"'&76;46;232#!"&=463!2#!"&=463!2#!"&=463!2#!"&=463!2�
��

����� ��@������@���`��		@`�����������"�)9IY#!"&=463!2%#"'&76;46;232#!"&=463!2#!"&=463!2#!"&=463!2��� 
��

�������@��������@ ��r��		@`��r������"��
$CV%4&#"326#"'&76;46;232%#"'&'73267##"&54632!5346=#'73BX;4>ID2F��
��

������8PuE>.'%&TeQ,j��m{��+�>R�{�?jJrL6V��		@`��7>wmR1q
uW�ei��/rr�
:V��r"��
$7V4&#"326#"'&76;46;232!5346=#'73#"'&'73267##"&54632BX;4>ID2F��
��

������+�>R�{�8PuE>.'%&TeQ,j��m{��?jJrL6����		@`���rr�
:V��r3>wmR1q
uW�ei����@�\%4&#"326#!"&5463!2+".'&'.5467>767>7>7632!2&%%&�&��&& &�7.'	:@�$LB�WM{#&$h1D!		.I/!	Nr�&&%%��&&�&&V?, L=8=9%pEL+%�%r@W!<%*',<2(<&L,"r�@\#"&546324&#!"3!26%#!#"'.'.'&'.'.546767>;&%%&�&��&& &i7qN��	!/I.		!D1h$&#{MW�BL$�@:	'.�&&%%���&&��&&�=XNr%(M&<(2<,'*%<!W@r%�%+LEp%9=8=L ���	+=\d����%54#"327354"%###5#5#"'&53327#"'#3632#"'&=4762#3274645"=424'.'&!  7>76#'#3%54'&#"32763##"'&5#327#!"&5463!2��BB��PJN�C'%!	B?)#!CC $)�54f�"��@@
B+����,A

A+�&�+A
�
ZK35N #J!1331�CCC $)��w�@w��w�w��2��"33�F�Y�F~��(-%"��o�4*)$�(*�	(&;�;&&9LA38�33�4��S,;;,W��T+<<+T;(��\g7�x�:&&:�:&&<r����%-�@w��w�w����	+=[c}���#"'632#542%35!33!3##"'&5#327%54'&#"5#353276%5##"=354'&#"32767654"2 '.'&547>76 3#&'&'3#"'&=47632%#5#"'&53327�''RZZ�:k��id YYY.06�	62+YY-06	R[!.�'CD''EH$��VV�X:���:Y
X;��:Y
�fyd/%jG�&DC&&CD&O[52.
[$�C-D..D�^^���* l�y1%=^�I86�i077S
3
$EWgO%33%O�O%35	��EE�F�W�t;PP;p��t;PP;p�q��J�gT��F�Q%33&P�P%33%R�
7>%3���!+}��{�'+"&72'&76;2+"'66;2U
�&�
��	�(���P

�*��'�e�J."�-d�Z��-n �-���'74'&+";27&+";276'56#!"&5463!2�~�}�		�7��e �	���۩w�@w��w�w��"���
$Q#�'�!#
����@w��w�w��
�I-22#!&$/.'.'.'=&7>?>36����9II ! '	$ !�����01$$%A'	$ ! ����g	
\7@�)(���7Y
	
 \7@�)(���7Y
@����	'5557	���,���VW�QV���.R���W��=���?��l��%l`��������~����0��!#!#%777	5!	������R!!�XC�C��fff�݀�#�� `��,��������{��{{�`��������Og4&"2 &6 $"&462$"&62>7>7>&46.'.'. '.'&7>76 �Ԗ�� ���HR6L66L�G�HyU2LL2UyH��HyU2LL2UyHn
��X�6X��

��X�X��
Ԗ�Ԗ�����H�6L66L6�L2UyH��HyU2LL2UyH��HyU2L�n�6X��

��X�X��

�����2#!"&54634&"2$4&"2�w��w�@w��w�|�||��|�||���w�@w��w�w����||�||�||�|���	!3	37! $$ �n6^�5�5^h
����^����a�a������M�1�^����a�a���P��
*Cg'.676.7>.'$7>&'.'&'? 7%&'.'.'>767$/u5'&$I7o�b?K�\[z�H,1���+.@\7<��?5\V
,$V��g.GR@ �7��U,+!�����
	#	"8$}�{)�<�?L RR;kr,yE[��z#	/1
"#	#�eCI0/"5#`�	��"8���4~&p)4	2�{�H-.%W.L>���':Yi4&67&'&676'.'>7646&' '7>6'&'&7>7#!"&5463!2PR$++'TJX�j7-F��C',��,&C
."��!$28��h�/���"�	+p��^&+3$
i��0(�w�@w��w�w��+.i6=Bn\C1XR:#"�'jj�8Q.cAj�57!?"0D��$4"P[
&2�@w��w�w��D��"%.5#5>7>;!!76�P�Yh�pN!�HrD0�M��
 C0N��#>8\xx: �W]oW-�X���45���/%'#.5!5!#"37>#!"&5463!2p>,;$4
��5eD�+W�cE���w�@w��w�w�K�()��F
,VhV��^9tjA0/�@w��w�w���@�#"'&76;46;23�
��


��
	���&��

��� ���++"&5#"&7632�	���
^


c
� �&�

��@�#!'&5476!2� &��

����
^


b	���'&=!"&=463!546�
��� �&�
�
��	���
��
��q&8#"'&#"#"5476323276326767q'T��1[VA=QQ3���qq�Hih"-bfGw^44O#A���?66%CKJ�A}}�  !"�䒐""A$@C3^q|�z=KK?6�lk)���%!%!��V��V��u��u�u^-�m5�w��}�n�����~7M[264&"264&"2"&546+"&=##"&5'#"&5!467'&766276#"&54632�  �  ��*<;V<<O@-K<V<�<+*<J.@�k��c�lG
H_�_H
�<+*<<*+<    �<*�R+<<+�*<�f.@�+<<+��+<<+�@.��7�uu�7�
�**�
���R+<<+�+;;	��"%3I�#5472&6&67><&4'>&4.'.'.'.'.'&6&'.'.6767645.'#.'6&'&7676"&'&627>76'&7>'&'&'&'&766'.7>7676>76&6763>6&'&232.'.6'4."7674.'&#>7626'.'&#"'.'.'&676.67>7>5'&7>.'&'&'&7>7>767&'&67636'.'&67>7>.'.67�	\
��
	U7	
J#!W!'	

"';%

k	)"	
	'


/7* 		I	,6
*&"!

O6*
O $.(�	*.'

.x�,	$CN��	
�		*	�
6
		
7%&&_f&
",VL,G$3�@@$+
"


V5 3"	
""�#dA++
y0D-%&n4P'A5j$9E#"c7Y
6"	&
8Z(;=I50' !!e
�R
��
"+0n?�t(-z.'<>R$A"24B@(	~	9B9,	*$		
		<>	?0D�9f?Ae �	.(;1.D	4H&.Ct iY% *	�
7��


��
J	 <
W0%$	
""I!
*D	 ,4A'�4J"	.0f6D�4p�Z{+*�D_wqi;�W1G("%%T7F}AG!1#% JG3��� '.2>Vb%&#'32&'!>?>'&' &>"6&#">&'>26 $$ *b6�~�#��= ���XP2��{&%gx|�� .���W)o���O��LO�sEzG<��	CK}E	$MFD<5+
z���^����a�a$�MW�M��1>]|�YY�^D
�եA��<��K�m����E6<�"�@9I5*�^����a�a�����>^4./.543232654.#"#".#"32>#"'#"$&547&54632632�':XM1h*�+D($,/9p�`D�oC&JV<�Z PA3Q1*223�I�oBkែhMI����oPែhMI��oP�2S6,M!"@-7Y.?oI=[<%$('3 -- <-\�%Fu���Po��IMh���Po����IMh,���#?D76&#!"7>;267676&#!"&=463!267
#!"'&5463!26�%�8#!�
��&&Z"�M>2!��
	�^I7LRx_@�>MN�""��`�=&&*%�I�}��,
	�	L�7_jj��9����/%4&#!"3!264&#!"3!26#!"&5463!2�� ��� ��&��&&�&��������&&�&&��19#"'#++"&5#"&5475##"&54763!2"&4628(3�-�	&�B.�.B�&	�-�3(8Ig�gI�`������(8+U��e&��.BB.&����+8(�kk��`�������%-"&5#"&5#"&5#"&5463!2"&4628P8@B\B@B\B@8P8pP�Pp�����@�`(88(`�p.BB.�0.BB.���(88(�Pppͺ�������!%>&'&#"'.$ $$ ^/(V=$<;$=V).X���^����a�a��J`"(("`J��^����a�a��,���I4."2>%'%"/'&5%&'&?'&767%476762%6�[���՛[[���՛o��
�ܴ
 
���
��	��	$
$�	"	�$
$	��	�՛[[���՛[[�5`��

^�

�^

2`��
`2

^��^

��`
�����1%#"$54732$%#"$&546$763276�68��ʴh�f�킐&^�����zs��,!V[���vn)�	�6���<��ׂ�f{���z����}))N�s���3(@����+4&#!"3!2#!"&5463!2#!"&5463!2@&�&&f&��&&�&@&�&&&�4&&4&�@&&�&&��&&&& ��`�BH+"/##"./#"'.?&5#"&46;'&462!76232!46 `&�C�6�@Bb0�3eI;��:�&&�&4�L�4&���F���
�Z4&�w�4�) ���''
�5�r�&4&&�4&��&4��������}G�#&/.#./.'&4?63%27>'./&'&7676>767>?>%6}�)(."�2*&�@P9A
#sG�q]
#lh�<*46+(
	
<
5�R5"*>%</
 '2�@� 53*9*,�Z&VE/#E+)AC
(���	2k<X1$:hI(B
"	!:4Y&>"/	+[>hy
	���K
!/Ui%6&'&676&'&6'.7>%.$76$% $.5476$6?62'.76&&'&676%.76&'..676�#"NDQt	
�-�okQ//�jo_	������	���%&J�������Ղ���YJA-��.--
9\DtT+X?*<UW3'	26$>>�W0{�"F!"E �

^f`$"�_]\�<`�F�`�F�D��h>Cw�ls���J@�;=?s
:i_^{8+?`
)
O`�s2R�DE58/K��r	#"'>7&4$&5m��ī��"#���̵�$5���$�"^^W����=���ac��E�*���c������zk./"&4636$7.'>67.'>65.67>&/>z X^hc^O<q����+f$H^XbVS!rȇr?5GD_RV@-FbV=3!G84&3Im<$/6X_�D'=NUTL;2KPwt��Pt= 

�&ռ
,J~S/#NL,��8JsF);??1zIEJpq�DIPZXSF6\?5:NR=��;.&1��+!"&=!!%!5463!2�sQ9����Qs�*�*�*sQNQsBUw��
wUBF��H���CCTww���%1#"&=!"&=463!54632.  6 $$ �	��	
��

`?��������(�r���^����a�a�	��	
�
�
�
���(��������_�^����a�a�����%1#!#"'&47632!2.  6 $$ �
����		@	
`
��������(�r���^����a�a�
�
?		@	
���(��������_�^����a�a�����/#"'&476324&#!"3!26#!"&5463!2&�@�&
�@

�
�w�@w��w�w����&@B@&���

�@
�@w��w�w�����"&462  >& $$ �Ԗ��*�����(���r���^����a�a�Ԗ�Ԗ �������(���^����a�a���]�6#"$54732>%#"'!"&'&7>32'!!!2�f:�л����Ѫz��~�u:�
(�(%`V6B^hD%��i�(�]̳ޛ	��*>�6߅�����r�#�!3?^BEa�߀�#�9���#36'&632#"'&'&63232#!"&5463!2
��Q,&U�#+'
 �;il4L92<D`����w�@w��w�w�����`9ܩ6ɽ]`C4�7�7�&�@w��w�w����D+"&5#"'&=4?5#"'&=4?546;2%6%66546;2�������
	
��
	
��w�ww�w�������cB
�G]B
�G��t�y]t�y�
���#3C#!+"&5!"&=463!46;2!24&#!"3!26#!"&5463!2���@��`@`�^B��B^^B@B^��w��w��w@w��@��`@`���2@B^^B��B^^���w��w@w�����'/?P+5#"&547.467&546;532!764'!"+32#323!&ln��@
:MM:
@��nY*�Yz--zY�*55QDD�U���9p��Y-`]��]`.X /2I$�	t�@@/!!/@@3,$,3�$p$0�0��&*0��&���&��
!P@���RV2#"&/#"&/#"&546?#"&546?'&54632%'&54632763276%�>S]�8T;/M7��7T</L7�=Q7,�i�<R7,�5T</L666U;/M5�<U<,�i���6i���Q=a!;�;V6-�j�;V6-�5	P=/L596Q</L5�<U6-�i�;V7,�7O;-I6��8��i;k���)I2#!"&5463#9"'.'.'3!264&#!"2>7%>�w��w�@w��w�!"�5bBBb/�/*
8(@(87)��(8=%/�'#?��w�@w��w�w����#~$EE y &�L(88e):8(%O r		

		�O�?GQaq47&67>&&'&67>&"&#6$32#"#"'654  $&6 $6&$ Co��L��.*�KPx���.*� 
iSƓi
7J?��~�pi{_Я�;��lL�������UZ=刈�����刈�����_t'<Z
�:!
	���@!
��j`Q7$k�y, R����f��k*4�������LlL��=Z=刈��������&$&546$7%7&'5>�����]���5��%��w�����������&��P�?�zrSF�!|��&0	##!"&5#5!3!3!3!32!546;2!5463���)�
)����;)��);;)��)���&&������&@@&�&��&��	�
6 $&727"'%+"'&7&54767%&4762������֬>4P���t+8?::
	�	
::AW��``���EvEEvE<�.���"�e$IE&�O�&EI&�{h.`��m���"&#"&'327>73271[
>+)@
(���]:2,C?��*%�Zx/658:@#N
�C�=�E�(�o��E=��W'c:������#!#"$&6$3 &#"32>7!����ڝ���yy��,��{��ۀ�ہW�^F!�L�C=���y�:�y��w���߂0H\R%�"N^ '&76232762$"&5462"&46274&"&'264&#"'&&#"32$54'>$ $&6$ G>��>0yx1��4J55J�5J44J5�Fd$��?�4J55%6�E��#42F%��$f�������LlL�q>>11�J44%&4Z%44J54R1F$Z-%45J521��Z%F1#:��ʎ 9�������LlL�����#Qa"'&7622762%"&5462"&546274&#"&'73264&#"'&&#"32654'>#!"&5463!2�

5�5

*�*��.>.-@-R.>.-@-�<+*q�6�- -- 0�<�o,+< ��3�w�@w��w�w��

55

**�.. -- .. --G*<N�' ,-@-+*��M <*2
z��z
1�@w��w�w�����0<754&""&=#326546325##"&='26 $$ bZt�t&�sRQs��Z<t�sQ���^����a�a�>OpoO��xzRrqP6�z~{{Prr��^����a�a�����]054&"#"&5!2654632!#"&57265&<T<����H<T<������H������<T<8v*<<*������
��+;;+l���:�������=:��*;;*���
%!!"!!26#!"&5463!2��@� ]���]�@�w�@w��w�w�����]� �@��@w��w�w���	
%)3!!#335!!5!5!%#!!5!5!%#H��H{����R��H��H{���G��G{�)���q���G����R�R�q���R�R�q�����	#0@#"'632#"'632&#"7532&#"#7532#!"&5463!2L5+*5��L5+*5~�}7W|�3B}��}JC��7=}�w�@w��w�w�D�ZQ�[�1�N:_��)�i�$��)���@w��w�w��
)�	�����������6.#&#"'&547>'&#".'&'#"&5467%&4>7>3263232654.547'654'63277.'.*#">7?67>?>32#"'7'>3'>3235?�K�cgA+![<E0y�$,<'.cI
	,#� '!;7$�=ep���	��/�/7/
D+R>,7*
2(-#=
	/~[(D?G  �|,)"#+)O��8,+�'�6	y{=@��0mI�#938OA�E`
-�
)y_/FwaH8j7=7?%����a	%%!?)L
J
9=5]~�pj

 %(��1$",I 
$@((�
+!.S		-L__$'-9L	5V��+	
	6�T+6.8-$�0��+
t�|S1��6]�&#"'&#"67>76'&'&#"67>32764.#"#.32>67>7 $&54>7>7>7�rJ�@"kb2)W+,5/1		#

Z
-!��$IOXp7s�LCF9�vz NAG#/ 5|����Հ';RKR/J#=$,�9,�+$UCS7'2"1
 !�/
,

/--ST(::(�ep4AM@=I>".)x��ls��Y�|qK@
%(YQ�&N
EHv~����<Zx'#"&5467&6?2?'&"/.7.546326#"&'&/7264/7'764&"'?>>32.��A�UpIUxYE.A�%%%h%����%hJ%�����D,FZxULsT�gxUJrV�D�%hJ%�����@/LefL.C�%Jh%�����C�VsNUxϠ�@.FZyUHpV�A�%h&%%���%Ji%�����C�WpIUybJ/��Uy^G,D�%Jh%�����@�UsMtU�C�%hJ%�����C-Kfy�EX[_gj��&/&'.''67>7>7&'&'&'>76763>7>#&'&'767672'%'7'+"&'&546323267>7%#"'4'6767672,32�,+DCCQL�Df'
%:/d
B	4@}
�&!0$�?�����J�f�d�f-�.=���6(��:!TO�?
!I�G_�U%
����.
k*.=;�	5gN_X��	"
##
292Q41�
��*����6���nA;�|�
�BSN.	%1$����
6	$��nk�^�'7GWgw�����2+"&5463#!"&5463!254&+";2654&+";2654&+";2654&+";2654&+";2654&+";2654&+";2654&+";2654&+";26#"&=! B^^B�B^^B�:F�j��B^8(�(`�(� ������������������`�(8���^B��B^^B@B^�"vE�j�^B(8(�`(�����������������������8(����/?O_o��������/?2#!"&5463;26=4&+";26=4&+";26=4&+";26=4&+"54&+";2654&+";2654&+";2654&+";2654&+";2654&#!"3!2654&+";2654&+";2654&+";2654&+";2654&+";2654&+";2654&+";2654&+";2654&+";26@&&�&&�@@@@@@@@�@@@@@@@@@@��@@@@@@@@@@@@@@@@@@@&��&&�&��@@��@@��@@��@@��@@@@@@@@@@���@@@@@@@@�@@@@@@@@@@@��`'	"&5#"&5&4762!762$"&462���B\B@B\B��O�p�P����������.BB.���.BB.8$P��O広�������3CQ#".54>32#".546322#"&#"#"54>%".54>32%2#"&54>&X=L|<&X=M{<��TML�FTML�F�v�"?B+D�?B�J�p��H=X&<{M=X&<|dMTF�LMTF�(<kNs�I<kNs���Pvo�JPwo�/��s.=ZY�VӮv�Nk<J�sNk<I�shwPJ�ovPJ�o@��+"&7.54>2�r_-$�$-_rU���U��%��&&5%ő������'-
"'.546762����@��F�F�$�@B�@$.&�,�&.]]|�q����#<���<#(B�B��B%'-%'-'%'-"'%&'"'%.5467%467%62����@��l�l����@��l�l,���@��G�G�&!�@@�@�@@�@!&+#�+#�6�#+�$*`�:�p������:�p���x�
�p����=�`$>����>$�&@��&@�

�@&�p�@��	&.A!!"!&2673!"5432!%!254#!5!2654#!%!2#!8���Zp��?v�d���Ί�e�ns�6(���N[�����RW�u?�rt1Sr�F���|��iZ��@7�����މoy2���IM��C~[�R �yK{T:���%,AGK2#!"&5463!!2654'654.#532#532"&5!654&#"327#2#>!!�w��w�@w��w��~u��k'JTM��wa��|
DH��������>�I1q�Fj?����w�@w��w�w�����sq�*4p9O*�¸Z^���qh LE
�������"(nz8B
M���'?"&4624&#"'.'324&#"3267##"&/632632.�ʏ����hhMA�LR vGhг~��~������K„y���O^
��ʏ�ʏ��В*�LM@!<I�~��~����������t\��0�������CM4&"2#"&'676&/632#!"&=3267%2654&#"&#"%463!2"&4632�r�qq��tR8^4.<x3=RR��w�@w���_h�
Y��Ӗ���	K>�שw�w���ȍ�de�)�qrOPq�Ȧs:03=<x!m�@w��w�E\x�g�ӕ��є��%w�w����d��Ȏ��V��
-<K\%.'.>7'.?67'67%'>&%'7%7./6D�\$>	"N,��?a0�#O���1G�����9�'/���P(1#00��
($=!F"�9|��]�"RE<�6'o��9%8J$\:��\H�iTe<?}V��#�oj��?���d,6���%N#"
Hl��S��VY�]C

=�@�C4&"2!.#!"4&"2+"&=!"&=#"&546;>3!232�^�^^���Y	�	^�^^��`p�p�p�p`�]i�bb�i]�~�^^�^�e��^^�^���PppP��PppP��]��^^�]��3;EM2+"&=!"&=#"&546;>;5463!232264&"!.#!"264&" ]�`p�p�p�p`�]i�b���b�i���^^�^d�Y	�	!�^^�^��]��@PppP@@PppP@�]��^��^�]� ^�^^��e��^�^^� ��3$#!#!"&5467!"&47#"&47#"&4762++�&�2
$��$
�2&��&��&�4�&��&��Z4&�&##&�&4�&4�&4���4&�m4&�m���+DP4'&#"32763232674'&!"32763 3264'&$#"32763232> $$ g����* �o�`#�ə�0#z��#l(~���̠)���-g+����^����a�aF s"	+g�(�*
3#!|
#/IK/%*%D=)[�^����a�a����	!!!'!!77!���,���/���,�-���a��/G��	t%/;<HTbcq������%7.#"32%74'&"32765"/7627#"5'7432#"/7632#"5'7432#"&5'74632	#"/6327#"/6327#"/46329"&/462"&/>21"&/567632#!.547632632
	
	*


			��X		�

^

`		���

^b
	��c�
	f�u��
U`�59u���

���

4�J���
	
l�~		~�	F��	
��	�2�����

�
�	��	�m����|O�,��� ����	

���
��������

ru|	��u�
�
"�����
)9 $7 $&= $7 $&= $7 $&=  $&=46��w���`���w���w���`���w���w���`���w��b����`����VT�EvEEvE�T��VT�EvEEvE�T*VT�EvEEvE�T*EvE�EvEEvE�Ev�#^ct�#!"&5463!2!&'&!"&5!632#"&'#"/&'&7>766767.76;267674767&5&5&'67.'&'&#3274�(8(��(88(�(`�x
��c�`(8��!3;:�A0�?ݫ�Y

	^U	47D$

	7�4U3I�
|��L38wtL0�`(��(88(@(8(D��9�8(��Q1&(!;��
(g-	Up�~R�2(/{E���(Xz*Z%(�i6CmVo8�#T#!"&5463!2!&'&!"&5!3367653335!3#4.5.'##'&'35�(8(��(88(�(`�x
��c�`(8�iF������F��Zc�r�cZ�`(��(88(@(8(D��9�8(���k�k�"	��kk�J	 	!��	�k�#S#!"&5463!2!&'&!"&5!%!5#7>;#!5#35!3#&'&/35!3�(8(��(88(�(`�x
��c�`(8�-Kg
kL#D��C��JgjL��D���`(��(88(@(8(D��9�8(���jj�	�jjkk��kk����#8C#!"&5463!2!&'&!"&5!%!5#5327>54&'&#!3#32�(8(��(88(�(`�x
��c�`(8� G]�L*COJ?0R��\wx48>�`(��(88(@(8(D��9�8(���jj��RQxk��!RY�#*2#!"&5463!2!&'&!"&5!!57"&462�(8(��(88(�(`�x
��c�`(8�������P�pp�p�`(��(88(@(8(D��9�8(����������p�pp�	�#*7JR5#5#5#5##!"&5463!2!&'&!"&5##5!"&54765332264&"�����<(8(��(88(�(`�x
��c�`(8����k�ޑc�O"�jKKjK�������������`(��(88(@(8(D��9�8(������SmmS?M���&4&&4�#9L^#!"&5463!2!&'&!"&5!#"/#"&=46;76276'.'2764'.�(8(��(88(�(`�x
��c�`(8���������6dd�WW6&44�`(��(88(@(8(D��9�8(��.��	����G���5{��{5�]�]$59�95�#3C#!"&5463!2!&'&!"&5!2#!"&5463#"'5632�(8(��(88(�(`�x
��c�`(8��4LL4��4LL4l	��		�`(��(88(@(8(D��9�8(���L4��4LL4�4L��	
Z
	�#7K[#!"&5463!2!&'&!"&5!>&'&7!/.?'&6?6.7>'�(8(��(88(�(`�x
��c�`(8�`3��3��3��3�v
�
?
�
�`(��(88(@(8(D��9�8(���&��&-��&��&�
?


��
'���6#'.
'!67&54632".'654&#"32�eaAɢ/PRAids`WXyzO�v��д��:C;A:25@Ң>�����-05r��n������`��H(�����' gQWZc[���
-%7'	%'-'%	%"'&54762�[������3[��M���N�����
��3"��,��""3,3"o�ng�$������߆���]�g�n��$����+��)��

")")"

��x#W#"&#!+.5467&546326$32327.'#"&5463232654&#"632#".#"o���G��n\�u_MK'����̨|�g?CM7MM5,QAAIQqAy��{�b]BL4PJ9+OABIRo?z��.�z��
�n�6'+s�:�������z�cIAC65D*DRRD*�wy�al@B39E*DRRD*��'/7  $&6$ 6277&47' 7'"' 6& 6'�lL������������R�R����ZB|��R�R��>����d�ZZ��������LlL�Z����R�R«����Z��&�>���«|��R� � ��! $&54$7 >54'5��������P���f���f����P�����牉�@��s��-����ff���`-����c6721>?>././76&/7>?>?>./&31#"$&��(@8!IH2hM>'

)-*
h'N'��!'Og,R"/!YQG<I *1)

(-O1D+0�n�������z�3fw���G2'3�rd1!sF0o ��.q"!%GsH8��@-!5|w|pgS=
"B2PJfh�G���d�R	�(P]ly��&$'77&7567'676'"'7&'&'7&47'6767'627''6$'67'654'7&'7'&'&'7&'5&$  $6 $&6$ j��j:,A��A��S9bb9R#:j���8AܔA,z��C�9Z04\40Z9�C��!B�;X0,l,0X;�B�*A8ܔA&#9j`b9S$#R99#&A��8A�`
������䇇�<Z<䳎������LlL�fBϬ"129�,V<4!���!88dpm��"��BV,�92[P*V*P\M�C�

�C�M\P*V*P]L�D�

�D�L&BV*�8*8!����f�!4<gmpd88!&!8*8�*VB�Z<䇇�����䇇��������LlL�����9Eis�%#"5432#"543275#&#"3254&'.547>54'63&547#5#"=3235#47##6323#324&"26%#!"&5463!2F]kbf$JMM$&�N92<Vv;,&)q(DL+�`N11MZ
%G���&54	#	i�<$8&@��0H12F1d�w�@w��w�w��B?@�UTZ3%}rV2hD5%f-C#�C@,nO	�a7�.0�x2	yR�uR/u�%6;&�$76%$56S�@w��w�w��D��<Hlw%4#"324&#"32!".5475&5475.546322#654'3%#".535"&#"5354'33"&+32#"&54632S����;<;||w
$+�|('-GVVG-��EznA�C?H_��`Rb���]Gg>Z2&`��9UW=��N9:PO;:dhe\=R����
+)�&')-S9��9kJ�<)Um�Q��/��-Ya^"![��Y��'(<`X;_�L6#)|����tWW:;X���	#'#3#!"&5463!2)
p�*�xeשw�@w��w�w���0,\8�����@w��w�w��9��I#"'#"&'&>767&5462#"'.7>32>4."&'&54>32JrO<3>5�-&FD(=Gq���@C$39a��LL��²�L4

&)
@]��v�
�q#CO���!~󿵂<ZK#*Pq.���%
L��²�LL��arh({�w؜\���i&5467&6747632#".'&##".'&'.'#".5467>72765'./"#"&'&5
�}����1R<2"7MW'$	;IS7@�5sQ@@)�R#DvTA;
0x
I)�!:>�+<B76:NFcP:SC4r�l+r �E%.*a-(6%('�>)C	6.�>�
!-I[4&#"324&#"3264&#"324&#"326&#"#".'7$4$32'#"$&6$32D2)+BB+)3(--(3�1)+BB+)�4'--'4��'���#!0>R	�H���MŰ9�o�u7ǖD��䣣���
R23('3�_,--,�R23('3�_,--,�����NJ
������?u�W�m%������#"'%#"'.5	%&'&7632�!�
�;�
	`��u%"��(����!]#�c�)(�	��� #"'%#"'.5%&'&76	�!�
���	�(%#�#���fP_�"�(���!�)'��+�ʼn�����4I#"$'&6?6332>4.#"#!"&54766$32#!"&=46;46;2z�䜬��m�
I�wh��QQ��hb�F�*�@&('�k�������@����z��
�	
_hQ��н�QGB�'(&�*�eozΘ�@@`���  >. $$ ����ff���ff�����^����a�af���ff�����^����a�a��>�����"&#"#"&54>7654'&#!"#"&#"#"&54>765'46.'."&54632326323!27654'.5463232632�,�-,�,",:!
%�]&
%@2(/�.+�*)6!	<.$.�.*�*"+8#
�
#Q3,�,+�+#-:#"</$�)

w�

���
,*

x9-.2"'
,,
���@�&,,
��Qw
,����,#"+"&5#+"&5&'&'&547676)2�%2$l$�#l#�b~B@XXyo2�$CI@5��$$�>$$�/:yu��xv)%$	��/?CG%!5%2#!"&5463!5#5!52#!"&54632#!"&5463#5!5`���&&�&&������ �&&�&&�&&�&&@������&�&&&���������&�&&&�&�&&&��������%2 &547%#"&632%&546 #"'6���������\~����~\h�
���~\��h\�������V�
�V�������V��V���%5$4&#"'64'73264&"&#"3272#!"&5463!2}XT=��=TX}}�~�>SX}}XS>�~�}�w�@w��w�w���~:xx:~�}}Xx9}�}9xX}�@w��w�w���/>LXds.327>76 $&6$32762#"/&4762"/&47626+"&46;2'"&=462#"'&4?62E0l�,

*"�T�.�D@Yo������oo����@5D�

[		

Z
�Z

		[	 ``��[



Z

	�2
,�l0
(T�"�.�D5@������oo��oY@D,

Z

		[	�		[		

Z
��``EZ

		[		
�5%!  $&66='&'%77'727'%am��lL�������m�f�?���5���5>�f�F�tu�ut�F������������LlL�H�Y�C�L|��|L����Y�˄(��E''E*(�/?IYiy����%+"&=46;2+"&=46;2+"&=46;2+"&=46;2%"&=!#+"&=46;2+"&=46;2+"&=46;2+"&=46;2!54!54>$ +"&=46;2#!"&=������@�������&&������@��������������3P��
>��P3��&��&��r���r��r���&��&���r���r��r���
he

4LKM:%%:MKL4�W��T�&&��%/9##!"&563!!#!"&5"&5!2!5463!2!5463!2�&&�&��&�&&���� ��� ��&��&&i�@����&&@&7�����'#5&?6262�%%�o����;����j|/����&jJ%�p��&j;&i&�p���/|���j�ţ���%Jk%�o��%��	:g"&5462#"&546324&#!"263662>7'&75.''&'&&'&6463!276i���~ZYYZ~�@O��S;+[G[3YUD#o?D&G3I=J�y�TkBuhNV!WOhuAiS�y*'^C�C^'*SwwSTvvTSwwSTvv���WID\�_"[�g��q# /3qF��r2/ $r�g�%4
�HffH�J4d���#!#7!!7!#5!������VF��N����rmN�N��N����������N���!Y���+?Ne%&'&'&7>727>'#&'&'&>2'&'&676'&76$7&'&767>76'6�#
<�;1�1x��#*#
�G,T9�3%�/#0v�N�Z;:8��)M:(	&���C.J}2	%0����
 	^*
J�F	
&�7'X"2L�DM"	+��6�
M2+'BQfXV#+]
#���'
L/(e�B�9
�#,8!!!5!!5!5!5!5#26%!!26#!"&5!5���������������&4&���&�pP��Pp������������������@��@&&@��!&�@PppP@�*
��	9Q$"&54627"."#"&547>2"'.#"#"&5476$ "'&$ #"&5476$ (�}R}hL�K�
N���N
����U�d:�
�x�x�
�����8���
��
�
� ,, |2222�
MXXM

�ic,>>,�
����
�	����	�
��̺

�
��'/7?KSck{4&"2$4&"24&"24&"24&"24&"24&"24&"24&"264&"24&#!"3!264&"2#!"&5463!2�KjKKj�KjKKj��KjKKjKKjKKj��KjKKj��KjKKjKKjKKj��KjKKjKLhLLhL��KjKKj�&�&&&KjKKj�L4��4LL4�4L5jKKjKKjKKjK�jKKjK��jKKjK�jKKjK�jKKjK��jKKjK�jKKjK���4LL4��4LL�jKKjK�&&�&&��jKKjK�4LL44LL	��'E!#"+"&7>76;7676767>'#'"#!"&7>3!2�W�",&7'�	#$	&��g�pf5O�.P�q�ZZdS���-V"0kqzTx�D!��!8�p�8%'i_�F?;�k��R(`��
!�&)�'�
(2!&6367!	&63!2�!
`�B��1LO�(���+#�=)�heC��Qg#s`���f�4#����6�������q�'���X�|0-�g��	�>IY#6?>7&#!%'.'33#&#"#"/3674'.54636%#"3733#!"&5463!2��4��:@��7�vH��%�h��EP{��0&<'VFJo���1,1.F6��A��#���L4�4LL44L"%�	
 
7x'6
O\�JYFw���~�v^fH$ !�"xdjD"!�6��`J�4LL44LL��	�+3@GXcgqz�����-<JX{�&#"327&76'32>54.#"35#3;5#'#3537+5;3'23764/"+353$4632#"$2#462#"6462""'"&5&5474761256321##%354&'"&#"5#35432354323=#&#"32?4/&54327&#"#"'326'#"=35#5##3327"327'#"'354&3"5#354327&327''"&46327&#"3=#&#"32?"5#354327&3=#&"32?"#3274?67654'&'4/"&#!"&5463!2_��g��QQ��h���^_�~\[[\]�_^���h��QQ��g�e��<F�$�$$��� !!�&&�/!/

!!�

00/e&'!"e$�
		'!!�''�
	8''NgL4�4LL44L�UQ��gh��QUk=<Sc���cc,-{k���jUQ��hg��Q��



�9

,&W &$U�K$$KK$$KDC(>("
!
=))=2�( '! '�L#(>(
&�DC(>(z�L#�DzG)<)�4LL44LL��	�
BWbjq}��+532%+5324&+32763#4&'.546327&#"#"'3265#"&546325&#"32!264&"2%#'#735#535#535#3'654&+353#!"&5463!29$<=$�@?�SdO__J-<AA@)7")9,<$.%0*,G3@%)1??.+&((JgfJ*�A�������!&��j�jj��GZYG�иwssw��PiL>8aA	!M7�7MM7�7M�3!�
4erJ]��&3YM�(,
,%7(#)
,(@=)M%A20C&Me�e��(X���0&Ėjj�jV��	8Z8J9���N/4���$�8NN8�8NN��	�#&:O[���	$?b3'7'#3#%54+32%4+324+323'%#5#'#'##337"&##'!!732%#3#3##!"&53733537!572!56373353#'#'#"5#&#!'#'#463!2#"5#"5!&+&+'!!7353273532!2732%#54&+#32#46.+#2#3#3##+53254&".546;#"67+53254&.546;#"#'#'##"54;"&;7335wY-AJF���=c�(TS)!*RQ+��*RQ+�Y,�B^9^��Ft`njUM�')	~PS�PR�m���٘���M7�7Mo7�q

@)U	8�"����E(�1��++��NM7�7Mx3�7��8�D�62��W74�;�9�<�-A"EA�0:��AF@�1:�ؗ����B�f~~""12"4(�w$#11#�@}}!%+%5(�v$:O�\z��K��?*$\amcrVl��OO176Nn�<!E(=�<&l/������<<������
[ZZYY�89176���7OO7�==..//cV==::z,,,,aa,,��7OO7�Z::��;;Y
fcW�(		"6-!c�(		!5	#
b�t88176����tV:
&$'*9	%e#:
%'*9B����<<��;
&(�����	�#:Sn�����#"&54632%#76;2#"&54632%4&+";2?>23266&+"&#"3267;24&+"'&+";27%4&+";2?>23266&+"&#"3267;254+";27#76;2#!"&5463!2�3%#2%%,, _3$$2%%��M>�ALVb5)LDHeE:<
E�Mj,K'-R
M�~M>�ARVb5)LEHeE:<
E�
JAB�I*'!($rL4�4LL44Lv%1 %3!x*k�$2 %3!�;5�h
n
a�
!(lI;F	
	
��	r�p
p8;5�h

t
a�
!(lI;F��`	#k�4LL44LL
��	�
2HW[lt��#"'5632#6324&'.54327&#"#"&'32767#533275#"=5&#"'#36323#4'&#"'#7532764&"24'&#"327'#"'&'36#!"&5463!2=!9�n23��BD$ &:BCRM.0AC'0RH`Q03'`�.>,&I / *�
 /

��8/��n-(G@5��$ S3=�,.B..B�02^`o?7je;9G+��L4�4LL44LyE%#	�Vb�;A
!p &'F:Aq)%)#o�rg�T$v2�� 8�)2����z948/�{�8A�B..B/��q?@�r�<7(g/��4LL44LL��?#!"&'24#"&54"&/&6?&5>547&54626=�L4�@�ԕ;U g3
��
T
�2RX='�8P8|�5�
����4Lj��j� U;Ig@
	��
`
� "*\���(88(�]k
��&N4#"&54"3	.#"#!"&'7!&7&/&6?&5>547&54626;U gI��m*��]�Z0�L4�@�ԕ���=o=CT
��
T
�2RX='�8P8|�5�
� U;Ig��Xu?bl3���@4Lj��j��a���`
	��
`
� "*\���(88(�]k����/7[%4&+";26%4&+";26%4&+";26!'&'!+#!"&5#"&=463!7>3!2!2@@@@@@���0
��
o`^B��B^`5FN(@(NF5���@��@��@�u		�@�LSyuS�@�%44%����,<H#"5432+"=4&#"326=46;2  >. $$ ~Isy9���"SgR8v�H����D�	w
����ff���ff�����^����a�a�m2N+��	)H-mF+1����0*F		+f���ff�����^����a�a�����b4&#"32>"#"'&'#"&54632?>;23>5!"3276#"$&6$3 �k^?zb=ka`�U4J{�K_/4�^����W�&	vx :XB0���܂�ff���)
f������zz��X��lz=l�apz��o�b35!2BX���
�G@8��'	'=vN$\f���f�	1
	SZz�8�z�X�#("/+'547'&4?6276	'D�^�h

�

i��%5�@�%[i

�

h�]��@������]�h

�

i��%�@�5%[i

�

h�^�@@������)2#"&5476#".5327>OFi-���ay~�\~;��'�S���{�s:D8>)AJfh]F?X��{[��TC6��LlG��]��v2'"%B];$�-o��%!2>7>3232>7>322>7>32".'.#"#"&'.#"#"&'.#"#546;!!!!!32#"&54>52#"&54>52#"&54>52�-P&+#($P.-P$'#+&PZP&+#"+&P-($P-.P$(#+$P.-P$'#+&P-.P$+#pP@@Pp�H85K"&ZH85K"&ZH85K"&Z����@��Pp��@��@��@pMSK5, :&�LMSK5, :&�LMSK5, :&����!!3	!	�����@�����@@�����	#"$$3!!2"j������aѻxl���a����lx�a�a����j������!!3/"/'62'&63!2��'y��

�`�I

��y�����My��

�`�I

��y'W`#".'.#"32767!"&54>3232654.'&546#&'5&#"

4$%Eӕ;iNL291 ;XxR`�f՝�Q8T������W��iW�gW:;*:`�Qs&?RWXJ8�oNU0�J1F@#)
[�%6_PO�QiX(o�`��_?5�"$���iʗ\&>bd�s�6�aP*< -;iFn�*-c1B���Wg4'.'4.54632#7&'.#"#"'.#"32767'#"&54632326#!"&5463!2��#$(	1$6]'
!E3P|ad(2S;aF9'EO�Se�j]�m�]<*rYs��hpt.#)$78L*k�h�w�@w��w�w��B

%
$/$G6
sP`X):F�/�fwH1p�dl�qnmPH�ui�kw_:[9D'��@w��w�w��34."2>$4.#!!2>#!".>3!2�Q��н�QQ��н�QQ��h�~w��w�h���f����ff����н�QQ��н�QQ��н�QZ����ZQ�����ff���ff�#>3!2#!".2>4."f����ff�����н�QQ��н�QQ���ff���ff��Q��н�QQ��н�	,\!"&?&#"326'3&'!&#"#"'  5467'+#"327#"&463!!'#"&463!2632���(#�AH����s���9q � ci��<=�
#�]�<������OFA��!�������re��&&��U�&&![e��F �������U?���g�����4_���������a�?b�+��r7�&4&��&4&�p,�+K4&"2$4&"2.#!"3!264&#!"3!2#"&=!"&=#47>$ �KjKKjKKjKKjH#�j#H&&&������KjK�KjK�g	�V�	ijKKjKKjKKjK���..n((�[���5KK5��5KK5�[po�Nv<<vN�:f���.R#!"&463!24'!"&5463!&$#"!2#!32>+#"'#"&546;&546$3232�2$�B$22$�$�*$22$�X�ڭ��ӯ�$22$�tX'���hs2$���ϧ��kc�$22$���1���c�$2�F33F3VVT2#$2����ԱVT2#$2��g���#2UU���݃
�2$#2UU�1݃���2��,u�54#"67.632&#"32654'.#"32764.'&$#"7232&'##"&54732654&#"467&5463254632>32#"'&�ru�&9��%"*#�͟ <yK0Og�" 
&9B3�;��㛘8��s%+DWXRD= @Y%�	!Q6R�!4M8�+6rU^z=)�RN��.)C>O%GR�=O&^���op������C8�pP*�b�Y
_�#��$��N Pb@6��)?����+0L15"4$.�Es
�5I�Q"!@h"�Y7e|J>z�iPe��n�eHbIl�F>^]@����n*9
���6[_3#"&54632#.#"32%3#"&54632#.#"326%4&'.'&! ! 7>7>!���������
�=39?
6'_����������
�>29?
5'17m-V����U--,�bW.�������뮠@Fyu0HC$������뮠@Fyu0HC$L���=??
<����=! A	<��`�;+"&54&#!+"&5463!2#!"&546;2!26546;2���p���Ї����0�p�����p���@��I�������pp���>Sc+"&=46;254&+"&+";2=46;2;2=46;2;2%54&#!";2=;26#!"&5463!2���A5�DD�5A7^6a7MB5��5B7?�5B~�`��`��`0`��rr��5A44A5�����v�5AA5�f�*A���`��`0`�����	!!!!	#!"&5463!2��ړ�7���H��7j�v�@v��v�v��'���:��@v��v�v���MUahmrx���������������#"'!"'!#"&547.547.54674&547&54632!62!632!#!627'!%!"67'#77!63!!7357/7'%#	%'3/&=&'	5#?&5476��!�p4�q"���"�"�6�"� ��'������h*�[���
��|�*��,�@���?wA�UM�pV���@�˝�����)��Ϳw����7(�{��*U%���K6������=0�(���M���		��"!O		dX$k
!!��!
����b��	
���[�����TDOi
��@��6��b��xBA�ݽ�5
�
�ɝ:����J���+���3����,��p
x�1���������Fi
(��R��
463!#!"&5%'4&#!"3���`����а@.�.@A-X��f�B����$��.BB.�.C��}
)&54$32&'%&&'67���"w�`�Rd]G�{��o]>p6��sc(��@wg����mJ�PAjy���YW�a͊AZq���{HZ�:�<dv\gx�>��2AT�Kn������+;"'&#"&#"+6!263 2&#"&#">3267&#">326e��~�└�Ȁ|��隚���Ν|����ū|iy�Zʬ��7Ӕ�ް�r|�uѥ��x�9[��[9�jj��9A�N��N�+,#ll"���B�S32fk��[/?\%4&+";26%4&+";26%4&+";26%4&+";26%#!"&5467&546326$32�]]��ee��ee��ee��$��~i
�qfN-*���������#����Sj������t�2"'q�C���B8!�'�>	
!%)-159=AEIMQUY]agkosw{��������!	%!	5!#5#5#5#5#57777????#5!#5!#5!#5!#5!#5!#5!#5#537#5!#5!#5!#5!#5!#55#535353535353%"&546326#"'#32>54.&54>3237.#"����������Q%%%%%%%%%?iiihOiixiiyiixii�Arssrrssr��%s�ssrrss�Ns%%%%%%%%%%�����������'<D<'paC_78#7PO7)("I$	75!����RA��b��(���ss�ss�ss�ss�ss�"/!".""."
!."".!/^.".^.".]/".�$$$$$$$$$$$$$$$$��Os$$$$$$$$$$$$$$sO$s�ss�ss�ss�ss�ss#��������}$)	13?*
,./:
-�s�*4&"2$4&"2#!"&5463!2!5463!2_��������?-��-??-�,@�@,�-?����pq�8��,??,D,??,��,??(�Z2#".#"3267>32#".543232654&#"#"&54654&#"#"&547>326���ڞU�zrhgrx�S��Пd�U <e�����x՞����Zf��_gן:k=2;�^��9��Œ��7\x��x\7����K=5Xltֆ�W����W{e_�%N��%,%CI��%���#+W4&+54&"#";26=32"&462"&462!2#!"&54>7#"&463!2!2�&�&4&�&&�&4&���KjKKj�KjKKj� ���&&�&%��&&�&&4&�&&�&4&�&&��5jKKjKKjKKjK��%z
0&4&&3D7&4&
%&���'S4&"4&"'&"27"&462"&462!2#!"&54>7#"&463!2!2&4�&4&�4&4��KjKKj�KjKKj� ���&&�&%��&&�&&4&�%&&�ے&4��"jKKjKKjKKjK��%z
0&4&&3D7&4&
%&��	&	!'!	!%!!!!%"'.763!2�o���]�F������o�������oZ��Y��@:�@�!�!�g���������������f�/�/��I��62'"/"/"/"/"/"/"/7762762762762762762%"/77627&6?35!5!!3762762'"/"/"/"/"/"/%5#5!4�ZSS6SS4SS4SS4SS4SS4SS4�ZSS4SS4SS4SS4SS4SS4S�-4�ZSS4S@������4SS4�ZSS6SS4SS4SS4SS4SS4S@�����ZSSSSSSSSSSSSSS�ZSSSSSSSSSSSSSy�ZRRR@%:=
:+������:
=���RR�ZSSSSSSSSSSSSS���������Cv!/&'&#""'&#"	32>;232>7>76#!"&54>7'3&547&547>763226323@``����`
VFaaFV


$.


.$

��y��y�	.Q5Z���E$ ,l<l, $E���R?Y*��@���@�2	!#""#!	��y��y=r�na�@@(89*>�*%>>%*�>*98(QO�!���L\p'.'&67'#!##"327&+"&46;2!3'#"&7>;276;2+6267!"'&7&#"(6&#"#"'�D��g��OOG`n%�E������LL{�@&&�N�c,sU�&&�!Fre&&�s�����s���#�/,�������<=�
#�]�g��L�o�GkP�'��r-n&4&2�-ir&�&�?���o 
��������4_�����5OW! .54>762>7.'.7>+#!"&5#"&5463!2"&462�{�����{BtxG,:`9(0b��Կ�b0(9`:,GxtB��&@&�&@&K5�5K`�����?e==e?1O6#,
#$
,#6OO��&��&&�&�5KK���������?!"'&'!2673267!'.."!&54632>321
��4��q#F�""�8'g��o#-��#,"t�Yg��>�oP$$Po�>�	��Z�e�p#����)�R��0���+I@$$@I+����+332++"&=#"&=46;.7>76$  ������@����ᅪ*��r���������@��@�����������r���'/2+"&5".4>32!"&=463  �&@��~[���՛[[��u˜~���gr�������&�`����u՛[[���՛[~~@��r������=E32++"&=#"&=46;5&547&'&6;22676;2  >�����``@``�ٱ��?E,��,=?��r�������H�����@``@�GݧH`�j��j���r������BJ463!2+"&=32++"&=#"&=46;5.7676%#"&5   &@�~���``@``�� �v�X����r�������&���������@``@����+BF��`r������ks463!2+"&=32++"&=#"&=46;5&547'/.?'+"&5463!2+7>6 %#"&5   &@�~���``@``��~4e	
0
	io@& �jV	
0
	Z9�������r�������&���������@``@�G�ɞ5o
,
sp� &@k^
,
c8~~��`r�������8>KR_32++"&=!+"&=#"&=46;.767666'27&547&#"&'2#"�����@�@���'�Ϋ���'������sg��gs�����ww�@����sg��g����@����@���-ss��ʃl������9���9��������OO���r9���9��FP^l463!2+"&=$'.7>76%#"&=463!2+"&=%#"&54'>%&547.#"254&' &@�L?����CuГP	��v�Y�� &@�;"����������ޥ�5݇�����ޥ���5�`&����_��ڿg��w��BF�@&����J_	s���&��&�����?%x���������%x��JP\h463!2+"&='32++"&=#"&=46;5.7676632%#"&56'327&7&#"2#"� &@�L? ���ߺu�``@``��}
�ຒ�ɞ���������ue��eu�9����ue��e�&����_��"|N�@``@��"��"|a~���l����o����9���9��r9��@�9���;C2+"&5"/".4>327'&4?627!"&=463  �&@Ռ		.	
�N~[���՛[[��u˜N�		.	
����gr�������&�`֌
	.		�O��u՛[[���՛[~N�
	.		��@��r������9A'.'&675#"&=46;5"/&4?62"/32+  ��'��֪�����\
	.		�4�		.	
\���r������|��ݧ���憛��@�\		.	
��
	.		\�@��r�����~9A"/&4?!+"&=##"$7>763546;2!'&4?62  m��		-

���@���ݧ���憛��@&�

-		�@r������m4��

-		����ٮ*�������		-

��r������+"&5&54>2  ����@��[���՛[�r�����������dG�u՛[[���r������  ".4>2������r�[���՛[[���՛�r������5�՛[[���՛[[����$2#!37#546375&#"#3!"&5463�#22#�y��/Dz?s����!#22#�2#��#2S�88�	����2#V#2��L4>32#"&''&5467&5463232>54&#"#"'.K���g��&Rv�gD�
$*2%	+Z hP=DXZ@7^?1
۰��3O+�l��h4���`���M@8'�+c+RI2
�\�ZAhS�Q>B�>?S2Vhui/�����,R0+	ZRkm�z�+>Q2#"'.'&756763232322>4."7 #"'&546��n/9�b�LHG2E"D8_
p�dd���dxO�"2�xx��ê�_�lx�2X	
!+'5>-�pkW[C
�I
I@50�Od���dd��˥�Mhfx�����x^���ә�	�#'+/7!5!!5!4&"2!5!4&"24&"2!!!��� 8P88P�� 8P88P88P88P����������P88P8 ���P88P88P88P8� ������������+N &6 !2#!+"&5!"&=463!46;23!#!"&54>32267632#"_����>�@`

��
�
��

`
�
� L4Dg��y� 6Fe=O���O�U�4L��>����
�
��

`
�
`

��4L�2�y5eud_C(====`L4����3V &6 #"/#"/&54?'&54?6327632#!"&54>32 7632_����>���		�	
	��	
	�		��		�	
	��	
	�		��%%S��y� 6Fe=�J�%��>����	
	�		��		�	
	��	
	�		��		�	
	��%65%S�y5eud_C(zz.!6%$!2!!!46;24&"2!54&#!"�&���&�&@�Ԗ��V�@&&�@��&&�Ԗ�Ԗ@��&���3!!!	!5!'!53!!	#����7I�e�����eI7��CzC�l��@�����@������@�#2#!"&?.54$3264&"!@������մ���pp�p���������((��������p�pp����#+/2#!"&?.54$3264&"!264&"!@������մ���^^�^@����^^�^@���������((��������^�^^�����^�^^�����v(#"'%.54632	"'%	632U�/�@��k0�G��,�zD#[�k#�
/t�g��
F��
����Gz�����	#'#3!)
p�*�xe���0,\8�����T���#/DM�%2<GQ^lw�����
&'&676676&'&7654&'&&546763"#"'3264&7.>&'%'.767&7667&766747665"'.'&767>3>7&'&'47.'.7676767&76767.'$73>?>67673>#6766666&'&6767.'"'276&67&54&&671&'6757>7&"2654&57>&>&'5#%67>76$7&74>=.''&'&'#'#''&'&'&'65.'&6767.'#%&''&'#2%676765&'&'&7&5&'6.7>�&5R4&5S9
W"-J�0(/�r
V"-J�0(.�)#"6&4pOPpp�c�|o}vQ�[�60X�Q��W1V�	
#5X		N"&
.
)
D>q J:102(z/=f��*4!>S5b<U$:I o<G*	,
&"O	X5
#!

��	R N#
C
83J*��R	!(D
#%37	�;$-.�
(,��覦�6ij
�	���"���)9
E�%����!B83
	j9�6/,	:QD')yX#�63V
��b�a	,
Ue��LPA@���*	̳�`Xx*&E
V36��%	B3%	B3XA	
#!.mU"A	
#!.mUB-#2+Jii�i�m-C<I(m��8qF/*)0�S
		
I
E5&+>!%
(!$p8~5..:5I

~��T�
4~9p# !
)& ?()5F	1	
	
� d%{v*�:
 @e
s|D�1d {�:�*dAA|oYk'&��<��tu��ut�&vHC�XXTR�;w��
��71™
Z*&'
1	9?	.

$��Gv5k65P<�?8q=4�a	
SC"��1#<�/6B&!ML	�^;�6k5wF1<P�C	�;$"&462"&46232>.$.�`�aa��sa�``��Z9k����'9؋ӗa-*Gl|M�e_]`F&O������ܽ�sDD!/+�``�aa�``�a1<YK3(
 /8HQelA�Z3t_fQP<343J;T7Q�+?Kgw  $6&$  $&62+"5432+"&=.54  $;26=462;26=4& 4&#!"3!26)����߄��4R4߄��mlL�������r {jK#@#Q�a����^�����@���@���`&��&&�&�������߄��4R4�Ď������LlL�N� �@K5#:rr:#5K���^����a�a��``]��]``����&&�&&	/!3#4&#!"3!265##!"&5463!22�������@K5^B��B^^B@B^5K���� �@���5K�B^^B�B^^B�K	/!2##!"&5463!2#4&#!"3!265�5KK5^B��B^^B@B^���@��K5��5K�B^^B�B^^B�`� �@ 	/!2##!"&5463!2#4&#!"3!265�5KK5^B��B^^B@B^���@��K5��5K�B^^B�B^^B�`� �@ 	/!2##!"&5463!2#4&#!"3!265�5KK5^B��B^^B@B^���@��K5��5K�B^^B�B^^B�`� �@ 	+2##!"&5463!2#4&#!"3!265�5KK5^B��B^^B@B^���@�K5��5K�B^^B�B^^B�`� �@ �{#!&'#"'&547632m*���
�0���((�'(�$0K
��*�*��% 3#!3# '!#53 5#534!#53 6!3@����@@@��pp��@@@����@@pp@��`������� �����	�+/7;A#3!5!!3#!!5!35!355#%53#5!#35#!!!!!!!!����������������������������������������������������������������������
�	#'+/3?CGW#3!5!!35!!3#!!5!#!5!3535!355#%#3%!53#5!#35#!5##5!3!5!3!5	����������������������������������������������������������������������������������������������������������������!"&5463!2!"!�`(88(@(8�`(8�}2�2R �`8(@(88(�`8HR2�2���##6?6%!!!46#!"&5463!2x���� ��8�(�`(�(88(@(8�
���� (8��(`�(8(@(88��	�'ATd+5326+5323##"' %5&465./&76%4&'5>54&'"&#!!26#!"&5463!2�
��

���i�LCly5�)*H�celzzlec0h�b,,b�eIVB9@RB�9�J_�L4�4LL44L44%��2"��4��:I;p!q4b�b3p(P`t`P(�6EC.7B�I6�4LL44LL��	�.>$4&'6#".54$ 4.#!"3!2>#!"&5463!2Zj��b�jj[���wٝ]�>o��Ӱ�ٯ�*�-���oXL4�4LL44L'�)�꽽�)�J)���]��w����L���`��ֺ��۪e���4LL44LL�;4&#!"3!26#!"&5463!2#54&#!";#"&5463!2�
��

@
�^B��B^^B@B^���
��

��B^^B@B^`@

��
M��B^^B@B^^>��

��
�^B@B^^��5=Um	!	!!2#!"&=463!.'!"&=463!>2!2#264&"".54>762".54>762��������?(`��`(?��b|b��?B//B/�]�����]FrdhLhdrF�]�����]FrdhLhdrF@�@��@�(?��@@?(@9GG9@/B//B�aItB!!BtI�Ѷ�!!��ьItB!!BtI�Ѷ�!!��ь�-M32#!"&=46;7&#"&=463!2#>5!!4.'.46�ՠ��`�@`ՠ��`���M�sF�Fs�MM�sFFs�M����ojj�o��@@�jj�@@�<���!(!���!(!�-3?32#!"&=46;7&#"&=463!2+!!64.'#�ՠ��`�@`ՠ��`��	�	Dq�L�L�qD����ojj�o��@@�jj�@@B>=�C�����-3;32#!"&=46;7&#"&=463!2+!!6.'#�ՠ��`�@`ՠ��`��UVU96�g�g�6����ojj�o��@@�jj�@@β����**ɍ�-G32#!"&=46;7&#"&=463!2#>5!!&'.46�ՠ��`�@`ՠ��`���M�sF�Fs�M�k�k�����ojj�o��@@�jj�@@�<���!(!3��3!(!�9I2#!"&=4637>7.'!2#!"&=463��@b":1P4Y,++,Y4P1:"�":1P4Y,++,Y4P1:"b�@@��@7hVX@K-AA-K@XVh77hVX@K-AA-K@XVh7����Aj"#54&#"'54&#"3!26=476=4&#"#54&'&#"#54&'&'2632632#!"&5&=4632>3265K @0.B @0.B#6'&�&
l
@0.B 2'	.B A2TA9B;h" d�
mpP��Tl��L�c�_4.H�K5�]0CB.�S�0CB.�/#��'?&&)$�$)�0CB. }(AB.�z3M�2"61�d�39�L/PpuT(If�c�_�E�`1X"#4&"'&#"3!267654&"#4&"#4&26326#!"&'&5463246326�\B B\B�&@5K�&@�"6LB\B B\B ��sc�i�L}Q�P<m$��3�jN2�c�B.�p.BB.���3K5+"�3,"� �.BB.��.BB.���.�G=�c�i�(+�lOh7/DVj�"�c�=���&5Jb�#"'&=.547!"&46;'.54632!2327%.54&#"327%>%&#"!"3!754?27%>54&#!26=31��?>I��j��jq,J[�j.-t�j�lV��\���$B.R1?@B.��+?2`$�v5K-%��5KK5�.olRIS+6K5�̈$B\B 94E.&�ʀ�15uE&
�Ԗ�Pj��j�dX�U�GJ7!.B
�
P2�.B
�
%2@	�7�K5(B�@KjKj�?+f�UE,�5K~!1��.>F.��F,Q5*H��$b2#!"&=%!"&=463!7!"&'&=4634'&#!">3!!"3!32#!"3!23!26=n$<vpP��Pp���Pp�w�*�Rd�ApP�]��'@�A&
3@��&H-�[(8@
2�EB^&1
=&�&81����PppP��pP w���cOg Pp��c�
4& #.& &,,:8(�%^B &�
.�&&��2t"&'&54'&5467>32>32>32#"#.#"#.#"3!27654&#"547654&#"#654&�Mye
t|]�WS�Sg�SY�\x{
70"1i�92�DU1&=	��	=&0@�c	>&/Btd4!�*"�8K4+"��@H@/'=	t�?�_K�93-�]�
UlgQ���QgsW
�]#�+�i>p&��3�0&�VZ&0B/
���%3B.�"t�o ){+C4I��(
/D0&�p0D��3[_cg"'&#"3!2676=4&"#54&#"#54&#"#4&'2632632632#!"&'&5463246#!#!#�5K�)B4J�&@�#\8P8 @0.B J65K J6k�
cJ/4qG^�\hB�2<m$��3�iG;��     �K5����6L4+"�3p`b�)<8(=0CB.@Z7OK5`:7O��k�EW�^�tm��@Q7/DVi�##j�������������%4Ia�2#!"&5&546325462632"32654&"3267654&76;74&"#.#"2676=#"&'+53264&#!"3</�U�X�dj���jP��ԖEu�!7JG72P
�
B�%
�
B.!7�	@�A�f+?�jKjK@�B(5K,EU�H*5Q,F��.F>.��1!~K5y?��^\��Vl�j�t-.j�[J,qj��j��I7$��?1R.B�+��.B$`2?g�vEo.�5KK5��%-K��6+SIR[��&.E49 B\B$���5K�G#!+"&5!"&=463!2+"&'+"'+"'&5>;2>76;2Y
��
�
��

M	

�.�x	�-�
	N�	�


�	�
�u
��
,
u
�?

L�W���

���#	�	*:J4'&+326+"'#+"&5463!2  $6& $&6$ <!T{�BH4�	�›�&�>UbUI-����uu�,�uu�ڎ������LlL�AX!��J��m����f\�$
6u�����uu�,�K������LlL���-[k{276/&'&#"&5463276?6'.#"!276/&'&#"&5463276?6'.#"  $6&  $&6]�h-%Lb`J%E5
,5R-����h
-%Lb`J%E5
,5R-���'����uu�,�uu��lL�������/hR

dMLcN����hR
dMLcN����1u�����uu�,��������LlL�@��� 	'	7	'7	�����`��`H� �����`�`H� �!`��������`H� � ���`�`�`H���`��'%		7'	7'7	' $&6$ ���X�`��(W�:,�:��X�`��(WL�������LlL�X�`(W��:�B����X�`���(X�������LlL��
��	$%/9ES[�#"&54632$"&4624&"26$4&#"2%#"&462$#"&4632#"32&! 24>  !#"&'.'#"$547.'!6$32�7&'77'&7�7N77N�'q�qq�q�qPOrq��E�st�����ts��st���}�||�}�������uԙ[W��Q���~,>	n������P/RU P酛���n	>,m�����'77'&77N77N6^Orq�qq�qq�q�t��棣棣�(~|��|on[��usј^�~���33������pc8{y%cq����33dqpf��	L 54 "2654"'&'"/&477&'.67>326?><����
x
�������,

(-'s�IVC��VH�r'-(

$0@!BHp9[�%&!@0$u
��
������]\��\]��-$)!IH��V
D��
VHI!)$-#3���6>N"&462."&/.2?2?64/67>&  #!"&5463!2�]�]]�3
$;
&|�v;$
(CS�3�1	=�rM=	�4�TC(G���z�w�@w��w�w���]]�]��($-;,54�0=	�sL	=�45,;�����@w��w�w������(2#"$&546327654&#"	&#"AZ�������\@�/#�%E1/#����#.1E$�!�[A�����懇�@�@\��!�#21E!��6!E13"�|!��	gL&5&'.#4&5!67&'&'5676&'6452>3.'5����A5R��V[t,G'Q4}-��&�<C!l n?D_@Փ>r!�
��G;��>��!g�1�����2sV&2:#;��d=�*'�5E2/..F�D֕71$1>2�F!���&12,��@K�
r��#"&5462>%.#"'&#"#"'>54#".'7654&&5473254&/>7326/632327?&$  $6 $&6$ �!&"2&^	u��_��x��^�h
;J݃HJǭ
q�E
Dm!
M�
G?̯'%o�8
9U�������(F(�ߎ������LlL��&!&!SEm|�[��n{�[<ɪ
"p� C
Di%
(K�HCέp�C
B
m8	
@Kނ
H�F(���������������LlL���"*6%&6$	7&$5%%6'$2"&4}���x����3��n��QH������:dΏ���Xe�8�����z��'	������l�i���=!��7�����S�o�?v�������M '&7>>7'7>''>76.'6'���El:F�gr
*�t6�K3UZ8�3P)3^I%=9	)<�}J���k+C-Wd��	&U���-��TE+]��Qr-�<Q#0
�C+M8	3':$
_Q=+If5[ˮ&&SG�ZoM�k���ܬc�#7&#"327#"'&$&546$;#"'654'632ե›��fKYYKf�¥y�ͩ���䆎�L��1���hv�v��ƚw�wk��n�]��*��]�nlx��D��L�w�����~?T8b��b9SA}����+5?F!3267!#"'#"4767%!2$324&#"6327.'!.#"��۔c�2�8�Ψ����-\���?���@hU0KeFjTl�y�E3��aVs�z�.b��؏��W80��]T��Sts�<�h�O��_u7bBt���SbF/�o��|V]SHކ�J�������34&#!"3!26#!!2#!"&=463!5!"&5463!2
��

@
�^B� `��`� B^^B@B^ �

�@
�@B^�@@�^B�B^^����>3!"&546)2+6'.'.67>76%&��F8$.39_��0DD�40DD0���+*M7{L *="#
U<-M93#�D�@U8v�k�_Y	�[�hD00DD0��0D�ce-JF1BD����N&)@
/1 d��y%F��#"'&'&'&'&763276?6#"/#"/&54?'&763276"&'&'&5#&763567632#"'&7632654'&#"32>54'&#"'.5463!2#!3>7632#"'&'&#"'&767632yq������oq>*432fb������a
$�B?
	>B
BB
AA�.-QP���PR+	42
%<ci���ђ:6&h�HGhkG@n�`��I���Ȍ5
!m��(|.mzy�PQ-.	
	je����	
�����q>@@?pp�gVZE|fb6887a
%RB?
=B
ABBAJvniQP\\PRh!cDS�`gΒ��23�geFGPHX�cCI��_ƍ��5"	
�n�*T.\PQip�
[*81
/
9@:��>t�%6#".'.>%6%&7>'.#*.'&676./&'.54>754'&#"%4>327676=
>���vwd"

�l����"3	/!,+	j2.|��%&
�(N&w���h>8X}x�c2"W<4<��,Z~�fd�aA�`FBIT;hmA<7QC1>[u])		u1�V(�k1S)
-�	0�B2*�%M;W(0S�[T�]I)	A 5%R7<vlR12I]O"��V/,b-8�/_��#3CGk2#!"&546;546;2!546;2%;2654&+";2654&+"!32++"&=#"&=46;546;24LL4��4LL4�^B@B^�^B@B^�@@�@@�����@��@L4�4LL44L`B^^B``B^^B``�� �� ��@@��@���#3W#!"&=463!2!!%4&+";26%4&+";26%#!"&546;546;2!546;232���@�����@@@@�L4��4LL4�^B@B^�^B@B^�4L�@@��� �� ��N�4LL44L`B^^B``B^^B`L��#'7Gk%"/"/&4?'&4?62762!!%4&+";26%4&+";26%#!"&546;546;2!546;232W.	
��
	.		��		.	
��
	.		��	� ����@@@@�L4��4LL4�^B@B^�^B@B^�4L�.		��		.	
��
	.		��		.	
��
��� �� ��N�4LL44L`B^^B``B^^B`L��(8\	"'&4?6262!!%4&+";26%4&+";26%#!"&546;546;2!546;232�

��		.	
��
	.	�`����@@@@�L4��4LL4�^B@B^�^B@B^�4L<�		 
	.		��		.	�:� �� ��N�4LL44L`B^^B``B^^B`L�2632632#!"&5463�&&&&��&&&���&���&��&&�&�#27+"&5  %264&#"26546��>&�&T�,��X�������q&&�1��X��,�LΒw�%��%;#!"&5463!546;2!2!+"&52#!"/&4?63!5!�

�(��&&@&�&(��&�&@&&��(�

�(�

�&&@&&@��&&�&�&�

�����#''%#"'&54676%6%%�������
�hh �@�` ���!�� ���!� ��
��
��
�
������
�#52#"&5476!2#"&5476!2#"'&546
� 
��
� 
���
�
�@�
�
�@�
��
�@

�
� 84&"2$4&"2$4&"2#"'&'&7>7.54$ �KjKKj�KjKKj�KjKKj��d�ne���4"%!������KjKKjKKjKKjKKjKKjK.���٫�8
!%00C'Z���'���.W"&462"&462"&462 6?32$6&#"'#"&'5&6&>7>7&54>$ �KjKKj�KjKKj�KjKKj�h��я�W.�{+9E=�c��Q�d�FK��1A
0)����LlL��jKKjKKjKKjKKjKKjK���p�J2`[Q?l&�����٫�C58.H(Y���ee���	�

			���Y'����w��(�����O��'��R���@$#"&#"'>7676327676#"�
�����b,XHUmM�.�U_t,7A3ge
z9@xS���a�Q�BLb�(�	����V���U�����
!!!�=�����=���w)��������AU!!77'7'#'#274.#"#32!5'.>537#"76=4>5'.465!��KkkK_5 5�� �#BH1��`L

I���&�v6��SF���!Sr99rS!``� /7K%s}H���XV
��P��V	e��		V�d/9Q[ $547.546326%>>32"&5%632264&#"64'&""&'&"2>&2654&#";2���P���3>tSU<�)tqH+>XX|W��h,�:USt��W|XX>=X*
)���)
+�^X^�|WX=>X�:_.2������//a:Ru?�
	
Q%-W|XW>J�(	�=u��>XX|WX�`

*((*


+2		2�X>=XW|E��03>$32!>7'&'&7!6./EU����noh��i����I\�������0<{ >ORD��ƚ�~�˕V�ƻ��o�R C3��7J6I`��Tb<�^M~M8O����	�	
5!#!"&!5!!52!5463	^B�@B^���`B^�^B `��B^^"�����^B��B^��0;%'#".54>327&$#"32$	!"$&6$3 ##320�J�����U��n��L�n��ʡ���~~�&��q�@�t�K�����L��}�'`� -
-�ox����nǑUyl}��~������~�F����ڎ�LlL��t�`(88( ��	7!'	!���\W�������\���d;����tZ�`_��O��;���}54+";2%54+";2!4&"!4;234;2354;2354>3&546263232632#"&#"26354;2354;2354;2�````��p�p��`�`�`� !,! -&M<FI(2�`�`�`�����@PppP���pppppp�#  #
�
�pppp��p	�j#"'&=!;5463!2#!"&=#".'.#!#"&463232>7>;>32#"&'#"!546���	��%. `@��` :,.',-���Xj��jX�h-,'.,: kb>PppP>bk .%Z �&�
�:k%$> $`��`6&L')59I"Tl�ԖlT"I95)'L&69Gp�pG9$ >$%k:��!+32&#!332 $&6$ ~O8��8���O�����������LlL�>pN
�����
i������LlL����	'':Ma4&'#"'.7654.#""'&#"3!267#!"&54676$32#"'.76'&>$#"'.7654'&676mD5)
z�{��6lP,@Kij��jOo�Ɏ���ȕ>>��[t��a)GG4?a�)
ll
>�;_-/
9GH{�z�yN@,K�ԕoN��繁������y��!
?hh>$
�D��"
>��â?$��	n"&5462'#".54>22654.'&'.54>32#"#*.5./"�~��~�s�!��m�{b6#	-SjR,l'(s�-6^]It�g))[��zxȁZ&+6,4$.X%%Dc*
&D~WL}]I0"

YYZ��vJ@N*CVTR3/A3$#/;'"/fR-,&2-"
7Zr�^N��a94Rji3.I+

&6W6>N%&60;96@7F6I3���+4&#!"3!26%4&#!"3!26 $$ ��������^����a�a`@��@����^����a�a�����'7  $ >. %"&546;2#!"&546;2#/�a����^�����(�����������������^����a�a����(������N@��@�����4&#!"3!26 $$ @��@����^����a�a`@����^����a�a�����'  $ >. 7"&5463!2#/�a����^�����(��������n@����^����a�a����(������N@���%=%#!"'&7!>3!26=!26=!2%"&54&""&546 �#��#]V�TV$KjK�KjK$��&4&�Ԗ&4&�>��9G��!�5KK5��5KK5�!��&&j��j�&&����#/;Im2+#!"&'#"&463>'.3%4&"26%4&"26%6.326#>;463!232#.+#!"&5#"�5KK5sH.�.Hs5KK5e# )4# %�&4&&4&�&4&&4&` #4) #%�~]�e�Z�&�&�Z�e�]E-�&��&�-EKjK�j.<<.�KjK��)�#)�`"@�&&�`&&�&&�`&&�)#�`)"�d�Xo&&oX�G�,8&&8!����O##!!2#!+"'&7#+"'&7!"'&?63!!"'&?63!6;236;2!2�@�@�8��@7

8��Q�
	N�Q�
	N��
	8G@��

8GQ�
	N�Q�
	N7
	�������8��8��H��H��k��%		".>2I�������2�0�]@��]��@o�����o@@o�����o㔕����a�22���]����]�p�^���|11|�9�9�|11|�(��%7'7'	'	7T���� d���lt��l)q��n�������luul�������)1$4&"24&"2 &6 +"&5476;2 &6 LhLLh�LLhLLhL����>�
�� �&
  �&�`����>�hLLhLLhLLhL�����>����&�&�����>��G��
	.7)1!62	1!62h��e�������2�20e���2�2>�	v
+4�	[��d����+
���d� �135#5&'72!5!#"&'"'#"$547&54$ ���Eh���`X����(����cY���z�:L:�z���Yc��������\$_K`Pa}��f��iXXiޝf���a���	���(+.>#5#5!5!5!54&+'#"3!267!7!#!"&5463!2����U�`��`' ����� �����j��j�V>�(>VV>�>Vq����������������(^����(>VV>�>VV�=&'&'&'&76'&'&.' #.�h8��"$Y
''>eX5,	,Pts�K�25M�RLqS;:.K'�5�R

Ch���h�����R�t(+e�^TT���u B"$:2�~<�����2�Hp����wTT�� V�/7GWg. %&32?673327>/.'676$4&"2 $&6$   $6& $&6$ d-����-�m	
	,6*6,	
	m���KjKKj�o������oo���K����zz�8�zz�Ȏ������LlL�U4>>4-.��YG0
)�xx�)
0GYޞ.�jKKjKq���oo��oo�lz�����zz�8�0������LlL��D��/7H#"'.7'654&#"'67'.6?>%"&46227#".547|D,=),9#�7��[͑�f�x���!X: �D�$+�s)�hh�i��jZ������t�<��F/��*8C,�q؜�e���\�r,W�BX���/C2��h�hh���=�t������Xm�����>NZ+"&=46;2+"&=4>7>54&#"#"/.7632  >. $$ p��=+& �35,W48'3	l
z����ff���ff�����^����a�aP���2P: D#;$#
$*;?R
��Cf���ff�����^����a�a��'�Y	>O`"&5462&'.'.76.5632.'#&'.'&6?65��\\�[�<C��z�C
25�U#
.�ZK ��m+[$/#>(	|�	r���[A@[[@A�#2#�
����7�*
<Y���$
+}"(��
�q�87] F 	_��1)
��	�	#1Ke34&+326+"&=!#!"&763!2#!"&5463!2#>?4.'3#>?4.'3#>?4.'3��Xe`64[l�����7
��
,	L;�����=+3&98&+)>�>+3&98&+)>�=+3&88&+)>	�Wj�|r�>Q$��~���d$kaw+-wi[[\�;/xgY$kaw+-wi[[\�;/xgY$kaw+-wi[[\�;/xgY���J\m�4.'.'&#"#"'.'&47>7632327>7>54&'&#"327>"&47654'&462"'&476'&462"'&47>&'&462i$		$^"

%%

"^$		$W "@9O?1&&18?t@" W�&%%&4KK�6pp&4���6ZaaZ&4mttm�^x	-���-	x^=/U7Ck���kz'[$=�&5%54'4&K�K�4r<r4&��X��4[��[4&m����m��'/7?GOW_gow����"264$"264"264"264$"264"264$"264"264"&462"&462"&462"&462"&462"&462"&462"&462"&462"&462"&462"&462�^^�^��^^�^^�^^�^��^^�^��^^�^���^^�^��^^�^^�^^�^� p�pp�pp�pp��pp�pp�pp�pp��pp�pp�pp�pp��pp�pp�pp�pp��pp�pp�pp�pp��pp�pp�pp�pp�`^�^^�^^�^^�^^�^^��^^�^^�^^�^^�^^�^^�^^�^^�^^�^^���pp�pp�pp�p��pp�pp�pp�p��pp�p���pp�p��pp�p���pp�p��pp�pp�pp�p��pp�pp�pp�p	��LTi{�"&4626"&462$"&462#"&4632654>7>54 "&54>2"&462%"&54&#""&546 %#"&'&'.7>#"'&'.7>�&4&&4�&4&&4SZ��&4&&4�4$#&�&&j�3$"('$������&4&[���՛[��&4&&4F&4&�]\�&4&�$��
	!D�4�%	,\�4�4&&4&�4&&4&-�Z�4&&4&;cX/)#&>B)��&4&�j9aU0'.4a7����&&u՛[[���4&&4&@&&]��]&&��Ώ0
�u4��0
)�4���#g�&'.#"32676%4/&#"326'&#"2632#2+&'%#"'&6?676676632%#"'&6767#"&'&6767#"'.7>327"#"&'&6763"'.7>;7632;>%5K$
"0%>s$
"0%>;;>%5K�VL#>H30
\�($$(�\���(�є�yO2F/{�(?0(TK.5sg$��є�y#-F/{�$70(TK.5sg$L#>H30
\�($$(�\#�(@5"'K58!'"5�8!'"55"'K#dS$K		K$Sdx#@1
w�d>N;ET0((?
-
2K|��1
w�����d#N;ET0$(?
-
2K$#dS$K		K$Sdx�DN\2654& 265462"2654 #"32654>7>54."/&47&'?62 &4&���&4&���h�՛[&4&r$'("$3�j&&��&#$4[����"�@��GB�[�
"�&&��Β&&]���[��u&&����7a4.'0Ua9j�&4&�)B>&#)/Xc;u՛����"�"
�G�i[����Xh#"&54676324&'&#"'>54#"32#"54>54'.#"32>7>767632326#!"&5463!2b
)
:4FD�N

[�1�,^�J��K-*E#9gWR�Yvm0O	��w�@w��w�w��C2�2c@X�&!�9{M�A���_��"S4b// DR"Xlj�PY<	�@w��w�w��%���e4.#"32>7676#'.#"#"&54>3232>754&*#"&54>763 >32�
''il$E/
@�P@��
^��`��'W6&�!.. ! -P5+


�E{�n46vLe�Vz�:���,SN/
M5M[��
	]$�[��^��5�iC'2H&!(?]v`*	��l�	��b��$9>
���=R�2
#"&5467%!"&7>3-.7>;%.7>322326/.76/.'&6766/&/&#"&676	&676&6766/&672? �=1�(H/ ��	'96&�@)9<'���)29%
�&06#���#��$� J� �07j)�5@�"*3%�"!M
��%#K�"%N�e8)'8_�(9�.<�c +8 8(%6 <)'4@@)#-<^
?%$-`%.
}Q!&�}%&N�-l���IJ�;6>/�=*�%8!Q ���#P"�\Q#N&�a��)<9�bR]mp%"'.'&54>76%&54763263 #"/7#"'#"&/%$%322654&#"%'OV�9
�nt
|\d
ϓ[��nt
|@�D:)��	
;9�8'+|�j�," �41����CH^�nVz(�~R	�9�\'	�r�

@����L��@�
	@�w4�6�HI(+�C
,��55,��
f[op@�\j�;(zV~����i/5O#"'&54>32&#" 654'67'"'>54''&'"'6767&546767>7���蒓��`V BM���R� B9)̟�!SH-77I�Xm�SM�H*�k#".o;^J q�ן���ד��>@�����YM
$bK���d ��ү[E"����;���Kx%^�6;%T,U:i�m=Mk���).DT4'"&5463267&#" 6;64'.'4'>732676%#!"&5463!2),�蛜s5-<A���4ϲ
2W9
�&P:\�3)SEPJ��D4:3NI�w�@w��w�w��NE	2@u��us�+,�����/?x�sa�tmP�'�)fHVEA(%dA4w&4J5*�@w��w�w�����O[4'.'&54>54&#"#"'654'.#"#"&#"3263232>3232>76 $$ �Cf'/'%($�U�L
(
#'/'@��3#@,G)+H+@#3
����^����a�a�X@_O#NW�#O_�.*	##(��^����a�a����q�[632632#"&#"#".'&#"#".'&54767>7654.54632327&547>P��9	B6?K?%�O4�T% >6>Z64Y=6>%S�4N�$?L?4B	@���{:y/�$ ,'R�!F!8%
#)(()#%:!F �Q'+%�0z:�z���O_4'.'&54>54&#"#"'654'.#"#"&#"3263232>3232>76#!"&5463!2Cf'.'%($�V�M
)
#'.'@��
3
#A,G)+H+A#
4
��w�@w��w�w��XA?4N$NW�&M&L�/*
##	+�@w��w�w����	O$>?>762'&#"./454327327>7>	EpB5
3FAP/h����\�/NG�S�L�	� ���R�P*��m�95F84f&3Ga4B|wB.\FI*/�.?&,��5~K %
&��Y."7n<	"-I.�M`{�ARwJ!�FX^dj''''"'7&'7&'7&'7&547'67'67'67'63277774$#"32$			*��'ֱ,?�g=OO&L&NJBg�;1��'����'ֱ.=�gCIM
$'&&NJBg�=.��%�����w؝\\��w�
�I�o�o��<�<���-NIDg�=/��%����(ײ+A�hEHO*"#*OICh�=/��'����(ֲ/=�h>ON.��]��xwڝ]��������7��e��[���@�����)6!!"3#"&546%3567654'3!67!4&'7S��gn�y]K-�����#75LSl>�9���V��%�cPe}&H�n��_�HȌ����=UoLQ1!��4564���7U�C"�
�!-9[nx��"&46254&"326754&"326754&"26754&"26#".547632632626326'4#"#"54732764&"264.#"327632>#"'"'#"'#"&5#"'67&'327&'&54>3267>7>7>32632632T"8""8�)<())�(<)))�)<))<)�)<))<)T�د{ՐRh�x=8 78 n 81
p��H_6�S��oc
�F@b@?d?uK�bM�70[f5Y$35KUC<:��[;+8 n 87 8/8Zlv]64qE 'YK�0-AlB;
W��#;WS9
&�(#-7Z�://:/�Tr++r,,r++r,,r++r,,r++r,,ʠ�g��xXV�ע��e9222222^�K�Vv���F0�2OO23OO��`�lF;�mhj84D�ro��B@�r+@222222C0DP`.�r8h9��~T4.&o�@9��1P���%14'!3#"&46327&#"326%35#5##33 $$ ����}Pc��c]<hl���ࠥ�Ymmnnnn���^����a�aw!�LY�Ə;ed����wnnnnnv�^����a�a��%�'#"$#"#.5462632327>321��I��U�Π?L���L?��cc�4MX�&��04;0��XpD[��[DpD,)&&�Q	9V\�26&".'&'&6?.#"#26327677>'32>&3#'&+"?626&"#!'.'!"&5463!>;26;2!2�P  P 	
92#.}S�P9:�:%L\B�� )spN/9oJ5 
!+D�`]�Bg�Y9�+�,�9%
Pk4P  P &�NnF!_7*}B<�{o0��&&�B;*<@$ucRRc�#@16#37c&�@@@
J"@*4�^`E�D�B�����o/8927
*@O�LC�!T!32�3X$�BJ@@@��&AS
0C59"'D/&�&D488$5A&�%O#!"&547>7>2$7>/.".'&'&2>^B�@B^>FFz�n_0P:P2\n�zFF>��R&�p^1P:P1^��&R
P2NMJMQ0Rr�.B^^B�	7:5]yPH!%%"FPy]5:7	���=4�QH!%%!H�t4=�<"-/ ?�1Pp+".'.'.?>;2>7$76&'&%.+"3!26#!"&54767>;2�'
+�~'*OJ%%JN,&x�'%^�M,EE,M7�ZE[��P*FF*P��:5
�
�^B�@B^){�$.MK%%KM.$+��X)o3"�a  22!]�4	I�>"">�,�&�S8J�B##B��12�`
��`B^^B�8&ra#11#$��R&��"&.2v%/%''%/%7%7'%7'/#&5'&&?&'&?&'&7%27674?6J�"�����0�<=���_gNU�?D��f���u�Y����G�b���7=^H^�`	�=v~yT������3����G���D��P�O	4F��ѭ����q������i_w\ހ�!1u�S���%V_-d�
���1=U{J8n~�r����'U4.#".'"3!264&"26+#!"&5463!232+32+32�0P373/./373P0T=@=T��֙�֙|`^B�@B^^B�B^`````*9deG-!

!-Ged9Iaa�l��lk���O��B^^B�B^^B�������	+Yi"&54622#!"&54>;2>+32+32+#!"&5463!2324&#!"3!26�֙�֙0.I/ OB��BO	-Q52-)&)-2�
``

``

`^B�@B^^B�B^`
�
�@

�
|k��kl����"=IYL)CggC0[jM4				
�
�
�
�
�B^^B�B^^B�
�@�

�@
���!1AQu4.#".'"3!24&"254&#!"3!2654&#!"3!2654&#!"3!26#!54&+"!54&+"!"&5463!2)P90,***,09P)J66S�����"��@��8��@^B��@�@��B^^B�B^U�kc9		9ck�U?�������@@88@@N�@B^````^B�B^^���!1AQu�#!"&4>32>72"&462#!"&=463!25#!"&=463!25#!"&=463!24&#!"3!546;2!546;2!26#!"&5463!2J6�6J)P90,***,09P)������"��@��8��@�
�@

`@@`
�^B�@B^^B�B^ՀUU�kc9		9c�������`@@�88�@@�2�

�@
````�@B^^B�B^^�(%.'"&' $&  #"$&6$ ��wC�ιCw�jJ~J�����>��������LlL�ś�JSSJ͛����>����6������LlL���$,  $&6654&$ 3 72&&  �lL������m�z�����z�B�l������>�������KlL�G���zz���G���>�����'7#!"&54>7&54>2  62654' '3�/U]B,ȍ����,B]U/OQ��н�Q������>�+X}��������}X�0b�Ӄ��ۚ�Ӆb0}�h��QQ��h�����>��f����f��#=#!"&4>3272"&462!3!26#!"&5463!;26=!2J6�6J)Q8P�P8Q)��������
�
�^B�@B^^B`�`B^V�VV�ld9KK9d��������`��
�@B^^B�B^``^���+;K[eu4.#"'"3!264&"254&#!"3!2654&#!"3!26%54&+";2654&#!"3!26!54&#!"!#!"&5463!2�"D/@�@/D"?,�,?�p�pp�p�@�����@����@����@�^B�@B^^B�B^D6]W2@@2W]67MM��pp�p��@@@@@@@@n`�@B^^B�B^^���+;K[eu#!"&54>3272"&462#!"&=463!2%#!"&=463!2+"&=46;25#!"&=463!2!3!26#!"&5463!2�?,�V,?"D/@�@/D"�p�pp�p�@�����@����@���
�
�^B�@B^^B�B^D7MM76]W2@@2W]֠pp�p��@@�@@@@�@@��`��
�@B^^B�B^^��A#"327.#"'63263#".'#"$&546$32326�������J9"65I).!1i���CC�u
+I�\Gw\B!al���݇���y�ǙV��/]:=B�>9�����+<F+a[le���Pn[A&JR7t�)��+�tH�������kFIK�e	� .��#"'&'>32%#!"&5463!2#"&54>54'&#"#"54654'.#"#"'.54>54'&'&543232654&432#"&54>764&'&'.54632� ?c��'p& ?b1w{2V	?#��&#9&�CY'&.&#+B

: &65&*2w�1GF1)2<)<'

(
BH=ӊ:NT :O	�)4:i F~b`e!}�U3i?fR����UX|'&'&I�c&Q
	*2U.L6*/
L:90%>..>%b>++�z7ymlw45)0	33J@0!!TFL����� P]=GS�-��kwm	!����*�(%6&692? $&6$ ��	' ����al�@l�������LlL���,&��EC
���h�$�������LlL���
/37;%"&546734&'4&" 67 54746 #5#5#5�p�pF:�:F�D<p�p<D�
����������
���������PppP<d��ud<M�-PppP�-�M����������Dž����9���������
/37;%"&546734&'4&" 67 54746 #5#5#5�p�pF:�:F�D<p�p<D�
����������
���������PppP<d��ud<M�-PppP�-�M����������Dž����9���������
/37;%"&546734&'4&" 67 54746 #5#5#5�p�pF:�:F�D<p�p<D�
����������
���������PppP<d��ud<M�-PppP�-�M����������Dž����9���������
/37;%"&5467534&'4&" 67 54746 #5#5#5�p�pF:�:F�D<p�p<D�
����������
���������PppP<d��d<M�-PppP�-�M����������Dž����9���������	+/37%"&54624&'4&" 67 54746 #5#5#5�p�pp�p�D<p�p<D�
����������
���������PppPOqqOM�-PppP�-�M����������Dž����9����������&.6>FNV^fnv~����"/&4?.7&#"!4>3267622"&4"&46262"&42"&4462"$2"&42"&4"&46262"&4"&46262"&42"&4$2"&42"&42"&4�

��

R

,H8Jfj��Q��hj�G^�R,

!4&&4&Z4&&4&�4&&4&��4&&4&&4&&44&&4&��4&&4&Z4&&4&�4&&4&��4&&4&�4&&4&��4&&4&&4&&4&Z4&&4&Z4&&4&

��

R

,[�cG�j�h��QRJ'A,

��&4&&4Z&4&&4Z&4&&4Z&4&&444&&4&�&4&&4Z&4&&4Z&4&&4Z&4&&4�&4&&4Z&4&&4Z&4&&4&&4&&4Z&4&&4Z&4&&4�%-5=EM}���������+"&=#!"'+"&=&="&4626"&462&"&462"&462&"&462&"&462#!"&=46;4632676/&?.7&#"!2"&462&"&462&"&462"&462&"&462&"&462"&462&"&462"&462��@?A�A?
@
�@R.�..R�@`�jlL.h)*��*$	%35K���..�..�.����u�vn�u���....��@@�j�N *��*.t2#K5���..R..R.��
@Hq '&'&54 &7676767654$'.766$76"&462&'&'&7>54.'.7>76�����������ȵ|�_ğ��yv���/ۃ�⃺����k]
:Bu�q��
CA
_k�ނ���XVo�bZZb�nW��|V	0 	Q2��-�
l��}���O		/	:�1���z	
q��%������z�G
4(

6�Ro�aą\�<

)4	J�}�������%!!#!"&5463!2�^B�@B^^B�B^�`�@B^^B�B^^���%#!"&=463!2^B�@B^^B�B^�B^^B�B^^�&))!32#!#!"&5463!463!2��`B^^B��^B�@B^^B`^B�B^�^B�@B^��B^^B�B^`B^^���#3%764/764/&"'&"2?2#!"&5463!2��

��

�

��

�

��

�

��
s^B�@B^^B�B^ג

��

�

��

�

��

�

��
�@B^^B�B^^���#'7"/"/&4?'&4?62762!!%#!"&5463!2�

��

�

��

�

��

�

��
�
�^B�@B^^B�B^��

��

�

��

�

��

�

��
��`�@B^^B�B^^�	! $&6$ .2�r��`�������LlL�f4��������LlL���#.C��&>"'&4762"/&4?62'"'&4762%'.>6.'.>6'>/>76&'&.'&7&'">?4'.677>7.>37654'&'67>776 $&6$ (4�Z�##
&##
&y�"�6&.JM@&� "(XE*$+8
jT<l$3-V<
2'.


-1
%#e"!Z�
+*)H	 8
(j

	#*
-ƷVv/kh?'��������MlM�$($�R#

&
"
#'#vZ@+&MbV$
�
G7
--)

R2T�
313dJ6@8lr2_�5m/."�G:=	)%5f0gt*2)?;CB66&, �	`48]USy������LlL���G6?>?3#'.'&!3!2>?3.'#!57>7'./5!27#'.#!"g�%%D-!gg<6W��WZe#1=/2*]Y3��-,����C1/Dx���] VF��I�q-H�����D2��NK'>*�%�R=f
07���=.
fD�]\|yu���,0>Seu#2#"'&5<>323#3#&'#334'."#"+236'&54.#"5#37326#!"&5463!2�		<	��zz�j��k-L+� )[$�8=".un/2 �^B�@B^^B�B^�5cy	
�
��(�ݔI�(8��?C�(3�>�� #"��($=�@B^^B�B^^0�K�S�&'.'&'./674&$#">&>?>'76'# "&#./.'7676767>76$w
.~ku�BR�]� T%z+",�|�ޟ���j<���)(!(	~ˣzF8"{���%%#5����)��}''�x��JF��0"H[$%��EJ#%
.Gk29(B13"?�@S)�5" �#9����dm�W"��;L�65R�A0@T.���$�}i`:f3A%%
BM<$q�:)BD	aa%`�]A&c|	�M��s!
Z
2}i[F&���**
< ��ʣsc"J<&Ns�F%���0@Wm6&'.6$.7>7$76".4>2.,&>6'"'&7>=GV:�e#:$?+%

q4����g
&3h�T`Zt�Q��м�QQ��м�pA������P1L������K!:<��}҈`d��l��b�,�9'


%%($!
���a3���)W)x
�������
о�QQ��о�QQ���cQ����ǡ-�җe)U�s2����XD\���ϼ�Yd����/?O_o���#"=#"=4;543#"=#"=4;543#"=#"=4;543#"=#"=4;543#"=#"=4;543%#!"&5463!2++532325++532325++532325++532325++53232�p00pp00pp00pp00pp00�8(��(88(@(80pp00pp00pp00pp00pp0� � � � � ��@(88(�(88� �� �� �� �� �/�Q�/&'%&/"&=.6?&?&'&6?'.>-#".6?'.>'&6'.>54627>%>76#"'%
%6��

2�7
2G
f���!)p&4&p)!��f
G2
7�2

��	*6���	"��
4�7
2G
f�!)p&4&p)!�f
G2
7�2

��"	���6*	�!k
3

j�&3
%,����*��&&ր*�9���%
3&�j

3
k!./!>��>$,*!k
3.j�&3
%�Ԝ9�*��&&ր*�ǜ,%
3&�j

3
k!*,$>��>!/.�&6.'&$	&76$76$�P��utۥiP��u��G��xy
��Զ�[xy
�-���_v١eN��uv١e	��=��u�ʦ�����[t7��8�X�
&6##'7-'%'&$  $6 $&6$ ��3��1�N��E0�����g��R�=|�����||�">"��������LlL����^��v!1f2i��Ђwg�fZQ�Q^>"�||�����||�w������LlL��&�Z�Xblw��������.'&>'&'&".'.'&&'&'&7>767>67>7626&'&>&'&>'.7>.676'&'&'&'.67.>7>6&'&676&'&676.676&'&>&'&676'.>6/4-LJg-$	6)j2%+QF)�b3FSP21DK2�AW")")�$??8A&A�E5lZm��=g�G2Sw*&>$5jD ���GH�yX/4F �r	1
	1�"�"!�l=6>��	6
,5./��'e



.*�|�Ed!
u&�&%&��	&��5d	
���))66@�C&8B@q��L?P^7	G-hI[q��:<�rS	U~97A_�IR`gp1	1	�;"("j?>"�T�6
,6 
&/`���LwQ'�	
��A	^	�	�	"�		$&	_	��	y		�	*�	<Copyright Dave Gandy 2016. All rights reserved.Copyright Dave Gandy 2016. All rights reserved.FontAwesomeFontAwesomeRegularRegularFONTLAB:OTFEXPORTFONTLAB:OTFEXPORTFontAwesomeFontAwesomeVersion 4.7.0 2016Version 4.7.0 2016FontAwesomeFontAwesomePlease refer to the Copyright section for the font trademark attribution notices.Please refer to the Copyright section for the font trademark attribution notices.Fort AwesomeFort AwesomeDave GandyDave Gandyhttp://fontawesome.iohttp://fontawesome.iohttp://fontawesome.io/license/http://fontawesome.io/license/����������	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`ab�
cdefghijklmnopqrstuvwxyz{|}~��������������������������������������������������������������������������������������������������������������������������������"	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRS�TUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~��������������������������������������������������������������������������������������������������������������������������������	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~���������������������������������������������������glassmusicsearchenvelopeheartstar
star_emptyuserfilmth_largethth_listokremovezoom_inzoom_outoffsignalcogtrashhomefile_alttimeroaddownload_altdownloaduploadinboxplay_circlerepeatrefreshlist_altlockflag
headphones
volume_offvolume_down	volume_upqrcodebarcodetagtagsbookbookmarkprintcamerafontbolditalictext_height
text_width
align_leftalign_centeralign_right
align_justifylistindent_leftindent_rightfacetime_videopicturepencil
map_markeradjusttinteditsharecheckmove
step_backward
fast_backwardbackwardplaypausestopforwardfast_forwardstep_forwardejectchevron_left
chevron_right	plus_sign
minus_signremove_signok_sign
question_sign	info_sign
screenshot
remove_circle	ok_circle
ban_circle
arrow_leftarrow_rightarrow_up
arrow_down	share_altresize_fullresize_smallexclamation_signgiftleaffireeye_open	eye_closewarning_signplanecalendarrandomcommentmagnet
chevron_upchevron_downretweet
shopping_cartfolder_closefolder_openresize_verticalresize_horizontal	bar_charttwitter_sign
facebook_signcamera_retrokeycogscomments
thumbs_up_altthumbs_down_alt	star_halfheart_emptysignout
linkedin_signpushpin
external_linksignintrophygithub_sign
upload_altlemonphonecheck_emptybookmark_empty
phone_signtwitterfacebookgithubunlockcredit_cardrsshddbullhornbellcertificate
hand_right	hand_lefthand_up	hand_downcircle_arrow_leftcircle_arrow_rightcircle_arrow_upcircle_arrow_downglobewrenchtasksfilter	briefcase
fullscreengrouplinkcloudbeakercutcopy
paper_clipsave
sign_blankreorderulol
strikethrough	underlinetablemagictruck	pinterestpinterest_signgoogle_plus_signgoogle_plusmoney
caret_downcaret_up
caret_leftcaret_rightcolumnssort	sort_downsort_upenvelope_altlinkedinundolegal	dashboardcomment_altcomments_altboltsitemapumbrellapaste
light_bulbexchangecloud_downloadcloud_uploaduser_mdstethoscopesuitcasebell_altcoffeefood
file_text_altbuildinghospital	ambulancemedkitfighter_jetbeerh_signf0fedouble_angle_leftdouble_angle_rightdouble_angle_updouble_angle_down
angle_leftangle_rightangle_up
angle_downdesktoplaptoptabletmobile_phonecircle_blank
quote_leftquote_rightspinnercirclereply
github_altfolder_close_altfolder_open_alt
expand_altcollapse_altsmilefrownmehgamepadkeyboardflag_altflag_checkeredterminalcode	reply_allstar_half_emptylocation_arrowcrop	code_forkunlink_279exclamationsuperscript	subscript_283puzzle_piece
microphonemicrophone_offshieldcalendar_emptyfire_extinguisherrocketmaxcdnchevron_sign_leftchevron_sign_rightchevron_sign_upchevron_sign_downhtml5css3anchor
unlock_altbullseyeellipsis_horizontalellipsis_vertical_303	play_signticketminus_sign_altcheck_minuslevel_up
level_down
check_sign	edit_sign_312
share_signcompasscollapsecollapse_top_317eurgbpusdinrjpyrubkrwbtcfile	file_textsort_by_alphabet_329sort_by_attributessort_by_attributes_alt
sort_by_ordersort_by_order_alt_334_335youtube_signyoutubexing	xing_signyoutube_playdropbox
stackexchange	instagramflickradnf171bitbucket_signtumblrtumblr_signlong_arrow_down
long_arrow_uplong_arrow_leftlong_arrow_rightwindowsandroidlinuxdribbleskype
foursquaretrellofemalemalegittipsun_366archivebugvkweiborenren_372stack_exchange_374arrow_circle_alt_left_376dot_circle_alt_378vimeo_square_380
plus_square_o_382_383_384_385_386_387_388_389uniF1A0f1a1_392_393f1a4_395_396_397_398_399_400f1ab_402_403_404uniF1B1_406_407_408_409_410_411_412_413_414_415_416_417_418_419uniF1C0uniF1C1_422_423_424_425_426_427_428_429_430_431_432_433_434uniF1D0uniF1D1uniF1D2_438_439uniF1D5uniF1D6uniF1D7_443_444_445_446_447_448_449uniF1E0_451_452_453_454_455_456_457_458_459_460_461_462_463_464uniF1F0_466_467f1f3_469_470_471_472_473_474_475_476f1fc_478_479_480_481_482_483_484_485_486_487_488_489_490_491_492_493_494f210_496f212_498_499_500_501_502_503_504_505_506_507_508_509venus_511_512_513_514_515_516_517_518_519_520_521_522_523_524_525_526_527_528_529_530_531_532_533_534_535_536_537_538_539_540_541_542_543_544_545_546_547_548_549_550_551_552_553_554_555_556_557_558_559_560_561_562_563_564_565_566_567_568_569f260f261_572f263_574_575_576_577_578_579_580_581_582_583_584_585_586_587_588_589_590_591_592_593_594_595_596_597_598f27euniF280uniF281_602_603_604uniF285uniF286_607_608_609_610_611_612_613_614_615_616_617_618_619_620_621_622_623_624_625_626_627_628_629uniF2A0uniF2A1uniF2A2uniF2A3uniF2A4uniF2A5uniF2A6uniF2A7uniF2A8uniF2A9uniF2AAuniF2ABuniF2ACuniF2ADuniF2AEuniF2B0uniF2B1uniF2B2uniF2B3uniF2B4uniF2B5uniF2B6uniF2B7uniF2B8uniF2B9uniF2BAuniF2BBuniF2BCuniF2BDuniF2BEuniF2C0uniF2C1uniF2C2uniF2C3uniF2C4uniF2C5uniF2C6uniF2C7uniF2C8uniF2C9uniF2CAuniF2CBuniF2CCuniF2CDuniF2CEuniF2D0uniF2D1uniF2D2uniF2D3uniF2D4uniF2D5uniF2D6uniF2D7uniF2D8uniF2D9uniF2DAuniF2DBuniF2DCuniF2DDuniF2DEuniF2E0uniF2E1uniF2E2uniF2E3uniF2E4uniF2E5uniF2E6uniF2E7_698uniF2E9uniF2EAuniF2EBuniF2ECuniF2EDuniF2EE����=���O<0�1h�PK`x1\��;_����$assets/fonts/fontawesome-webfont.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>
<metadata>
Created by FontForge 20120731 at Mon Oct 24 17:37:40 2016
 By ,,,
Copyright Dave Gandy 2016. All rights reserved.
</metadata>
<defs>
<font id="FontAwesome" horiz-adv-x="1536" >
  <font-face 
    font-family="FontAwesome"
    font-weight="400"
    font-stretch="normal"
    units-per-em="1792"
    panose-1="0 0 0 0 0 0 0 0 0 0"
    ascent="1536"
    descent="-256"
    bbox="-1.02083 -256.962 2304.6 1537.02"
    underline-thickness="0"
    underline-position="0"
    unicode-range="U+0020-F500"
  />
<missing-glyph horiz-adv-x="896" 
d="M224 112h448v1312h-448v-1312zM112 0v1536h672v-1536h-672z" />
    <glyph glyph-name=".notdef" horiz-adv-x="896" 
d="M224 112h448v1312h-448v-1312zM112 0v1536h672v-1536h-672z" />
    <glyph glyph-name=".null" horiz-adv-x="0" 
 />
    <glyph glyph-name="nonmarkingreturn" horiz-adv-x="597" 
 />
    <glyph glyph-name="space" unicode=" " horiz-adv-x="448" 
 />
    <glyph glyph-name="dieresis" unicode="&#xa8;" horiz-adv-x="1792" 
 />
    <glyph glyph-name="copyright" unicode="&#xa9;" horiz-adv-x="1792" 
 />
    <glyph glyph-name="registered" unicode="&#xae;" horiz-adv-x="1792" 
 />
    <glyph glyph-name="acute" unicode="&#xb4;" horiz-adv-x="1792" 
 />
    <glyph glyph-name="AE" unicode="&#xc6;" horiz-adv-x="1792" 
 />
    <glyph glyph-name="Oslash" unicode="&#xd8;" horiz-adv-x="1792" 
 />
    <glyph glyph-name="trademark" unicode="&#x2122;" horiz-adv-x="1792" 
 />
    <glyph glyph-name="infinity" unicode="&#x221e;" horiz-adv-x="1792" 
 />
    <glyph glyph-name="notequal" unicode="&#x2260;" horiz-adv-x="1792" 
 />
    <glyph glyph-name="glass" unicode="&#xf000;" horiz-adv-x="1792" 
d="M1699 1350q0 -35 -43 -78l-632 -632v-768h320q26 0 45 -19t19 -45t-19 -45t-45 -19h-896q-26 0 -45 19t-19 45t19 45t45 19h320v768l-632 632q-43 43 -43 78q0 23 18 36.5t38 17.5t43 4h1408q23 0 43 -4t38 -17.5t18 -36.5z" />
    <glyph glyph-name="music" unicode="&#xf001;" 
d="M1536 1312v-1120q0 -50 -34 -89t-86 -60.5t-103.5 -32t-96.5 -10.5t-96.5 10.5t-103.5 32t-86 60.5t-34 89t34 89t86 60.5t103.5 32t96.5 10.5q105 0 192 -39v537l-768 -237v-709q0 -50 -34 -89t-86 -60.5t-103.5 -32t-96.5 -10.5t-96.5 10.5t-103.5 32t-86 60.5t-34 89
t34 89t86 60.5t103.5 32t96.5 10.5q105 0 192 -39v967q0 31 19 56.5t49 35.5l832 256q12 4 28 4q40 0 68 -28t28 -68z" />
    <glyph glyph-name="search" unicode="&#xf002;" horiz-adv-x="1664" 
d="M1152 704q0 185 -131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5t316.5 131.5t131.5 316.5zM1664 -128q0 -52 -38 -90t-90 -38q-54 0 -90 38l-343 342q-179 -124 -399 -124q-143 0 -273.5 55.5t-225 150t-150 225t-55.5 273.5
t55.5 273.5t150 225t225 150t273.5 55.5t273.5 -55.5t225 -150t150 -225t55.5 -273.5q0 -220 -124 -399l343 -343q37 -37 37 -90z" />
    <glyph glyph-name="envelope" unicode="&#xf003;" horiz-adv-x="1792" 
d="M1664 32v768q-32 -36 -69 -66q-268 -206 -426 -338q-51 -43 -83 -67t-86.5 -48.5t-102.5 -24.5h-1h-1q-48 0 -102.5 24.5t-86.5 48.5t-83 67q-158 132 -426 338q-37 30 -69 66v-768q0 -13 9.5 -22.5t22.5 -9.5h1472q13 0 22.5 9.5t9.5 22.5zM1664 1083v11v13.5t-0.5 13
t-3 12.5t-5.5 9t-9 7.5t-14 2.5h-1472q-13 0 -22.5 -9.5t-9.5 -22.5q0 -168 147 -284q193 -152 401 -317q6 -5 35 -29.5t46 -37.5t44.5 -31.5t50.5 -27.5t43 -9h1h1q20 0 43 9t50.5 27.5t44.5 31.5t46 37.5t35 29.5q208 165 401 317q54 43 100.5 115.5t46.5 131.5z
M1792 1120v-1088q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1472q66 0 113 -47t47 -113z" />
    <glyph glyph-name="heart" unicode="&#xf004;" horiz-adv-x="1792" 
d="M896 -128q-26 0 -44 18l-624 602q-10 8 -27.5 26t-55.5 65.5t-68 97.5t-53.5 121t-23.5 138q0 220 127 344t351 124q62 0 126.5 -21.5t120 -58t95.5 -68.5t76 -68q36 36 76 68t95.5 68.5t120 58t126.5 21.5q224 0 351 -124t127 -344q0 -221 -229 -450l-623 -600
q-18 -18 -44 -18z" />
    <glyph glyph-name="star" unicode="&#xf005;" horiz-adv-x="1664" 
d="M1664 889q0 -22 -26 -48l-363 -354l86 -500q1 -7 1 -20q0 -21 -10.5 -35.5t-30.5 -14.5q-19 0 -40 12l-449 236l-449 -236q-22 -12 -40 -12q-21 0 -31.5 14.5t-10.5 35.5q0 6 2 20l86 500l-364 354q-25 27 -25 48q0 37 56 46l502 73l225 455q19 41 49 41t49 -41l225 -455
l502 -73q56 -9 56 -46z" />
    <glyph glyph-name="star_empty" unicode="&#xf006;" horiz-adv-x="1664" 
d="M1137 532l306 297l-422 62l-189 382l-189 -382l-422 -62l306 -297l-73 -421l378 199l377 -199zM1664 889q0 -22 -26 -48l-363 -354l86 -500q1 -7 1 -20q0 -50 -41 -50q-19 0 -40 12l-449 236l-449 -236q-22 -12 -40 -12q-21 0 -31.5 14.5t-10.5 35.5q0 6 2 20l86 500
l-364 354q-25 27 -25 48q0 37 56 46l502 73l225 455q19 41 49 41t49 -41l225 -455l502 -73q56 -9 56 -46z" />
    <glyph glyph-name="user" unicode="&#xf007;" horiz-adv-x="1280" 
d="M1280 137q0 -109 -62.5 -187t-150.5 -78h-854q-88 0 -150.5 78t-62.5 187q0 85 8.5 160.5t31.5 152t58.5 131t94 89t134.5 34.5q131 -128 313 -128t313 128q76 0 134.5 -34.5t94 -89t58.5 -131t31.5 -152t8.5 -160.5zM1024 1024q0 -159 -112.5 -271.5t-271.5 -112.5
t-271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5t271.5 -112.5t112.5 -271.5z" />
    <glyph glyph-name="film" unicode="&#xf008;" horiz-adv-x="1920" 
d="M384 -64v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM384 320v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM384 704v128q0 26 -19 45t-45 19h-128
q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1408 -64v512q0 26 -19 45t-45 19h-768q-26 0 -45 -19t-19 -45v-512q0 -26 19 -45t45 -19h768q26 0 45 19t19 45zM384 1088v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45
t45 -19h128q26 0 45 19t19 45zM1792 -64v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1408 704v512q0 26 -19 45t-45 19h-768q-26 0 -45 -19t-19 -45v-512q0 -26 19 -45t45 -19h768q26 0 45 19t19 45zM1792 320v128
q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1792 704v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1792 1088v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19
t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1920 1248v-1344q0 -66 -47 -113t-113 -47h-1600q-66 0 -113 47t-47 113v1344q0 66 47 113t113 47h1600q66 0 113 -47t47 -113z" />
    <glyph glyph-name="th_large" unicode="&#xf009;" horiz-adv-x="1664" 
d="M768 512v-384q0 -52 -38 -90t-90 -38h-512q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h512q52 0 90 -38t38 -90zM768 1280v-384q0 -52 -38 -90t-90 -38h-512q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h512q52 0 90 -38t38 -90zM1664 512v-384q0 -52 -38 -90t-90 -38
h-512q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h512q52 0 90 -38t38 -90zM1664 1280v-384q0 -52 -38 -90t-90 -38h-512q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h512q52 0 90 -38t38 -90z" />
    <glyph glyph-name="th" unicode="&#xf00a;" horiz-adv-x="1792" 
d="M512 288v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM512 800v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1152 288v-192q0 -40 -28 -68t-68 -28h-320
q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM512 1312v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1152 800v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28
h320q40 0 68 -28t28 -68zM1792 288v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1152 1312v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1792 800v-192
q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1792 1312v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68z" />
    <glyph glyph-name="th_list" unicode="&#xf00b;" horiz-adv-x="1792" 
d="M512 288v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM512 800v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1792 288v-192q0 -40 -28 -68t-68 -28h-960
q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h960q40 0 68 -28t28 -68zM512 1312v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1792 800v-192q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v192q0 40 28 68t68 28
h960q40 0 68 -28t28 -68zM1792 1312v-192q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h960q40 0 68 -28t28 -68z" />
    <glyph glyph-name="ok" unicode="&#xf00c;" horiz-adv-x="1792" 
d="M1671 970q0 -40 -28 -68l-724 -724l-136 -136q-28 -28 -68 -28t-68 28l-136 136l-362 362q-28 28 -28 68t28 68l136 136q28 28 68 28t68 -28l294 -295l656 657q28 28 68 28t68 -28l136 -136q28 -28 28 -68z" />
    <glyph glyph-name="remove" unicode="&#xf00d;" horiz-adv-x="1408" 
d="M1298 214q0 -40 -28 -68l-136 -136q-28 -28 -68 -28t-68 28l-294 294l-294 -294q-28 -28 -68 -28t-68 28l-136 136q-28 28 -28 68t28 68l294 294l-294 294q-28 28 -28 68t28 68l136 136q28 28 68 28t68 -28l294 -294l294 294q28 28 68 28t68 -28l136 -136q28 -28 28 -68
t-28 -68l-294 -294l294 -294q28 -28 28 -68z" />
    <glyph glyph-name="zoom_in" unicode="&#xf00e;" horiz-adv-x="1664" 
d="M1024 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-224v-224q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v224h-224q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h224v224q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5v-224h224
q13 0 22.5 -9.5t9.5 -22.5zM1152 704q0 185 -131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5t316.5 131.5t131.5 316.5zM1664 -128q0 -53 -37.5 -90.5t-90.5 -37.5q-54 0 -90 38l-343 342q-179 -124 -399 -124q-143 0 -273.5 55.5
t-225 150t-150 225t-55.5 273.5t55.5 273.5t150 225t225 150t273.5 55.5t273.5 -55.5t225 -150t150 -225t55.5 -273.5q0 -220 -124 -399l343 -343q37 -37 37 -90z" />
    <glyph glyph-name="zoom_out" unicode="&#xf010;" horiz-adv-x="1664" 
d="M1024 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-576q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h576q13 0 22.5 -9.5t9.5 -22.5zM1152 704q0 185 -131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5t316.5 131.5t131.5 316.5z
M1664 -128q0 -53 -37.5 -90.5t-90.5 -37.5q-54 0 -90 38l-343 342q-179 -124 -399 -124q-143 0 -273.5 55.5t-225 150t-150 225t-55.5 273.5t55.5 273.5t150 225t225 150t273.5 55.5t273.5 -55.5t225 -150t150 -225t55.5 -273.5q0 -220 -124 -399l343 -343q37 -37 37 -90z
" />
    <glyph glyph-name="off" unicode="&#xf011;" 
d="M1536 640q0 -156 -61 -298t-164 -245t-245 -164t-298 -61t-298 61t-245 164t-164 245t-61 298q0 182 80.5 343t226.5 270q43 32 95.5 25t83.5 -50q32 -42 24.5 -94.5t-49.5 -84.5q-98 -74 -151.5 -181t-53.5 -228q0 -104 40.5 -198.5t109.5 -163.5t163.5 -109.5
t198.5 -40.5t198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5q0 121 -53.5 228t-151.5 181q-42 32 -49.5 84.5t24.5 94.5q31 43 84 50t95 -25q146 -109 226.5 -270t80.5 -343zM896 1408v-640q0 -52 -38 -90t-90 -38t-90 38t-38 90v640q0 52 38 90t90 38t90 -38t38 -90z" />
    <glyph glyph-name="signal" unicode="&#xf012;" horiz-adv-x="1792" 
d="M256 96v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM640 224v-320q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v320q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1024 480v-576q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23
v576q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1408 864v-960q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v960q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1792 1376v-1472q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v1472q0 14 9 23t23 9h192q14 0 23 -9t9 -23z" />
    <glyph glyph-name="cog" unicode="&#xf013;" 
d="M1024 640q0 106 -75 181t-181 75t-181 -75t-75 -181t75 -181t181 -75t181 75t75 181zM1536 749v-222q0 -12 -8 -23t-20 -13l-185 -28q-19 -54 -39 -91q35 -50 107 -138q10 -12 10 -25t-9 -23q-27 -37 -99 -108t-94 -71q-12 0 -26 9l-138 108q-44 -23 -91 -38
q-16 -136 -29 -186q-7 -28 -36 -28h-222q-14 0 -24.5 8.5t-11.5 21.5l-28 184q-49 16 -90 37l-141 -107q-10 -9 -25 -9q-14 0 -25 11q-126 114 -165 168q-7 10 -7 23q0 12 8 23q15 21 51 66.5t54 70.5q-27 50 -41 99l-183 27q-13 2 -21 12.5t-8 23.5v222q0 12 8 23t19 13
l186 28q14 46 39 92q-40 57 -107 138q-10 12 -10 24q0 10 9 23q26 36 98.5 107.5t94.5 71.5q13 0 26 -10l138 -107q44 23 91 38q16 136 29 186q7 28 36 28h222q14 0 24.5 -8.5t11.5 -21.5l28 -184q49 -16 90 -37l142 107q9 9 24 9q13 0 25 -10q129 -119 165 -170q7 -8 7 -22
q0 -12 -8 -23q-15 -21 -51 -66.5t-54 -70.5q26 -50 41 -98l183 -28q13 -2 21 -12.5t8 -23.5z" />
    <glyph glyph-name="trash" unicode="&#xf014;" horiz-adv-x="1408" 
d="M512 800v-576q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM768 800v-576q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM1024 800v-576q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v576
q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM1152 76v948h-896v-948q0 -22 7 -40.5t14.5 -27t10.5 -8.5h832q3 0 10.5 8.5t14.5 27t7 40.5zM480 1152h448l-48 117q-7 9 -17 11h-317q-10 -2 -17 -11zM1408 1120v-64q0 -14 -9 -23t-23 -9h-96v-948q0 -83 -47 -143.5t-113 -60.5h-832
q-66 0 -113 58.5t-47 141.5v952h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h309l70 167q15 37 54 63t79 26h320q40 0 79 -26t54 -63l70 -167h309q14 0 23 -9t9 -23z" />
    <glyph glyph-name="home" unicode="&#xf015;" horiz-adv-x="1664" 
d="M1408 544v-480q0 -26 -19 -45t-45 -19h-384v384h-256v-384h-384q-26 0 -45 19t-19 45v480q0 1 0.5 3t0.5 3l575 474l575 -474q1 -2 1 -6zM1631 613l-62 -74q-8 -9 -21 -11h-3q-13 0 -21 7l-692 577l-692 -577q-12 -8 -24 -7q-13 2 -21 11l-62 74q-8 10 -7 23.5t11 21.5
l719 599q32 26 76 26t76 -26l244 -204v195q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-408l219 -182q10 -8 11 -21.5t-7 -23.5z" />
    <glyph glyph-name="file_alt" unicode="&#xf016;" 
d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z
" />
    <glyph glyph-name="time" unicode="&#xf017;" 
d="M896 992v-448q0 -14 -9 -23t-23 -9h-320q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h224v352q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640
q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
    <glyph glyph-name="road" unicode="&#xf018;" horiz-adv-x="1920" 
d="M1111 540v4l-24 320q-1 13 -11 22.5t-23 9.5h-186q-13 0 -23 -9.5t-11 -22.5l-24 -320v-4q-1 -12 8 -20t21 -8h244q12 0 21 8t8 20zM1870 73q0 -73 -46 -73h-704q13 0 22 9.5t8 22.5l-20 256q-1 13 -11 22.5t-23 9.5h-272q-13 0 -23 -9.5t-11 -22.5l-20 -256
q-1 -13 8 -22.5t22 -9.5h-704q-46 0 -46 73q0 54 26 116l417 1044q8 19 26 33t38 14h339q-13 0 -23 -9.5t-11 -22.5l-15 -192q-1 -14 8 -23t22 -9h166q13 0 22 9t8 23l-15 192q-1 13 -11 22.5t-23 9.5h339q20 0 38 -14t26 -33l417 -1044q26 -62 26 -116z" />
    <glyph glyph-name="download_alt" unicode="&#xf019;" horiz-adv-x="1664" 
d="M1280 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1536 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1664 416v-320q0 -40 -28 -68t-68 -28h-1472q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h465l135 -136
q58 -56 136 -56t136 56l136 136h464q40 0 68 -28t28 -68zM1339 985q17 -41 -14 -70l-448 -448q-18 -19 -45 -19t-45 19l-448 448q-31 29 -14 70q17 39 59 39h256v448q0 26 19 45t45 19h256q26 0 45 -19t19 -45v-448h256q42 0 59 -39z" />
    <glyph glyph-name="download" unicode="&#xf01a;" 
d="M1120 608q0 -12 -10 -24l-319 -319q-11 -9 -23 -9t-23 9l-320 320q-15 16 -7 35q8 20 30 20h192v352q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-352h192q14 0 23 -9t9 -23zM768 1184q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273
t-73 273t-198 198t-273 73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
    <glyph glyph-name="upload" unicode="&#xf01b;" 
d="M1118 660q-8 -20 -30 -20h-192v-352q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v352h-192q-14 0 -23 9t-9 23q0 12 10 24l319 319q11 9 23 9t23 -9l320 -320q15 -16 7 -35zM768 1184q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198
t73 273t-73 273t-198 198t-273 73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
    <glyph glyph-name="inbox" unicode="&#xf01c;" 
d="M1023 576h316q-1 3 -2.5 8.5t-2.5 7.5l-212 496h-708l-212 -496q-1 -3 -2.5 -8.5t-2.5 -7.5h316l95 -192h320zM1536 546v-482q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v482q0 62 25 123l238 552q10 25 36.5 42t52.5 17h832q26 0 52.5 -17t36.5 -42l238 -552
q25 -61 25 -123z" />
    <glyph glyph-name="play_circle" unicode="&#xf01d;" 
d="M1184 640q0 -37 -32 -55l-544 -320q-15 -9 -32 -9q-16 0 -32 8q-32 19 -32 56v640q0 37 32 56q33 18 64 -1l544 -320q32 -18 32 -55zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640
q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
    <glyph glyph-name="repeat" unicode="&#xf01e;" 
d="M1536 1280v-448q0 -26 -19 -45t-45 -19h-448q-42 0 -59 40q-17 39 14 69l138 138q-148 137 -349 137q-104 0 -198.5 -40.5t-163.5 -109.5t-109.5 -163.5t-40.5 -198.5t40.5 -198.5t109.5 -163.5t163.5 -109.5t198.5 -40.5q119 0 225 52t179 147q7 10 23 12q15 0 25 -9
l137 -138q9 -8 9.5 -20.5t-7.5 -22.5q-109 -132 -264 -204.5t-327 -72.5q-156 0 -298 61t-245 164t-164 245t-61 298t61 298t164 245t245 164t298 61q147 0 284.5 -55.5t244.5 -156.5l130 129q29 31 70 14q39 -17 39 -59z" />
    <glyph glyph-name="refresh" unicode="&#xf021;" 
d="M1511 480q0 -5 -1 -7q-64 -268 -268 -434.5t-478 -166.5q-146 0 -282.5 55t-243.5 157l-129 -129q-19 -19 -45 -19t-45 19t-19 45v448q0 26 19 45t45 19h448q26 0 45 -19t19 -45t-19 -45l-137 -137q71 -66 161 -102t187 -36q134 0 250 65t186 179q11 17 53 117
q8 23 30 23h192q13 0 22.5 -9.5t9.5 -22.5zM1536 1280v-448q0 -26 -19 -45t-45 -19h-448q-26 0 -45 19t-19 45t19 45l138 138q-148 137 -349 137q-134 0 -250 -65t-186 -179q-11 -17 -53 -117q-8 -23 -30 -23h-199q-13 0 -22.5 9.5t-9.5 22.5v7q65 268 270 434.5t480 166.5
q146 0 284 -55.5t245 -156.5l130 129q19 19 45 19t45 -19t19 -45z" />
    <glyph glyph-name="list_alt" unicode="&#xf022;" horiz-adv-x="1792" 
d="M384 352v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 608v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
M384 864v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1536 352v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-960q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h960q13 0 22.5 -9.5t9.5 -22.5z
M1536 608v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-960q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h960q13 0 22.5 -9.5t9.5 -22.5zM1536 864v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-960q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h960q13 0 22.5 -9.5
t9.5 -22.5zM1664 160v832q0 13 -9.5 22.5t-22.5 9.5h-1472q-13 0 -22.5 -9.5t-9.5 -22.5v-832q0 -13 9.5 -22.5t22.5 -9.5h1472q13 0 22.5 9.5t9.5 22.5zM1792 1248v-1088q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1472q66 0 113 -47
t47 -113z" />
    <glyph glyph-name="lock" unicode="&#xf023;" horiz-adv-x="1152" 
d="M320 768h512v192q0 106 -75 181t-181 75t-181 -75t-75 -181v-192zM1152 672v-576q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v576q0 40 28 68t68 28h32v192q0 184 132 316t316 132t316 -132t132 -316v-192h32q40 0 68 -28t28 -68z" />
    <glyph glyph-name="flag" unicode="&#xf024;" horiz-adv-x="1792" 
d="M320 1280q0 -72 -64 -110v-1266q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v1266q-64 38 -64 110q0 53 37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1792 1216v-763q0 -25 -12.5 -38.5t-39.5 -27.5q-215 -116 -369 -116q-61 0 -123.5 22t-108.5 48
t-115.5 48t-142.5 22q-192 0 -464 -146q-17 -9 -33 -9q-26 0 -45 19t-19 45v742q0 32 31 55q21 14 79 43q236 120 421 120q107 0 200 -29t219 -88q38 -19 88 -19q54 0 117.5 21t110 47t88 47t54.5 21q26 0 45 -19t19 -45z" />
    <glyph glyph-name="headphones" unicode="&#xf025;" horiz-adv-x="1664" 
d="M1664 650q0 -166 -60 -314l-20 -49l-185 -33q-22 -83 -90.5 -136.5t-156.5 -53.5v-32q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-32q71 0 130 -35.5t93 -95.5l68 12q29 95 29 193q0 148 -88 279t-236.5 209t-315.5 78
t-315.5 -78t-236.5 -209t-88 -279q0 -98 29 -193l68 -12q34 60 93 95.5t130 35.5v32q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-576q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v32q-88 0 -156.5 53.5t-90.5 136.5l-185 33l-20 49q-60 148 -60 314q0 151 67 291t179 242.5
t266 163.5t320 61t320 -61t266 -163.5t179 -242.5t67 -291z" />
    <glyph glyph-name="volume_off" unicode="&#xf026;" horiz-adv-x="768" 
d="M768 1184v-1088q0 -26 -19 -45t-45 -19t-45 19l-333 333h-262q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h262l333 333q19 19 45 19t45 -19t19 -45z" />
    <glyph glyph-name="volume_down" unicode="&#xf027;" horiz-adv-x="1152" 
d="M768 1184v-1088q0 -26 -19 -45t-45 -19t-45 19l-333 333h-262q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h262l333 333q19 19 45 19t45 -19t19 -45zM1152 640q0 -76 -42.5 -141.5t-112.5 -93.5q-10 -5 -25 -5q-26 0 -45 18.5t-19 45.5q0 21 12 35.5t29 25t34 23t29 36
t12 56.5t-12 56.5t-29 36t-34 23t-29 25t-12 35.5q0 27 19 45.5t45 18.5q15 0 25 -5q70 -27 112.5 -93t42.5 -142z" />
    <glyph glyph-name="volume_up" unicode="&#xf028;" horiz-adv-x="1664" 
d="M768 1184v-1088q0 -26 -19 -45t-45 -19t-45 19l-333 333h-262q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h262l333 333q19 19 45 19t45 -19t19 -45zM1152 640q0 -76 -42.5 -141.5t-112.5 -93.5q-10 -5 -25 -5q-26 0 -45 18.5t-19 45.5q0 21 12 35.5t29 25t34 23t29 36
t12 56.5t-12 56.5t-29 36t-34 23t-29 25t-12 35.5q0 27 19 45.5t45 18.5q15 0 25 -5q70 -27 112.5 -93t42.5 -142zM1408 640q0 -153 -85 -282.5t-225 -188.5q-13 -5 -25 -5q-27 0 -46 19t-19 45q0 39 39 59q56 29 76 44q74 54 115.5 135.5t41.5 173.5t-41.5 173.5
t-115.5 135.5q-20 15 -76 44q-39 20 -39 59q0 26 19 45t45 19q13 0 26 -5q140 -59 225 -188.5t85 -282.5zM1664 640q0 -230 -127 -422.5t-338 -283.5q-13 -5 -26 -5q-26 0 -45 19t-19 45q0 36 39 59q7 4 22.5 10.5t22.5 10.5q46 25 82 51q123 91 192 227t69 289t-69 289
t-192 227q-36 26 -82 51q-7 4 -22.5 10.5t-22.5 10.5q-39 23 -39 59q0 26 19 45t45 19q13 0 26 -5q211 -91 338 -283.5t127 -422.5z" />
    <glyph glyph-name="qrcode" unicode="&#xf029;" horiz-adv-x="1408" 
d="M384 384v-128h-128v128h128zM384 1152v-128h-128v128h128zM1152 1152v-128h-128v128h128zM128 129h384v383h-384v-383zM128 896h384v384h-384v-384zM896 896h384v384h-384v-384zM640 640v-640h-640v640h640zM1152 128v-128h-128v128h128zM1408 128v-128h-128v128h128z
M1408 640v-384h-384v128h-128v-384h-128v640h384v-128h128v128h128zM640 1408v-640h-640v640h640zM1408 1408v-640h-640v640h640z" />
    <glyph glyph-name="barcode" unicode="&#xf02a;" horiz-adv-x="1792" 
d="M63 0h-63v1408h63v-1408zM126 1h-32v1407h32v-1407zM220 1h-31v1407h31v-1407zM377 1h-31v1407h31v-1407zM534 1h-62v1407h62v-1407zM660 1h-31v1407h31v-1407zM723 1h-31v1407h31v-1407zM786 1h-31v1407h31v-1407zM943 1h-63v1407h63v-1407zM1100 1h-63v1407h63v-1407z
M1226 1h-63v1407h63v-1407zM1352 1h-63v1407h63v-1407zM1446 1h-63v1407h63v-1407zM1635 1h-94v1407h94v-1407zM1698 1h-32v1407h32v-1407zM1792 0h-63v1408h63v-1408z" />
    <glyph glyph-name="tag" unicode="&#xf02b;" 
d="M448 1088q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1515 512q0 -53 -37 -90l-491 -492q-39 -37 -91 -37q-53 0 -90 37l-715 716q-38 37 -64.5 101t-26.5 117v416q0 52 38 90t90 38h416q53 0 117 -26.5t102 -64.5
l715 -714q37 -39 37 -91z" />
    <glyph glyph-name="tags" unicode="&#xf02c;" horiz-adv-x="1920" 
d="M448 1088q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1515 512q0 -53 -37 -90l-491 -492q-39 -37 -91 -37q-53 0 -90 37l-715 716q-38 37 -64.5 101t-26.5 117v416q0 52 38 90t90 38h416q53 0 117 -26.5t102 -64.5
l715 -714q37 -39 37 -91zM1899 512q0 -53 -37 -90l-491 -492q-39 -37 -91 -37q-36 0 -59 14t-53 45l470 470q37 37 37 90q0 52 -37 91l-715 714q-38 38 -102 64.5t-117 26.5h224q53 0 117 -26.5t102 -64.5l715 -714q37 -39 37 -91z" />
    <glyph glyph-name="book" unicode="&#xf02d;" horiz-adv-x="1664" 
d="M1639 1058q40 -57 18 -129l-275 -906q-19 -64 -76.5 -107.5t-122.5 -43.5h-923q-77 0 -148.5 53.5t-99.5 131.5q-24 67 -2 127q0 4 3 27t4 37q1 8 -3 21.5t-3 19.5q2 11 8 21t16.5 23.5t16.5 23.5q23 38 45 91.5t30 91.5q3 10 0.5 30t-0.5 28q3 11 17 28t17 23
q21 36 42 92t25 90q1 9 -2.5 32t0.5 28q4 13 22 30.5t22 22.5q19 26 42.5 84.5t27.5 96.5q1 8 -3 25.5t-2 26.5q2 8 9 18t18 23t17 21q8 12 16.5 30.5t15 35t16 36t19.5 32t26.5 23.5t36 11.5t47.5 -5.5l-1 -3q38 9 51 9h761q74 0 114 -56t18 -130l-274 -906
q-36 -119 -71.5 -153.5t-128.5 -34.5h-869q-27 0 -38 -15q-11 -16 -1 -43q24 -70 144 -70h923q29 0 56 15.5t35 41.5l300 987q7 22 5 57q38 -15 59 -43zM575 1056q-4 -13 2 -22.5t20 -9.5h608q13 0 25.5 9.5t16.5 22.5l21 64q4 13 -2 22.5t-20 9.5h-608q-13 0 -25.5 -9.5
t-16.5 -22.5zM492 800q-4 -13 2 -22.5t20 -9.5h608q13 0 25.5 9.5t16.5 22.5l21 64q4 13 -2 22.5t-20 9.5h-608q-13 0 -25.5 -9.5t-16.5 -22.5z" />
    <glyph glyph-name="bookmark" unicode="&#xf02e;" horiz-adv-x="1280" 
d="M1164 1408q23 0 44 -9q33 -13 52.5 -41t19.5 -62v-1289q0 -34 -19.5 -62t-52.5 -41q-19 -8 -44 -8q-48 0 -83 32l-441 424l-441 -424q-36 -33 -83 -33q-23 0 -44 9q-33 13 -52.5 41t-19.5 62v1289q0 34 19.5 62t52.5 41q21 9 44 9h1048z" />
    <glyph glyph-name="print" unicode="&#xf02f;" horiz-adv-x="1664" 
d="M384 0h896v256h-896v-256zM384 640h896v384h-160q-40 0 -68 28t-28 68v160h-640v-640zM1536 576q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1664 576v-416q0 -13 -9.5 -22.5t-22.5 -9.5h-224v-160q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68
v160h-224q-13 0 -22.5 9.5t-9.5 22.5v416q0 79 56.5 135.5t135.5 56.5h64v544q0 40 28 68t68 28h672q40 0 88 -20t76 -48l152 -152q28 -28 48 -76t20 -88v-256h64q79 0 135.5 -56.5t56.5 -135.5z" />
    <glyph glyph-name="camera" unicode="&#xf030;" horiz-adv-x="1920" 
d="M960 864q119 0 203.5 -84.5t84.5 -203.5t-84.5 -203.5t-203.5 -84.5t-203.5 84.5t-84.5 203.5t84.5 203.5t203.5 84.5zM1664 1280q106 0 181 -75t75 -181v-896q0 -106 -75 -181t-181 -75h-1408q-106 0 -181 75t-75 181v896q0 106 75 181t181 75h224l51 136
q19 49 69.5 84.5t103.5 35.5h512q53 0 103.5 -35.5t69.5 -84.5l51 -136h224zM960 128q185 0 316.5 131.5t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" />
    <glyph glyph-name="font" unicode="&#xf031;" horiz-adv-x="1664" 
d="M725 977l-170 -450q33 0 136.5 -2t160.5 -2q19 0 57 2q-87 253 -184 452zM0 -128l2 79q23 7 56 12.5t57 10.5t49.5 14.5t44.5 29t31 50.5l237 616l280 724h75h53q8 -14 11 -21l205 -480q33 -78 106 -257.5t114 -274.5q15 -34 58 -144.5t72 -168.5q20 -45 35 -57
q19 -15 88 -29.5t84 -20.5q6 -38 6 -57q0 -5 -0.5 -13.5t-0.5 -12.5q-63 0 -190 8t-191 8q-76 0 -215 -7t-178 -8q0 43 4 78l131 28q1 0 12.5 2.5t15.5 3.5t14.5 4.5t15 6.5t11 8t9 11t2.5 14q0 16 -31 96.5t-72 177.5t-42 100l-450 2q-26 -58 -76.5 -195.5t-50.5 -162.5
q0 -22 14 -37.5t43.5 -24.5t48.5 -13.5t57 -8.5t41 -4q1 -19 1 -58q0 -9 -2 -27q-58 0 -174.5 10t-174.5 10q-8 0 -26.5 -4t-21.5 -4q-80 -14 -188 -14z" />
    <glyph glyph-name="bold" unicode="&#xf032;" horiz-adv-x="1408" 
d="M555 15q74 -32 140 -32q376 0 376 335q0 114 -41 180q-27 44 -61.5 74t-67.5 46.5t-80.5 25t-84 10.5t-94.5 2q-73 0 -101 -10q0 -53 -0.5 -159t-0.5 -158q0 -8 -1 -67.5t-0.5 -96.5t4.5 -83.5t12 -66.5zM541 761q42 -7 109 -7q82 0 143 13t110 44.5t74.5 89.5t25.5 142
q0 70 -29 122.5t-79 82t-108 43.5t-124 14q-50 0 -130 -13q0 -50 4 -151t4 -152q0 -27 -0.5 -80t-0.5 -79q0 -46 1 -69zM0 -128l2 94q15 4 85 16t106 27q7 12 12.5 27t8.5 33.5t5.5 32.5t3 37.5t0.5 34v35.5v30q0 982 -22 1025q-4 8 -22 14.5t-44.5 11t-49.5 7t-48.5 4.5
t-30.5 3l-4 83q98 2 340 11.5t373 9.5q23 0 68 -0.5t68 -0.5q70 0 136.5 -13t128.5 -42t108 -71t74 -104.5t28 -137.5q0 -52 -16.5 -95.5t-39 -72t-64.5 -57.5t-73 -45t-84 -40q154 -35 256.5 -134t102.5 -248q0 -100 -35 -179.5t-93.5 -130.5t-138 -85.5t-163.5 -48.5
t-176 -14q-44 0 -132 3t-132 3q-106 0 -307 -11t-231 -12z" />
    <glyph glyph-name="italic" unicode="&#xf033;" horiz-adv-x="1024" 
d="M0 -126l17 85q22 7 61.5 16.5t72 19t59.5 23.5q28 35 41 101q1 7 62 289t114 543.5t52 296.5v25q-24 13 -54.5 18.5t-69.5 8t-58 5.5l19 103q33 -2 120 -6.5t149.5 -7t120.5 -2.5q48 0 98.5 2.5t121 7t98.5 6.5q-5 -39 -19 -89q-30 -10 -101.5 -28.5t-108.5 -33.5
q-8 -19 -14 -42.5t-9 -40t-7.5 -45.5t-6.5 -42q-27 -148 -87.5 -419.5t-77.5 -355.5q-2 -9 -13 -58t-20 -90t-16 -83.5t-6 -57.5l1 -18q17 -4 185 -31q-3 -44 -16 -99q-11 0 -32.5 -1.5t-32.5 -1.5q-29 0 -87 10t-86 10q-138 2 -206 2q-51 0 -143 -9t-121 -11z" />
    <glyph glyph-name="text_height" unicode="&#xf034;" horiz-adv-x="1792" 
d="M1744 128q33 0 42 -18.5t-11 -44.5l-126 -162q-20 -26 -49 -26t-49 26l-126 162q-20 26 -11 44.5t42 18.5h80v1024h-80q-33 0 -42 18.5t11 44.5l126 162q20 26 49 26t49 -26l126 -162q20 -26 11 -44.5t-42 -18.5h-80v-1024h80zM81 1407l54 -27q12 -5 211 -5q44 0 132 2
t132 2q36 0 107.5 -0.5t107.5 -0.5h293q6 0 21 -0.5t20.5 0t16 3t17.5 9t15 17.5l42 1q4 0 14 -0.5t14 -0.5q2 -112 2 -336q0 -80 -5 -109q-39 -14 -68 -18q-25 44 -54 128q-3 9 -11 48t-14.5 73.5t-7.5 35.5q-6 8 -12 12.5t-15.5 6t-13 2.5t-18 0.5t-16.5 -0.5
q-17 0 -66.5 0.5t-74.5 0.5t-64 -2t-71 -6q-9 -81 -8 -136q0 -94 2 -388t2 -455q0 -16 -2.5 -71.5t0 -91.5t12.5 -69q40 -21 124 -42.5t120 -37.5q5 -40 5 -50q0 -14 -3 -29l-34 -1q-76 -2 -218 8t-207 10q-50 0 -151 -9t-152 -9q-3 51 -3 52v9q17 27 61.5 43t98.5 29t78 27
q19 42 19 383q0 101 -3 303t-3 303v117q0 2 0.5 15.5t0.5 25t-1 25.5t-3 24t-5 14q-11 12 -162 12q-33 0 -93 -12t-80 -26q-19 -13 -34 -72.5t-31.5 -111t-42.5 -53.5q-42 26 -56 44v383z" />
    <glyph glyph-name="text_width" unicode="&#xf035;" 
d="M81 1407l54 -27q12 -5 211 -5q44 0 132 2t132 2q70 0 246.5 1t304.5 0.5t247 -4.5q33 -1 56 31l42 1q4 0 14 -0.5t14 -0.5q2 -112 2 -336q0 -80 -5 -109q-39 -14 -68 -18q-25 44 -54 128q-3 9 -11 47.5t-15 73.5t-7 36q-10 13 -27 19q-5 2 -66 2q-30 0 -93 1t-103 1
t-94 -2t-96 -7q-9 -81 -8 -136l1 -152v52q0 -55 1 -154t1.5 -180t0.5 -153q0 -16 -2.5 -71.5t0 -91.5t12.5 -69q40 -21 124 -42.5t120 -37.5q5 -40 5 -50q0 -14 -3 -29l-34 -1q-76 -2 -218 8t-207 10q-50 0 -151 -9t-152 -9q-3 51 -3 52v9q17 27 61.5 43t98.5 29t78 27
q7 16 11.5 74t6 145.5t1.5 155t-0.5 153.5t-0.5 89q0 7 -2.5 21.5t-2.5 22.5q0 7 0.5 44t1 73t0 76.5t-3 67.5t-6.5 32q-11 12 -162 12q-41 0 -163 -13.5t-138 -24.5q-19 -12 -34 -71.5t-31.5 -111.5t-42.5 -54q-42 26 -56 44v383zM1310 125q12 0 42 -19.5t57.5 -41.5
t59.5 -49t36 -30q26 -21 26 -49t-26 -49q-4 -3 -36 -30t-59.5 -49t-57.5 -41.5t-42 -19.5q-13 0 -20.5 10.5t-10 28.5t-2.5 33.5t1.5 33t1.5 19.5h-1024q0 -2 1.5 -19.5t1.5 -33t-2.5 -33.5t-10 -28.5t-20.5 -10.5q-12 0 -42 19.5t-57.5 41.5t-59.5 49t-36 30q-26 21 -26 49
t26 49q4 3 36 30t59.5 49t57.5 41.5t42 19.5q13 0 20.5 -10.5t10 -28.5t2.5 -33.5t-1.5 -33t-1.5 -19.5h1024q0 2 -1.5 19.5t-1.5 33t2.5 33.5t10 28.5t20.5 10.5z" />
    <glyph glyph-name="align_left" unicode="&#xf036;" horiz-adv-x="1792" 
d="M1792 192v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1408 576v-128q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1280q26 0 45 -19t19 -45zM1664 960v-128q0 -26 -19 -45
t-45 -19h-1536q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1536q26 0 45 -19t19 -45zM1280 1344v-128q0 -26 -19 -45t-45 -19h-1152q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1152q26 0 45 -19t19 -45z" />
    <glyph glyph-name="align_center" unicode="&#xf037;" horiz-adv-x="1792" 
d="M1792 192v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1408 576v-128q0 -26 -19 -45t-45 -19h-896q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h896q26 0 45 -19t19 -45zM1664 960v-128q0 -26 -19 -45t-45 -19
h-1408q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1408q26 0 45 -19t19 -45zM1280 1344v-128q0 -26 -19 -45t-45 -19h-640q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h640q26 0 45 -19t19 -45z" />
    <glyph glyph-name="align_right" unicode="&#xf038;" horiz-adv-x="1792" 
d="M1792 192v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 576v-128q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1280q26 0 45 -19t19 -45zM1792 960v-128q0 -26 -19 -45
t-45 -19h-1536q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1536q26 0 45 -19t19 -45zM1792 1344v-128q0 -26 -19 -45t-45 -19h-1152q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1152q26 0 45 -19t19 -45z" />
    <glyph glyph-name="align_justify" unicode="&#xf039;" horiz-adv-x="1792" 
d="M1792 192v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 576v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 960v-128q0 -26 -19 -45
t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 1344v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45z" />
    <glyph glyph-name="list" unicode="&#xf03a;" horiz-adv-x="1792" 
d="M256 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5t9.5 -22.5zM256 608v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5
t9.5 -22.5zM256 992v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5t9.5 -22.5zM1792 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1344
q13 0 22.5 -9.5t9.5 -22.5zM256 1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5t9.5 -22.5zM1792 608v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5
t22.5 9.5h1344q13 0 22.5 -9.5t9.5 -22.5zM1792 992v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1344q13 0 22.5 -9.5t9.5 -22.5zM1792 1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v192
q0 13 9.5 22.5t22.5 9.5h1344q13 0 22.5 -9.5t9.5 -22.5z" />
    <glyph glyph-name="indent_left" unicode="&#xf03b;" horiz-adv-x="1792" 
d="M384 992v-576q0 -13 -9.5 -22.5t-22.5 -9.5q-14 0 -23 9l-288 288q-9 9 -9 23t9 23l288 288q9 9 23 9q13 0 22.5 -9.5t9.5 -22.5zM1792 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1728q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5 -9.5
t9.5 -22.5zM1792 608v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1088q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1088q13 0 22.5 -9.5t9.5 -22.5zM1792 992v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1088q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1088
q13 0 22.5 -9.5t9.5 -22.5zM1792 1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1728q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5 -9.5t9.5 -22.5z" />
    <glyph glyph-name="indent_right" unicode="&#xf03c;" horiz-adv-x="1792" 
d="M352 704q0 -14 -9 -23l-288 -288q-9 -9 -23 -9q-13 0 -22.5 9.5t-9.5 22.5v576q0 13 9.5 22.5t22.5 9.5q14 0 23 -9l288 -288q9 -9 9 -23zM1792 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1728q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5 -9.5
t9.5 -22.5zM1792 608v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1088q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1088q13 0 22.5 -9.5t9.5 -22.5zM1792 992v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1088q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1088
q13 0 22.5 -9.5t9.5 -22.5zM1792 1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1728q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5 -9.5t9.5 -22.5z" />
    <glyph glyph-name="facetime_video" unicode="&#xf03d;" horiz-adv-x="1792" 
d="M1792 1184v-1088q0 -42 -39 -59q-13 -5 -25 -5q-27 0 -45 19l-403 403v-166q0 -119 -84.5 -203.5t-203.5 -84.5h-704q-119 0 -203.5 84.5t-84.5 203.5v704q0 119 84.5 203.5t203.5 84.5h704q119 0 203.5 -84.5t84.5 -203.5v-165l403 402q18 19 45 19q12 0 25 -5
q39 -17 39 -59z" />
    <glyph glyph-name="picture" unicode="&#xf03e;" horiz-adv-x="1920" 
d="M640 960q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1664 576v-448h-1408v192l320 320l160 -160l512 512zM1760 1280h-1600q-13 0 -22.5 -9.5t-9.5 -22.5v-1216q0 -13 9.5 -22.5t22.5 -9.5h1600q13 0 22.5 9.5t9.5 22.5v1216
q0 13 -9.5 22.5t-22.5 9.5zM1920 1248v-1216q0 -66 -47 -113t-113 -47h-1600q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1600q66 0 113 -47t47 -113z" />
    <glyph glyph-name="pencil" unicode="&#xf040;" 
d="M363 0l91 91l-235 235l-91 -91v-107h128v-128h107zM886 928q0 22 -22 22q-10 0 -17 -7l-542 -542q-7 -7 -7 -17q0 -22 22 -22q10 0 17 7l542 542q7 7 7 17zM832 1120l416 -416l-832 -832h-416v416zM1515 1024q0 -53 -37 -90l-166 -166l-416 416l166 165q36 38 90 38
q53 0 91 -38l235 -234q37 -39 37 -91z" />
    <glyph glyph-name="map_marker" unicode="&#xf041;" horiz-adv-x="1024" 
d="M768 896q0 106 -75 181t-181 75t-181 -75t-75 -181t75 -181t181 -75t181 75t75 181zM1024 896q0 -109 -33 -179l-364 -774q-16 -33 -47.5 -52t-67.5 -19t-67.5 19t-46.5 52l-365 774q-33 70 -33 179q0 212 150 362t362 150t362 -150t150 -362z" />
    <glyph glyph-name="adjust" unicode="&#xf042;" 
d="M768 96v1088q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
    <glyph glyph-name="tint" unicode="&#xf043;" horiz-adv-x="1024" 
d="M512 384q0 36 -20 69q-1 1 -15.5 22.5t-25.5 38t-25 44t-21 50.5q-4 16 -21 16t-21 -16q-7 -23 -21 -50.5t-25 -44t-25.5 -38t-15.5 -22.5q-20 -33 -20 -69q0 -53 37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1024 512q0 -212 -150 -362t-362 -150t-362 150t-150 362
q0 145 81 275q6 9 62.5 90.5t101 151t99.5 178t83 201.5q9 30 34 47t51 17t51.5 -17t33.5 -47q28 -93 83 -201.5t99.5 -178t101 -151t62.5 -90.5q81 -127 81 -275z" />
    <glyph glyph-name="edit" unicode="&#xf044;" horiz-adv-x="1792" 
d="M888 352l116 116l-152 152l-116 -116v-56h96v-96h56zM1328 1072q-16 16 -33 -1l-350 -350q-17 -17 -1 -33t33 1l350 350q17 17 1 33zM1408 478v-190q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832
q63 0 117 -25q15 -7 18 -23q3 -17 -9 -29l-49 -49q-14 -14 -32 -8q-23 6 -45 6h-832q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113v126q0 13 9 22l64 64q15 15 35 7t20 -29zM1312 1216l288 -288l-672 -672h-288v288zM1756 1084l-92 -92
l-288 288l92 92q28 28 68 28t68 -28l152 -152q28 -28 28 -68t-28 -68z" />
    <glyph glyph-name="share" unicode="&#xf045;" horiz-adv-x="1664" 
d="M1408 547v-259q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h255v0q13 0 22.5 -9.5t9.5 -22.5q0 -27 -26 -32q-77 -26 -133 -60q-10 -4 -16 -4h-112q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832
q66 0 113 47t47 113v214q0 19 18 29q28 13 54 37q16 16 35 8q21 -9 21 -29zM1645 1043l-384 -384q-18 -19 -45 -19q-12 0 -25 5q-39 17 -39 59v192h-160q-323 0 -438 -131q-119 -137 -74 -473q3 -23 -20 -34q-8 -2 -12 -2q-16 0 -26 13q-10 14 -21 31t-39.5 68.5t-49.5 99.5
t-38.5 114t-17.5 122q0 49 3.5 91t14 90t28 88t47 81.5t68.5 74t94.5 61.5t124.5 48.5t159.5 30.5t196.5 11h160v192q0 42 39 59q13 5 25 5q26 0 45 -19l384 -384q19 -19 19 -45t-19 -45z" />
    <glyph glyph-name="check" unicode="&#xf046;" horiz-adv-x="1664" 
d="M1408 606v-318q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832q63 0 117 -25q15 -7 18 -23q3 -17 -9 -29l-49 -49q-10 -10 -23 -10q-3 0 -9 2q-23 6 -45 6h-832q-66 0 -113 -47t-47 -113v-832
q0 -66 47 -113t113 -47h832q66 0 113 47t47 113v254q0 13 9 22l64 64q10 10 23 10q6 0 12 -3q20 -8 20 -29zM1639 1095l-814 -814q-24 -24 -57 -24t-57 24l-430 430q-24 24 -24 57t24 57l110 110q24 24 57 24t57 -24l263 -263l647 647q24 24 57 24t57 -24l110 -110
q24 -24 24 -57t-24 -57z" />
    <glyph glyph-name="move" unicode="&#xf047;" horiz-adv-x="1792" 
d="M1792 640q0 -26 -19 -45l-256 -256q-19 -19 -45 -19t-45 19t-19 45v128h-384v-384h128q26 0 45 -19t19 -45t-19 -45l-256 -256q-19 -19 -45 -19t-45 19l-256 256q-19 19 -19 45t19 45t45 19h128v384h-384v-128q0 -26 -19 -45t-45 -19t-45 19l-256 256q-19 19 -19 45
t19 45l256 256q19 19 45 19t45 -19t19 -45v-128h384v384h-128q-26 0 -45 19t-19 45t19 45l256 256q19 19 45 19t45 -19l256 -256q19 -19 19 -45t-19 -45t-45 -19h-128v-384h384v128q0 26 19 45t45 19t45 -19l256 -256q19 -19 19 -45z" />
    <glyph glyph-name="step_backward" unicode="&#xf048;" horiz-adv-x="1024" 
d="M979 1395q19 19 32 13t13 -32v-1472q0 -26 -13 -32t-32 13l-710 710q-9 9 -13 19v-678q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-678q4 10 13 19z" />
    <glyph glyph-name="fast_backward" unicode="&#xf049;" horiz-adv-x="1792" 
d="M1747 1395q19 19 32 13t13 -32v-1472q0 -26 -13 -32t-32 13l-710 710q-9 9 -13 19v-710q0 -26 -13 -32t-32 13l-710 710q-9 9 -13 19v-678q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-678q4 10 13 19l710 710
q19 19 32 13t13 -32v-710q4 10 13 19z" />
    <glyph glyph-name="backward" unicode="&#xf04a;" horiz-adv-x="1664" 
d="M1619 1395q19 19 32 13t13 -32v-1472q0 -26 -13 -32t-32 13l-710 710q-9 9 -13 19v-710q0 -26 -13 -32t-32 13l-710 710q-19 19 -19 45t19 45l710 710q19 19 32 13t13 -32v-710q4 10 13 19z" />
    <glyph glyph-name="play" unicode="&#xf04b;" horiz-adv-x="1408" 
d="M1384 609l-1328 -738q-23 -13 -39.5 -3t-16.5 36v1472q0 26 16.5 36t39.5 -3l1328 -738q23 -13 23 -31t-23 -31z" />
    <glyph glyph-name="pause" unicode="&#xf04c;" 
d="M1536 1344v-1408q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h512q26 0 45 -19t19 -45zM640 1344v-1408q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h512q26 0 45 -19t19 -45z" />
    <glyph glyph-name="stop" unicode="&#xf04d;" 
d="M1536 1344v-1408q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h1408q26 0 45 -19t19 -45z" />
    <glyph glyph-name="forward" unicode="&#xf04e;" horiz-adv-x="1664" 
d="M45 -115q-19 -19 -32 -13t-13 32v1472q0 26 13 32t32 -13l710 -710q9 -9 13 -19v710q0 26 13 32t32 -13l710 -710q19 -19 19 -45t-19 -45l-710 -710q-19 -19 -32 -13t-13 32v710q-4 -10 -13 -19z" />
    <glyph glyph-name="fast_forward" unicode="&#xf050;" horiz-adv-x="1792" 
d="M45 -115q-19 -19 -32 -13t-13 32v1472q0 26 13 32t32 -13l710 -710q9 -9 13 -19v710q0 26 13 32t32 -13l710 -710q9 -9 13 -19v678q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-1408q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v678q-4 -10 -13 -19l-710 -710
q-19 -19 -32 -13t-13 32v710q-4 -10 -13 -19z" />
    <glyph glyph-name="step_forward" unicode="&#xf051;" horiz-adv-x="1024" 
d="M45 -115q-19 -19 -32 -13t-13 32v1472q0 26 13 32t32 -13l710 -710q9 -9 13 -19v678q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-1408q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v678q-4 -10 -13 -19z" />
    <glyph glyph-name="eject" unicode="&#xf052;" horiz-adv-x="1538" 
d="M14 557l710 710q19 19 45 19t45 -19l710 -710q19 -19 13 -32t-32 -13h-1472q-26 0 -32 13t13 32zM1473 0h-1408q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h1408q26 0 45 -19t19 -45v-256q0 -26 -19 -45t-45 -19z" />
    <glyph glyph-name="chevron_left" unicode="&#xf053;" horiz-adv-x="1280" 
d="M1171 1235l-531 -531l531 -531q19 -19 19 -45t-19 -45l-166 -166q-19 -19 -45 -19t-45 19l-742 742q-19 19 -19 45t19 45l742 742q19 19 45 19t45 -19l166 -166q19 -19 19 -45t-19 -45z" />
    <glyph glyph-name="chevron_right" unicode="&#xf054;" horiz-adv-x="1280" 
d="M1107 659l-742 -742q-19 -19 -45 -19t-45 19l-166 166q-19 19 -19 45t19 45l531 531l-531 531q-19 19 -19 45t19 45l166 166q19 19 45 19t45 -19l742 -742q19 -19 19 -45t-19 -45z" />
    <glyph glyph-name="plus_sign" unicode="&#xf055;" 
d="M1216 576v128q0 26 -19 45t-45 19h-256v256q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-256h-256q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h256v-256q0 -26 19 -45t45 -19h128q26 0 45 19t19 45v256h256q26 0 45 19t19 45zM1536 640q0 -209 -103 -385.5
t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
    <glyph glyph-name="minus_sign" unicode="&#xf056;" 
d="M1216 576v128q0 26 -19 45t-45 19h-768q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h768q26 0 45 19t19 45zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5
t103 -385.5z" />
    <glyph glyph-name="remove_sign" unicode="&#xf057;" 
d="M1149 414q0 26 -19 45l-181 181l181 181q19 19 19 45q0 27 -19 46l-90 90q-19 19 -46 19q-26 0 -45 -19l-181 -181l-181 181q-19 19 -45 19q-27 0 -46 -19l-90 -90q-19 -19 -19 -46q0 -26 19 -45l181 -181l-181 -181q-19 -19 -19 -45q0 -27 19 -46l90 -90q19 -19 46 -19
q26 0 45 19l181 181l181 -181q19 -19 45 -19q27 0 46 19l90 90q19 19 19 46zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
    <glyph glyph-name="ok_sign" unicode="&#xf058;" 
d="M1284 802q0 28 -18 46l-91 90q-19 19 -45 19t-45 -19l-408 -407l-226 226q-19 19 -45 19t-45 -19l-91 -90q-18 -18 -18 -46q0 -27 18 -45l362 -362q19 -19 45 -19q27 0 46 19l543 543q18 18 18 45zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103
t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
    <glyph glyph-name="question_sign" unicode="&#xf059;" 
d="M896 160v192q0 14 -9 23t-23 9h-192q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h192q14 0 23 9t9 23zM1152 832q0 88 -55.5 163t-138.5 116t-170 41q-243 0 -371 -213q-15 -24 8 -42l132 -100q7 -6 19 -6q16 0 25 12q53 68 86 92q34 24 86 24q48 0 85.5 -26t37.5 -59
q0 -38 -20 -61t-68 -45q-63 -28 -115.5 -86.5t-52.5 -125.5v-36q0 -14 9 -23t23 -9h192q14 0 23 9t9 23q0 19 21.5 49.5t54.5 49.5q32 18 49 28.5t46 35t44.5 48t28 60.5t12.5 81zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5
t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
    <glyph glyph-name="info_sign" unicode="&#xf05a;" 
d="M1024 160v160q0 14 -9 23t-23 9h-96v512q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-160q0 -14 9 -23t23 -9h96v-320h-96q-14 0 -23 -9t-9 -23v-160q0 -14 9 -23t23 -9h448q14 0 23 9t9 23zM896 1056v160q0 14 -9 23t-23 9h-192q-14 0 -23 -9t-9 -23v-160q0 -14 9 -23
t23 -9h192q14 0 23 9t9 23zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
    <glyph glyph-name="screenshot" unicode="&#xf05b;" 
d="M1197 512h-109q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h109q-32 108 -112.5 188.5t-188.5 112.5v-109q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v109q-108 -32 -188.5 -112.5t-112.5 -188.5h109q26 0 45 -19t19 -45v-128q0 -26 -19 -45t-45 -19h-109
q32 -108 112.5 -188.5t188.5 -112.5v109q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-109q108 32 188.5 112.5t112.5 188.5zM1536 704v-128q0 -26 -19 -45t-45 -19h-143q-37 -161 -154.5 -278.5t-278.5 -154.5v-143q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v143
q-161 37 -278.5 154.5t-154.5 278.5h-143q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h143q37 161 154.5 278.5t278.5 154.5v143q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-143q161 -37 278.5 -154.5t154.5 -278.5h143q26 0 45 -19t19 -45z" />
    <glyph glyph-name="remove_circle" unicode="&#xf05c;" 
d="M1097 457l-146 -146q-10 -10 -23 -10t-23 10l-137 137l-137 -137q-10 -10 -23 -10t-23 10l-146 146q-10 10 -10 23t10 23l137 137l-137 137q-10 10 -10 23t10 23l146 146q10 10 23 10t23 -10l137 -137l137 137q10 10 23 10t23 -10l146 -146q10 -10 10 -23t-10 -23
l-137 -137l137 -137q10 -10 10 -23t-10 -23zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5
t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
    <glyph glyph-name="ok_circle" unicode="&#xf05d;" 
d="M1171 723l-422 -422q-19 -19 -45 -19t-45 19l-294 294q-19 19 -19 45t19 45l102 102q19 19 45 19t45 -19l147 -147l275 275q19 19 45 19t45 -19l102 -102q19 -19 19 -45t-19 -45zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198
t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
    <glyph glyph-name="ban_circle" unicode="&#xf05e;" 
d="M1312 643q0 161 -87 295l-754 -753q137 -89 297 -89q111 0 211.5 43.5t173.5 116.5t116 174.5t43 212.5zM313 344l755 754q-135 91 -300 91q-148 0 -273 -73t-198 -199t-73 -274q0 -162 89 -299zM1536 643q0 -157 -61 -300t-163.5 -246t-245 -164t-298.5 -61t-298.5 61
t-245 164t-163.5 246t-61 300t61 299.5t163.5 245.5t245 164t298.5 61t298.5 -61t245 -164t163.5 -245.5t61 -299.5z" />
    <glyph glyph-name="arrow_left" unicode="&#xf060;" 
d="M1536 640v-128q0 -53 -32.5 -90.5t-84.5 -37.5h-704l293 -294q38 -36 38 -90t-38 -90l-75 -76q-37 -37 -90 -37q-52 0 -91 37l-651 652q-37 37 -37 90q0 52 37 91l651 650q38 38 91 38q52 0 90 -38l75 -74q38 -38 38 -91t-38 -91l-293 -293h704q52 0 84.5 -37.5
t32.5 -90.5z" />
    <glyph glyph-name="arrow_right" unicode="&#xf061;" 
d="M1472 576q0 -54 -37 -91l-651 -651q-39 -37 -91 -37q-51 0 -90 37l-75 75q-38 38 -38 91t38 91l293 293h-704q-52 0 -84.5 37.5t-32.5 90.5v128q0 53 32.5 90.5t84.5 37.5h704l-293 294q-38 36 -38 90t38 90l75 75q38 38 90 38q53 0 91 -38l651 -651q37 -35 37 -90z" />
    <glyph glyph-name="arrow_up" unicode="&#xf062;" horiz-adv-x="1664" 
d="M1611 565q0 -51 -37 -90l-75 -75q-38 -38 -91 -38q-54 0 -90 38l-294 293v-704q0 -52 -37.5 -84.5t-90.5 -32.5h-128q-53 0 -90.5 32.5t-37.5 84.5v704l-294 -293q-36 -38 -90 -38t-90 38l-75 75q-38 38 -38 90q0 53 38 91l651 651q35 37 90 37q54 0 91 -37l651 -651
q37 -39 37 -91z" />
    <glyph glyph-name="arrow_down" unicode="&#xf063;" horiz-adv-x="1664" 
d="M1611 704q0 -53 -37 -90l-651 -652q-39 -37 -91 -37q-53 0 -90 37l-651 652q-38 36 -38 90q0 53 38 91l74 75q39 37 91 37q53 0 90 -37l294 -294v704q0 52 38 90t90 38h128q52 0 90 -38t38 -90v-704l294 294q37 37 90 37q52 0 91 -37l75 -75q37 -39 37 -91z" />
    <glyph glyph-name="share_alt" unicode="&#xf064;" horiz-adv-x="1792" 
d="M1792 896q0 -26 -19 -45l-512 -512q-19 -19 -45 -19t-45 19t-19 45v256h-224q-98 0 -175.5 -6t-154 -21.5t-133 -42.5t-105.5 -69.5t-80 -101t-48.5 -138.5t-17.5 -181q0 -55 5 -123q0 -6 2.5 -23.5t2.5 -26.5q0 -15 -8.5 -25t-23.5 -10q-16 0 -28 17q-7 9 -13 22
t-13.5 30t-10.5 24q-127 285 -127 451q0 199 53 333q162 403 875 403h224v256q0 26 19 45t45 19t45 -19l512 -512q19 -19 19 -45z" />
    <glyph glyph-name="resize_full" unicode="&#xf065;" 
d="M755 480q0 -13 -10 -23l-332 -332l144 -144q19 -19 19 -45t-19 -45t-45 -19h-448q-26 0 -45 19t-19 45v448q0 26 19 45t45 19t45 -19l144 -144l332 332q10 10 23 10t23 -10l114 -114q10 -10 10 -23zM1536 1344v-448q0 -26 -19 -45t-45 -19t-45 19l-144 144l-332 -332
q-10 -10 -23 -10t-23 10l-114 114q-10 10 -10 23t10 23l332 332l-144 144q-19 19 -19 45t19 45t45 19h448q26 0 45 -19t19 -45z" />
    <glyph glyph-name="resize_small" unicode="&#xf066;" 
d="M768 576v-448q0 -26 -19 -45t-45 -19t-45 19l-144 144l-332 -332q-10 -10 -23 -10t-23 10l-114 114q-10 10 -10 23t10 23l332 332l-144 144q-19 19 -19 45t19 45t45 19h448q26 0 45 -19t19 -45zM1523 1248q0 -13 -10 -23l-332 -332l144 -144q19 -19 19 -45t-19 -45
t-45 -19h-448q-26 0 -45 19t-19 45v448q0 26 19 45t45 19t45 -19l144 -144l332 332q10 10 23 10t23 -10l114 -114q10 -10 10 -23z" />
    <glyph glyph-name="plus" unicode="&#xf067;" horiz-adv-x="1408" 
d="M1408 800v-192q0 -40 -28 -68t-68 -28h-416v-416q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v416h-416q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h416v416q0 40 28 68t68 28h192q40 0 68 -28t28 -68v-416h416q40 0 68 -28t28 -68z" />
    <glyph glyph-name="minus" unicode="&#xf068;" horiz-adv-x="1408" 
d="M1408 800v-192q0 -40 -28 -68t-68 -28h-1216q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h1216q40 0 68 -28t28 -68z" />
    <glyph glyph-name="asterisk" unicode="&#xf069;" horiz-adv-x="1664" 
d="M1482 486q46 -26 59.5 -77.5t-12.5 -97.5l-64 -110q-26 -46 -77.5 -59.5t-97.5 12.5l-266 153v-307q0 -52 -38 -90t-90 -38h-128q-52 0 -90 38t-38 90v307l-266 -153q-46 -26 -97.5 -12.5t-77.5 59.5l-64 110q-26 46 -12.5 97.5t59.5 77.5l266 154l-266 154
q-46 26 -59.5 77.5t12.5 97.5l64 110q26 46 77.5 59.5t97.5 -12.5l266 -153v307q0 52 38 90t90 38h128q52 0 90 -38t38 -90v-307l266 153q46 26 97.5 12.5t77.5 -59.5l64 -110q26 -46 12.5 -97.5t-59.5 -77.5l-266 -154z" />
    <glyph glyph-name="exclamation_sign" unicode="&#xf06a;" 
d="M768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM896 161v190q0 14 -9 23.5t-22 9.5h-192q-13 0 -23 -10t-10 -23v-190q0 -13 10 -23t23 -10h192
q13 0 22 9.5t9 23.5zM894 505l18 621q0 12 -10 18q-10 8 -24 8h-220q-14 0 -24 -8q-10 -6 -10 -18l17 -621q0 -10 10 -17.5t24 -7.5h185q14 0 23.5 7.5t10.5 17.5z" />
    <glyph glyph-name="gift" unicode="&#xf06b;" 
d="M928 180v56v468v192h-320v-192v-468v-56q0 -25 18 -38.5t46 -13.5h192q28 0 46 13.5t18 38.5zM472 1024h195l-126 161q-26 31 -69 31q-40 0 -68 -28t-28 -68t28 -68t68 -28zM1160 1120q0 40 -28 68t-68 28q-43 0 -69 -31l-125 -161h194q40 0 68 28t28 68zM1536 864v-320
q0 -14 -9 -23t-23 -9h-96v-416q0 -40 -28 -68t-68 -28h-1088q-40 0 -68 28t-28 68v416h-96q-14 0 -23 9t-9 23v320q0 14 9 23t23 9h440q-93 0 -158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5q107 0 168 -77l128 -165l128 165q61 77 168 77q93 0 158.5 -65.5t65.5 -158.5
t-65.5 -158.5t-158.5 -65.5h440q14 0 23 -9t9 -23z" />
    <glyph glyph-name="leaf" unicode="&#xf06c;" horiz-adv-x="1792" 
d="M1280 832q0 26 -19 45t-45 19q-172 0 -318 -49.5t-259.5 -134t-235.5 -219.5q-19 -21 -19 -45q0 -26 19 -45t45 -19q24 0 45 19q27 24 74 71t67 66q137 124 268.5 176t313.5 52q26 0 45 19t19 45zM1792 1030q0 -95 -20 -193q-46 -224 -184.5 -383t-357.5 -268
q-214 -108 -438 -108q-148 0 -286 47q-15 5 -88 42t-96 37q-16 0 -39.5 -32t-45 -70t-52.5 -70t-60 -32q-43 0 -63.5 17.5t-45.5 59.5q-2 4 -6 11t-5.5 10t-3 9.5t-1.5 13.5q0 35 31 73.5t68 65.5t68 56t31 48q0 4 -14 38t-16 44q-9 51 -9 104q0 115 43.5 220t119 184.5
t170.5 139t204 95.5q55 18 145 25.5t179.5 9t178.5 6t163.5 24t113.5 56.5l29.5 29.5t29.5 28t27 20t36.5 16t43.5 4.5q39 0 70.5 -46t47.5 -112t24 -124t8 -96z" />
    <glyph glyph-name="fire" unicode="&#xf06d;" horiz-adv-x="1408" 
d="M1408 -160v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h1344q13 0 22.5 -9.5t9.5 -22.5zM1152 896q0 -78 -24.5 -144t-64 -112.5t-87.5 -88t-96 -77.5t-87.5 -72t-64 -81.5t-24.5 -96.5q0 -96 67 -224l-4 1l1 -1
q-90 41 -160 83t-138.5 100t-113.5 122.5t-72.5 150.5t-27.5 184q0 78 24.5 144t64 112.5t87.5 88t96 77.5t87.5 72t64 81.5t24.5 96.5q0 94 -66 224l3 -1l-1 1q90 -41 160 -83t138.5 -100t113.5 -122.5t72.5 -150.5t27.5 -184z" />
    <glyph glyph-name="eye_open" unicode="&#xf06e;" horiz-adv-x="1792" 
d="M1664 576q-152 236 -381 353q61 -104 61 -225q0 -185 -131.5 -316.5t-316.5 -131.5t-316.5 131.5t-131.5 316.5q0 121 61 225q-229 -117 -381 -353q133 -205 333.5 -326.5t434.5 -121.5t434.5 121.5t333.5 326.5zM944 960q0 20 -14 34t-34 14q-125 0 -214.5 -89.5
t-89.5 -214.5q0 -20 14 -34t34 -14t34 14t14 34q0 86 61 147t147 61q20 0 34 14t14 34zM1792 576q0 -34 -20 -69q-140 -230 -376.5 -368.5t-499.5 -138.5t-499.5 139t-376.5 368q-20 35 -20 69t20 69q140 229 376.5 368t499.5 139t499.5 -139t376.5 -368q20 -35 20 -69z" />
    <glyph glyph-name="eye_close" unicode="&#xf070;" horiz-adv-x="1792" 
d="M555 201l78 141q-87 63 -136 159t-49 203q0 121 61 225q-229 -117 -381 -353q167 -258 427 -375zM944 960q0 20 -14 34t-34 14q-125 0 -214.5 -89.5t-89.5 -214.5q0 -20 14 -34t34 -14t34 14t14 34q0 86 61 147t147 61q20 0 34 14t14 34zM1307 1151q0 -7 -1 -9
q-106 -189 -316 -567t-315 -566l-49 -89q-10 -16 -28 -16q-12 0 -134 70q-16 10 -16 28q0 12 44 87q-143 65 -263.5 173t-208.5 245q-20 31 -20 69t20 69q153 235 380 371t496 136q89 0 180 -17l54 97q10 16 28 16q5 0 18 -6t31 -15.5t33 -18.5t31.5 -18.5t19.5 -11.5
q16 -10 16 -27zM1344 704q0 -139 -79 -253.5t-209 -164.5l280 502q8 -45 8 -84zM1792 576q0 -35 -20 -69q-39 -64 -109 -145q-150 -172 -347.5 -267t-419.5 -95l74 132q212 18 392.5 137t301.5 307q-115 179 -282 294l63 112q95 -64 182.5 -153t144.5 -184q20 -34 20 -69z
" />
    <glyph glyph-name="warning_sign" unicode="&#xf071;" horiz-adv-x="1792" 
d="M1024 161v190q0 14 -9.5 23.5t-22.5 9.5h-192q-13 0 -22.5 -9.5t-9.5 -23.5v-190q0 -14 9.5 -23.5t22.5 -9.5h192q13 0 22.5 9.5t9.5 23.5zM1022 535l18 459q0 12 -10 19q-13 11 -24 11h-220q-11 0 -24 -11q-10 -7 -10 -21l17 -457q0 -10 10 -16.5t24 -6.5h185
q14 0 23.5 6.5t10.5 16.5zM1008 1469l768 -1408q35 -63 -2 -126q-17 -29 -46.5 -46t-63.5 -17h-1536q-34 0 -63.5 17t-46.5 46q-37 63 -2 126l768 1408q17 31 47 49t65 18t65 -18t47 -49z" />
    <glyph glyph-name="plane" unicode="&#xf072;" horiz-adv-x="1408" 
d="M1376 1376q44 -52 12 -148t-108 -172l-161 -161l160 -696q5 -19 -12 -33l-128 -96q-7 -6 -19 -6q-4 0 -7 1q-15 3 -21 16l-279 508l-259 -259l53 -194q5 -17 -8 -31l-96 -96q-9 -9 -23 -9h-2q-15 2 -24 13l-189 252l-252 189q-11 7 -13 23q-1 13 9 25l96 97q9 9 23 9
q6 0 8 -1l194 -53l259 259l-508 279q-14 8 -17 24q-2 16 9 27l128 128q14 13 30 8l665 -159l160 160q76 76 172 108t148 -12z" />
    <glyph glyph-name="calendar" unicode="&#xf073;" horiz-adv-x="1664" 
d="M128 -128h288v288h-288v-288zM480 -128h320v288h-320v-288zM128 224h288v320h-288v-320zM480 224h320v320h-320v-320zM128 608h288v288h-288v-288zM864 -128h320v288h-320v-288zM480 608h320v288h-320v-288zM1248 -128h288v288h-288v-288zM864 224h320v320h-320v-320z
M512 1088v288q0 13 -9.5 22.5t-22.5 9.5h-64q-13 0 -22.5 -9.5t-9.5 -22.5v-288q0 -13 9.5 -22.5t22.5 -9.5h64q13 0 22.5 9.5t9.5 22.5zM1248 224h288v320h-288v-320zM864 608h320v288h-320v-288zM1248 608h288v288h-288v-288zM1280 1088v288q0 13 -9.5 22.5t-22.5 9.5h-64
q-13 0 -22.5 -9.5t-9.5 -22.5v-288q0 -13 9.5 -22.5t22.5 -9.5h64q13 0 22.5 9.5t9.5 22.5zM1664 1152v-1280q0 -52 -38 -90t-90 -38h-1408q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h128v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h384v96q0 66 47 113t113 47
h64q66 0 113 -47t47 -113v-96h128q52 0 90 -38t38 -90z" />
    <glyph glyph-name="random" unicode="&#xf074;" horiz-adv-x="1792" 
d="M666 1055q-60 -92 -137 -273q-22 45 -37 72.5t-40.5 63.5t-51 56.5t-63 35t-81.5 14.5h-224q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h224q250 0 410 -225zM1792 256q0 -14 -9 -23l-320 -320q-9 -9 -23 -9q-13 0 -22.5 9.5t-9.5 22.5v192q-32 0 -85 -0.5t-81 -1t-73 1
t-71 5t-64 10.5t-63 18.5t-58 28.5t-59 40t-55 53.5t-56 69.5q59 93 136 273q22 -45 37 -72.5t40.5 -63.5t51 -56.5t63 -35t81.5 -14.5h256v192q0 14 9 23t23 9q12 0 24 -10l319 -319q9 -9 9 -23zM1792 1152q0 -14 -9 -23l-320 -320q-9 -9 -23 -9q-13 0 -22.5 9.5t-9.5 22.5
v192h-256q-48 0 -87 -15t-69 -45t-51 -61.5t-45 -77.5q-32 -62 -78 -171q-29 -66 -49.5 -111t-54 -105t-64 -100t-74 -83t-90 -68.5t-106.5 -42t-128 -16.5h-224q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h224q48 0 87 15t69 45t51 61.5t45 77.5q32 62 78 171q29 66 49.5 111
t54 105t64 100t74 83t90 68.5t106.5 42t128 16.5h256v192q0 14 9 23t23 9q12 0 24 -10l319 -319q9 -9 9 -23z" />
    <glyph glyph-name="comment" unicode="&#xf075;" horiz-adv-x="1792" 
d="M1792 640q0 -174 -120 -321.5t-326 -233t-450 -85.5q-70 0 -145 8q-198 -175 -460 -242q-49 -14 -114 -22q-17 -2 -30.5 9t-17.5 29v1q-3 4 -0.5 12t2 10t4.5 9.5l6 9t7 8.5t8 9q7 8 31 34.5t34.5 38t31 39.5t32.5 51t27 59t26 76q-157 89 -247.5 220t-90.5 281
q0 130 71 248.5t191 204.5t286 136.5t348 50.5q244 0 450 -85.5t326 -233t120 -321.5z" />
    <glyph glyph-name="magnet" unicode="&#xf076;" 
d="M1536 704v-128q0 -201 -98.5 -362t-274 -251.5t-395.5 -90.5t-395.5 90.5t-274 251.5t-98.5 362v128q0 26 19 45t45 19h384q26 0 45 -19t19 -45v-128q0 -52 23.5 -90t53.5 -57t71 -30t64 -13t44 -2t44 2t64 13t71 30t53.5 57t23.5 90v128q0 26 19 45t45 19h384
q26 0 45 -19t19 -45zM512 1344v-384q0 -26 -19 -45t-45 -19h-384q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h384q26 0 45 -19t19 -45zM1536 1344v-384q0 -26 -19 -45t-45 -19h-384q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h384q26 0 45 -19t19 -45z" />
    <glyph glyph-name="chevron_up" unicode="&#xf077;" horiz-adv-x="1792" 
d="M1683 205l-166 -165q-19 -19 -45 -19t-45 19l-531 531l-531 -531q-19 -19 -45 -19t-45 19l-166 165q-19 19 -19 45.5t19 45.5l742 741q19 19 45 19t45 -19l742 -741q19 -19 19 -45.5t-19 -45.5z" />
    <glyph glyph-name="chevron_down" unicode="&#xf078;" horiz-adv-x="1792" 
d="M1683 728l-742 -741q-19 -19 -45 -19t-45 19l-742 741q-19 19 -19 45.5t19 45.5l166 165q19 19 45 19t45 -19l531 -531l531 531q19 19 45 19t45 -19l166 -165q19 -19 19 -45.5t-19 -45.5z" />
    <glyph glyph-name="retweet" unicode="&#xf079;" horiz-adv-x="1920" 
d="M1280 32q0 -13 -9.5 -22.5t-22.5 -9.5h-960q-8 0 -13.5 2t-9 7t-5.5 8t-3 11.5t-1 11.5v13v11v160v416h-192q-26 0 -45 19t-19 45q0 24 15 41l320 384q19 22 49 22t49 -22l320 -384q15 -17 15 -41q0 -26 -19 -45t-45 -19h-192v-384h576q16 0 25 -11l160 -192q7 -10 7 -21
zM1920 448q0 -24 -15 -41l-320 -384q-20 -23 -49 -23t-49 23l-320 384q-15 17 -15 41q0 26 19 45t45 19h192v384h-576q-16 0 -25 12l-160 192q-7 9 -7 20q0 13 9.5 22.5t22.5 9.5h960q8 0 13.5 -2t9 -7t5.5 -8t3 -11.5t1 -11.5v-13v-11v-160v-416h192q26 0 45 -19t19 -45z
" />
    <glyph glyph-name="shopping_cart" unicode="&#xf07a;" horiz-adv-x="1664" 
d="M640 0q0 -52 -38 -90t-90 -38t-90 38t-38 90t38 90t90 38t90 -38t38 -90zM1536 0q0 -52 -38 -90t-90 -38t-90 38t-38 90t38 90t90 38t90 -38t38 -90zM1664 1088v-512q0 -24 -16.5 -42.5t-40.5 -21.5l-1044 -122q13 -60 13 -70q0 -16 -24 -64h920q26 0 45 -19t19 -45
t-19 -45t-45 -19h-1024q-26 0 -45 19t-19 45q0 11 8 31.5t16 36t21.5 40t15.5 29.5l-177 823h-204q-26 0 -45 19t-19 45t19 45t45 19h256q16 0 28.5 -6.5t19.5 -15.5t13 -24.5t8 -26t5.5 -29.5t4.5 -26h1201q26 0 45 -19t19 -45z" />
    <glyph glyph-name="folder_close" unicode="&#xf07b;" horiz-adv-x="1664" 
d="M1664 928v-704q0 -92 -66 -158t-158 -66h-1216q-92 0 -158 66t-66 158v960q0 92 66 158t158 66h320q92 0 158 -66t66 -158v-32h672q92 0 158 -66t66 -158z" />
    <glyph glyph-name="folder_open" unicode="&#xf07c;" horiz-adv-x="1920" 
d="M1879 584q0 -31 -31 -66l-336 -396q-43 -51 -120.5 -86.5t-143.5 -35.5h-1088q-34 0 -60.5 13t-26.5 43q0 31 31 66l336 396q43 51 120.5 86.5t143.5 35.5h1088q34 0 60.5 -13t26.5 -43zM1536 928v-160h-832q-94 0 -197 -47.5t-164 -119.5l-337 -396l-5 -6q0 4 -0.5 12.5
t-0.5 12.5v960q0 92 66 158t158 66h320q92 0 158 -66t66 -158v-32h544q92 0 158 -66t66 -158z" />
    <glyph glyph-name="resize_vertical" unicode="&#xf07d;" horiz-adv-x="768" 
d="M704 1216q0 -26 -19 -45t-45 -19h-128v-1024h128q26 0 45 -19t19 -45t-19 -45l-256 -256q-19 -19 -45 -19t-45 19l-256 256q-19 19 -19 45t19 45t45 19h128v1024h-128q-26 0 -45 19t-19 45t19 45l256 256q19 19 45 19t45 -19l256 -256q19 -19 19 -45z" />
    <glyph glyph-name="resize_horizontal" unicode="&#xf07e;" horiz-adv-x="1792" 
d="M1792 640q0 -26 -19 -45l-256 -256q-19 -19 -45 -19t-45 19t-19 45v128h-1024v-128q0 -26 -19 -45t-45 -19t-45 19l-256 256q-19 19 -19 45t19 45l256 256q19 19 45 19t45 -19t19 -45v-128h1024v128q0 26 19 45t45 19t45 -19l256 -256q19 -19 19 -45z" />
    <glyph glyph-name="bar_chart" unicode="&#xf080;" horiz-adv-x="2048" 
d="M640 640v-512h-256v512h256zM1024 1152v-1024h-256v1024h256zM2048 0v-128h-2048v1536h128v-1408h1920zM1408 896v-768h-256v768h256zM1792 1280v-1152h-256v1152h256z" />
    <glyph glyph-name="twitter_sign" unicode="&#xf081;" 
d="M1280 926q-56 -25 -121 -34q68 40 93 117q-65 -38 -134 -51q-61 66 -153 66q-87 0 -148.5 -61.5t-61.5 -148.5q0 -29 5 -48q-129 7 -242 65t-192 155q-29 -50 -29 -106q0 -114 91 -175q-47 1 -100 26v-2q0 -75 50 -133.5t123 -72.5q-29 -8 -51 -8q-13 0 -39 4
q21 -63 74.5 -104t121.5 -42q-116 -90 -261 -90q-26 0 -50 3q148 -94 322 -94q112 0 210 35.5t168 95t120.5 137t75 162t24.5 168.5q0 18 -1 27q63 45 105 109zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5
t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
    <glyph glyph-name="facebook_sign" unicode="&#xf082;" 
d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-188v595h199l30 232h-229v148q0 56 23.5 84t91.5 28l122 1v207q-63 9 -178 9q-136 0 -217.5 -80t-81.5 -226v-171h-200v-232h200v-595h-532q-119 0 -203.5 84.5t-84.5 203.5v960
q0 119 84.5 203.5t203.5 84.5h960z" />
    <glyph glyph-name="camera_retro" unicode="&#xf083;" horiz-adv-x="1792" 
d="M928 704q0 14 -9 23t-23 9q-66 0 -113 -47t-47 -113q0 -14 9 -23t23 -9t23 9t9 23q0 40 28 68t68 28q14 0 23 9t9 23zM1152 574q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75t75 -181zM128 0h1536v128h-1536v-128zM1280 574q0 159 -112.5 271.5
t-271.5 112.5t-271.5 -112.5t-112.5 -271.5t112.5 -271.5t271.5 -112.5t271.5 112.5t112.5 271.5zM256 1216h384v128h-384v-128zM128 1024h1536v118v138h-828l-64 -128h-644v-128zM1792 1280v-1280q0 -53 -37.5 -90.5t-90.5 -37.5h-1536q-53 0 -90.5 37.5t-37.5 90.5v1280
q0 53 37.5 90.5t90.5 37.5h1536q53 0 90.5 -37.5t37.5 -90.5z" />
    <glyph glyph-name="key" unicode="&#xf084;" horiz-adv-x="1792" 
d="M832 1024q0 80 -56 136t-136 56t-136 -56t-56 -136q0 -42 19 -83q-41 19 -83 19q-80 0 -136 -56t-56 -136t56 -136t136 -56t136 56t56 136q0 42 -19 83q41 -19 83 -19q80 0 136 56t56 136zM1683 320q0 -17 -49 -66t-66 -49q-9 0 -28.5 16t-36.5 33t-38.5 40t-24.5 26
l-96 -96l220 -220q28 -28 28 -68q0 -42 -39 -81t-81 -39q-40 0 -68 28l-671 671q-176 -131 -365 -131q-163 0 -265.5 102.5t-102.5 265.5q0 160 95 313t248 248t313 95q163 0 265.5 -102.5t102.5 -265.5q0 -189 -131 -365l355 -355l96 96q-3 3 -26 24.5t-40 38.5t-33 36.5
t-16 28.5q0 17 49 66t66 49q13 0 23 -10q6 -6 46 -44.5t82 -79.5t86.5 -86t73 -78t28.5 -41z" />
    <glyph glyph-name="cogs" unicode="&#xf085;" horiz-adv-x="1920" 
d="M896 640q0 106 -75 181t-181 75t-181 -75t-75 -181t75 -181t181 -75t181 75t75 181zM1664 128q0 52 -38 90t-90 38t-90 -38t-38 -90q0 -53 37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1664 1152q0 52 -38 90t-90 38t-90 -38t-38 -90q0 -53 37.5 -90.5t90.5 -37.5
t90.5 37.5t37.5 90.5zM1280 731v-185q0 -10 -7 -19.5t-16 -10.5l-155 -24q-11 -35 -32 -76q34 -48 90 -115q7 -11 7 -20q0 -12 -7 -19q-23 -30 -82.5 -89.5t-78.5 -59.5q-11 0 -21 7l-115 90q-37 -19 -77 -31q-11 -108 -23 -155q-7 -24 -30 -24h-186q-11 0 -20 7.5t-10 17.5
l-23 153q-34 10 -75 31l-118 -89q-7 -7 -20 -7q-11 0 -21 8q-144 133 -144 160q0 9 7 19q10 14 41 53t47 61q-23 44 -35 82l-152 24q-10 1 -17 9.5t-7 19.5v185q0 10 7 19.5t16 10.5l155 24q11 35 32 76q-34 48 -90 115q-7 11 -7 20q0 12 7 20q22 30 82 89t79 59q11 0 21 -7
l115 -90q34 18 77 32q11 108 23 154q7 24 30 24h186q11 0 20 -7.5t10 -17.5l23 -153q34 -10 75 -31l118 89q8 7 20 7q11 0 21 -8q144 -133 144 -160q0 -8 -7 -19q-12 -16 -42 -54t-45 -60q23 -48 34 -82l152 -23q10 -2 17 -10.5t7 -19.5zM1920 198v-140q0 -16 -149 -31
q-12 -27 -30 -52q51 -113 51 -138q0 -4 -4 -7q-122 -71 -124 -71q-8 0 -46 47t-52 68q-20 -2 -30 -2t-30 2q-14 -21 -52 -68t-46 -47q-2 0 -124 71q-4 3 -4 7q0 25 51 138q-18 25 -30 52q-149 15 -149 31v140q0 16 149 31q13 29 30 52q-51 113 -51 138q0 4 4 7q4 2 35 20
t59 34t30 16q8 0 46 -46.5t52 -67.5q20 2 30 2t30 -2q51 71 92 112l6 2q4 0 124 -70q4 -3 4 -7q0 -25 -51 -138q17 -23 30 -52q149 -15 149 -31zM1920 1222v-140q0 -16 -149 -31q-12 -27 -30 -52q51 -113 51 -138q0 -4 -4 -7q-122 -71 -124 -71q-8 0 -46 47t-52 68
q-20 -2 -30 -2t-30 2q-14 -21 -52 -68t-46 -47q-2 0 -124 71q-4 3 -4 7q0 25 51 138q-18 25 -30 52q-149 15 -149 31v140q0 16 149 31q13 29 30 52q-51 113 -51 138q0 4 4 7q4 2 35 20t59 34t30 16q8 0 46 -46.5t52 -67.5q20 2 30 2t30 -2q51 71 92 112l6 2q4 0 124 -70
q4 -3 4 -7q0 -25 -51 -138q17 -23 30 -52q149 -15 149 -31z" />
    <glyph glyph-name="comments" unicode="&#xf086;" horiz-adv-x="1792" 
d="M1408 768q0 -139 -94 -257t-256.5 -186.5t-353.5 -68.5q-86 0 -176 16q-124 -88 -278 -128q-36 -9 -86 -16h-3q-11 0 -20.5 8t-11.5 21q-1 3 -1 6.5t0.5 6.5t2 6l2.5 5t3.5 5.5t4 5t4.5 5t4 4.5q5 6 23 25t26 29.5t22.5 29t25 38.5t20.5 44q-124 72 -195 177t-71 224
q0 139 94 257t256.5 186.5t353.5 68.5t353.5 -68.5t256.5 -186.5t94 -257zM1792 512q0 -120 -71 -224.5t-195 -176.5q10 -24 20.5 -44t25 -38.5t22.5 -29t26 -29.5t23 -25q1 -1 4 -4.5t4.5 -5t4 -5t3.5 -5.5l2.5 -5t2 -6t0.5 -6.5t-1 -6.5q-3 -14 -13 -22t-22 -7
q-50 7 -86 16q-154 40 -278 128q-90 -16 -176 -16q-271 0 -472 132q58 -4 88 -4q161 0 309 45t264 129q125 92 192 212t67 254q0 77 -23 152q129 -71 204 -178t75 -230z" />
    <glyph glyph-name="thumbs_up_alt" unicode="&#xf087;" 
d="M256 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 768q0 51 -39 89.5t-89 38.5h-352q0 58 48 159.5t48 160.5q0 98 -32 145t-128 47q-26 -26 -38 -85t-30.5 -125.5t-59.5 -109.5q-22 -23 -77 -91q-4 -5 -23 -30t-31.5 -41t-34.5 -42.5
t-40 -44t-38.5 -35.5t-40 -27t-35.5 -9h-32v-640h32q13 0 31.5 -3t33 -6.5t38 -11t35 -11.5t35.5 -12.5t29 -10.5q211 -73 342 -73h121q192 0 192 167q0 26 -5 56q30 16 47.5 52.5t17.5 73.5t-18 69q53 50 53 119q0 25 -10 55.5t-25 47.5q32 1 53.5 47t21.5 81zM1536 769
q0 -89 -49 -163q9 -33 9 -69q0 -77 -38 -144q3 -21 3 -43q0 -101 -60 -178q1 -139 -85 -219.5t-227 -80.5h-36h-93q-96 0 -189.5 22.5t-216.5 65.5q-116 40 -138 40h-288q-53 0 -90.5 37.5t-37.5 90.5v640q0 53 37.5 90.5t90.5 37.5h274q36 24 137 155q58 75 107 128
q24 25 35.5 85.5t30.5 126.5t62 108q39 37 90 37q84 0 151 -32.5t102 -101.5t35 -186q0 -93 -48 -192h176q104 0 180 -76t76 -179z" />
    <glyph glyph-name="thumbs_down_alt" unicode="&#xf088;" 
d="M256 1088q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 512q0 35 -21.5 81t-53.5 47q15 17 25 47.5t10 55.5q0 69 -53 119q18 31 18 69q0 37 -17.5 73.5t-47.5 52.5q5 30 5 56q0 85 -49 126t-136 41h-128q-131 0 -342 -73q-5 -2 -29 -10.5
t-35.5 -12.5t-35 -11.5t-38 -11t-33 -6.5t-31.5 -3h-32v-640h32q16 0 35.5 -9t40 -27t38.5 -35.5t40 -44t34.5 -42.5t31.5 -41t23 -30q55 -68 77 -91q41 -43 59.5 -109.5t30.5 -125.5t38 -85q96 0 128 47t32 145q0 59 -48 160.5t-48 159.5h352q50 0 89 38.5t39 89.5z
M1536 511q0 -103 -76 -179t-180 -76h-176q48 -99 48 -192q0 -118 -35 -186q-35 -69 -102 -101.5t-151 -32.5q-51 0 -90 37q-34 33 -54 82t-25.5 90.5t-17.5 84.5t-31 64q-48 50 -107 127q-101 131 -137 155h-274q-53 0 -90.5 37.5t-37.5 90.5v640q0 53 37.5 90.5t90.5 37.5
h288q22 0 138 40q128 44 223 66t200 22h112q140 0 226.5 -79t85.5 -216v-5q60 -77 60 -178q0 -22 -3 -43q38 -67 38 -144q0 -36 -9 -69q49 -73 49 -163z" />
    <glyph glyph-name="star_half" unicode="&#xf089;" horiz-adv-x="896" 
d="M832 1504v-1339l-449 -236q-22 -12 -40 -12q-21 0 -31.5 14.5t-10.5 35.5q0 6 2 20l86 500l-364 354q-25 27 -25 48q0 37 56 46l502 73l225 455q19 41 49 41z" />
    <glyph glyph-name="heart_empty" unicode="&#xf08a;" horiz-adv-x="1792" 
d="M1664 940q0 81 -21.5 143t-55 98.5t-81.5 59.5t-94 31t-98 8t-112 -25.5t-110.5 -64t-86.5 -72t-60 -61.5q-18 -22 -49 -22t-49 22q-24 28 -60 61.5t-86.5 72t-110.5 64t-112 25.5t-98 -8t-94 -31t-81.5 -59.5t-55 -98.5t-21.5 -143q0 -168 187 -355l581 -560l580 559
q188 188 188 356zM1792 940q0 -221 -229 -450l-623 -600q-18 -18 -44 -18t-44 18l-624 602q-10 8 -27.5 26t-55.5 65.5t-68 97.5t-53.5 121t-23.5 138q0 220 127 344t351 124q62 0 126.5 -21.5t120 -58t95.5 -68.5t76 -68q36 36 76 68t95.5 68.5t120 58t126.5 21.5
q224 0 351 -124t127 -344z" />
    <glyph glyph-name="signout" unicode="&#xf08b;" horiz-adv-x="1664" 
d="M640 96q0 -4 1 -20t0.5 -26.5t-3 -23.5t-10 -19.5t-20.5 -6.5h-320q-119 0 -203.5 84.5t-84.5 203.5v704q0 119 84.5 203.5t203.5 84.5h320q13 0 22.5 -9.5t9.5 -22.5q0 -4 1 -20t0.5 -26.5t-3 -23.5t-10 -19.5t-20.5 -6.5h-320q-66 0 -113 -47t-47 -113v-704
q0 -66 47 -113t113 -47h288h11h13t11.5 -1t11.5 -3t8 -5.5t7 -9t2 -13.5zM1568 640q0 -26 -19 -45l-544 -544q-19 -19 -45 -19t-45 19t-19 45v288h-448q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h448v288q0 26 19 45t45 19t45 -19l544 -544q19 -19 19 -45z" />
    <glyph glyph-name="linkedin_sign" unicode="&#xf08c;" 
d="M237 122h231v694h-231v-694zM483 1030q-1 52 -36 86t-93 34t-94.5 -34t-36.5 -86q0 -51 35.5 -85.5t92.5 -34.5h1q59 0 95 34.5t36 85.5zM1068 122h231v398q0 154 -73 233t-193 79q-136 0 -209 -117h2v101h-231q3 -66 0 -694h231v388q0 38 7 56q15 35 45 59.5t74 24.5
q116 0 116 -157v-371zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
    <glyph glyph-name="pushpin" unicode="&#xf08d;" horiz-adv-x="1152" 
d="M480 672v448q0 14 -9 23t-23 9t-23 -9t-9 -23v-448q0 -14 9 -23t23 -9t23 9t9 23zM1152 320q0 -26 -19 -45t-45 -19h-429l-51 -483q-2 -12 -10.5 -20.5t-20.5 -8.5h-1q-27 0 -32 27l-76 485h-404q-26 0 -45 19t-19 45q0 123 78.5 221.5t177.5 98.5v512q-52 0 -90 38
t-38 90t38 90t90 38h640q52 0 90 -38t38 -90t-38 -90t-90 -38v-512q99 0 177.5 -98.5t78.5 -221.5z" />
    <glyph glyph-name="external_link" unicode="&#xf08e;" horiz-adv-x="1792" 
d="M1408 608v-320q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h704q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-704q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113v320
q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM1792 1472v-512q0 -26 -19 -45t-45 -19t-45 19l-176 176l-652 -652q-10 -10 -23 -10t-23 10l-114 114q-10 10 -10 23t10 23l652 652l-176 176q-19 19 -19 45t19 45t45 19h512q26 0 45 -19t19 -45z" />
    <glyph glyph-name="signin" unicode="&#xf090;" 
d="M1184 640q0 -26 -19 -45l-544 -544q-19 -19 -45 -19t-45 19t-19 45v288h-448q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h448v288q0 26 19 45t45 19t45 -19l544 -544q19 -19 19 -45zM1536 992v-704q0 -119 -84.5 -203.5t-203.5 -84.5h-320q-13 0 -22.5 9.5t-9.5 22.5
q0 4 -1 20t-0.5 26.5t3 23.5t10 19.5t20.5 6.5h320q66 0 113 47t47 113v704q0 66 -47 113t-113 47h-288h-11h-13t-11.5 1t-11.5 3t-8 5.5t-7 9t-2 13.5q0 4 -1 20t-0.5 26.5t3 23.5t10 19.5t20.5 6.5h320q119 0 203.5 -84.5t84.5 -203.5z" />
    <glyph glyph-name="trophy" unicode="&#xf091;" horiz-adv-x="1664" 
d="M458 653q-74 162 -74 371h-256v-96q0 -78 94.5 -162t235.5 -113zM1536 928v96h-256q0 -209 -74 -371q141 29 235.5 113t94.5 162zM1664 1056v-128q0 -71 -41.5 -143t-112 -130t-173 -97.5t-215.5 -44.5q-42 -54 -95 -95q-38 -34 -52.5 -72.5t-14.5 -89.5q0 -54 30.5 -91
t97.5 -37q75 0 133.5 -45.5t58.5 -114.5v-64q0 -14 -9 -23t-23 -9h-832q-14 0 -23 9t-9 23v64q0 69 58.5 114.5t133.5 45.5q67 0 97.5 37t30.5 91q0 51 -14.5 89.5t-52.5 72.5q-53 41 -95 95q-113 5 -215.5 44.5t-173 97.5t-112 130t-41.5 143v128q0 40 28 68t68 28h288v96
q0 66 47 113t113 47h576q66 0 113 -47t47 -113v-96h288q40 0 68 -28t28 -68z" />
    <glyph glyph-name="github_sign" unicode="&#xf092;" 
d="M519 336q4 6 -3 13q-9 7 -14 2q-4 -6 3 -13q9 -7 14 -2zM491 377q-5 7 -12 4q-6 -4 0 -12q7 -8 12 -5q6 4 0 13zM450 417q2 4 -5 8q-7 2 -8 -2q-3 -5 4 -8q8 -2 9 2zM471 394q2 1 1.5 4.5t-3.5 5.5q-6 7 -10 3t1 -11q6 -6 11 -2zM557 319q2 7 -9 11q-9 3 -13 -4
q-2 -7 9 -11q9 -3 13 4zM599 316q0 8 -12 8q-10 0 -10 -8t11 -8t11 8zM638 323q-2 7 -13 5t-9 -9q2 -8 12 -6t10 10zM1280 640q0 212 -150 362t-362 150t-362 -150t-150 -362q0 -167 98 -300.5t252 -185.5q18 -3 26.5 5t8.5 20q0 52 -1 95q-6 -1 -15.5 -2.5t-35.5 -2t-48 4
t-43.5 20t-29.5 41.5q-23 59 -57 74q-2 1 -4.5 3.5l-8 8t-7 9.5t4 7.5t19.5 3.5q6 0 15 -2t30 -15.5t33 -35.5q16 -28 37.5 -42t43.5 -14t38 3.5t30 9.5q7 47 33 69q-49 6 -86 18.5t-73 39t-55.5 76t-19.5 119.5q0 79 53 137q-24 62 5 136q19 6 54.5 -7.5t60.5 -29.5l26 -16
q58 17 128 17t128 -17q11 7 28.5 18t55.5 26t57 9q29 -74 5 -136q53 -58 53 -137q0 -57 -14 -100.5t-35.5 -70t-53.5 -44.5t-62.5 -26t-68.5 -12q35 -31 35 -95q0 -40 -0.5 -89t-0.5 -51q0 -12 8.5 -20t26.5 -5q154 52 252 185.5t98 300.5zM1536 1120v-960
q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
    <glyph glyph-name="upload_alt" unicode="&#xf093;" horiz-adv-x="1664" 
d="M1280 64q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1536 64q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1664 288v-320q0 -40 -28 -68t-68 -28h-1472q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h427q21 -56 70.5 -92
t110.5 -36h256q61 0 110.5 36t70.5 92h427q40 0 68 -28t28 -68zM1339 936q-17 -40 -59 -40h-256v-448q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v448h-256q-42 0 -59 40q-17 39 14 69l448 448q18 19 45 19t45 -19l448 -448q31 -30 14 -69z" />
    <glyph glyph-name="lemon" unicode="&#xf094;" 
d="M1407 710q0 44 -7 113.5t-18 96.5q-12 30 -17 44t-9 36.5t-4 48.5q0 23 5 68.5t5 67.5q0 37 -10 55q-4 1 -13 1q-19 0 -58 -4.5t-59 -4.5q-60 0 -176 24t-175 24q-43 0 -94.5 -11.5t-85 -23.5t-89.5 -34q-137 -54 -202 -103q-96 -73 -159.5 -189.5t-88 -236t-24.5 -248.5
q0 -40 12.5 -120t12.5 -121q0 -23 -11 -66.5t-11 -65.5t12 -36.5t34 -14.5q24 0 72.5 11t73.5 11q57 0 169.5 -15.5t169.5 -15.5q181 0 284 36q129 45 235.5 152.5t166 245.5t59.5 275zM1535 712q0 -165 -70 -327.5t-196 -288t-281 -180.5q-124 -44 -326 -44
q-57 0 -170 14.5t-169 14.5q-24 0 -72.5 -14.5t-73.5 -14.5q-73 0 -123.5 55.5t-50.5 128.5q0 24 11 68t11 67q0 40 -12.5 120.5t-12.5 121.5q0 111 18 217.5t54.5 209.5t100.5 194t150 156q78 59 232 120q194 78 316 78q60 0 175.5 -24t173.5 -24q19 0 57 5t58 5
q81 0 118 -50.5t37 -134.5q0 -23 -5 -68t-5 -68q0 -13 2 -25t3.5 -16.5t7.5 -20.5t8 -20q16 -40 25 -118.5t9 -136.5z" />
    <glyph glyph-name="phone" unicode="&#xf095;" horiz-adv-x="1408" 
d="M1408 296q0 -27 -10 -70.5t-21 -68.5q-21 -50 -122 -106q-94 -51 -186 -51q-27 0 -53 3.5t-57.5 12.5t-47 14.5t-55.5 20.5t-49 18q-98 35 -175 83q-127 79 -264 216t-216 264q-48 77 -83 175q-3 9 -18 49t-20.5 55.5t-14.5 47t-12.5 57.5t-3.5 53q0 92 51 186
q56 101 106 122q25 11 68.5 21t70.5 10q14 0 21 -3q18 -6 53 -76q11 -19 30 -54t35 -63.5t31 -53.5q3 -4 17.5 -25t21.5 -35.5t7 -28.5q0 -20 -28.5 -50t-62 -55t-62 -53t-28.5 -46q0 -9 5 -22.5t8.5 -20.5t14 -24t11.5 -19q76 -137 174 -235t235 -174q2 -1 19 -11.5t24 -14
t20.5 -8.5t22.5 -5q18 0 46 28.5t53 62t55 62t50 28.5q14 0 28.5 -7t35.5 -21.5t25 -17.5q25 -15 53.5 -31t63.5 -35t54 -30q70 -35 76 -53q3 -7 3 -21z" />
    <glyph glyph-name="check_empty" unicode="&#xf096;" horiz-adv-x="1408" 
d="M1120 1280h-832q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113v832q0 66 -47 113t-113 47zM1408 1120v-832q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832
q119 0 203.5 -84.5t84.5 -203.5z" />
    <glyph glyph-name="bookmark_empty" unicode="&#xf097;" horiz-adv-x="1280" 
d="M1152 1280h-1024v-1242l423 406l89 85l89 -85l423 -406v1242zM1164 1408q23 0 44 -9q33 -13 52.5 -41t19.5 -62v-1289q0 -34 -19.5 -62t-52.5 -41q-19 -8 -44 -8q-48 0 -83 32l-441 424l-441 -424q-36 -33 -83 -33q-23 0 -44 9q-33 13 -52.5 41t-19.5 62v1289
q0 34 19.5 62t52.5 41q21 9 44 9h1048z" />
    <glyph glyph-name="phone_sign" unicode="&#xf098;" 
d="M1280 343q0 11 -2 16t-18 16.5t-40.5 25t-47.5 26.5t-45.5 25t-28.5 15q-5 3 -19 13t-25 15t-21 5q-15 0 -36.5 -20.5t-39.5 -45t-38.5 -45t-33.5 -20.5q-7 0 -16.5 3.5t-15.5 6.5t-17 9.5t-14 8.5q-99 55 -170 126.5t-127 170.5q-2 3 -8.5 14t-9.5 17t-6.5 15.5
t-3.5 16.5q0 13 20.5 33.5t45 38.5t45 39.5t20.5 36.5q0 10 -5 21t-15 25t-13 19q-3 6 -15 28.5t-25 45.5t-26.5 47.5t-25 40.5t-16.5 18t-16 2q-48 0 -101 -22q-46 -21 -80 -94.5t-34 -130.5q0 -16 2.5 -34t5 -30.5t9 -33t10 -29.5t12.5 -33t11 -30q60 -164 216.5 -320.5
t320.5 -216.5q6 -2 30 -11t33 -12.5t29.5 -10t33 -9t30.5 -5t34 -2.5q57 0 130.5 34t94.5 80q22 53 22 101zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z
" />
    <glyph glyph-name="twitter" unicode="&#xf099;" horiz-adv-x="1664" 
d="M1620 1128q-67 -98 -162 -167q1 -14 1 -42q0 -130 -38 -259.5t-115.5 -248.5t-184.5 -210.5t-258 -146t-323 -54.5q-271 0 -496 145q35 -4 78 -4q225 0 401 138q-105 2 -188 64.5t-114 159.5q33 -5 61 -5q43 0 85 11q-112 23 -185.5 111.5t-73.5 205.5v4q68 -38 146 -41
q-66 44 -105 115t-39 154q0 88 44 163q121 -149 294.5 -238.5t371.5 -99.5q-8 38 -8 74q0 134 94.5 228.5t228.5 94.5q140 0 236 -102q109 21 205 78q-37 -115 -142 -178q93 10 186 50z" />
    <glyph glyph-name="facebook" unicode="&#xf09a;" horiz-adv-x="1024" 
d="M959 1524v-264h-157q-86 0 -116 -36t-30 -108v-189h293l-39 -296h-254v-759h-306v759h-255v296h255v218q0 186 104 288.5t277 102.5q147 0 228 -12z" />
    <glyph glyph-name="github" unicode="&#xf09b;" 
d="M768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5q0 -251 -146.5 -451.5t-378.5 -277.5q-27 -5 -40 7t-13 30q0 3 0.5 76.5t0.5 134.5q0 97 -52 142q57 6 102.5 18t94 39t81 66.5t53 105t20.5 150.5q0 119 -79 206q37 91 -8 204q-28 9 -81 -11t-92 -44l-38 -24
q-93 26 -192 26t-192 -26q-16 11 -42.5 27t-83.5 38.5t-85 13.5q-45 -113 -8 -204q-79 -87 -79 -206q0 -85 20.5 -150t52.5 -105t80.5 -67t94 -39t102.5 -18q-39 -36 -49 -103q-21 -10 -45 -15t-57 -5t-65.5 21.5t-55.5 62.5q-19 32 -48.5 52t-49.5 24l-20 3q-21 0 -29 -4.5
t-5 -11.5t9 -14t13 -12l7 -5q22 -10 43.5 -38t31.5 -51l10 -23q13 -38 44 -61.5t67 -30t69.5 -7t55.5 3.5l23 4q0 -38 0.5 -88.5t0.5 -54.5q0 -18 -13 -30t-40 -7q-232 77 -378.5 277.5t-146.5 451.5q0 209 103 385.5t279.5 279.5t385.5 103zM291 305q3 7 -7 12
q-10 3 -13 -2q-3 -7 7 -12q9 -6 13 2zM322 271q7 5 -2 16q-10 9 -16 3q-7 -5 2 -16q10 -10 16 -3zM352 226q9 7 0 19q-8 13 -17 6q-9 -5 0 -18t17 -7zM394 184q8 8 -4 19q-12 12 -20 3q-9 -8 4 -19q12 -12 20 -3zM451 159q3 11 -13 16q-15 4 -19 -7t13 -15q15 -6 19 6z
M514 154q0 13 -17 11q-16 0 -16 -11q0 -13 17 -11q16 0 16 11zM572 164q-2 11 -18 9q-16 -3 -14 -15t18 -8t14 14z" />
    <glyph glyph-name="unlock" unicode="&#xf09c;" horiz-adv-x="1664" 
d="M1664 960v-256q0 -26 -19 -45t-45 -19h-64q-26 0 -45 19t-19 45v256q0 106 -75 181t-181 75t-181 -75t-75 -181v-192h96q40 0 68 -28t28 -68v-576q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v576q0 40 28 68t68 28h672v192q0 185 131.5 316.5t316.5 131.5
t316.5 -131.5t131.5 -316.5z" />
    <glyph glyph-name="credit_card" unicode="&#xf09d;" horiz-adv-x="1920" 
d="M1760 1408q66 0 113 -47t47 -113v-1216q0 -66 -47 -113t-113 -47h-1600q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1600zM160 1280q-13 0 -22.5 -9.5t-9.5 -22.5v-224h1664v224q0 13 -9.5 22.5t-22.5 9.5h-1600zM1760 0q13 0 22.5 9.5t9.5 22.5v608h-1664v-608
q0 -13 9.5 -22.5t22.5 -9.5h1600zM256 128v128h256v-128h-256zM640 128v128h384v-128h-384z" />
    <glyph glyph-name="rss" unicode="&#xf09e;" horiz-adv-x="1408" 
d="M384 192q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM896 69q2 -28 -17 -48q-18 -21 -47 -21h-135q-25 0 -43 16.5t-20 41.5q-22 229 -184.5 391.5t-391.5 184.5q-25 2 -41.5 20t-16.5 43v135q0 29 21 47q17 17 43 17h5q160 -13 306 -80.5
t259 -181.5q114 -113 181.5 -259t80.5 -306zM1408 67q2 -27 -18 -47q-18 -20 -46 -20h-143q-26 0 -44.5 17.5t-19.5 42.5q-12 215 -101 408.5t-231.5 336t-336 231.5t-408.5 102q-25 1 -42.5 19.5t-17.5 43.5v143q0 28 20 46q18 18 44 18h3q262 -13 501.5 -120t425.5 -294
q187 -186 294 -425.5t120 -501.5z" />
    <glyph glyph-name="hdd" unicode="&#xf0a0;" 
d="M1040 320q0 -33 -23.5 -56.5t-56.5 -23.5t-56.5 23.5t-23.5 56.5t23.5 56.5t56.5 23.5t56.5 -23.5t23.5 -56.5zM1296 320q0 -33 -23.5 -56.5t-56.5 -23.5t-56.5 23.5t-23.5 56.5t23.5 56.5t56.5 23.5t56.5 -23.5t23.5 -56.5zM1408 160v320q0 13 -9.5 22.5t-22.5 9.5
h-1216q-13 0 -22.5 -9.5t-9.5 -22.5v-320q0 -13 9.5 -22.5t22.5 -9.5h1216q13 0 22.5 9.5t9.5 22.5zM178 640h1180l-157 482q-4 13 -16 21.5t-26 8.5h-782q-14 0 -26 -8.5t-16 -21.5zM1536 480v-320q0 -66 -47 -113t-113 -47h-1216q-66 0 -113 47t-47 113v320q0 25 16 75
l197 606q17 53 63 86t101 33h782q55 0 101 -33t63 -86l197 -606q16 -50 16 -75z" />
    <glyph glyph-name="bullhorn" unicode="&#xf0a1;" horiz-adv-x="1792" 
d="M1664 896q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5v-384q0 -52 -38 -90t-90 -38q-417 347 -812 380q-58 -19 -91 -66t-31 -100.5t40 -92.5q-20 -33 -23 -65.5t6 -58t33.5 -55t48 -50t61.5 -50.5q-29 -58 -111.5 -83t-168.5 -11.5t-132 55.5q-7 23 -29.5 87.5
t-32 94.5t-23 89t-15 101t3.5 98.5t22 110.5h-122q-66 0 -113 47t-47 113v192q0 66 47 113t113 47h480q435 0 896 384q52 0 90 -38t38 -90v-384zM1536 292v954q-394 -302 -768 -343v-270q377 -42 768 -341z" />
    <glyph glyph-name="bell" unicode="&#xf0a2;" horiz-adv-x="1792" 
d="M912 -160q0 16 -16 16q-59 0 -101.5 42.5t-42.5 101.5q0 16 -16 16t-16 -16q0 -73 51.5 -124.5t124.5 -51.5q16 0 16 16zM246 128h1300q-266 300 -266 832q0 51 -24 105t-69 103t-121.5 80.5t-169.5 31.5t-169.5 -31.5t-121.5 -80.5t-69 -103t-24 -105q0 -532 -266 -832z
M1728 128q0 -52 -38 -90t-90 -38h-448q0 -106 -75 -181t-181 -75t-181 75t-75 181h-448q-52 0 -90 38t-38 90q50 42 91 88t85 119.5t74.5 158.5t50 206t19.5 260q0 152 117 282.5t307 158.5q-8 19 -8 39q0 40 28 68t68 28t68 -28t28 -68q0 -20 -8 -39q190 -28 307 -158.5
t117 -282.5q0 -139 19.5 -260t50 -206t74.5 -158.5t85 -119.5t91 -88z" />
    <glyph glyph-name="certificate" unicode="&#xf0a3;" 
d="M1376 640l138 -135q30 -28 20 -70q-12 -41 -52 -51l-188 -48l53 -186q12 -41 -19 -70q-29 -31 -70 -19l-186 53l-48 -188q-10 -40 -51 -52q-12 -2 -19 -2q-31 0 -51 22l-135 138l-135 -138q-28 -30 -70 -20q-41 11 -51 52l-48 188l-186 -53q-41 -12 -70 19q-31 29 -19 70
l53 186l-188 48q-40 10 -52 51q-10 42 20 70l138 135l-138 135q-30 28 -20 70q12 41 52 51l188 48l-53 186q-12 41 19 70q29 31 70 19l186 -53l48 188q10 41 51 51q41 12 70 -19l135 -139l135 139q29 30 70 19q41 -10 51 -51l48 -188l186 53q41 12 70 -19q31 -29 19 -70
l-53 -186l188 -48q40 -10 52 -51q10 -42 -20 -70z" />
    <glyph glyph-name="hand_right" unicode="&#xf0a4;" horiz-adv-x="1792" 
d="M256 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1664 768q0 51 -39 89.5t-89 38.5h-576q0 20 15 48.5t33 55t33 68t15 84.5q0 67 -44.5 97.5t-115.5 30.5q-24 0 -90 -139q-24 -44 -37 -65q-40 -64 -112 -145q-71 -81 -101 -106
q-69 -57 -140 -57h-32v-640h32q72 0 167 -32t193.5 -64t179.5 -32q189 0 189 167q0 26 -5 56q30 16 47.5 52.5t17.5 73.5t-18 69q53 50 53 119q0 25 -10 55.5t-25 47.5h331q52 0 90 38t38 90zM1792 769q0 -105 -75.5 -181t-180.5 -76h-169q-4 -62 -37 -119q3 -21 3 -43
q0 -101 -60 -178q1 -139 -85 -219.5t-227 -80.5q-133 0 -322 69q-164 59 -223 59h-288q-53 0 -90.5 37.5t-37.5 90.5v640q0 53 37.5 90.5t90.5 37.5h288q10 0 21.5 4.5t23.5 14t22.5 18t24 22.5t20.5 21.5t19 21.5t14 17q65 74 100 129q13 21 33 62t37 72t40.5 63t55 49.5
t69.5 17.5q125 0 206.5 -67t81.5 -189q0 -68 -22 -128h374q104 0 180 -76t76 -179z" />
    <glyph glyph-name="hand_left" unicode="&#xf0a5;" horiz-adv-x="1792" 
d="M1376 128h32v640h-32q-35 0 -67.5 12t-62.5 37t-50 46t-49 54q-8 9 -12 14q-72 81 -112 145q-14 22 -38 68q-1 3 -10.5 22.5t-18.5 36t-20 35.5t-21.5 30.5t-18.5 11.5q-71 0 -115.5 -30.5t-44.5 -97.5q0 -43 15 -84.5t33 -68t33 -55t15 -48.5h-576q-50 0 -89 -38.5
t-39 -89.5q0 -52 38 -90t90 -38h331q-15 -17 -25 -47.5t-10 -55.5q0 -69 53 -119q-18 -32 -18 -69t17.5 -73.5t47.5 -52.5q-4 -24 -4 -56q0 -85 48.5 -126t135.5 -41q84 0 183 32t194 64t167 32zM1664 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45z
M1792 768v-640q0 -53 -37.5 -90.5t-90.5 -37.5h-288q-59 0 -223 -59q-190 -69 -317 -69q-142 0 -230 77.5t-87 217.5l1 5q-61 76 -61 178q0 22 3 43q-33 57 -37 119h-169q-105 0 -180.5 76t-75.5 181q0 103 76 179t180 76h374q-22 60 -22 128q0 122 81.5 189t206.5 67
q38 0 69.5 -17.5t55 -49.5t40.5 -63t37 -72t33 -62q35 -55 100 -129q2 -3 14 -17t19 -21.5t20.5 -21.5t24 -22.5t22.5 -18t23.5 -14t21.5 -4.5h288q53 0 90.5 -37.5t37.5 -90.5z" />
    <glyph glyph-name="hand_up" unicode="&#xf0a6;" 
d="M1280 -64q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 700q0 189 -167 189q-26 0 -56 -5q-16 30 -52.5 47.5t-73.5 17.5t-69 -18q-50 53 -119 53q-25 0 -55.5 -10t-47.5 -25v331q0 52 -38 90t-90 38q-51 0 -89.5 -39t-38.5 -89v-576
q-20 0 -48.5 15t-55 33t-68 33t-84.5 15q-67 0 -97.5 -44.5t-30.5 -115.5q0 -24 139 -90q44 -24 65 -37q64 -40 145 -112q81 -71 106 -101q57 -69 57 -140v-32h640v32q0 72 32 167t64 193.5t32 179.5zM1536 705q0 -133 -69 -322q-59 -164 -59 -223v-288q0 -53 -37.5 -90.5
t-90.5 -37.5h-640q-53 0 -90.5 37.5t-37.5 90.5v288q0 10 -4.5 21.5t-14 23.5t-18 22.5t-22.5 24t-21.5 20.5t-21.5 19t-17 14q-74 65 -129 100q-21 13 -62 33t-72 37t-63 40.5t-49.5 55t-17.5 69.5q0 125 67 206.5t189 81.5q68 0 128 -22v374q0 104 76 180t179 76
q105 0 181 -75.5t76 -180.5v-169q62 -4 119 -37q21 3 43 3q101 0 178 -60q139 1 219.5 -85t80.5 -227z" />
    <glyph glyph-name="hand_down" unicode="&#xf0a7;" 
d="M1408 576q0 84 -32 183t-64 194t-32 167v32h-640v-32q0 -35 -12 -67.5t-37 -62.5t-46 -50t-54 -49q-9 -8 -14 -12q-81 -72 -145 -112q-22 -14 -68 -38q-3 -1 -22.5 -10.5t-36 -18.5t-35.5 -20t-30.5 -21.5t-11.5 -18.5q0 -71 30.5 -115.5t97.5 -44.5q43 0 84.5 15t68 33
t55 33t48.5 15v-576q0 -50 38.5 -89t89.5 -39q52 0 90 38t38 90v331q46 -35 103 -35q69 0 119 53q32 -18 69 -18t73.5 17.5t52.5 47.5q24 -4 56 -4q85 0 126 48.5t41 135.5zM1280 1344q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1536 580
q0 -142 -77.5 -230t-217.5 -87l-5 1q-76 -61 -178 -61q-22 0 -43 3q-54 -30 -119 -37v-169q0 -105 -76 -180.5t-181 -75.5q-103 0 -179 76t-76 180v374q-54 -22 -128 -22q-121 0 -188.5 81.5t-67.5 206.5q0 38 17.5 69.5t49.5 55t63 40.5t72 37t62 33q55 35 129 100
q3 2 17 14t21.5 19t21.5 20.5t22.5 24t18 22.5t14 23.5t4.5 21.5v288q0 53 37.5 90.5t90.5 37.5h640q53 0 90.5 -37.5t37.5 -90.5v-288q0 -59 59 -223q69 -190 69 -317z" />
    <glyph glyph-name="circle_arrow_left" unicode="&#xf0a8;" 
d="M1280 576v128q0 26 -19 45t-45 19h-502l189 189q19 19 19 45t-19 45l-91 91q-18 18 -45 18t-45 -18l-362 -362l-91 -91q-18 -18 -18 -45t18 -45l91 -91l362 -362q18 -18 45 -18t45 18l91 91q18 18 18 45t-18 45l-189 189h502q26 0 45 19t19 45zM1536 640
q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
    <glyph glyph-name="circle_arrow_right" unicode="&#xf0a9;" 
d="M1285 640q0 27 -18 45l-91 91l-362 362q-18 18 -45 18t-45 -18l-91 -91q-18 -18 -18 -45t18 -45l189 -189h-502q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h502l-189 -189q-19 -19 -19 -45t19 -45l91 -91q18 -18 45 -18t45 18l362 362l91 91q18 18 18 45zM1536 640
q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
    <glyph glyph-name="circle_arrow_up" unicode="&#xf0aa;" 
d="M1284 641q0 27 -18 45l-362 362l-91 91q-18 18 -45 18t-45 -18l-91 -91l-362 -362q-18 -18 -18 -45t18 -45l91 -91q18 -18 45 -18t45 18l189 189v-502q0 -26 19 -45t45 -19h128q26 0 45 19t19 45v502l189 -189q19 -19 45 -19t45 19l91 91q18 18 18 45zM1536 640
q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
    <glyph glyph-name="circle_arrow_down" unicode="&#xf0ab;" 
d="M1284 639q0 27 -18 45l-91 91q-18 18 -45 18t-45 -18l-189 -189v502q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-502l-189 189q-19 19 -45 19t-45 -19l-91 -91q-18 -18 -18 -45t18 -45l362 -362l91 -91q18 -18 45 -18t45 18l91 91l362 362q18 18 18 45zM1536 640
q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
    <glyph glyph-name="globe" unicode="&#xf0ac;" 
d="M768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM1042 887q-2 -1 -9.5 -9.5t-13.5 -9.5q2 0 4.5 5t5 11t3.5 7q6 7 22 15q14 6 52 12q34 8 51 -11
q-2 2 9.5 13t14.5 12q3 2 15 4.5t15 7.5l2 22q-12 -1 -17.5 7t-6.5 21q0 -2 -6 -8q0 7 -4.5 8t-11.5 -1t-9 -1q-10 3 -15 7.5t-8 16.5t-4 15q-2 5 -9.5 11t-9.5 10q-1 2 -2.5 5.5t-3 6.5t-4 5.5t-5.5 2.5t-7 -5t-7.5 -10t-4.5 -5q-3 2 -6 1.5t-4.5 -1t-4.5 -3t-5 -3.5
q-3 -2 -8.5 -3t-8.5 -2q15 5 -1 11q-10 4 -16 3q9 4 7.5 12t-8.5 14h5q-1 4 -8.5 8.5t-17.5 8.5t-13 6q-8 5 -34 9.5t-33 0.5q-5 -6 -4.5 -10.5t4 -14t3.5 -12.5q1 -6 -5.5 -13t-6.5 -12q0 -7 14 -15.5t10 -21.5q-3 -8 -16 -16t-16 -12q-5 -8 -1.5 -18.5t10.5 -16.5
q2 -2 1.5 -4t-3.5 -4.5t-5.5 -4t-6.5 -3.5l-3 -2q-11 -5 -20.5 6t-13.5 26q-7 25 -16 30q-23 8 -29 -1q-5 13 -41 26q-25 9 -58 4q6 1 0 15q-7 15 -19 12q3 6 4 17.5t1 13.5q3 13 12 23q1 1 7 8.5t9.5 13.5t0.5 6q35 -4 50 11q5 5 11.5 17t10.5 17q9 6 14 5.5t14.5 -5.5
t14.5 -5q14 -1 15.5 11t-7.5 20q12 -1 3 17q-4 7 -8 9q-12 4 -27 -5q-8 -4 2 -8q-1 1 -9.5 -10.5t-16.5 -17.5t-16 5q-1 1 -5.5 13.5t-9.5 13.5q-8 0 -16 -15q3 8 -11 15t-24 8q19 12 -8 27q-7 4 -20.5 5t-19.5 -4q-5 -7 -5.5 -11.5t5 -8t10.5 -5.5t11.5 -4t8.5 -3
q14 -10 8 -14q-2 -1 -8.5 -3.5t-11.5 -4.5t-6 -4q-3 -4 0 -14t-2 -14q-5 5 -9 17.5t-7 16.5q7 -9 -25 -6l-10 1q-4 0 -16 -2t-20.5 -1t-13.5 8q-4 8 0 20q1 4 4 2q-4 3 -11 9.5t-10 8.5q-46 -15 -94 -41q6 -1 12 1q5 2 13 6.5t10 5.5q34 14 42 7l5 5q14 -16 20 -25
q-7 4 -30 1q-20 -6 -22 -12q7 -12 5 -18q-4 3 -11.5 10t-14.5 11t-15 5q-16 0 -22 -1q-146 -80 -235 -222q7 -7 12 -8q4 -1 5 -9t2.5 -11t11.5 3q9 -8 3 -19q1 1 44 -27q19 -17 21 -21q3 -11 -10 -18q-1 2 -9 9t-9 4q-3 -5 0.5 -18.5t10.5 -12.5q-7 0 -9.5 -16t-2.5 -35.5
t-1 -23.5l2 -1q-3 -12 5.5 -34.5t21.5 -19.5q-13 -3 20 -43q6 -8 8 -9q3 -2 12 -7.5t15 -10t10 -10.5q4 -5 10 -22.5t14 -23.5q-2 -6 9.5 -20t10.5 -23q-1 0 -2.5 -1t-2.5 -1q3 -7 15.5 -14t15.5 -13q1 -3 2 -10t3 -11t8 -2q2 20 -24 62q-15 25 -17 29q-3 5 -5.5 15.5
t-4.5 14.5q2 0 6 -1.5t8.5 -3.5t7.5 -4t2 -3q-3 -7 2 -17.5t12 -18.5t17 -19t12 -13q6 -6 14 -19.5t0 -13.5q9 0 20 -10.5t17 -19.5q5 -8 8 -26t5 -24q2 -7 8.5 -13.5t12.5 -9.5l16 -8t13 -7q5 -2 18.5 -10.5t21.5 -11.5q10 -4 16 -4t14.5 2.5t13.5 3.5q15 2 29 -15t21 -21
q36 -19 55 -11q-2 -1 0.5 -7.5t8 -15.5t9 -14.5t5.5 -8.5q5 -6 18 -15t18 -15q6 4 7 9q-3 -8 7 -20t18 -10q14 3 14 32q-31 -15 -49 18q0 1 -2.5 5.5t-4 8.5t-2.5 8.5t0 7.5t5 3q9 0 10 3.5t-2 12.5t-4 13q-1 8 -11 20t-12 15q-5 -9 -16 -8t-16 9q0 -1 -1.5 -5.5t-1.5 -6.5
q-13 0 -15 1q1 3 2.5 17.5t3.5 22.5q1 4 5.5 12t7.5 14.5t4 12.5t-4.5 9.5t-17.5 2.5q-19 -1 -26 -20q-1 -3 -3 -10.5t-5 -11.5t-9 -7q-7 -3 -24 -2t-24 5q-13 8 -22.5 29t-9.5 37q0 10 2.5 26.5t3 25t-5.5 24.5q3 2 9 9.5t10 10.5q2 1 4.5 1.5t4.5 0t4 1.5t3 6q-1 1 -4 3
q-3 3 -4 3q7 -3 28.5 1.5t27.5 -1.5q15 -11 22 2q0 1 -2.5 9.5t-0.5 13.5q5 -27 29 -9q3 -3 15.5 -5t17.5 -5q3 -2 7 -5.5t5.5 -4.5t5 0.5t8.5 6.5q10 -14 12 -24q11 -40 19 -44q7 -3 11 -2t4.5 9.5t0 14t-1.5 12.5l-1 8v18l-1 8q-15 3 -18.5 12t1.5 18.5t15 18.5q1 1 8 3.5
t15.5 6.5t12.5 8q21 19 15 35q7 0 11 9q-1 0 -5 3t-7.5 5t-4.5 2q9 5 2 16q5 3 7.5 11t7.5 10q9 -12 21 -2q8 8 1 16q5 7 20.5 10.5t18.5 9.5q7 -2 8 2t1 12t3 12q4 5 15 9t13 5l17 11q3 4 0 4q18 -2 31 11q10 11 -6 20q3 6 -3 9.5t-15 5.5q3 1 11.5 0.5t10.5 1.5
q15 10 -7 16q-17 5 -43 -12zM879 10q206 36 351 189q-3 3 -12.5 4.5t-12.5 3.5q-18 7 -24 8q1 7 -2.5 13t-8 9t-12.5 8t-11 7q-2 2 -7 6t-7 5.5t-7.5 4.5t-8.5 2t-10 -1l-3 -1q-3 -1 -5.5 -2.5t-5.5 -3t-4 -3t0 -2.5q-21 17 -36 22q-5 1 -11 5.5t-10.5 7t-10 1.5t-11.5 -7
q-5 -5 -6 -15t-2 -13q-7 5 0 17.5t2 18.5q-3 6 -10.5 4.5t-12 -4.5t-11.5 -8.5t-9 -6.5t-8.5 -5.5t-8.5 -7.5q-3 -4 -6 -12t-5 -11q-2 4 -11.5 6.5t-9.5 5.5q2 -10 4 -35t5 -38q7 -31 -12 -48q-27 -25 -29 -40q-4 -22 12 -26q0 -7 -8 -20.5t-7 -21.5q0 -6 2 -16z" />
    <glyph glyph-name="wrench" unicode="&#xf0ad;" horiz-adv-x="1664" 
d="M384 64q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1028 484l-682 -682q-37 -37 -90 -37q-52 0 -91 37l-106 108q-38 36 -38 90q0 53 38 91l681 681q39 -98 114.5 -173.5t173.5 -114.5zM1662 919q0 -39 -23 -106q-47 -134 -164.5 -217.5
t-258.5 -83.5q-185 0 -316.5 131.5t-131.5 316.5t131.5 316.5t316.5 131.5q58 0 121.5 -16.5t107.5 -46.5q16 -11 16 -28t-16 -28l-293 -169v-224l193 -107q5 3 79 48.5t135.5 81t70.5 35.5q15 0 23.5 -10t8.5 -25z" />
    <glyph glyph-name="tasks" unicode="&#xf0ae;" horiz-adv-x="1792" 
d="M1024 128h640v128h-640v-128zM640 640h1024v128h-1024v-128zM1280 1152h384v128h-384v-128zM1792 320v-256q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 832v-256q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19
t-19 45v256q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 1344v-256q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h1664q26 0 45 -19t19 -45z" />
    <glyph glyph-name="filter" unicode="&#xf0b0;" horiz-adv-x="1408" 
d="M1403 1241q17 -41 -14 -70l-493 -493v-742q0 -42 -39 -59q-13 -5 -25 -5q-27 0 -45 19l-256 256q-19 19 -19 45v486l-493 493q-31 29 -14 70q17 39 59 39h1280q42 0 59 -39z" />
    <glyph glyph-name="briefcase" unicode="&#xf0b1;" horiz-adv-x="1792" 
d="M640 1280h512v128h-512v-128zM1792 640v-480q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v480h672v-160q0 -26 19 -45t45 -19h320q26 0 45 19t19 45v160h672zM1024 640v-128h-256v128h256zM1792 1120v-384h-1792v384q0 66 47 113t113 47h352v160q0 40 28 68
t68 28h576q40 0 68 -28t28 -68v-160h352q66 0 113 -47t47 -113z" />
    <glyph glyph-name="fullscreen" unicode="&#xf0b2;" 
d="M1283 995l-355 -355l355 -355l144 144q29 31 70 14q39 -17 39 -59v-448q0 -26 -19 -45t-45 -19h-448q-42 0 -59 40q-17 39 14 69l144 144l-355 355l-355 -355l144 -144q31 -30 14 -69q-17 -40 -59 -40h-448q-26 0 -45 19t-19 45v448q0 42 40 59q39 17 69 -14l144 -144
l355 355l-355 355l-144 -144q-19 -19 -45 -19q-12 0 -24 5q-40 17 -40 59v448q0 26 19 45t45 19h448q42 0 59 -40q17 -39 -14 -69l-144 -144l355 -355l355 355l-144 144q-31 30 -14 69q17 40 59 40h448q26 0 45 -19t19 -45v-448q0 -42 -39 -59q-13 -5 -25 -5q-26 0 -45 19z
" />
    <glyph glyph-name="group" unicode="&#xf0c0;" horiz-adv-x="1920" 
d="M593 640q-162 -5 -265 -128h-134q-82 0 -138 40.5t-56 118.5q0 353 124 353q6 0 43.5 -21t97.5 -42.5t119 -21.5q67 0 133 23q-5 -37 -5 -66q0 -139 81 -256zM1664 3q0 -120 -73 -189.5t-194 -69.5h-874q-121 0 -194 69.5t-73 189.5q0 53 3.5 103.5t14 109t26.5 108.5
t43 97.5t62 81t85.5 53.5t111.5 20q10 0 43 -21.5t73 -48t107 -48t135 -21.5t135 21.5t107 48t73 48t43 21.5q61 0 111.5 -20t85.5 -53.5t62 -81t43 -97.5t26.5 -108.5t14 -109t3.5 -103.5zM640 1280q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75
t75 -181zM1344 896q0 -159 -112.5 -271.5t-271.5 -112.5t-271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5t271.5 -112.5t112.5 -271.5zM1920 671q0 -78 -56 -118.5t-138 -40.5h-134q-103 123 -265 128q81 117 81 256q0 29 -5 66q66 -23 133 -23q59 0 119 21.5t97.5 42.5
t43.5 21q124 0 124 -353zM1792 1280q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75t75 -181z" />
    <glyph glyph-name="link" unicode="&#xf0c1;" horiz-adv-x="1664" 
d="M1456 320q0 40 -28 68l-208 208q-28 28 -68 28q-42 0 -72 -32q3 -3 19 -18.5t21.5 -21.5t15 -19t13 -25.5t3.5 -27.5q0 -40 -28 -68t-68 -28q-15 0 -27.5 3.5t-25.5 13t-19 15t-21.5 21.5t-18.5 19q-33 -31 -33 -73q0 -40 28 -68l206 -207q27 -27 68 -27q40 0 68 26
l147 146q28 28 28 67zM753 1025q0 40 -28 68l-206 207q-28 28 -68 28q-39 0 -68 -27l-147 -146q-28 -28 -28 -67q0 -40 28 -68l208 -208q27 -27 68 -27q42 0 72 31q-3 3 -19 18.5t-21.5 21.5t-15 19t-13 25.5t-3.5 27.5q0 40 28 68t68 28q15 0 27.5 -3.5t25.5 -13t19 -15
t21.5 -21.5t18.5 -19q33 31 33 73zM1648 320q0 -120 -85 -203l-147 -146q-83 -83 -203 -83q-121 0 -204 85l-206 207q-83 83 -83 203q0 123 88 209l-88 88q-86 -88 -208 -88q-120 0 -204 84l-208 208q-84 84 -84 204t85 203l147 146q83 83 203 83q121 0 204 -85l206 -207
q83 -83 83 -203q0 -123 -88 -209l88 -88q86 88 208 88q120 0 204 -84l208 -208q84 -84 84 -204z" />
    <glyph glyph-name="cloud" unicode="&#xf0c2;" horiz-adv-x="1920" 
d="M1920 384q0 -159 -112.5 -271.5t-271.5 -112.5h-1088q-185 0 -316.5 131.5t-131.5 316.5q0 132 71 241.5t187 163.5q-2 28 -2 43q0 212 150 362t362 150q158 0 286.5 -88t187.5 -230q70 62 166 62q106 0 181 -75t75 -181q0 -75 -41 -138q129 -30 213 -134.5t84 -239.5z
" />
    <glyph glyph-name="beaker" unicode="&#xf0c3;" horiz-adv-x="1664" 
d="M1527 88q56 -89 21.5 -152.5t-140.5 -63.5h-1152q-106 0 -140.5 63.5t21.5 152.5l503 793v399h-64q-26 0 -45 19t-19 45t19 45t45 19h512q26 0 45 -19t19 -45t-19 -45t-45 -19h-64v-399zM748 813l-272 -429h712l-272 429l-20 31v37v399h-128v-399v-37z" />
    <glyph glyph-name="cut" unicode="&#xf0c4;" horiz-adv-x="1792" 
d="M960 640q26 0 45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45t19 45t45 19zM1260 576l507 -398q28 -20 25 -56q-5 -35 -35 -51l-128 -64q-13 -7 -29 -7q-17 0 -31 8l-690 387l-110 -66q-8 -4 -12 -5q14 -49 10 -97q-7 -77 -56 -147.5t-132 -123.5q-132 -84 -277 -84
q-136 0 -222 78q-90 84 -79 207q7 76 56 147t131 124q132 84 278 84q83 0 151 -31q9 13 22 22l122 73l-122 73q-13 9 -22 22q-68 -31 -151 -31q-146 0 -278 84q-82 53 -131 124t-56 147q-5 59 15.5 113t63.5 93q85 79 222 79q145 0 277 -84q83 -52 132 -123t56 -148
q4 -48 -10 -97q4 -1 12 -5l110 -66l690 387q14 8 31 8q16 0 29 -7l128 -64q30 -16 35 -51q3 -36 -25 -56zM579 836q46 42 21 108t-106 117q-92 59 -192 59q-74 0 -113 -36q-46 -42 -21 -108t106 -117q92 -59 192 -59q74 0 113 36zM494 91q81 51 106 117t-21 108
q-39 36 -113 36q-100 0 -192 -59q-81 -51 -106 -117t21 -108q39 -36 113 -36q100 0 192 59zM672 704l96 -58v11q0 36 33 56l14 8l-79 47l-26 -26q-3 -3 -10 -11t-12 -12q-2 -2 -4 -3.5t-3 -2.5zM896 480l96 -32l736 576l-128 64l-768 -431v-113l-160 -96l9 -8q2 -2 7 -6
q4 -4 11 -12t11 -12l26 -26zM1600 64l128 64l-520 408l-177 -138q-2 -3 -13 -7z" />
    <glyph glyph-name="copy" unicode="&#xf0c5;" horiz-adv-x="1792" 
d="M1696 1152q40 0 68 -28t28 -68v-1216q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v288h-544q-40 0 -68 28t-28 68v672q0 40 20 88t48 76l408 408q28 28 76 48t88 20h416q40 0 68 -28t28 -68v-328q68 40 128 40h416zM1152 939l-299 -299h299v299zM512 1323l-299 -299
h299v299zM708 676l316 316v416h-384v-416q0 -40 -28 -68t-68 -28h-416v-640h512v256q0 40 20 88t48 76zM1664 -128v1152h-384v-416q0 -40 -28 -68t-68 -28h-416v-640h896z" />
    <glyph glyph-name="paper_clip" unicode="&#xf0c6;" horiz-adv-x="1408" 
d="M1404 151q0 -117 -79 -196t-196 -79q-135 0 -235 100l-777 776q-113 115 -113 271q0 159 110 270t269 111q158 0 273 -113l605 -606q10 -10 10 -22q0 -16 -30.5 -46.5t-46.5 -30.5q-13 0 -23 10l-606 607q-79 77 -181 77q-106 0 -179 -75t-73 -181q0 -105 76 -181
l776 -777q63 -63 145 -63q64 0 106 42t42 106q0 82 -63 145l-581 581q-26 24 -60 24q-29 0 -48 -19t-19 -48q0 -32 25 -59l410 -410q10 -10 10 -22q0 -16 -31 -47t-47 -31q-12 0 -22 10l-410 410q-63 61 -63 149q0 82 57 139t139 57q88 0 149 -63l581 -581q100 -98 100 -235
z" />
    <glyph glyph-name="save" unicode="&#xf0c7;" 
d="M384 0h768v384h-768v-384zM1280 0h128v896q0 14 -10 38.5t-20 34.5l-281 281q-10 10 -34 20t-39 10v-416q0 -40 -28 -68t-68 -28h-576q-40 0 -68 28t-28 68v416h-128v-1280h128v416q0 40 28 68t68 28h832q40 0 68 -28t28 -68v-416zM896 928v320q0 13 -9.5 22.5t-22.5 9.5
h-192q-13 0 -22.5 -9.5t-9.5 -22.5v-320q0 -13 9.5 -22.5t22.5 -9.5h192q13 0 22.5 9.5t9.5 22.5zM1536 896v-928q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1344q0 40 28 68t68 28h928q40 0 88 -20t76 -48l280 -280q28 -28 48 -76t20 -88z" />
    <glyph glyph-name="sign_blank" unicode="&#xf0c8;" 
d="M1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
    <glyph glyph-name="reorder" unicode="&#xf0c9;" 
d="M1536 192v-128q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1408q26 0 45 -19t19 -45zM1536 704v-128q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1408q26 0 45 -19t19 -45zM1536 1216v-128q0 -26 -19 -45
t-45 -19h-1408q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1408q26 0 45 -19t19 -45z" />
    <glyph glyph-name="ul" unicode="&#xf0ca;" horiz-adv-x="1792" 
d="M384 128q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM384 640q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1792 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5
t22.5 9.5h1216q13 0 22.5 -9.5t9.5 -22.5zM384 1152q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1792 736v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1216q13 0 22.5 -9.5t9.5 -22.5z
M1792 1248v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1216q13 0 22.5 -9.5t9.5 -22.5z" />
    <glyph glyph-name="ol" unicode="&#xf0cb;" horiz-adv-x="1792" 
d="M381 -84q0 -80 -54.5 -126t-135.5 -46q-106 0 -172 66l57 88q49 -45 106 -45q29 0 50.5 14.5t21.5 42.5q0 64 -105 56l-26 56q8 10 32.5 43.5t42.5 54t37 38.5v1q-16 0 -48.5 -1t-48.5 -1v-53h-106v152h333v-88l-95 -115q51 -12 81 -49t30 -88zM383 543v-159h-362
q-6 36 -6 54q0 51 23.5 93t56.5 68t66 47.5t56.5 43.5t23.5 45q0 25 -14.5 38.5t-39.5 13.5q-46 0 -81 -58l-85 59q24 51 71.5 79.5t105.5 28.5q73 0 123 -41.5t50 -112.5q0 -50 -34 -91.5t-75 -64.5t-75.5 -50.5t-35.5 -52.5h127v60h105zM1792 224v-192q0 -13 -9.5 -22.5
t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 14 9 23t23 9h1216q13 0 22.5 -9.5t9.5 -22.5zM384 1123v-99h-335v99h107q0 41 0.5 121.5t0.5 121.5v12h-2q-8 -17 -50 -54l-71 76l136 127h106v-404h108zM1792 736v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216
q-13 0 -22.5 9.5t-9.5 22.5v192q0 14 9 23t23 9h1216q13 0 22.5 -9.5t9.5 -22.5zM1792 1248v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1216q13 0 22.5 -9.5t9.5 -22.5z" />
    <glyph glyph-name="strikethrough" unicode="&#xf0cc;" horiz-adv-x="1792" 
d="M1760 640q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-1728q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h1728zM483 704q-28 35 -51 80q-48 98 -48 188q0 181 134 309q133 127 393 127q50 0 167 -19q66 -12 177 -48q10 -38 21 -118q14 -123 14 -183q0 -18 -5 -45l-12 -3l-84 6
l-14 2q-50 149 -103 205q-88 91 -210 91q-114 0 -182 -59q-67 -58 -67 -146q0 -73 66 -140t279 -129q69 -20 173 -66q58 -28 95 -52h-743zM990 448h411q7 -39 7 -92q0 -111 -41 -212q-23 -56 -71 -104q-37 -35 -109 -81q-80 -48 -153 -66q-80 -21 -203 -21q-114 0 -195 23
l-140 40q-57 16 -72 28q-8 8 -8 22v13q0 108 -2 156q-1 30 0 68l2 37v44l102 2q15 -34 30 -71t22.5 -56t12.5 -27q35 -57 80 -94q43 -36 105 -57q59 -22 132 -22q64 0 139 27q77 26 122 86q47 61 47 129q0 84 -81 157q-34 29 -137 71z" />
    <glyph glyph-name="underline" unicode="&#xf0cd;" 
d="M48 1313q-37 2 -45 4l-3 88q13 1 40 1q60 0 112 -4q132 -7 166 -7q86 0 168 3q116 4 146 5q56 0 86 2l-1 -14l2 -64v-9q-60 -9 -124 -9q-60 0 -79 -25q-13 -14 -13 -132q0 -13 0.5 -32.5t0.5 -25.5l1 -229l14 -280q6 -124 51 -202q35 -59 96 -92q88 -47 177 -47
q104 0 191 28q56 18 99 51q48 36 65 64q36 56 53 114q21 73 21 229q0 79 -3.5 128t-11 122.5t-13.5 159.5l-4 59q-5 67 -24 88q-34 35 -77 34l-100 -2l-14 3l2 86h84l205 -10q76 -3 196 10l18 -2q6 -38 6 -51q0 -7 -4 -31q-45 -12 -84 -13q-73 -11 -79 -17q-15 -15 -15 -41
q0 -7 1.5 -27t1.5 -31q8 -19 22 -396q6 -195 -15 -304q-15 -76 -41 -122q-38 -65 -112 -123q-75 -57 -182 -89q-109 -33 -255 -33q-167 0 -284 46q-119 47 -179 122q-61 76 -83 195q-16 80 -16 237v333q0 188 -17 213q-25 36 -147 39zM1536 -96v64q0 14 -9 23t-23 9h-1472
q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h1472q14 0 23 9t9 23z" />
    <glyph glyph-name="table" unicode="&#xf0ce;" horiz-adv-x="1664" 
d="M512 160v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM512 544v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1024 160v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23
v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM512 928v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1024 544v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1536 160v192
q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1024 928v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1536 544v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192
q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1536 928v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1664 1248v-1088q0 -66 -47 -113t-113 -47h-1344q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1344q66 0 113 -47t47 -113
z" />
    <glyph glyph-name="magic" unicode="&#xf0d0;" horiz-adv-x="1664" 
d="M1190 955l293 293l-107 107l-293 -293zM1637 1248q0 -27 -18 -45l-1286 -1286q-18 -18 -45 -18t-45 18l-198 198q-18 18 -18 45t18 45l1286 1286q18 18 45 18t45 -18l198 -198q18 -18 18 -45zM286 1438l98 -30l-98 -30l-30 -98l-30 98l-98 30l98 30l30 98zM636 1276
l196 -60l-196 -60l-60 -196l-60 196l-196 60l196 60l60 196zM1566 798l98 -30l-98 -30l-30 -98l-30 98l-98 30l98 30l30 98zM926 1438l98 -30l-98 -30l-30 -98l-30 98l-98 30l98 30l30 98z" />
    <glyph glyph-name="truck" unicode="&#xf0d1;" horiz-adv-x="1792" 
d="M640 128q0 52 -38 90t-90 38t-90 -38t-38 -90t38 -90t90 -38t90 38t38 90zM256 640h384v256h-158q-13 0 -22 -9l-195 -195q-9 -9 -9 -22v-30zM1536 128q0 52 -38 90t-90 38t-90 -38t-38 -90t38 -90t90 -38t90 38t38 90zM1792 1216v-1024q0 -15 -4 -26.5t-13.5 -18.5
t-16.5 -11.5t-23.5 -6t-22.5 -2t-25.5 0t-22.5 0.5q0 -106 -75 -181t-181 -75t-181 75t-75 181h-384q0 -106 -75 -181t-181 -75t-181 75t-75 181h-64q-3 0 -22.5 -0.5t-25.5 0t-22.5 2t-23.5 6t-16.5 11.5t-13.5 18.5t-4 26.5q0 26 19 45t45 19v320q0 8 -0.5 35t0 38
t2.5 34.5t6.5 37t14 30.5t22.5 30l198 198q19 19 50.5 32t58.5 13h160v192q0 26 19 45t45 19h1024q26 0 45 -19t19 -45z" />
    <glyph glyph-name="pinterest" unicode="&#xf0d2;" 
d="M1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103q-111 0 -218 32q59 93 78 164q9 34 54 211q20 -39 73 -67.5t114 -28.5q121 0 216 68.5t147 188.5t52 270q0 114 -59.5 214t-172.5 163t-255 63q-105 0 -196 -29t-154.5 -77t-109 -110.5t-67 -129.5t-21.5 -134
q0 -104 40 -183t117 -111q30 -12 38 20q2 7 8 31t8 30q6 23 -11 43q-51 61 -51 151q0 151 104.5 259.5t273.5 108.5q151 0 235.5 -82t84.5 -213q0 -170 -68.5 -289t-175.5 -119q-61 0 -98 43.5t-23 104.5q8 35 26.5 93.5t30 103t11.5 75.5q0 50 -27 83t-77 33
q-62 0 -105 -57t-43 -142q0 -73 25 -122l-99 -418q-17 -70 -13 -177q-206 91 -333 281t-127 423q0 209 103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
    <glyph glyph-name="pinterest_sign" unicode="&#xf0d3;" 
d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-725q85 122 108 210q9 34 53 209q21 -39 73.5 -67t112.5 -28q181 0 295.5 147.5t114.5 373.5q0 84 -35 162.5t-96.5 139t-152.5 97t-197 36.5q-104 0 -194.5 -28.5t-153 -76.5
t-107.5 -109.5t-66.5 -128t-21.5 -132.5q0 -102 39.5 -180t116.5 -110q13 -5 23.5 0t14.5 19q10 44 15 61q6 23 -11 42q-50 62 -50 150q0 150 103.5 256.5t270.5 106.5q149 0 232.5 -81t83.5 -210q0 -168 -67.5 -286t-173.5 -118q-60 0 -97 43.5t-23 103.5q8 34 26.5 92.5
t29.5 102t11 74.5q0 49 -26.5 81.5t-75.5 32.5q-61 0 -103.5 -56.5t-42.5 -139.5q0 -72 24 -121l-98 -414q-24 -100 -7 -254h-183q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960z" />
    <glyph glyph-name="google_plus_sign" unicode="&#xf0d4;" 
d="M917 631q0 26 -6 64h-362v-132h217q-3 -24 -16.5 -50t-37.5 -53t-66.5 -44.5t-96.5 -17.5q-99 0 -169 71t-70 171t70 171t169 71q92 0 153 -59l104 101q-108 100 -257 100q-160 0 -272 -112.5t-112 -271.5t112 -271.5t272 -112.5q165 0 266.5 105t101.5 270zM1262 585
h109v110h-109v110h-110v-110h-110v-110h110v-110h110v110zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
    <glyph glyph-name="google_plus" unicode="&#xf0d5;" horiz-adv-x="2304" 
d="M1437 623q0 -208 -87 -370.5t-248 -254t-369 -91.5q-149 0 -285 58t-234 156t-156 234t-58 285t58 285t156 234t234 156t285 58q286 0 491 -192l-199 -191q-117 113 -292 113q-123 0 -227.5 -62t-165.5 -168.5t-61 -232.5t61 -232.5t165.5 -168.5t227.5 -62
q83 0 152.5 23t114.5 57.5t78.5 78.5t49 83t21.5 74h-416v252h692q12 -63 12 -122zM2304 745v-210h-209v-209h-210v209h-209v210h209v209h210v-209h209z" />
    <glyph glyph-name="money" unicode="&#xf0d6;" horiz-adv-x="1920" 
d="M768 384h384v96h-128v448h-114l-148 -137l77 -80q42 37 55 57h2v-288h-128v-96zM1280 640q0 -70 -21 -142t-59.5 -134t-101.5 -101t-138 -39t-138 39t-101.5 101t-59.5 134t-21 142t21 142t59.5 134t101.5 101t138 39t138 -39t101.5 -101t59.5 -134t21 -142zM1792 384
v512q-106 0 -181 75t-75 181h-1152q0 -106 -75 -181t-181 -75v-512q106 0 181 -75t75 -181h1152q0 106 75 181t181 75zM1920 1216v-1152q0 -26 -19 -45t-45 -19h-1792q-26 0 -45 19t-19 45v1152q0 26 19 45t45 19h1792q26 0 45 -19t19 -45z" />
    <glyph glyph-name="caret_down" unicode="&#xf0d7;" horiz-adv-x="1024" 
d="M1024 832q0 -26 -19 -45l-448 -448q-19 -19 -45 -19t-45 19l-448 448q-19 19 -19 45t19 45t45 19h896q26 0 45 -19t19 -45z" />
    <glyph glyph-name="caret_up" unicode="&#xf0d8;" horiz-adv-x="1024" 
d="M1024 320q0 -26 -19 -45t-45 -19h-896q-26 0 -45 19t-19 45t19 45l448 448q19 19 45 19t45 -19l448 -448q19 -19 19 -45z" />
    <glyph glyph-name="caret_left" unicode="&#xf0d9;" horiz-adv-x="640" 
d="M640 1088v-896q0 -26 -19 -45t-45 -19t-45 19l-448 448q-19 19 -19 45t19 45l448 448q19 19 45 19t45 -19t19 -45z" />
    <glyph glyph-name="caret_right" unicode="&#xf0da;" horiz-adv-x="640" 
d="M576 640q0 -26 -19 -45l-448 -448q-19 -19 -45 -19t-45 19t-19 45v896q0 26 19 45t45 19t45 -19l448 -448q19 -19 19 -45z" />
    <glyph glyph-name="columns" unicode="&#xf0db;" horiz-adv-x="1664" 
d="M160 0h608v1152h-640v-1120q0 -13 9.5 -22.5t22.5 -9.5zM1536 32v1120h-640v-1152h608q13 0 22.5 9.5t9.5 22.5zM1664 1248v-1216q0 -66 -47 -113t-113 -47h-1344q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1344q66 0 113 -47t47 -113z" />
    <glyph glyph-name="sort" unicode="&#xf0dc;" horiz-adv-x="1024" 
d="M1024 448q0 -26 -19 -45l-448 -448q-19 -19 -45 -19t-45 19l-448 448q-19 19 -19 45t19 45t45 19h896q26 0 45 -19t19 -45zM1024 832q0 -26 -19 -45t-45 -19h-896q-26 0 -45 19t-19 45t19 45l448 448q19 19 45 19t45 -19l448 -448q19 -19 19 -45z" />
    <glyph glyph-name="sort_down" unicode="&#xf0dd;" horiz-adv-x="1024" 
d="M1024 448q0 -26 -19 -45l-448 -448q-19 -19 -45 -19t-45 19l-448 448q-19 19 -19 45t19 45t45 19h896q26 0 45 -19t19 -45z" />
    <glyph glyph-name="sort_up" unicode="&#xf0de;" horiz-adv-x="1024" 
d="M1024 832q0 -26 -19 -45t-45 -19h-896q-26 0 -45 19t-19 45t19 45l448 448q19 19 45 19t45 -19l448 -448q19 -19 19 -45z" />
    <glyph glyph-name="envelope_alt" unicode="&#xf0e0;" horiz-adv-x="1792" 
d="M1792 826v-794q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v794q44 -49 101 -87q362 -246 497 -345q57 -42 92.5 -65.5t94.5 -48t110 -24.5h1h1q51 0 110 24.5t94.5 48t92.5 65.5q170 123 498 345q57 39 100 87zM1792 1120q0 -79 -49 -151t-122 -123
q-376 -261 -468 -325q-10 -7 -42.5 -30.5t-54 -38t-52 -32.5t-57.5 -27t-50 -9h-1h-1q-23 0 -50 9t-57.5 27t-52 32.5t-54 38t-42.5 30.5q-91 64 -262 182.5t-205 142.5q-62 42 -117 115.5t-55 136.5q0 78 41.5 130t118.5 52h1472q65 0 112.5 -47t47.5 -113z" />
    <glyph glyph-name="linkedin" unicode="&#xf0e1;" 
d="M349 911v-991h-330v991h330zM370 1217q1 -73 -50.5 -122t-135.5 -49h-2q-82 0 -132 49t-50 122q0 74 51.5 122.5t134.5 48.5t133 -48.5t51 -122.5zM1536 488v-568h-329v530q0 105 -40.5 164.5t-126.5 59.5q-63 0 -105.5 -34.5t-63.5 -85.5q-11 -30 -11 -81v-553h-329
q2 399 2 647t-1 296l-1 48h329v-144h-2q20 32 41 56t56.5 52t87 43.5t114.5 15.5q171 0 275 -113.5t104 -332.5z" />
    <glyph glyph-name="undo" unicode="&#xf0e2;" 
d="M1536 640q0 -156 -61 -298t-164 -245t-245 -164t-298 -61q-172 0 -327 72.5t-264 204.5q-7 10 -6.5 22.5t8.5 20.5l137 138q10 9 25 9q16 -2 23 -12q73 -95 179 -147t225 -52q104 0 198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5t-40.5 198.5t-109.5 163.5
t-163.5 109.5t-198.5 40.5q-98 0 -188 -35.5t-160 -101.5l137 -138q31 -30 14 -69q-17 -40 -59 -40h-448q-26 0 -45 19t-19 45v448q0 42 40 59q39 17 69 -14l130 -129q107 101 244.5 156.5t284.5 55.5q156 0 298 -61t245 -164t164 -245t61 -298z" />
    <glyph glyph-name="legal" unicode="&#xf0e3;" horiz-adv-x="1792" 
d="M1771 0q0 -53 -37 -90l-107 -108q-39 -37 -91 -37q-53 0 -90 37l-363 364q-38 36 -38 90q0 53 43 96l-256 256l-126 -126q-14 -14 -34 -14t-34 14q2 -2 12.5 -12t12.5 -13t10 -11.5t10 -13.5t6 -13.5t5.5 -16.5t1.5 -18q0 -38 -28 -68q-3 -3 -16.5 -18t-19 -20.5
t-18.5 -16.5t-22 -15.5t-22 -9t-26 -4.5q-40 0 -68 28l-408 408q-28 28 -28 68q0 13 4.5 26t9 22t15.5 22t16.5 18.5t20.5 19t18 16.5q30 28 68 28q10 0 18 -1.5t16.5 -5.5t13.5 -6t13.5 -10t11.5 -10t13 -12.5t12 -12.5q-14 14 -14 34t14 34l348 348q14 14 34 14t34 -14
q-2 2 -12.5 12t-12.5 13t-10 11.5t-10 13.5t-6 13.5t-5.5 16.5t-1.5 18q0 38 28 68q3 3 16.5 18t19 20.5t18.5 16.5t22 15.5t22 9t26 4.5q40 0 68 -28l408 -408q28 -28 28 -68q0 -13 -4.5 -26t-9 -22t-15.5 -22t-16.5 -18.5t-20.5 -19t-18 -16.5q-30 -28 -68 -28
q-10 0 -18 1.5t-16.5 5.5t-13.5 6t-13.5 10t-11.5 10t-13 12.5t-12 12.5q14 -14 14 -34t-14 -34l-126 -126l256 -256q43 43 96 43q52 0 91 -37l363 -363q37 -39 37 -91z" />
    <glyph glyph-name="dashboard" unicode="&#xf0e4;" horiz-adv-x="1792" 
d="M384 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM576 832q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1004 351l101 382q6 26 -7.5 48.5t-38.5 29.5
t-48 -6.5t-30 -39.5l-101 -382q-60 -5 -107 -43.5t-63 -98.5q-20 -77 20 -146t117 -89t146 20t89 117q16 60 -6 117t-72 91zM1664 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1024 1024q0 53 -37.5 90.5
t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1472 832q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1792 384q0 -261 -141 -483q-19 -29 -54 -29h-1402q-35 0 -54 29
q-141 221 -141 483q0 182 71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" />
    <glyph glyph-name="comment_alt" unicode="&#xf0e5;" horiz-adv-x="1792" 
d="M896 1152q-204 0 -381.5 -69.5t-282 -187.5t-104.5 -255q0 -112 71.5 -213.5t201.5 -175.5l87 -50l-27 -96q-24 -91 -70 -172q152 63 275 171l43 38l57 -6q69 -8 130 -8q204 0 381.5 69.5t282 187.5t104.5 255t-104.5 255t-282 187.5t-381.5 69.5zM1792 640
q0 -174 -120 -321.5t-326 -233t-450 -85.5q-70 0 -145 8q-198 -175 -460 -242q-49 -14 -114 -22h-5q-15 0 -27 10.5t-16 27.5v1q-3 4 -0.5 12t2 10t4.5 9.5l6 9t7 8.5t8 9q7 8 31 34.5t34.5 38t31 39.5t32.5 51t27 59t26 76q-157 89 -247.5 220t-90.5 281q0 174 120 321.5
t326 233t450 85.5t450 -85.5t326 -233t120 -321.5z" />
    <glyph glyph-name="comments_alt" unicode="&#xf0e6;" horiz-adv-x="1792" 
d="M704 1152q-153 0 -286 -52t-211.5 -141t-78.5 -191q0 -82 53 -158t149 -132l97 -56l-35 -84q34 20 62 39l44 31l53 -10q78 -14 153 -14q153 0 286 52t211.5 141t78.5 191t-78.5 191t-211.5 141t-286 52zM704 1280q191 0 353.5 -68.5t256.5 -186.5t94 -257t-94 -257
t-256.5 -186.5t-353.5 -68.5q-86 0 -176 16q-124 -88 -278 -128q-36 -9 -86 -16h-3q-11 0 -20.5 8t-11.5 21q-1 3 -1 6.5t0.5 6.5t2 6l2.5 5t3.5 5.5t4 5t4.5 5t4 4.5q5 6 23 25t26 29.5t22.5 29t25 38.5t20.5 44q-124 72 -195 177t-71 224q0 139 94 257t256.5 186.5
t353.5 68.5zM1526 111q10 -24 20.5 -44t25 -38.5t22.5 -29t26 -29.5t23 -25q1 -1 4 -4.5t4.5 -5t4 -5t3.5 -5.5l2.5 -5t2 -6t0.5 -6.5t-1 -6.5q-3 -14 -13 -22t-22 -7q-50 7 -86 16q-154 40 -278 128q-90 -16 -176 -16q-271 0 -472 132q58 -4 88 -4q161 0 309 45t264 129
q125 92 192 212t67 254q0 77 -23 152q129 -71 204 -178t75 -230q0 -120 -71 -224.5t-195 -176.5z" />
    <glyph glyph-name="bolt" unicode="&#xf0e7;" horiz-adv-x="896" 
d="M885 970q18 -20 7 -44l-540 -1157q-13 -25 -42 -25q-4 0 -14 2q-17 5 -25.5 19t-4.5 30l197 808l-406 -101q-4 -1 -12 -1q-18 0 -31 11q-18 15 -13 39l201 825q4 14 16 23t28 9h328q19 0 32 -12.5t13 -29.5q0 -8 -5 -18l-171 -463l396 98q8 2 12 2q19 0 34 -15z" />
    <glyph glyph-name="sitemap" unicode="&#xf0e8;" horiz-adv-x="1792" 
d="M1792 288v-320q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h96v192h-512v-192h96q40 0 68 -28t28 -68v-320q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h96v192h-512v-192h96q40 0 68 -28t28 -68v-320
q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h96v192q0 52 38 90t90 38h512v192h-96q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h320q40 0 68 -28t28 -68v-320q0 -40 -28 -68t-68 -28h-96v-192h512q52 0 90 -38t38 -90v-192h96q40 0 68 -28t28 -68
z" />
    <glyph glyph-name="umbrella" unicode="&#xf0e9;" horiz-adv-x="1664" 
d="M896 708v-580q0 -104 -76 -180t-180 -76t-180 76t-76 180q0 26 19 45t45 19t45 -19t19 -45q0 -50 39 -89t89 -39t89 39t39 89v580q33 11 64 11t64 -11zM1664 681q0 -13 -9.5 -22.5t-22.5 -9.5q-11 0 -23 10q-49 46 -93 69t-102 23q-68 0 -128 -37t-103 -97
q-7 -10 -17.5 -28t-14.5 -24q-11 -17 -28 -17q-18 0 -29 17q-4 6 -14.5 24t-17.5 28q-43 60 -102.5 97t-127.5 37t-127.5 -37t-102.5 -97q-7 -10 -17.5 -28t-14.5 -24q-11 -17 -29 -17q-17 0 -28 17q-4 6 -14.5 24t-17.5 28q-43 60 -103 97t-128 37q-58 0 -102 -23t-93 -69
q-12 -10 -23 -10q-13 0 -22.5 9.5t-9.5 22.5q0 5 1 7q45 183 172.5 319.5t298 204.5t360.5 68q140 0 274.5 -40t246.5 -113.5t194.5 -187t115.5 -251.5q1 -2 1 -7zM896 1408v-98q-42 2 -64 2t-64 -2v98q0 26 19 45t45 19t45 -19t19 -45z" />
    <glyph glyph-name="paste" unicode="&#xf0ea;" horiz-adv-x="1792" 
d="M768 -128h896v640h-416q-40 0 -68 28t-28 68v416h-384v-1152zM1024 1312v64q0 13 -9.5 22.5t-22.5 9.5h-704q-13 0 -22.5 -9.5t-9.5 -22.5v-64q0 -13 9.5 -22.5t22.5 -9.5h704q13 0 22.5 9.5t9.5 22.5zM1280 640h299l-299 299v-299zM1792 512v-672q0 -40 -28 -68t-68 -28
h-960q-40 0 -68 28t-28 68v160h-544q-40 0 -68 28t-28 68v1344q0 40 28 68t68 28h1088q40 0 68 -28t28 -68v-328q21 -13 36 -28l408 -408q28 -28 48 -76t20 -88z" />
    <glyph glyph-name="light_bulb" unicode="&#xf0eb;" horiz-adv-x="1024" 
d="M736 960q0 -13 -9.5 -22.5t-22.5 -9.5t-22.5 9.5t-9.5 22.5q0 46 -54 71t-106 25q-13 0 -22.5 9.5t-9.5 22.5t9.5 22.5t22.5 9.5q50 0 99.5 -16t87 -54t37.5 -90zM896 960q0 72 -34.5 134t-90 101.5t-123 62t-136.5 22.5t-136.5 -22.5t-123 -62t-90 -101.5t-34.5 -134
q0 -101 68 -180q10 -11 30.5 -33t30.5 -33q128 -153 141 -298h228q13 145 141 298q10 11 30.5 33t30.5 33q68 79 68 180zM1024 960q0 -155 -103 -268q-45 -49 -74.5 -87t-59.5 -95.5t-34 -107.5q47 -28 47 -82q0 -37 -25 -64q25 -27 25 -64q0 -52 -45 -81q13 -23 13 -47
q0 -46 -31.5 -71t-77.5 -25q-20 -44 -60 -70t-87 -26t-87 26t-60 70q-46 0 -77.5 25t-31.5 71q0 24 13 47q-45 29 -45 81q0 37 25 64q-25 27 -25 64q0 54 47 82q-4 50 -34 107.5t-59.5 95.5t-74.5 87q-103 113 -103 268q0 99 44.5 184.5t117 142t164 89t186.5 32.5
t186.5 -32.5t164 -89t117 -142t44.5 -184.5z" />
    <glyph glyph-name="exchange" unicode="&#xf0ec;" horiz-adv-x="1792" 
d="M1792 352v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5q-12 0 -24 10l-319 320q-9 9 -9 22q0 14 9 23l320 320q9 9 23 9q13 0 22.5 -9.5t9.5 -22.5v-192h1376q13 0 22.5 -9.5t9.5 -22.5zM1792 896q0 -14 -9 -23l-320 -320q-9 -9 -23 -9
q-13 0 -22.5 9.5t-9.5 22.5v192h-1376q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1376v192q0 14 9 23t23 9q12 0 24 -10l319 -319q9 -9 9 -23z" />
    <glyph glyph-name="cloud_download" unicode="&#xf0ed;" horiz-adv-x="1920" 
d="M1280 608q0 14 -9 23t-23 9h-224v352q0 13 -9.5 22.5t-22.5 9.5h-192q-13 0 -22.5 -9.5t-9.5 -22.5v-352h-224q-13 0 -22.5 -9.5t-9.5 -22.5q0 -14 9 -23l352 -352q9 -9 23 -9t23 9l351 351q10 12 10 24zM1920 384q0 -159 -112.5 -271.5t-271.5 -112.5h-1088
q-185 0 -316.5 131.5t-131.5 316.5q0 130 70 240t188 165q-2 30 -2 43q0 212 150 362t362 150q156 0 285.5 -87t188.5 -231q71 62 166 62q106 0 181 -75t75 -181q0 -76 -41 -138q130 -31 213.5 -135.5t83.5 -238.5z" />
    <glyph glyph-name="cloud_upload" unicode="&#xf0ee;" horiz-adv-x="1920" 
d="M1280 672q0 14 -9 23l-352 352q-9 9 -23 9t-23 -9l-351 -351q-10 -12 -10 -24q0 -14 9 -23t23 -9h224v-352q0 -13 9.5 -22.5t22.5 -9.5h192q13 0 22.5 9.5t9.5 22.5v352h224q13 0 22.5 9.5t9.5 22.5zM1920 384q0 -159 -112.5 -271.5t-271.5 -112.5h-1088
q-185 0 -316.5 131.5t-131.5 316.5q0 130 70 240t188 165q-2 30 -2 43q0 212 150 362t362 150q156 0 285.5 -87t188.5 -231q71 62 166 62q106 0 181 -75t75 -181q0 -76 -41 -138q130 -31 213.5 -135.5t83.5 -238.5z" />
    <glyph glyph-name="user_md" unicode="&#xf0f0;" horiz-adv-x="1408" 
d="M384 192q0 -26 -19 -45t-45 -19t-45 19t-19 45t19 45t45 19t45 -19t19 -45zM1408 131q0 -121 -73 -190t-194 -69h-874q-121 0 -194 69t-73 190q0 68 5.5 131t24 138t47.5 132.5t81 103t120 60.5q-22 -52 -22 -120v-203q-58 -20 -93 -70t-35 -111q0 -80 56 -136t136 -56
t136 56t56 136q0 61 -35.5 111t-92.5 70v203q0 62 25 93q132 -104 295 -104t295 104q25 -31 25 -93v-64q-106 0 -181 -75t-75 -181v-89q-32 -29 -32 -71q0 -40 28 -68t68 -28t68 28t28 68q0 42 -32 71v89q0 52 38 90t90 38t90 -38t38 -90v-89q-32 -29 -32 -71q0 -40 28 -68
t68 -28t68 28t28 68q0 42 -32 71v89q0 68 -34.5 127.5t-93.5 93.5q0 10 0.5 42.5t0 48t-2.5 41.5t-7 47t-13 40q68 -15 120 -60.5t81 -103t47.5 -132.5t24 -138t5.5 -131zM1088 1024q0 -159 -112.5 -271.5t-271.5 -112.5t-271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5
t271.5 -112.5t112.5 -271.5z" />
    <glyph glyph-name="stethoscope" unicode="&#xf0f1;" horiz-adv-x="1408" 
d="M1280 832q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 832q0 -62 -35.5 -111t-92.5 -70v-395q0 -159 -131.5 -271.5t-316.5 -112.5t-316.5 112.5t-131.5 271.5v132q-164 20 -274 128t-110 252v512q0 26 19 45t45 19q6 0 16 -2q17 30 47 48
t65 18q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5q-33 0 -64 18v-402q0 -106 94 -181t226 -75t226 75t94 181v402q-31 -18 -64 -18q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5q35 0 65 -18t47 -48q10 2 16 2q26 0 45 -19t19 -45v-512q0 -144 -110 -252
t-274 -128v-132q0 -106 94 -181t226 -75t226 75t94 181v395q-57 21 -92.5 70t-35.5 111q0 80 56 136t136 56t136 -56t56 -136z" />
    <glyph glyph-name="suitcase" unicode="&#xf0f2;" horiz-adv-x="1792" 
d="M640 1152h512v128h-512v-128zM288 1152v-1280h-64q-92 0 -158 66t-66 158v832q0 92 66 158t158 66h64zM1408 1152v-1280h-1024v1280h128v160q0 40 28 68t68 28h576q40 0 68 -28t28 -68v-160h128zM1792 928v-832q0 -92 -66 -158t-158 -66h-64v1280h64q92 0 158 -66
t66 -158z" />
    <glyph glyph-name="bell_alt" unicode="&#xf0f3;" horiz-adv-x="1792" 
d="M912 -160q0 16 -16 16q-59 0 -101.5 42.5t-42.5 101.5q0 16 -16 16t-16 -16q0 -73 51.5 -124.5t124.5 -51.5q16 0 16 16zM1728 128q0 -52 -38 -90t-90 -38h-448q0 -106 -75 -181t-181 -75t-181 75t-75 181h-448q-52 0 -90 38t-38 90q50 42 91 88t85 119.5t74.5 158.5
t50 206t19.5 260q0 152 117 282.5t307 158.5q-8 19 -8 39q0 40 28 68t68 28t68 -28t28 -68q0 -20 -8 -39q190 -28 307 -158.5t117 -282.5q0 -139 19.5 -260t50 -206t74.5 -158.5t85 -119.5t91 -88z" />
    <glyph glyph-name="coffee" unicode="&#xf0f4;" horiz-adv-x="1920" 
d="M1664 896q0 80 -56 136t-136 56h-64v-384h64q80 0 136 56t56 136zM0 128h1792q0 -106 -75 -181t-181 -75h-1280q-106 0 -181 75t-75 181zM1856 896q0 -159 -112.5 -271.5t-271.5 -112.5h-64v-32q0 -92 -66 -158t-158 -66h-704q-92 0 -158 66t-66 158v736q0 26 19 45
t45 19h1152q159 0 271.5 -112.5t112.5 -271.5z" />
    <glyph glyph-name="food" unicode="&#xf0f5;" horiz-adv-x="1408" 
d="M640 1472v-640q0 -61 -35.5 -111t-92.5 -70v-779q0 -52 -38 -90t-90 -38h-128q-52 0 -90 38t-38 90v779q-57 20 -92.5 70t-35.5 111v640q0 26 19 45t45 19t45 -19t19 -45v-416q0 -26 19 -45t45 -19t45 19t19 45v416q0 26 19 45t45 19t45 -19t19 -45v-416q0 -26 19 -45
t45 -19t45 19t19 45v416q0 26 19 45t45 19t45 -19t19 -45zM1408 1472v-1600q0 -52 -38 -90t-90 -38h-128q-52 0 -90 38t-38 90v512h-224q-13 0 -22.5 9.5t-9.5 22.5v800q0 132 94 226t226 94h256q26 0 45 -19t19 -45z" />
    <glyph glyph-name="file_text_alt" unicode="&#xf0f6;" 
d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z
M384 736q0 14 9 23t23 9h704q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-704q-14 0 -23 9t-9 23v64zM1120 512q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-704q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h704zM1120 256q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-704
q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h704z" />
    <glyph glyph-name="building" unicode="&#xf0f7;" horiz-adv-x="1408" 
d="M384 224v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
M640 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
M1152 224v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM896 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
M640 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 992v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
M1152 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM896 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
M640 992v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 1248v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
M1152 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM896 992v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
M640 1248v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1152 992v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
M896 1248v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1152 1248v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
M896 -128h384v1536h-1152v-1536h384v224q0 13 9.5 22.5t22.5 9.5h320q13 0 22.5 -9.5t9.5 -22.5v-224zM1408 1472v-1664q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v1664q0 26 19 45t45 19h1280q26 0 45 -19t19 -45z" />
    <glyph glyph-name="hospital" unicode="&#xf0f8;" horiz-adv-x="1408" 
d="M384 224v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
M640 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
M1152 224v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM896 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
M640 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1152 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
M896 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1152 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
M896 -128h384v1152h-256v-32q0 -40 -28 -68t-68 -28h-448q-40 0 -68 28t-28 68v32h-256v-1152h384v224q0 13 9.5 22.5t22.5 9.5h320q13 0 22.5 -9.5t9.5 -22.5v-224zM896 1056v320q0 13 -9.5 22.5t-22.5 9.5h-64q-13 0 -22.5 -9.5t-9.5 -22.5v-96h-128v96q0 13 -9.5 22.5
t-22.5 9.5h-64q-13 0 -22.5 -9.5t-9.5 -22.5v-320q0 -13 9.5 -22.5t22.5 -9.5h64q13 0 22.5 9.5t9.5 22.5v96h128v-96q0 -13 9.5 -22.5t22.5 -9.5h64q13 0 22.5 9.5t9.5 22.5zM1408 1088v-1280q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v1280q0 26 19 45t45 19h320
v288q0 40 28 68t68 28h448q40 0 68 -28t28 -68v-288h320q26 0 45 -19t19 -45z" />
    <glyph glyph-name="ambulance" unicode="&#xf0f9;" horiz-adv-x="1920" 
d="M640 128q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM256 640h384v256h-158q-14 -2 -22 -9l-195 -195q-7 -12 -9 -22v-30zM1536 128q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5
t90.5 37.5t37.5 90.5zM1664 800v192q0 14 -9 23t-23 9h-224v224q0 14 -9 23t-23 9h-192q-14 0 -23 -9t-9 -23v-224h-224q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h224v-224q0 -14 9 -23t23 -9h192q14 0 23 9t9 23v224h224q14 0 23 9t9 23zM1920 1344v-1152
q0 -26 -19 -45t-45 -19h-192q0 -106 -75 -181t-181 -75t-181 75t-75 181h-384q0 -106 -75 -181t-181 -75t-181 75t-75 181h-128q-26 0 -45 19t-19 45t19 45t45 19v416q0 26 13 58t32 51l198 198q19 19 51 32t58 13h160v320q0 26 19 45t45 19h1152q26 0 45 -19t19 -45z" />
    <glyph glyph-name="medkit" unicode="&#xf0fa;" horiz-adv-x="1792" 
d="M1280 416v192q0 14 -9 23t-23 9h-224v224q0 14 -9 23t-23 9h-192q-14 0 -23 -9t-9 -23v-224h-224q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h224v-224q0 -14 9 -23t23 -9h192q14 0 23 9t9 23v224h224q14 0 23 9t9 23zM640 1152h512v128h-512v-128zM256 1152v-1280h-32
q-92 0 -158 66t-66 158v832q0 92 66 158t158 66h32zM1440 1152v-1280h-1088v1280h160v160q0 40 28 68t68 28h576q40 0 68 -28t28 -68v-160h160zM1792 928v-832q0 -92 -66 -158t-158 -66h-32v1280h32q92 0 158 -66t66 -158z" />
    <glyph glyph-name="fighter_jet" unicode="&#xf0fb;" horiz-adv-x="1920" 
d="M1920 576q-1 -32 -288 -96l-352 -32l-224 -64h-64l-293 -352h69q26 0 45 -4.5t19 -11.5t-19 -11.5t-45 -4.5h-96h-160h-64v32h64v416h-160l-192 -224h-96l-32 32v192h32v32h128v8l-192 24v128l192 24v8h-128v32h-32v192l32 32h96l192 -224h160v416h-64v32h64h160h96
q26 0 45 -4.5t19 -11.5t-19 -11.5t-45 -4.5h-69l293 -352h64l224 -64l352 -32q128 -28 200 -52t80 -34z" />
    <glyph glyph-name="beer" unicode="&#xf0fc;" horiz-adv-x="1664" 
d="M640 640v384h-256v-256q0 -53 37.5 -90.5t90.5 -37.5h128zM1664 192v-192h-1152v192l128 192h-128q-159 0 -271.5 112.5t-112.5 271.5v320l-64 64l32 128h480l32 128h960l32 -192l-64 -32v-800z" />
    <glyph glyph-name="h_sign" unicode="&#xf0fd;" 
d="M1280 192v896q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-320h-512v320q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-896q0 -26 19 -45t45 -19h128q26 0 45 19t19 45v320h512v-320q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1536 1120v-960
q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
    <glyph glyph-name="f0fe" unicode="&#xf0fe;" 
d="M1280 576v128q0 26 -19 45t-45 19h-320v320q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-320h-320q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h320v-320q0 -26 19 -45t45 -19h128q26 0 45 19t19 45v320h320q26 0 45 19t19 45zM1536 1120v-960
q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
    <glyph glyph-name="double_angle_left" unicode="&#xf100;" horiz-adv-x="1024" 
d="M627 160q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l50 -50q10 -10 10 -23t-10 -23l-393 -393l393 -393q10 -10 10 -23zM1011 160q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23
t10 23l466 466q10 10 23 10t23 -10l50 -50q10 -10 10 -23t-10 -23l-393 -393l393 -393q10 -10 10 -23z" />
    <glyph glyph-name="double_angle_right" unicode="&#xf101;" horiz-adv-x="1024" 
d="M595 576q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23zM979 576q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23
l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23z" />
    <glyph glyph-name="double_angle_up" unicode="&#xf102;" horiz-adv-x="1152" 
d="M1075 224q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-393 393l-393 -393q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l466 -466q10 -10 10 -23zM1075 608q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-393 393l-393 -393
q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l466 -466q10 -10 10 -23z" />
    <glyph glyph-name="double_angle_down" unicode="&#xf103;" horiz-adv-x="1152" 
d="M1075 672q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l393 -393l393 393q10 10 23 10t23 -10l50 -50q10 -10 10 -23zM1075 1056q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23
t10 23l50 50q10 10 23 10t23 -10l393 -393l393 393q10 10 23 10t23 -10l50 -50q10 -10 10 -23z" />
    <glyph glyph-name="angle_left" unicode="&#xf104;" horiz-adv-x="640" 
d="M627 992q0 -13 -10 -23l-393 -393l393 -393q10 -10 10 -23t-10 -23l-50 -50q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l50 -50q10 -10 10 -23z" />
    <glyph glyph-name="angle_right" unicode="&#xf105;" horiz-adv-x="640" 
d="M595 576q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23z" />
    <glyph glyph-name="angle_up" unicode="&#xf106;" horiz-adv-x="1152" 
d="M1075 352q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-393 393l-393 -393q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l466 -466q10 -10 10 -23z" />
    <glyph glyph-name="angle_down" unicode="&#xf107;" horiz-adv-x="1152" 
d="M1075 800q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l393 -393l393 393q10 10 23 10t23 -10l50 -50q10 -10 10 -23z" />
    <glyph glyph-name="desktop" unicode="&#xf108;" horiz-adv-x="1920" 
d="M1792 544v832q0 13 -9.5 22.5t-22.5 9.5h-1600q-13 0 -22.5 -9.5t-9.5 -22.5v-832q0 -13 9.5 -22.5t22.5 -9.5h1600q13 0 22.5 9.5t9.5 22.5zM1920 1376v-1088q0 -66 -47 -113t-113 -47h-544q0 -37 16 -77.5t32 -71t16 -43.5q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19
t-19 45q0 14 16 44t32 70t16 78h-544q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1600q66 0 113 -47t47 -113z" />
    <glyph glyph-name="laptop" unicode="&#xf109;" horiz-adv-x="1920" 
d="M416 256q-66 0 -113 47t-47 113v704q0 66 47 113t113 47h1088q66 0 113 -47t47 -113v-704q0 -66 -47 -113t-113 -47h-1088zM384 1120v-704q0 -13 9.5 -22.5t22.5 -9.5h1088q13 0 22.5 9.5t9.5 22.5v704q0 13 -9.5 22.5t-22.5 9.5h-1088q-13 0 -22.5 -9.5t-9.5 -22.5z
M1760 192h160v-96q0 -40 -47 -68t-113 -28h-1600q-66 0 -113 28t-47 68v96h160h1600zM1040 96q16 0 16 16t-16 16h-160q-16 0 -16 -16t16 -16h160z" />
    <glyph glyph-name="tablet" unicode="&#xf10a;" horiz-adv-x="1152" 
d="M640 128q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1024 288v960q0 13 -9.5 22.5t-22.5 9.5h-832q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h832q13 0 22.5 9.5t9.5 22.5zM1152 1248v-1088q0 -66 -47 -113t-113 -47h-832
q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h832q66 0 113 -47t47 -113z" />
    <glyph glyph-name="mobile_phone" unicode="&#xf10b;" horiz-adv-x="768" 
d="M464 128q0 33 -23.5 56.5t-56.5 23.5t-56.5 -23.5t-23.5 -56.5t23.5 -56.5t56.5 -23.5t56.5 23.5t23.5 56.5zM672 288v704q0 13 -9.5 22.5t-22.5 9.5h-512q-13 0 -22.5 -9.5t-9.5 -22.5v-704q0 -13 9.5 -22.5t22.5 -9.5h512q13 0 22.5 9.5t9.5 22.5zM480 1136
q0 16 -16 16h-160q-16 0 -16 -16t16 -16h160q16 0 16 16zM768 1152v-1024q0 -52 -38 -90t-90 -38h-512q-52 0 -90 38t-38 90v1024q0 52 38 90t90 38h512q52 0 90 -38t38 -90z" />
    <glyph glyph-name="circle_blank" unicode="&#xf10c;" 
d="M768 1184q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273t-73 273t-198 198t-273 73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103
t279.5 -279.5t103 -385.5z" />
    <glyph glyph-name="quote_left" unicode="&#xf10d;" horiz-adv-x="1664" 
d="M768 576v-384q0 -80 -56 -136t-136 -56h-384q-80 0 -136 56t-56 136v704q0 104 40.5 198.5t109.5 163.5t163.5 109.5t198.5 40.5h64q26 0 45 -19t19 -45v-128q0 -26 -19 -45t-45 -19h-64q-106 0 -181 -75t-75 -181v-32q0 -40 28 -68t68 -28h224q80 0 136 -56t56 -136z
M1664 576v-384q0 -80 -56 -136t-136 -56h-384q-80 0 -136 56t-56 136v704q0 104 40.5 198.5t109.5 163.5t163.5 109.5t198.5 40.5h64q26 0 45 -19t19 -45v-128q0 -26 -19 -45t-45 -19h-64q-106 0 -181 -75t-75 -181v-32q0 -40 28 -68t68 -28h224q80 0 136 -56t56 -136z" />
    <glyph glyph-name="quote_right" unicode="&#xf10e;" horiz-adv-x="1664" 
d="M768 1216v-704q0 -104 -40.5 -198.5t-109.5 -163.5t-163.5 -109.5t-198.5 -40.5h-64q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h64q106 0 181 75t75 181v32q0 40 -28 68t-68 28h-224q-80 0 -136 56t-56 136v384q0 80 56 136t136 56h384q80 0 136 -56t56 -136zM1664 1216
v-704q0 -104 -40.5 -198.5t-109.5 -163.5t-163.5 -109.5t-198.5 -40.5h-64q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h64q106 0 181 75t75 181v32q0 40 -28 68t-68 28h-224q-80 0 -136 56t-56 136v384q0 80 56 136t136 56h384q80 0 136 -56t56 -136z" />
    <glyph glyph-name="spinner" unicode="&#xf110;" horiz-adv-x="1792" 
d="M526 142q0 -53 -37.5 -90.5t-90.5 -37.5q-52 0 -90 38t-38 90q0 53 37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1024 -64q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM320 640q0 -53 -37.5 -90.5t-90.5 -37.5
t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1522 142q0 -52 -38 -90t-90 -38q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM558 1138q0 -66 -47 -113t-113 -47t-113 47t-47 113t47 113t113 47t113 -47t47 -113z
M1728 640q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1088 1344q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1618 1138q0 -93 -66 -158.5t-158 -65.5q-93 0 -158.5 65.5t-65.5 158.5
q0 92 65.5 158t158.5 66q92 0 158 -66t66 -158z" />
    <glyph glyph-name="circle" unicode="&#xf111;" 
d="M1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
    <glyph glyph-name="reply" unicode="&#xf112;" horiz-adv-x="1792" 
d="M1792 416q0 -166 -127 -451q-3 -7 -10.5 -24t-13.5 -30t-13 -22q-12 -17 -28 -17q-15 0 -23.5 10t-8.5 25q0 9 2.5 26.5t2.5 23.5q5 68 5 123q0 101 -17.5 181t-48.5 138.5t-80 101t-105.5 69.5t-133 42.5t-154 21.5t-175.5 6h-224v-256q0 -26 -19 -45t-45 -19t-45 19
l-512 512q-19 19 -19 45t19 45l512 512q19 19 45 19t45 -19t19 -45v-256h224q713 0 875 -403q53 -134 53 -333z" />
    <glyph glyph-name="github_alt" unicode="&#xf113;" horiz-adv-x="1664" 
d="M640 320q0 -40 -12.5 -82t-43 -76t-72.5 -34t-72.5 34t-43 76t-12.5 82t12.5 82t43 76t72.5 34t72.5 -34t43 -76t12.5 -82zM1280 320q0 -40 -12.5 -82t-43 -76t-72.5 -34t-72.5 34t-43 76t-12.5 82t12.5 82t43 76t72.5 34t72.5 -34t43 -76t12.5 -82zM1440 320
q0 120 -69 204t-187 84q-41 0 -195 -21q-71 -11 -157 -11t-157 11q-152 21 -195 21q-118 0 -187 -84t-69 -204q0 -88 32 -153.5t81 -103t122 -60t140 -29.5t149 -7h168q82 0 149 7t140 29.5t122 60t81 103t32 153.5zM1664 496q0 -207 -61 -331q-38 -77 -105.5 -133t-141 -86
t-170 -47.5t-171.5 -22t-167 -4.5q-78 0 -142 3t-147.5 12.5t-152.5 30t-137 51.5t-121 81t-86 115q-62 123 -62 331q0 237 136 396q-27 82 -27 170q0 116 51 218q108 0 190 -39.5t189 -123.5q147 35 309 35q148 0 280 -32q105 82 187 121t189 39q51 -102 51 -218
q0 -87 -27 -168q136 -160 136 -398z" />
    <glyph glyph-name="folder_close_alt" unicode="&#xf114;" horiz-adv-x="1664" 
d="M1536 224v704q0 40 -28 68t-68 28h-704q-40 0 -68 28t-28 68v64q0 40 -28 68t-68 28h-320q-40 0 -68 -28t-28 -68v-960q0 -40 28 -68t68 -28h1216q40 0 68 28t28 68zM1664 928v-704q0 -92 -66 -158t-158 -66h-1216q-92 0 -158 66t-66 158v960q0 92 66 158t158 66h320
q92 0 158 -66t66 -158v-32h672q92 0 158 -66t66 -158z" />
    <glyph glyph-name="folder_open_alt" unicode="&#xf115;" horiz-adv-x="1920" 
d="M1781 605q0 35 -53 35h-1088q-40 0 -85.5 -21.5t-71.5 -52.5l-294 -363q-18 -24 -18 -40q0 -35 53 -35h1088q40 0 86 22t71 53l294 363q18 22 18 39zM640 768h768v160q0 40 -28 68t-68 28h-576q-40 0 -68 28t-28 68v64q0 40 -28 68t-68 28h-320q-40 0 -68 -28t-28 -68
v-853l256 315q44 53 116 87.5t140 34.5zM1909 605q0 -62 -46 -120l-295 -363q-43 -53 -116 -87.5t-140 -34.5h-1088q-92 0 -158 66t-66 158v960q0 92 66 158t158 66h320q92 0 158 -66t66 -158v-32h544q92 0 158 -66t66 -158v-160h192q54 0 99 -24.5t67 -70.5q15 -32 15 -68z
" />
    <glyph glyph-name="expand_alt" unicode="&#xf116;" horiz-adv-x="1792" 
 />
    <glyph glyph-name="collapse_alt" unicode="&#xf117;" horiz-adv-x="1792" 
 />
    <glyph glyph-name="smile" unicode="&#xf118;" 
d="M1134 461q-37 -121 -138 -195t-228 -74t-228 74t-138 195q-8 25 4 48.5t38 31.5q25 8 48.5 -4t31.5 -38q25 -80 92.5 -129.5t151.5 -49.5t151.5 49.5t92.5 129.5q8 26 32 38t49 4t37 -31.5t4 -48.5zM640 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5
t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1152 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1408 640q0 130 -51 248.5t-136.5 204t-204 136.5t-248.5 51t-248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5
t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
    <glyph glyph-name="frown" unicode="&#xf119;" 
d="M1134 307q8 -25 -4 -48.5t-37 -31.5t-49 4t-32 38q-25 80 -92.5 129.5t-151.5 49.5t-151.5 -49.5t-92.5 -129.5q-8 -26 -31.5 -38t-48.5 -4q-26 8 -38 31.5t-4 48.5q37 121 138 195t228 74t228 -74t138 -195zM640 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5
t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1152 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1408 640q0 130 -51 248.5t-136.5 204t-204 136.5t-248.5 51t-248.5 -51t-204 -136.5t-136.5 -204
t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
    <glyph glyph-name="meh" unicode="&#xf11a;" 
d="M1152 448q0 -26 -19 -45t-45 -19h-640q-26 0 -45 19t-19 45t19 45t45 19h640q26 0 45 -19t19 -45zM640 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1152 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5
t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1408 640q0 130 -51 248.5t-136.5 204t-204 136.5t-248.5 51t-248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5zM1536 640
q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
    <glyph glyph-name="gamepad" unicode="&#xf11b;" horiz-adv-x="1920" 
d="M832 448v128q0 14 -9 23t-23 9h-192v192q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-192h-192q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h192v-192q0 -14 9 -23t23 -9h128q14 0 23 9t9 23v192h192q14 0 23 9t9 23zM1408 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5
t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1664 640q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1920 512q0 -212 -150 -362t-362 -150q-192 0 -338 128h-220q-146 -128 -338 -128q-212 0 -362 150
t-150 362t150 362t362 150h896q212 0 362 -150t150 -362z" />
    <glyph glyph-name="keyboard" unicode="&#xf11c;" horiz-adv-x="1920" 
d="M384 368v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM512 624v-96q0 -16 -16 -16h-224q-16 0 -16 16v96q0 16 16 16h224q16 0 16 -16zM384 880v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1408 368v-96q0 -16 -16 -16
h-864q-16 0 -16 16v96q0 16 16 16h864q16 0 16 -16zM768 624v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM640 880v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1024 624v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16
h96q16 0 16 -16zM896 880v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1280 624v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1664 368v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1152 880v-96
q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1408 880v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1664 880v-352q0 -16 -16 -16h-224q-16 0 -16 16v96q0 16 16 16h112v240q0 16 16 16h96q16 0 16 -16zM1792 128v896h-1664v-896
h1664zM1920 1024v-896q0 -53 -37.5 -90.5t-90.5 -37.5h-1664q-53 0 -90.5 37.5t-37.5 90.5v896q0 53 37.5 90.5t90.5 37.5h1664q53 0 90.5 -37.5t37.5 -90.5z" />
    <glyph glyph-name="flag_alt" unicode="&#xf11d;" horiz-adv-x="1792" 
d="M1664 491v616q-169 -91 -306 -91q-82 0 -145 32q-100 49 -184 76.5t-178 27.5q-173 0 -403 -127v-599q245 113 433 113q55 0 103.5 -7.5t98 -26t77 -31t82.5 -39.5l28 -14q44 -22 101 -22q120 0 293 92zM320 1280q0 -35 -17.5 -64t-46.5 -46v-1266q0 -14 -9 -23t-23 -9
h-64q-14 0 -23 9t-9 23v1266q-29 17 -46.5 46t-17.5 64q0 53 37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1792 1216v-763q0 -39 -35 -57q-10 -5 -17 -9q-218 -116 -369 -116q-88 0 -158 35l-28 14q-64 33 -99 48t-91 29t-114 14q-102 0 -235.5 -44t-228.5 -102
q-15 -9 -33 -9q-16 0 -32 8q-32 19 -32 56v742q0 35 31 55q35 21 78.5 42.5t114 52t152.5 49.5t155 19q112 0 209 -31t209 -86q38 -19 89 -19q122 0 310 112q22 12 31 17q31 16 62 -2q31 -20 31 -55z" />
    <glyph glyph-name="flag_checkered" unicode="&#xf11e;" horiz-adv-x="1792" 
d="M832 536v192q-181 -16 -384 -117v-185q205 96 384 110zM832 954v197q-172 -8 -384 -126v-189q215 111 384 118zM1664 491v184q-235 -116 -384 -71v224q-20 6 -39 15q-5 3 -33 17t-34.5 17t-31.5 15t-34.5 15.5t-32.5 13t-36 12.5t-35 8.5t-39.5 7.5t-39.5 4t-44 2
q-23 0 -49 -3v-222h19q102 0 192.5 -29t197.5 -82q19 -9 39 -15v-188q42 -17 91 -17q120 0 293 92zM1664 918v189q-169 -91 -306 -91q-45 0 -78 8v-196q148 -42 384 90zM320 1280q0 -35 -17.5 -64t-46.5 -46v-1266q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v1266
q-29 17 -46.5 46t-17.5 64q0 53 37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1792 1216v-763q0 -39 -35 -57q-10 -5 -17 -9q-218 -116 -369 -116q-88 0 -158 35l-28 14q-64 33 -99 48t-91 29t-114 14q-102 0 -235.5 -44t-228.5 -102q-15 -9 -33 -9q-16 0 -32 8
q-32 19 -32 56v742q0 35 31 55q35 21 78.5 42.5t114 52t152.5 49.5t155 19q112 0 209 -31t209 -86q38 -19 89 -19q122 0 310 112q22 12 31 17q31 16 62 -2q31 -20 31 -55z" />
    <glyph glyph-name="terminal" unicode="&#xf120;" horiz-adv-x="1664" 
d="M585 553l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23t-10 -23zM1664 96v-64q0 -14 -9 -23t-23 -9h-960q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h960q14 0 23 -9
t9 -23z" />
    <glyph glyph-name="code" unicode="&#xf121;" horiz-adv-x="1920" 
d="M617 137l-50 -50q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l50 -50q10 -10 10 -23t-10 -23l-393 -393l393 -393q10 -10 10 -23t-10 -23zM1208 1204l-373 -1291q-4 -13 -15.5 -19.5t-23.5 -2.5l-62 17q-13 4 -19.5 15.5t-2.5 24.5
l373 1291q4 13 15.5 19.5t23.5 2.5l62 -17q13 -4 19.5 -15.5t2.5 -24.5zM1865 553l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23t-10 -23z" />
    <glyph glyph-name="reply_all" unicode="&#xf122;" horiz-adv-x="1792" 
d="M640 454v-70q0 -42 -39 -59q-13 -5 -25 -5q-27 0 -45 19l-512 512q-19 19 -19 45t19 45l512 512q29 31 70 14q39 -17 39 -59v-69l-397 -398q-19 -19 -19 -45t19 -45zM1792 416q0 -58 -17 -133.5t-38.5 -138t-48 -125t-40.5 -90.5l-20 -40q-8 -17 -28 -17q-6 0 -9 1
q-25 8 -23 34q43 400 -106 565q-64 71 -170.5 110.5t-267.5 52.5v-251q0 -42 -39 -59q-13 -5 -25 -5q-27 0 -45 19l-512 512q-19 19 -19 45t19 45l512 512q29 31 70 14q39 -17 39 -59v-262q411 -28 599 -221q169 -173 169 -509z" />
    <glyph glyph-name="star_half_empty" unicode="&#xf123;" horiz-adv-x="1664" 
d="M1186 579l257 250l-356 52l-66 10l-30 60l-159 322v-963l59 -31l318 -168l-60 355l-12 66zM1638 841l-363 -354l86 -500q5 -33 -6 -51.5t-34 -18.5q-17 0 -40 12l-449 236l-449 -236q-23 -12 -40 -12q-23 0 -34 18.5t-6 51.5l86 500l-364 354q-32 32 -23 59.5t54 34.5
l502 73l225 455q20 41 49 41q28 0 49 -41l225 -455l502 -73q45 -7 54 -34.5t-24 -59.5z" />
    <glyph glyph-name="location_arrow" unicode="&#xf124;" horiz-adv-x="1408" 
d="M1401 1187l-640 -1280q-17 -35 -57 -35q-5 0 -15 2q-22 5 -35.5 22.5t-13.5 39.5v576h-576q-22 0 -39.5 13.5t-22.5 35.5t4 42t29 30l1280 640q13 7 29 7q27 0 45 -19q15 -14 18.5 -34.5t-6.5 -39.5z" />
    <glyph glyph-name="crop" unicode="&#xf125;" horiz-adv-x="1664" 
d="M557 256h595v595zM512 301l595 595h-595v-595zM1664 224v-192q0 -14 -9 -23t-23 -9h-224v-224q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v224h-864q-14 0 -23 9t-9 23v864h-224q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h224v224q0 14 9 23t23 9h192q14 0 23 -9t9 -23
v-224h851l246 247q10 9 23 9t23 -9q9 -10 9 -23t-9 -23l-247 -246v-851h224q14 0 23 -9t9 -23z" />
    <glyph glyph-name="code_fork" unicode="&#xf126;" horiz-adv-x="1024" 
d="M288 64q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM288 1216q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM928 1088q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM1024 1088q0 -52 -26 -96.5t-70 -69.5
q-2 -287 -226 -414q-67 -38 -203 -81q-128 -40 -169.5 -71t-41.5 -100v-26q44 -25 70 -69.5t26 -96.5q0 -80 -56 -136t-136 -56t-136 56t-56 136q0 52 26 96.5t70 69.5v820q-44 25 -70 69.5t-26 96.5q0 80 56 136t136 56t136 -56t56 -136q0 -52 -26 -96.5t-70 -69.5v-497
q54 26 154 57q55 17 87.5 29.5t70.5 31t59 39.5t40.5 51t28 69.5t8.5 91.5q-44 25 -70 69.5t-26 96.5q0 80 56 136t136 56t136 -56t56 -136z" />
    <glyph glyph-name="unlink" unicode="&#xf127;" horiz-adv-x="1664" 
d="M439 265l-256 -256q-11 -9 -23 -9t-23 9q-9 10 -9 23t9 23l256 256q10 9 23 9t23 -9q9 -10 9 -23t-9 -23zM608 224v-320q0 -14 -9 -23t-23 -9t-23 9t-9 23v320q0 14 9 23t23 9t23 -9t9 -23zM384 448q0 -14 -9 -23t-23 -9h-320q-14 0 -23 9t-9 23t9 23t23 9h320
q14 0 23 -9t9 -23zM1648 320q0 -120 -85 -203l-147 -146q-83 -83 -203 -83q-121 0 -204 85l-334 335q-21 21 -42 56l239 18l273 -274q27 -27 68 -27.5t68 26.5l147 146q28 28 28 67q0 40 -28 68l-274 275l18 239q35 -21 56 -42l336 -336q84 -86 84 -204zM1031 1044l-239 -18
l-273 274q-28 28 -68 28q-39 0 -68 -27l-147 -146q-28 -28 -28 -67q0 -40 28 -68l274 -274l-18 -240q-35 21 -56 42l-336 336q-84 86 -84 204q0 120 85 203l147 146q83 83 203 83q121 0 204 -85l334 -335q21 -21 42 -56zM1664 960q0 -14 -9 -23t-23 -9h-320q-14 0 -23 9
t-9 23t9 23t23 9h320q14 0 23 -9t9 -23zM1120 1504v-320q0 -14 -9 -23t-23 -9t-23 9t-9 23v320q0 14 9 23t23 9t23 -9t9 -23zM1527 1353l-256 -256q-11 -9 -23 -9t-23 9q-9 10 -9 23t9 23l256 256q10 9 23 9t23 -9q9 -10 9 -23t-9 -23z" />
    <glyph glyph-name="question" unicode="&#xf128;" horiz-adv-x="1024" 
d="M704 280v-240q0 -16 -12 -28t-28 -12h-240q-16 0 -28 12t-12 28v240q0 16 12 28t28 12h240q16 0 28 -12t12 -28zM1020 880q0 -54 -15.5 -101t-35 -76.5t-55 -59.5t-57.5 -43.5t-61 -35.5q-41 -23 -68.5 -65t-27.5 -67q0 -17 -12 -32.5t-28 -15.5h-240q-15 0 -25.5 18.5
t-10.5 37.5v45q0 83 65 156.5t143 108.5q59 27 84 56t25 76q0 42 -46.5 74t-107.5 32q-65 0 -108 -29q-35 -25 -107 -115q-13 -16 -31 -16q-12 0 -25 8l-164 125q-13 10 -15.5 25t5.5 28q160 266 464 266q80 0 161 -31t146 -83t106 -127.5t41 -158.5z" />
    <glyph glyph-name="_279" unicode="&#xf129;" horiz-adv-x="640" 
d="M640 192v-128q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h64v384h-64q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h384q26 0 45 -19t19 -45v-576h64q26 0 45 -19t19 -45zM512 1344v-192q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v192
q0 26 19 45t45 19h256q26 0 45 -19t19 -45z" />
    <glyph glyph-name="exclamation" unicode="&#xf12a;" horiz-adv-x="640" 
d="M512 288v-224q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v224q0 26 19 45t45 19h256q26 0 45 -19t19 -45zM542 1344l-28 -768q-1 -26 -20.5 -45t-45.5 -19h-256q-26 0 -45.5 19t-20.5 45l-28 768q-1 26 17.5 45t44.5 19h320q26 0 44.5 -19t17.5 -45z" />
    <glyph glyph-name="superscript" unicode="&#xf12b;" 
d="M897 167v-167h-248l-159 252l-24 42q-8 9 -11 21h-3q-1 -3 -2.5 -6.5t-3.5 -8t-3 -6.5q-10 -20 -25 -44l-155 -250h-258v167h128l197 291l-185 272h-137v168h276l139 -228q2 -4 23 -42q8 -9 11 -21h3q3 9 11 21l25 42l140 228h257v-168h-125l-184 -267l204 -296h109z
M1534 846v-206h-514l-3 27q-4 28 -4 46q0 64 26 117t65 86.5t84 65t84 54.5t65 54t26 64q0 38 -29.5 62.5t-70.5 24.5q-51 0 -97 -39q-14 -11 -36 -38l-105 92q26 37 63 66q83 65 188 65q110 0 178 -59.5t68 -158.5q0 -56 -24.5 -103t-62 -76.5t-81.5 -58.5t-82 -50.5
t-65.5 -51.5t-30.5 -63h232v80h126z" />
    <glyph glyph-name="subscript" unicode="&#xf12c;" 
d="M897 167v-167h-248l-159 252l-24 42q-8 9 -11 21h-3q-1 -3 -2.5 -6.5t-3.5 -8t-3 -6.5q-10 -20 -25 -44l-155 -250h-258v167h128l197 291l-185 272h-137v168h276l139 -228q2 -4 23 -42q8 -9 11 -21h3q3 9 11 21l25 42l140 228h257v-168h-125l-184 -267l204 -296h109z
M1536 -50v-206h-514l-4 27q-3 45 -3 46q0 64 26 117t65 86.5t84 65t84 54.5t65 54t26 64q0 38 -29.5 62.5t-70.5 24.5q-51 0 -97 -39q-14 -11 -36 -38l-105 92q26 37 63 66q80 65 188 65q110 0 178 -59.5t68 -158.5q0 -66 -34.5 -118.5t-84 -86t-99.5 -62.5t-87 -63t-41 -73
h232v80h126z" />
    <glyph glyph-name="_283" unicode="&#xf12d;" horiz-adv-x="1920" 
d="M896 128l336 384h-768l-336 -384h768zM1909 1205q15 -34 9.5 -71.5t-30.5 -65.5l-896 -1024q-38 -44 -96 -44h-768q-38 0 -69.5 20.5t-47.5 54.5q-15 34 -9.5 71.5t30.5 65.5l896 1024q38 44 96 44h768q38 0 69.5 -20.5t47.5 -54.5z" />
    <glyph glyph-name="puzzle_piece" unicode="&#xf12e;" horiz-adv-x="1664" 
d="M1664 438q0 -81 -44.5 -135t-123.5 -54q-41 0 -77.5 17.5t-59 38t-56.5 38t-71 17.5q-110 0 -110 -124q0 -39 16 -115t15 -115v-5q-22 0 -33 -1q-34 -3 -97.5 -11.5t-115.5 -13.5t-98 -5q-61 0 -103 26.5t-42 83.5q0 37 17.5 71t38 56.5t38 59t17.5 77.5q0 79 -54 123.5
t-135 44.5q-84 0 -143 -45.5t-59 -127.5q0 -43 15 -83t33.5 -64.5t33.5 -53t15 -50.5q0 -45 -46 -89q-37 -35 -117 -35q-95 0 -245 24q-9 2 -27.5 4t-27.5 4l-13 2q-1 0 -3 1q-2 0 -2 1v1024q2 -1 17.5 -3.5t34 -5t21.5 -3.5q150 -24 245 -24q80 0 117 35q46 44 46 89
q0 22 -15 50.5t-33.5 53t-33.5 64.5t-15 83q0 82 59 127.5t144 45.5q80 0 134 -44.5t54 -123.5q0 -41 -17.5 -77.5t-38 -59t-38 -56.5t-17.5 -71q0 -57 42 -83.5t103 -26.5q64 0 180 15t163 17v-2q-1 -2 -3.5 -17.5t-5 -34t-3.5 -21.5q-24 -150 -24 -245q0 -80 35 -117
q44 -46 89 -46q22 0 50.5 15t53 33.5t64.5 33.5t83 15q82 0 127.5 -59t45.5 -143z" />
    <glyph glyph-name="microphone" unicode="&#xf130;" horiz-adv-x="1152" 
d="M1152 832v-128q0 -221 -147.5 -384.5t-364.5 -187.5v-132h256q26 0 45 -19t19 -45t-19 -45t-45 -19h-640q-26 0 -45 19t-19 45t19 45t45 19h256v132q-217 24 -364.5 187.5t-147.5 384.5v128q0 26 19 45t45 19t45 -19t19 -45v-128q0 -185 131.5 -316.5t316.5 -131.5
t316.5 131.5t131.5 316.5v128q0 26 19 45t45 19t45 -19t19 -45zM896 1216v-512q0 -132 -94 -226t-226 -94t-226 94t-94 226v512q0 132 94 226t226 94t226 -94t94 -226z" />
    <glyph glyph-name="microphone_off" unicode="&#xf131;" horiz-adv-x="1408" 
d="M271 591l-101 -101q-42 103 -42 214v128q0 26 19 45t45 19t45 -19t19 -45v-128q0 -53 15 -113zM1385 1193l-361 -361v-128q0 -132 -94 -226t-226 -94q-55 0 -109 19l-96 -96q97 -51 205 -51q185 0 316.5 131.5t131.5 316.5v128q0 26 19 45t45 19t45 -19t19 -45v-128
q0 -221 -147.5 -384.5t-364.5 -187.5v-132h256q26 0 45 -19t19 -45t-19 -45t-45 -19h-640q-26 0 -45 19t-19 45t19 45t45 19h256v132q-125 13 -235 81l-254 -254q-10 -10 -23 -10t-23 10l-82 82q-10 10 -10 23t10 23l1234 1234q10 10 23 10t23 -10l82 -82q10 -10 10 -23
t-10 -23zM1005 1325l-621 -621v512q0 132 94 226t226 94q102 0 184.5 -59t116.5 -152z" />
    <glyph glyph-name="shield" unicode="&#xf132;" horiz-adv-x="1280" 
d="M1088 576v640h-448v-1137q119 63 213 137q235 184 235 360zM1280 1344v-768q0 -86 -33.5 -170.5t-83 -150t-118 -127.5t-126.5 -103t-121 -77.5t-89.5 -49.5t-42.5 -20q-12 -6 -26 -6t-26 6q-16 7 -42.5 20t-89.5 49.5t-121 77.5t-126.5 103t-118 127.5t-83 150
t-33.5 170.5v768q0 26 19 45t45 19h1152q26 0 45 -19t19 -45z" />
    <glyph glyph-name="calendar_empty" unicode="&#xf133;" horiz-adv-x="1664" 
d="M128 -128h1408v1024h-1408v-1024zM512 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1280 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1664 1152v-1280
q0 -52 -38 -90t-90 -38h-1408q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h128v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h384v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h128q52 0 90 -38t38 -90z" />
    <glyph glyph-name="fire_extinguisher" unicode="&#xf134;" horiz-adv-x="1408" 
d="M512 1344q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 1376v-320q0 -16 -12 -25q-8 -7 -20 -7q-4 0 -7 1l-448 96q-11 2 -18 11t-7 20h-256v-102q111 -23 183.5 -111t72.5 -203v-800q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v800
q0 106 62.5 190.5t161.5 114.5v111h-32q-59 0 -115 -23.5t-91.5 -53t-66 -66.5t-40.5 -53.5t-14 -24.5q-17 -35 -57 -35q-16 0 -29 7q-23 12 -31.5 37t3.5 49q5 10 14.5 26t37.5 53.5t60.5 70t85 67t108.5 52.5q-25 42 -25 86q0 66 47 113t113 47t113 -47t47 -113
q0 -33 -14 -64h302q0 11 7 20t18 11l448 96q3 1 7 1q12 0 20 -7q12 -9 12 -25z" />
    <glyph glyph-name="rocket" unicode="&#xf135;" horiz-adv-x="1664" 
d="M1440 1088q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM1664 1376q0 -249 -75.5 -430.5t-253.5 -360.5q-81 -80 -195 -176l-20 -379q-2 -16 -16 -26l-384 -224q-7 -4 -16 -4q-12 0 -23 9l-64 64q-13 14 -8 32l85 276l-281 281l-276 -85q-3 -1 -9 -1
q-14 0 -23 9l-64 64q-17 19 -5 39l224 384q10 14 26 16l379 20q96 114 176 195q188 187 358 258t431 71q14 0 24 -9.5t10 -22.5z" />
    <glyph glyph-name="maxcdn" unicode="&#xf136;" horiz-adv-x="1792" 
d="M1745 763l-164 -763h-334l178 832q13 56 -15 88q-27 33 -83 33h-169l-204 -953h-334l204 953h-286l-204 -953h-334l204 953l-153 327h1276q101 0 189.5 -40.5t147.5 -113.5q60 -73 81 -168.5t0 -194.5z" />
    <glyph glyph-name="chevron_sign_left" unicode="&#xf137;" 
d="M909 141l102 102q19 19 19 45t-19 45l-307 307l307 307q19 19 19 45t-19 45l-102 102q-19 19 -45 19t-45 -19l-454 -454q-19 -19 -19 -45t19 -45l454 -454q19 -19 45 -19t45 19zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5
t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
    <glyph glyph-name="chevron_sign_right" unicode="&#xf138;" 
d="M717 141l454 454q19 19 19 45t-19 45l-454 454q-19 19 -45 19t-45 -19l-102 -102q-19 -19 -19 -45t19 -45l307 -307l-307 -307q-19 -19 -19 -45t19 -45l102 -102q19 -19 45 -19t45 19zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5
t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
    <glyph glyph-name="chevron_sign_up" unicode="&#xf139;" 
d="M1165 397l102 102q19 19 19 45t-19 45l-454 454q-19 19 -45 19t-45 -19l-454 -454q-19 -19 -19 -45t19 -45l102 -102q19 -19 45 -19t45 19l307 307l307 -307q19 -19 45 -19t45 19zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5
t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
    <glyph glyph-name="chevron_sign_down" unicode="&#xf13a;" 
d="M813 237l454 454q19 19 19 45t-19 45l-102 102q-19 19 -45 19t-45 -19l-307 -307l-307 307q-19 19 -45 19t-45 -19l-102 -102q-19 -19 -19 -45t19 -45l454 -454q19 -19 45 -19t45 19zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5
t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
    <glyph glyph-name="html5" unicode="&#xf13b;" horiz-adv-x="1408" 
d="M1130 939l16 175h-884l47 -534h612l-22 -228l-197 -53l-196 53l-13 140h-175l22 -278l362 -100h4v1l359 99l50 544h-644l-15 181h674zM0 1408h1408l-128 -1438l-578 -162l-574 162z" />
    <glyph glyph-name="css3" unicode="&#xf13c;" horiz-adv-x="1792" 
d="M275 1408h1505l-266 -1333l-804 -267l-698 267l71 356h297l-29 -147l422 -161l486 161l68 339h-1208l58 297h1209l38 191h-1208z" />
    <glyph glyph-name="anchor" unicode="&#xf13d;" horiz-adv-x="1792" 
d="M960 1280q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1792 352v-352q0 -22 -20 -30q-8 -2 -12 -2q-12 0 -23 9l-93 93q-119 -143 -318.5 -226.5t-429.5 -83.5t-429.5 83.5t-318.5 226.5l-93 -93q-9 -9 -23 -9q-4 0 -12 2q-20 8 -20 30v352
q0 14 9 23t23 9h352q22 0 30 -20q8 -19 -7 -35l-100 -100q67 -91 189.5 -153.5t271.5 -82.5v647h-192q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h192v163q-58 34 -93 92.5t-35 128.5q0 106 75 181t181 75t181 -75t75 -181q0 -70 -35 -128.5t-93 -92.5v-163h192q26 0 45 -19
t19 -45v-128q0 -26 -19 -45t-45 -19h-192v-647q149 20 271.5 82.5t189.5 153.5l-100 100q-15 16 -7 35q8 20 30 20h352q14 0 23 -9t9 -23z" />
    <glyph glyph-name="unlock_alt" unicode="&#xf13e;" horiz-adv-x="1152" 
d="M1056 768q40 0 68 -28t28 -68v-576q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v576q0 40 28 68t68 28h32v320q0 185 131.5 316.5t316.5 131.5t316.5 -131.5t131.5 -316.5q0 -26 -19 -45t-45 -19h-64q-26 0 -45 19t-19 45q0 106 -75 181t-181 75t-181 -75t-75 -181
v-320h736z" />
    <glyph glyph-name="bullseye" unicode="&#xf140;" 
d="M1024 640q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75t75 -181zM1152 640q0 159 -112.5 271.5t-271.5 112.5t-271.5 -112.5t-112.5 -271.5t112.5 -271.5t271.5 -112.5t271.5 112.5t112.5 271.5zM1280 640q0 -212 -150 -362t-362 -150t-362 150
t-150 362t150 362t362 150t362 -150t150 -362zM1408 640q0 130 -51 248.5t-136.5 204t-204 136.5t-248.5 51t-248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5zM1536 640
q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
    <glyph glyph-name="ellipsis_horizontal" unicode="&#xf141;" horiz-adv-x="1408" 
d="M384 800v-192q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68zM896 800v-192q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68zM1408 800v-192q0 -40 -28 -68t-68 -28h-192
q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68z" />
    <glyph glyph-name="ellipsis_vertical" unicode="&#xf142;" horiz-adv-x="384" 
d="M384 288v-192q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68zM384 800v-192q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68zM384 1312v-192q0 -40 -28 -68t-68 -28h-192
q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68z" />
    <glyph glyph-name="_303" unicode="&#xf143;" 
d="M512 256q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM863 162q-13 233 -176.5 396.5t-396.5 176.5q-14 1 -24 -9t-10 -23v-128q0 -13 8.5 -22t21.5 -10q154 -11 264 -121t121 -264q1 -13 10 -21.5t22 -8.5h128
q13 0 23 10t9 24zM1247 161q-5 154 -56 297.5t-139.5 260t-205 205t-260 139.5t-297.5 56q-14 1 -23 -9q-10 -10 -10 -23v-128q0 -13 9 -22t22 -10q204 -7 378 -111.5t278.5 -278.5t111.5 -378q1 -13 10 -22t22 -9h128q13 0 23 10q11 9 9 23zM1536 1120v-960
q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
    <glyph glyph-name="play_sign" unicode="&#xf144;" 
d="M768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM1152 585q32 18 32 55t-32 55l-544 320q-31 19 -64 1q-32 -19 -32 -56v-640q0 -37 32 -56
q16 -8 32 -8q17 0 32 9z" />
    <glyph glyph-name="ticket" unicode="&#xf145;" horiz-adv-x="1792" 
d="M1024 1084l316 -316l-572 -572l-316 316zM813 105l618 618q19 19 19 45t-19 45l-362 362q-18 18 -45 18t-45 -18l-618 -618q-19 -19 -19 -45t19 -45l362 -362q18 -18 45 -18t45 18zM1702 742l-907 -908q-37 -37 -90.5 -37t-90.5 37l-126 126q56 56 56 136t-56 136
t-136 56t-136 -56l-125 126q-37 37 -37 90.5t37 90.5l907 906q37 37 90.5 37t90.5 -37l125 -125q-56 -56 -56 -136t56 -136t136 -56t136 56l126 -125q37 -37 37 -90.5t-37 -90.5z" />
    <glyph glyph-name="minus_sign_alt" unicode="&#xf146;" 
d="M1280 576v128q0 26 -19 45t-45 19h-896q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h896q26 0 45 19t19 45zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5
t84.5 -203.5z" />
    <glyph glyph-name="check_minus" unicode="&#xf147;" horiz-adv-x="1408" 
d="M1152 736v-64q0 -14 -9 -23t-23 -9h-832q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h832q14 0 23 -9t9 -23zM1280 288v832q0 66 -47 113t-113 47h-832q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113zM1408 1120v-832q0 -119 -84.5 -203.5
t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832q119 0 203.5 -84.5t84.5 -203.5z" />
    <glyph glyph-name="level_up" unicode="&#xf148;" horiz-adv-x="1024" 
d="M1018 933q-18 -37 -58 -37h-192v-864q0 -14 -9 -23t-23 -9h-704q-21 0 -29 18q-8 20 4 35l160 192q9 11 25 11h320v640h-192q-40 0 -58 37q-17 37 9 68l320 384q18 22 49 22t49 -22l320 -384q27 -32 9 -68z" />
    <glyph glyph-name="level_down" unicode="&#xf149;" horiz-adv-x="1024" 
d="M32 1280h704q13 0 22.5 -9.5t9.5 -23.5v-863h192q40 0 58 -37t-9 -69l-320 -384q-18 -22 -49 -22t-49 22l-320 384q-26 31 -9 69q18 37 58 37h192v640h-320q-14 0 -25 11l-160 192q-13 14 -4 34q9 19 29 19z" />
    <glyph glyph-name="check_sign" unicode="&#xf14a;" 
d="M685 237l614 614q19 19 19 45t-19 45l-102 102q-19 19 -45 19t-45 -19l-467 -467l-211 211q-19 19 -45 19t-45 -19l-102 -102q-19 -19 -19 -45t19 -45l358 -358q19 -19 45 -19t45 19zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5
t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
    <glyph glyph-name="edit_sign" unicode="&#xf14b;" 
d="M404 428l152 -152l-52 -52h-56v96h-96v56zM818 818q14 -13 -3 -30l-291 -291q-17 -17 -30 -3q-14 13 3 30l291 291q17 17 30 3zM544 128l544 544l-288 288l-544 -544v-288h288zM1152 736l92 92q28 28 28 68t-28 68l-152 152q-28 28 -68 28t-68 -28l-92 -92zM1536 1120
v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
    <glyph glyph-name="_312" unicode="&#xf14c;" 
d="M1280 608v480q0 26 -19 45t-45 19h-480q-42 0 -59 -39q-17 -41 14 -70l144 -144l-534 -534q-19 -19 -19 -45t19 -45l102 -102q19 -19 45 -19t45 19l534 534l144 -144q18 -19 45 -19q12 0 25 5q39 17 39 59zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960
q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
    <glyph glyph-name="share_sign" unicode="&#xf14d;" 
d="M1005 435l352 352q19 19 19 45t-19 45l-352 352q-30 31 -69 14q-40 -17 -40 -59v-160q-119 0 -216 -19.5t-162.5 -51t-114 -79t-76.5 -95.5t-44.5 -109t-21.5 -111.5t-5 -110.5q0 -181 167 -404q11 -12 25 -12q7 0 13 3q22 9 19 33q-44 354 62 473q46 52 130 75.5
t224 23.5v-160q0 -42 40 -59q12 -5 24 -5q26 0 45 19zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
    <glyph glyph-name="compass" unicode="&#xf14e;" 
d="M640 448l256 128l-256 128v-256zM1024 1039v-542l-512 -256v542zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103
t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
    <glyph glyph-name="collapse" unicode="&#xf150;" 
d="M1145 861q18 -35 -5 -66l-320 -448q-19 -27 -52 -27t-52 27l-320 448q-23 31 -5 66q17 35 57 35h640q40 0 57 -35zM1280 160v960q0 13 -9.5 22.5t-22.5 9.5h-960q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h960q13 0 22.5 9.5t9.5 22.5zM1536 1120
v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
    <glyph glyph-name="collapse_top" unicode="&#xf151;" 
d="M1145 419q-17 -35 -57 -35h-640q-40 0 -57 35q-18 35 5 66l320 448q19 27 52 27t52 -27l320 -448q23 -31 5 -66zM1280 160v960q0 13 -9.5 22.5t-22.5 9.5h-960q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h960q13 0 22.5 9.5t9.5 22.5zM1536 1120v-960
q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
    <glyph glyph-name="_317" unicode="&#xf152;" 
d="M1088 640q0 -33 -27 -52l-448 -320q-31 -23 -66 -5q-35 17 -35 57v640q0 40 35 57q35 18 66 -5l448 -320q27 -19 27 -52zM1280 160v960q0 14 -9 23t-23 9h-960q-14 0 -23 -9t-9 -23v-960q0 -14 9 -23t23 -9h960q14 0 23 9t9 23zM1536 1120v-960q0 -119 -84.5 -203.5
t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
    <glyph glyph-name="eur" unicode="&#xf153;" horiz-adv-x="1024" 
d="M976 229l35 -159q3 -12 -3 -22.5t-17 -14.5l-5 -1q-4 -2 -10.5 -3.5t-16 -4.5t-21.5 -5.5t-25.5 -5t-30 -5t-33.5 -4.5t-36.5 -3t-38.5 -1q-234 0 -409 130.5t-238 351.5h-95q-13 0 -22.5 9.5t-9.5 22.5v113q0 13 9.5 22.5t22.5 9.5h66q-2 57 1 105h-67q-14 0 -23 9
t-9 23v114q0 14 9 23t23 9h98q67 210 243.5 338t400.5 128q102 0 194 -23q11 -3 20 -15q6 -11 3 -24l-43 -159q-3 -13 -14 -19.5t-24 -2.5l-4 1q-4 1 -11.5 2.5l-17.5 3.5t-22.5 3.5t-26 3t-29 2.5t-29.5 1q-126 0 -226 -64t-150 -176h468q16 0 25 -12q10 -12 7 -26
l-24 -114q-5 -26 -32 -26h-488q-3 -37 0 -105h459q15 0 25 -12q9 -12 6 -27l-24 -112q-2 -11 -11 -18.5t-20 -7.5h-387q48 -117 149.5 -185.5t228.5 -68.5q18 0 36 1.5t33.5 3.5t29.5 4.5t24.5 5t18.5 4.5l12 3l5 2q13 5 26 -2q12 -7 15 -21z" />
    <glyph glyph-name="gbp" unicode="&#xf154;" horiz-adv-x="1024" 
d="M1020 399v-367q0 -14 -9 -23t-23 -9h-956q-14 0 -23 9t-9 23v150q0 13 9.5 22.5t22.5 9.5h97v383h-95q-14 0 -23 9.5t-9 22.5v131q0 14 9 23t23 9h95v223q0 171 123.5 282t314.5 111q185 0 335 -125q9 -8 10 -20.5t-7 -22.5l-103 -127q-9 -11 -22 -12q-13 -2 -23 7
q-5 5 -26 19t-69 32t-93 18q-85 0 -137 -47t-52 -123v-215h305q13 0 22.5 -9t9.5 -23v-131q0 -13 -9.5 -22.5t-22.5 -9.5h-305v-379h414v181q0 13 9 22.5t23 9.5h162q14 0 23 -9.5t9 -22.5z" />
    <glyph glyph-name="usd" unicode="&#xf155;" horiz-adv-x="1024" 
d="M978 351q0 -153 -99.5 -263.5t-258.5 -136.5v-175q0 -14 -9 -23t-23 -9h-135q-13 0 -22.5 9.5t-9.5 22.5v175q-66 9 -127.5 31t-101.5 44.5t-74 48t-46.5 37.5t-17.5 18q-17 21 -2 41l103 135q7 10 23 12q15 2 24 -9l2 -2q113 -99 243 -125q37 -8 74 -8q81 0 142.5 43
t61.5 122q0 28 -15 53t-33.5 42t-58.5 37.5t-66 32t-80 32.5q-39 16 -61.5 25t-61.5 26.5t-62.5 31t-56.5 35.5t-53.5 42.5t-43.5 49t-35.5 58t-21 66.5t-8.5 78q0 138 98 242t255 134v180q0 13 9.5 22.5t22.5 9.5h135q14 0 23 -9t9 -23v-176q57 -6 110.5 -23t87 -33.5
t63.5 -37.5t39 -29t15 -14q17 -18 5 -38l-81 -146q-8 -15 -23 -16q-14 -3 -27 7q-3 3 -14.5 12t-39 26.5t-58.5 32t-74.5 26t-85.5 11.5q-95 0 -155 -43t-60 -111q0 -26 8.5 -48t29.5 -41.5t39.5 -33t56 -31t60.5 -27t70 -27.5q53 -20 81 -31.5t76 -35t75.5 -42.5t62 -50
t53 -63.5t31.5 -76.5t13 -94z" />
    <glyph glyph-name="inr" unicode="&#xf156;" horiz-adv-x="898" 
d="M898 1066v-102q0 -14 -9 -23t-23 -9h-168q-23 -144 -129 -234t-276 -110q167 -178 459 -536q14 -16 4 -34q-8 -18 -29 -18h-195q-16 0 -25 12q-306 367 -498 571q-9 9 -9 22v127q0 13 9.5 22.5t22.5 9.5h112q132 0 212.5 43t102.5 125h-427q-14 0 -23 9t-9 23v102
q0 14 9 23t23 9h413q-57 113 -268 113h-145q-13 0 -22.5 9.5t-9.5 22.5v133q0 14 9 23t23 9h832q14 0 23 -9t9 -23v-102q0 -14 -9 -23t-23 -9h-233q47 -61 64 -144h171q14 0 23 -9t9 -23z" />
    <glyph glyph-name="jpy" unicode="&#xf157;" horiz-adv-x="1027" 
d="M603 0h-172q-13 0 -22.5 9t-9.5 23v330h-288q-13 0 -22.5 9t-9.5 23v103q0 13 9.5 22.5t22.5 9.5h288v85h-288q-13 0 -22.5 9t-9.5 23v104q0 13 9.5 22.5t22.5 9.5h214l-321 578q-8 16 0 32q10 16 28 16h194q19 0 29 -18l215 -425q19 -38 56 -125q10 24 30.5 68t27.5 61
l191 420q8 19 29 19h191q17 0 27 -16q9 -14 1 -31l-313 -579h215q13 0 22.5 -9.5t9.5 -22.5v-104q0 -14 -9.5 -23t-22.5 -9h-290v-85h290q13 0 22.5 -9.5t9.5 -22.5v-103q0 -14 -9.5 -23t-22.5 -9h-290v-330q0 -13 -9.5 -22.5t-22.5 -9.5z" />
    <glyph glyph-name="rub" unicode="&#xf158;" horiz-adv-x="1280" 
d="M1043 971q0 100 -65 162t-171 62h-320v-448h320q106 0 171 62t65 162zM1280 971q0 -193 -126.5 -315t-326.5 -122h-340v-118h505q14 0 23 -9t9 -23v-128q0 -14 -9 -23t-23 -9h-505v-192q0 -14 -9.5 -23t-22.5 -9h-167q-14 0 -23 9t-9 23v192h-224q-14 0 -23 9t-9 23v128
q0 14 9 23t23 9h224v118h-224q-14 0 -23 9t-9 23v149q0 13 9 22.5t23 9.5h224v629q0 14 9 23t23 9h539q200 0 326.5 -122t126.5 -315z" />
    <glyph glyph-name="krw" unicode="&#xf159;" horiz-adv-x="1792" 
d="M514 341l81 299h-159l75 -300q1 -1 1 -3t1 -3q0 1 0.5 3.5t0.5 3.5zM630 768l35 128h-292l32 -128h225zM822 768h139l-35 128h-70zM1271 340l78 300h-162l81 -299q0 -1 0.5 -3.5t1.5 -3.5q0 1 0.5 3t0.5 3zM1382 768l33 128h-297l34 -128h230zM1792 736v-64q0 -14 -9 -23
t-23 -9h-213l-164 -616q-7 -24 -31 -24h-159q-24 0 -31 24l-166 616h-209l-167 -616q-7 -24 -31 -24h-159q-11 0 -19.5 7t-10.5 17l-160 616h-208q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h175l-33 128h-142q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h109l-89 344q-5 15 5 28
q10 12 26 12h137q26 0 31 -24l90 -360h359l97 360q7 24 31 24h126q24 0 31 -24l98 -360h365l93 360q5 24 31 24h137q16 0 26 -12q10 -13 5 -28l-91 -344h111q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-145l-34 -128h179q14 0 23 -9t9 -23z" />
    <glyph glyph-name="btc" unicode="&#xf15a;" horiz-adv-x="1280" 
d="M1167 896q18 -182 -131 -258q117 -28 175 -103t45 -214q-7 -71 -32.5 -125t-64.5 -89t-97 -58.5t-121.5 -34.5t-145.5 -15v-255h-154v251q-80 0 -122 1v-252h-154v255q-18 0 -54 0.5t-55 0.5h-200l31 183h111q50 0 58 51v402h16q-6 1 -16 1v287q-13 68 -89 68h-111v164
l212 -1q64 0 97 1v252h154v-247q82 2 122 2v245h154v-252q79 -7 140 -22.5t113 -45t82.5 -78t36.5 -114.5zM952 351q0 36 -15 64t-37 46t-57.5 30.5t-65.5 18.5t-74 9t-69 3t-64.5 -1t-47.5 -1v-338q8 0 37 -0.5t48 -0.5t53 1.5t58.5 4t57 8.5t55.5 14t47.5 21t39.5 30
t24.5 40t9.5 51zM881 827q0 33 -12.5 58.5t-30.5 42t-48 28t-55 16.5t-61.5 8t-58 2.5t-54 -1t-39.5 -0.5v-307q5 0 34.5 -0.5t46.5 0t50 2t55 5.5t51.5 11t48.5 18.5t37 27t27 38.5t9 51z" />
    <glyph glyph-name="file" unicode="&#xf15b;" 
d="M1024 1024v472q22 -14 36 -28l408 -408q14 -14 28 -36h-472zM896 992q0 -40 28 -68t68 -28h544v-1056q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h800v-544z" />
    <glyph glyph-name="file_text" unicode="&#xf15c;" 
d="M1468 1060q14 -14 28 -36h-472v472q22 -14 36 -28zM992 896h544v-1056q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h800v-544q0 -40 28 -68t68 -28zM1152 160v64q0 14 -9 23t-23 9h-704q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h704
q14 0 23 9t9 23zM1152 416v64q0 14 -9 23t-23 9h-704q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h704q14 0 23 9t9 23zM1152 672v64q0 14 -9 23t-23 9h-704q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h704q14 0 23 9t9 23z" />
    <glyph glyph-name="sort_by_alphabet" unicode="&#xf15d;" horiz-adv-x="1664" 
d="M1191 1128h177l-72 218l-12 47q-2 16 -2 20h-4l-3 -20q0 -1 -3.5 -18t-7.5 -29zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9t9 -23zM1572 -23
v-233h-584v90l369 529q12 18 21 27l11 9v3q-2 0 -6.5 -0.5t-7.5 -0.5q-12 -3 -30 -3h-232v-115h-120v229h567v-89l-369 -530q-6 -8 -21 -26l-11 -11v-2l14 2q9 2 30 2h248v119h121zM1661 874v-106h-288v106h75l-47 144h-243l-47 -144h75v-106h-287v106h70l230 662h162
l230 -662h70z" />
    <glyph glyph-name="_329" unicode="&#xf15e;" horiz-adv-x="1664" 
d="M1191 104h177l-72 218l-12 47q-2 16 -2 20h-4l-3 -20q0 -1 -3.5 -18t-7.5 -29zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9t9 -23zM1661 -150
v-106h-288v106h75l-47 144h-243l-47 -144h75v-106h-287v106h70l230 662h162l230 -662h70zM1572 1001v-233h-584v90l369 529q12 18 21 27l11 9v3q-2 0 -6.5 -0.5t-7.5 -0.5q-12 -3 -30 -3h-232v-115h-120v229h567v-89l-369 -530q-6 -8 -21 -26l-11 -10v-3l14 3q9 1 30 1h248
v119h121z" />
    <glyph glyph-name="sort_by_attributes" unicode="&#xf160;" horiz-adv-x="1792" 
d="M736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9t9 -23zM1792 -32v-192q0 -14 -9 -23t-23 -9h-832q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h832
q14 0 23 -9t9 -23zM1600 480v-192q0 -14 -9 -23t-23 -9h-640q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h640q14 0 23 -9t9 -23zM1408 992v-192q0 -14 -9 -23t-23 -9h-448q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h448q14 0 23 -9t9 -23zM1216 1504v-192q0 -14 -9 -23t-23 -9h-256
q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h256q14 0 23 -9t9 -23z" />
    <glyph glyph-name="sort_by_attributes_alt" unicode="&#xf161;" horiz-adv-x="1792" 
d="M1216 -32v-192q0 -14 -9 -23t-23 -9h-256q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h256q14 0 23 -9t9 -23zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192
q14 0 23 -9t9 -23zM1408 480v-192q0 -14 -9 -23t-23 -9h-448q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h448q14 0 23 -9t9 -23zM1600 992v-192q0 -14 -9 -23t-23 -9h-640q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h640q14 0 23 -9t9 -23zM1792 1504v-192q0 -14 -9 -23t-23 -9h-832
q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h832q14 0 23 -9t9 -23z" />
    <glyph glyph-name="sort_by_order" unicode="&#xf162;" 
d="M1346 223q0 63 -44 116t-103 53q-52 0 -83 -37t-31 -94t36.5 -95t104.5 -38q50 0 85 27t35 68zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9t9 -23
zM1486 165q0 -62 -13 -121.5t-41 -114t-68 -95.5t-98.5 -65.5t-127.5 -24.5q-62 0 -108 16q-24 8 -42 15l39 113q15 -7 31 -11q37 -13 75 -13q84 0 134.5 58.5t66.5 145.5h-2q-21 -23 -61.5 -37t-84.5 -14q-106 0 -173 71.5t-67 172.5q0 105 72 178t181 73q123 0 205 -94.5
t82 -252.5zM1456 882v-114h-469v114h167v432q0 7 0.5 19t0.5 17v16h-2l-7 -12q-8 -13 -26 -31l-62 -58l-82 86l192 185h123v-654h165z" />
    <glyph glyph-name="sort_by_order_alt" unicode="&#xf163;" 
d="M1346 1247q0 63 -44 116t-103 53q-52 0 -83 -37t-31 -94t36.5 -95t104.5 -38q50 0 85 27t35 68zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9
t9 -23zM1456 -142v-114h-469v114h167v432q0 7 0.5 19t0.5 17v16h-2l-7 -12q-8 -13 -26 -31l-62 -58l-82 86l192 185h123v-654h165zM1486 1189q0 -62 -13 -121.5t-41 -114t-68 -95.5t-98.5 -65.5t-127.5 -24.5q-62 0 -108 16q-24 8 -42 15l39 113q15 -7 31 -11q37 -13 75 -13
q84 0 134.5 58.5t66.5 145.5h-2q-21 -23 -61.5 -37t-84.5 -14q-106 0 -173 71.5t-67 172.5q0 105 72 178t181 73q123 0 205 -94.5t82 -252.5z" />
    <glyph glyph-name="_334" unicode="&#xf164;" horiz-adv-x="1664" 
d="M256 192q0 26 -19 45t-45 19q-27 0 -45.5 -19t-18.5 -45q0 -27 18.5 -45.5t45.5 -18.5q26 0 45 18.5t19 45.5zM416 704v-640q0 -26 -19 -45t-45 -19h-288q-26 0 -45 19t-19 45v640q0 26 19 45t45 19h288q26 0 45 -19t19 -45zM1600 704q0 -86 -55 -149q15 -44 15 -76
q3 -76 -43 -137q17 -56 0 -117q-15 -57 -54 -94q9 -112 -49 -181q-64 -76 -197 -78h-36h-76h-17q-66 0 -144 15.5t-121.5 29t-120.5 39.5q-123 43 -158 44q-26 1 -45 19.5t-19 44.5v641q0 25 18 43.5t43 20.5q24 2 76 59t101 121q68 87 101 120q18 18 31 48t17.5 48.5
t13.5 60.5q7 39 12.5 61t19.5 52t34 50q19 19 45 19q46 0 82.5 -10.5t60 -26t40 -40.5t24 -45t12 -50t5 -45t0.5 -39q0 -38 -9.5 -76t-19 -60t-27.5 -56q-3 -6 -10 -18t-11 -22t-8 -24h277q78 0 135 -57t57 -135z" />
    <glyph glyph-name="_335" unicode="&#xf165;" horiz-adv-x="1664" 
d="M256 960q0 -26 -19 -45t-45 -19q-27 0 -45.5 19t-18.5 45q0 27 18.5 45.5t45.5 18.5q26 0 45 -18.5t19 -45.5zM416 448v640q0 26 -19 45t-45 19h-288q-26 0 -45 -19t-19 -45v-640q0 -26 19 -45t45 -19h288q26 0 45 19t19 45zM1545 597q55 -61 55 -149q-1 -78 -57.5 -135
t-134.5 -57h-277q4 -14 8 -24t11 -22t10 -18q18 -37 27 -57t19 -58.5t10 -76.5q0 -24 -0.5 -39t-5 -45t-12 -50t-24 -45t-40 -40.5t-60 -26t-82.5 -10.5q-26 0 -45 19q-20 20 -34 50t-19.5 52t-12.5 61q-9 42 -13.5 60.5t-17.5 48.5t-31 48q-33 33 -101 120q-49 64 -101 121
t-76 59q-25 2 -43 20.5t-18 43.5v641q0 26 19 44.5t45 19.5q35 1 158 44q77 26 120.5 39.5t121.5 29t144 15.5h17h76h36q133 -2 197 -78q58 -69 49 -181q39 -37 54 -94q17 -61 0 -117q46 -61 43 -137q0 -32 -15 -76z" />
    <glyph glyph-name="youtube_sign" unicode="&#xf166;" 
d="M919 233v157q0 50 -29 50q-17 0 -33 -16v-224q16 -16 33 -16q29 0 29 49zM1103 355h66v34q0 51 -33 51t-33 -51v-34zM532 621v-70h-80v-423h-74v423h-78v70h232zM733 495v-367h-67v40q-39 -45 -76 -45q-33 0 -42 28q-6 17 -6 54v290h66v-270q0 -24 1 -26q1 -15 15 -15
q20 0 42 31v280h67zM985 384v-146q0 -52 -7 -73q-12 -42 -53 -42q-35 0 -68 41v-36h-67v493h67v-161q32 40 68 40q41 0 53 -42q7 -21 7 -74zM1236 255v-9q0 -29 -2 -43q-3 -22 -15 -40q-27 -40 -80 -40q-52 0 -81 38q-21 27 -21 86v129q0 59 20 86q29 38 80 38t78 -38
q21 -29 21 -86v-76h-133v-65q0 -51 34 -51q24 0 30 26q0 1 0.5 7t0.5 16.5v21.5h68zM785 1079v-156q0 -51 -32 -51t-32 51v156q0 52 32 52t32 -52zM1318 366q0 177 -19 260q-10 44 -43 73.5t-76 34.5q-136 15 -412 15q-275 0 -411 -15q-44 -5 -76.5 -34.5t-42.5 -73.5
q-20 -87 -20 -260q0 -176 20 -260q10 -43 42.5 -73t75.5 -35q137 -15 412 -15t412 15q43 5 75.5 35t42.5 73q20 84 20 260zM563 1017l90 296h-75l-51 -195l-53 195h-78q7 -23 23 -69l24 -69q35 -103 46 -158v-201h74v201zM852 936v130q0 58 -21 87q-29 38 -78 38
q-51 0 -78 -38q-21 -29 -21 -87v-130q0 -58 21 -87q27 -38 78 -38q49 0 78 38q21 27 21 87zM1033 816h67v370h-67v-283q-22 -31 -42 -31q-15 0 -16 16q-1 2 -1 26v272h-67v-293q0 -37 6 -55q11 -27 43 -27q36 0 77 45v-40zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5
h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
    <glyph glyph-name="youtube" unicode="&#xf167;" 
d="M971 292v-211q0 -67 -39 -67q-23 0 -45 22v301q22 22 45 22q39 0 39 -67zM1309 291v-46h-90v46q0 68 45 68t45 -68zM343 509h107v94h-312v-94h105v-569h100v569zM631 -60h89v494h-89v-378q-30 -42 -57 -42q-18 0 -21 21q-1 3 -1 35v364h-89v-391q0 -49 8 -73
q12 -37 58 -37q48 0 102 61v-54zM1060 88v197q0 73 -9 99q-17 56 -71 56q-50 0 -93 -54v217h-89v-663h89v48q45 -55 93 -55q54 0 71 55q9 27 9 100zM1398 98v13h-91q0 -51 -2 -61q-7 -36 -40 -36q-46 0 -46 69v87h179v103q0 79 -27 116q-39 51 -106 51q-68 0 -107 -51
q-28 -37 -28 -116v-173q0 -79 29 -116q39 -51 108 -51q72 0 108 53q18 27 21 54q2 9 2 58zM790 1011v210q0 69 -43 69t-43 -69v-210q0 -70 43 -70t43 70zM1509 260q0 -234 -26 -350q-14 -59 -58 -99t-102 -46q-184 -21 -555 -21t-555 21q-58 6 -102.5 46t-57.5 99
q-26 112 -26 350q0 234 26 350q14 59 58 99t103 47q183 20 554 20t555 -20q58 -7 102.5 -47t57.5 -99q26 -112 26 -350zM511 1536h102l-121 -399v-271h-100v271q-14 74 -61 212q-37 103 -65 187h106l71 -263zM881 1203v-175q0 -81 -28 -118q-38 -51 -106 -51q-67 0 -105 51
q-28 38 -28 118v175q0 80 28 117q38 51 105 51q68 0 106 -51q28 -37 28 -117zM1216 1365v-499h-91v55q-53 -62 -103 -62q-46 0 -59 37q-8 24 -8 75v394h91v-367q0 -33 1 -35q3 -22 21 -22q27 0 57 43v381h91z" />
    <glyph glyph-name="xing" unicode="&#xf168;" horiz-adv-x="1408" 
d="M597 869q-10 -18 -257 -456q-27 -46 -65 -46h-239q-21 0 -31 17t0 36l253 448q1 0 0 1l-161 279q-12 22 -1 37q9 15 32 15h239q40 0 66 -45zM1403 1511q11 -16 0 -37l-528 -934v-1l336 -615q11 -20 1 -37q-10 -15 -32 -15h-239q-42 0 -66 45l-339 622q18 32 531 942
q25 45 64 45h241q22 0 31 -15z" />
    <glyph glyph-name="xing_sign" unicode="&#xf169;" 
d="M685 771q0 1 -126 222q-21 34 -52 34h-184q-18 0 -26 -11q-7 -12 1 -29l125 -216v-1l-196 -346q-9 -14 0 -28q8 -13 24 -13h185q31 0 50 36zM1309 1268q-7 12 -24 12h-187q-30 0 -49 -35l-411 -729q1 -2 262 -481q20 -35 52 -35h184q18 0 25 12q8 13 -1 28l-260 476v1
l409 723q8 16 0 28zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
    <glyph glyph-name="youtube_play" unicode="&#xf16a;" horiz-adv-x="1792" 
d="M711 408l484 250l-484 253v-503zM896 1270q168 0 324.5 -4.5t229.5 -9.5l73 -4q1 0 17 -1.5t23 -3t23.5 -4.5t28.5 -8t28 -13t31 -19.5t29 -26.5q6 -6 15.5 -18.5t29 -58.5t26.5 -101q8 -64 12.5 -136.5t5.5 -113.5v-40v-136q1 -145 -18 -290q-7 -55 -25 -99.5t-32 -61.5
l-14 -17q-14 -15 -29 -26.5t-31 -19t-28 -12.5t-28.5 -8t-24 -4.5t-23 -3t-16.5 -1.5q-251 -19 -627 -19q-207 2 -359.5 6.5t-200.5 7.5l-49 4l-36 4q-36 5 -54.5 10t-51 21t-56.5 41q-6 6 -15.5 18.5t-29 58.5t-26.5 101q-8 64 -12.5 136.5t-5.5 113.5v40v136
q-1 145 18 290q7 55 25 99.5t32 61.5l14 17q14 15 29 26.5t31 19.5t28 13t28.5 8t23.5 4.5t23 3t17 1.5q251 18 627 18z" />
    <glyph glyph-name="dropbox" unicode="&#xf16b;" horiz-adv-x="1792" 
d="M402 829l494 -305l-342 -285l-490 319zM1388 274v-108l-490 -293v-1l-1 1l-1 -1v1l-489 293v108l147 -96l342 284v2l1 -1l1 1v-2l343 -284zM554 1418l342 -285l-494 -304l-338 270zM1390 829l338 -271l-489 -319l-343 285zM1239 1418l489 -319l-338 -270l-494 304z" />
    <glyph glyph-name="stackexchange" unicode="&#xf16c;" 
d="M1289 -96h-1118v480h-160v-640h1438v640h-160v-480zM347 428l33 157l783 -165l-33 -156zM450 802l67 146l725 -339l-67 -145zM651 1158l102 123l614 -513l-102 -123zM1048 1536l477 -641l-128 -96l-477 641zM330 65v159h800v-159h-800z" />
    <glyph glyph-name="instagram" unicode="&#xf16d;" 
d="M1024 640q0 106 -75 181t-181 75t-181 -75t-75 -181t75 -181t181 -75t181 75t75 181zM1162 640q0 -164 -115 -279t-279 -115t-279 115t-115 279t115 279t279 115t279 -115t115 -279zM1270 1050q0 -38 -27 -65t-65 -27t-65 27t-27 65t27 65t65 27t65 -27t27 -65zM768 1270
q-7 0 -76.5 0.5t-105.5 0t-96.5 -3t-103 -10t-71.5 -18.5q-50 -20 -88 -58t-58 -88q-11 -29 -18.5 -71.5t-10 -103t-3 -96.5t0 -105.5t0.5 -76.5t-0.5 -76.5t0 -105.5t3 -96.5t10 -103t18.5 -71.5q20 -50 58 -88t88 -58q29 -11 71.5 -18.5t103 -10t96.5 -3t105.5 0t76.5 0.5
t76.5 -0.5t105.5 0t96.5 3t103 10t71.5 18.5q50 20 88 58t58 88q11 29 18.5 71.5t10 103t3 96.5t0 105.5t-0.5 76.5t0.5 76.5t0 105.5t-3 96.5t-10 103t-18.5 71.5q-20 50 -58 88t-88 58q-29 11 -71.5 18.5t-103 10t-96.5 3t-105.5 0t-76.5 -0.5zM1536 640q0 -229 -5 -317
q-10 -208 -124 -322t-322 -124q-88 -5 -317 -5t-317 5q-208 10 -322 124t-124 322q-5 88 -5 317t5 317q10 208 124 322t322 124q88 5 317 5t317 -5q208 -10 322 -124t124 -322q5 -88 5 -317z" />
    <glyph glyph-name="flickr" unicode="&#xf16e;" 
d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960zM698 640q0 88 -62 150t-150 62t-150 -62t-62 -150t62 -150t150 -62t150 62t62 150zM1262 640q0 88 -62 150
t-150 62t-150 -62t-62 -150t62 -150t150 -62t150 62t62 150z" />
    <glyph glyph-name="adn" unicode="&#xf170;" 
d="M768 914l201 -306h-402zM1133 384h94l-459 691l-459 -691h94l104 160h522zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
    <glyph glyph-name="f171" unicode="&#xf171;" horiz-adv-x="1408" 
d="M815 677q8 -63 -50.5 -101t-111.5 -6q-39 17 -53.5 58t-0.5 82t52 58q36 18 72.5 12t64 -35.5t27.5 -67.5zM926 698q-14 107 -113 164t-197 13q-63 -28 -100.5 -88.5t-34.5 -129.5q4 -91 77.5 -155t165.5 -56q91 8 152 84t50 168zM1165 1240q-20 27 -56 44.5t-58 22
t-71 12.5q-291 47 -566 -2q-43 -7 -66 -12t-55 -22t-50 -43q30 -28 76 -45.5t73.5 -22t87.5 -11.5q228 -29 448 -1q63 8 89.5 12t72.5 21.5t75 46.5zM1222 205q-8 -26 -15.5 -76.5t-14 -84t-28.5 -70t-58 -56.5q-86 -48 -189.5 -71.5t-202 -22t-201.5 18.5q-46 8 -81.5 18
t-76.5 27t-73 43.5t-52 61.5q-25 96 -57 292l6 16l18 9q223 -148 506.5 -148t507.5 148q21 -6 24 -23t-5 -45t-8 -37zM1403 1166q-26 -167 -111 -655q-5 -30 -27 -56t-43.5 -40t-54.5 -31q-252 -126 -610 -88q-248 27 -394 139q-15 12 -25.5 26.5t-17 35t-9 34t-6 39.5
t-5.5 35q-9 50 -26.5 150t-28 161.5t-23.5 147.5t-22 158q3 26 17.5 48.5t31.5 37.5t45 30t46 22.5t48 18.5q125 46 313 64q379 37 676 -50q155 -46 215 -122q16 -20 16.5 -51t-5.5 -54z" />
    <glyph glyph-name="bitbucket_sign" unicode="&#xf172;" 
d="M848 666q0 43 -41 66t-77 1q-43 -20 -42.5 -72.5t43.5 -70.5q39 -23 81 4t36 72zM928 682q8 -66 -36 -121t-110 -61t-119 40t-56 113q-2 49 25.5 93t72.5 64q70 31 141.5 -10t81.5 -118zM1100 1073q-20 -21 -53.5 -34t-53 -16t-63.5 -8q-155 -20 -324 0q-44 6 -63 9.5
t-52.5 16t-54.5 32.5q13 19 36 31t40 15.5t47 8.5q198 35 408 1q33 -5 51 -8.5t43 -16t39 -31.5zM1142 327q0 7 5.5 26.5t3 32t-17.5 16.5q-161 -106 -365 -106t-366 106l-12 -6l-5 -12q26 -154 41 -210q47 -81 204 -108q249 -46 428 53q34 19 49 51.5t22.5 85.5t12.5 71z
M1272 1020q9 53 -8 75q-43 55 -155 88q-216 63 -487 36q-132 -12 -226 -46q-38 -15 -59.5 -25t-47 -34t-29.5 -54q8 -68 19 -138t29 -171t24 -137q1 -5 5 -31t7 -36t12 -27t22 -28q105 -80 284 -100q259 -28 440 63q24 13 39.5 23t31 29t19.5 40q48 267 80 473zM1536 1120
v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
    <glyph glyph-name="tumblr" unicode="&#xf173;" horiz-adv-x="1024" 
d="M944 207l80 -237q-23 -35 -111 -66t-177 -32q-104 -2 -190.5 26t-142.5 74t-95 106t-55.5 120t-16.5 118v544h-168v215q72 26 129 69.5t91 90t58 102t34 99t15 88.5q1 5 4.5 8.5t7.5 3.5h244v-424h333v-252h-334v-518q0 -30 6.5 -56t22.5 -52.5t49.5 -41.5t81.5 -14
q78 2 134 29z" />
    <glyph glyph-name="tumblr_sign" unicode="&#xf174;" 
d="M1136 75l-62 183q-44 -22 -103 -22q-36 -1 -62 10.5t-38.5 31.5t-17.5 40.5t-5 43.5v398h257v194h-256v326h-188q-8 0 -9 -10q-5 -44 -17.5 -87t-39 -95t-77 -95t-118.5 -68v-165h130v-418q0 -57 21.5 -115t65 -111t121 -85.5t176.5 -30.5q69 1 136.5 25t85.5 50z
M1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
    <glyph glyph-name="long_arrow_down" unicode="&#xf175;" horiz-adv-x="768" 
d="M765 237q8 -19 -5 -35l-350 -384q-10 -10 -23 -10q-14 0 -24 10l-355 384q-13 16 -5 35q9 19 29 19h224v1248q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1248h224q21 0 29 -19z" />
    <glyph glyph-name="long_arrow_up" unicode="&#xf176;" horiz-adv-x="768" 
d="M765 1043q-9 -19 -29 -19h-224v-1248q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v1248h-224q-21 0 -29 19t5 35l350 384q10 10 23 10q14 0 24 -10l355 -384q13 -16 5 -35z" />
    <glyph glyph-name="long_arrow_left" unicode="&#xf177;" horiz-adv-x="1792" 
d="M1792 736v-192q0 -14 -9 -23t-23 -9h-1248v-224q0 -21 -19 -29t-35 5l-384 350q-10 10 -10 23q0 14 10 24l384 354q16 14 35 6q19 -9 19 -29v-224h1248q14 0 23 -9t9 -23z" />
    <glyph glyph-name="long_arrow_right" unicode="&#xf178;" horiz-adv-x="1792" 
d="M1728 643q0 -14 -10 -24l-384 -354q-16 -14 -35 -6q-19 9 -19 29v224h-1248q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h1248v224q0 21 19 29t35 -5l384 -350q10 -10 10 -23z" />
    <glyph glyph-name="apple" unicode="&#xf179;" horiz-adv-x="1408" 
d="M1393 321q-39 -125 -123 -250q-129 -196 -257 -196q-49 0 -140 32q-86 32 -151 32q-61 0 -142 -33q-81 -34 -132 -34q-152 0 -301 259q-147 261 -147 503q0 228 113 374q113 144 284 144q72 0 177 -30q104 -30 138 -30q45 0 143 34q102 34 173 34q119 0 213 -65
q52 -36 104 -100q-79 -67 -114 -118q-65 -94 -65 -207q0 -124 69 -223t158 -126zM1017 1494q0 -61 -29 -136q-30 -75 -93 -138q-54 -54 -108 -72q-37 -11 -104 -17q3 149 78 257q74 107 250 148q1 -3 2.5 -11t2.5 -11q0 -4 0.5 -10t0.5 -10z" />
    <glyph glyph-name="windows" unicode="&#xf17a;" horiz-adv-x="1664" 
d="M682 530v-651l-682 94v557h682zM682 1273v-659h-682v565zM1664 530v-786l-907 125v661h907zM1664 1408v-794h-907v669z" />
    <glyph glyph-name="android" unicode="&#xf17b;" horiz-adv-x="1408" 
d="M493 1053q16 0 27.5 11.5t11.5 27.5t-11.5 27.5t-27.5 11.5t-27 -11.5t-11 -27.5t11 -27.5t27 -11.5zM915 1053q16 0 27 11.5t11 27.5t-11 27.5t-27 11.5t-27.5 -11.5t-11.5 -27.5t11.5 -27.5t27.5 -11.5zM103 869q42 0 72 -30t30 -72v-430q0 -43 -29.5 -73t-72.5 -30
t-73 30t-30 73v430q0 42 30 72t73 30zM1163 850v-666q0 -46 -32 -78t-77 -32h-75v-227q0 -43 -30 -73t-73 -30t-73 30t-30 73v227h-138v-227q0 -43 -30 -73t-73 -30q-42 0 -72 30t-30 73l-1 227h-74q-46 0 -78 32t-32 78v666h918zM931 1255q107 -55 171 -153.5t64 -215.5
h-925q0 117 64 215.5t172 153.5l-71 131q-7 13 5 20q13 6 20 -6l72 -132q95 42 201 42t201 -42l72 132q7 12 20 6q12 -7 5 -20zM1408 767v-430q0 -43 -30 -73t-73 -30q-42 0 -72 30t-30 73v430q0 43 30 72.5t72 29.5q43 0 73 -29.5t30 -72.5z" />
    <glyph glyph-name="linux" unicode="&#xf17c;" 
d="M663 1125q-11 -1 -15.5 -10.5t-8.5 -9.5q-5 -1 -5 5q0 12 19 15h10zM750 1111q-4 -1 -11.5 6.5t-17.5 4.5q24 11 32 -2q3 -6 -3 -9zM399 684q-4 1 -6 -3t-4.5 -12.5t-5.5 -13.5t-10 -13q-10 -11 -1 -12q4 -1 12.5 7t12.5 18q1 3 2 7t2 6t1.5 4.5t0.5 4v3t-1 2.5t-3 2z
M1254 325q0 18 -55 42q4 15 7.5 27.5t5 26t3 21.5t0.5 22.5t-1 19.5t-3.5 22t-4 20.5t-5 25t-5.5 26.5q-10 48 -47 103t-72 75q24 -20 57 -83q87 -162 54 -278q-11 -40 -50 -42q-31 -4 -38.5 18.5t-8 83.5t-11.5 107q-9 39 -19.5 69t-19.5 45.5t-15.5 24.5t-13 15t-7.5 7
q-14 62 -31 103t-29.5 56t-23.5 33t-15 40q-4 21 6 53.5t4.5 49.5t-44.5 25q-15 3 -44.5 18t-35.5 16q-8 1 -11 26t8 51t36 27q37 3 51 -30t4 -58q-11 -19 -2 -26.5t30 -0.5q13 4 13 36v37q-5 30 -13.5 50t-21 30.5t-23.5 15t-27 7.5q-107 -8 -89 -134q0 -15 -1 -15
q-9 9 -29.5 10.5t-33 -0.5t-15.5 5q1 57 -16 90t-45 34q-27 1 -41.5 -27.5t-16.5 -59.5q-1 -15 3.5 -37t13 -37.5t15.5 -13.5q10 3 16 14q4 9 -7 8q-7 0 -15.5 14.5t-9.5 33.5q-1 22 9 37t34 14q17 0 27 -21t9.5 -39t-1.5 -22q-22 -15 -31 -29q-8 -12 -27.5 -23.5
t-20.5 -12.5q-13 -14 -15.5 -27t7.5 -18q14 -8 25 -19.5t16 -19t18.5 -13t35.5 -6.5q47 -2 102 15q2 1 23 7t34.5 10.5t29.5 13t21 17.5q9 14 20 8q5 -3 6.5 -8.5t-3 -12t-16.5 -9.5q-20 -6 -56.5 -21.5t-45.5 -19.5q-44 -19 -70 -23q-25 -5 -79 2q-10 2 -9 -2t17 -19
q25 -23 67 -22q17 1 36 7t36 14t33.5 17.5t30 17t24.5 12t17.5 2.5t8.5 -11q0 -2 -1 -4.5t-4 -5t-6 -4.5t-8.5 -5t-9 -4.5t-10 -5t-9.5 -4.5q-28 -14 -67.5 -44t-66.5 -43t-49 -1q-21 11 -63 73q-22 31 -25 22q-1 -3 -1 -10q0 -25 -15 -56.5t-29.5 -55.5t-21 -58t11.5 -63
q-23 -6 -62.5 -90t-47.5 -141q-2 -18 -1.5 -69t-5.5 -59q-8 -24 -29 -3q-32 31 -36 94q-2 28 4 56q4 19 -1 18q-2 -1 -4 -5q-36 -65 10 -166q5 -12 25 -28t24 -20q20 -23 104 -90.5t93 -76.5q16 -15 17.5 -38t-14 -43t-45.5 -23q8 -15 29 -44.5t28 -54t7 -70.5q46 24 7 92
q-4 8 -10.5 16t-9.5 12t-2 6q3 5 13 9.5t20 -2.5q46 -52 166 -36q133 15 177 87q23 38 34 30q12 -6 10 -52q-1 -25 -23 -92q-9 -23 -6 -37.5t24 -15.5q3 19 14.5 77t13.5 90q2 21 -6.5 73.5t-7.5 97t23 70.5q15 18 51 18q1 37 34.5 53t72.5 10.5t60 -22.5zM626 1152
q3 17 -2.5 30t-11.5 15q-9 2 -9 -7q2 -5 5 -6q10 0 7 -15q-3 -20 8 -20q3 0 3 3zM1045 955q-2 8 -6.5 11.5t-13 5t-14.5 5.5q-5 3 -9.5 8t-7 8t-5.5 6.5t-4 4t-4 -1.5q-14 -16 7 -43.5t39 -31.5q9 -1 14.5 8t3.5 20zM867 1168q0 11 -5 19.5t-11 12.5t-9 3q-6 0 -8 -2t0 -4
t5 -3q14 -4 18 -31q0 -3 8 2q2 2 2 3zM921 1401q0 2 -2.5 5t-9 7t-9.5 6q-15 15 -24 15q-9 -1 -11.5 -7.5t-1 -13t-0.5 -12.5q-1 -4 -6 -10.5t-6 -9t3 -8.5q4 -3 8 0t11 9t15 9q1 1 9 1t15 2t9 7zM1486 60q20 -12 31 -24.5t12 -24t-2.5 -22.5t-15.5 -22t-23.5 -19.5
t-30 -18.5t-31.5 -16.5t-32 -15.5t-27 -13q-38 -19 -85.5 -56t-75.5 -64q-17 -16 -68 -19.5t-89 14.5q-18 9 -29.5 23.5t-16.5 25.5t-22 19.5t-47 9.5q-44 1 -130 1q-19 0 -57 -1.5t-58 -2.5q-44 -1 -79.5 -15t-53.5 -30t-43.5 -28.5t-53.5 -11.5q-29 1 -111 31t-146 43
q-19 4 -51 9.5t-50 9t-39.5 9.5t-33.5 14.5t-17 19.5q-10 23 7 66.5t18 54.5q1 16 -4 40t-10 42.5t-4.5 36.5t10.5 27q14 12 57 14t60 12q30 18 42 35t12 51q21 -73 -32 -106q-32 -20 -83 -15q-34 3 -43 -10q-13 -15 5 -57q2 -6 8 -18t8.5 -18t4.5 -17t1 -22q0 -15 -17 -49
t-14 -48q3 -17 37 -26q20 -6 84.5 -18.5t99.5 -20.5q24 -6 74 -22t82.5 -23t55.5 -4q43 6 64.5 28t23 48t-7.5 58.5t-19 52t-20 36.5q-121 190 -169 242q-68 74 -113 40q-11 -9 -15 15q-3 16 -2 38q1 29 10 52t24 47t22 42q8 21 26.5 72t29.5 78t30 61t39 54
q110 143 124 195q-12 112 -16 310q-2 90 24 151.5t106 104.5q39 21 104 21q53 1 106 -13.5t89 -41.5q57 -42 91.5 -121.5t29.5 -147.5q-5 -95 30 -214q34 -113 133 -218q55 -59 99.5 -163t59.5 -191q8 -49 5 -84.5t-12 -55.5t-20 -22q-10 -2 -23.5 -19t-27 -35.5
t-40.5 -33.5t-61 -14q-18 1 -31.5 5t-22.5 13.5t-13.5 15.5t-11.5 20.5t-9 19.5q-22 37 -41 30t-28 -49t7 -97q20 -70 1 -195q-10 -65 18 -100.5t73 -33t85 35.5q59 49 89.5 66.5t103.5 42.5q53 18 77 36.5t18.5 34.5t-25 28.5t-51.5 23.5q-33 11 -49.5 48t-15 72.5
t15.5 47.5q1 -31 8 -56.5t14.5 -40.5t20.5 -28.5t21 -19t21.5 -13t16.5 -9.5z" />
    <glyph glyph-name="dribble" unicode="&#xf17d;" 
d="M1024 36q-42 241 -140 498h-2l-2 -1q-16 -6 -43 -16.5t-101 -49t-137 -82t-131 -114.5t-103 -148l-15 11q184 -150 418 -150q132 0 256 52zM839 643q-21 49 -53 111q-311 -93 -673 -93q-1 -7 -1 -21q0 -124 44 -236.5t124 -201.5q50 89 123.5 166.5t142.5 124.5t130.5 81
t99.5 48l37 13q4 1 13 3.5t13 4.5zM732 855q-120 213 -244 378q-138 -65 -234 -186t-128 -272q302 0 606 80zM1416 536q-210 60 -409 29q87 -239 128 -469q111 75 185 189.5t96 250.5zM611 1277q-1 0 -2 -1q1 1 2 1zM1201 1132q-185 164 -433 164q-76 0 -155 -19
q131 -170 246 -382q69 26 130 60.5t96.5 61.5t65.5 57t37.5 40.5zM1424 647q-3 232 -149 410l-1 -1q-9 -12 -19 -24.5t-43.5 -44.5t-71 -60.5t-100 -65t-131.5 -64.5q25 -53 44 -95q2 -5 6.5 -17t7.5 -17q36 5 74.5 7t73.5 2t69 -1.5t64 -4t56.5 -5.5t48 -6.5t36.5 -6
t25 -4.5zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
    <glyph glyph-name="skype" unicode="&#xf17e;" 
d="M1173 473q0 50 -19.5 91.5t-48.5 68.5t-73 49t-82.5 34t-87.5 23l-104 24q-30 7 -44 10.5t-35 11.5t-30 16t-16.5 21t-7.5 30q0 77 144 77q43 0 77 -12t54 -28.5t38 -33.5t40 -29t48 -12q47 0 75.5 32t28.5 77q0 55 -56 99.5t-142 67.5t-182 23q-68 0 -132 -15.5
t-119.5 -47t-89 -87t-33.5 -128.5q0 -61 19 -106.5t56 -75.5t80 -48.5t103 -32.5l146 -36q90 -22 112 -36q32 -20 32 -60q0 -39 -40 -64.5t-105 -25.5q-51 0 -91.5 16t-65 38.5t-45.5 45t-46 38.5t-54 16q-50 0 -75.5 -30t-25.5 -75q0 -92 122 -157.5t291 -65.5
q73 0 140 18.5t122.5 53.5t88.5 93.5t33 131.5zM1536 256q0 -159 -112.5 -271.5t-271.5 -112.5q-130 0 -234 80q-77 -16 -150 -16q-143 0 -273.5 55.5t-225 150t-150 225t-55.5 273.5q0 73 16 150q-80 104 -80 234q0 159 112.5 271.5t271.5 112.5q130 0 234 -80
q77 16 150 16q143 0 273.5 -55.5t225 -150t150 -225t55.5 -273.5q0 -73 -16 -150q80 -104 80 -234z" />
    <glyph glyph-name="foursquare" unicode="&#xf180;" horiz-adv-x="1280" 
d="M1000 1102l37 194q5 23 -9 40t-35 17h-712q-23 0 -38.5 -17t-15.5 -37v-1101q0 -7 6 -1l291 352q23 26 38 33.5t48 7.5h239q22 0 37 14.5t18 29.5q24 130 37 191q4 21 -11.5 40t-36.5 19h-294q-29 0 -48 19t-19 48v42q0 29 19 47.5t48 18.5h346q18 0 35 13.5t20 29.5z
M1227 1324q-15 -73 -53.5 -266.5t-69.5 -350t-35 -173.5q-6 -22 -9 -32.5t-14 -32.5t-24.5 -33t-38.5 -21t-58 -10h-271q-13 0 -22 -10q-8 -9 -426 -494q-22 -25 -58.5 -28.5t-48.5 5.5q-55 22 -55 98v1410q0 55 38 102.5t120 47.5h888q95 0 127 -53t10 -159zM1227 1324
l-158 -790q4 17 35 173.5t69.5 350t53.5 266.5z" />
    <glyph glyph-name="trello" unicode="&#xf181;" 
d="M704 192v1024q0 14 -9 23t-23 9h-480q-14 0 -23 -9t-9 -23v-1024q0 -14 9 -23t23 -9h480q14 0 23 9t9 23zM1376 576v640q0 14 -9 23t-23 9h-480q-14 0 -23 -9t-9 -23v-640q0 -14 9 -23t23 -9h480q14 0 23 9t9 23zM1536 1344v-1408q0 -26 -19 -45t-45 -19h-1408
q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h1408q26 0 45 -19t19 -45z" />
    <glyph glyph-name="female" unicode="&#xf182;" horiz-adv-x="1280" 
d="M1280 480q0 -40 -28 -68t-68 -28q-51 0 -80 43l-227 341h-45v-132l247 -411q9 -15 9 -33q0 -26 -19 -45t-45 -19h-192v-272q0 -46 -33 -79t-79 -33h-160q-46 0 -79 33t-33 79v272h-192q-26 0 -45 19t-19 45q0 18 9 33l247 411v132h-45l-227 -341q-29 -43 -80 -43
q-40 0 -68 28t-28 68q0 29 16 53l256 384q73 107 176 107h384q103 0 176 -107l256 -384q16 -24 16 -53zM864 1280q0 -93 -65.5 -158.5t-158.5 -65.5t-158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5t158.5 -65.5t65.5 -158.5z" />
    <glyph glyph-name="male" unicode="&#xf183;" horiz-adv-x="1024" 
d="M1024 832v-416q0 -40 -28 -68t-68 -28t-68 28t-28 68v352h-64v-912q0 -46 -33 -79t-79 -33t-79 33t-33 79v464h-64v-464q0 -46 -33 -79t-79 -33t-79 33t-33 79v912h-64v-352q0 -40 -28 -68t-68 -28t-68 28t-28 68v416q0 80 56 136t136 56h640q80 0 136 -56t56 -136z
M736 1280q0 -93 -65.5 -158.5t-158.5 -65.5t-158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5t158.5 -65.5t65.5 -158.5z" />
    <glyph glyph-name="gittip" unicode="&#xf184;" 
d="M773 234l350 473q16 22 24.5 59t-6 85t-61.5 79q-40 26 -83 25.5t-73.5 -17.5t-54.5 -45q-36 -40 -96 -40q-59 0 -95 40q-24 28 -54.5 45t-73.5 17.5t-84 -25.5q-46 -31 -60.5 -79t-6 -85t24.5 -59zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103
t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
    <glyph glyph-name="sun" unicode="&#xf185;" horiz-adv-x="1792" 
d="M1472 640q0 117 -45.5 223.5t-123 184t-184 123t-223.5 45.5t-223.5 -45.5t-184 -123t-123 -184t-45.5 -223.5t45.5 -223.5t123 -184t184 -123t223.5 -45.5t223.5 45.5t184 123t123 184t45.5 223.5zM1748 363q-4 -15 -20 -20l-292 -96v-306q0 -16 -13 -26q-15 -10 -29 -4
l-292 94l-180 -248q-10 -13 -26 -13t-26 13l-180 248l-292 -94q-14 -6 -29 4q-13 10 -13 26v306l-292 96q-16 5 -20 20q-5 17 4 29l180 248l-180 248q-9 13 -4 29q4 15 20 20l292 96v306q0 16 13 26q15 10 29 4l292 -94l180 248q9 12 26 12t26 -12l180 -248l292 94
q14 6 29 -4q13 -10 13 -26v-306l292 -96q16 -5 20 -20q5 -16 -4 -29l-180 -248l180 -248q9 -12 4 -29z" />
    <glyph glyph-name="_366" unicode="&#xf186;" 
d="M1262 233q-54 -9 -110 -9q-182 0 -337 90t-245 245t-90 337q0 192 104 357q-201 -60 -328.5 -229t-127.5 -384q0 -130 51 -248.5t136.5 -204t204 -136.5t248.5 -51q144 0 273.5 61.5t220.5 171.5zM1465 318q-94 -203 -283.5 -324.5t-413.5 -121.5q-156 0 -298 61
t-245 164t-164 245t-61 298q0 153 57.5 292.5t156 241.5t235.5 164.5t290 68.5q44 2 61 -39q18 -41 -15 -72q-86 -78 -131.5 -181.5t-45.5 -218.5q0 -148 73 -273t198 -198t273 -73q118 0 228 51q41 18 72 -13q14 -14 17.5 -34t-4.5 -38z" />
    <glyph glyph-name="archive" unicode="&#xf187;" horiz-adv-x="1792" 
d="M1088 704q0 26 -19 45t-45 19h-256q-26 0 -45 -19t-19 -45t19 -45t45 -19h256q26 0 45 19t19 45zM1664 896v-960q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v960q0 26 19 45t45 19h1408q26 0 45 -19t19 -45zM1728 1344v-256q0 -26 -19 -45t-45 -19h-1536
q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h1536q26 0 45 -19t19 -45z" />
    <glyph glyph-name="bug" unicode="&#xf188;" horiz-adv-x="1664" 
d="M1632 576q0 -26 -19 -45t-45 -19h-224q0 -171 -67 -290l208 -209q19 -19 19 -45t-19 -45q-18 -19 -45 -19t-45 19l-198 197q-5 -5 -15 -13t-42 -28.5t-65 -36.5t-82 -29t-97 -13v896h-128v-896q-51 0 -101.5 13.5t-87 33t-66 39t-43.5 32.5l-15 14l-183 -207
q-20 -21 -48 -21q-24 0 -43 16q-19 18 -20.5 44.5t15.5 46.5l202 227q-58 114 -58 274h-224q-26 0 -45 19t-19 45t19 45t45 19h224v294l-173 173q-19 19 -19 45t19 45t45 19t45 -19l173 -173h844l173 173q19 19 45 19t45 -19t19 -45t-19 -45l-173 -173v-294h224q26 0 45 -19
t19 -45zM1152 1152h-640q0 133 93.5 226.5t226.5 93.5t226.5 -93.5t93.5 -226.5z" />
    <glyph glyph-name="vk" unicode="&#xf189;" horiz-adv-x="1920" 
d="M1917 1016q23 -64 -150 -294q-24 -32 -65 -85q-40 -51 -55 -72t-30.5 -49.5t-12 -42t13 -34.5t32.5 -43t57 -53q4 -2 5 -4q141 -131 191 -221q3 -5 6.5 -12.5t7 -26.5t-0.5 -34t-25 -27.5t-59 -12.5l-256 -4q-24 -5 -56 5t-52 22l-20 12q-30 21 -70 64t-68.5 77.5t-61 58
t-56.5 15.5q-3 -1 -8 -3.5t-17 -14.5t-21.5 -29.5t-17 -52t-6.5 -77.5q0 -15 -3.5 -27.5t-7.5 -18.5l-4 -5q-18 -19 -53 -22h-115q-71 -4 -146 16.5t-131.5 53t-103 66t-70.5 57.5l-25 24q-10 10 -27.5 30t-71.5 91t-106 151t-122.5 211t-130.5 272q-6 16 -6 27t3 16l4 6
q15 19 57 19l274 2q12 -2 23 -6.5t16 -8.5l5 -3q16 -11 24 -32q20 -50 46 -103.5t41 -81.5l16 -29q29 -60 56 -104t48.5 -68.5t41.5 -38.5t34 -14t27 5q2 1 5 5t12 22t13.5 47t9.5 81t0 125q-2 40 -9 73t-14 46l-6 12q-25 34 -85 43q-13 2 5 24q16 19 38 30q53 26 239 24
q82 -1 135 -13q20 -5 33.5 -13.5t20.5 -24t10.5 -32t3.5 -45.5t-1 -55t-2.5 -70.5t-1.5 -82.5q0 -11 -1 -42t-0.5 -48t3.5 -40.5t11.5 -39t22.5 -24.5q8 -2 17 -4t26 11t38 34.5t52 67t68 107.5q60 104 107 225q4 10 10 17.5t11 10.5l4 3l5 2.5t13 3t20 0.5l288 2
q39 5 64 -2.5t31 -16.5z" />
    <glyph glyph-name="weibo" unicode="&#xf18a;" horiz-adv-x="1792" 
d="M675 252q21 34 11 69t-45 50q-34 14 -73 1t-60 -46q-22 -34 -13 -68.5t43 -50.5t74.5 -2.5t62.5 47.5zM769 373q8 13 3.5 26.5t-17.5 18.5q-14 5 -28.5 -0.5t-21.5 -18.5q-17 -31 13 -45q14 -5 29 0.5t22 18.5zM943 266q-45 -102 -158 -150t-224 -12
q-107 34 -147.5 126.5t6.5 187.5q47 93 151.5 139t210.5 19q111 -29 158.5 -119.5t2.5 -190.5zM1255 426q-9 96 -89 170t-208.5 109t-274.5 21q-223 -23 -369.5 -141.5t-132.5 -264.5q9 -96 89 -170t208.5 -109t274.5 -21q223 23 369.5 141.5t132.5 264.5zM1563 422
q0 -68 -37 -139.5t-109 -137t-168.5 -117.5t-226 -83t-270.5 -31t-275 33.5t-240.5 93t-171.5 151t-65 199.5q0 115 69.5 245t197.5 258q169 169 341.5 236t246.5 -7q65 -64 20 -209q-4 -14 -1 -20t10 -7t14.5 0.5t13.5 3.5l6 2q139 59 246 59t153 -61q45 -63 0 -178
q-2 -13 -4.5 -20t4.5 -12.5t12 -7.5t17 -6q57 -18 103 -47t80 -81.5t34 -116.5zM1489 1046q42 -47 54.5 -108.5t-6.5 -117.5q-8 -23 -29.5 -34t-44.5 -4q-23 8 -34 29.5t-4 44.5q20 63 -24 111t-107 35q-24 -5 -45 8t-25 37q-5 24 8 44.5t37 25.5q60 13 119 -5.5t101 -65.5z
M1670 1209q87 -96 112.5 -222.5t-13.5 -241.5q-9 -27 -34 -40t-52 -4t-40 34t-5 52q28 82 10 172t-80 158q-62 69 -148 95.5t-173 8.5q-28 -6 -52 9.5t-30 43.5t9.5 51.5t43.5 29.5q123 26 244 -11.5t208 -134.5z" />
    <glyph glyph-name="renren" unicode="&#xf18b;" 
d="M1133 -34q-171 -94 -368 -94q-196 0 -367 94q138 87 235.5 211t131.5 268q35 -144 132.5 -268t235.5 -211zM638 1394v-485q0 -252 -126.5 -459.5t-330.5 -306.5q-181 215 -181 495q0 187 83.5 349.5t229.5 269.5t325 137zM1536 638q0 -280 -181 -495
q-204 99 -330.5 306.5t-126.5 459.5v485q179 -30 325 -137t229.5 -269.5t83.5 -349.5z" />
    <glyph glyph-name="_372" unicode="&#xf18c;" horiz-adv-x="1408" 
d="M1402 433q-32 -80 -76 -138t-91 -88.5t-99 -46.5t-101.5 -14.5t-96.5 8.5t-86.5 22t-69.5 27.5t-46 22.5l-17 10q-113 -228 -289.5 -359.5t-384.5 -132.5q-19 0 -32 13t-13 32t13 31.5t32 12.5q173 1 322.5 107.5t251.5 294.5q-36 -14 -72 -23t-83 -13t-91 2.5t-93 28.5
t-92 59t-84.5 100t-74.5 146q114 47 214 57t167.5 -7.5t124.5 -56.5t88.5 -77t56.5 -82q53 131 79 291q-7 -1 -18 -2.5t-46.5 -2.5t-69.5 0.5t-81.5 10t-88.5 23t-84 42.5t-75 65t-54.5 94.5t-28.5 127.5q70 28 133.5 36.5t112.5 -1t92 -30t73.5 -50t56 -61t42 -63t27.5 -56
t16 -39.5l4 -16q12 122 12 195q-8 6 -21.5 16t-49 44.5t-63.5 71.5t-54 93t-33 112.5t12 127t70 138.5q73 -25 127.5 -61.5t84.5 -76.5t48 -85t20.5 -89t-0.5 -85.5t-13 -76.5t-19 -62t-17 -42l-7 -15q1 -4 1 -50t-1 -72q3 7 10 18.5t30.5 43t50.5 58t71 55.5t91.5 44.5
t112 14.5t132.5 -24q-2 -78 -21.5 -141.5t-50 -104.5t-69.5 -71.5t-81.5 -45.5t-84.5 -24t-80 -9.5t-67.5 1t-46.5 4.5l-17 3q-23 -147 -73 -283q6 7 18 18.5t49.5 41t77.5 52.5t99.5 42t117.5 20t129 -23.5t137 -77.5z" />
    <glyph glyph-name="stack_exchange" unicode="&#xf18d;" horiz-adv-x="1280" 
d="M1259 283v-66q0 -85 -57.5 -144.5t-138.5 -59.5h-57l-260 -269v269h-529q-81 0 -138.5 59.5t-57.5 144.5v66h1238zM1259 609v-255h-1238v255h1238zM1259 937v-255h-1238v255h1238zM1259 1077v-67h-1238v67q0 84 57.5 143.5t138.5 59.5h846q81 0 138.5 -59.5t57.5 -143.5z
" />
    <glyph glyph-name="_374" unicode="&#xf18e;" 
d="M1152 640q0 -14 -9 -23l-320 -320q-9 -9 -23 -9q-13 0 -22.5 9.5t-9.5 22.5v192h-352q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h352v192q0 14 9 23t23 9q12 0 24 -10l319 -319q9 -9 9 -23zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198
t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
    <glyph glyph-name="arrow_circle_alt_left" unicode="&#xf190;" 
d="M1152 736v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-352v-192q0 -14 -9 -23t-23 -9q-12 0 -24 10l-319 319q-9 9 -9 23t9 23l320 320q9 9 23 9q13 0 22.5 -9.5t9.5 -22.5v-192h352q13 0 22.5 -9.5t9.5 -22.5zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198
t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
    <glyph glyph-name="_376" unicode="&#xf191;" 
d="M1024 960v-640q0 -26 -19 -45t-45 -19q-20 0 -37 12l-448 320q-27 19 -27 52t27 52l448 320q17 12 37 12q26 0 45 -19t19 -45zM1280 160v960q0 13 -9.5 22.5t-22.5 9.5h-960q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h960q13 0 22.5 9.5t9.5 22.5z
M1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
    <glyph glyph-name="dot_circle_alt" unicode="&#xf192;" 
d="M1024 640q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75t75 -181zM768 1184q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273t-73 273t-198 198t-273 73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5
t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
    <glyph glyph-name="_378" unicode="&#xf193;" horiz-adv-x="1664" 
d="M1023 349l102 -204q-58 -179 -210 -290t-339 -111q-156 0 -288.5 77.5t-210 210t-77.5 288.5q0 181 104.5 330t274.5 211l17 -131q-122 -54 -195 -165.5t-73 -244.5q0 -185 131.5 -316.5t316.5 -131.5q126 0 232.5 65t165 175.5t49.5 236.5zM1571 249l58 -114l-256 -128
q-13 -7 -29 -7q-40 0 -57 35l-239 477h-472q-24 0 -42.5 16.5t-21.5 40.5l-96 779q-2 17 6 42q14 51 57 82.5t97 31.5q66 0 113 -47t47 -113q0 -69 -52 -117.5t-120 -41.5l37 -289h423v-128h-407l16 -128h455q40 0 57 -35l228 -455z" />
    <glyph glyph-name="vimeo_square" unicode="&#xf194;" 
d="M1292 898q10 216 -161 222q-231 8 -312 -261q44 19 82 19q85 0 74 -96q-4 -57 -74 -167t-105 -110q-43 0 -82 169q-13 54 -45 255q-30 189 -160 177q-59 -7 -164 -100l-81 -72l-81 -72l52 -67q76 52 87 52q57 0 107 -179q15 -55 45 -164.5t45 -164.5q68 -179 164 -179
q157 0 383 294q220 283 226 444zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
    <glyph glyph-name="_380" unicode="&#xf195;" horiz-adv-x="1152" 
d="M1152 704q0 -191 -94.5 -353t-256.5 -256.5t-353 -94.5h-160q-14 0 -23 9t-9 23v611l-215 -66q-3 -1 -9 -1q-10 0 -19 6q-13 10 -13 26v128q0 23 23 31l233 71v93l-215 -66q-3 -1 -9 -1q-10 0 -19 6q-13 10 -13 26v128q0 23 23 31l233 71v250q0 14 9 23t23 9h160
q14 0 23 -9t9 -23v-181l375 116q15 5 28 -5t13 -26v-128q0 -23 -23 -31l-393 -121v-93l375 116q15 5 28 -5t13 -26v-128q0 -23 -23 -31l-393 -121v-487q188 13 318 151t130 328q0 14 9 23t23 9h160q14 0 23 -9t9 -23z" />
    <glyph glyph-name="plus_square_o" unicode="&#xf196;" horiz-adv-x="1408" 
d="M1152 736v-64q0 -14 -9 -23t-23 -9h-352v-352q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v352h-352q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h352v352q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-352h352q14 0 23 -9t9 -23zM1280 288v832q0 66 -47 113t-113 47h-832
q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113zM1408 1120v-832q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832q119 0 203.5 -84.5t84.5 -203.5z" />
    <glyph glyph-name="_382" unicode="&#xf197;" horiz-adv-x="2176" 
d="M620 416q-110 -64 -268 -64h-128v64h-64q-13 0 -22.5 23.5t-9.5 56.5q0 24 7 49q-58 2 -96.5 10.5t-38.5 20.5t38.5 20.5t96.5 10.5q-7 25 -7 49q0 33 9.5 56.5t22.5 23.5h64v64h128q158 0 268 -64h1113q42 -7 106.5 -18t80.5 -14q89 -15 150 -40.5t83.5 -47.5t22.5 -40
t-22.5 -40t-83.5 -47.5t-150 -40.5q-16 -3 -80.5 -14t-106.5 -18h-1113zM1739 668q53 -36 53 -92t-53 -92l81 -30q68 48 68 122t-68 122zM625 400h1015q-217 -38 -456 -80q-57 0 -113 -24t-83 -48l-28 -24l-288 -288q-26 -26 -70.5 -45t-89.5 -19h-96l-93 464h29
q157 0 273 64zM352 816h-29l93 464h96q46 0 90 -19t70 -45l288 -288q4 -4 11 -10.5t30.5 -23t48.5 -29t61.5 -23t72.5 -10.5l456 -80h-1015q-116 64 -273 64z" />
    <glyph glyph-name="_383" unicode="&#xf198;" horiz-adv-x="1664" 
d="M1519 760q62 0 103.5 -40.5t41.5 -101.5q0 -97 -93 -130l-172 -59l56 -167q7 -21 7 -47q0 -59 -42 -102t-101 -43q-47 0 -85.5 27t-53.5 72l-55 165l-310 -106l55 -164q8 -24 8 -47q0 -59 -42 -102t-102 -43q-47 0 -85 27t-53 72l-55 163l-153 -53q-29 -9 -50 -9
q-61 0 -101.5 40t-40.5 101q0 47 27.5 85t71.5 53l156 53l-105 313l-156 -54q-26 -8 -48 -8q-60 0 -101 40.5t-41 100.5q0 47 27.5 85t71.5 53l157 53l-53 159q-8 24 -8 47q0 60 42 102.5t102 42.5q47 0 85 -27t53 -72l54 -160l310 105l-54 160q-8 24 -8 47q0 59 42.5 102
t101.5 43q47 0 85.5 -27.5t53.5 -71.5l53 -161l162 55q21 6 43 6q60 0 102.5 -39.5t42.5 -98.5q0 -45 -30 -81.5t-74 -51.5l-157 -54l105 -316l164 56q24 8 46 8zM725 498l310 105l-105 315l-310 -107z" />
    <glyph glyph-name="_384" unicode="&#xf199;" 
d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960zM1280 352v436q-31 -35 -64 -55q-34 -22 -132.5 -85t-151.5 -99q-98 -69 -164 -69v0v0q-66 0 -164 69
q-47 32 -142 92.5t-142 92.5q-12 8 -33 27t-31 27v-436q0 -40 28 -68t68 -28h832q40 0 68 28t28 68zM1280 925q0 41 -27.5 70t-68.5 29h-832q-40 0 -68 -28t-28 -68q0 -37 30.5 -76.5t67.5 -64.5q47 -32 137.5 -89t129.5 -83q3 -2 17 -11.5t21 -14t21 -13t23.5 -13
t21.5 -9.5t22.5 -7.5t20.5 -2.5t20.5 2.5t22.5 7.5t21.5 9.5t23.5 13t21 13t21 14t17 11.5l267 174q35 23 66.5 62.5t31.5 73.5z" />
    <glyph glyph-name="_385" unicode="&#xf19a;" horiz-adv-x="1792" 
d="M127 640q0 163 67 313l367 -1005q-196 95 -315 281t-119 411zM1415 679q0 -19 -2.5 -38.5t-10 -49.5t-11.5 -44t-17.5 -59t-17.5 -58l-76 -256l-278 826q46 3 88 8q19 2 26 18.5t-2.5 31t-28.5 13.5l-205 -10q-75 1 -202 10q-12 1 -20.5 -5t-11.5 -15t-1.5 -18.5t9 -16.5
t19.5 -8l80 -8l120 -328l-168 -504l-280 832q46 3 88 8q19 2 26 18.5t-2.5 31t-28.5 13.5l-205 -10q-7 0 -23 0.5t-26 0.5q105 160 274.5 253.5t367.5 93.5q147 0 280.5 -53t238.5 -149h-10q-55 0 -92 -40.5t-37 -95.5q0 -12 2 -24t4 -21.5t8 -23t9 -21t12 -22.5t12.5 -21
t14.5 -24t14 -23q63 -107 63 -212zM909 573l237 -647q1 -6 5 -11q-126 -44 -255 -44q-112 0 -217 32zM1570 1009q95 -174 95 -369q0 -209 -104 -385.5t-279 -278.5l235 678q59 169 59 276q0 42 -6 79zM896 1536q182 0 348 -71t286 -191t191 -286t71 -348t-71 -348t-191 -286
t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71zM896 -215q173 0 331.5 68t273 182.5t182.5 273t68 331.5t-68 331.5t-182.5 273t-273 182.5t-331.5 68t-331.5 -68t-273 -182.5t-182.5 -273t-68 -331.5t68 -331.5t182.5 -273
t273 -182.5t331.5 -68z" />
    <glyph glyph-name="_386" unicode="&#xf19b;" horiz-adv-x="1792" 
d="M1086 1536v-1536l-272 -128q-228 20 -414 102t-293 208.5t-107 272.5q0 140 100.5 263.5t275 205.5t391.5 108v-172q-217 -38 -356.5 -150t-139.5 -255q0 -152 154.5 -267t388.5 -145v1360zM1755 954l37 -390l-525 114l147 83q-119 70 -280 99v172q277 -33 481 -157z" />
    <glyph glyph-name="_387" unicode="&#xf19c;" horiz-adv-x="2048" 
d="M960 1536l960 -384v-128h-128q0 -26 -20.5 -45t-48.5 -19h-1526q-28 0 -48.5 19t-20.5 45h-128v128zM256 896h256v-768h128v768h256v-768h128v768h256v-768h128v768h256v-768h59q28 0 48.5 -19t20.5 -45v-64h-1664v64q0 26 20.5 45t48.5 19h59v768zM1851 -64
q28 0 48.5 -19t20.5 -45v-128h-1920v128q0 26 20.5 45t48.5 19h1782z" />
    <glyph glyph-name="_388" unicode="&#xf19d;" horiz-adv-x="2304" 
d="M1774 700l18 -316q4 -69 -82 -128t-235 -93.5t-323 -34.5t-323 34.5t-235 93.5t-82 128l18 316l574 -181q22 -7 48 -7t48 7zM2304 1024q0 -23 -22 -31l-1120 -352q-4 -1 -10 -1t-10 1l-652 206q-43 -34 -71 -111.5t-34 -178.5q63 -36 63 -109q0 -69 -58 -107l58 -433
q2 -14 -8 -25q-9 -11 -24 -11h-192q-15 0 -24 11q-10 11 -8 25l58 433q-58 38 -58 107q0 73 65 111q11 207 98 330l-333 104q-22 8 -22 31t22 31l1120 352q4 1 10 1t10 -1l1120 -352q22 -8 22 -31z" />
    <glyph glyph-name="_389" unicode="&#xf19e;" 
d="M859 579l13 -707q-62 11 -105 11q-41 0 -105 -11l13 707q-40 69 -168.5 295.5t-216.5 374.5t-181 287q58 -15 108 -15q44 0 111 15q63 -111 133.5 -229.5t167 -276.5t138.5 -227q37 61 109.5 177.5t117.5 190t105 176t107 189.5q54 -14 107 -14q56 0 114 14v0
q-28 -39 -60 -88.5t-49.5 -78.5t-56.5 -96t-49 -84q-146 -248 -353 -610z" />
    <glyph glyph-name="uniF1A0" unicode="&#xf1a0;" 
d="M768 750h725q12 -67 12 -128q0 -217 -91 -387.5t-259.5 -266.5t-386.5 -96q-157 0 -299 60.5t-245 163.5t-163.5 245t-60.5 299t60.5 299t163.5 245t245 163.5t299 60.5q300 0 515 -201l-209 -201q-123 119 -306 119q-129 0 -238.5 -65t-173.5 -176.5t-64 -243.5
t64 -243.5t173.5 -176.5t238.5 -65q87 0 160 24t120 60t82 82t51.5 87t22.5 78h-436v264z" />
    <glyph glyph-name="f1a1" unicode="&#xf1a1;" horiz-adv-x="1792" 
d="M1095 369q16 -16 0 -31q-62 -62 -199 -62t-199 62q-16 15 0 31q6 6 15 6t15 -6q48 -49 169 -49q120 0 169 49q6 6 15 6t15 -6zM788 550q0 -37 -26 -63t-63 -26t-63.5 26t-26.5 63q0 38 26.5 64t63.5 26t63 -26.5t26 -63.5zM1183 550q0 -37 -26.5 -63t-63.5 -26t-63 26
t-26 63t26 63.5t63 26.5t63.5 -26t26.5 -64zM1434 670q0 49 -35 84t-85 35t-86 -36q-130 90 -311 96l63 283l200 -45q0 -37 26 -63t63 -26t63.5 26.5t26.5 63.5t-26.5 63.5t-63.5 26.5q-54 0 -80 -50l-221 49q-19 5 -25 -16l-69 -312q-180 -7 -309 -97q-35 37 -87 37
q-50 0 -85 -35t-35 -84q0 -35 18.5 -64t49.5 -44q-6 -27 -6 -56q0 -142 140 -243t337 -101q198 0 338 101t140 243q0 32 -7 57q30 15 48 43.5t18 63.5zM1792 640q0 -182 -71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191
t348 71t348 -71t286 -191t191 -286t71 -348z" />
    <glyph glyph-name="_392" unicode="&#xf1a2;" 
d="M939 407q13 -13 0 -26q-53 -53 -171 -53t-171 53q-13 13 0 26q5 6 13 6t13 -6q42 -42 145 -42t145 42q5 6 13 6t13 -6zM676 563q0 -31 -23 -54t-54 -23t-54 23t-23 54q0 32 22.5 54.5t54.5 22.5t54.5 -22.5t22.5 -54.5zM1014 563q0 -31 -23 -54t-54 -23t-54 23t-23 54
q0 32 22.5 54.5t54.5 22.5t54.5 -22.5t22.5 -54.5zM1229 666q0 42 -30 72t-73 30q-42 0 -73 -31q-113 78 -267 82l54 243l171 -39q1 -32 23.5 -54t53.5 -22q32 0 54.5 22.5t22.5 54.5t-22.5 54.5t-54.5 22.5q-48 0 -69 -43l-189 42q-17 5 -21 -13l-60 -268q-154 -6 -265 -83
q-30 32 -74 32q-43 0 -73 -30t-30 -72q0 -30 16 -55t42 -38q-5 -25 -5 -48q0 -122 120 -208.5t289 -86.5q170 0 290 86.5t120 208.5q0 25 -6 49q25 13 40.5 37.5t15.5 54.5zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960
q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
    <glyph glyph-name="_393" unicode="&#xf1a3;" 
d="M866 697l90 27v62q0 79 -58 135t-138 56t-138 -55.5t-58 -134.5v-283q0 -20 -14 -33.5t-33 -13.5t-32.5 13.5t-13.5 33.5v120h-151v-122q0 -82 57.5 -139t139.5 -57q81 0 138.5 56.5t57.5 136.5v280q0 19 13.5 33t33.5 14q19 0 32.5 -14t13.5 -33v-54zM1199 502v122h-150
v-126q0 -20 -13.5 -33.5t-33.5 -13.5q-19 0 -32.5 14t-13.5 33v123l-90 -26l-60 28v-123q0 -80 58 -137t139 -57t138.5 57t57.5 139zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103
t385.5 -103t279.5 -279.5t103 -385.5z" />
    <glyph glyph-name="f1a4" unicode="&#xf1a4;" horiz-adv-x="1920" 
d="M1062 824v118q0 42 -30 72t-72 30t-72 -30t-30 -72v-612q0 -175 -126 -299t-303 -124q-178 0 -303.5 125.5t-125.5 303.5v266h328v-262q0 -43 30 -72.5t72 -29.5t72 29.5t30 72.5v620q0 171 126.5 292t301.5 121q176 0 302 -122t126 -294v-136l-195 -58zM1592 602h328
v-266q0 -178 -125.5 -303.5t-303.5 -125.5q-177 0 -303 124.5t-126 300.5v268l131 -61l195 58v-270q0 -42 30 -71.5t72 -29.5t72 29.5t30 71.5v275z" />
    <glyph glyph-name="_395" unicode="&#xf1a5;" 
d="M1472 160v480h-704v704h-480q-93 0 -158.5 -65.5t-65.5 -158.5v-480h704v-704h480q93 0 158.5 65.5t65.5 158.5zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5
t84.5 -203.5z" />
    <glyph glyph-name="_396" unicode="&#xf1a6;" horiz-adv-x="2048" 
d="M328 1254h204v-983h-532v697h328v286zM328 435v369h-123v-369h123zM614 968v-697h205v697h-205zM614 1254v-204h205v204h-205zM901 968h533v-942h-533v163h328v82h-328v697zM1229 435v369h-123v-369h123zM1516 968h532v-942h-532v163h327v82h-327v697zM1843 435v369h-123
v-369h123z" />
    <glyph glyph-name="_397" unicode="&#xf1a7;" 
d="M1046 516q0 -64 -38 -109t-91 -45q-43 0 -70 15v277q28 17 70 17q53 0 91 -45.5t38 -109.5zM703 944q0 -64 -38 -109.5t-91 -45.5q-43 0 -70 15v277q28 17 70 17q53 0 91 -45t38 -109zM1265 513q0 134 -88 229t-213 95q-20 0 -39 -3q-23 -78 -78 -136q-87 -95 -211 -101
v-636l211 41v206q51 -19 117 -19q125 0 213 95t88 229zM922 940q0 134 -88.5 229t-213.5 95q-74 0 -141 -36h-186v-840l211 41v206q55 -19 116 -19q125 0 213.5 95t88.5 229zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960
q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
    <glyph glyph-name="_398" unicode="&#xf1a8;" horiz-adv-x="2038" 
d="M1222 607q75 3 143.5 -20.5t118 -58.5t101 -94.5t84 -108t75.5 -120.5q33 -56 78.5 -109t75.5 -80.5t99 -88.5q-48 -30 -108.5 -57.5t-138.5 -59t-114 -47.5q-44 37 -74 115t-43.5 164.5t-33 180.5t-42.5 168.5t-72.5 123t-122.5 48.5l-10 -2l-6 -4q4 -5 13 -14
q6 -5 28 -23.5t25.5 -22t19 -18t18 -20.5t11.5 -21t10.5 -27.5t4.5 -31t4 -40.5l1 -33q1 -26 -2.5 -57.5t-7.5 -52t-12.5 -58.5t-11.5 -53q-35 1 -101 -9.5t-98 -10.5q-39 0 -72 10q-2 16 -2 47q0 74 3 96q2 13 31.5 41.5t57 59t26.5 51.5q-24 2 -43 -24
q-36 -53 -111.5 -99.5t-136.5 -46.5q-25 0 -75.5 63t-106.5 139.5t-84 96.5q-6 4 -27 30q-482 -112 -513 -112q-16 0 -28 11t-12 27q0 15 8.5 26.5t22.5 14.5l486 106q-8 14 -8 25t5.5 17.5t16 11.5t20 7t23 4.5t18.5 4.5q4 1 15.5 7.5t17.5 6.5q15 0 28 -16t20 -33
q163 37 172 37q17 0 29.5 -11t12.5 -28q0 -15 -8.5 -26t-23.5 -14l-182 -40l-1 -16q-1 -26 81.5 -117.5t104.5 -91.5q47 0 119 80t72 129q0 36 -23.5 53t-51 18.5t-51 11.5t-23.5 34q0 16 10 34l-68 19q43 44 43 117q0 26 -5 58q82 16 144 16q44 0 71.5 -1.5t48.5 -8.5
t31 -13.5t20.5 -24.5t15.5 -33.5t17 -47.5t24 -60l50 25q-3 -40 -23 -60t-42.5 -21t-40 -6.5t-16.5 -20.5zM1282 842q-5 5 -13.5 15.5t-12 14.5t-10.5 11.5t-10 10.5l-8 8t-8.5 7.5t-8 5t-8.5 4.5q-7 3 -14.5 5t-20.5 2.5t-22 0.5h-32.5h-37.5q-126 0 -217 -43
q16 30 36 46.5t54 29.5t65.5 36t46 36.5t50 55t43.5 50.5q12 -9 28 -31.5t32 -36.5t38 -13l12 1v-76l22 -1q247 95 371 190q28 21 50 39t42.5 37.5t33 31t29.5 34t24 31t24.5 37t23 38t27 47.5t29.5 53l7 9q-2 -53 -43 -139q-79 -165 -205 -264t-306 -142q-14 -3 -42 -7.5
t-50 -9.5t-39 -14q3 -19 24.5 -46t21.5 -34q0 -11 -26 -30zM1061 -79q39 26 131.5 47.5t146.5 21.5q9 0 22.5 -15.5t28 -42.5t26 -50t24 -51t14.5 -33q-121 -45 -244 -45q-61 0 -125 11zM822 568l48 12l109 -177l-73 -48zM1323 51q3 -15 3 -16q0 -7 -17.5 -14.5t-46 -13
t-54 -9.5t-53.5 -7.5t-32 -4.5l-7 43q21 2 60.5 8.5t72 10t60.5 3.5h14zM866 679l-96 -20l-6 17q10 1 32.5 7t34.5 6q19 0 35 -10zM1061 45h31l10 -83l-41 -12v95zM1950 1535v1v-1zM1950 1535l-1 -5l-2 -2l1 3zM1950 1535l1 1z" />
    <glyph glyph-name="_399" unicode="&#xf1a9;" 
d="M1167 -50q-5 19 -24 5q-30 -22 -87 -39t-131 -17q-129 0 -193 49q-5 4 -13 4q-11 0 -26 -12q-7 -6 -7.5 -16t7.5 -20q34 -32 87.5 -46t102.5 -12.5t99 4.5q41 4 84.5 20.5t65 30t28.5 20.5q12 12 7 29zM1128 65q-19 47 -39 61q-23 15 -76 15q-47 0 -71 -10
q-29 -12 -78 -56q-26 -24 -12 -44q9 -8 17.5 -4.5t31.5 23.5q3 2 10.5 8.5t10.5 8.5t10 7t11.5 7t12.5 5t15 4.5t16.5 2.5t20.5 1q27 0 44.5 -7.5t23 -14.5t13.5 -22q10 -17 12.5 -20t12.5 1q23 12 14 34zM1483 346q0 22 -5 44.5t-16.5 45t-34 36.5t-52.5 14
q-33 0 -97 -41.5t-129 -83.5t-101 -42q-27 -1 -63.5 19t-76 49t-83.5 58t-100 49t-111 19q-115 -1 -197 -78.5t-84 -178.5q-2 -112 74 -164q29 -20 62.5 -28.5t103.5 -8.5q57 0 132 32.5t134 71t120 70.5t93 31q26 -1 65 -31.5t71.5 -67t68 -67.5t55.5 -32q35 -3 58.5 14
t55.5 63q28 41 42.5 101t14.5 106zM1536 506q0 -164 -62 -304.5t-166 -236t-242.5 -149.5t-290.5 -54t-293 57.5t-247.5 157t-170.5 241.5t-64 302q0 89 19.5 172.5t49 145.5t70.5 118.5t78.5 94t78.5 69.5t64.5 46.5t42.5 24.5q14 8 51 26.5t54.5 28.5t48 30t60.5 44
q36 28 58 72.5t30 125.5q129 -155 186 -193q44 -29 130 -68t129 -66q21 -13 39 -25t60.5 -46.5t76 -70.5t75 -95t69 -122t47 -148.5t19.5 -177.5z" />
    <glyph glyph-name="_400" unicode="&#xf1aa;" 
d="M1070 463l-160 -160l-151 -152l-30 -30q-65 -64 -151.5 -87t-171.5 -2q-16 -70 -72 -115t-129 -45q-85 0 -145 60.5t-60 145.5q0 72 44.5 128t113.5 72q-22 86 1 173t88 152l12 12l151 -152l-11 -11q-37 -37 -37 -89t37 -90q37 -37 89 -37t89 37l30 30l151 152l161 160z
M729 1145l12 -12l-152 -152l-12 12q-37 37 -89 37t-89 -37t-37 -89.5t37 -89.5l29 -29l152 -152l160 -160l-151 -152l-161 160l-151 152l-30 30q-68 67 -90 159.5t5 179.5q-70 15 -115 71t-45 129q0 85 60 145.5t145 60.5q76 0 133.5 -49t69.5 -123q84 20 169.5 -3.5
t149.5 -87.5zM1536 78q0 -85 -60 -145.5t-145 -60.5q-74 0 -131 47t-71 118q-86 -28 -179.5 -6t-161.5 90l-11 12l151 152l12 -12q37 -37 89 -37t89 37t37 89t-37 89l-30 30l-152 152l-160 160l152 152l160 -160l152 -152l29 -30q64 -64 87.5 -150.5t2.5 -171.5
q76 -11 126.5 -68.5t50.5 -134.5zM1534 1202q0 -77 -51 -135t-127 -69q26 -85 3 -176.5t-90 -158.5l-12 -12l-151 152l12 12q37 37 37 89t-37 89t-89 37t-89 -37l-30 -30l-152 -152l-160 -160l-152 152l161 160l152 152l29 30q67 67 159 89.5t178 -3.5q11 75 68.5 126
t135.5 51q85 0 145 -60.5t60 -145.5z" />
    <glyph glyph-name="f1ab" unicode="&#xf1ab;" 
d="M654 458q-1 -3 -12.5 0.5t-31.5 11.5l-20 9q-44 20 -87 49q-7 5 -41 31.5t-38 28.5q-67 -103 -134 -181q-81 -95 -105 -110q-4 -2 -19.5 -4t-18.5 0q6 4 82 92q21 24 85.5 115t78.5 118q17 30 51 98.5t36 77.5q-8 1 -110 -33q-8 -2 -27.5 -7.5t-34.5 -9.5t-17 -5
q-2 -2 -2 -10.5t-1 -9.5q-5 -10 -31 -15q-23 -7 -47 0q-18 4 -28 21q-4 6 -5 23q6 2 24.5 5t29.5 6q58 16 105 32q100 35 102 35q10 2 43 19.5t44 21.5q9 3 21.5 8t14.5 5.5t6 -0.5q2 -12 -1 -33q0 -2 -12.5 -27t-26.5 -53.5t-17 -33.5q-25 -50 -77 -131l64 -28
q12 -6 74.5 -32t67.5 -28q4 -1 10.5 -25.5t4.5 -30.5zM449 944q3 -15 -4 -28q-12 -23 -50 -38q-30 -12 -60 -12q-26 3 -49 26q-14 15 -18 41l1 3q3 -3 19.5 -5t26.5 0t58 16q36 12 55 14q17 0 21 -17zM1147 815l63 -227l-139 42zM39 15l694 232v1032l-694 -233v-1031z
M1280 332l102 -31l-181 657l-100 31l-216 -536l102 -31l45 110l211 -65zM777 1294l573 -184v380zM1088 -29l158 -13l-54 -160l-40 66q-130 -83 -276 -108q-58 -12 -91 -12h-84q-79 0 -199.5 39t-183.5 85q-8 7 -8 16q0 8 5 13.5t13 5.5q4 0 18 -7.5t30.5 -16.5t20.5 -11
q73 -37 159.5 -61.5t157.5 -24.5q95 0 167 14.5t157 50.5q15 7 30.5 15.5t34 19t28.5 16.5zM1536 1050v-1079l-774 246q-14 -6 -375 -127.5t-368 -121.5q-13 0 -18 13q0 1 -1 3v1078q3 9 4 10q5 6 20 11q107 36 149 50v384l558 -198q2 0 160.5 55t316 108.5t161.5 53.5
q20 0 20 -21v-418z" />
    <glyph glyph-name="_402" unicode="&#xf1ac;" horiz-adv-x="1792" 
d="M288 1152q66 0 113 -47t47 -113v-1088q0 -66 -47 -113t-113 -47h-128q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h128zM1664 989q58 -34 93 -93t35 -128v-768q0 -106 -75 -181t-181 -75h-864q-66 0 -113 47t-47 113v1536q0 40 28 68t68 28h672q40 0 88 -20t76 -48
l152 -152q28 -28 48 -76t20 -88v-163zM928 0v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM928 256v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM928 512v128q0 14 -9 23
t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1184 0v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1184 256v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128
q14 0 23 9t9 23zM1184 512v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1440 0v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1440 256v128q0 14 -9 23t-23 9h-128
q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1440 512v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1536 896v256h-160q-40 0 -68 28t-28 68v160h-640v-512h896z" />
    <glyph glyph-name="_403" unicode="&#xf1ad;" 
d="M1344 1536q26 0 45 -19t19 -45v-1664q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v1664q0 26 19 45t45 19h1280zM512 1248v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23zM512 992v-64q0 -14 9 -23t23 -9h64q14 0 23 9
t9 23v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23zM512 736v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23zM512 480v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23zM384 160v64
q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM384 416v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM384 672v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64
q14 0 23 9t9 23zM384 928v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM384 1184v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM896 -96v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9
t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM896 416v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM896 672v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM896 928v64
q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM896 1184v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1152 160v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64
q14 0 23 9t9 23zM1152 416v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1152 672v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1152 928v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9
t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1152 1184v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23z" />
    <glyph glyph-name="_404" unicode="&#xf1ae;" horiz-adv-x="1280" 
d="M1188 988l-292 -292v-824q0 -46 -33 -79t-79 -33t-79 33t-33 79v384h-64v-384q0 -46 -33 -79t-79 -33t-79 33t-33 79v824l-292 292q-28 28 -28 68t28 68q29 28 68.5 28t67.5 -28l228 -228h368l228 228q28 28 68 28t68 -28q28 -29 28 -68.5t-28 -67.5zM864 1152
q0 -93 -65.5 -158.5t-158.5 -65.5t-158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5t158.5 -65.5t65.5 -158.5z" />
    <glyph glyph-name="uniF1B1" unicode="&#xf1b0;" horiz-adv-x="1664" 
d="M780 1064q0 -60 -19 -113.5t-63 -92.5t-105 -39q-76 0 -138 57.5t-92 135.5t-30 151q0 60 19 113.5t63 92.5t105 39q77 0 138.5 -57.5t91.5 -135t30 -151.5zM438 581q0 -80 -42 -139t-119 -59q-76 0 -141.5 55.5t-100.5 133.5t-35 152q0 80 42 139.5t119 59.5
q76 0 141.5 -55.5t100.5 -134t35 -152.5zM832 608q118 0 255 -97.5t229 -237t92 -254.5q0 -46 -17 -76.5t-48.5 -45t-64.5 -20t-76 -5.5q-68 0 -187.5 45t-182.5 45q-66 0 -192.5 -44.5t-200.5 -44.5q-183 0 -183 146q0 86 56 191.5t139.5 192.5t187.5 146t193 59zM1071 819
q-61 0 -105 39t-63 92.5t-19 113.5q0 74 30 151.5t91.5 135t138.5 57.5q61 0 105 -39t63 -92.5t19 -113.5q0 -73 -30 -151t-92 -135.5t-138 -57.5zM1503 923q77 0 119 -59.5t42 -139.5q0 -74 -35 -152t-100.5 -133.5t-141.5 -55.5q-77 0 -119 59t-42 139q0 74 35 152.5
t100.5 134t141.5 55.5z" />
    <glyph glyph-name="_406" unicode="&#xf1b1;" horiz-adv-x="768" 
d="M704 1008q0 -145 -57 -243.5t-152 -135.5l45 -821q2 -26 -16 -45t-44 -19h-192q-26 0 -44 19t-16 45l45 821q-95 37 -152 135.5t-57 243.5q0 128 42.5 249.5t117.5 200t160 78.5t160 -78.5t117.5 -200t42.5 -249.5z" />
    <glyph glyph-name="_407" unicode="&#xf1b2;" horiz-adv-x="1792" 
d="M896 -93l640 349v636l-640 -233v-752zM832 772l698 254l-698 254l-698 -254zM1664 1024v-768q0 -35 -18 -65t-49 -47l-704 -384q-28 -16 -61 -16t-61 16l-704 384q-31 17 -49 47t-18 65v768q0 40 23 73t61 47l704 256q22 8 44 8t44 -8l704 -256q38 -14 61 -47t23 -73z
" />
    <glyph glyph-name="_408" unicode="&#xf1b3;" horiz-adv-x="2304" 
d="M640 -96l384 192v314l-384 -164v-342zM576 358l404 173l-404 173l-404 -173zM1664 -96l384 192v314l-384 -164v-342zM1600 358l404 173l-404 173l-404 -173zM1152 651l384 165v266l-384 -164v-267zM1088 1030l441 189l-441 189l-441 -189zM2176 512v-416q0 -36 -19 -67
t-52 -47l-448 -224q-25 -14 -57 -14t-57 14l-448 224q-4 2 -7 4q-2 -2 -7 -4l-448 -224q-25 -14 -57 -14t-57 14l-448 224q-33 16 -52 47t-19 67v416q0 38 21.5 70t56.5 48l434 186v400q0 38 21.5 70t56.5 48l448 192q23 10 50 10t50 -10l448 -192q35 -16 56.5 -48t21.5 -70
v-400l434 -186q36 -16 57 -48t21 -70z" />
    <glyph glyph-name="_409" unicode="&#xf1b4;" horiz-adv-x="2048" 
d="M1848 1197h-511v-124h511v124zM1596 771q-90 0 -146 -52.5t-62 -142.5h408q-18 195 -200 195zM1612 186q63 0 122 32t76 87h221q-100 -307 -427 -307q-214 0 -340.5 132t-126.5 347q0 208 130.5 345.5t336.5 137.5q138 0 240.5 -68t153 -179t50.5 -248q0 -17 -2 -47h-658
q0 -111 57.5 -171.5t166.5 -60.5zM277 236h296q205 0 205 167q0 180 -199 180h-302v-347zM277 773h281q78 0 123.5 36.5t45.5 113.5q0 144 -190 144h-260v-294zM0 1282h594q87 0 155 -14t126.5 -47.5t90 -96.5t31.5 -154q0 -181 -172 -263q114 -32 172 -115t58 -204
q0 -75 -24.5 -136.5t-66 -103.5t-98.5 -71t-121 -42t-134 -13h-611v1260z" />
    <glyph glyph-name="_410" unicode="&#xf1b5;" 
d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960zM499 1041h-371v-787h382q117 0 197 57.5t80 170.5q0 158 -143 200q107 52 107 164q0 57 -19.5 96.5
t-56.5 60.5t-79 29.5t-97 8.5zM477 723h-176v184h163q119 0 119 -90q0 -94 -106 -94zM486 388h-185v217h189q124 0 124 -113q0 -104 -128 -104zM1136 356q-68 0 -104 38t-36 107h411q1 10 1 30q0 132 -74.5 220.5t-203.5 88.5q-128 0 -210 -86t-82 -216q0 -135 79 -217
t213 -82q205 0 267 191h-138q-11 -34 -47.5 -54t-75.5 -20zM1126 722q113 0 124 -122h-254q4 56 39 89t91 33zM964 988h319v-77h-319v77z" />
    <glyph glyph-name="_411" unicode="&#xf1b6;" horiz-adv-x="1792" 
d="M1582 954q0 -101 -71.5 -172.5t-172.5 -71.5t-172.5 71.5t-71.5 172.5t71.5 172.5t172.5 71.5t172.5 -71.5t71.5 -172.5zM812 212q0 104 -73 177t-177 73q-27 0 -54 -6l104 -42q77 -31 109.5 -106.5t1.5 -151.5q-31 -77 -107 -109t-152 -1q-21 8 -62 24.5t-61 24.5
q32 -60 91 -96.5t130 -36.5q104 0 177 73t73 177zM1642 953q0 126 -89.5 215.5t-215.5 89.5q-127 0 -216.5 -89.5t-89.5 -215.5q0 -127 89.5 -216t216.5 -89q126 0 215.5 89t89.5 216zM1792 953q0 -189 -133.5 -322t-321.5 -133l-437 -319q-12 -129 -109 -218t-229 -89
q-121 0 -214 76t-118 192l-230 92v429l389 -157q79 48 173 48q13 0 35 -2l284 407q2 187 135.5 319t320.5 132q188 0 321.5 -133.5t133.5 -321.5z" />
    <glyph glyph-name="_412" unicode="&#xf1b7;" 
d="M1242 889q0 80 -57 136.5t-137 56.5t-136.5 -57t-56.5 -136q0 -80 56.5 -136.5t136.5 -56.5t137 56.5t57 136.5zM632 301q0 -83 -58 -140.5t-140 -57.5q-56 0 -103 29t-72 77q52 -20 98 -40q60 -24 120 1.5t85 86.5q24 60 -1.5 120t-86.5 84l-82 33q22 5 42 5
q82 0 140 -57.5t58 -140.5zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v153l172 -69q20 -92 93.5 -152t168.5 -60q104 0 181 70t87 173l345 252q150 0 255.5 105.5t105.5 254.5q0 150 -105.5 255.5t-255.5 105.5
q-148 0 -253 -104.5t-107 -252.5l-225 -322q-9 1 -28 1q-75 0 -137 -37l-297 119v468q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5zM1289 887q0 -100 -71 -170.5t-171 -70.5t-170.5 70.5t-70.5 170.5t70.5 171t170.5 71q101 0 171.5 -70.5t70.5 -171.5z
" />
    <glyph glyph-name="_413" unicode="&#xf1b8;" horiz-adv-x="1792" 
d="M836 367l-15 -368l-2 -22l-420 29q-36 3 -67 31.5t-47 65.5q-11 27 -14.5 55t4 65t12 55t21.5 64t19 53q78 -12 509 -28zM449 953l180 -379l-147 92q-63 -72 -111.5 -144.5t-72.5 -125t-39.5 -94.5t-18.5 -63l-4 -21l-190 357q-17 26 -18 56t6 47l8 18q35 63 114 188
l-140 86zM1680 436l-188 -359q-12 -29 -36.5 -46.5t-43.5 -20.5l-18 -4q-71 -7 -219 -12l8 -164l-230 367l211 362l7 -173q170 -16 283 -5t170 33zM895 1360q-47 -63 -265 -435l-317 187l-19 12l225 356q20 31 60 45t80 10q24 -2 48.5 -12t42 -21t41.5 -33t36 -34.5
t36 -39.5t32 -35zM1550 1053l212 -363q18 -37 12.5 -76t-27.5 -74q-13 -20 -33 -37t-38 -28t-48.5 -22t-47 -16t-51.5 -14t-46 -12q-34 72 -265 436l313 195zM1407 1279l142 83l-220 -373l-419 20l151 86q-34 89 -75 166t-75.5 123.5t-64.5 80t-47 46.5l-17 13l405 -1
q31 3 58 -10.5t39 -28.5l11 -15q39 -61 112 -190z" />
    <glyph glyph-name="_414" unicode="&#xf1b9;" horiz-adv-x="2048" 
d="M480 448q0 66 -47 113t-113 47t-113 -47t-47 -113t47 -113t113 -47t113 47t47 113zM516 768h1016l-89 357q-2 8 -14 17.5t-21 9.5h-768q-9 0 -21 -9.5t-14 -17.5zM1888 448q0 66 -47 113t-113 47t-113 -47t-47 -113t47 -113t113 -47t113 47t47 113zM2048 544v-384
q0 -14 -9 -23t-23 -9h-96v-128q0 -80 -56 -136t-136 -56t-136 56t-56 136v128h-1024v-128q0 -80 -56 -136t-136 -56t-136 56t-56 136v128h-96q-14 0 -23 9t-9 23v384q0 93 65.5 158.5t158.5 65.5h28l105 419q23 94 104 157.5t179 63.5h768q98 0 179 -63.5t104 -157.5
l105 -419h28q93 0 158.5 -65.5t65.5 -158.5z" />
    <glyph glyph-name="_415" unicode="&#xf1ba;" horiz-adv-x="2048" 
d="M1824 640q93 0 158.5 -65.5t65.5 -158.5v-384q0 -14 -9 -23t-23 -9h-96v-64q0 -80 -56 -136t-136 -56t-136 56t-56 136v64h-1024v-64q0 -80 -56 -136t-136 -56t-136 56t-56 136v64h-96q-14 0 -23 9t-9 23v384q0 93 65.5 158.5t158.5 65.5h28l105 419q23 94 104 157.5
t179 63.5h128v224q0 14 9 23t23 9h448q14 0 23 -9t9 -23v-224h128q98 0 179 -63.5t104 -157.5l105 -419h28zM320 160q66 0 113 47t47 113t-47 113t-113 47t-113 -47t-47 -113t47 -113t113 -47zM516 640h1016l-89 357q-2 8 -14 17.5t-21 9.5h-768q-9 0 -21 -9.5t-14 -17.5z
M1728 160q66 0 113 47t47 113t-47 113t-113 47t-113 -47t-47 -113t47 -113t113 -47z" />
    <glyph glyph-name="_416" unicode="&#xf1bb;" 
d="M1504 64q0 -26 -19 -45t-45 -19h-462q1 -17 6 -87.5t5 -108.5q0 -25 -18 -42.5t-43 -17.5h-320q-25 0 -43 17.5t-18 42.5q0 38 5 108.5t6 87.5h-462q-26 0 -45 19t-19 45t19 45l402 403h-229q-26 0 -45 19t-19 45t19 45l402 403h-197q-26 0 -45 19t-19 45t19 45l384 384
q19 19 45 19t45 -19l384 -384q19 -19 19 -45t-19 -45t-45 -19h-197l402 -403q19 -19 19 -45t-19 -45t-45 -19h-229l402 -403q19 -19 19 -45z" />
    <glyph glyph-name="_417" unicode="&#xf1bc;" 
d="M1127 326q0 32 -30 51q-193 115 -447 115q-133 0 -287 -34q-42 -9 -42 -52q0 -20 13.5 -34.5t35.5 -14.5q5 0 37 8q132 27 243 27q226 0 397 -103q19 -11 33 -11q19 0 33 13.5t14 34.5zM1223 541q0 40 -35 61q-237 141 -548 141q-153 0 -303 -42q-48 -13 -48 -64
q0 -25 17.5 -42.5t42.5 -17.5q7 0 37 8q122 33 251 33q279 0 488 -124q24 -13 38 -13q25 0 42.5 17.5t17.5 42.5zM1331 789q0 47 -40 70q-126 73 -293 110.5t-343 37.5q-204 0 -364 -47q-23 -7 -38.5 -25.5t-15.5 -48.5q0 -31 20.5 -52t51.5 -21q11 0 40 8q133 37 307 37
q159 0 309.5 -34t253.5 -95q21 -12 40 -12q29 0 50.5 20.5t21.5 51.5zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
    <glyph glyph-name="_418" unicode="&#xf1bd;" horiz-adv-x="1024" 
d="M1024 1233l-303 -582l24 -31h279v-415h-507l-44 -30l-142 -273l-30 -30h-301v303l303 583l-24 30h-279v415h507l44 30l142 273l30 30h301v-303z" />
    <glyph glyph-name="_419" unicode="&#xf1be;" horiz-adv-x="2304" 
d="M784 164l16 241l-16 523q-1 10 -7.5 17t-16.5 7q-9 0 -16 -7t-7 -17l-14 -523l14 -241q1 -10 7.5 -16.5t15.5 -6.5q22 0 24 23zM1080 193l11 211l-12 586q0 16 -13 24q-8 5 -16 5t-16 -5q-13 -8 -13 -24l-1 -6l-10 -579q0 -1 11 -236v-1q0 -10 6 -17q9 -11 23 -11
q11 0 20 9q9 7 9 20zM35 533l20 -128l-20 -126q-2 -9 -9 -9t-9 9l-17 126l17 128q2 9 9 9t9 -9zM121 612l26 -207l-26 -203q-2 -9 -10 -9q-9 0 -9 10l-23 202l23 207q0 9 9 9q8 0 10 -9zM401 159zM213 650l25 -245l-25 -237q0 -11 -11 -11q-10 0 -12 11l-21 237l21 245
q2 12 12 12q11 0 11 -12zM307 657l23 -252l-23 -244q-2 -13 -14 -13q-13 0 -13 13l-21 244l21 252q0 13 13 13q12 0 14 -13zM401 639l21 -234l-21 -246q-2 -16 -16 -16q-6 0 -10.5 4.5t-4.5 11.5l-20 246l20 234q0 6 4.5 10.5t10.5 4.5q14 0 16 -15zM784 164zM495 785
l21 -380l-21 -246q0 -7 -5 -12.5t-12 -5.5q-16 0 -18 18l-18 246l18 380q2 18 18 18q7 0 12 -5.5t5 -12.5zM589 871l19 -468l-19 -244q0 -8 -5.5 -13.5t-13.5 -5.5q-18 0 -20 19l-16 244l16 468q2 19 20 19q8 0 13.5 -5.5t5.5 -13.5zM687 911l18 -506l-18 -242
q-2 -21 -22 -21q-19 0 -21 21l-16 242l16 506q0 9 6.5 15.5t14.5 6.5q9 0 15 -6.5t7 -15.5zM1079 169v0v0v0zM881 915l15 -510l-15 -239q0 -10 -7.5 -17.5t-17.5 -7.5t-17 7t-8 18l-14 239l14 510q0 11 7.5 18t17.5 7t17.5 -7t7.5 -18zM980 896l14 -492l-14 -236
q0 -11 -8 -19t-19 -8t-19 8t-9 19l-12 236l12 492q1 12 9 20t19 8t18.5 -8t8.5 -20zM1192 404l-14 -231v0q0 -13 -9 -22t-22 -9t-22 9t-10 22l-6 114l-6 117l12 636v3q2 15 12 24q9 7 20 7q8 0 15 -5q14 -8 16 -26zM2304 423q0 -117 -83 -199.5t-200 -82.5h-786
q-13 2 -22 11t-9 22v899q0 23 28 33q85 34 181 34q195 0 338 -131.5t160 -323.5q53 22 110 22q117 0 200 -83t83 -201z" />
    <glyph glyph-name="uniF1C0" unicode="&#xf1c0;" 
d="M768 768q237 0 443 43t325 127v-170q0 -69 -103 -128t-280 -93.5t-385 -34.5t-385 34.5t-280 93.5t-103 128v170q119 -84 325 -127t443 -43zM768 0q237 0 443 43t325 127v-170q0 -69 -103 -128t-280 -93.5t-385 -34.5t-385 34.5t-280 93.5t-103 128v170q119 -84 325 -127
t443 -43zM768 384q237 0 443 43t325 127v-170q0 -69 -103 -128t-280 -93.5t-385 -34.5t-385 34.5t-280 93.5t-103 128v170q119 -84 325 -127t443 -43zM768 1536q208 0 385 -34.5t280 -93.5t103 -128v-128q0 -69 -103 -128t-280 -93.5t-385 -34.5t-385 34.5t-280 93.5
t-103 128v128q0 69 103 128t280 93.5t385 34.5z" />
    <glyph glyph-name="uniF1C1" unicode="&#xf1c1;" 
d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z
M894 465q33 -26 84 -56q59 7 117 7q147 0 177 -49q16 -22 2 -52q0 -1 -1 -2l-2 -2v-1q-6 -38 -71 -38q-48 0 -115 20t-130 53q-221 -24 -392 -83q-153 -262 -242 -262q-15 0 -28 7l-24 12q-1 1 -6 5q-10 10 -6 36q9 40 56 91.5t132 96.5q14 9 23 -6q2 -2 2 -4q52 85 107 197
q68 136 104 262q-24 82 -30.5 159.5t6.5 127.5q11 40 42 40h21h1q23 0 35 -15q18 -21 9 -68q-2 -6 -4 -8q1 -3 1 -8v-30q-2 -123 -14 -192q55 -164 146 -238zM318 54q52 24 137 158q-51 -40 -87.5 -84t-49.5 -74zM716 974q-15 -42 -2 -132q1 7 7 44q0 3 7 43q1 4 4 8
q-1 1 -1 2q-1 2 -1 3q-1 22 -13 36q0 -1 -1 -2v-2zM592 313q135 54 284 81q-2 1 -13 9.5t-16 13.5q-76 67 -127 176q-27 -86 -83 -197q-30 -56 -45 -83zM1238 329q-24 24 -140 24q76 -28 124 -28q14 0 18 1q0 1 -2 3z" />
    <glyph glyph-name="_422" unicode="&#xf1c2;" 
d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z
M233 768v-107h70l164 -661h159l128 485q7 20 10 46q2 16 2 24h4l3 -24q1 -3 3.5 -20t5.5 -26l128 -485h159l164 661h70v107h-300v-107h90l-99 -438q-5 -20 -7 -46l-2 -21h-4q0 3 -0.5 6.5t-1.5 8t-1 6.5q-1 5 -4 21t-5 25l-144 545h-114l-144 -545q-2 -9 -4.5 -24.5
t-3.5 -21.5l-4 -21h-4l-2 21q-2 26 -7 46l-99 438h90v107h-300z" />
    <glyph glyph-name="_423" unicode="&#xf1c3;" 
d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z
M429 106v-106h281v106h-75l103 161q5 7 10 16.5t7.5 13.5t3.5 4h2q1 -4 5 -10q2 -4 4.5 -7.5t6 -8t6.5 -8.5l107 -161h-76v-106h291v106h-68l-192 273l195 282h67v107h-279v-107h74l-103 -159q-4 -7 -10 -16.5t-9 -13.5l-2 -3h-2q-1 4 -5 10q-6 11 -17 23l-106 159h76v107
h-290v-107h68l189 -272l-194 -283h-68z" />
    <glyph glyph-name="_424" unicode="&#xf1c4;" 
d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z
M416 106v-106h327v106h-93v167h137q76 0 118 15q67 23 106.5 87t39.5 146q0 81 -37 141t-100 87q-48 19 -130 19h-368v-107h92v-555h-92zM769 386h-119v268h120q52 0 83 -18q56 -33 56 -115q0 -89 -62 -120q-31 -15 -78 -15z" />
    <glyph glyph-name="_425" unicode="&#xf1c5;" 
d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z
M1280 320v-320h-1024v192l192 192l128 -128l384 384zM448 512q-80 0 -136 56t-56 136t56 136t136 56t136 -56t56 -136t-56 -136t-136 -56z" />
    <glyph glyph-name="_426" unicode="&#xf1c6;" 
d="M640 1152v128h-128v-128h128zM768 1024v128h-128v-128h128zM640 896v128h-128v-128h128zM768 768v128h-128v-128h128zM1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400
v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-128v-128h-128v128h-512v-1536h1280zM781 593l107 -349q8 -27 8 -52q0 -83 -72.5 -137.5t-183.5 -54.5t-183.5 54.5t-72.5 137.5q0 25 8 52q21 63 120 396v128h128v-128h79
q22 0 39 -13t23 -34zM640 128q53 0 90.5 19t37.5 45t-37.5 45t-90.5 19t-90.5 -19t-37.5 -45t37.5 -45t90.5 -19z" />
    <glyph glyph-name="_427" unicode="&#xf1c7;" 
d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z
M620 686q20 -8 20 -30v-544q0 -22 -20 -30q-8 -2 -12 -2q-12 0 -23 9l-166 167h-131q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h131l166 167q16 15 35 7zM1037 -3q31 0 50 24q129 159 129 363t-129 363q-16 21 -43 24t-47 -14q-21 -17 -23.5 -43.5t14.5 -47.5
q100 -123 100 -282t-100 -282q-17 -21 -14.5 -47.5t23.5 -42.5q18 -15 40 -15zM826 145q27 0 47 20q87 93 87 219t-87 219q-18 19 -45 20t-46 -17t-20 -44.5t18 -46.5q52 -57 52 -131t-52 -131q-19 -20 -18 -46.5t20 -44.5q20 -17 44 -17z" />
    <glyph glyph-name="_428" unicode="&#xf1c8;" 
d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z
M768 768q52 0 90 -38t38 -90v-384q0 -52 -38 -90t-90 -38h-384q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h384zM1260 766q20 -8 20 -30v-576q0 -22 -20 -30q-8 -2 -12 -2q-14 0 -23 9l-265 266v90l265 266q9 9 23 9q4 0 12 -2z" />
    <glyph glyph-name="_429" unicode="&#xf1c9;" 
d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z
M480 768q8 11 21 12.5t24 -6.5l51 -38q11 -8 12.5 -21t-6.5 -24l-182 -243l182 -243q8 -11 6.5 -24t-12.5 -21l-51 -38q-11 -8 -24 -6.5t-21 12.5l-226 301q-14 19 0 38zM1282 467q14 -19 0 -38l-226 -301q-8 -11 -21 -12.5t-24 6.5l-51 38q-11 8 -12.5 21t6.5 24l182 243
l-182 243q-8 11 -6.5 24t12.5 21l51 38q11 8 24 6.5t21 -12.5zM662 6q-13 2 -20.5 13t-5.5 24l138 831q2 13 13 20.5t24 5.5l63 -10q13 -2 20.5 -13t5.5 -24l-138 -831q-2 -13 -13 -20.5t-24 -5.5z" />
    <glyph glyph-name="_430" unicode="&#xf1ca;" 
d="M1497 709v-198q-101 -23 -198 -23q-65 -136 -165.5 -271t-181.5 -215.5t-128 -106.5q-80 -45 -162 3q-28 17 -60.5 43.5t-85 83.5t-102.5 128.5t-107.5 184t-105.5 244t-91.5 314.5t-70.5 390h283q26 -218 70 -398.5t104.5 -317t121.5 -235.5t140 -195q169 169 287 406
q-142 72 -223 220t-81 333q0 192 104 314.5t284 122.5q178 0 273 -105.5t95 -297.5q0 -159 -58 -286q-7 -1 -19.5 -3t-46 -2t-63 6t-62 25.5t-50.5 51.5q31 103 31 184q0 87 -29 132t-79 45q-53 0 -85 -49.5t-32 -140.5q0 -186 105 -293.5t267 -107.5q62 0 121 14z" />
    <glyph glyph-name="_431" unicode="&#xf1cb;" horiz-adv-x="1792" 
d="M216 367l603 -402v359l-334 223zM154 511l193 129l-193 129v-258zM973 -35l603 402l-269 180l-334 -223v-359zM896 458l272 182l-272 182l-272 -182zM485 733l334 223v359l-603 -402zM1445 640l193 -129v258zM1307 733l269 180l-603 402v-359zM1792 913v-546
q0 -41 -34 -64l-819 -546q-21 -13 -43 -13t-43 13l-819 546q-34 23 -34 64v546q0 41 34 64l819 546q21 13 43 13t43 -13l819 -546q34 -23 34 -64z" />
    <glyph glyph-name="_432" unicode="&#xf1cc;" horiz-adv-x="2048" 
d="M1800 764q111 -46 179.5 -145.5t68.5 -221.5q0 -164 -118 -280.5t-285 -116.5q-4 0 -11.5 0.5t-10.5 0.5h-1209h-1h-2h-5q-170 10 -288 125.5t-118 280.5q0 110 55 203t147 147q-12 39 -12 82q0 115 82 196t199 81q95 0 172 -58q75 154 222.5 248t326.5 94
q166 0 306 -80.5t221.5 -218.5t81.5 -301q0 -6 -0.5 -18t-0.5 -18zM468 498q0 -122 84 -193t208 -71q137 0 240 99q-16 20 -47.5 56.5t-43.5 50.5q-67 -65 -144 -65q-55 0 -93.5 33.5t-38.5 87.5q0 53 38.5 87t91.5 34q44 0 84.5 -21t73 -55t65 -75t69 -82t77 -75t97 -55
t121.5 -21q121 0 204.5 71.5t83.5 190.5q0 121 -84 192t-207 71q-143 0 -241 -97l93 -108q66 64 142 64q52 0 92 -33t40 -84q0 -57 -37 -91.5t-94 -34.5q-43 0 -82.5 21t-72 55t-65.5 75t-69.5 82t-77.5 75t-96.5 55t-118.5 21q-122 0 -207 -70.5t-85 -189.5z" />
    <glyph glyph-name="_433" unicode="&#xf1cd;" horiz-adv-x="1792" 
d="M896 1536q182 0 348 -71t286 -191t191 -286t71 -348t-71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71zM896 1408q-190 0 -361 -90l194 -194q82 28 167 28t167 -28l194 194q-171 90 -361 90zM218 279l194 194
q-28 82 -28 167t28 167l-194 194q-90 -171 -90 -361t90 -361zM896 -128q190 0 361 90l-194 194q-82 -28 -167 -28t-167 28l-194 -194q171 -90 361 -90zM896 256q159 0 271.5 112.5t112.5 271.5t-112.5 271.5t-271.5 112.5t-271.5 -112.5t-112.5 -271.5t112.5 -271.5
t271.5 -112.5zM1380 473l194 -194q90 171 90 361t-90 361l-194 -194q28 -82 28 -167t-28 -167z" />
    <glyph glyph-name="_434" unicode="&#xf1ce;" horiz-adv-x="1792" 
d="M1760 640q0 -176 -68.5 -336t-184 -275.5t-275.5 -184t-336 -68.5t-336 68.5t-275.5 184t-184 275.5t-68.5 336q0 213 97 398.5t265 305.5t374 151v-228q-221 -45 -366.5 -221t-145.5 -406q0 -130 51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5
t136.5 204t51 248.5q0 230 -145.5 406t-366.5 221v228q206 -31 374 -151t265 -305.5t97 -398.5z" />
    <glyph glyph-name="uniF1D0" unicode="&#xf1d0;" horiz-adv-x="1792" 
d="M19 662q8 217 116 406t305 318h5q0 -1 -1 -3q-8 -8 -28 -33.5t-52 -76.5t-60 -110.5t-44.5 -135.5t-14 -150.5t39 -157.5t108.5 -154q50 -50 102 -69.5t90.5 -11.5t69.5 23.5t47 32.5l16 16q39 51 53 116.5t6.5 122.5t-21 107t-26.5 80l-14 29q-10 25 -30.5 49.5t-43 41
t-43.5 29.5t-35 19l-13 6l104 115q39 -17 78 -52t59 -61l19 -27q1 48 -18.5 103.5t-40.5 87.5l-20 31l161 183l160 -181q-33 -46 -52.5 -102.5t-22.5 -90.5l-4 -33q22 37 61.5 72.5t67.5 52.5l28 17l103 -115q-44 -14 -85 -50t-60 -65l-19 -29q-31 -56 -48 -133.5t-7 -170
t57 -156.5q33 -45 77.5 -60.5t85 -5.5t76 26.5t57.5 33.5l21 16q60 53 96.5 115t48.5 121.5t10 121.5t-18 118t-37 107.5t-45.5 93t-45 72t-34.5 47.5l-13 17q-14 13 -7 13l10 -3q40 -29 62.5 -46t62 -50t64 -58t58.5 -65t55.5 -77t45.5 -88t38 -103t23.5 -117t10.5 -136
q3 -259 -108 -465t-312 -321t-456 -115q-185 0 -351 74t-283.5 198t-184 293t-60.5 353z" />
    <glyph glyph-name="uniF1D1" unicode="&#xf1d1;" horiz-adv-x="1792" 
d="M874 -102v-66q-208 6 -385 109.5t-283 275.5l58 34q29 -49 73 -99l65 57q148 -168 368 -212l-17 -86q65 -12 121 -13zM276 428l-83 -28q22 -60 49 -112l-57 -33q-98 180 -98 385t98 385l57 -33q-30 -56 -49 -112l82 -28q-35 -100 -35 -212q0 -109 36 -212zM1528 251
l58 -34q-106 -172 -283 -275.5t-385 -109.5v66q56 1 121 13l-17 86q220 44 368 212l65 -57q44 50 73 99zM1377 805l-233 -80q14 -42 14 -85t-14 -85l232 -80q-31 -92 -98 -169l-185 162q-57 -67 -147 -85l48 -241q-52 -10 -98 -10t-98 10l48 241q-90 18 -147 85l-185 -162
q-67 77 -98 169l232 80q-14 42 -14 85t14 85l-233 80q33 93 99 169l185 -162q59 68 147 86l-48 240q44 10 98 10t98 -10l-48 -240q88 -18 147 -86l185 162q66 -76 99 -169zM874 1448v-66q-65 -2 -121 -13l17 -86q-220 -42 -368 -211l-65 56q-38 -42 -73 -98l-57 33
q106 172 282 275.5t385 109.5zM1705 640q0 -205 -98 -385l-57 33q27 52 49 112l-83 28q36 103 36 212q0 112 -35 212l82 28q-19 56 -49 112l57 33q98 -180 98 -385zM1585 1063l-57 -33q-35 56 -73 98l-65 -56q-148 169 -368 211l17 86q-56 11 -121 13v66q209 -6 385 -109.5
t282 -275.5zM1748 640q0 173 -67.5 331t-181.5 272t-272 181.5t-331 67.5t-331 -67.5t-272 -181.5t-181.5 -272t-67.5 -331t67.5 -331t181.5 -272t272 -181.5t331 -67.5t331 67.5t272 181.5t181.5 272t67.5 331zM1792 640q0 -182 -71 -348t-191 -286t-286 -191t-348 -71
t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" />
    <glyph glyph-name="uniF1D2" unicode="&#xf1d2;" 
d="M582 228q0 -66 -93 -66q-107 0 -107 63q0 64 98 64q102 0 102 -61zM546 694q0 -85 -74 -85q-77 0 -77 84q0 90 77 90q36 0 55 -25.5t19 -63.5zM712 769v125q-78 -29 -135 -29q-50 29 -110 29q-86 0 -145 -57t-59 -143q0 -50 29.5 -102t73.5 -67v-3q-38 -17 -38 -85
q0 -53 41 -77v-3q-113 -37 -113 -139q0 -45 20 -78.5t54 -51t72 -25.5t81 -8q224 0 224 188q0 67 -48 99t-126 46q-27 5 -51.5 20.5t-24.5 39.5q0 44 49 52q77 15 122 70t45 134q0 24 -10 52q37 9 49 13zM771 350h137q-2 27 -2 82v387q0 46 2 69h-137q3 -23 3 -71v-392
q0 -50 -3 -75zM1280 366v121q-30 -21 -68 -21q-53 0 -53 82v225h52q9 0 26.5 -1t26.5 -1v117h-105q0 82 3 102h-140q4 -24 4 -55v-47h-60v-117q36 3 37 3q3 0 11 -0.5t12 -0.5v-2h-2v-217q0 -37 2.5 -64t11.5 -56.5t24.5 -48.5t43.5 -31t66 -12q64 0 108 24zM924 1072
q0 36 -24 63.5t-60 27.5t-60.5 -27t-24.5 -64q0 -36 25 -62.5t60 -26.5t59.5 27t24.5 62zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
    <glyph glyph-name="_438" unicode="&#xf1d3;" horiz-adv-x="1792" 
d="M595 22q0 100 -165 100q-158 0 -158 -104q0 -101 172 -101q151 0 151 105zM536 777q0 61 -30 102t-89 41q-124 0 -124 -145q0 -135 124 -135q119 0 119 137zM805 1101v-202q-36 -12 -79 -22q16 -43 16 -84q0 -127 -73 -216.5t-197 -112.5q-40 -8 -59.5 -27t-19.5 -58
q0 -31 22.5 -51.5t58 -32t78.5 -22t86 -25.5t78.5 -37.5t58 -64t22.5 -98.5q0 -304 -363 -304q-69 0 -130 12.5t-116 41t-87.5 82t-32.5 127.5q0 165 182 225v4q-67 41 -67 126q0 109 63 137v4q-72 24 -119.5 108.5t-47.5 165.5q0 139 95 231.5t235 92.5q96 0 178 -47
q98 0 218 47zM1123 220h-222q4 45 4 134v609q0 94 -4 128h222q-4 -33 -4 -124v-613q0 -89 4 -134zM1724 442v-196q-71 -39 -174 -39q-62 0 -107 20t-70 50t-39.5 78t-18.5 92t-4 103v351h2v4q-7 0 -19 1t-18 1q-21 0 -59 -6v190h96v76q0 54 -6 89h227q-6 -41 -6 -165h171
v-190q-15 0 -43.5 2t-42.5 2h-85v-365q0 -131 87 -131q61 0 109 33zM1148 1389q0 -58 -39 -101.5t-96 -43.5q-58 0 -98 43.5t-40 101.5q0 59 39.5 103t98.5 44q58 0 96.5 -44.5t38.5 -102.5z" />
    <glyph glyph-name="_439" unicode="&#xf1d4;" 
d="M809 532l266 499h-112l-157 -312q-24 -48 -44 -92l-42 92l-155 312h-120l263 -493v-324h101v318zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
    <glyph glyph-name="uniF1D5" unicode="&#xf1d5;" horiz-adv-x="1280" 
d="M842 964q0 -80 -57 -136.5t-136 -56.5q-60 0 -111 35q-62 -67 -115 -146q-247 -371 -202 -859q1 -22 -12.5 -38.5t-34.5 -18.5h-5q-20 0 -35 13.5t-17 33.5q-14 126 -3.5 247.5t29.5 217t54 186t69 155.5t74 125q61 90 132 165q-16 35 -16 77q0 80 56.5 136.5t136.5 56.5
t136.5 -56.5t56.5 -136.5zM1223 953q0 -158 -78 -292t-212.5 -212t-292.5 -78q-64 0 -131 14q-21 5 -32.5 23.5t-6.5 39.5q5 20 23 31.5t39 7.5q51 -13 108 -13q97 0 186 38t153 102t102 153t38 186t-38 186t-102 153t-153 102t-186 38t-186 -38t-153 -102t-102 -153
t-38 -186q0 -114 52 -218q10 -20 3.5 -40t-25.5 -30t-39.5 -3t-30.5 26q-64 123 -64 265q0 119 46.5 227t124.5 186t186 124t226 46q158 0 292.5 -78t212.5 -212.5t78 -292.5z" />
    <glyph glyph-name="uniF1D6" unicode="&#xf1d6;" horiz-adv-x="1792" 
d="M270 730q-8 19 -8 52q0 20 11 49t24 45q-1 22 7.5 53t22.5 43q0 139 92.5 288.5t217.5 209.5q139 66 324 66q133 0 266 -55q49 -21 90 -48t71 -56t55 -68t42 -74t32.5 -84.5t25.5 -89.5t22 -98l1 -5q55 -83 55 -150q0 -14 -9 -40t-9 -38q0 -1 1.5 -3.5t3.5 -5t2 -3.5
q77 -114 120.5 -214.5t43.5 -208.5q0 -43 -19.5 -100t-55.5 -57q-9 0 -19.5 7.5t-19 17.5t-19 26t-16 26.5t-13.5 26t-9 17.5q-1 1 -3 1l-5 -4q-59 -154 -132 -223q20 -20 61.5 -38.5t69 -41.5t35.5 -65q-2 -4 -4 -16t-7 -18q-64 -97 -302 -97q-53 0 -110.5 9t-98 20
t-104.5 30q-15 5 -23 7q-14 4 -46 4.5t-40 1.5q-41 -45 -127.5 -65t-168.5 -20q-35 0 -69 1.5t-93 9t-101 20.5t-74.5 40t-32.5 64q0 40 10 59.5t41 48.5q11 2 40.5 13t49.5 12q4 0 14 2q2 2 2 4l-2 3q-48 11 -108 105.5t-73 156.5l-5 3q-4 0 -12 -20q-18 -41 -54.5 -74.5
t-77.5 -37.5h-1q-4 0 -6 4.5t-5 5.5q-23 54 -23 100q0 275 252 466z" />
    <glyph glyph-name="uniF1D7" unicode="&#xf1d7;" horiz-adv-x="2048" 
d="M580 1075q0 41 -25 66t-66 25q-43 0 -76 -25.5t-33 -65.5q0 -39 33 -64.5t76 -25.5q41 0 66 24.5t25 65.5zM1323 568q0 28 -25.5 50t-65.5 22q-27 0 -49.5 -22.5t-22.5 -49.5q0 -28 22.5 -50.5t49.5 -22.5q40 0 65.5 22t25.5 51zM1087 1075q0 41 -24.5 66t-65.5 25
q-43 0 -76 -25.5t-33 -65.5q0 -39 33 -64.5t76 -25.5q41 0 65.5 24.5t24.5 65.5zM1722 568q0 28 -26 50t-65 22q-27 0 -49.5 -22.5t-22.5 -49.5q0 -28 22.5 -50.5t49.5 -22.5q39 0 65 22t26 51zM1456 965q-31 4 -70 4q-169 0 -311 -77t-223.5 -208.5t-81.5 -287.5
q0 -78 23 -152q-35 -3 -68 -3q-26 0 -50 1.5t-55 6.5t-44.5 7t-54.5 10.5t-50 10.5l-253 -127l72 218q-290 203 -290 490q0 169 97.5 311t264 223.5t363.5 81.5q176 0 332.5 -66t262 -182.5t136.5 -260.5zM2048 404q0 -117 -68.5 -223.5t-185.5 -193.5l55 -181l-199 109
q-150 -37 -218 -37q-169 0 -311 70.5t-223.5 191.5t-81.5 264t81.5 264t223.5 191.5t311 70.5q161 0 303 -70.5t227.5 -192t85.5 -263.5z" />
    <glyph glyph-name="_443" unicode="&#xf1d8;" horiz-adv-x="1792" 
d="M1764 1525q33 -24 27 -64l-256 -1536q-5 -29 -32 -45q-14 -8 -31 -8q-11 0 -24 5l-453 185l-242 -295q-18 -23 -49 -23q-13 0 -22 4q-19 7 -30.5 23.5t-11.5 36.5v349l864 1059l-1069 -925l-395 162q-37 14 -40 55q-2 40 32 59l1664 960q15 9 32 9q20 0 36 -11z" />
    <glyph glyph-name="_444" unicode="&#xf1d9;" horiz-adv-x="1792" 
d="M1764 1525q33 -24 27 -64l-256 -1536q-5 -29 -32 -45q-14 -8 -31 -8q-11 0 -24 5l-527 215l-298 -327q-18 -21 -47 -21q-14 0 -23 4q-19 7 -30 23.5t-11 36.5v452l-472 193q-37 14 -40 55q-3 39 32 59l1664 960q35 21 68 -2zM1422 26l221 1323l-1434 -827l336 -137
l863 639l-478 -797z" />
    <glyph glyph-name="_445" unicode="&#xf1da;" 
d="M1536 640q0 -156 -61 -298t-164 -245t-245 -164t-298 -61q-172 0 -327 72.5t-264 204.5q-7 10 -6.5 22.5t8.5 20.5l137 138q10 9 25 9q16 -2 23 -12q73 -95 179 -147t225 -52q104 0 198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5t-40.5 198.5t-109.5 163.5
t-163.5 109.5t-198.5 40.5q-98 0 -188 -35.5t-160 -101.5l137 -138q31 -30 14 -69q-17 -40 -59 -40h-448q-26 0 -45 19t-19 45v448q0 42 40 59q39 17 69 -14l130 -129q107 101 244.5 156.5t284.5 55.5q156 0 298 -61t245 -164t164 -245t61 -298zM896 928v-448q0 -14 -9 -23
t-23 -9h-320q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h224v352q0 14 9 23t23 9h64q14 0 23 -9t9 -23z" />
    <glyph glyph-name="_446" unicode="&#xf1db;" 
d="M768 1280q-130 0 -248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5t-51 248.5t-136.5 204t-204 136.5t-248.5 51zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103
t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
    <glyph glyph-name="_447" unicode="&#xf1dc;" horiz-adv-x="1792" 
d="M1682 -128q-44 0 -132.5 3.5t-133.5 3.5q-44 0 -132 -3.5t-132 -3.5q-24 0 -37 20.5t-13 45.5q0 31 17 46t39 17t51 7t45 15q33 21 33 140l-1 391q0 21 -1 31q-13 4 -50 4h-675q-38 0 -51 -4q-1 -10 -1 -31l-1 -371q0 -142 37 -164q16 -10 48 -13t57 -3.5t45 -15
t20 -45.5q0 -26 -12.5 -48t-36.5 -22q-47 0 -139.5 3.5t-138.5 3.5q-43 0 -128 -3.5t-127 -3.5q-23 0 -35.5 21t-12.5 45q0 30 15.5 45t36 17.5t47.5 7.5t42 15q33 23 33 143l-1 57v813q0 3 0.5 26t0 36.5t-1.5 38.5t-3.5 42t-6.5 36.5t-11 31.5t-16 18q-15 10 -45 12t-53 2
t-41 14t-18 45q0 26 12 48t36 22q46 0 138.5 -3.5t138.5 -3.5q42 0 126.5 3.5t126.5 3.5q25 0 37.5 -22t12.5 -48q0 -30 -17 -43.5t-38.5 -14.5t-49.5 -4t-43 -13q-35 -21 -35 -160l1 -320q0 -21 1 -32q13 -3 39 -3h699q25 0 38 3q1 11 1 32l1 320q0 139 -35 160
q-18 11 -58.5 12.5t-66 13t-25.5 49.5q0 26 12.5 48t37.5 22q44 0 132 -3.5t132 -3.5q43 0 129 3.5t129 3.5q25 0 37.5 -22t12.5 -48q0 -30 -17.5 -44t-40 -14.5t-51.5 -3t-44 -12.5q-35 -23 -35 -161l1 -943q0 -119 34 -140q16 -10 46 -13.5t53.5 -4.5t41.5 -15.5t18 -44.5
q0 -26 -12 -48t-36 -22z" />
    <glyph glyph-name="_448" unicode="&#xf1dd;" horiz-adv-x="1280" 
d="M1278 1347v-73q0 -29 -18.5 -61t-42.5 -32q-50 0 -54 -1q-26 -6 -32 -31q-3 -11 -3 -64v-1152q0 -25 -18 -43t-43 -18h-108q-25 0 -43 18t-18 43v1218h-143v-1218q0 -25 -17.5 -43t-43.5 -18h-108q-26 0 -43.5 18t-17.5 43v496q-147 12 -245 59q-126 58 -192 179
q-64 117 -64 259q0 166 88 286q88 118 209 159q111 37 417 37h479q25 0 43 -18t18 -43z" />
    <glyph glyph-name="_449" unicode="&#xf1de;" 
d="M352 128v-128h-352v128h352zM704 256q26 0 45 -19t19 -45v-256q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h256zM864 640v-128h-864v128h864zM224 1152v-128h-224v128h224zM1536 128v-128h-736v128h736zM576 1280q26 0 45 -19t19 -45v-256
q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h256zM1216 768q26 0 45 -19t19 -45v-256q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h256zM1536 640v-128h-224v128h224zM1536 1152v-128h-864v128h864z" />
    <glyph glyph-name="uniF1E0" unicode="&#xf1e0;" 
d="M1216 512q133 0 226.5 -93.5t93.5 -226.5t-93.5 -226.5t-226.5 -93.5t-226.5 93.5t-93.5 226.5q0 12 2 34l-360 180q-92 -86 -218 -86q-133 0 -226.5 93.5t-93.5 226.5t93.5 226.5t226.5 93.5q126 0 218 -86l360 180q-2 22 -2 34q0 133 93.5 226.5t226.5 93.5
t226.5 -93.5t93.5 -226.5t-93.5 -226.5t-226.5 -93.5q-126 0 -218 86l-360 -180q2 -22 2 -34t-2 -34l360 -180q92 86 218 86z" />
    <glyph glyph-name="_451" unicode="&#xf1e1;" 
d="M1280 341q0 88 -62.5 151t-150.5 63q-84 0 -145 -58l-241 120q2 16 2 23t-2 23l241 120q61 -58 145 -58q88 0 150.5 63t62.5 151t-62.5 150.5t-150.5 62.5t-151 -62.5t-63 -150.5q0 -7 2 -23l-241 -120q-62 57 -145 57q-88 0 -150.5 -62.5t-62.5 -150.5t62.5 -150.5
t150.5 -62.5q83 0 145 57l241 -120q-2 -16 -2 -23q0 -88 63 -150.5t151 -62.5t150.5 62.5t62.5 150.5zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
    <glyph glyph-name="_452" unicode="&#xf1e2;" horiz-adv-x="1792" 
d="M571 947q-10 25 -34 35t-49 0q-108 -44 -191 -127t-127 -191q-10 -25 0 -49t35 -34q13 -5 24 -5q42 0 60 40q34 84 98.5 148.5t148.5 98.5q25 11 35 35t0 49zM1513 1303l46 -46l-244 -243l68 -68q19 -19 19 -45.5t-19 -45.5l-64 -64q89 -161 89 -343q0 -143 -55.5 -273.5
t-150 -225t-225 -150t-273.5 -55.5t-273.5 55.5t-225 150t-150 225t-55.5 273.5t55.5 273.5t150 225t225 150t273.5 55.5q182 0 343 -89l64 64q19 19 45.5 19t45.5 -19l68 -68zM1521 1359q-10 -10 -22 -10q-13 0 -23 10l-91 90q-9 10 -9 23t9 23q10 9 23 9t23 -9l90 -91
q10 -9 10 -22.5t-10 -22.5zM1751 1129q-11 -9 -23 -9t-23 9l-90 91q-10 9 -10 22.5t10 22.5q9 10 22.5 10t22.5 -10l91 -90q9 -10 9 -23t-9 -23zM1792 1312q0 -14 -9 -23t-23 -9h-96q-14 0 -23 9t-9 23t9 23t23 9h96q14 0 23 -9t9 -23zM1600 1504v-96q0 -14 -9 -23t-23 -9
t-23 9t-9 23v96q0 14 9 23t23 9t23 -9t9 -23zM1751 1449l-91 -90q-10 -10 -22 -10q-13 0 -23 10q-10 9 -10 22.5t10 22.5l90 91q10 9 23 9t23 -9q9 -10 9 -23t-9 -23z" />
    <glyph glyph-name="_453" unicode="&#xf1e3;" horiz-adv-x="1792" 
d="M609 720l287 208l287 -208l-109 -336h-355zM896 1536q182 0 348 -71t286 -191t191 -286t71 -348t-71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71zM1515 186q149 203 149 454v3l-102 -89l-240 224l63 323
l134 -12q-150 206 -389 282l53 -124l-287 -159l-287 159l53 124q-239 -76 -389 -282l135 12l62 -323l-240 -224l-102 89v-3q0 -251 149 -454l30 132l326 -40l139 -298l-116 -69q117 -39 240 -39t240 39l-116 69l139 298l326 40z" />
    <glyph glyph-name="_454" unicode="&#xf1e4;" horiz-adv-x="1792" 
d="M448 224v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM256 608v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM832 224v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23
v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM640 608v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM66 768q-28 0 -47 19t-19 46v129h514v-129q0 -27 -19 -46t-46 -19h-383zM1216 224v-192q0 -14 -9 -23t-23 -9h-192
q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1024 608v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1600 224v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23
zM1408 608v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1792 1016v-13h-514v10q0 104 -382 102q-382 -1 -382 -102v-10h-514v13q0 17 8.5 43t34 64t65.5 75.5t110.5 76t160 67.5t224 47.5t293.5 18.5t293 -18.5t224 -47.5
t160.5 -67.5t110.5 -76t65.5 -75.5t34 -64t8.5 -43zM1792 608v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1792 962v-129q0 -27 -19 -46t-46 -19h-384q-27 0 -46 19t-19 46v129h514z" />
    <glyph glyph-name="_455" unicode="&#xf1e5;" horiz-adv-x="1792" 
d="M704 1216v-768q0 -26 -19 -45t-45 -19v-576q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v512l249 873q7 23 31 23h424zM1024 1216v-704h-256v704h256zM1792 320v-512q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v576q-26 0 -45 19t-19 45v768h424q24 0 31 -23z
M736 1504v-224h-352v224q0 14 9 23t23 9h288q14 0 23 -9t9 -23zM1408 1504v-224h-352v224q0 14 9 23t23 9h288q14 0 23 -9t9 -23z" />
    <glyph glyph-name="_456" unicode="&#xf1e6;" horiz-adv-x="1792" 
d="M1755 1083q37 -38 37 -90.5t-37 -90.5l-401 -400l150 -150l-160 -160q-163 -163 -389.5 -186.5t-411.5 100.5l-362 -362h-181v181l362 362q-124 185 -100.5 411.5t186.5 389.5l160 160l150 -150l400 401q38 37 91 37t90 -37t37 -90.5t-37 -90.5l-400 -401l234 -234
l401 400q38 37 91 37t90 -37z" />
    <glyph glyph-name="_457" unicode="&#xf1e7;" horiz-adv-x="1792" 
d="M873 796q0 -83 -63.5 -142.5t-152.5 -59.5t-152.5 59.5t-63.5 142.5q0 84 63.5 143t152.5 59t152.5 -59t63.5 -143zM1375 796q0 -83 -63 -142.5t-153 -59.5q-89 0 -152.5 59.5t-63.5 142.5q0 84 63.5 143t152.5 59q90 0 153 -59t63 -143zM1600 616v667q0 87 -32 123.5
t-111 36.5h-1112q-83 0 -112.5 -34t-29.5 -126v-673q43 -23 88.5 -40t81 -28t81 -18.5t71 -11t70 -4t58.5 -0.5t56.5 2t44.5 2q68 1 95 -27q6 -6 10 -9q26 -25 61 -51q7 91 118 87q5 0 36.5 -1.5t43 -2t45.5 -1t53 1t54.5 4.5t61 8.5t62 13.5t67 19.5t67.5 27t72 34.5z
M1763 621q-121 -149 -372 -252q84 -285 -23 -465q-66 -113 -183 -148q-104 -32 -182 15q-86 51 -82 164l-1 326v1q-8 2 -24.5 6t-23.5 5l-1 -338q4 -114 -83 -164q-79 -47 -183 -15q-117 36 -182 150q-105 180 -22 463q-251 103 -372 252q-25 37 -4 63t60 -1q4 -2 11.5 -7
t10.5 -8v694q0 72 47 123t114 51h1257q67 0 114 -51t47 -123v-694l21 15q39 27 60 1t-4 -63z" />
    <glyph glyph-name="_458" unicode="&#xf1e8;" horiz-adv-x="1792" 
d="M896 1102v-434h-145v434h145zM1294 1102v-434h-145v434h145zM1294 342l253 254v795h-1194v-1049h326v-217l217 217h398zM1692 1536v-1013l-434 -434h-326l-217 -217h-217v217h-398v1158l109 289h1483z" />
    <glyph glyph-name="_459" unicode="&#xf1e9;" 
d="M773 217v-127q-1 -292 -6 -305q-12 -32 -51 -40q-54 -9 -181.5 38t-162.5 89q-13 15 -17 36q-1 12 4 26q4 10 34 47t181 216q1 0 60 70q15 19 39.5 24.5t49.5 -3.5q24 -10 37.5 -29t12.5 -42zM624 468q-3 -55 -52 -70l-120 -39q-275 -88 -292 -88q-35 2 -54 36
q-12 25 -17 75q-8 76 1 166.5t30 124.5t56 32q13 0 202 -77q71 -29 115 -47l84 -34q23 -9 35.5 -30.5t11.5 -48.5zM1450 171q-7 -54 -91.5 -161t-135.5 -127q-37 -14 -63 7q-14 10 -184 287l-47 77q-14 21 -11.5 46t19.5 46q35 43 83 26q1 -1 119 -40q203 -66 242 -79.5
t47 -20.5q28 -22 22 -61zM778 803q5 -102 -54 -122q-58 -17 -114 71l-378 598q-8 35 19 62q41 43 207.5 89.5t224.5 31.5q40 -10 49 -45q3 -18 22 -305.5t24 -379.5zM1440 695q3 -39 -26 -59q-15 -10 -329 -86q-67 -15 -91 -23l1 2q-23 -6 -46 4t-37 32q-30 47 0 87
q1 1 75 102q125 171 150 204t34 39q28 19 65 2q48 -23 123 -133.5t81 -167.5v-3z" />
    <glyph glyph-name="_460" unicode="&#xf1ea;" horiz-adv-x="2048" 
d="M1024 1024h-384v-384h384v384zM1152 384v-128h-640v128h640zM1152 1152v-640h-640v640h640zM1792 384v-128h-512v128h512zM1792 640v-128h-512v128h512zM1792 896v-128h-512v128h512zM1792 1152v-128h-512v128h512zM256 192v960h-128v-960q0 -26 19 -45t45 -19t45 19
t19 45zM1920 192v1088h-1536v-1088q0 -33 -11 -64h1483q26 0 45 19t19 45zM2048 1408v-1216q0 -80 -56 -136t-136 -56h-1664q-80 0 -136 56t-56 136v1088h256v128h1792z" />
    <glyph glyph-name="_461" unicode="&#xf1eb;" horiz-adv-x="2048" 
d="M1024 13q-20 0 -93 73.5t-73 93.5q0 32 62.5 54t103.5 22t103.5 -22t62.5 -54q0 -20 -73 -93.5t-93 -73.5zM1294 284q-2 0 -40 25t-101.5 50t-128.5 25t-128.5 -25t-101 -50t-40.5 -25q-18 0 -93.5 75t-75.5 93q0 13 10 23q78 77 196 121t233 44t233 -44t196 -121
q10 -10 10 -23q0 -18 -75.5 -93t-93.5 -75zM1567 556q-11 0 -23 8q-136 105 -252 154.5t-268 49.5q-85 0 -170.5 -22t-149 -53t-113.5 -62t-79 -53t-31 -22q-17 0 -92 75t-75 93q0 12 10 22q132 132 320 205t380 73t380 -73t320 -205q10 -10 10 -22q0 -18 -75 -93t-92 -75z
M1838 827q-11 0 -22 9q-179 157 -371.5 236.5t-420.5 79.5t-420.5 -79.5t-371.5 -236.5q-11 -9 -22 -9q-17 0 -92.5 75t-75.5 93q0 13 10 23q187 186 445 288t527 102t527 -102t445 -288q10 -10 10 -23q0 -18 -75.5 -93t-92.5 -75z" />
    <glyph glyph-name="_462" unicode="&#xf1ec;" horiz-adv-x="1792" 
d="M384 0q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM768 0q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM384 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5
t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1152 0q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM768 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5
t37.5 90.5zM384 768q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1152 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM768 768q0 53 -37.5 90.5t-90.5 37.5
t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1536 0v384q0 52 -38 90t-90 38t-90 -38t-38 -90v-384q0 -52 38 -90t90 -38t90 38t38 90zM1152 768q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5z
M1536 1088v256q0 26 -19 45t-45 19h-1280q-26 0 -45 -19t-19 -45v-256q0 -26 19 -45t45 -19h1280q26 0 45 19t19 45zM1536 768q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1664 1408v-1536q0 -52 -38 -90t-90 -38
h-1408q-52 0 -90 38t-38 90v1536q0 52 38 90t90 38h1408q52 0 90 -38t38 -90z" />
    <glyph glyph-name="_463" unicode="&#xf1ed;" 
d="M1519 890q18 -84 -4 -204q-87 -444 -565 -444h-44q-25 0 -44 -16.5t-24 -42.5l-4 -19l-55 -346l-2 -15q-5 -26 -24.5 -42.5t-44.5 -16.5h-251q-21 0 -33 15t-9 36q9 56 26.5 168t26.5 168t27 167.5t27 167.5q5 37 43 37h131q133 -2 236 21q175 39 287 144q102 95 155 246
q24 70 35 133q1 6 2.5 7.5t3.5 1t6 -3.5q79 -59 98 -162zM1347 1172q0 -107 -46 -236q-80 -233 -302 -315q-113 -40 -252 -42q0 -1 -90 -1l-90 1q-100 0 -118 -96q-2 -8 -85 -530q-1 -10 -12 -10h-295q-22 0 -36.5 16.5t-11.5 38.5l232 1471q5 29 27.5 48t51.5 19h598
q34 0 97.5 -13t111.5 -32q107 -41 163.5 -123t56.5 -196z" />
    <glyph glyph-name="_464" unicode="&#xf1ee;" horiz-adv-x="1792" 
d="M441 864q33 0 52 -26q266 -364 362 -774h-446q-127 441 -367 749q-12 16 -3 33.5t29 17.5h373zM1000 507q-49 -199 -125 -393q-79 310 -256 594q40 221 44 449q211 -340 337 -650zM1099 1216q235 -324 384.5 -698.5t184.5 -773.5h-451q-41 665 -553 1472h435zM1792 640
q0 -424 -101 -812q-67 560 -359 1083q-25 301 -106 584q-4 16 5.5 28.5t25.5 12.5h359q21 0 38.5 -13t22.5 -33q115 -409 115 -850z" />
    <glyph glyph-name="uniF1F0" unicode="&#xf1f0;" horiz-adv-x="2304" 
d="M1975 546h-138q14 37 66 179l3 9q4 10 10 26t9 26l12 -55zM531 611l-58 295q-11 54 -75 54h-268l-2 -13q311 -79 403 -336zM710 960l-162 -438l-17 89q-26 70 -85 129.5t-131 88.5l135 -510h175l261 641h-176zM849 318h166l104 642h-166zM1617 944q-69 27 -149 27
q-123 0 -201 -59t-79 -153q-1 -102 145 -174q48 -23 67 -41t19 -39q0 -30 -30 -46t-69 -16q-86 0 -156 33l-22 11l-23 -144q74 -34 185 -34q130 -1 208.5 59t80.5 160q0 106 -140 174q-49 25 -71 42t-22 38q0 22 24.5 38.5t70.5 16.5q70 1 124 -24l15 -8zM2042 960h-128
q-65 0 -87 -54l-246 -588h174l35 96h212q5 -22 20 -96h154zM2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h2048q52 0 90 -38t38 -90z" />
    <glyph glyph-name="_466" unicode="&#xf1f1;" horiz-adv-x="2304" 
d="M1119 1195q-128 85 -281 85q-103 0 -197.5 -40.5t-162.5 -108.5t-108.5 -162t-40.5 -197q0 -104 40.5 -198t108.5 -162t162 -108.5t198 -40.5q153 0 281 85q-131 107 -178 265.5t0.5 316.5t177.5 265zM1152 1171q-126 -99 -172 -249.5t-0.5 -300.5t172.5 -249
q127 99 172.5 249t-0.5 300.5t-172 249.5zM1185 1195q130 -107 177.5 -265.5t0.5 -317t-178 -264.5q128 -85 281 -85q104 0 198 40.5t162 108.5t108.5 162t40.5 198q0 103 -40.5 197t-108.5 162t-162.5 108.5t-197.5 40.5q-153 0 -281 -85zM1926 473h7v3h-17v-3h7v-17h3v17z
M1955 456h4v20h-5l-6 -13l-6 13h-5v-20h3v15l6 -13h4l5 13v-15zM1947 16v-2h-2h-3v3h3h2v-1zM1947 7h3l-4 5h2l1 1q1 1 1 3t-1 3l-1 1h-3h-6v-13h3v5h1zM685 75q0 19 11 31t30 12q18 0 29 -12.5t11 -30.5q0 -19 -11 -31t-29 -12q-19 0 -30 12t-11 31zM1158 119q30 0 35 -32
h-70q5 32 35 32zM1514 75q0 19 11 31t29 12t29.5 -12.5t11.5 -30.5q0 -19 -11 -31t-30 -12q-18 0 -29 12t-11 31zM1786 75q0 18 11.5 30.5t29.5 12.5t29.5 -12.5t11.5 -30.5q0 -19 -11.5 -31t-29.5 -12t-29.5 12.5t-11.5 30.5zM1944 3q-2 0 -4 1q-1 0 -3 2t-2 3q-1 2 -1 4
q0 3 1 4q0 2 2 4l1 1q2 0 2 1q2 1 4 1q3 0 4 -1l4 -2l2 -4v-1q1 -2 1 -3l-1 -1v-3t-1 -1l-1 -2q-2 -2 -4 -2q-1 -1 -4 -1zM599 7h30v85q0 24 -14.5 38.5t-39.5 15.5q-32 0 -47 -24q-14 24 -45 24q-24 0 -39 -20v16h-30v-135h30v75q0 36 33 36q30 0 30 -36v-75h29v75
q0 36 33 36q30 0 30 -36v-75zM765 7h29v68v67h-29v-16q-17 20 -43 20q-29 0 -48 -20t-19 -51t19 -51t48 -20q28 0 43 20v-17zM943 48q0 34 -47 40l-14 2q-23 4 -23 14q0 15 25 15q23 0 43 -11l12 24q-22 14 -55 14q-26 0 -41 -12t-15 -32q0 -33 47 -39l13 -2q24 -4 24 -14
q0 -17 -31 -17q-25 0 -45 14l-13 -23q25 -17 58 -17q29 0 45.5 12t16.5 32zM1073 14l-8 25q-13 -7 -26 -7q-19 0 -19 22v61h48v27h-48v41h-30v-41h-28v-27h28v-61q0 -50 47 -50q21 0 36 10zM1159 146q-29 0 -48 -20t-19 -51q0 -32 19.5 -51.5t49.5 -19.5q33 0 55 19l-14 22
q-18 -15 -39 -15q-34 0 -41 33h101v12q0 32 -18 51.5t-46 19.5zM1318 146q-23 0 -35 -20v16h-30v-135h30v76q0 35 29 35q10 0 18 -4l9 28q-9 4 -21 4zM1348 75q0 -31 19.5 -51t52.5 -20q29 0 48 16l-14 24q-18 -13 -35 -12q-18 0 -29.5 12t-11.5 31t11.5 31t29.5 12
q19 0 35 -12l14 24q-20 16 -48 16q-33 0 -52.5 -20t-19.5 -51zM1593 7h30v68v67h-30v-16q-15 20 -42 20q-29 0 -48.5 -20t-19.5 -51t19.5 -51t48.5 -20q28 0 42 20v-17zM1726 146q-23 0 -35 -20v16h-29v-135h29v76q0 35 29 35q10 0 18 -4l9 28q-8 4 -21 4zM1866 7h29v68v122
h-29v-71q-15 20 -43 20t-47.5 -20.5t-19.5 -50.5t19.5 -50.5t47.5 -20.5q29 0 43 20v-17zM1944 27l-2 -1h-3q-2 -1 -4 -3q-3 -1 -3 -4q-1 -2 -1 -6q0 -3 1 -5q0 -2 3 -4q2 -2 4 -3t5 -1q4 0 6 1q0 1 2 2l2 1q1 1 3 4q1 2 1 5q0 4 -1 6q-1 1 -3 4q0 1 -2 2l-2 1q-1 0 -3 0.5
t-3 0.5zM2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h2048q52 0 90 -38t38 -90z" />
    <glyph glyph-name="_467" unicode="&#xf1f2;" horiz-adv-x="2304" 
d="M313 759q0 -51 -36 -84q-29 -26 -89 -26h-17v220h17q61 0 89 -27q36 -31 36 -83zM2089 824q0 -52 -64 -52h-19v101h20q63 0 63 -49zM380 759q0 74 -50 120.5t-129 46.5h-95v-333h95q74 0 119 38q60 51 60 128zM410 593h65v333h-65v-333zM730 694q0 40 -20.5 62t-75.5 42
q-29 10 -39.5 19t-10.5 23q0 16 13.5 26.5t34.5 10.5q29 0 53 -27l34 44q-41 37 -98 37q-44 0 -74 -27.5t-30 -67.5q0 -35 18 -55.5t64 -36.5q37 -13 45 -19q19 -12 19 -34q0 -20 -14 -33.5t-36 -13.5q-48 0 -71 44l-42 -40q44 -64 115 -64q51 0 83 30.5t32 79.5zM1008 604
v77q-37 -37 -78 -37q-49 0 -80.5 32.5t-31.5 82.5q0 48 31.5 81.5t77.5 33.5q43 0 81 -38v77q-40 20 -80 20q-74 0 -125.5 -50.5t-51.5 -123.5t51 -123.5t125 -50.5q42 0 81 19zM2240 0v527q-65 -40 -144.5 -84t-237.5 -117t-329.5 -137.5t-417.5 -134.5t-504 -118h1569
q26 0 45 19t19 45zM1389 757q0 75 -53 128t-128 53t-128 -53t-53 -128t53 -128t128 -53t128 53t53 128zM1541 584l144 342h-71l-90 -224l-89 224h-71l142 -342h35zM1714 593h184v56h-119v90h115v56h-115v74h119v57h-184v-333zM2105 593h80l-105 140q76 16 76 94q0 47 -31 73
t-87 26h-97v-333h65v133h9zM2304 1274v-1268q0 -56 -38.5 -95t-93.5 -39h-2040q-55 0 -93.5 39t-38.5 95v1268q0 56 38.5 95t93.5 39h2040q55 0 93.5 -39t38.5 -95z" />
    <glyph glyph-name="f1f3" unicode="&#xf1f3;" horiz-adv-x="2304" 
d="M119 854h89l-45 108zM740 328l74 79l-70 79h-163v-49h142v-55h-142v-54h159zM898 406l99 -110v217zM1186 453q0 33 -40 33h-84v-69h83q41 0 41 36zM1475 457q0 29 -42 29h-82v-61h81q43 0 43 32zM1197 923q0 29 -42 29h-82v-60h81q43 0 43 31zM1656 854h89l-44 108z
M699 1009v-271h-66v212l-94 -212h-57l-94 212v-212h-132l-25 60h-135l-25 -60h-70l116 271h96l110 -257v257h106l85 -184l77 184h108zM1255 453q0 -20 -5.5 -35t-14 -25t-22.5 -16.5t-26 -10t-31.5 -4.5t-31.5 -1t-32.5 0.5t-29.5 0.5v-91h-126l-80 90l-83 -90h-256v271h260
l80 -89l82 89h207q109 0 109 -89zM964 794v-56h-217v271h217v-57h-152v-49h148v-55h-148v-54h152zM2304 235v-229q0 -55 -38.5 -94.5t-93.5 -39.5h-2040q-55 0 -93.5 39.5t-38.5 94.5v678h111l25 61h55l25 -61h218v46l19 -46h113l20 47v-47h541v99l10 1q10 0 10 -14v-86h279
v23q23 -12 55 -18t52.5 -6.5t63 0.5t51.5 1l25 61h56l25 -61h227v58l34 -58h182v378h-180v-44l-25 44h-185v-44l-23 44h-249q-69 0 -109 -22v22h-172v-22q-24 22 -73 22h-628l-43 -97l-43 97h-198v-44l-22 44h-169l-78 -179v391q0 55 38.5 94.5t93.5 39.5h2040
q55 0 93.5 -39.5t38.5 -94.5v-678h-120q-51 0 -81 -22v22h-177q-55 0 -78 -22v22h-316v-22q-31 22 -87 22h-209v-22q-23 22 -91 22h-234l-54 -58l-50 58h-349v-378h343l55 59l52 -59h211v89h21q59 0 90 13v-102h174v99h8q8 0 10 -2t2 -10v-87h529q57 0 88 24v-24h168
q60 0 95 17zM1546 469q0 -23 -12 -43t-34 -29q25 -9 34 -26t9 -46v-54h-65v45q0 33 -12 43.5t-46 10.5h-69v-99h-65v271h154q48 0 77 -15t29 -58zM1269 936q0 -24 -12.5 -44t-33.5 -29q26 -9 34.5 -25.5t8.5 -46.5v-53h-65q0 9 0.5 26.5t0 25t-3 18.5t-8.5 16t-17.5 8.5
t-29.5 3.5h-70v-98h-64v271l153 -1q49 0 78 -14.5t29 -57.5zM1798 327v-56h-216v271h216v-56h-151v-49h148v-55h-148v-54zM1372 1009v-271h-66v271h66zM2065 357q0 -86 -102 -86h-126v58h126q34 0 34 25q0 16 -17 21t-41.5 5t-49.5 3.5t-42 22.5t-17 55q0 39 26 60t66 21
h130v-57h-119q-36 0 -36 -25q0 -16 17.5 -20.5t42 -4t49 -2.5t42 -21.5t17.5 -54.5zM2304 407v-101q-24 -35 -88 -35h-125v58h125q33 0 33 25q0 13 -12.5 19t-31 5.5t-40 2t-40 8t-31 24t-12.5 48.5q0 39 26.5 60t66.5 21h129v-57h-118q-36 0 -36 -25q0 -20 29 -22t68.5 -5
t56.5 -26zM2139 1008v-270h-92l-122 203v-203h-132l-26 60h-134l-25 -60h-75q-129 0 -129 133q0 138 133 138h63v-59q-7 0 -28 1t-28.5 0.5t-23 -2t-21.5 -6.5t-14.5 -13.5t-11.5 -23t-3 -33.5q0 -38 13.5 -58t49.5 -20h29l92 213h97l109 -256v256h99l114 -188v188h66z" />
    <glyph glyph-name="_469" unicode="&#xf1f4;" horiz-adv-x="2304" 
d="M745 630q0 -37 -25.5 -61.5t-62.5 -24.5q-29 0 -46.5 16t-17.5 44q0 37 25 62.5t62 25.5q28 0 46.5 -16.5t18.5 -45.5zM1530 779q0 -42 -22 -57t-66 -15l-32 -1l17 107q2 11 13 11h18q22 0 35 -2t25 -12.5t12 -30.5zM1881 630q0 -36 -25.5 -61t-61.5 -25q-29 0 -47 16
t-18 44q0 37 25 62.5t62 25.5q28 0 46.5 -16.5t18.5 -45.5zM513 801q0 59 -38.5 85.5t-100.5 26.5h-160q-19 0 -21 -19l-65 -408q-1 -6 3 -11t10 -5h76q20 0 22 19l18 110q1 8 7 13t15 6.5t17 1.5t19 -1t14 -1q86 0 135 48.5t49 134.5zM822 489l41 261q1 6 -3 11t-10 5h-76
q-14 0 -17 -33q-27 40 -95 40q-72 0 -122.5 -54t-50.5 -127q0 -59 34.5 -94t92.5 -35q28 0 58 12t48 32q-4 -12 -4 -21q0 -16 13 -16h69q19 0 22 19zM1269 752q0 5 -4 9.5t-9 4.5h-77q-11 0 -18 -10l-106 -156l-44 150q-5 16 -22 16h-75q-5 0 -9 -4.5t-4 -9.5q0 -2 19.5 -59
t42 -123t23.5 -70q-82 -112 -82 -120q0 -13 13 -13h77q11 0 18 10l255 368q2 2 2 7zM1649 801q0 59 -38.5 85.5t-100.5 26.5h-159q-20 0 -22 -19l-65 -408q-1 -6 3 -11t10 -5h82q12 0 16 13l18 116q1 8 7 13t15 6.5t17 1.5t19 -1t14 -1q86 0 135 48.5t49 134.5zM1958 489
l41 261q1 6 -3 11t-10 5h-76q-14 0 -17 -33q-26 40 -95 40q-72 0 -122.5 -54t-50.5 -127q0 -59 34.5 -94t92.5 -35q29 0 59 12t47 32q0 -1 -2 -9t-2 -12q0 -16 13 -16h69q19 0 22 19zM2176 898v1q0 14 -13 14h-74q-11 0 -13 -11l-65 -416l-1 -2q0 -5 4 -9.5t10 -4.5h66
q19 0 21 19zM392 764q-5 -35 -26 -46t-60 -11l-33 -1l17 107q2 11 13 11h19q40 0 58 -11.5t12 -48.5zM2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h2048q52 0 90 -38t38 -90z" />
    <glyph glyph-name="_470" unicode="&#xf1f5;" horiz-adv-x="2304" 
d="M1597 633q0 -69 -21 -106q-19 -35 -52 -35q-23 0 -41 9v224q29 30 57 30q57 0 57 -122zM2035 669h-110q6 98 56 98q51 0 54 -98zM476 534q0 59 -33 91.5t-101 57.5q-36 13 -52 24t-16 25q0 26 38 26q58 0 124 -33l18 112q-67 32 -149 32q-77 0 -123 -38q-48 -39 -48 -109
q0 -58 32.5 -90.5t99.5 -56.5q39 -14 54.5 -25.5t15.5 -27.5q0 -31 -48 -31q-29 0 -70 12.5t-72 30.5l-18 -113q72 -41 168 -41q81 0 129 37q51 41 51 117zM771 749l19 111h-96v135l-129 -21l-18 -114l-46 -8l-17 -103h62v-219q0 -84 44 -120q38 -30 111 -30q32 0 79 11v118
q-32 -7 -44 -7q-42 0 -42 50v197h77zM1087 724v139q-15 3 -28 3q-32 0 -55.5 -16t-33.5 -46l-10 56h-131v-471h150v306q26 31 82 31q16 0 26 -2zM1124 389h150v471h-150v-471zM1746 638q0 122 -45 179q-40 52 -111 52q-64 0 -117 -56l-8 47h-132v-645l150 25v151
q36 -11 68 -11q83 0 134 56q61 65 61 202zM1278 986q0 33 -23 56t-56 23t-56 -23t-23 -56t23 -56.5t56 -23.5t56 23.5t23 56.5zM2176 629q0 113 -48 176q-50 64 -144 64q-96 0 -151.5 -66t-55.5 -180q0 -128 63 -188q55 -55 161 -55q101 0 160 40l-16 103q-57 -31 -128 -31
q-43 0 -63 19q-23 19 -28 66h248q2 14 2 52zM2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h2048q52 0 90 -38t38 -90z" />
    <glyph glyph-name="_471" unicode="&#xf1f6;" horiz-adv-x="2048" 
d="M1558 684q61 -356 298 -556q0 -52 -38 -90t-90 -38h-448q0 -106 -75 -181t-181 -75t-180.5 74.5t-75.5 180.5zM1024 -176q16 0 16 16t-16 16q-59 0 -101.5 42.5t-42.5 101.5q0 16 -16 16t-16 -16q0 -73 51.5 -124.5t124.5 -51.5zM2026 1424q8 -10 7.5 -23.5t-10.5 -22.5
l-1872 -1622q-10 -8 -23.5 -7t-21.5 11l-84 96q-8 10 -7.5 23.5t10.5 21.5l186 161q-19 32 -19 66q50 42 91 88t85 119.5t74.5 158.5t50 206t19.5 260q0 152 117 282.5t307 158.5q-8 19 -8 39q0 40 28 68t68 28t68 -28t28 -68q0 -20 -8 -39q124 -18 219 -82.5t148 -157.5
l418 363q10 8 23.5 7t21.5 -11z" />
    <glyph glyph-name="_472" unicode="&#xf1f7;" horiz-adv-x="2048" 
d="M1040 -160q0 16 -16 16q-59 0 -101.5 42.5t-42.5 101.5q0 16 -16 16t-16 -16q0 -73 51.5 -124.5t124.5 -51.5q16 0 16 16zM503 315l877 760q-42 88 -132.5 146.5t-223.5 58.5q-93 0 -169.5 -31.5t-121.5 -80.5t-69 -103t-24 -105q0 -384 -137 -645zM1856 128
q0 -52 -38 -90t-90 -38h-448q0 -106 -75 -181t-181 -75t-180.5 74.5t-75.5 180.5l149 129h757q-166 187 -227 459l111 97q61 -356 298 -556zM1942 1520l84 -96q8 -10 7.5 -23.5t-10.5 -22.5l-1872 -1622q-10 -8 -23.5 -7t-21.5 11l-84 96q-8 10 -7.5 23.5t10.5 21.5l186 161
q-19 32 -19 66q50 42 91 88t85 119.5t74.5 158.5t50 206t19.5 260q0 152 117 282.5t307 158.5q-8 19 -8 39q0 40 28 68t68 28t68 -28t28 -68q0 -20 -8 -39q124 -18 219 -82.5t148 -157.5l418 363q10 8 23.5 7t21.5 -11z" />
    <glyph glyph-name="_473" unicode="&#xf1f8;" horiz-adv-x="1408" 
d="M512 160v704q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-704q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM768 160v704q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-704q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1024 160v704q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-704
q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM480 1152h448l-48 117q-7 9 -17 11h-317q-10 -2 -17 -11zM1408 1120v-64q0 -14 -9 -23t-23 -9h-96v-948q0 -83 -47 -143.5t-113 -60.5h-832q-66 0 -113 58.5t-47 141.5v952h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h309l70 167
q15 37 54 63t79 26h320q40 0 79 -26t54 -63l70 -167h309q14 0 23 -9t9 -23z" />
    <glyph glyph-name="_474" unicode="&#xf1f9;" 
d="M1150 462v-109q0 -50 -36.5 -89t-94 -60.5t-118 -32.5t-117.5 -11q-205 0 -342.5 139t-137.5 346q0 203 136 339t339 136q34 0 75.5 -4.5t93 -18t92.5 -34t69 -56.5t28 -81v-109q0 -16 -16 -16h-118q-16 0 -16 16v70q0 43 -65.5 67.5t-137.5 24.5q-140 0 -228.5 -91.5
t-88.5 -237.5q0 -151 91.5 -249.5t233.5 -98.5q68 0 138 24t70 66v70q0 7 4.5 11.5t10.5 4.5h119q6 0 11 -4.5t5 -11.5zM768 1280q-130 0 -248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5
t-51 248.5t-136.5 204t-204 136.5t-248.5 51zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
    <glyph glyph-name="_475" unicode="&#xf1fa;" 
d="M972 761q0 108 -53.5 169t-147.5 61q-63 0 -124 -30.5t-110 -84.5t-79.5 -137t-30.5 -180q0 -112 53.5 -173t150.5 -61q96 0 176 66.5t122.5 166t42.5 203.5zM1536 640q0 -111 -37 -197t-98.5 -135t-131.5 -74.5t-145 -27.5q-6 0 -15.5 -0.5t-16.5 -0.5q-95 0 -142 53
q-28 33 -33 83q-52 -66 -131.5 -110t-173.5 -44q-161 0 -249.5 95.5t-88.5 269.5q0 157 66 290t179 210.5t246 77.5q87 0 155 -35.5t106 -99.5l2 19l11 56q1 6 5.5 12t9.5 6h118q5 0 13 -11q5 -5 3 -16l-120 -614q-5 -24 -5 -48q0 -39 12.5 -52t44.5 -13q28 1 57 5.5t73 24
t77 50t57 89.5t24 137q0 292 -174 466t-466 174q-130 0 -248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51q228 0 405 144q11 9 24 8t21 -12l41 -49q8 -12 7 -24q-2 -13 -12 -22q-102 -83 -227.5 -128t-258.5 -45q-156 0 -298 61
t-245 164t-164 245t-61 298t61 298t164 245t245 164t298 61q344 0 556 -212t212 -556z" />
    <glyph glyph-name="_476" unicode="&#xf1fb;" horiz-adv-x="1792" 
d="M1698 1442q94 -94 94 -226.5t-94 -225.5l-225 -223l104 -104q10 -10 10 -23t-10 -23l-210 -210q-10 -10 -23 -10t-23 10l-105 105l-603 -603q-37 -37 -90 -37h-203l-256 -128l-64 64l128 256v203q0 53 37 90l603 603l-105 105q-10 10 -10 23t10 23l210 210q10 10 23 10
t23 -10l104 -104l223 225q93 94 225.5 94t226.5 -94zM512 64l576 576l-192 192l-576 -576v-192h192z" />
    <glyph glyph-name="f1fc" unicode="&#xf1fc;" horiz-adv-x="1792" 
d="M1615 1536q70 0 122.5 -46.5t52.5 -116.5q0 -63 -45 -151q-332 -629 -465 -752q-97 -91 -218 -91q-126 0 -216.5 92.5t-90.5 219.5q0 128 92 212l638 579q59 54 130 54zM706 502q39 -76 106.5 -130t150.5 -76l1 -71q4 -213 -129.5 -347t-348.5 -134q-123 0 -218 46.5
t-152.5 127.5t-86.5 183t-29 220q7 -5 41 -30t62 -44.5t59 -36.5t46 -17q41 0 55 37q25 66 57.5 112.5t69.5 76t88 47.5t103 25.5t125 10.5z" />
    <glyph glyph-name="_478" unicode="&#xf1fd;" horiz-adv-x="1792" 
d="M1792 128v-384h-1792v384q45 0 85 14t59 27.5t47 37.5q30 27 51.5 38t56.5 11q24 0 44 -7t31 -15t33 -27q29 -25 47 -38t58 -27t86 -14q45 0 85 14.5t58 27t48 37.5q21 19 32.5 27t31 15t43.5 7q35 0 56.5 -11t51.5 -38q28 -24 47 -37.5t59 -27.5t85 -14t85 14t59 27.5
t47 37.5q30 27 51.5 38t56.5 11q34 0 55.5 -11t51.5 -38q28 -24 47 -37.5t59 -27.5t85 -14zM1792 448v-192q-24 0 -44 7t-31 15t-33 27q-29 25 -47 38t-58 27t-85 14q-46 0 -86 -14t-58 -27t-47 -38q-22 -19 -33 -27t-31 -15t-44 -7q-35 0 -56.5 11t-51.5 38q-29 25 -47 38
t-58 27t-86 14q-45 0 -85 -14.5t-58 -27t-48 -37.5q-21 -19 -32.5 -27t-31 -15t-43.5 -7q-35 0 -56.5 11t-51.5 38q-28 24 -47 37.5t-59 27.5t-85 14q-46 0 -86 -14t-58 -27t-47 -38q-30 -27 -51.5 -38t-56.5 -11v192q0 80 56 136t136 56h64v448h256v-448h256v448h256v-448
h256v448h256v-448h64q80 0 136 -56t56 -136zM512 1312q0 -77 -36 -118.5t-92 -41.5q-53 0 -90.5 37.5t-37.5 90.5q0 29 9.5 51t23.5 34t31 28t31 31.5t23.5 44.5t9.5 67q38 0 83 -74t45 -150zM1024 1312q0 -77 -36 -118.5t-92 -41.5q-53 0 -90.5 37.5t-37.5 90.5
q0 29 9.5 51t23.5 34t31 28t31 31.5t23.5 44.5t9.5 67q38 0 83 -74t45 -150zM1536 1312q0 -77 -36 -118.5t-92 -41.5q-53 0 -90.5 37.5t-37.5 90.5q0 29 9.5 51t23.5 34t31 28t31 31.5t23.5 44.5t9.5 67q38 0 83 -74t45 -150z" />
    <glyph glyph-name="_479" unicode="&#xf1fe;" horiz-adv-x="2048" 
d="M2048 0v-128h-2048v1536h128v-1408h1920zM1664 1024l256 -896h-1664v576l448 576l576 -576z" />
    <glyph glyph-name="_480" unicode="&#xf200;" horiz-adv-x="1792" 
d="M768 646l546 -546q-106 -108 -247.5 -168t-298.5 -60q-209 0 -385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103v-762zM955 640h773q0 -157 -60 -298.5t-168 -247.5zM1664 768h-768v768q209 0 385.5 -103t279.5 -279.5t103 -385.5z" />
    <glyph glyph-name="_481" unicode="&#xf201;" horiz-adv-x="2048" 
d="M2048 0v-128h-2048v1536h128v-1408h1920zM1920 1248v-435q0 -21 -19.5 -29.5t-35.5 7.5l-121 121l-633 -633q-10 -10 -23 -10t-23 10l-233 233l-416 -416l-192 192l585 585q10 10 23 10t23 -10l233 -233l464 464l-121 121q-16 16 -7.5 35.5t29.5 19.5h435q14 0 23 -9
t9 -23z" />
    <glyph glyph-name="_482" unicode="&#xf202;" horiz-adv-x="1792" 
d="M1292 832q0 -6 10 -41q10 -29 25 -49.5t41 -34t44 -20t55 -16.5q325 -91 325 -332q0 -146 -105.5 -242.5t-254.5 -96.5q-59 0 -111.5 18.5t-91.5 45.5t-77 74.5t-63 87.5t-53.5 103.5t-43.5 103t-39.5 106.5t-35.5 95q-32 81 -61.5 133.5t-73.5 96.5t-104 64t-142 20
q-96 0 -183 -55.5t-138 -144.5t-51 -185q0 -160 106.5 -279.5t263.5 -119.5q177 0 258 95q56 63 83 116l84 -152q-15 -34 -44 -70l1 -1q-131 -152 -388 -152q-147 0 -269.5 79t-190.5 207.5t-68 274.5q0 105 43.5 206t116 176.5t172 121.5t204.5 46q87 0 159 -19t123.5 -50
t95 -80t72.5 -99t58.5 -117t50.5 -124.5t50 -130.5t55 -127q96 -200 233 -200q81 0 138.5 48.5t57.5 128.5q0 42 -19 72t-50.5 46t-72.5 31.5t-84.5 27t-87.5 34t-81 52t-65 82t-39 122.5q-3 16 -3 33q0 110 87.5 192t198.5 78q78 -3 120.5 -14.5t90.5 -53.5h-1
q12 -11 23 -24.5t26 -36t19 -27.5l-129 -99q-26 49 -54 70v1q-23 21 -97 21q-49 0 -84 -33t-35 -83z" />
    <glyph glyph-name="_483" unicode="&#xf203;" 
d="M1432 484q0 173 -234 239q-35 10 -53 16.5t-38 25t-29 46.5q0 2 -2 8.5t-3 12t-1 7.5q0 36 24.5 59.5t60.5 23.5q54 0 71 -15h-1q20 -15 39 -51l93 71q-39 54 -49 64q-33 29 -67.5 39t-85.5 10q-80 0 -142 -57.5t-62 -137.5q0 -7 2 -23q16 -96 64.5 -140t148.5 -73
q29 -8 49 -15.5t45 -21.5t38.5 -34.5t13.5 -46.5v-5q1 -58 -40.5 -93t-100.5 -35q-97 0 -167 144q-23 47 -51.5 121.5t-48 125.5t-54 110.5t-74 95.5t-103.5 60.5t-147 24.5q-101 0 -192 -56t-144 -148t-50 -192v-1q4 -108 50.5 -199t133.5 -147.5t196 -56.5q186 0 279 110
q20 27 31 51l-60 109q-42 -80 -99 -116t-146 -36q-115 0 -191 87t-76 204q0 105 82 189t186 84q112 0 170 -53.5t104 -172.5q8 -21 25.5 -68.5t28.5 -76.5t31.5 -74.5t38.5 -74t45.5 -62.5t55.5 -53.5t66 -33t80 -13.5q107 0 183 69.5t76 174.5zM1536 1120v-960
q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
    <glyph glyph-name="_484" unicode="&#xf204;" horiz-adv-x="2048" 
d="M1152 640q0 104 -40.5 198.5t-109.5 163.5t-163.5 109.5t-198.5 40.5t-198.5 -40.5t-163.5 -109.5t-109.5 -163.5t-40.5 -198.5t40.5 -198.5t109.5 -163.5t163.5 -109.5t198.5 -40.5t198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5zM1920 640q0 104 -40.5 198.5
t-109.5 163.5t-163.5 109.5t-198.5 40.5h-386q119 -90 188.5 -224t69.5 -288t-69.5 -288t-188.5 -224h386q104 0 198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5zM2048 640q0 -130 -51 -248.5t-136.5 -204t-204 -136.5t-248.5 -51h-768q-130 0 -248.5 51t-204 136.5
t-136.5 204t-51 248.5t51 248.5t136.5 204t204 136.5t248.5 51h768q130 0 248.5 -51t204 -136.5t136.5 -204t51 -248.5z" />
    <glyph glyph-name="_485" unicode="&#xf205;" horiz-adv-x="2048" 
d="M0 640q0 130 51 248.5t136.5 204t204 136.5t248.5 51h768q130 0 248.5 -51t204 -136.5t136.5 -204t51 -248.5t-51 -248.5t-136.5 -204t-204 -136.5t-248.5 -51h-768q-130 0 -248.5 51t-204 136.5t-136.5 204t-51 248.5zM1408 128q104 0 198.5 40.5t163.5 109.5
t109.5 163.5t40.5 198.5t-40.5 198.5t-109.5 163.5t-163.5 109.5t-198.5 40.5t-198.5 -40.5t-163.5 -109.5t-109.5 -163.5t-40.5 -198.5t40.5 -198.5t109.5 -163.5t163.5 -109.5t198.5 -40.5z" />
    <glyph glyph-name="_486" unicode="&#xf206;" horiz-adv-x="2304" 
d="M762 384h-314q-40 0 -57.5 35t6.5 67l188 251q-65 31 -137 31q-132 0 -226 -94t-94 -226t94 -226t226 -94q115 0 203 72.5t111 183.5zM576 512h186q-18 85 -75 148zM1056 512l288 384h-480l-99 -132q105 -103 126 -252h165zM2176 448q0 132 -94 226t-226 94
q-60 0 -121 -24l174 -260q15 -23 10 -49t-27 -40q-15 -11 -36 -11q-35 0 -53 29l-174 260q-93 -95 -93 -225q0 -132 94 -226t226 -94t226 94t94 226zM2304 448q0 -185 -131.5 -316.5t-316.5 -131.5t-316.5 131.5t-131.5 316.5q0 97 39.5 183.5t109.5 149.5l-65 98l-353 -469
q-18 -26 -51 -26h-197q-23 -164 -149 -274t-294 -110q-185 0 -316.5 131.5t-131.5 316.5t131.5 316.5t316.5 131.5q114 0 215 -55l137 183h-224q-26 0 -45 19t-19 45t19 45t45 19h384v-128h435l-85 128h-222q-26 0 -45 19t-19 45t19 45t45 19h256q33 0 53 -28l267 -400
q91 44 192 44q185 0 316.5 -131.5t131.5 -316.5z" />
    <glyph glyph-name="_487" unicode="&#xf207;" 
d="M384 320q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1408 320q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1362 716l-72 384q-5 23 -22.5 37.5t-40.5 14.5
h-918q-23 0 -40.5 -14.5t-22.5 -37.5l-72 -384q-5 -30 14 -53t49 -23h1062q30 0 49 23t14 53zM1136 1328q0 20 -14 34t-34 14h-640q-20 0 -34 -14t-14 -34t14 -34t34 -14h640q20 0 34 14t14 34zM1536 603v-603h-128v-128q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5
t-37.5 90.5v128h-768v-128q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5v128h-128v603q0 112 25 223l103 454q9 78 97.5 137t230 89t312.5 30t312.5 -30t230 -89t97.5 -137l105 -454q23 -102 23 -223z" />
    <glyph glyph-name="_488" unicode="&#xf208;" horiz-adv-x="2048" 
d="M1463 704q0 -35 -25 -60.5t-61 -25.5h-702q-36 0 -61 25.5t-25 60.5t25 60.5t61 25.5h702q36 0 61 -25.5t25 -60.5zM1677 704q0 86 -23 170h-982q-36 0 -61 25t-25 60q0 36 25 61t61 25h908q-88 143 -235 227t-320 84q-177 0 -327.5 -87.5t-238 -237.5t-87.5 -327
q0 -86 23 -170h982q36 0 61 -25t25 -60q0 -36 -25 -61t-61 -25h-908q88 -143 235.5 -227t320.5 -84q132 0 253 51.5t208 139t139 208t52 253.5zM2048 959q0 -35 -25 -60t-61 -25h-131q17 -85 17 -170q0 -167 -65.5 -319.5t-175.5 -263t-262.5 -176t-319.5 -65.5
q-246 0 -448.5 133t-301.5 350h-189q-36 0 -61 25t-25 61q0 35 25 60t61 25h132q-17 85 -17 170q0 167 65.5 319.5t175.5 263t262.5 176t320.5 65.5q245 0 447.5 -133t301.5 -350h188q36 0 61 -25t25 -61z" />
    <glyph glyph-name="_489" unicode="&#xf209;" horiz-adv-x="1280" 
d="M953 1158l-114 -328l117 -21q165 451 165 518q0 56 -38 56q-57 0 -130 -225zM654 471l33 -88q37 42 71 67l-33 5.5t-38.5 7t-32.5 8.5zM362 1367q0 -98 159 -521q17 10 49 10q15 0 75 -5l-121 351q-75 220 -123 220q-19 0 -29 -17.5t-10 -37.5zM283 608q0 -36 51.5 -119
t117.5 -153t100 -70q14 0 25.5 13t11.5 27q0 24 -32 102q-13 32 -32 72t-47.5 89t-61.5 81t-62 32q-20 0 -45.5 -27t-25.5 -47zM125 273q0 -41 25 -104q59 -145 183.5 -227t281.5 -82q227 0 382 170q152 169 152 427q0 43 -1 67t-11.5 62t-30.5 56q-56 49 -211.5 75.5
t-270.5 26.5q-37 0 -49 -11q-12 -5 -12 -35q0 -34 21.5 -60t55.5 -40t77.5 -23.5t87.5 -11.5t85 -4t70 0h23q24 0 40 -19q15 -19 19 -55q-28 -28 -96 -54q-61 -22 -93 -46q-64 -46 -108.5 -114t-44.5 -137q0 -31 18.5 -88.5t18.5 -87.5l-3 -12q-4 -12 -4 -14
q-137 10 -146 216q-8 -2 -41 -2q2 -7 2 -21q0 -53 -40.5 -89.5t-94.5 -36.5q-82 0 -166.5 78t-84.5 159q0 34 33 67q52 -64 60 -76q77 -104 133 -104q12 0 26.5 8.5t14.5 20.5q0 34 -87.5 145t-116.5 111q-43 0 -70 -44.5t-27 -90.5zM11 264q0 101 42.5 163t136.5 88
q-28 74 -28 104q0 62 61 123t122 61q29 0 70 -15q-163 462 -163 567q0 80 41 130.5t119 50.5q131 0 325 -581q6 -17 8 -23q6 16 29 79.5t43.5 118.5t54 127.5t64.5 123t70.5 86.5t76.5 36q71 0 112 -49t41 -122q0 -108 -159 -550q61 -15 100.5 -46t58.5 -78t26 -93.5
t7 -110.5q0 -150 -47 -280t-132 -225t-211 -150t-278 -55q-111 0 -223 42q-149 57 -258 191.5t-109 286.5z" />
    <glyph glyph-name="_490" unicode="&#xf20a;" horiz-adv-x="2048" 
d="M785 528h207q-14 -158 -98.5 -248.5t-214.5 -90.5q-162 0 -254.5 116t-92.5 316q0 194 93 311.5t233 117.5q148 0 232 -87t97 -247h-203q-5 64 -35.5 99t-81.5 35q-57 0 -88.5 -60.5t-31.5 -177.5q0 -48 5 -84t18 -69.5t40 -51.5t66 -18q95 0 109 139zM1497 528h206
q-14 -158 -98 -248.5t-214 -90.5q-162 0 -254.5 116t-92.5 316q0 194 93 311.5t233 117.5q148 0 232 -87t97 -247h-204q-4 64 -35 99t-81 35q-57 0 -88.5 -60.5t-31.5 -177.5q0 -48 5 -84t18 -69.5t39.5 -51.5t65.5 -18q49 0 76.5 38t33.5 101zM1856 647q0 207 -15.5 307
t-60.5 161q-6 8 -13.5 14t-21.5 15t-16 11q-86 63 -697 63q-625 0 -710 -63q-5 -4 -17.5 -11.5t-21 -14t-14.5 -14.5q-45 -60 -60 -159.5t-15 -308.5q0 -208 15 -307.5t60 -160.5q6 -8 15 -15t20.5 -14t17.5 -12q44 -33 239.5 -49t470.5 -16q610 0 697 65q5 4 17 11t20.5 14
t13.5 16q46 60 61 159t15 309zM2048 1408v-1536h-2048v1536h2048z" />
    <glyph glyph-name="_491" unicode="&#xf20b;" 
d="M992 912v-496q0 -14 -9 -23t-23 -9h-160q-14 0 -23 9t-9 23v496q0 112 -80 192t-192 80h-272v-1152q0 -14 -9 -23t-23 -9h-160q-14 0 -23 9t-9 23v1344q0 14 9 23t23 9h464q135 0 249 -66.5t180.5 -180.5t66.5 -249zM1376 1376v-880q0 -135 -66.5 -249t-180.5 -180.5
t-249 -66.5h-464q-14 0 -23 9t-9 23v960q0 14 9 23t23 9h160q14 0 23 -9t9 -23v-768h272q112 0 192 80t80 192v880q0 14 9 23t23 9h160q14 0 23 -9t9 -23z" />
    <glyph glyph-name="_492" unicode="&#xf20c;" 
d="M1311 694v-114q0 -24 -13.5 -38t-37.5 -14h-202q-24 0 -38 14t-14 38v114q0 24 14 38t38 14h202q24 0 37.5 -14t13.5 -38zM821 464v250q0 53 -32.5 85.5t-85.5 32.5h-133q-68 0 -96 -52q-28 52 -96 52h-130q-53 0 -85.5 -32.5t-32.5 -85.5v-250q0 -22 21 -22h55
q22 0 22 22v230q0 24 13.5 38t38.5 14h94q24 0 38 -14t14 -38v-230q0 -22 21 -22h54q22 0 22 22v230q0 24 14 38t38 14h97q24 0 37.5 -14t13.5 -38v-230q0 -22 22 -22h55q21 0 21 22zM1410 560v154q0 53 -33 85.5t-86 32.5h-264q-53 0 -86 -32.5t-33 -85.5v-410
q0 -21 22 -21h55q21 0 21 21v180q31 -42 94 -42h191q53 0 86 32.5t33 85.5zM1536 1176v-1072q0 -96 -68 -164t-164 -68h-1072q-96 0 -164 68t-68 164v1072q0 96 68 164t164 68h1072q96 0 164 -68t68 -164z" />
    <glyph glyph-name="_493" unicode="&#xf20d;" 
d="M915 450h-294l147 551zM1001 128h311l-324 1024h-440l-324 -1024h311l383 314zM1536 1120v-960q0 -118 -85 -203t-203 -85h-960q-118 0 -203 85t-85 203v960q0 118 85 203t203 85h960q118 0 203 -85t85 -203z" />
    <glyph glyph-name="_494" unicode="&#xf20e;" horiz-adv-x="2048" 
d="M2048 641q0 -21 -13 -36.5t-33 -19.5l-205 -356q3 -9 3 -18q0 -20 -12.5 -35.5t-32.5 -19.5l-193 -337q3 -8 3 -16q0 -23 -16.5 -40t-40.5 -17q-25 0 -41 18h-400q-17 -20 -43 -20t-43 20h-399q-17 -20 -43 -20q-23 0 -40 16.5t-17 40.5q0 8 4 20l-193 335
q-20 4 -32.5 19.5t-12.5 35.5q0 9 3 18l-206 356q-20 5 -32.5 20.5t-12.5 35.5q0 21 13.5 36.5t33.5 19.5l199 344q0 1 -0.5 3t-0.5 3q0 36 34 51l209 363q-4 10 -4 18q0 24 17 40.5t40 16.5q26 0 44 -21h396q16 21 43 21t43 -21h398q18 21 44 21q23 0 40 -16.5t17 -40.5
q0 -6 -4 -18l207 -358q23 -1 39 -17.5t16 -38.5q0 -13 -7 -27l187 -324q19 -4 31.5 -19.5t12.5 -35.5zM1063 -158h389l-342 354h-143l-342 -354h360q18 16 39 16t39 -16zM112 654q1 -4 1 -13q0 -10 -2 -15l208 -360l15 -6l188 199v347l-187 194q-13 -8 -29 -10zM986 1438
h-388l190 -200l554 200h-280q-16 -16 -38 -16t-38 16zM1689 226q1 6 5 11l-64 68l-17 -79h76zM1583 226l22 105l-252 266l-296 -307l63 -64h463zM1495 -142l16 28l65 310h-427l333 -343q8 4 13 5zM578 -158h5l342 354h-373v-335l4 -6q14 -5 22 -13zM552 226h402l64 66
l-309 321l-157 -166v-221zM359 226h163v189l-168 -177q4 -8 5 -12zM358 1051q0 -1 0.5 -2t0.5 -2q0 -16 -8 -29l171 -177v269zM552 1121v-311l153 -157l297 314l-223 236zM556 1425l-4 -8v-264l205 74l-191 201q-6 -2 -10 -3zM1447 1438h-16l-621 -224l213 -225zM1023 946
l-297 -315l311 -319l296 307zM688 634l-136 141v-284zM1038 270l-42 -44h85zM1374 618l238 -251l132 624l-3 5l-1 1zM1718 1018q-8 13 -8 29v2l-216 376q-5 1 -13 5l-437 -463l310 -327zM522 1142v223l-163 -282zM522 196h-163l163 -283v283zM1607 196l-48 -227l130 227h-82
zM1729 266l207 361q-2 10 -2 14q0 1 3 16l-171 296l-129 -612l77 -82q5 3 15 7z" />
    <glyph glyph-name="f210" unicode="&#xf210;" 
d="M0 856q0 131 91.5 226.5t222.5 95.5h742l352 358v-1470q0 -132 -91.5 -227t-222.5 -95h-780q-131 0 -222.5 95t-91.5 227v790zM1232 102l-176 180v425q0 46 -32 79t-78 33h-484q-46 0 -78 -33t-32 -79v-492q0 -46 32.5 -79.5t77.5 -33.5h770z" />
    <glyph glyph-name="_496" unicode="&#xf211;" 
d="M934 1386q-317 -121 -556 -362.5t-358 -560.5q-20 89 -20 176q0 208 102.5 384.5t278.5 279t384 102.5q82 0 169 -19zM1203 1267q93 -65 164 -155q-389 -113 -674.5 -400.5t-396.5 -676.5q-93 72 -155 162q112 386 395 671t667 399zM470 -67q115 356 379.5 622t619.5 384
q40 -92 54 -195q-292 -120 -516 -345t-343 -518q-103 14 -194 52zM1536 -125q-193 50 -367 115q-135 -84 -290 -107q109 205 274 370.5t369 275.5q-21 -152 -101 -284q65 -175 115 -370z" />
    <glyph glyph-name="f212" unicode="&#xf212;" horiz-adv-x="2048" 
d="M1893 1144l155 -1272q-131 0 -257 57q-200 91 -393 91q-226 0 -374 -148q-148 148 -374 148q-193 0 -393 -91q-128 -57 -252 -57h-5l155 1272q224 127 482 127q233 0 387 -106q154 106 387 106q258 0 482 -127zM1398 157q129 0 232 -28.5t260 -93.5l-124 1021
q-171 78 -368 78q-224 0 -374 -141q-150 141 -374 141q-197 0 -368 -78l-124 -1021q105 43 165.5 65t148.5 39.5t178 17.5q202 0 374 -108q172 108 374 108zM1438 191l-55 907q-211 -4 -359 -155q-152 155 -374 155q-176 0 -336 -66l-114 -941q124 51 228.5 76t221.5 25
q209 0 374 -102q172 107 374 102z" />
    <glyph glyph-name="_498" unicode="&#xf213;" horiz-adv-x="2048" 
d="M1500 165v733q0 21 -15 36t-35 15h-93q-20 0 -35 -15t-15 -36v-733q0 -20 15 -35t35 -15h93q20 0 35 15t15 35zM1216 165v531q0 20 -15 35t-35 15h-101q-20 0 -35 -15t-15 -35v-531q0 -20 15 -35t35 -15h101q20 0 35 15t15 35zM924 165v429q0 20 -15 35t-35 15h-101
q-20 0 -35 -15t-15 -35v-429q0 -20 15 -35t35 -15h101q20 0 35 15t15 35zM632 165v362q0 20 -15 35t-35 15h-101q-20 0 -35 -15t-15 -35v-362q0 -20 15 -35t35 -15h101q20 0 35 15t15 35zM2048 311q0 -166 -118 -284t-284 -118h-1244q-166 0 -284 118t-118 284
q0 116 63 214.5t168 148.5q-10 34 -10 73q0 113 80.5 193.5t193.5 80.5q102 0 180 -67q45 183 194 300t338 117q149 0 275 -73.5t199.5 -199.5t73.5 -275q0 -66 -14 -122q135 -33 221 -142.5t86 -247.5z" />
    <glyph glyph-name="_499" unicode="&#xf214;" 
d="M0 1536h1536v-1392l-776 -338l-760 338v1392zM1436 209v926h-1336v-926l661 -294zM1436 1235v201h-1336v-201h1336zM181 937v-115h-37v115h37zM181 789v-115h-37v115h37zM181 641v-115h-37v115h37zM181 493v-115h-37v115h37zM181 345v-115h-37v115h37zM207 202l15 34
l105 -47l-15 -33zM343 142l15 34l105 -46l-15 -34zM478 82l15 34l105 -46l-15 -34zM614 23l15 33l104 -46l-15 -34zM797 10l105 46l15 -33l-105 -47zM932 70l105 46l15 -34l-105 -46zM1068 130l105 46l15 -34l-105 -46zM1203 189l105 47l15 -34l-105 -46zM259 1389v-36h-114
v36h114zM421 1389v-36h-115v36h115zM583 1389v-36h-115v36h115zM744 1389v-36h-114v36h114zM906 1389v-36h-114v36h114zM1068 1389v-36h-115v36h115zM1230 1389v-36h-115v36h115zM1391 1389v-36h-114v36h114zM181 1049v-79h-37v115h115v-36h-78zM421 1085v-36h-115v36h115z
M583 1085v-36h-115v36h115zM744 1085v-36h-114v36h114zM906 1085v-36h-114v36h114zM1068 1085v-36h-115v36h115zM1230 1085v-36h-115v36h115zM1355 970v79h-78v36h115v-115h-37zM1355 822v115h37v-115h-37zM1355 674v115h37v-115h-37zM1355 526v115h37v-115h-37zM1355 378
v115h37v-115h-37zM1355 230v115h37v-115h-37zM760 265q-129 0 -221 91.5t-92 221.5q0 129 92 221t221 92q130 0 221.5 -92t91.5 -221q0 -130 -91.5 -221.5t-221.5 -91.5zM595 646q0 -36 19.5 -56.5t49.5 -25t64 -7t64 -2t49.5 -9t19.5 -30.5q0 -49 -112 -49q-97 0 -123 51
h-3l-31 -63q67 -42 162 -42q29 0 56.5 5t55.5 16t45.5 33t17.5 53q0 46 -27.5 69.5t-67.5 27t-79.5 3t-67 5t-27.5 25.5q0 21 20.5 33t40.5 15t41 3q34 0 70.5 -11t51.5 -34h3l30 58q-3 1 -21 8.5t-22.5 9t-19.5 7t-22 7t-20 4.5t-24 4t-23 1q-29 0 -56.5 -5t-54 -16.5
t-43 -34t-16.5 -53.5z" />
    <glyph glyph-name="_500" unicode="&#xf215;" horiz-adv-x="2048" 
d="M863 504q0 112 -79.5 191.5t-191.5 79.5t-191 -79.5t-79 -191.5t79 -191t191 -79t191.5 79t79.5 191zM1726 505q0 112 -79 191t-191 79t-191.5 -79t-79.5 -191q0 -113 79.5 -192t191.5 -79t191 79.5t79 191.5zM2048 1314v-1348q0 -44 -31.5 -75.5t-76.5 -31.5h-1832
q-45 0 -76.5 31.5t-31.5 75.5v1348q0 44 31.5 75.5t76.5 31.5h431q44 0 76 -31.5t32 -75.5v-161h754v161q0 44 32 75.5t76 31.5h431q45 0 76.5 -31.5t31.5 -75.5z" />
    <glyph glyph-name="_501" unicode="&#xf216;" horiz-adv-x="2048" 
d="M1430 953zM1690 749q148 0 253 -98.5t105 -244.5q0 -157 -109 -261.5t-267 -104.5q-85 0 -162 27.5t-138 73.5t-118 106t-109 126t-103.5 132.5t-108.5 126.5t-117 106t-136 73.5t-159 27.5q-154 0 -251.5 -91.5t-97.5 -244.5q0 -157 104 -250t263 -93q100 0 208 37.5
t193 98.5q5 4 21 18.5t30 24t22 9.5q14 0 24.5 -10.5t10.5 -24.5q0 -24 -60 -77q-101 -88 -234.5 -142t-260.5 -54q-133 0 -245.5 58t-180 165t-67.5 241q0 205 141.5 341t347.5 136q120 0 226.5 -43.5t185.5 -113t151.5 -153t139 -167.5t133.5 -153.5t149.5 -113
t172.5 -43.5q102 0 168.5 61.5t66.5 162.5q0 95 -64.5 159t-159.5 64q-30 0 -81.5 -18.5t-68.5 -18.5q-20 0 -35.5 15t-15.5 35q0 18 8.5 57t8.5 59q0 159 -107.5 263t-266.5 104q-58 0 -111.5 -18.5t-84 -40.5t-55.5 -40.5t-33 -18.5q-15 0 -25.5 10.5t-10.5 25.5
q0 19 25 46q59 67 147 103.5t182 36.5q191 0 318 -125.5t127 -315.5q0 -37 -4 -66q57 15 115 15z" />
    <glyph glyph-name="_502" unicode="&#xf217;" horiz-adv-x="1664" 
d="M1216 832q0 26 -19 45t-45 19h-128v128q0 26 -19 45t-45 19t-45 -19t-19 -45v-128h-128q-26 0 -45 -19t-19 -45t19 -45t45 -19h128v-128q0 -26 19 -45t45 -19t45 19t19 45v128h128q26 0 45 19t19 45zM640 0q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5
t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1536 0q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1664 1088v-512q0 -24 -16 -42.5t-41 -21.5l-1044 -122q1 -7 4.5 -21.5t6 -26.5t2.5 -22q0 -16 -24 -64h920
q26 0 45 -19t19 -45t-19 -45t-45 -19h-1024q-26 0 -45 19t-19 45q0 14 11 39.5t29.5 59.5t20.5 38l-177 823h-204q-26 0 -45 19t-19 45t19 45t45 19h256q16 0 28.5 -6.5t20 -15.5t13 -24.5t7.5 -26.5t5.5 -29.5t4.5 -25.5h1201q26 0 45 -19t19 -45z" />
    <glyph glyph-name="_503" unicode="&#xf218;" horiz-adv-x="1664" 
d="M1280 832q0 26 -19 45t-45 19t-45 -19l-147 -146v293q0 26 -19 45t-45 19t-45 -19t-19 -45v-293l-147 146q-19 19 -45 19t-45 -19t-19 -45t19 -45l256 -256q19 -19 45 -19t45 19l256 256q19 19 19 45zM640 0q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5
t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1536 0q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1664 1088v-512q0 -24 -16 -42.5t-41 -21.5l-1044 -122q1 -7 4.5 -21.5t6 -26.5t2.5 -22q0 -16 -24 -64h920
q26 0 45 -19t19 -45t-19 -45t-45 -19h-1024q-26 0 -45 19t-19 45q0 14 11 39.5t29.5 59.5t20.5 38l-177 823h-204q-26 0 -45 19t-19 45t19 45t45 19h256q16 0 28.5 -6.5t20 -15.5t13 -24.5t7.5 -26.5t5.5 -29.5t4.5 -25.5h1201q26 0 45 -19t19 -45z" />
    <glyph glyph-name="_504" unicode="&#xf219;" horiz-adv-x="2048" 
d="M212 768l623 -665l-300 665h-323zM1024 -4l349 772h-698zM538 896l204 384h-262l-288 -384h346zM1213 103l623 665h-323zM683 896h682l-204 384h-274zM1510 896h346l-288 384h-262zM1651 1382l384 -512q14 -18 13 -41.5t-17 -40.5l-960 -1024q-18 -20 -47 -20t-47 20
l-960 1024q-16 17 -17 40.5t13 41.5l384 512q18 26 51 26h1152q33 0 51 -26z" />
    <glyph glyph-name="_505" unicode="&#xf21a;" horiz-adv-x="2048" 
d="M1811 -19q19 19 45 19t45 -19l128 -128l-90 -90l-83 83l-83 -83q-18 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83
q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-128 128l90 90l83 -83l83 83q19 19 45 19t45 -19l83 -83l83 83q19 19 45 19t45 -19l83 -83l83 83q19 19 45 19t45 -19l83 -83l83 83q19 19 45 19t45 -19l83 -83l83 83q19 19 45 19t45 -19l83 -83l83 83
q19 19 45 19t45 -19l83 -83zM237 19q-19 -19 -45 -19t-45 19l-128 128l90 90l83 -82l83 82q19 19 45 19t45 -19l83 -82l64 64v293l-210 314q-17 26 -7 56.5t40 40.5l177 58v299h128v128h256v128h256v-128h256v-128h128v-299l177 -58q30 -10 40 -40.5t-7 -56.5l-210 -314
v-293l19 18q19 19 45 19t45 -19l83 -82l83 82q19 19 45 19t45 -19l128 -128l-90 -90l-83 83l-83 -83q-18 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83
q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83zM640 1152v-128l384 128l384 -128v128h-128v128h-512v-128h-128z" />
    <glyph glyph-name="_506" unicode="&#xf21b;" 
d="M576 0l96 448l-96 128l-128 64zM832 0l128 640l-128 -64l-96 -128zM992 1010q-2 4 -4 6q-10 8 -96 8q-70 0 -167 -19q-7 -2 -21 -2t-21 2q-97 19 -167 19q-86 0 -96 -8q-2 -2 -4 -6q2 -18 4 -27q2 -3 7.5 -6.5t7.5 -10.5q2 -4 7.5 -20.5t7 -20.5t7.5 -17t8.5 -17t9 -14
t12 -13.5t14 -9.5t17.5 -8t20.5 -4t24.5 -2q36 0 59 12.5t32.5 30t14.5 34.5t11.5 29.5t17.5 12.5h12q11 0 17.5 -12.5t11.5 -29.5t14.5 -34.5t32.5 -30t59 -12.5q13 0 24.5 2t20.5 4t17.5 8t14 9.5t12 13.5t9 14t8.5 17t7.5 17t7 20.5t7.5 20.5q2 7 7.5 10.5t7.5 6.5
q2 9 4 27zM1408 131q0 -121 -73 -190t-194 -69h-874q-121 0 -194 69t-73 190q0 61 4.5 118t19 125.5t37.5 123.5t63.5 103.5t93.5 74.5l-90 220h214q-22 64 -22 128q0 12 2 32q-194 40 -194 96q0 57 210 99q17 62 51.5 134t70.5 114q32 37 76 37q30 0 84 -31t84 -31t84 31
t84 31q44 0 76 -37q36 -42 70.5 -114t51.5 -134q210 -42 210 -99q0 -56 -194 -96q7 -81 -20 -160h214l-82 -225q63 -33 107.5 -96.5t65.5 -143.5t29 -151.5t8 -148.5z" />
    <glyph glyph-name="_507" unicode="&#xf21c;" horiz-adv-x="2304" 
d="M2301 500q12 -103 -22 -198.5t-99 -163.5t-158.5 -106t-196.5 -31q-161 11 -279.5 125t-134.5 274q-12 111 27.5 210.5t118.5 170.5l-71 107q-96 -80 -151 -194t-55 -244q0 -27 -18.5 -46.5t-45.5 -19.5h-256h-69q-23 -164 -149 -274t-294 -110q-185 0 -316.5 131.5
t-131.5 316.5t131.5 316.5t316.5 131.5q76 0 152 -27l24 45q-123 110 -304 110h-64q-26 0 -45 19t-19 45t19 45t45 19h128q78 0 145 -13.5t116.5 -38.5t71.5 -39.5t51 -36.5h512h115l-85 128h-222q-30 0 -49 22.5t-14 52.5q4 23 23 38t43 15h253q33 0 53 -28l70 -105
l114 114q19 19 46 19h101q26 0 45 -19t19 -45v-128q0 -26 -19 -45t-45 -19h-179l115 -172q131 63 275 36q143 -26 244 -134.5t118 -253.5zM448 128q115 0 203 72.5t111 183.5h-314q-35 0 -55 31q-18 32 -1 63l147 277q-47 13 -91 13q-132 0 -226 -94t-94 -226t94 -226
t226 -94zM1856 128q132 0 226 94t94 226t-94 226t-226 94q-60 0 -121 -24l174 -260q15 -23 10 -49t-27 -40q-15 -11 -36 -11q-35 0 -53 29l-174 260q-93 -95 -93 -225q0 -132 94 -226t226 -94z" />
    <glyph glyph-name="_508" unicode="&#xf21d;" 
d="M1408 0q0 -63 -61.5 -113.5t-164 -81t-225 -46t-253.5 -15.5t-253.5 15.5t-225 46t-164 81t-61.5 113.5q0 49 33 88.5t91 66.5t118 44.5t131 29.5q26 5 48 -10.5t26 -41.5q5 -26 -10.5 -48t-41.5 -26q-58 -10 -106 -23.5t-76.5 -25.5t-48.5 -23.5t-27.5 -19.5t-8.5 -12
q3 -11 27 -26.5t73 -33t114 -32.5t160.5 -25t201.5 -10t201.5 10t160.5 25t114 33t73 33.5t27 27.5q-1 4 -8.5 11t-27.5 19t-48.5 23.5t-76.5 25t-106 23.5q-26 4 -41.5 26t-10.5 48q4 26 26 41.5t48 10.5q71 -12 131 -29.5t118 -44.5t91 -66.5t33 -88.5zM1024 896v-384
q0 -26 -19 -45t-45 -19h-64v-384q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v384h-64q-26 0 -45 19t-19 45v384q0 53 37.5 90.5t90.5 37.5h384q53 0 90.5 -37.5t37.5 -90.5zM928 1280q0 -93 -65.5 -158.5t-158.5 -65.5t-158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5
t158.5 -65.5t65.5 -158.5z" />
    <glyph glyph-name="_509" unicode="&#xf21e;" horiz-adv-x="1792" 
d="M1280 512h305q-5 -6 -10 -10.5t-9 -7.5l-3 -4l-623 -600q-18 -18 -44 -18t-44 18l-624 602q-5 2 -21 20h369q22 0 39.5 13.5t22.5 34.5l70 281l190 -667q6 -20 23 -33t39 -13q21 0 38 13t23 33l146 485l56 -112q18 -35 57 -35zM1792 940q0 -145 -103 -300h-369l-111 221
q-8 17 -25.5 27t-36.5 8q-45 -5 -56 -46l-129 -430l-196 686q-6 20 -23.5 33t-39.5 13t-39 -13.5t-22 -34.5l-116 -464h-423q-103 155 -103 300q0 220 127 344t351 124q62 0 126.5 -21.5t120 -58t95.5 -68.5t76 -68q36 36 76 68t95.5 68.5t120 58t126.5 21.5q224 0 351 -124
t127 -344z" />
    <glyph glyph-name="venus" unicode="&#xf221;" horiz-adv-x="1280" 
d="M1152 960q0 -221 -147.5 -384.5t-364.5 -187.5v-260h224q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-224v-224q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v224h-224q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h224v260q-150 16 -271.5 103t-186 224t-52.5 292
q11 134 80.5 249t182 188t245.5 88q170 19 319 -54t236 -212t87 -306zM128 960q0 -185 131.5 -316.5t316.5 -131.5t316.5 131.5t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5z" />
    <glyph glyph-name="_511" unicode="&#xf222;" 
d="M1472 1408q26 0 45 -19t19 -45v-416q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v262l-382 -383q126 -156 126 -359q0 -117 -45.5 -223.5t-123 -184t-184 -123t-223.5 -45.5t-223.5 45.5t-184 123t-123 184t-45.5 223.5t45.5 223.5t123 184t184 123t223.5 45.5
q203 0 359 -126l382 382h-261q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h416zM576 0q185 0 316.5 131.5t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" />
    <glyph glyph-name="_512" unicode="&#xf223;" horiz-adv-x="1280" 
d="M830 1220q145 -72 233.5 -210.5t88.5 -305.5q0 -221 -147.5 -384.5t-364.5 -187.5v-132h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-96v-96q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v96h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96v132q-217 24 -364.5 187.5
t-147.5 384.5q0 167 88.5 305.5t233.5 210.5q-165 96 -228 273q-6 16 3.5 29.5t26.5 13.5h69q21 0 29 -20q44 -106 140 -171t214 -65t214 65t140 171q8 20 37 20h61q17 0 26.5 -13.5t3.5 -29.5q-63 -177 -228 -273zM576 256q185 0 316.5 131.5t131.5 316.5t-131.5 316.5
t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" />
    <glyph glyph-name="_513" unicode="&#xf224;" 
d="M1024 1504q0 14 9 23t23 9h288q26 0 45 -19t19 -45v-288q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v134l-254 -255q126 -158 126 -359q0 -221 -147.5 -384.5t-364.5 -187.5v-132h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-96v-96q0 -14 -9 -23t-23 -9h-64
q-14 0 -23 9t-9 23v96h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96v132q-149 16 -270.5 103t-186.5 223.5t-53 291.5q16 204 160 353.5t347 172.5q118 14 228 -19t198 -103l255 254h-134q-14 0 -23 9t-9 23v64zM576 256q185 0 316.5 131.5t131.5 316.5t-131.5 316.5
t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" />
    <glyph glyph-name="_514" unicode="&#xf225;" horiz-adv-x="1792" 
d="M1280 1504q0 14 9 23t23 9h288q26 0 45 -19t19 -45v-288q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v134l-254 -255q126 -158 126 -359q0 -221 -147.5 -384.5t-364.5 -187.5v-132h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-96v-96q0 -14 -9 -23t-23 -9h-64
q-14 0 -23 9t-9 23v96h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96v132q-217 24 -364.5 187.5t-147.5 384.5q0 201 126 359l-52 53l-101 -111q-9 -10 -22 -10.5t-23 7.5l-48 44q-10 8 -10.5 21.5t8.5 23.5l105 115l-111 112v-134q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9
t-9 23v288q0 26 19 45t45 19h288q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-133l106 -107l86 94q9 10 22 10.5t23 -7.5l48 -44q10 -8 10.5 -21.5t-8.5 -23.5l-90 -99l57 -56q158 126 359 126t359 -126l255 254h-134q-14 0 -23 9t-9 23v64zM832 256q185 0 316.5 131.5
t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" />
    <glyph glyph-name="_515" unicode="&#xf226;" horiz-adv-x="1792" 
d="M1790 1007q12 -155 -52.5 -292t-186 -224t-271.5 -103v-260h224q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-224v-224q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v224h-512v-224q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v224h-224q-14 0 -23 9t-9 23v64q0 14 9 23
t23 9h224v260q-150 16 -271.5 103t-186 224t-52.5 292q17 206 164.5 356.5t352.5 169.5q206 21 377 -94q171 115 377 94q205 -19 352.5 -169.5t164.5 -356.5zM896 647q128 131 128 313t-128 313q-128 -131 -128 -313t128 -313zM576 512q115 0 218 57q-154 165 -154 391
q0 224 154 391q-103 57 -218 57q-185 0 -316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5zM1152 128v260q-137 15 -256 94q-119 -79 -256 -94v-260h512zM1216 512q185 0 316.5 131.5t131.5 316.5t-131.5 316.5t-316.5 131.5q-115 0 -218 -57q154 -167 154 -391
q0 -226 -154 -391q103 -57 218 -57z" />
    <glyph glyph-name="_516" unicode="&#xf227;" horiz-adv-x="1920" 
d="M1536 1120q0 14 9 23t23 9h288q26 0 45 -19t19 -45v-288q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v134l-254 -255q76 -95 107.5 -214t9.5 -247q-31 -182 -166 -312t-318 -156q-210 -29 -384.5 80t-241.5 300q-117 6 -221 57.5t-177.5 133t-113.5 192.5t-32 230
q9 135 78 252t182 191.5t248 89.5q118 14 227.5 -19t198.5 -103l255 254h-134q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h288q26 0 45 -19t19 -45v-288q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v134l-254 -255q59 -74 93 -169q182 -9 328 -124l255 254h-134q-14 0 -23 9
t-9 23v64zM1024 704q0 20 -4 58q-162 -25 -271 -150t-109 -292q0 -20 4 -58q162 25 271 150t109 292zM128 704q0 -168 111 -294t276 -149q-3 29 -3 59q0 210 135 369.5t338 196.5q-53 120 -163.5 193t-245.5 73q-185 0 -316.5 -131.5t-131.5 -316.5zM1088 -128
q185 0 316.5 131.5t131.5 316.5q0 168 -111 294t-276 149q3 -28 3 -59q0 -210 -135 -369.5t-338 -196.5q53 -120 163.5 -193t245.5 -73z" />
    <glyph glyph-name="_517" unicode="&#xf228;" horiz-adv-x="2048" 
d="M1664 1504q0 14 9 23t23 9h288q26 0 45 -19t19 -45v-288q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v134l-254 -255q76 -95 107.5 -214t9.5 -247q-32 -180 -164.5 -310t-313.5 -157q-223 -34 -409 90q-117 -78 -256 -93v-132h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23
t-23 -9h-96v-96q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v96h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96v132q-155 17 -279.5 109.5t-187 237.5t-39.5 307q25 187 159.5 322.5t320.5 164.5q224 34 410 -90q146 97 320 97q201 0 359 -126l255 254h-134q-14 0 -23 9
t-9 23v64zM896 391q128 131 128 313t-128 313q-128 -131 -128 -313t128 -313zM128 704q0 -185 131.5 -316.5t316.5 -131.5q117 0 218 57q-154 167 -154 391t154 391q-101 57 -218 57q-185 0 -316.5 -131.5t-131.5 -316.5zM1216 256q185 0 316.5 131.5t131.5 316.5
t-131.5 316.5t-316.5 131.5q-117 0 -218 -57q154 -167 154 -391t-154 -391q101 -57 218 -57z" />
    <glyph glyph-name="_518" unicode="&#xf229;" 
d="M1472 1408q26 0 45 -19t19 -45v-416q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v262l-213 -214l140 -140q9 -10 9 -23t-9 -22l-46 -46q-9 -9 -22 -9t-23 9l-140 141l-78 -79q126 -156 126 -359q0 -117 -45.5 -223.5t-123 -184t-184 -123t-223.5 -45.5t-223.5 45.5
t-184 123t-123 184t-45.5 223.5t45.5 223.5t123 184t184 123t223.5 45.5q203 0 359 -126l78 78l-172 172q-9 10 -9 23t9 22l46 46q9 9 22 9t23 -9l172 -172l213 213h-261q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h416zM576 0q185 0 316.5 131.5t131.5 316.5t-131.5 316.5
t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" />
    <glyph glyph-name="_519" unicode="&#xf22a;" horiz-adv-x="1280" 
d="M640 892q217 -24 364.5 -187.5t147.5 -384.5q0 -167 -87 -306t-236 -212t-319 -54q-133 15 -245.5 88t-182 188t-80.5 249q-12 155 52.5 292t186 224t271.5 103v132h-160q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h160v165l-92 -92q-10 -9 -23 -9t-22 9l-46 46q-9 9 -9 22
t9 23l202 201q19 19 45 19t45 -19l202 -201q9 -10 9 -23t-9 -22l-46 -46q-9 -9 -22 -9t-23 9l-92 92v-165h160q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-160v-132zM576 -128q185 0 316.5 131.5t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5
t131.5 -316.5t316.5 -131.5z" />
    <glyph glyph-name="_520" unicode="&#xf22b;" horiz-adv-x="2048" 
d="M1901 621q19 -19 19 -45t-19 -45l-294 -294q-9 -10 -22.5 -10t-22.5 10l-45 45q-10 9 -10 22.5t10 22.5l185 185h-294v-224q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v224h-132q-24 -217 -187.5 -364.5t-384.5 -147.5q-167 0 -306 87t-212 236t-54 319q15 133 88 245.5
t188 182t249 80.5q155 12 292 -52.5t224 -186t103 -271.5h132v224q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-224h294l-185 185q-10 9 -10 22.5t10 22.5l45 45q9 10 22.5 10t22.5 -10zM576 128q185 0 316.5 131.5t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5
t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" />
    <glyph glyph-name="_521" unicode="&#xf22c;" horiz-adv-x="1280" 
d="M1152 960q0 -221 -147.5 -384.5t-364.5 -187.5v-612q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v612q-217 24 -364.5 187.5t-147.5 384.5q0 117 45.5 223.5t123 184t184 123t223.5 45.5t223.5 -45.5t184 -123t123 -184t45.5 -223.5zM576 512q185 0 316.5 131.5
t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" />
    <glyph glyph-name="_522" unicode="&#xf22d;" horiz-adv-x="1280" 
d="M1024 576q0 185 -131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5t316.5 131.5t131.5 316.5zM1152 576q0 -117 -45.5 -223.5t-123 -184t-184 -123t-223.5 -45.5t-223.5 45.5t-184 123t-123 184t-45.5 223.5t45.5 223.5t123 184t184 123
t223.5 45.5t223.5 -45.5t184 -123t123 -184t45.5 -223.5z" />
    <glyph glyph-name="_523" unicode="&#xf22e;" horiz-adv-x="1792" 
 />
    <glyph glyph-name="_524" unicode="&#xf22f;" horiz-adv-x="1792" 
 />
    <glyph glyph-name="_525" unicode="&#xf230;" 
d="M1451 1408q35 0 60 -25t25 -60v-1366q0 -35 -25 -60t-60 -25h-391v595h199l30 232h-229v148q0 56 23.5 84t91.5 28l122 1v207q-63 9 -178 9q-136 0 -217.5 -80t-81.5 -226v-171h-200v-232h200v-595h-735q-35 0 -60 25t-25 60v1366q0 35 25 60t60 25h1366z" />
    <glyph glyph-name="_526" unicode="&#xf231;" horiz-adv-x="1280" 
d="M0 939q0 108 37.5 203.5t103.5 166.5t152 123t185 78t202 26q158 0 294 -66.5t221 -193.5t85 -287q0 -96 -19 -188t-60 -177t-100 -149.5t-145 -103t-189 -38.5q-68 0 -135 32t-96 88q-10 -39 -28 -112.5t-23.5 -95t-20.5 -71t-26 -71t-32 -62.5t-46 -77.5t-62 -86.5
l-14 -5l-9 10q-15 157 -15 188q0 92 21.5 206.5t66.5 287.5t52 203q-32 65 -32 169q0 83 52 156t132 73q61 0 95 -40.5t34 -102.5q0 -66 -44 -191t-44 -187q0 -63 45 -104.5t109 -41.5q55 0 102 25t78.5 68t56 95t38 110.5t20 111t6.5 99.5q0 173 -109.5 269.5t-285.5 96.5
q-200 0 -334 -129.5t-134 -328.5q0 -44 12.5 -85t27 -65t27 -45.5t12.5 -30.5q0 -28 -15 -73t-37 -45q-2 0 -17 3q-51 15 -90.5 56t-61 94.5t-32.5 108t-11 106.5z" />
    <glyph glyph-name="_527" unicode="&#xf232;" 
d="M985 562q13 0 97.5 -44t89.5 -53q2 -5 2 -15q0 -33 -17 -76q-16 -39 -71 -65.5t-102 -26.5q-57 0 -190 62q-98 45 -170 118t-148 185q-72 107 -71 194v8q3 91 74 158q24 22 52 22q6 0 18 -1.5t19 -1.5q19 0 26.5 -6.5t15.5 -27.5q8 -20 33 -88t25 -75q0 -21 -34.5 -57.5
t-34.5 -46.5q0 -7 5 -15q34 -73 102 -137q56 -53 151 -101q12 -7 22 -7q15 0 54 48.5t52 48.5zM782 32q127 0 243.5 50t200.5 134t134 200.5t50 243.5t-50 243.5t-134 200.5t-200.5 134t-243.5 50t-243.5 -50t-200.5 -134t-134 -200.5t-50 -243.5q0 -203 120 -368l-79 -233
l242 77q158 -104 345 -104zM782 1414q153 0 292.5 -60t240.5 -161t161 -240.5t60 -292.5t-60 -292.5t-161 -240.5t-240.5 -161t-292.5 -60q-195 0 -365 94l-417 -134l136 405q-108 178 -108 389q0 153 60 292.5t161 240.5t240.5 161t292.5 60z" />
    <glyph glyph-name="_528" unicode="&#xf233;" horiz-adv-x="1792" 
d="M128 128h1024v128h-1024v-128zM128 640h1024v128h-1024v-128zM1696 192q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM128 1152h1024v128h-1024v-128zM1696 704q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM1696 1216
q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM1792 384v-384h-1792v384h1792zM1792 896v-384h-1792v384h1792zM1792 1408v-384h-1792v384h1792z" />
    <glyph glyph-name="_529" unicode="&#xf234;" horiz-adv-x="2048" 
d="M704 640q-159 0 -271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5t271.5 -112.5t112.5 -271.5t-112.5 -271.5t-271.5 -112.5zM1664 512h352q13 0 22.5 -9.5t9.5 -22.5v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-352v-352q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5
t-9.5 22.5v352h-352q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h352v352q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5t9.5 -22.5v-352zM928 288q0 -52 38 -90t90 -38h256v-238q-68 -50 -171 -50h-874q-121 0 -194 69t-73 190q0 53 3.5 103.5t14 109t26.5 108.5
t43 97.5t62 81t85.5 53.5t111.5 20q19 0 39 -17q79 -61 154.5 -91.5t164.5 -30.5t164.5 30.5t154.5 91.5q20 17 39 17q132 0 217 -96h-223q-52 0 -90 -38t-38 -90v-192z" />
    <glyph glyph-name="_530" unicode="&#xf235;" horiz-adv-x="2048" 
d="M704 640q-159 0 -271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5t271.5 -112.5t112.5 -271.5t-112.5 -271.5t-271.5 -112.5zM1781 320l249 -249q9 -9 9 -23q0 -13 -9 -22l-136 -136q-9 -9 -22 -9q-14 0 -23 9l-249 249l-249 -249q-9 -9 -23 -9q-13 0 -22 9l-136 136
q-9 9 -9 22q0 14 9 23l249 249l-249 249q-9 9 -9 23q0 13 9 22l136 136q9 9 22 9q14 0 23 -9l249 -249l249 249q9 9 23 9q13 0 22 -9l136 -136q9 -9 9 -22q0 -14 -9 -23zM1283 320l-181 -181q-37 -37 -37 -91q0 -53 37 -90l83 -83q-21 -3 -44 -3h-874q-121 0 -194 69
t-73 190q0 53 3.5 103.5t14 109t26.5 108.5t43 97.5t62 81t85.5 53.5t111.5 20q19 0 39 -17q154 -122 319 -122t319 122q20 17 39 17q28 0 57 -6q-28 -27 -41 -50t-13 -56q0 -54 37 -91z" />
    <glyph glyph-name="_531" unicode="&#xf236;" horiz-adv-x="2048" 
d="M256 512h1728q26 0 45 -19t19 -45v-448h-256v256h-1536v-256h-256v1216q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-704zM832 832q0 106 -75 181t-181 75t-181 -75t-75 -181t75 -181t181 -75t181 75t75 181zM2048 576v64q0 159 -112.5 271.5t-271.5 112.5h-704
q-26 0 -45 -19t-19 -45v-384h1152z" />
    <glyph glyph-name="_532" unicode="&#xf237;" 
d="M1536 1536l-192 -448h192v-192h-274l-55 -128h329v-192h-411l-357 -832l-357 832h-411v192h329l-55 128h-274v192h192l-192 448h256l323 -768h378l323 768h256zM768 320l108 256h-216z" />
    <glyph glyph-name="_533" unicode="&#xf238;" 
d="M1088 1536q185 0 316.5 -93.5t131.5 -226.5v-896q0 -130 -125.5 -222t-305.5 -97l213 -202q16 -15 8 -35t-30 -20h-1056q-22 0 -30 20t8 35l213 202q-180 5 -305.5 97t-125.5 222v896q0 133 131.5 226.5t316.5 93.5h640zM768 192q80 0 136 56t56 136t-56 136t-136 56
t-136 -56t-56 -136t56 -136t136 -56zM1344 768v512h-1152v-512h1152z" />
    <glyph glyph-name="_534" unicode="&#xf239;" 
d="M1088 1536q185 0 316.5 -93.5t131.5 -226.5v-896q0 -130 -125.5 -222t-305.5 -97l213 -202q16 -15 8 -35t-30 -20h-1056q-22 0 -30 20t8 35l213 202q-180 5 -305.5 97t-125.5 222v896q0 133 131.5 226.5t316.5 93.5h640zM288 224q66 0 113 47t47 113t-47 113t-113 47
t-113 -47t-47 -113t47 -113t113 -47zM704 768v512h-544v-512h544zM1248 224q66 0 113 47t47 113t-47 113t-113 47t-113 -47t-47 -113t47 -113t113 -47zM1408 768v512h-576v-512h576z" />
    <glyph glyph-name="_535" unicode="&#xf23a;" horiz-adv-x="1792" 
d="M597 1115v-1173q0 -25 -12.5 -42.5t-36.5 -17.5q-17 0 -33 8l-465 233q-21 10 -35.5 33.5t-14.5 46.5v1140q0 20 10 34t29 14q14 0 44 -15l511 -256q3 -3 3 -5zM661 1014l534 -866l-534 266v600zM1792 996v-1054q0 -25 -14 -40.5t-38 -15.5t-47 13l-441 220zM1789 1116
q0 -3 -256.5 -419.5t-300.5 -487.5l-390 634l324 527q17 28 52 28q14 0 26 -6l541 -270q4 -2 4 -6z" />
    <glyph glyph-name="_536" unicode="&#xf23b;" 
d="M809 532l266 499h-112l-157 -312q-24 -48 -44 -92l-42 92l-155 312h-120l263 -493v-324h101v318zM1536 1408v-1536h-1536v1536h1536z" />
    <glyph glyph-name="_537" unicode="&#xf23c;" horiz-adv-x="2296" 
d="M478 -139q-8 -16 -27 -34.5t-37 -25.5q-25 -9 -51.5 3.5t-28.5 31.5q-1 22 40 55t68 38q23 4 34 -21.5t2 -46.5zM1819 -139q7 -16 26 -34.5t38 -25.5q25 -9 51.5 3.5t27.5 31.5q2 22 -39.5 55t-68.5 38q-22 4 -33 -21.5t-2 -46.5zM1867 -30q13 -27 56.5 -59.5t77.5 -41.5
q45 -13 82 4.5t37 50.5q0 46 -67.5 100.5t-115.5 59.5q-40 5 -63.5 -37.5t-6.5 -76.5zM428 -30q-13 -27 -56 -59.5t-77 -41.5q-45 -13 -82 4.5t-37 50.5q0 46 67.5 100.5t115.5 59.5q40 5 63 -37.5t6 -76.5zM1158 1094h1q-41 0 -76 -15q27 -8 44 -30.5t17 -49.5
q0 -35 -27 -60t-65 -25q-52 0 -80 43q-5 -23 -5 -42q0 -74 56 -126.5t135 -52.5q80 0 136 52.5t56 126.5t-56 126.5t-136 52.5zM1462 1312q-99 109 -220.5 131.5t-245.5 -44.5q27 60 82.5 96.5t118 39.5t121.5 -17t99.5 -74.5t44.5 -131.5zM2212 73q8 -11 -11 -42
q7 -23 7 -40q1 -56 -44.5 -112.5t-109.5 -91.5t-118 -37q-48 -2 -92 21.5t-66 65.5q-687 -25 -1259 0q-23 -41 -66.5 -65t-92.5 -22q-86 3 -179.5 80.5t-92.5 160.5q2 22 7 40q-19 31 -11 42q6 10 31 1q14 22 41 51q-7 29 2 38q11 10 39 -4q29 20 59 34q0 29 13 37
q23 12 51 -16q35 5 61 -2q18 -4 38 -19v73q-11 0 -18 2q-53 10 -97 44.5t-55 87.5q-9 38 0 81q15 62 93 95q2 17 19 35.5t36 23.5t33 -7.5t19 -30.5h13q46 -5 60 -23q3 -3 5 -7q10 1 30.5 3.5t30.5 3.5q-15 11 -30 17q-23 40 -91 43q0 6 1 10q-62 2 -118.5 18.5t-84.5 47.5
q-32 36 -42.5 92t-2.5 112q16 126 90 179q23 16 52 4.5t32 -40.5q0 -1 1.5 -14t2.5 -21t3 -20t5.5 -19t8.5 -10q27 -14 76 -12q48 46 98 74q-40 4 -162 -14l47 46q61 58 163 111q145 73 282 86q-20 8 -41 15.5t-47 14t-42.5 10.5t-47.5 11t-43 10q595 126 904 -139
q98 -84 158 -222q85 -10 121 9h1q5 3 8.5 10t5.5 19t3 19.5t3 21.5l1 14q3 28 32 40t52 -5q73 -52 91 -178q7 -57 -3.5 -113t-42.5 -91q-28 -32 -83.5 -48.5t-115.5 -18.5v-10q-71 -2 -95 -43q-14 -5 -31 -17q11 -1 32 -3.5t30 -3.5q1 5 5 8q16 18 60 23h13q5 18 19 30t33 8
t36 -23t19 -36q79 -32 93 -95q9 -40 1 -81q-12 -53 -56 -88t-97 -44q-10 -2 -17 -2q0 -49 -1 -73q20 15 38 19q26 7 61 2q28 28 51 16q14 -9 14 -37q33 -16 59 -34q27 13 38 4q10 -10 2 -38q28 -30 41 -51q23 8 31 -1zM1937 1025q0 -29 -9 -54q82 -32 112 -132
q4 37 -9.5 98.5t-41.5 90.5q-20 19 -36 17t-16 -20zM1859 925q35 -42 47.5 -108.5t-0.5 -124.5q67 13 97 45q13 14 18 28q-3 64 -31 114.5t-79 66.5q-15 -15 -52 -21zM1822 921q-30 0 -44 1q42 -115 53 -239q21 0 43 3q16 68 1 135t-53 100zM258 839q30 100 112 132
q-9 25 -9 54q0 18 -16.5 20t-35.5 -17q-28 -29 -41.5 -90.5t-9.5 -98.5zM294 737q29 -31 97 -45q-13 58 -0.5 124.5t47.5 108.5v0q-37 6 -52 21q-51 -16 -78.5 -66t-31.5 -115q9 -17 18 -28zM471 683q14 124 73 235q-19 -4 -55 -18l-45 -19v1q-46 -89 -20 -196q25 -3 47 -3z
M1434 644q8 -38 16.5 -108.5t11.5 -89.5q3 -18 9.5 -21.5t23.5 4.5q40 20 62 85.5t23 125.5q-24 2 -146 4zM1152 1285q-116 0 -199 -82.5t-83 -198.5q0 -117 83 -199.5t199 -82.5t199 82.5t83 199.5q0 116 -83 198.5t-199 82.5zM1380 646q-105 2 -211 0v1q-1 -27 2.5 -86
t13.5 -66q29 -14 93.5 -14.5t95.5 10.5q9 3 11 39t-0.5 69.5t-4.5 46.5zM1112 447q8 4 9.5 48t-0.5 88t-4 63v1q-212 -3 -214 -3q-4 -20 -7 -62t0 -83t14 -46q34 -15 101 -16t101 10zM718 636q-16 -59 4.5 -118.5t77.5 -84.5q15 -8 24 -5t12 21q3 16 8 90t10 103
q-69 -2 -136 -6zM591 510q3 -23 -34 -36q132 -141 271.5 -240t305.5 -154q172 49 310.5 146t293.5 250q-33 13 -30 34q0 2 0.5 3.5t1.5 3t1 2.5v1v-1q-17 2 -50 5.5t-48 4.5q-26 -90 -82 -132q-51 -38 -82 1q-5 6 -9 14q-7 13 -17 62q-2 -5 -5 -9t-7.5 -7t-8 -5.5t-9.5 -4
l-10 -2.5t-12 -2l-12 -1.5t-13.5 -1t-13.5 -0.5q-106 -9 -163 11q-4 -17 -10 -26.5t-21 -15t-23 -7t-36 -3.5q-6 -1 -9 -1q-179 -17 -203 40q-2 -63 -56 -54q-47 8 -91 54q-12 13 -20 26q-17 29 -26 65q-58 -6 -87 -10q1 -2 4 -10zM507 -118q3 14 3 30q-17 71 -51 130
t-73 70q-41 12 -101.5 -14.5t-104.5 -80t-39 -107.5q35 -53 100 -93t119 -42q51 -2 94 28t53 79zM510 53q23 -63 27 -119q195 113 392 174q-98 52 -180.5 120t-179.5 165q-6 -4 -29 -13q0 -1 -1 -4t-1 -5q31 -18 22 -37q-12 -23 -56 -34q-10 -13 -29 -24h-1q-2 -83 1 -150
q19 -34 35 -73zM579 -113q532 -21 1145 0q-254 147 -428 196q-76 -35 -156 -57q-8 -3 -16 0q-65 21 -129 49q-208 -60 -416 -188h-1v-1q1 0 1 1zM1763 -67q4 54 28 120q14 38 33 71l-1 -1q3 77 3 153q-15 8 -30 25q-42 9 -56 33q-9 20 22 38q-2 4 -2 9q-16 4 -28 12
q-204 -190 -383 -284q198 -59 414 -176zM2155 -90q5 54 -39 107.5t-104 80t-102 14.5q-38 -11 -72.5 -70.5t-51.5 -129.5q0 -16 3 -30q10 -49 53 -79t94 -28q54 2 119 42t100 93z" />
    <glyph glyph-name="_538" unicode="&#xf23d;" horiz-adv-x="2304" 
d="M1524 -25q0 -68 -48 -116t-116 -48t-116.5 48t-48.5 116t48.5 116.5t116.5 48.5t116 -48.5t48 -116.5zM775 -25q0 -68 -48.5 -116t-116.5 -48t-116 48t-48 116t48 116.5t116 48.5t116.5 -48.5t48.5 -116.5zM0 1469q57 -60 110.5 -104.5t121 -82t136 -63t166 -45.5
t200 -31.5t250 -18.5t304 -9.5t372.5 -2.5q139 0 244.5 -5t181 -16.5t124 -27.5t71 -39.5t24 -51.5t-19.5 -64t-56.5 -76.5t-89.5 -91t-116 -104.5t-139 -119q-185 -157 -286 -247q29 51 76.5 109t94 105.5t94.5 98.5t83 91.5t54 80.5t13 70t-45.5 55.5t-116.5 41t-204 23.5
t-304 5q-168 -2 -314 6t-256 23t-204.5 41t-159.5 51.5t-122.5 62.5t-91.5 66.5t-68 71.5t-50.5 69.5t-40 68t-36.5 59.5z" />
    <glyph glyph-name="_539" unicode="&#xf23e;" horiz-adv-x="1792" 
d="M896 1472q-169 0 -323 -66t-265.5 -177.5t-177.5 -265.5t-66 -323t66 -323t177.5 -265.5t265.5 -177.5t323 -66t323 66t265.5 177.5t177.5 265.5t66 323t-66 323t-177.5 265.5t-265.5 177.5t-323 66zM896 1536q182 0 348 -71t286 -191t191 -286t71 -348t-71 -348
t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71zM496 704q16 0 16 -16v-480q0 -16 -16 -16h-32q-16 0 -16 16v480q0 16 16 16h32zM896 640q53 0 90.5 -37.5t37.5 -90.5q0 -35 -17.5 -64t-46.5 -46v-114q0 -14 -9 -23
t-23 -9h-64q-14 0 -23 9t-9 23v114q-29 17 -46.5 46t-17.5 64q0 53 37.5 90.5t90.5 37.5zM896 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM544 928v-96
q0 -14 9 -23t23 -9h64q14 0 23 9t9 23v96q0 93 65.5 158.5t158.5 65.5t158.5 -65.5t65.5 -158.5v-96q0 -14 9 -23t23 -9h64q14 0 23 9t9 23v96q0 146 -103 249t-249 103t-249 -103t-103 -249zM1408 192v512q0 26 -19 45t-45 19h-896q-26 0 -45 -19t-19 -45v-512
q0 -26 19 -45t45 -19h896q26 0 45 19t19 45z" />
    <glyph glyph-name="_540" unicode="&#xf240;" horiz-adv-x="2304" 
d="M1920 1024v-768h-1664v768h1664zM2048 448h128v384h-128v288q0 14 -9 23t-23 9h-1856q-14 0 -23 -9t-9 -23v-960q0 -14 9 -23t23 -9h1856q14 0 23 9t9 23v288zM2304 832v-384q0 -53 -37.5 -90.5t-90.5 -37.5v-160q0 -66 -47 -113t-113 -47h-1856q-66 0 -113 47t-47 113
v960q0 66 47 113t113 47h1856q66 0 113 -47t47 -113v-160q53 0 90.5 -37.5t37.5 -90.5z" />
    <glyph glyph-name="_541" unicode="&#xf241;" horiz-adv-x="2304" 
d="M256 256v768h1280v-768h-1280zM2176 960q53 0 90.5 -37.5t37.5 -90.5v-384q0 -53 -37.5 -90.5t-90.5 -37.5v-160q0 -66 -47 -113t-113 -47h-1856q-66 0 -113 47t-47 113v960q0 66 47 113t113 47h1856q66 0 113 -47t47 -113v-160zM2176 448v384h-128v288q0 14 -9 23t-23 9
h-1856q-14 0 -23 -9t-9 -23v-960q0 -14 9 -23t23 -9h1856q14 0 23 9t9 23v288h128z" />
    <glyph glyph-name="_542" unicode="&#xf242;" horiz-adv-x="2304" 
d="M256 256v768h896v-768h-896zM2176 960q53 0 90.5 -37.5t37.5 -90.5v-384q0 -53 -37.5 -90.5t-90.5 -37.5v-160q0 -66 -47 -113t-113 -47h-1856q-66 0 -113 47t-47 113v960q0 66 47 113t113 47h1856q66 0 113 -47t47 -113v-160zM2176 448v384h-128v288q0 14 -9 23t-23 9
h-1856q-14 0 -23 -9t-9 -23v-960q0 -14 9 -23t23 -9h1856q14 0 23 9t9 23v288h128z" />
    <glyph glyph-name="_543" unicode="&#xf243;" horiz-adv-x="2304" 
d="M256 256v768h512v-768h-512zM2176 960q53 0 90.5 -37.5t37.5 -90.5v-384q0 -53 -37.5 -90.5t-90.5 -37.5v-160q0 -66 -47 -113t-113 -47h-1856q-66 0 -113 47t-47 113v960q0 66 47 113t113 47h1856q66 0 113 -47t47 -113v-160zM2176 448v384h-128v288q0 14 -9 23t-23 9
h-1856q-14 0 -23 -9t-9 -23v-960q0 -14 9 -23t23 -9h1856q14 0 23 9t9 23v288h128z" />
    <glyph glyph-name="_544" unicode="&#xf244;" horiz-adv-x="2304" 
d="M2176 960q53 0 90.5 -37.5t37.5 -90.5v-384q0 -53 -37.5 -90.5t-90.5 -37.5v-160q0 -66 -47 -113t-113 -47h-1856q-66 0 -113 47t-47 113v960q0 66 47 113t113 47h1856q66 0 113 -47t47 -113v-160zM2176 448v384h-128v288q0 14 -9 23t-23 9h-1856q-14 0 -23 -9t-9 -23
v-960q0 -14 9 -23t23 -9h1856q14 0 23 9t9 23v288h128z" />
    <glyph glyph-name="_545" unicode="&#xf245;" horiz-adv-x="1280" 
d="M1133 493q31 -30 14 -69q-17 -40 -59 -40h-382l201 -476q10 -25 0 -49t-34 -35l-177 -75q-25 -10 -49 0t-35 34l-191 452l-312 -312q-19 -19 -45 -19q-12 0 -24 5q-40 17 -40 59v1504q0 42 40 59q12 5 24 5q27 0 45 -19z" />
    <glyph glyph-name="_546" unicode="&#xf246;" horiz-adv-x="1024" 
d="M832 1408q-320 0 -320 -224v-416h128v-128h-128v-544q0 -224 320 -224h64v-128h-64q-272 0 -384 146q-112 -146 -384 -146h-64v128h64q320 0 320 224v544h-128v128h128v416q0 224 -320 224h-64v128h64q272 0 384 -146q112 146 384 146h64v-128h-64z" />
    <glyph glyph-name="_547" unicode="&#xf247;" horiz-adv-x="2048" 
d="M2048 1152h-128v-1024h128v-384h-384v128h-1280v-128h-384v384h128v1024h-128v384h384v-128h1280v128h384v-384zM1792 1408v-128h128v128h-128zM128 1408v-128h128v128h-128zM256 -128v128h-128v-128h128zM1664 0v128h128v1024h-128v128h-1280v-128h-128v-1024h128v-128
h1280zM1920 -128v128h-128v-128h128zM1280 896h384v-768h-896v256h-384v768h896v-256zM512 512h640v512h-640v-512zM1536 256v512h-256v-384h-384v-128h640z" />
    <glyph glyph-name="_548" unicode="&#xf248;" horiz-adv-x="2304" 
d="M2304 768h-128v-640h128v-384h-384v128h-896v-128h-384v384h128v128h-384v-128h-384v384h128v640h-128v384h384v-128h896v128h384v-384h-128v-128h384v128h384v-384zM2048 1024v-128h128v128h-128zM1408 1408v-128h128v128h-128zM128 1408v-128h128v128h-128zM256 256
v128h-128v-128h128zM1536 384h-128v-128h128v128zM384 384h896v128h128v640h-128v128h-896v-128h-128v-640h128v-128zM896 -128v128h-128v-128h128zM2176 -128v128h-128v-128h128zM2048 128v640h-128v128h-384v-384h128v-384h-384v128h-384v-128h128v-128h896v128h128z" />
    <glyph glyph-name="_549" unicode="&#xf249;" 
d="M1024 288v-416h-928q-40 0 -68 28t-28 68v1344q0 40 28 68t68 28h1344q40 0 68 -28t28 -68v-928h-416q-40 0 -68 -28t-28 -68zM1152 256h381q-15 -82 -65 -132l-184 -184q-50 -50 -132 -65v381z" />
    <glyph glyph-name="_550" unicode="&#xf24a;" 
d="M1400 256h-248v-248q29 10 41 22l185 185q12 12 22 41zM1120 384h288v896h-1280v-1280h896v288q0 40 28 68t68 28zM1536 1312v-1024q0 -40 -20 -88t-48 -76l-184 -184q-28 -28 -76 -48t-88 -20h-1024q-40 0 -68 28t-28 68v1344q0 40 28 68t68 28h1344q40 0 68 -28t28 -68
z" />
    <glyph glyph-name="_551" unicode="&#xf24b;" horiz-adv-x="2304" 
d="M1951 538q0 -26 -15.5 -44.5t-38.5 -23.5q-8 -2 -18 -2h-153v140h153q10 0 18 -2q23 -5 38.5 -23.5t15.5 -44.5zM1933 751q0 -25 -15 -42t-38 -21q-3 -1 -15 -1h-139v129h139q3 0 8.5 -0.5t6.5 -0.5q23 -4 38 -21.5t15 -42.5zM728 587v308h-228v-308q0 -58 -38 -94.5
t-105 -36.5q-108 0 -229 59v-112q53 -15 121 -23t109 -9l42 -1q328 0 328 217zM1442 403v113q-99 -52 -200 -59q-108 -8 -169 41t-61 142t61 142t169 41q101 -7 200 -58v112q-48 12 -100 19.5t-80 9.5l-28 2q-127 6 -218.5 -14t-140.5 -60t-71 -88t-22 -106t22 -106t71 -88
t140.5 -60t218.5 -14q101 4 208 31zM2176 518q0 54 -43 88.5t-109 39.5v3q57 8 89 41.5t32 79.5q0 55 -41 88t-107 36q-3 0 -12 0.5t-14 0.5h-455v-510h491q74 0 121.5 36.5t47.5 96.5zM2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048q-52 0 -90 38t-38 90v1280q0 52 38 90
t90 38h2048q52 0 90 -38t38 -90z" />
    <glyph glyph-name="_552" unicode="&#xf24c;" horiz-adv-x="2304" 
d="M858 295v693q-106 -41 -172 -135.5t-66 -211.5t66 -211.5t172 -134.5zM1362 641q0 117 -66 211.5t-172 135.5v-694q106 41 172 135.5t66 211.5zM1577 641q0 -159 -78.5 -294t-213.5 -213.5t-294 -78.5q-119 0 -227.5 46.5t-187 125t-125 187t-46.5 227.5q0 159 78.5 294
t213.5 213.5t294 78.5t294 -78.5t213.5 -213.5t78.5 -294zM1960 634q0 139 -55.5 261.5t-147.5 205.5t-213.5 131t-252.5 48h-301q-176 0 -323.5 -81t-235 -230t-87.5 -335q0 -171 87 -317.5t236 -231.5t323 -85h301q129 0 251.5 50.5t214.5 135t147.5 202.5t55.5 246z
M2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h2048q52 0 90 -38t38 -90z" />
    <glyph glyph-name="_553" unicode="&#xf24d;" horiz-adv-x="1792" 
d="M1664 -96v1088q0 13 -9.5 22.5t-22.5 9.5h-1088q-13 0 -22.5 -9.5t-9.5 -22.5v-1088q0 -13 9.5 -22.5t22.5 -9.5h1088q13 0 22.5 9.5t9.5 22.5zM1792 992v-1088q0 -66 -47 -113t-113 -47h-1088q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1088q66 0 113 -47t47 -113
zM1408 1376v-160h-128v160q0 13 -9.5 22.5t-22.5 9.5h-1088q-13 0 -22.5 -9.5t-9.5 -22.5v-1088q0 -13 9.5 -22.5t22.5 -9.5h160v-128h-160q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1088q66 0 113 -47t47 -113z" />
    <glyph glyph-name="_554" unicode="&#xf24e;" horiz-adv-x="2304" 
d="M1728 1088l-384 -704h768zM448 1088l-384 -704h768zM1269 1280q-14 -40 -45.5 -71.5t-71.5 -45.5v-1291h608q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-1344q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h608v1291q-40 14 -71.5 45.5t-45.5 71.5h-491q-14 0 -23 9t-9 23v64
q0 14 9 23t23 9h491q21 57 70 92.5t111 35.5t111 -35.5t70 -92.5h491q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-491zM1088 1264q33 0 56.5 23.5t23.5 56.5t-23.5 56.5t-56.5 23.5t-56.5 -23.5t-23.5 -56.5t23.5 -56.5t56.5 -23.5zM2176 384q0 -73 -46.5 -131t-117.5 -91
t-144.5 -49.5t-139.5 -16.5t-139.5 16.5t-144.5 49.5t-117.5 91t-46.5 131q0 11 35 81t92 174.5t107 195.5t102 184t56 100q18 33 56 33t56 -33q4 -7 56 -100t102 -184t107 -195.5t92 -174.5t35 -81zM896 384q0 -73 -46.5 -131t-117.5 -91t-144.5 -49.5t-139.5 -16.5
t-139.5 16.5t-144.5 49.5t-117.5 91t-46.5 131q0 11 35 81t92 174.5t107 195.5t102 184t56 100q18 33 56 33t56 -33q4 -7 56 -100t102 -184t107 -195.5t92 -174.5t35 -81z" />
    <glyph glyph-name="_555" unicode="&#xf250;" 
d="M1408 1408q0 -261 -106.5 -461.5t-266.5 -306.5q160 -106 266.5 -306.5t106.5 -461.5h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-1472q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96q0 261 106.5 461.5t266.5 306.5q-160 106 -266.5 306.5t-106.5 461.5h-96q-14 0 -23 9
t-9 23v64q0 14 9 23t23 9h1472q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-96zM874 700q77 29 149 92.5t129.5 152.5t92.5 210t35 253h-1024q0 -132 35 -253t92.5 -210t129.5 -152.5t149 -92.5q19 -7 30.5 -23.5t11.5 -36.5t-11.5 -36.5t-30.5 -23.5q-77 -29 -149 -92.5
t-129.5 -152.5t-92.5 -210t-35 -253h1024q0 132 -35 253t-92.5 210t-129.5 152.5t-149 92.5q-19 7 -30.5 23.5t-11.5 36.5t11.5 36.5t30.5 23.5z" />
    <glyph glyph-name="_556" unicode="&#xf251;" 
d="M1408 1408q0 -261 -106.5 -461.5t-266.5 -306.5q160 -106 266.5 -306.5t106.5 -461.5h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-1472q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96q0 261 106.5 461.5t266.5 306.5q-160 106 -266.5 306.5t-106.5 461.5h-96q-14 0 -23 9
t-9 23v64q0 14 9 23t23 9h1472q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-96zM1280 1408h-1024q0 -66 9 -128h1006q9 61 9 128zM1280 -128q0 130 -34 249.5t-90.5 208t-126.5 152t-146 94.5h-230q-76 -31 -146 -94.5t-126.5 -152t-90.5 -208t-34 -249.5h1024z" />
    <glyph glyph-name="_557" unicode="&#xf252;" 
d="M1408 1408q0 -261 -106.5 -461.5t-266.5 -306.5q160 -106 266.5 -306.5t106.5 -461.5h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-1472q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96q0 261 106.5 461.5t266.5 306.5q-160 106 -266.5 306.5t-106.5 461.5h-96q-14 0 -23 9
t-9 23v64q0 14 9 23t23 9h1472q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-96zM1280 1408h-1024q0 -206 85 -384h854q85 178 85 384zM1223 192q-54 141 -145.5 241.5t-194.5 142.5h-230q-103 -42 -194.5 -142.5t-145.5 -241.5h910z" />
    <glyph glyph-name="_558" unicode="&#xf253;" 
d="M1408 1408q0 -261 -106.5 -461.5t-266.5 -306.5q160 -106 266.5 -306.5t106.5 -461.5h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-1472q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96q0 261 106.5 461.5t266.5 306.5q-160 106 -266.5 306.5t-106.5 461.5h-96q-14 0 -23 9
t-9 23v64q0 14 9 23t23 9h1472q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-96zM874 700q77 29 149 92.5t129.5 152.5t92.5 210t35 253h-1024q0 -132 35 -253t92.5 -210t129.5 -152.5t149 -92.5q19 -7 30.5 -23.5t11.5 -36.5t-11.5 -36.5t-30.5 -23.5q-137 -51 -244 -196
h700q-107 145 -244 196q-19 7 -30.5 23.5t-11.5 36.5t11.5 36.5t30.5 23.5z" />
    <glyph glyph-name="_559" unicode="&#xf254;" 
d="M1504 -64q14 0 23 -9t9 -23v-128q0 -14 -9 -23t-23 -9h-1472q-14 0 -23 9t-9 23v128q0 14 9 23t23 9h1472zM130 0q3 55 16 107t30 95t46 87t53.5 76t64.5 69.5t66 60t70.5 55t66.5 47.5t65 43q-43 28 -65 43t-66.5 47.5t-70.5 55t-66 60t-64.5 69.5t-53.5 76t-46 87
t-30 95t-16 107h1276q-3 -55 -16 -107t-30 -95t-46 -87t-53.5 -76t-64.5 -69.5t-66 -60t-70.5 -55t-66.5 -47.5t-65 -43q43 -28 65 -43t66.5 -47.5t70.5 -55t66 -60t64.5 -69.5t53.5 -76t46 -87t30 -95t16 -107h-1276zM1504 1536q14 0 23 -9t9 -23v-128q0 -14 -9 -23t-23 -9
h-1472q-14 0 -23 9t-9 23v128q0 14 9 23t23 9h1472z" />
    <glyph glyph-name="_560" unicode="&#xf255;" 
d="M768 1152q-53 0 -90.5 -37.5t-37.5 -90.5v-128h-32v93q0 48 -32 81.5t-80 33.5q-46 0 -79 -33t-33 -79v-429l-32 30v172q0 48 -32 81.5t-80 33.5q-46 0 -79 -33t-33 -79v-224q0 -47 35 -82l310 -296q39 -39 39 -102q0 -26 19 -45t45 -19h640q26 0 45 19t19 45v25
q0 41 10 77l108 436q10 36 10 77v246q0 48 -32 81.5t-80 33.5q-46 0 -79 -33t-33 -79v-32h-32v125q0 40 -25 72.5t-64 40.5q-14 2 -23 2q-46 0 -79 -33t-33 -79v-128h-32v122q0 51 -32.5 89.5t-82.5 43.5q-5 1 -13 1zM768 1280q84 0 149 -50q57 34 123 34q59 0 111 -27
t86 -76q27 7 59 7q100 0 170 -71.5t70 -171.5v-246q0 -51 -13 -108l-109 -436q-6 -24 -6 -71q0 -80 -56 -136t-136 -56h-640q-84 0 -138 58.5t-54 142.5l-308 296q-76 73 -76 175v224q0 99 70.5 169.5t169.5 70.5q11 0 16 -1q6 95 75.5 160t164.5 65q52 0 98 -21
q72 69 174 69z" />
    <glyph glyph-name="_561" unicode="&#xf256;" horiz-adv-x="1792" 
d="M880 1408q-46 0 -79 -33t-33 -79v-656h-32v528q0 46 -33 79t-79 33t-79 -33t-33 -79v-528v-256l-154 205q-38 51 -102 51q-53 0 -90.5 -37.5t-37.5 -90.5q0 -43 26 -77l384 -512q38 -51 102 -51h688q34 0 61 22t34 56l76 405q5 32 5 59v498q0 46 -33 79t-79 33t-79 -33
t-33 -79v-272h-32v528q0 46 -33 79t-79 33t-79 -33t-33 -79v-528h-32v656q0 46 -33 79t-79 33zM880 1536q68 0 125.5 -35.5t88.5 -96.5q19 4 42 4q99 0 169.5 -70.5t70.5 -169.5v-17q105 6 180.5 -64t75.5 -175v-498q0 -40 -8 -83l-76 -404q-14 -79 -76.5 -131t-143.5 -52
h-688q-60 0 -114.5 27.5t-90.5 74.5l-384 512q-51 68 -51 154q0 106 75 181t181 75q78 0 128 -34v434q0 99 70.5 169.5t169.5 70.5q23 0 42 -4q31 61 88.5 96.5t125.5 35.5z" />
    <glyph glyph-name="_562" unicode="&#xf257;" horiz-adv-x="1792" 
d="M1073 -128h-177q-163 0 -226 141q-23 49 -23 102v5q-62 30 -98.5 88.5t-36.5 127.5q0 38 5 48h-261q-106 0 -181 75t-75 181t75 181t181 75h113l-44 17q-74 28 -119.5 93.5t-45.5 145.5q0 106 75 181t181 75q46 0 91 -17l628 -239h401q106 0 181 -75t75 -181v-668
q0 -88 -54 -157.5t-140 -90.5l-339 -85q-92 -23 -186 -23zM1024 583l-155 -71l-163 -74q-30 -14 -48 -41.5t-18 -60.5q0 -46 33 -79t79 -33q26 0 46 10l338 154q-49 10 -80.5 50t-31.5 90v55zM1344 272q0 46 -33 79t-79 33q-26 0 -46 -10l-290 -132q-28 -13 -37 -17
t-30.5 -17t-29.5 -23.5t-16 -29t-8 -40.5q0 -50 31.5 -82t81.5 -32q20 0 38 9l352 160q30 14 48 41.5t18 60.5zM1112 1024l-650 248q-24 8 -46 8q-53 0 -90.5 -37.5t-37.5 -90.5q0 -40 22.5 -73t59.5 -47l526 -200v-64h-640q-53 0 -90.5 -37.5t-37.5 -90.5t37.5 -90.5
t90.5 -37.5h535l233 106v198q0 63 46 106l111 102h-69zM1073 0q82 0 155 19l339 85q43 11 70 45.5t27 78.5v668q0 53 -37.5 90.5t-90.5 37.5h-308l-136 -126q-36 -33 -36 -82v-296q0 -46 33 -77t79 -31t79 35t33 81v208h32v-208q0 -70 -57 -114q52 -8 86.5 -48.5t34.5 -93.5
q0 -42 -23 -78t-61 -53l-310 -141h91z" />
    <glyph glyph-name="_563" unicode="&#xf258;" horiz-adv-x="2048" 
d="M1151 1536q61 0 116 -28t91 -77l572 -781q118 -159 118 -359v-355q0 -80 -56 -136t-136 -56h-384q-80 0 -136 56t-56 136v177l-286 143h-546q-80 0 -136 56t-56 136v32q0 119 84.5 203.5t203.5 84.5h420l42 128h-686q-100 0 -173.5 67.5t-81.5 166.5q-65 79 -65 182v32
q0 80 56 136t136 56h959zM1920 -64v355q0 157 -93 284l-573 781q-39 52 -103 52h-959q-26 0 -45 -19t-19 -45q0 -32 1.5 -49.5t9.5 -40.5t25 -43q10 31 35.5 50t56.5 19h832v-32h-832q-26 0 -45 -19t-19 -45q0 -44 3 -58q8 -44 44 -73t81 -29h640h91q40 0 68 -28t28 -68
q0 -15 -5 -30l-64 -192q-10 -29 -35 -47.5t-56 -18.5h-443q-66 0 -113 -47t-47 -113v-32q0 -26 19 -45t45 -19h561q16 0 29 -7l317 -158q24 -13 38.5 -36t14.5 -50v-197q0 -26 19 -45t45 -19h384q26 0 45 19t19 45z" />
    <glyph glyph-name="_564" unicode="&#xf259;" horiz-adv-x="2048" 
d="M459 -256q-77 0 -137.5 47.5t-79.5 122.5l-101 401q-13 57 -13 108q0 45 -5 67l-116 477q-7 27 -7 57q0 93 62 161t155 78q17 85 82.5 139t152.5 54q83 0 148 -51.5t85 -132.5l83 -348l103 428q20 81 85 132.5t148 51.5q89 0 155.5 -57.5t80.5 -144.5q92 -10 152 -79
t60 -162q0 -24 -7 -59l-123 -512q10 7 37.5 28.5t38.5 29.5t35 23t41 20.5t41.5 11t49.5 5.5q105 0 180 -74t75 -179q0 -62 -28.5 -118t-78.5 -94l-507 -380q-68 -51 -153 -51h-694zM1104 1408q-38 0 -68.5 -24t-39.5 -62l-164 -682h-127l-145 602q-9 38 -39.5 62t-68.5 24
q-48 0 -80 -33t-32 -80q0 -15 3 -28l132 -547h-26l-99 408q-9 37 -40 62.5t-69 25.5q-47 0 -80 -33t-33 -79q0 -14 3 -26l116 -478q7 -28 9 -86t10 -88l100 -401q8 -32 34 -52.5t59 -20.5h694q42 0 76 26l507 379q56 43 56 110q0 52 -37.5 88.5t-89.5 36.5q-43 0 -77 -26
l-307 -230v227q0 4 32 138t68 282t39 161q4 18 4 29q0 47 -32 81t-79 34q-39 0 -69.5 -24t-39.5 -62l-116 -482h-26l150 624q3 14 3 28q0 48 -31.5 82t-79.5 34z" />
    <glyph glyph-name="_565" unicode="&#xf25a;" horiz-adv-x="1792" 
d="M640 1408q-53 0 -90.5 -37.5t-37.5 -90.5v-512v-384l-151 202q-41 54 -107 54q-52 0 -89 -38t-37 -90q0 -43 26 -77l384 -512q38 -51 102 -51h718q22 0 39.5 13.5t22.5 34.5l92 368q24 96 24 194v217q0 41 -28 71t-68 30t-68 -28t-28 -68h-32v61q0 48 -32 81.5t-80 33.5
q-46 0 -79 -33t-33 -79v-64h-32v90q0 55 -37 94.5t-91 39.5q-53 0 -90.5 -37.5t-37.5 -90.5v-96h-32v570q0 55 -37 94.5t-91 39.5zM640 1536q107 0 181.5 -77.5t74.5 -184.5v-220q22 2 32 2q99 0 173 -69q47 21 99 21q113 0 184 -87q27 7 56 7q94 0 159 -67.5t65 -161.5
v-217q0 -116 -28 -225l-92 -368q-16 -64 -68 -104.5t-118 -40.5h-718q-60 0 -114.5 27.5t-90.5 74.5l-384 512q-51 68 -51 154q0 105 74.5 180.5t179.5 75.5q71 0 130 -35v547q0 106 75 181t181 75zM768 128v384h-32v-384h32zM1024 128v384h-32v-384h32zM1280 128v384h-32
v-384h32z" />
    <glyph glyph-name="_566" unicode="&#xf25b;" 
d="M1288 889q60 0 107 -23q141 -63 141 -226v-177q0 -94 -23 -186l-85 -339q-21 -86 -90.5 -140t-157.5 -54h-668q-106 0 -181 75t-75 181v401l-239 628q-17 45 -17 91q0 106 75 181t181 75q80 0 145.5 -45.5t93.5 -119.5l17 -44v113q0 106 75 181t181 75t181 -75t75 -181
v-261q27 5 48 5q69 0 127.5 -36.5t88.5 -98.5zM1072 896q-33 0 -60.5 -18t-41.5 -48l-74 -163l-71 -155h55q50 0 90 -31.5t50 -80.5l154 338q10 20 10 46q0 46 -33 79t-79 33zM1293 761q-22 0 -40.5 -8t-29 -16t-23.5 -29.5t-17 -30.5t-17 -37l-132 -290q-10 -20 -10 -46
q0 -46 33 -79t79 -33q33 0 60.5 18t41.5 48l160 352q9 18 9 38q0 50 -32 81.5t-82 31.5zM128 1120q0 -22 8 -46l248 -650v-69l102 111q43 46 106 46h198l106 233v535q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5v-640h-64l-200 526q-14 37 -47 59.5t-73 22.5
q-53 0 -90.5 -37.5t-37.5 -90.5zM1180 -128q44 0 78.5 27t45.5 70l85 339q19 73 19 155v91l-141 -310q-17 -38 -53 -61t-78 -23q-53 0 -93.5 34.5t-48.5 86.5q-44 -57 -114 -57h-208v32h208q46 0 81 33t35 79t-31 79t-77 33h-296q-49 0 -82 -36l-126 -136v-308
q0 -53 37.5 -90.5t90.5 -37.5h668z" />
    <glyph glyph-name="_567" unicode="&#xf25c;" horiz-adv-x="1973" 
d="M857 992v-117q0 -13 -9.5 -22t-22.5 -9h-298v-812q0 -13 -9 -22.5t-22 -9.5h-135q-13 0 -22.5 9t-9.5 23v812h-297q-13 0 -22.5 9t-9.5 22v117q0 14 9 23t23 9h793q13 0 22.5 -9.5t9.5 -22.5zM1895 995l77 -961q1 -13 -8 -24q-10 -10 -23 -10h-134q-12 0 -21 8.5
t-10 20.5l-46 588l-189 -425q-8 -19 -29 -19h-120q-20 0 -29 19l-188 427l-45 -590q-1 -12 -10 -20.5t-21 -8.5h-135q-13 0 -23 10q-9 10 -9 24l78 961q1 12 10 20.5t21 8.5h142q20 0 29 -19l220 -520q10 -24 20 -51q3 7 9.5 24.5t10.5 26.5l221 520q9 19 29 19h141
q13 0 22 -8.5t10 -20.5z" />
    <glyph glyph-name="_568" unicode="&#xf25d;" horiz-adv-x="1792" 
d="M1042 833q0 88 -60 121q-33 18 -117 18h-123v-281h162q66 0 102 37t36 105zM1094 548l205 -373q8 -17 -1 -31q-8 -16 -27 -16h-152q-20 0 -28 17l-194 365h-155v-350q0 -14 -9 -23t-23 -9h-134q-14 0 -23 9t-9 23v960q0 14 9 23t23 9h294q128 0 190 -24q85 -31 134 -109
t49 -180q0 -92 -42.5 -165.5t-115.5 -109.5q6 -10 9 -16zM896 1376q-150 0 -286 -58.5t-234.5 -157t-157 -234.5t-58.5 -286t58.5 -286t157 -234.5t234.5 -157t286 -58.5t286 58.5t234.5 157t157 234.5t58.5 286t-58.5 286t-157 234.5t-234.5 157t-286 58.5zM1792 640
q0 -182 -71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" />
    <glyph glyph-name="_569" unicode="&#xf25e;" horiz-adv-x="1792" 
d="M605 303q153 0 257 104q14 18 3 36l-45 82q-6 13 -24 17q-16 2 -27 -11l-4 -3q-4 -4 -11.5 -10t-17.5 -13.5t-23.5 -14.5t-28.5 -13t-33.5 -9.5t-37.5 -3.5q-76 0 -125 50t-49 127q0 76 48 125.5t122 49.5q37 0 71.5 -14t50.5 -28l16 -14q11 -11 26 -10q16 2 24 14l53 78
q13 20 -2 39q-3 4 -11 12t-30 23.5t-48.5 28t-67.5 22.5t-86 10q-148 0 -246 -96.5t-98 -240.5q0 -146 97 -241.5t247 -95.5zM1235 303q153 0 257 104q14 18 4 36l-45 82q-8 14 -25 17q-16 2 -27 -11l-4 -3q-4 -4 -11.5 -10t-17.5 -13.5t-23.5 -14.5t-28.5 -13t-33.5 -9.5
t-37.5 -3.5q-76 0 -125 50t-49 127q0 76 48 125.5t122 49.5q37 0 71.5 -14t50.5 -28l16 -14q11 -11 26 -10q16 2 24 14l53 78q13 20 -2 39q-3 4 -11 12t-30 23.5t-48.5 28t-67.5 22.5t-86 10q-147 0 -245.5 -96.5t-98.5 -240.5q0 -146 97 -241.5t247 -95.5zM896 1376
q-150 0 -286 -58.5t-234.5 -157t-157 -234.5t-58.5 -286t58.5 -286t157 -234.5t234.5 -157t286 -58.5t286 58.5t234.5 157t157 234.5t58.5 286t-58.5 286t-157 234.5t-234.5 157t-286 58.5zM896 1536q182 0 348 -71t286 -191t191 -286t71 -348t-71 -348t-191 -286t-286 -191
t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71z" />
    <glyph glyph-name="f260" unicode="&#xf260;" horiz-adv-x="2048" 
d="M736 736l384 -384l-384 -384l-672 672l672 672l168 -168l-96 -96l-72 72l-480 -480l480 -480l193 193l-289 287zM1312 1312l672 -672l-672 -672l-168 168l96 96l72 -72l480 480l-480 480l-193 -193l289 -287l-96 -96l-384 384z" />
    <glyph glyph-name="f261" unicode="&#xf261;" horiz-adv-x="1792" 
d="M717 182l271 271l-279 279l-88 -88l192 -191l-96 -96l-279 279l279 279l40 -40l87 87l-127 128l-454 -454zM1075 190l454 454l-454 454l-271 -271l279 -279l88 88l-192 191l96 96l279 -279l-279 -279l-40 40l-87 -88zM1792 640q0 -182 -71 -348t-191 -286t-286 -191
t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" />
    <glyph glyph-name="_572" unicode="&#xf262;" horiz-adv-x="2304" 
d="M651 539q0 -39 -27.5 -66.5t-65.5 -27.5q-39 0 -66.5 27.5t-27.5 66.5q0 38 27.5 65.5t66.5 27.5q38 0 65.5 -27.5t27.5 -65.5zM1805 540q0 -39 -27.5 -66.5t-66.5 -27.5t-66.5 27.5t-27.5 66.5t27.5 66t66.5 27t66.5 -27t27.5 -66zM765 539q0 79 -56.5 136t-136.5 57
t-136.5 -56.5t-56.5 -136.5t56.5 -136.5t136.5 -56.5t136.5 56.5t56.5 136.5zM1918 540q0 80 -56.5 136.5t-136.5 56.5q-79 0 -136 -56.5t-57 -136.5t56.5 -136.5t136.5 -56.5t136.5 56.5t56.5 136.5zM850 539q0 -116 -81.5 -197.5t-196.5 -81.5q-116 0 -197.5 82t-81.5 197
t82 196.5t197 81.5t196.5 -81.5t81.5 -196.5zM2004 540q0 -115 -81.5 -196.5t-197.5 -81.5q-115 0 -196.5 81.5t-81.5 196.5t81.5 196.5t196.5 81.5q116 0 197.5 -81.5t81.5 -196.5zM1040 537q0 191 -135.5 326.5t-326.5 135.5q-125 0 -231 -62t-168 -168.5t-62 -231.5
t62 -231.5t168 -168.5t231 -62q191 0 326.5 135.5t135.5 326.5zM1708 1110q-254 111 -556 111q-319 0 -573 -110q117 0 223 -45.5t182.5 -122.5t122 -183t45.5 -223q0 115 43.5 219.5t118 180.5t177.5 123t217 50zM2187 537q0 191 -135 326.5t-326 135.5t-326.5 -135.5
t-135.5 -326.5t135.5 -326.5t326.5 -135.5t326 135.5t135 326.5zM1921 1103h383q-44 -51 -75 -114.5t-40 -114.5q110 -151 110 -337q0 -156 -77 -288t-209 -208.5t-287 -76.5q-133 0 -249 56t-196 155q-47 -56 -129 -179q-11 22 -53.5 82.5t-74.5 97.5
q-80 -99 -196.5 -155.5t-249.5 -56.5q-155 0 -287 76.5t-209 208.5t-77 288q0 186 110 337q-9 51 -40 114.5t-75 114.5h365q149 100 355 156.5t432 56.5q224 0 421 -56t348 -157z" />
    <glyph glyph-name="f263" unicode="&#xf263;" horiz-adv-x="1280" 
d="M640 629q-188 0 -321 133t-133 320q0 188 133 321t321 133t321 -133t133 -321q0 -187 -133 -320t-321 -133zM640 1306q-92 0 -157.5 -65.5t-65.5 -158.5q0 -92 65.5 -157.5t157.5 -65.5t157.5 65.5t65.5 157.5q0 93 -65.5 158.5t-157.5 65.5zM1163 574q13 -27 15 -49.5
t-4.5 -40.5t-26.5 -38.5t-42.5 -37t-61.5 -41.5q-115 -73 -315 -94l73 -72l267 -267q30 -31 30 -74t-30 -73l-12 -13q-31 -30 -74 -30t-74 30q-67 68 -267 268l-267 -268q-31 -30 -74 -30t-73 30l-12 13q-31 30 -31 73t31 74l267 267l72 72q-203 21 -317 94
q-39 25 -61.5 41.5t-42.5 37t-26.5 38.5t-4.5 40.5t15 49.5q10 20 28 35t42 22t56 -2t65 -35q5 -4 15 -11t43 -24.5t69 -30.5t92 -24t113 -11q91 0 174 25.5t120 50.5l38 25q33 26 65 35t56 2t42 -22t28 -35z" />
    <glyph glyph-name="_574" unicode="&#xf264;" 
d="M927 956q0 -66 -46.5 -112.5t-112.5 -46.5t-112.5 46.5t-46.5 112.5t46.5 112.5t112.5 46.5t112.5 -46.5t46.5 -112.5zM1141 593q-10 20 -28 32t-47.5 9.5t-60.5 -27.5q-10 -8 -29 -20t-81 -32t-127 -20t-124 18t-86 36l-27 18q-31 25 -60.5 27.5t-47.5 -9.5t-28 -32
q-22 -45 -2 -74.5t87 -73.5q83 -53 226 -67l-51 -52q-142 -142 -191 -190q-22 -22 -22 -52.5t22 -52.5l9 -9q22 -22 52.5 -22t52.5 22l191 191q114 -115 191 -191q22 -22 52.5 -22t52.5 22l9 9q22 22 22 52.5t-22 52.5l-191 190l-52 52q141 14 225 67q67 44 87 73.5t-2 74.5
zM1092 956q0 134 -95 229t-229 95t-229 -95t-95 -229t95 -229t229 -95t229 95t95 229zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
    <glyph glyph-name="_575" unicode="&#xf265;" horiz-adv-x="1720" 
d="M1565 1408q65 0 110 -45.5t45 -110.5v-519q0 -176 -68 -336t-182.5 -275t-274 -182.5t-334.5 -67.5q-176 0 -335.5 67.5t-274.5 182.5t-183 275t-68 336v519q0 64 46 110t110 46h1409zM861 344q47 0 82 33l404 388q37 35 37 85q0 49 -34.5 83.5t-83.5 34.5q-47 0 -82 -33
l-323 -310l-323 310q-35 33 -81 33q-49 0 -83.5 -34.5t-34.5 -83.5q0 -51 36 -85l405 -388q33 -33 81 -33z" />
    <glyph glyph-name="_576" unicode="&#xf266;" horiz-adv-x="2304" 
d="M1494 -103l-295 695q-25 -49 -158.5 -305.5t-198.5 -389.5q-1 -1 -27.5 -0.5t-26.5 1.5q-82 193 -255.5 587t-259.5 596q-21 50 -66.5 107.5t-103.5 100.5t-102 43q0 5 -0.5 24t-0.5 27h583v-50q-39 -2 -79.5 -16t-66.5 -43t-10 -64q26 -59 216.5 -499t235.5 -540
q31 61 140 266.5t131 247.5q-19 39 -126 281t-136 295q-38 69 -201 71v50l513 -1v-47q-60 -2 -93.5 -25t-12.5 -69q33 -70 87 -189.5t86 -187.5q110 214 173 363q24 55 -10 79.5t-129 26.5q1 7 1 25v24q64 0 170.5 0.5t180 1t92.5 0.5v-49q-62 -2 -119 -33t-90 -81
l-213 -442q13 -33 127.5 -290t121.5 -274l441 1017q-14 38 -49.5 62.5t-65 31.5t-55.5 8v50l460 -4l1 -2l-1 -44q-139 -4 -201 -145q-526 -1216 -559 -1291h-49z" />
    <glyph glyph-name="_577" unicode="&#xf267;" horiz-adv-x="1792" 
d="M949 643q0 -26 -16.5 -45t-41.5 -19q-26 0 -45 16.5t-19 41.5q0 26 17 45t42 19t44 -16.5t19 -41.5zM964 585l350 581q-9 -8 -67.5 -62.5t-125.5 -116.5t-136.5 -127t-117 -110.5t-50.5 -51.5l-349 -580q7 7 67 62t126 116.5t136 127t117 111t50 50.5zM1611 640
q0 -201 -104 -371q-3 2 -17 11t-26.5 16.5t-16.5 7.5q-13 0 -13 -13q0 -10 59 -44q-74 -112 -184.5 -190.5t-241.5 -110.5l-16 67q-1 10 -15 10q-5 0 -8 -5.5t-2 -9.5l16 -68q-72 -15 -146 -15q-199 0 -372 105q1 2 13 20.5t21.5 33.5t9.5 19q0 13 -13 13q-6 0 -17 -14.5
t-22.5 -34.5t-13.5 -23q-113 75 -192 187.5t-110 244.5l69 15q10 3 10 15q0 5 -5.5 8t-10.5 2l-68 -15q-14 72 -14 139q0 206 109 379q2 -1 18.5 -12t30 -19t17.5 -8q13 0 13 12q0 6 -12.5 15.5t-32.5 21.5l-20 12q77 112 189 189t244 107l15 -67q2 -10 15 -10q5 0 8 5.5
t2 10.5l-15 66q71 13 134 13q204 0 379 -109q-39 -56 -39 -65q0 -13 12 -13q11 0 48 64q111 -75 187.5 -186t107.5 -241l-56 -12q-10 -2 -10 -16q0 -5 5.5 -8t9.5 -2l57 13q14 -72 14 -140zM1696 640q0 163 -63.5 311t-170.5 255t-255 170.5t-311 63.5t-311 -63.5
t-255 -170.5t-170.5 -255t-63.5 -311t63.5 -311t170.5 -255t255 -170.5t311 -63.5t311 63.5t255 170.5t170.5 255t63.5 311zM1792 640q0 -182 -71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71t348 -71t286 -191
t191 -286t71 -348z" />
    <glyph glyph-name="_578" unicode="&#xf268;" horiz-adv-x="1792" 
d="M893 1536q240 2 451 -120q232 -134 352 -372l-742 39q-160 9 -294 -74.5t-185 -229.5l-276 424q128 159 311 245.5t383 87.5zM146 1131l337 -663q72 -143 211 -217t293 -45l-230 -451q-212 33 -385 157.5t-272.5 316t-99.5 411.5q0 267 146 491zM1732 962
q58 -150 59.5 -310.5t-48.5 -306t-153 -272t-246 -209.5q-230 -133 -498 -119l405 623q88 131 82.5 290.5t-106.5 277.5zM896 942q125 0 213.5 -88.5t88.5 -213.5t-88.5 -213.5t-213.5 -88.5t-213.5 88.5t-88.5 213.5t88.5 213.5t213.5 88.5z" />
    <glyph glyph-name="_579" unicode="&#xf269;" horiz-adv-x="1792" 
d="M903 -256q-283 0 -504.5 150.5t-329.5 398.5q-58 131 -67 301t26 332.5t111 312t179 242.5l-11 -281q11 14 68 15.5t70 -15.5q42 81 160.5 138t234.5 59q-54 -45 -119.5 -148.5t-58.5 -163.5q25 -8 62.5 -13.5t63 -7.5t68 -4t50.5 -3q15 -5 9.5 -45.5t-30.5 -75.5
q-5 -7 -16.5 -18.5t-56.5 -35.5t-101 -34l15 -189l-139 67q-18 -43 -7.5 -81.5t36 -66.5t65.5 -41.5t81 -6.5q51 9 98 34.5t83.5 45t73.5 17.5q61 -4 89.5 -33t19.5 -65q-1 -2 -2.5 -5.5t-8.5 -12.5t-18 -15.5t-31.5 -10.5t-46.5 -1q-60 -95 -144.5 -135.5t-209.5 -29.5
q74 -61 162.5 -82.5t168.5 -6t154.5 52t128 87.5t80.5 104q43 91 39 192.5t-37.5 188.5t-78.5 125q87 -38 137 -79.5t77 -112.5q15 170 -57.5 343t-209.5 284q265 -77 412 -279.5t151 -517.5q2 -127 -40.5 -255t-123.5 -238t-189 -196t-247.5 -135.5t-288.5 -49.5z" />
    <glyph glyph-name="_580" unicode="&#xf26a;" horiz-adv-x="1792" 
d="M1493 1308q-165 110 -359 110q-155 0 -293 -73t-240 -200q-75 -93 -119.5 -218t-48.5 -266v-42q4 -141 48.5 -266t119.5 -218q102 -127 240 -200t293 -73q194 0 359 110q-121 -108 -274.5 -168t-322.5 -60q-29 0 -43 1q-175 8 -333 82t-272 193t-181 281t-67 339
q0 182 71 348t191 286t286 191t348 71h3q168 -1 320.5 -60.5t273.5 -167.5zM1792 640q0 -192 -77 -362.5t-213 -296.5q-104 -63 -222 -63q-137 0 -255 84q154 56 253.5 233t99.5 405q0 227 -99 404t-253 234q119 83 254 83q119 0 226 -65q135 -125 210.5 -295t75.5 -361z
" />
    <glyph glyph-name="_581" unicode="&#xf26b;" horiz-adv-x="1792" 
d="M1792 599q0 -56 -7 -104h-1151q0 -146 109.5 -244.5t257.5 -98.5q99 0 185.5 46.5t136.5 130.5h423q-56 -159 -170.5 -281t-267.5 -188.5t-321 -66.5q-187 0 -356 83q-228 -116 -394 -116q-237 0 -237 263q0 115 45 275q17 60 109 229q199 360 475 606
q-184 -79 -427 -354q63 274 283.5 449.5t501.5 175.5q30 0 45 -1q255 117 433 117q64 0 116 -13t94.5 -40.5t66.5 -76.5t24 -115q0 -116 -75 -286q101 -182 101 -390zM1722 1239q0 83 -53 132t-137 49q-108 0 -254 -70q121 -47 222.5 -131.5t170.5 -195.5q51 135 51 216z
M128 2q0 -86 48.5 -132.5t134.5 -46.5q115 0 266 83q-122 72 -213.5 183t-137.5 245q-98 -205 -98 -332zM632 715h728q-5 142 -113 237t-251 95q-144 0 -251.5 -95t-112.5 -237z" />
    <glyph glyph-name="_582" unicode="&#xf26c;" horiz-adv-x="2048" 
d="M1792 288v960q0 13 -9.5 22.5t-22.5 9.5h-1600q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h1600q13 0 22.5 9.5t9.5 22.5zM1920 1248v-960q0 -66 -47 -113t-113 -47h-736v-128h352q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-832q-14 0 -23 9t-9 23
v64q0 14 9 23t23 9h352v128h-736q-66 0 -113 47t-47 113v960q0 66 47 113t113 47h1600q66 0 113 -47t47 -113z" />
    <glyph glyph-name="_583" unicode="&#xf26d;" horiz-adv-x="1792" 
d="M138 1408h197q-70 -64 -126 -149q-36 -56 -59 -115t-30 -125.5t-8.5 -120t10.5 -132t21 -126t28 -136.5q4 -19 6 -28q51 -238 81 -329q57 -171 152 -275h-272q-48 0 -82 34t-34 82v1304q0 48 34 82t82 34zM1346 1408h308q48 0 82 -34t34 -82v-1304q0 -48 -34 -82t-82 -34
h-178q212 210 196 565l-469 -101q-2 -45 -12 -82t-31 -72t-59.5 -59.5t-93.5 -36.5q-123 -26 -199 40q-32 27 -53 61t-51.5 129t-64.5 258q-35 163 -45.5 263t-5.5 139t23 77q20 41 62.5 73t102.5 45q45 12 83.5 6.5t67 -17t54 -35t43 -48t34.5 -56.5l468 100
q-68 175 -180 287z" />
    <glyph glyph-name="_584" unicode="&#xf26e;" 
d="M1401 -11l-6 -6q-113 -113 -259 -175q-154 -64 -317 -64q-165 0 -317 64q-148 63 -259 175q-113 112 -175 258q-42 103 -54 189q-4 28 48 36q51 8 56 -20q1 -1 1 -4q18 -90 46 -159q50 -124 152 -226q98 -98 226 -152q132 -56 276 -56q143 0 276 56q128 55 225 152l6 6
q10 10 25 6q12 -3 33 -22q36 -37 17 -58zM929 604l-66 -66l63 -63q21 -21 -7 -49q-17 -17 -32 -17q-10 0 -19 10l-62 61l-66 -66q-5 -5 -15 -5q-15 0 -31 16l-2 2q-18 15 -18 29q0 7 8 17l66 65l-66 66q-16 16 14 45q18 18 31 18q6 0 13 -5l65 -66l65 65q18 17 48 -13
q27 -27 11 -44zM1400 547q0 -118 -46 -228q-45 -105 -126 -186q-80 -80 -187 -126t-228 -46t-228 46t-187 126q-82 82 -125 186q-15 33 -15 40h-1q-9 27 43 44q50 16 60 -12q37 -99 97 -167h1v339v2q3 136 102 232q105 103 253 103q147 0 251 -103t104 -249
q0 -147 -104.5 -251t-250.5 -104q-58 0 -112 16q-28 11 -13 61q16 51 44 43l14 -3q14 -3 33 -6t30 -3q104 0 176 71.5t72 174.5q0 101 -72 171q-71 71 -175 71q-107 0 -178 -80q-64 -72 -64 -160v-413q110 -67 242 -67q96 0 185 36.5t156 103.5t103.5 155t36.5 183
q0 198 -141 339q-140 140 -339 140q-200 0 -340 -140q-53 -53 -77 -87l-2 -2q-8 -11 -13 -15.5t-21.5 -9.5t-38.5 3q-21 5 -36.5 16.5t-15.5 26.5v680q0 15 10.5 26.5t27.5 11.5h877q30 0 30 -55t-30 -55h-811v-483h1q40 42 102 84t108 61q109 46 231 46q121 0 228 -46
t187 -126q81 -81 126 -186q46 -112 46 -229zM1369 1128q9 -8 9 -18t-5.5 -18t-16.5 -21q-26 -26 -39 -26q-9 0 -16 7q-106 91 -207 133q-128 56 -276 56q-133 0 -262 -49q-27 -10 -45 37q-9 25 -8 38q3 16 16 20q130 57 299 57q164 0 316 -64q137 -58 235 -152z" />
    <glyph glyph-name="_585" unicode="&#xf270;" horiz-adv-x="1792" 
d="M1551 60q15 6 26 3t11 -17.5t-15 -33.5q-13 -16 -44 -43.5t-95.5 -68t-141 -74t-188 -58t-229.5 -24.5q-119 0 -238 31t-209 76.5t-172.5 104t-132.5 105t-84 87.5q-8 9 -10 16.5t1 12t8 7t11.5 2t11.5 -4.5q192 -117 300 -166q389 -176 799 -90q190 40 391 135z
M1758 175q11 -16 2.5 -69.5t-28.5 -102.5q-34 -83 -85 -124q-17 -14 -26 -9t0 24q21 45 44.5 121.5t6.5 98.5q-5 7 -15.5 11.5t-27 6t-29.5 2.5t-35 0t-31.5 -2t-31 -3t-22.5 -2q-6 -1 -13 -1.5t-11 -1t-8.5 -1t-7 -0.5h-5.5h-4.5t-3 0.5t-2 1.5l-1.5 3q-6 16 47 40t103 30
q46 7 108 1t76 -24zM1364 618q0 -31 13.5 -64t32 -58t37.5 -46t33 -32l13 -11l-227 -224q-40 37 -79 75.5t-58 58.5l-19 20q-11 11 -25 33q-38 -59 -97.5 -102.5t-127.5 -63.5t-140 -23t-137.5 21t-117.5 65.5t-83 113t-31 162.5q0 84 28 154t72 116.5t106.5 83t122.5 57
t130 34.5t119.5 18.5t99.5 6.5v127q0 65 -21 97q-34 53 -121 53q-6 0 -16.5 -1t-40.5 -12t-56 -29.5t-56 -59.5t-48 -96l-294 27q0 60 22 119t67 113t108 95t151.5 65.5t190.5 24.5q100 0 181 -25t129.5 -61.5t81 -83t45 -86t12.5 -73.5v-589zM692 597q0 -86 70 -133
q66 -44 139 -22q84 25 114 123q14 45 14 101v162q-59 -2 -111 -12t-106.5 -33.5t-87 -71t-32.5 -114.5z" />
    <glyph glyph-name="_586" unicode="&#xf271;" horiz-adv-x="1792" 
d="M1536 1280q52 0 90 -38t38 -90v-1280q0 -52 -38 -90t-90 -38h-1408q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h128v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h384v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h128zM1152 1376v-288q0 -14 9 -23t23 -9
h64q14 0 23 9t9 23v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23zM384 1376v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23zM1536 -128v1024h-1408v-1024h1408zM896 448h224q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-224
v-224q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v224h-224q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h224v224q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-224z" />
    <glyph glyph-name="_587" unicode="&#xf272;" horiz-adv-x="1792" 
d="M1152 416v-64q0 -14 -9 -23t-23 -9h-576q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h576q14 0 23 -9t9 -23zM128 -128h1408v1024h-1408v-1024zM512 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1280 1088v288q0 14 -9 23
t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1664 1152v-1280q0 -52 -38 -90t-90 -38h-1408q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h128v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h384v96q0 66 47 113t113 47h64q66 0 113 -47
t47 -113v-96h128q52 0 90 -38t38 -90z" />
    <glyph glyph-name="_588" unicode="&#xf273;" horiz-adv-x="1792" 
d="M1111 151l-46 -46q-9 -9 -22 -9t-23 9l-188 189l-188 -189q-10 -9 -23 -9t-22 9l-46 46q-9 9 -9 22t9 23l189 188l-189 188q-9 10 -9 23t9 22l46 46q9 9 22 9t23 -9l188 -188l188 188q10 9 23 9t22 -9l46 -46q9 -9 9 -22t-9 -23l-188 -188l188 -188q9 -10 9 -23t-9 -22z
M128 -128h1408v1024h-1408v-1024zM512 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1280 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1664 1152v-1280
q0 -52 -38 -90t-90 -38h-1408q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h128v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h384v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h128q52 0 90 -38t38 -90z" />
    <glyph glyph-name="_589" unicode="&#xf274;" horiz-adv-x="1792" 
d="M1303 572l-512 -512q-10 -9 -23 -9t-23 9l-288 288q-9 10 -9 23t9 22l46 46q9 9 22 9t23 -9l220 -220l444 444q10 9 23 9t22 -9l46 -46q9 -9 9 -22t-9 -23zM128 -128h1408v1024h-1408v-1024zM512 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23
t23 -9h64q14 0 23 9t9 23zM1280 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1664 1152v-1280q0 -52 -38 -90t-90 -38h-1408q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h128v96q0 66 47 113t113 47h64q66 0 113 -47
t47 -113v-96h384v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h128q52 0 90 -38t38 -90z" />
    <glyph glyph-name="_590" unicode="&#xf275;" horiz-adv-x="1792" 
d="M448 1536q26 0 45 -19t19 -45v-891l536 429q17 14 40 14q26 0 45 -19t19 -45v-379l536 429q17 14 40 14q26 0 45 -19t19 -45v-1152q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v1664q0 26 19 45t45 19h384z" />
    <glyph glyph-name="_591" unicode="&#xf276;" horiz-adv-x="1024" 
d="M512 448q66 0 128 15v-655q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v655q62 -15 128 -15zM512 1536q212 0 362 -150t150 -362t-150 -362t-362 -150t-362 150t-150 362t150 362t362 150zM512 1312q14 0 23 9t9 23t-9 23t-23 9q-146 0 -249 -103t-103 -249
q0 -14 9 -23t23 -9t23 9t9 23q0 119 84.5 203.5t203.5 84.5z" />
    <glyph glyph-name="_592" unicode="&#xf277;" horiz-adv-x="1792" 
d="M1745 1239q10 -10 10 -23t-10 -23l-141 -141q-28 -28 -68 -28h-1344q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h576v64q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-64h512q40 0 68 -28zM768 320h256v-512q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v512zM1600 768
q26 0 45 -19t19 -45v-256q0 -26 -19 -45t-45 -19h-1344q-40 0 -68 28l-141 141q-10 10 -10 23t10 23l141 141q28 28 68 28h512v192h256v-192h576z" />
    <glyph glyph-name="_593" unicode="&#xf278;" horiz-adv-x="2048" 
d="M2020 1525q28 -20 28 -53v-1408q0 -20 -11 -36t-29 -23l-640 -256q-24 -11 -48 0l-616 246l-616 -246q-10 -5 -24 -5q-19 0 -36 11q-28 20 -28 53v1408q0 20 11 36t29 23l640 256q24 11 48 0l616 -246l616 246q32 13 60 -6zM736 1390v-1270l576 -230v1270zM128 1173
v-1270l544 217v1270zM1920 107v1270l-544 -217v-1270z" />
    <glyph glyph-name="_594" unicode="&#xf279;" horiz-adv-x="1792" 
d="M512 1536q13 0 22.5 -9.5t9.5 -22.5v-1472q0 -20 -17 -28l-480 -256q-7 -4 -15 -4q-13 0 -22.5 9.5t-9.5 22.5v1472q0 20 17 28l480 256q7 4 15 4zM1760 1536q13 0 22.5 -9.5t9.5 -22.5v-1472q0 -20 -17 -28l-480 -256q-7 -4 -15 -4q-13 0 -22.5 9.5t-9.5 22.5v1472
q0 20 17 28l480 256q7 4 15 4zM640 1536q8 0 14 -3l512 -256q18 -10 18 -29v-1472q0 -13 -9.5 -22.5t-22.5 -9.5q-8 0 -14 3l-512 256q-18 10 -18 29v1472q0 13 9.5 22.5t22.5 9.5z" />
    <glyph glyph-name="_595" unicode="&#xf27a;" horiz-adv-x="1792" 
d="M640 640q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1024 640q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1408 640q0 53 -37.5 90.5t-90.5 37.5
t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1792 640q0 -174 -120 -321.5t-326 -233t-450 -85.5q-110 0 -211 18q-173 -173 -435 -229q-52 -10 -86 -13q-12 -1 -22 6t-13 18q-4 15 20 37q5 5 23.5 21.5t25.5 23.5t23.5 25.5t24 31.5t20.5 37
t20 48t14.5 57.5t12.5 72.5q-146 90 -229.5 216.5t-83.5 269.5q0 174 120 321.5t326 233t450 85.5t450 -85.5t326 -233t120 -321.5z" />
    <glyph glyph-name="_596" unicode="&#xf27b;" horiz-adv-x="1792" 
d="M640 640q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1024 640q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1408 640q0 -53 -37.5 -90.5t-90.5 -37.5
t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM896 1152q-204 0 -381.5 -69.5t-282 -187.5t-104.5 -255q0 -112 71.5 -213.5t201.5 -175.5l87 -50l-27 -96q-24 -91 -70 -172q152 63 275 171l43 38l57 -6q69 -8 130 -8q204 0 381.5 69.5t282 187.5
t104.5 255t-104.5 255t-282 187.5t-381.5 69.5zM1792 640q0 -174 -120 -321.5t-326 -233t-450 -85.5q-70 0 -145 8q-198 -175 -460 -242q-49 -14 -114 -22h-5q-15 0 -27 10.5t-16 27.5v1q-3 4 -0.5 12t2 10t4.5 9.5l6 9t7 8.5t8 9q7 8 31 34.5t34.5 38t31 39.5t32.5 51
t27 59t26 76q-157 89 -247.5 220t-90.5 281q0 130 71 248.5t191 204.5t286 136.5t348 50.5t348 -50.5t286 -136.5t191 -204.5t71 -248.5z" />
    <glyph glyph-name="_597" unicode="&#xf27c;" horiz-adv-x="1024" 
d="M512 345l512 295v-591l-512 -296v592zM0 640v-591l512 296zM512 1527v-591l-512 -296v591zM512 936l512 295v-591z" />
    <glyph glyph-name="_598" unicode="&#xf27d;" horiz-adv-x="1792" 
d="M1709 1018q-10 -236 -332 -651q-333 -431 -562 -431q-142 0 -240 263q-44 160 -132 482q-72 262 -157 262q-18 0 -127 -76l-77 98q24 21 108 96.5t130 115.5q156 138 241 146q95 9 153 -55.5t81 -203.5q44 -287 66 -373q55 -249 120 -249q51 0 154 161q101 161 109 246
q13 139 -109 139q-57 0 -121 -26q120 393 459 382q251 -8 236 -326z" />
    <glyph glyph-name="f27e" unicode="&#xf27e;" 
d="M0 1408h1536v-1536h-1536v1536zM1085 293l-221 631l221 297h-634l221 -297l-221 -631l317 -304z" />
    <glyph glyph-name="uniF280" unicode="&#xf280;" 
d="M0 1408h1536v-1536h-1536v1536zM908 1088l-12 -33l75 -83l-31 -114l25 -25l107 57l107 -57l25 25l-31 114l75 83l-12 33h-95l-53 96h-32l-53 -96h-95zM641 925q32 0 44.5 -16t11.5 -63l174 21q0 55 -17.5 92.5t-50.5 56t-69 25.5t-85 7q-133 0 -199 -57.5t-66 -182.5v-72
h-96v-128h76q20 0 20 -8v-382q0 -14 -5 -20t-18 -7l-73 -7v-88h448v86l-149 14q-6 1 -8.5 1.5t-3.5 2.5t-0.5 4t1 7t0.5 10v387h191l38 128h-231q-6 0 -2 6t4 9v80q0 27 1.5 40.5t7.5 28t19.5 20t36.5 5.5zM1248 96v86l-54 9q-7 1 -9.5 2.5t-2.5 3t1 7.5t1 12v520h-275
l-23 -101l83 -22q23 -7 23 -27v-370q0 -14 -6 -18.5t-20 -6.5l-70 -9v-86h352z" />
    <glyph glyph-name="uniF281" unicode="&#xf281;" horiz-adv-x="1792" 
d="M1792 690q0 -58 -29.5 -105.5t-79.5 -72.5q12 -46 12 -96q0 -155 -106.5 -287t-290.5 -208.5t-400 -76.5t-399.5 76.5t-290 208.5t-106.5 287q0 47 11 94q-51 25 -82 73.5t-31 106.5q0 82 58 140.5t141 58.5q85 0 145 -63q218 152 515 162l116 521q3 13 15 21t26 5
l369 -81q18 37 54 59.5t79 22.5q62 0 106 -43.5t44 -105.5t-44 -106t-106 -44t-105.5 43.5t-43.5 105.5l-334 74l-104 -472q300 -9 519 -160q58 61 143 61q83 0 141 -58.5t58 -140.5zM418 491q0 -62 43.5 -106t105.5 -44t106 44t44 106t-44 105.5t-106 43.5q-61 0 -105 -44
t-44 -105zM1228 136q11 11 11 26t-11 26q-10 10 -25 10t-26 -10q-41 -42 -121 -62t-160 -20t-160 20t-121 62q-11 10 -26 10t-25 -10q-11 -10 -11 -25.5t11 -26.5q43 -43 118.5 -68t122.5 -29.5t91 -4.5t91 4.5t122.5 29.5t118.5 68zM1225 341q62 0 105.5 44t43.5 106
q0 61 -44 105t-105 44q-62 0 -106 -43.5t-44 -105.5t44 -106t106 -44z" />
    <glyph glyph-name="_602" unicode="&#xf282;" horiz-adv-x="1792" 
d="M69 741h1q16 126 58.5 241.5t115 217t167.5 176t223.5 117.5t276.5 43q231 0 414 -105.5t294 -303.5q104 -187 104 -442v-188h-1125q1 -111 53.5 -192.5t136.5 -122.5t189.5 -57t213 -3t208 46.5t173.5 84.5v-377q-92 -55 -229.5 -92t-312.5 -38t-316 53
q-189 73 -311.5 249t-124.5 372q-3 242 111 412t325 268q-48 -60 -78 -125.5t-46 -159.5h635q8 77 -8 140t-47 101.5t-70.5 66.5t-80.5 41t-75 20.5t-56 8.5l-22 1q-135 -5 -259.5 -44.5t-223.5 -104.5t-176 -140.5t-138 -163.5z" />
    <glyph glyph-name="_603" unicode="&#xf283;" horiz-adv-x="2304" 
d="M0 32v608h2304v-608q0 -66 -47 -113t-113 -47h-1984q-66 0 -113 47t-47 113zM640 256v-128h384v128h-384zM256 256v-128h256v128h-256zM2144 1408q66 0 113 -47t47 -113v-224h-2304v224q0 66 47 113t113 47h1984z" />
    <glyph glyph-name="_604" unicode="&#xf284;" horiz-adv-x="1792" 
d="M1584 246l-218 111q-74 -120 -196.5 -189t-263.5 -69q-147 0 -271 72t-196 196t-72 270q0 110 42.5 209.5t115 172t172 115t209.5 42.5q131 0 247.5 -60.5t192.5 -168.5l215 125q-110 169 -286.5 265t-378.5 96q-161 0 -308 -63t-253 -169t-169 -253t-63 -308t63 -308
t169 -253t253 -169t308 -63q213 0 397.5 107t290.5 292zM1030 643l693 -352q-116 -253 -334.5 -400t-492.5 -147q-182 0 -348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71q260 0 470.5 -133.5t335.5 -366.5zM1543 640h-39v-160h-96v352h136q32 0 54.5 -20
t28.5 -48t1 -56t-27.5 -48t-57.5 -20z" />
    <glyph glyph-name="uniF285" unicode="&#xf285;" horiz-adv-x="1792" 
d="M1427 827l-614 386l92 151h855zM405 562l-184 116v858l1183 -743zM1424 697l147 -95v-858l-532 335zM1387 718l-500 -802h-855l356 571z" />
    <glyph glyph-name="uniF286" unicode="&#xf286;" horiz-adv-x="1792" 
d="M640 528v224q0 16 -16 16h-96q-16 0 -16 -16v-224q0 -16 16 -16h96q16 0 16 16zM1152 528v224q0 16 -16 16h-96q-16 0 -16 -16v-224q0 -16 16 -16h96q16 0 16 16zM1664 496v-752h-640v320q0 80 -56 136t-136 56t-136 -56t-56 -136v-320h-640v752q0 16 16 16h96
q16 0 16 -16v-112h128v624q0 16 16 16h96q16 0 16 -16v-112h128v112q0 16 16 16h96q16 0 16 -16v-112h128v112q0 6 2.5 9.5t8.5 5t9.5 2t11.5 0t9 -0.5v391q-32 15 -32 50q0 23 16.5 39t38.5 16t38.5 -16t16.5 -39q0 -35 -32 -50v-17q45 10 83 10q21 0 59.5 -7.5t54.5 -7.5
q17 0 47 7.5t37 7.5q16 0 16 -16v-210q0 -15 -35 -21.5t-62 -6.5q-18 0 -54.5 7.5t-55.5 7.5q-40 0 -90 -12v-133q1 0 9 0.5t11.5 0t9.5 -2t8.5 -5t2.5 -9.5v-112h128v112q0 16 16 16h96q16 0 16 -16v-112h128v112q0 16 16 16h96q16 0 16 -16v-624h128v112q0 16 16 16h96
q16 0 16 -16z" />
    <glyph glyph-name="_607" unicode="&#xf287;" horiz-adv-x="2304" 
d="M2288 731q16 -8 16 -27t-16 -27l-320 -192q-8 -5 -16 -5q-9 0 -16 4q-16 10 -16 28v128h-858q37 -58 83 -165q16 -37 24.5 -55t24 -49t27 -47t27 -34t31.5 -26t33 -8h96v96q0 14 9 23t23 9h320q14 0 23 -9t9 -23v-320q0 -14 -9 -23t-23 -9h-320q-14 0 -23 9t-9 23v96h-96
q-32 0 -61 10t-51 23.5t-45 40.5t-37 46t-33.5 57t-28.5 57.5t-28 60.5q-23 53 -37 81.5t-36 65t-44.5 53.5t-46.5 17h-360q-22 -84 -91 -138t-157 -54q-106 0 -181 75t-75 181t75 181t181 75q88 0 157 -54t91 -138h104q24 0 46.5 17t44.5 53.5t36 65t37 81.5q19 41 28 60.5
t28.5 57.5t33.5 57t37 46t45 40.5t51 23.5t61 10h107q21 57 70 92.5t111 35.5q80 0 136 -56t56 -136t-56 -136t-136 -56q-62 0 -111 35.5t-70 92.5h-107q-17 0 -33 -8t-31.5 -26t-27 -34t-27 -47t-24 -49t-24.5 -55q-46 -107 -83 -165h1114v128q0 18 16 28t32 -1z" />
    <glyph glyph-name="_608" unicode="&#xf288;" horiz-adv-x="1792" 
d="M1150 774q0 -56 -39.5 -95t-95.5 -39h-253v269h253q56 0 95.5 -39.5t39.5 -95.5zM1329 774q0 130 -91.5 222t-222.5 92h-433v-896h180v269h253q130 0 222 91.5t92 221.5zM1792 640q0 -182 -71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348
t71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" />
    <glyph glyph-name="_609" unicode="&#xf289;" horiz-adv-x="2304" 
d="M1645 438q0 59 -34 106.5t-87 68.5q-7 -45 -23 -92q-7 -24 -27.5 -38t-44.5 -14q-12 0 -24 3q-31 10 -45 38.5t-4 58.5q23 71 23 143q0 123 -61 227.5t-166 165.5t-228 61q-134 0 -247 -73t-167 -194q108 -28 188 -106q22 -23 22 -55t-22 -54t-54 -22t-55 22
q-75 75 -180 75q-106 0 -181 -74.5t-75 -180.5t75 -180.5t181 -74.5h1046q79 0 134.5 55.5t55.5 133.5zM1798 438q0 -142 -100.5 -242t-242.5 -100h-1046q-169 0 -289 119.5t-120 288.5q0 153 100 267t249 136q62 184 221 298t354 114q235 0 408.5 -158.5t196.5 -389.5
q116 -25 192.5 -118.5t76.5 -214.5zM2048 438q0 -175 -97 -319q-23 -33 -64 -33q-24 0 -43 13q-26 17 -32 48.5t12 57.5q71 104 71 233t-71 233q-18 26 -12 57t32 49t57.5 11.5t49.5 -32.5q97 -142 97 -318zM2304 438q0 -244 -134 -443q-23 -34 -64 -34q-23 0 -42 13
q-26 18 -32.5 49t11.5 57q108 164 108 358q0 195 -108 357q-18 26 -11.5 57.5t32.5 48.5q26 18 57 12t49 -33q134 -198 134 -442z" />
    <glyph glyph-name="_610" unicode="&#xf28a;" 
d="M1500 -13q0 -89 -63 -152.5t-153 -63.5t-153.5 63.5t-63.5 152.5q0 90 63.5 153.5t153.5 63.5t153 -63.5t63 -153.5zM1267 268q-115 -15 -192.5 -102.5t-77.5 -205.5q0 -74 33 -138q-146 -78 -379 -78q-109 0 -201 21t-153.5 54.5t-110.5 76.5t-76 85t-44.5 83
t-23.5 66.5t-6 39.5q0 19 4.5 42.5t18.5 56t36.5 58t64 43.5t94.5 18t94 -17.5t63 -41t35.5 -53t17.5 -49t4 -33.5q0 -34 -23 -81q28 -27 82 -42t93 -17l40 -1q115 0 190 51t75 133q0 26 -9 48.5t-31.5 44.5t-49.5 41t-74 44t-93.5 47.5t-119.5 56.5q-28 13 -43 20
q-116 55 -187 100t-122.5 102t-72 125.5t-20.5 162.5q0 78 20.5 150t66 137.5t112.5 114t166.5 77t221.5 28.5q120 0 220 -26t164.5 -67t109.5 -94t64 -105.5t19 -103.5q0 -46 -15 -82.5t-36.5 -58t-48.5 -36t-49 -19.5t-39 -5h-8h-32t-39 5t-44 14t-41 28t-37 46t-24 70.5
t-10 97.5q-15 16 -59 25.5t-81 10.5l-37 1q-68 0 -117.5 -31t-70.5 -70t-21 -76q0 -24 5 -43t24 -46t53 -51t97 -53.5t150 -58.5q76 -25 138.5 -53.5t109 -55.5t83 -59t60.5 -59.5t41 -62.5t26.5 -62t14.5 -63.5t6 -62t1 -62.5z" />
    <glyph glyph-name="_611" unicode="&#xf28b;" 
d="M704 352v576q0 14 -9 23t-23 9h-256q-14 0 -23 -9t-9 -23v-576q0 -14 9 -23t23 -9h256q14 0 23 9t9 23zM1152 352v576q0 14 -9 23t-23 9h-256q-14 0 -23 -9t-9 -23v-576q0 -14 9 -23t23 -9h256q14 0 23 9t9 23zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103
t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
    <glyph glyph-name="_612" unicode="&#xf28c;" 
d="M768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM768 96q148 0 273 73t198 198t73 273t-73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273
t73 -273t198 -198t273 -73zM864 320q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-576q0 -14 -9 -23t-23 -9h-192zM480 320q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-576q0 -14 -9 -23t-23 -9h-192z" />
    <glyph glyph-name="_613" unicode="&#xf28d;" 
d="M1088 352v576q0 14 -9 23t-23 9h-576q-14 0 -23 -9t-9 -23v-576q0 -14 9 -23t23 -9h576q14 0 23 9t9 23zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5
t103 -385.5z" />
    <glyph glyph-name="_614" unicode="&#xf28e;" 
d="M768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM768 96q148 0 273 73t198 198t73 273t-73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273
t73 -273t198 -198t273 -73zM480 320q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h576q14 0 23 -9t9 -23v-576q0 -14 -9 -23t-23 -9h-576z" />
    <glyph glyph-name="_615" unicode="&#xf290;" horiz-adv-x="1792" 
d="M1757 128l35 -313q3 -28 -16 -50q-19 -21 -48 -21h-1664q-29 0 -48 21q-19 22 -16 50l35 313h1722zM1664 967l86 -775h-1708l86 775q3 24 21 40.5t43 16.5h256v-128q0 -53 37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5v128h384v-128q0 -53 37.5 -90.5t90.5 -37.5
t90.5 37.5t37.5 90.5v128h256q25 0 43 -16.5t21 -40.5zM1280 1152v-256q0 -26 -19 -45t-45 -19t-45 19t-19 45v256q0 106 -75 181t-181 75t-181 -75t-75 -181v-256q0 -26 -19 -45t-45 -19t-45 19t-19 45v256q0 159 112.5 271.5t271.5 112.5t271.5 -112.5t112.5 -271.5z" />
    <glyph glyph-name="_616" unicode="&#xf291;" horiz-adv-x="2048" 
d="M1920 768q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5h-15l-115 -662q-8 -46 -44 -76t-82 -30h-1280q-46 0 -82 30t-44 76l-115 662h-15q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5h1792zM485 -32q26 2 43.5 22.5t15.5 46.5l-32 416q-2 26 -22.5 43.5
t-46.5 15.5t-43.5 -22.5t-15.5 -46.5l32 -416q2 -25 20.5 -42t43.5 -17h5zM896 32v416q0 26 -19 45t-45 19t-45 -19t-19 -45v-416q0 -26 19 -45t45 -19t45 19t19 45zM1280 32v416q0 26 -19 45t-45 19t-45 -19t-19 -45v-416q0 -26 19 -45t45 -19t45 19t19 45zM1632 27l32 416
q2 26 -15.5 46.5t-43.5 22.5t-46.5 -15.5t-22.5 -43.5l-32 -416q-2 -26 15.5 -46.5t43.5 -22.5h5q25 0 43.5 17t20.5 42zM476 1244l-93 -412h-132l101 441q19 88 89 143.5t160 55.5h167q0 26 19 45t45 19h384q26 0 45 -19t19 -45h167q90 0 160 -55.5t89 -143.5l101 -441
h-132l-93 412q-11 44 -45.5 72t-79.5 28h-167q0 -26 -19 -45t-45 -19h-384q-26 0 -45 19t-19 45h-167q-45 0 -79.5 -28t-45.5 -72z" />
    <glyph glyph-name="_617" unicode="&#xf292;" horiz-adv-x="1792" 
d="M991 512l64 256h-254l-64 -256h254zM1759 1016l-56 -224q-7 -24 -31 -24h-327l-64 -256h311q15 0 25 -12q10 -14 6 -28l-56 -224q-5 -24 -31 -24h-327l-81 -328q-7 -24 -31 -24h-224q-16 0 -26 12q-9 12 -6 28l78 312h-254l-81 -328q-7 -24 -31 -24h-225q-15 0 -25 12
q-9 12 -6 28l78 312h-311q-15 0 -25 12q-9 12 -6 28l56 224q7 24 31 24h327l64 256h-311q-15 0 -25 12q-10 14 -6 28l56 224q5 24 31 24h327l81 328q7 24 32 24h224q15 0 25 -12q9 -12 6 -28l-78 -312h254l81 328q7 24 32 24h224q15 0 25 -12q9 -12 6 -28l-78 -312h311
q15 0 25 -12q9 -12 6 -28z" />
    <glyph glyph-name="_618" unicode="&#xf293;" 
d="M841 483l148 -148l-149 -149zM840 1094l149 -149l-148 -148zM710 -130l464 464l-306 306l306 306l-464 464v-611l-255 255l-93 -93l320 -321l-320 -321l93 -93l255 255v-611zM1429 640q0 -209 -32 -365.5t-87.5 -257t-140.5 -162.5t-181.5 -86.5t-219.5 -24.5
t-219.5 24.5t-181.5 86.5t-140.5 162.5t-87.5 257t-32 365.5t32 365.5t87.5 257t140.5 162.5t181.5 86.5t219.5 24.5t219.5 -24.5t181.5 -86.5t140.5 -162.5t87.5 -257t32 -365.5z" />
    <glyph glyph-name="_619" unicode="&#xf294;" horiz-adv-x="1024" 
d="M596 113l173 172l-173 172v-344zM596 823l173 172l-173 172v-344zM628 640l356 -356l-539 -540v711l-297 -296l-108 108l372 373l-372 373l108 108l297 -296v711l539 -540z" />
    <glyph glyph-name="_620" unicode="&#xf295;" 
d="M1280 256q0 52 -38 90t-90 38t-90 -38t-38 -90t38 -90t90 -38t90 38t38 90zM512 1024q0 52 -38 90t-90 38t-90 -38t-38 -90t38 -90t90 -38t90 38t38 90zM1536 256q0 -159 -112.5 -271.5t-271.5 -112.5t-271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5t271.5 -112.5
t112.5 -271.5zM1440 1344q0 -20 -13 -38l-1056 -1408q-19 -26 -51 -26h-160q-26 0 -45 19t-19 45q0 20 13 38l1056 1408q19 26 51 26h160q26 0 45 -19t19 -45zM768 1024q0 -159 -112.5 -271.5t-271.5 -112.5t-271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5
t271.5 -112.5t112.5 -271.5z" />
    <glyph glyph-name="_621" unicode="&#xf296;" horiz-adv-x="1792" 
d="M104 830l792 -1015l-868 630q-18 13 -25 34.5t0 42.5l101 308v0zM566 830h660l-330 -1015v0zM368 1442l198 -612h-462l198 612q8 23 33 23t33 -23zM1688 830l101 -308q7 -21 0 -42.5t-25 -34.5l-868 -630l792 1015v0zM1688 830h-462l198 612q8 23 33 23t33 -23z" />
    <glyph glyph-name="_622" unicode="&#xf297;" horiz-adv-x="1792" 
d="M384 704h160v224h-160v-224zM1221 372v92q-104 -36 -243 -38q-135 -1 -259.5 46.5t-220.5 122.5l1 -96q88 -80 212 -128.5t272 -47.5q129 0 238 49zM640 704h640v224h-640v-224zM1792 736q0 -187 -99 -352q89 -102 89 -229q0 -157 -129.5 -268t-313.5 -111
q-122 0 -225 52.5t-161 140.5q-19 -1 -57 -1t-57 1q-58 -88 -161 -140.5t-225 -52.5q-184 0 -313.5 111t-129.5 268q0 127 89 229q-99 165 -99 352q0 209 120 385.5t326.5 279.5t449.5 103t449.5 -103t326.5 -279.5t120 -385.5z" />
    <glyph glyph-name="_623" unicode="&#xf298;" 
d="M515 625v-128h-252v128h252zM515 880v-127h-252v127h252zM1273 369v-128h-341v128h341zM1273 625v-128h-672v128h672zM1273 880v-127h-672v127h672zM1408 20v1240q0 8 -6 14t-14 6h-32l-378 -256l-210 171l-210 -171l-378 256h-32q-8 0 -14 -6t-6 -14v-1240q0 -8 6 -14
t14 -6h1240q8 0 14 6t6 14zM553 1130l185 150h-406zM983 1130l221 150h-406zM1536 1260v-1240q0 -62 -43 -105t-105 -43h-1240q-62 0 -105 43t-43 105v1240q0 62 43 105t105 43h1240q62 0 105 -43t43 -105z" />
    <glyph glyph-name="_624" unicode="&#xf299;" horiz-adv-x="1792" 
d="M896 720q-104 196 -160 278q-139 202 -347 318q-34 19 -70 36q-89 40 -94 32t34 -38l39 -31q62 -43 112.5 -93.5t94.5 -116.5t70.5 -113t70.5 -131q9 -17 13 -25q44 -84 84 -153t98 -154t115.5 -150t131 -123.5t148.5 -90.5q153 -66 154 -60q1 3 -49 37q-53 36 -81 57
q-77 58 -179 211t-185 310zM549 177q-76 60 -132.5 125t-98 143.5t-71 154.5t-58.5 186t-52 209t-60.5 252t-76.5 289q273 0 497.5 -36t379 -92t271 -144.5t185.5 -172.5t110 -198.5t56 -199.5t12.5 -198.5t-9.5 -173t-20 -143.5t-13 -107l323 -327h-104l-281 285
q-22 -2 -91.5 -14t-121.5 -19t-138 -6t-160.5 17t-167.5 59t-179 111z" />
    <glyph glyph-name="_625" unicode="&#xf29a;" horiz-adv-x="1792" 
d="M1374 879q-6 26 -28.5 39.5t-48.5 7.5q-261 -62 -401 -62t-401 62q-26 6 -48.5 -7.5t-28.5 -39.5t7.5 -48.5t39.5 -28.5q194 -46 303 -58q-2 -158 -15.5 -269t-26.5 -155.5t-41 -115.5l-9 -21q-10 -25 1 -49t36 -34q9 -4 23 -4q44 0 60 41l8 20q54 139 71 259h42
q17 -120 71 -259l8 -20q16 -41 60 -41q14 0 23 4q25 10 36 34t1 49l-9 21q-28 71 -41 115.5t-26.5 155.5t-15.5 269q109 12 303 58q26 6 39.5 28.5t7.5 48.5zM1024 1024q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5z
M1600 640q0 -143 -55.5 -273.5t-150 -225t-225 -150t-273.5 -55.5t-273.5 55.5t-225 150t-150 225t-55.5 273.5t55.5 273.5t150 225t225 150t273.5 55.5t273.5 -55.5t225 -150t150 -225t55.5 -273.5zM896 1408q-156 0 -298 -61t-245 -164t-164 -245t-61 -298t61 -298
t164 -245t245 -164t298 -61t298 61t245 164t164 245t61 298t-61 298t-164 245t-245 164t-298 61zM1792 640q0 -182 -71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" />
    <glyph glyph-name="_626" unicode="&#xf29b;" 
d="M1438 723q34 -35 29 -82l-44 -551q-4 -42 -34.5 -70t-71.5 -28q-6 0 -9 1q-44 3 -72.5 36.5t-25.5 77.5l35 429l-143 -8q55 -113 55 -240q0 -216 -148 -372l-137 137q91 101 91 235q0 145 -102.5 248t-247.5 103q-134 0 -236 -92l-137 138q120 114 284 141l264 300
l-149 87l-181 -161q-33 -30 -77 -27.5t-73 35.5t-26.5 77t34.5 73l239 213q26 23 60 26.5t64 -14.5l488 -283q36 -21 48 -68q17 -67 -26 -117l-205 -232l371 20q49 3 83 -32zM1240 1180q-74 0 -126 52t-52 126t52 126t126 52t126.5 -52t52.5 -126t-52.5 -126t-126.5 -52z
M613 -62q106 0 196 61l139 -139q-146 -116 -335 -116q-148 0 -273.5 73t-198.5 198t-73 273q0 188 116 336l139 -139q-60 -88 -60 -197q0 -145 102.5 -247.5t247.5 -102.5z" />
    <glyph glyph-name="_627" unicode="&#xf29c;" 
d="M880 336v-160q0 -14 -9 -23t-23 -9h-160q-14 0 -23 9t-9 23v160q0 14 9 23t23 9h160q14 0 23 -9t9 -23zM1136 832q0 -50 -15 -90t-45.5 -69t-52 -44t-59.5 -36q-32 -18 -46.5 -28t-26 -24t-11.5 -29v-32q0 -14 -9 -23t-23 -9h-160q-14 0 -23 9t-9 23v68q0 35 10.5 64.5
t24 47.5t39 35.5t41 25.5t44.5 21q53 25 75 43t22 49q0 42 -43.5 71.5t-95.5 29.5q-56 0 -95 -27q-29 -20 -80 -83q-9 -12 -25 -12q-11 0 -19 6l-108 82q-10 7 -12 20t5 23q122 192 349 192q129 0 238.5 -89.5t109.5 -214.5zM768 1280q-130 0 -248.5 -51t-204 -136.5
t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5t-51 248.5t-136.5 204t-204 136.5t-248.5 51zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5
t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
    <glyph glyph-name="_628" unicode="&#xf29d;" horiz-adv-x="1408" 
d="M366 1225q-64 0 -110 45.5t-46 110.5q0 64 46 109.5t110 45.5t109.5 -45.5t45.5 -109.5q0 -65 -45.5 -110.5t-109.5 -45.5zM917 583q0 -50 -30 -67.5t-63.5 -6.5t-47.5 34l-367 438q-7 12 -14 15.5t-11 1.5l-3 -3q-7 -8 4 -21l122 -139l1 -354l-161 -457
q-67 -192 -92 -234q-15 -26 -28 -32q-50 -26 -103 -1q-29 13 -41.5 43t-9.5 57q2 17 197 618l5 416l-85 -164l35 -222q4 -24 -1 -42t-14 -27.5t-19 -16t-17 -7.5l-7 -2q-19 -3 -34.5 3t-24 16t-14 22t-7.5 19.5t-2 9.5l-46 299l211 381q23 34 113 34q75 0 107 -40l424 -521
q7 -5 14 -17l3 -3l-1 -1q7 -13 7 -29zM514 433q43 -113 88.5 -225t69.5 -168l24 -55q36 -93 42 -125q11 -70 -36 -97q-35 -22 -66 -16t-51 22t-29 35h-1q-6 16 -8 25l-124 351zM1338 -159q31 -49 31 -57q0 -5 -3 -7q-9 -5 -14.5 0.5t-15.5 26t-16 30.5q-114 172 -423 661
q3 -1 7 1t7 4l3 2q11 9 11 17z" />
    <glyph glyph-name="_629" unicode="&#xf29e;" horiz-adv-x="2304" 
d="M504 542h171l-1 265zM1530 641q0 87 -50.5 140t-146.5 53h-54v-388h52q91 0 145 57t54 138zM956 1018l1 -756q0 -14 -9.5 -24t-23.5 -10h-216q-14 0 -23.5 10t-9.5 24v62h-291l-55 -81q-10 -15 -28 -15h-267q-21 0 -30.5 18t3.5 35l556 757q9 14 27 14h332q14 0 24 -10
t10 -24zM1783 641q0 -193 -125.5 -303t-324.5 -110h-270q-14 0 -24 10t-10 24v756q0 14 10 24t24 10h268q200 0 326 -109t126 -302zM1939 640q0 -11 -0.5 -29t-8 -71.5t-21.5 -102t-44.5 -108t-73.5 -102.5h-51q38 45 66.5 104.5t41.5 112t21 98t9 72.5l1 27q0 8 -0.5 22.5
t-7.5 60t-20 91.5t-41 111.5t-66 124.5h43q41 -47 72 -107t45.5 -111.5t23 -96t10.5 -70.5zM2123 640q0 -11 -0.5 -29t-8 -71.5t-21.5 -102t-45 -108t-74 -102.5h-51q38 45 66.5 104.5t41.5 112t21 98t9 72.5l1 27q0 8 -0.5 22.5t-7.5 60t-19.5 91.5t-40.5 111.5t-66 124.5
h43q41 -47 72 -107t45.5 -111.5t23 -96t10.5 -70.5zM2304 640q0 -11 -0.5 -29t-8 -71.5t-21.5 -102t-44.5 -108t-73.5 -102.5h-51q38 45 66 104.5t41 112t21 98t9 72.5l1 27q0 8 -0.5 22.5t-7.5 60t-19.5 91.5t-40.5 111.5t-66 124.5h43q41 -47 72 -107t45.5 -111.5t23 -96
t9.5 -70.5z" />
    <glyph glyph-name="uniF2A0" unicode="&#xf2a0;" horiz-adv-x="1408" 
d="M617 -153q0 11 -13 58t-31 107t-20 69q-1 4 -5 26.5t-8.5 36t-13.5 21.5q-15 14 -51 14q-23 0 -70 -5.5t-71 -5.5q-34 0 -47 11q-6 5 -11 15.5t-7.5 20t-6.5 24t-5 18.5q-37 128 -37 255t37 255q1 4 5 18.5t6.5 24t7.5 20t11 15.5q13 11 47 11q24 0 71 -5.5t70 -5.5
q36 0 51 14q9 8 13.5 21.5t8.5 36t5 26.5q2 9 20 69t31 107t13 58q0 22 -43.5 52.5t-75.5 42.5q-20 8 -45 8q-34 0 -98 -18q-57 -17 -96.5 -40.5t-71 -66t-46 -70t-45.5 -94.5q-6 -12 -9 -19q-49 -107 -68 -216t-19 -244t19 -244t68 -216q56 -122 83 -161q63 -91 179 -127
l6 -2q64 -18 98 -18q25 0 45 8q32 12 75.5 42.5t43.5 52.5zM776 760q-26 0 -45 19t-19 45.5t19 45.5q37 37 37 90q0 52 -37 91q-19 19 -19 45t19 45t45 19t45 -19q75 -75 75 -181t-75 -181q-21 -19 -45 -19zM957 579q-27 0 -45 19q-19 19 -19 45t19 45q112 114 112 272
t-112 272q-19 19 -19 45t19 45t45 19t45 -19q150 -150 150 -362t-150 -362q-18 -19 -45 -19zM1138 398q-27 0 -45 19q-19 19 -19 45t19 45q90 91 138.5 208t48.5 245t-48.5 245t-138.5 208q-19 19 -19 45t19 45t45 19t45 -19q109 -109 167 -249t58 -294t-58 -294t-167 -249
q-18 -19 -45 -19z" />
    <glyph glyph-name="uniF2A1" unicode="&#xf2a1;" horiz-adv-x="2176" 
d="M192 352q-66 0 -113 -47t-47 -113t47 -113t113 -47t113 47t47 113t-47 113t-113 47zM704 352q-66 0 -113 -47t-47 -113t47 -113t113 -47t113 47t47 113t-47 113t-113 47zM704 864q-66 0 -113 -47t-47 -113t47 -113t113 -47t113 47t47 113t-47 113t-113 47zM1472 352
q-66 0 -113 -47t-47 -113t47 -113t113 -47t113 47t47 113t-47 113t-113 47zM1984 352q-66 0 -113 -47t-47 -113t47 -113t113 -47t113 47t47 113t-47 113t-113 47zM1472 864q-66 0 -113 -47t-47 -113t47 -113t113 -47t113 47t47 113t-47 113t-113 47zM1984 864
q-66 0 -113 -47t-47 -113t47 -113t113 -47t113 47t47 113t-47 113t-113 47zM1984 1376q-66 0 -113 -47t-47 -113t47 -113t113 -47t113 47t47 113t-47 113t-113 47zM384 192q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM896 192q0 -80 -56 -136
t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM384 704q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM896 704q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM384 1216q0 -80 -56 -136t-136 -56
t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1664 192q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM896 1216q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM2176 192q0 -80 -56 -136t-136 -56t-136 56
t-56 136t56 136t136 56t136 -56t56 -136zM1664 704q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM2176 704q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1664 1216q0 -80 -56 -136t-136 -56t-136 56t-56 136
t56 136t136 56t136 -56t56 -136zM2176 1216q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136z" />
    <glyph glyph-name="uniF2A2" unicode="&#xf2a2;" horiz-adv-x="1792" 
d="M128 -192q0 -26 -19 -45t-45 -19t-45 19t-19 45t19 45t45 19t45 -19t19 -45zM320 0q0 -26 -19 -45t-45 -19t-45 19t-19 45t19 45t45 19t45 -19t19 -45zM365 365l256 -256l-90 -90l-256 256zM704 384q0 -26 -19 -45t-45 -19t-45 19t-19 45t19 45t45 19t45 -19t19 -45z
M1411 704q0 -59 -11.5 -108.5t-37.5 -93.5t-44 -67.5t-53 -64.5q-31 -35 -45.5 -54t-33.5 -50t-26.5 -64t-7.5 -74q0 -159 -112.5 -271.5t-271.5 -112.5q-26 0 -45 19t-19 45t19 45t45 19q106 0 181 75t75 181q0 57 11.5 105.5t37 91t43.5 66.5t52 63q40 46 59.5 72
t37.5 74.5t18 103.5q0 185 -131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5q0 -26 -19 -45t-45 -19t-45 19t-19 45q0 117 45.5 223.5t123 184t184 123t223.5 45.5t223.5 -45.5t184 -123t123 -184t45.5 -223.5zM896 576q0 -26 -19 -45t-45 -19t-45 19t-19 45t19 45
t45 19t45 -19t19 -45zM1184 704q0 -26 -19 -45t-45 -19t-45 19t-19 45q0 93 -65.5 158.5t-158.5 65.5q-92 0 -158 -65.5t-66 -158.5q0 -26 -19 -45t-45 -19t-45 19t-19 45q0 146 103 249t249 103t249 -103t103 -249zM1578 993q10 -25 -1 -49t-36 -34q-9 -4 -23 -4
q-19 0 -35.5 11t-23.5 30q-68 178 -224 295q-21 16 -25 42t12 47q17 21 43 25t47 -12q183 -137 266 -351zM1788 1074q9 -25 -1.5 -49t-35.5 -34q-11 -4 -23 -4q-44 0 -60 41q-92 238 -297 393q-22 16 -25.5 42t12.5 47q16 22 42 25.5t47 -12.5q235 -175 341 -449z" />
    <glyph glyph-name="uniF2A3" unicode="&#xf2a3;" horiz-adv-x="2304" 
d="M1032 576q-59 2 -84 55q-17 34 -48 53.5t-68 19.5q-53 0 -90.5 -37.5t-37.5 -90.5q0 -56 36 -89l10 -8q34 -31 82 -31q37 0 68 19.5t48 53.5q25 53 84 55zM1600 704q0 56 -36 89l-10 8q-34 31 -82 31q-37 0 -68 -19.5t-48 -53.5q-25 -53 -84 -55q59 -2 84 -55
q17 -34 48 -53.5t68 -19.5q53 0 90.5 37.5t37.5 90.5zM1174 925q-17 -35 -55 -48t-73 4q-62 31 -134 31q-51 0 -99 -17q3 0 9.5 0.5t9.5 0.5q92 0 170.5 -50t118.5 -133q17 -36 3.5 -73.5t-49.5 -54.5q-18 -9 -39 -9q21 0 39 -9q36 -17 49.5 -54.5t-3.5 -73.5
q-40 -83 -118.5 -133t-170.5 -50h-6q-16 2 -44 4l-290 27l-239 -120q-14 -7 -29 -7q-40 0 -57 35l-160 320q-11 23 -4 47.5t29 37.5l209 119l148 267q17 155 91.5 291.5t195.5 236.5q31 25 70.5 21.5t64.5 -34.5t21.5 -70t-34.5 -65q-70 -59 -117 -128q123 84 267 101
q40 5 71.5 -19t35.5 -64q5 -40 -19 -71.5t-64 -35.5q-84 -10 -159 -55q46 10 99 10q115 0 218 -50q36 -18 49 -55.5t-5 -73.5zM2137 1085l160 -320q11 -23 4 -47.5t-29 -37.5l-209 -119l-148 -267q-17 -155 -91.5 -291.5t-195.5 -236.5q-26 -22 -61 -22q-45 0 -74 35
q-25 31 -21.5 70t34.5 65q70 59 117 128q-123 -84 -267 -101q-4 -1 -12 -1q-36 0 -63.5 24t-31.5 60q-5 40 19 71.5t64 35.5q84 10 159 55q-46 -10 -99 -10q-115 0 -218 50q-36 18 -49 55.5t5 73.5q17 35 55 48t73 -4q62 -31 134 -31q51 0 99 17q-3 0 -9.5 -0.5t-9.5 -0.5
q-92 0 -170.5 50t-118.5 133q-17 36 -3.5 73.5t49.5 54.5q18 9 39 9q-21 0 -39 9q-36 17 -49.5 54.5t3.5 73.5q40 83 118.5 133t170.5 50h6h1q14 -2 42 -4l291 -27l239 120q14 7 29 7q40 0 57 -35z" />
    <glyph glyph-name="uniF2A4" unicode="&#xf2a4;" horiz-adv-x="1792" 
d="M1056 704q0 -26 19 -45t45 -19t45 19t19 45q0 146 -103 249t-249 103t-249 -103t-103 -249q0 -26 19 -45t45 -19t45 19t19 45q0 93 66 158.5t158 65.5t158 -65.5t66 -158.5zM835 1280q-117 0 -223.5 -45.5t-184 -123t-123 -184t-45.5 -223.5q0 -26 19 -45t45 -19t45 19
t19 45q0 185 131.5 316.5t316.5 131.5t316.5 -131.5t131.5 -316.5q0 -55 -18 -103.5t-37.5 -74.5t-59.5 -72q-34 -39 -52 -63t-43.5 -66.5t-37 -91t-11.5 -105.5q0 -106 -75 -181t-181 -75q-26 0 -45 -19t-19 -45t19 -45t45 -19q159 0 271.5 112.5t112.5 271.5q0 41 7.5 74
t26.5 64t33.5 50t45.5 54q35 41 53 64.5t44 67.5t37.5 93.5t11.5 108.5q0 117 -45.5 223.5t-123 184t-184 123t-223.5 45.5zM591 561l226 -226l-579 -579q-12 -12 -29 -12t-29 12l-168 168q-12 12 -12 29t12 29zM1612 1524l168 -168q12 -12 12 -29t-12 -30l-233 -233
l-26 -25l-71 -71q-66 153 -195 258l91 91l207 207q13 12 30 12t29 -12z" />
    <glyph glyph-name="uniF2A5" unicode="&#xf2a5;" 
d="M866 1021q0 -27 -13 -94q-11 -50 -31.5 -150t-30.5 -150q-2 -11 -4.5 -12.5t-13.5 -2.5q-20 -2 -31 -2q-58 0 -84 49.5t-26 113.5q0 88 35 174t103 124q28 14 51 14q28 0 36.5 -16.5t8.5 -47.5zM1352 597q0 14 -39 75.5t-52 66.5q-21 8 -34 8q-91 0 -226 -77l-2 2
q3 22 27.5 135t24.5 178q0 233 -242 233q-24 0 -68 -6q-94 -17 -168.5 -89.5t-111.5 -166.5t-37 -189q0 -146 80.5 -225t227.5 -79q25 0 25 -3t-1 -5q-4 -34 -26 -117q-14 -52 -51.5 -101t-82.5 -49q-42 0 -42 47q0 24 10.5 47.5t25 39.5t29.5 28.5t26 20t11 8.5q0 3 -7 10
q-24 22 -58.5 36.5t-65.5 14.5q-35 0 -63.5 -34t-41 -75t-12.5 -75q0 -88 51.5 -142t138.5 -54q82 0 155 53t117.5 126t65.5 153q6 22 15.5 66.5t14.5 66.5q3 12 14 18q118 60 227 60q48 0 127 -18q1 -1 4 -1q5 0 9.5 4.5t4.5 8.5zM1536 1120v-960q0 -119 -84.5 -203.5
t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
    <glyph glyph-name="uniF2A6" unicode="&#xf2a6;" horiz-adv-x="1535" 
d="M744 1231q0 24 -2 38.5t-8.5 30t-21 23t-37.5 7.5q-39 0 -78 -23q-105 -58 -159 -190.5t-54 -269.5q0 -44 8.5 -85.5t26.5 -80.5t52.5 -62.5t81.5 -23.5q4 0 18 -0.5t20 0t16 3t15 8.5t7 16q16 77 48 231.5t48 231.5q19 91 19 146zM1498 575q0 -7 -7.5 -13.5t-15.5 -6.5
l-6 1q-22 3 -62 11t-72 12.5t-63 4.5q-167 0 -351 -93q-15 -8 -21 -27q-10 -36 -24.5 -105.5t-22.5 -100.5q-23 -91 -70 -179.5t-112.5 -164.5t-154.5 -123t-185 -47q-135 0 -214.5 83.5t-79.5 219.5q0 53 19.5 117t63 116.5t97.5 52.5q38 0 120 -33.5t83 -61.5
q0 -1 -16.5 -12.5t-39.5 -31t-46 -44.5t-39 -61t-16 -74q0 -33 16.5 -53t48.5 -20q45 0 85 31.5t66.5 78t48 105.5t32.5 107t16 90v9q0 2 -3.5 3.5t-8.5 1.5h-10t-10 -0.5t-6 -0.5q-227 0 -352 122.5t-125 348.5q0 108 34.5 221t96 210t156 167.5t204.5 89.5q52 9 106 9
q374 0 374 -360q0 -98 -38 -273t-43 -211l3 -3q101 57 182.5 88t167.5 31q22 0 53 -13q19 -7 80 -102.5t61 -116.5z" />
    <glyph glyph-name="uniF2A7" unicode="&#xf2a7;" horiz-adv-x="1664" 
d="M831 863q32 0 59 -18l222 -148q61 -40 110 -97l146 -170q40 -46 29 -106l-72 -413q-6 -32 -29.5 -53.5t-55.5 -25.5l-527 -56l-352 -32h-9q-39 0 -67.5 28t-28.5 68q0 37 27 64t65 32l260 32h-448q-41 0 -69.5 30t-26.5 71q2 39 32 65t69 26l442 1l-521 64q-41 5 -66 37
t-19 73q6 35 34.5 57.5t65.5 22.5h10l481 -60l-351 94q-38 10 -62 41.5t-18 68.5q6 36 33 58.5t62 22.5q6 0 20 -2l448 -96l217 -37q1 0 3 -0.5t3 -0.5q23 0 30.5 23t-12.5 36l-186 125q-35 23 -42 63.5t18 73.5q27 38 76 38zM761 661l186 -125l-218 37l-5 2l-36 38
l-238 262q-1 1 -2.5 3.5t-2.5 3.5q-24 31 -18.5 70t37.5 64q31 23 68 17.5t64 -33.5l142 -147q-2 -1 -5 -3.5t-4 -4.5q-32 -45 -23 -99t55 -85zM1648 1115l15 -266q4 -73 -11 -147l-48 -219q-12 -59 -67 -87l-106 -54q2 62 -39 109l-146 170q-53 61 -117 103l-222 148
q-34 23 -76 23q-51 0 -88 -37l-235 312q-25 33 -18 73.5t41 63.5q33 22 71.5 14t62.5 -40l266 -352l-262 455q-21 35 -10.5 75t47.5 59q35 18 72.5 6t57.5 -46l241 -420l-136 337q-15 35 -4.5 74t44.5 56q37 19 76 6t56 -51l193 -415l101 -196q8 -15 23 -17.5t27 7.5t11 26
l-12 224q-2 41 26 71t69 31q39 0 67 -28.5t30 -67.5z" />
    <glyph glyph-name="uniF2A8" unicode="&#xf2a8;" horiz-adv-x="1792" 
d="M335 180q-2 0 -6 2q-86 57 -168.5 145t-139.5 180q-21 30 -21 69q0 9 2 19t4 18t7 18t8.5 16t10.5 17t10 15t12 15.5t11 14.5q184 251 452 365q-110 198 -110 211q0 19 17 29q116 64 128 64q18 0 28 -16l124 -229q92 19 192 19q266 0 497.5 -137.5t378.5 -369.5
q20 -31 20 -69t-20 -69q-91 -142 -218.5 -253.5t-278.5 -175.5q110 -198 110 -211q0 -20 -17 -29q-116 -64 -127 -64q-19 0 -29 16l-124 229l-64 119l-444 820l7 7q-58 -24 -99 -47q3 -5 127 -234t243 -449t119 -223q0 -7 -9 -9q-13 -3 -72 -3q-57 0 -60 7l-456 841
q-39 -28 -82 -68q24 -43 214 -393.5t190 -354.5q0 -10 -11 -10q-14 0 -82.5 22t-72.5 28l-106 197l-224 413q-44 -53 -78 -106q2 -3 18 -25t23 -34l176 -327q0 -10 -10 -10zM1165 282l49 -91q273 111 450 385q-180 277 -459 389q67 -64 103 -148.5t36 -176.5
q0 -106 -47 -200.5t-132 -157.5zM848 896q0 -20 14 -34t34 -14q86 0 147 -61t61 -147q0 -20 14 -34t34 -14t34 14t14 34q0 126 -89 215t-215 89q-20 0 -34 -14t-14 -34zM1214 961l-9 4l7 -7z" />
    <glyph glyph-name="uniF2A9" unicode="&#xf2a9;" horiz-adv-x="1280" 
d="M1050 430q0 -215 -147 -374q-148 -161 -378 -161q-232 0 -378 161q-147 159 -147 374q0 147 68 270.5t189 196.5t268 73q96 0 182 -31q-32 -62 -39 -126q-66 28 -143 28q-167 0 -280.5 -123t-113.5 -291q0 -170 112.5 -288.5t281.5 -118.5t281 118.5t112 288.5
q0 89 -32 166q66 13 123 49q41 -98 41 -212zM846 619q0 -192 -79.5 -345t-238.5 -253l-14 -1q-29 0 -62 5q83 32 146.5 102.5t99.5 154.5t58.5 189t30 192.5t7.5 178.5q0 69 -3 103q55 -160 55 -326zM791 947v-2q-73 214 -206 440q88 -59 142.5 -186.5t63.5 -251.5z
M1035 744q-83 0 -160 75q218 120 290 247q19 37 21 56q-42 -94 -139.5 -166.5t-204.5 -97.5q-35 54 -35 113q0 37 17 79t43 68q46 44 157 74q59 16 106 58.5t74 100.5q74 -105 74 -253q0 -109 -24 -170q-32 -77 -88.5 -130.5t-130.5 -53.5z" />
    <glyph glyph-name="uniF2AA" unicode="&#xf2aa;" 
d="M1050 495q0 78 -28 147q-41 -25 -85 -34q22 -50 22 -114q0 -117 -77 -198.5t-193 -81.5t-193.5 81.5t-77.5 198.5q0 115 78 199.5t193 84.5q53 0 98 -19q4 43 27 87q-60 21 -125 21q-154 0 -257.5 -108.5t-103.5 -263.5t103.5 -261t257.5 -106t257.5 106.5t103.5 260.5z
M872 850q2 -24 2 -71q0 -63 -5 -123t-20.5 -132.5t-40.5 -130t-68.5 -106t-100.5 -70.5q21 -3 42 -3h10q219 139 219 411q0 116 -38 225zM872 850q-4 80 -44 171.5t-98 130.5q92 -156 142 -302zM1207 955q0 102 -51 174q-41 -86 -124 -109q-69 -19 -109 -53.5t-40 -99.5
q0 -40 24 -77q74 17 140.5 67t95.5 115q-4 -52 -74.5 -111.5t-138.5 -97.5q52 -52 110 -52q51 0 90 37t60 90q17 42 17 117zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5
t84.5 -203.5z" />
    <glyph glyph-name="uniF2AB" unicode="&#xf2ab;" 
d="M1279 388q0 22 -22 27q-67 15 -118 59t-80 108q-7 19 -7 25q0 15 19.5 26t43 17t43 20.5t19.5 36.5q0 19 -18.5 31.5t-38.5 12.5q-12 0 -32 -8t-31 -8q-4 0 -12 2q5 95 5 114q0 79 -17 114q-36 78 -103 121.5t-152 43.5q-199 0 -275 -165q-17 -35 -17 -114q0 -19 5 -114
q-4 -2 -14 -2q-12 0 -32 7.5t-30 7.5q-21 0 -38.5 -12t-17.5 -32q0 -21 19.5 -35.5t43 -20.5t43 -17t19.5 -26q0 -6 -7 -25q-64 -138 -198 -167q-22 -5 -22 -27q0 -46 137 -68q2 -5 6 -26t11.5 -30.5t23.5 -9.5q12 0 37.5 4.5t39.5 4.5q35 0 67 -15t54 -32.5t57.5 -32.5
t76.5 -15q43 0 79 15t57.5 32.5t53.5 32.5t67 15q14 0 39.5 -4t38.5 -4q16 0 23 10t11 30t6 25q137 22 137 68zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5
t103 -385.5z" />
    <glyph glyph-name="uniF2AC" unicode="&#xf2ac;" horiz-adv-x="1664" 
d="M848 1408q134 1 240.5 -68.5t163.5 -192.5q27 -58 27 -179q0 -47 -9 -191q14 -7 28 -7q18 0 51 13.5t51 13.5q29 0 56 -18t27 -46q0 -32 -31.5 -54t-69 -31.5t-69 -29t-31.5 -47.5q0 -15 12 -43q37 -82 102.5 -150t144.5 -101q28 -12 80 -23q28 -6 28 -35
q0 -70 -219 -103q-7 -11 -11 -39t-14 -46.5t-33 -18.5q-20 0 -62 6.5t-64 6.5q-37 0 -62 -5q-32 -5 -63 -22.5t-58 -38t-58 -40.5t-76 -33.5t-99 -13.5q-52 0 -96.5 13.5t-75 33.5t-57.5 40.5t-58 38t-62 22.5q-26 5 -63 5q-24 0 -65.5 -7.5t-58.5 -7.5q-25 0 -35 18.5
t-14 47.5t-11 40q-219 33 -219 103q0 29 28 35q52 11 80 23q78 32 144.5 101t102.5 150q12 28 12 43q0 28 -31.5 47.5t-69.5 29.5t-69.5 31.5t-31.5 52.5q0 27 26 45.5t55 18.5q15 0 48 -13t53 -13q18 0 32 7q-9 142 -9 190q0 122 27 180q64 137 172 198t264 63z" />
    <glyph glyph-name="uniF2AD" unicode="&#xf2ad;" 
d="M1280 388q0 22 -22 27q-67 14 -118 58t-80 109q-7 14 -7 25q0 15 19.5 26t42.5 17t42.5 20.5t19.5 36.5q0 19 -18.5 31.5t-38.5 12.5q-11 0 -31 -8t-32 -8q-4 0 -12 2q5 63 5 115q0 78 -17 114q-36 78 -102.5 121.5t-152.5 43.5q-198 0 -275 -165q-18 -38 -18 -115
q0 -38 6 -114q-10 -2 -15 -2q-11 0 -31.5 8t-30.5 8q-20 0 -37.5 -12.5t-17.5 -32.5q0 -21 19.5 -35.5t42.5 -20.5t42.5 -17t19.5 -26q0 -11 -7 -25q-64 -138 -198 -167q-22 -5 -22 -27q0 -47 138 -69q2 -5 6 -26t11 -30.5t23 -9.5q13 0 38.5 5t38.5 5q35 0 67.5 -15
t54.5 -32.5t57.5 -32.5t76.5 -15q43 0 79 15t57.5 32.5t54 32.5t67.5 15q13 0 39 -4.5t39 -4.5q15 0 22.5 9.5t11.5 31t5 24.5q138 22 138 69zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960
q119 0 203.5 -84.5t84.5 -203.5z" />
    <glyph glyph-name="uniF2AE" unicode="&#xf2ae;" horiz-adv-x="2304" 
d="M2304 1536q-69 -46 -125 -92t-89 -81t-59.5 -71.5t-37.5 -57.5t-22 -44.5t-14 -29.5q-10 -18 -35.5 -136.5t-48.5 -164.5q-15 -29 -50 -60.5t-67.5 -50.5t-72.5 -41t-48 -28q-47 -31 -151 -231q-341 14 -630 -158q-92 -53 -303 -179q47 16 86 31t55 22l15 7
q71 27 163 64.5t133.5 53.5t108 34.5t142.5 31.5q186 31 465 -7q1 0 10 -3q11 -6 14 -17t-3 -22l-194 -345q-15 -29 -47 -22q-128 24 -354 24q-146 0 -402 -44.5t-392 -46.5q-82 -1 -149 13t-107 37t-61 40t-33 34l-1 1v2q0 6 6 6q138 0 371 55q192 366 374.5 524t383.5 158
q5 0 14.5 -0.5t38 -5t55 -12t61.5 -24.5t63 -39.5t54 -59t40 -82.5l102 177q2 4 21 42.5t44.5 86.5t61 109.5t84 133.5t100.5 137q66 82 128 141.5t121.5 96.5t92.5 53.5t88 39.5z" />
    <glyph glyph-name="uniF2B0" unicode="&#xf2b0;" 
d="M1322 640q0 -45 -5 -76l-236 14l224 -78q-19 -73 -58 -141l-214 103l177 -158q-44 -61 -107 -108l-157 178l103 -215q-61 -37 -140 -59l-79 228l14 -240q-38 -6 -76 -6t-76 6l14 238l-78 -226q-74 19 -140 59l103 215l-157 -178q-59 43 -108 108l178 158l-214 -104
q-39 69 -58 141l224 79l-237 -14q-5 42 -5 76q0 35 5 77l238 -14l-225 79q19 73 58 140l214 -104l-177 159q46 61 107 108l158 -178l-103 215q67 39 140 58l77 -224l-13 236q36 6 75 6q38 0 76 -6l-14 -237l78 225q74 -19 140 -59l-103 -214l158 178q61 -47 107 -108
l-177 -159l213 104q37 -62 58 -141l-224 -78l237 14q5 -31 5 -77zM1352 640q0 160 -78.5 295.5t-213 214t-292.5 78.5q-119 0 -227 -46.5t-186.5 -125t-124.5 -187.5t-46 -229q0 -119 46 -228t124.5 -187.5t186.5 -125t227 -46.5q158 0 292.5 78.5t213 214t78.5 294.5z
M1425 1023v-766l-657 -383l-657 383v766l657 383zM768 -183l708 412v823l-708 411l-708 -411v-823zM1536 1088v-896l-768 -448l-768 448v896l768 448z" />
    <glyph glyph-name="uniF2B1" unicode="&#xf2b1;" horiz-adv-x="1664" 
d="M339 1318h691l-26 -72h-665q-110 0 -188.5 -79t-78.5 -189v-771q0 -95 60.5 -169.5t153.5 -93.5q23 -5 98 -5v-72h-45q-140 0 -239.5 100t-99.5 240v771q0 140 99.5 240t239.5 100zM1190 1536h247l-482 -1294q-23 -61 -40.5 -103.5t-45 -98t-54 -93.5t-64.5 -78.5
t-79.5 -65t-95.5 -41t-116 -18.5v195q163 26 220 182q20 52 20 105q0 54 -20 106l-285 733h228l187 -585zM1664 978v-1111h-795q37 55 45 73h678v1038q0 85 -49.5 155t-129.5 99l25 67q101 -34 163.5 -123.5t62.5 -197.5z" />
    <glyph glyph-name="uniF2B2" unicode="&#xf2b2;" horiz-adv-x="1792" 
d="M852 1227q0 -29 -17 -52.5t-45 -23.5t-45 23.5t-17 52.5t17 52.5t45 23.5t45 -23.5t17 -52.5zM688 -149v114q0 30 -20.5 51.5t-50.5 21.5t-50 -21.5t-20 -51.5v-114q0 -30 20.5 -52t49.5 -22q30 0 50.5 22t20.5 52zM860 -149v114q0 30 -20 51.5t-50 21.5t-50.5 -21.5
t-20.5 -51.5v-114q0 -30 20.5 -52t50.5 -22q29 0 49.5 22t20.5 52zM1034 -149v114q0 30 -20.5 51.5t-50.5 21.5t-50.5 -21.5t-20.5 -51.5v-114q0 -30 20.5 -52t50.5 -22t50.5 22t20.5 52zM1208 -149v114q0 30 -20.5 51.5t-50.5 21.5t-50.5 -21.5t-20.5 -51.5v-114
q0 -30 20.5 -52t50.5 -22t50.5 22t20.5 52zM1476 535q-84 -160 -232 -259.5t-323 -99.5q-123 0 -229.5 51.5t-178.5 137t-113 197.5t-41 232q0 88 21 174q-104 -175 -104 -390q0 -162 65 -312t185 -251q30 57 91 57q56 0 86 -50q32 50 87 50q56 0 86 -50q32 50 87 50t87 -50
q30 50 86 50q28 0 52.5 -15.5t37.5 -40.5q112 94 177 231.5t73 287.5zM1326 564q0 75 -72 75q-17 0 -47 -6q-95 -19 -149 -19q-226 0 -226 243q0 86 30 204q-83 -127 -83 -275q0 -150 89 -260.5t235 -110.5q111 0 210 70q13 48 13 79zM884 1223q0 50 -32 89.5t-81 39.5
t-81 -39.5t-32 -89.5q0 -51 31.5 -90.5t81.5 -39.5t81.5 39.5t31.5 90.5zM1513 884q0 96 -37.5 179t-113 137t-173.5 54q-77 0 -149 -35t-127 -94q-48 -159 -48 -268q0 -104 45.5 -157t147.5 -53q53 0 142 19q36 6 53 6q51 0 77.5 -28t26.5 -80q0 -26 -4 -46
q75 68 117.5 165.5t42.5 200.5zM1792 667q0 -111 -33.5 -249.5t-93.5 -204.5q-58 -64 -195 -142.5t-228 -104.5l-4 -1v-114q0 -43 -29.5 -75t-72.5 -32q-56 0 -86 50q-32 -50 -87 -50t-87 50q-30 -50 -86 -50q-55 0 -87 50q-30 -50 -86 -50q-47 0 -75 33.5t-28 81.5
q-90 -68 -198 -68q-118 0 -211 80q54 1 106 20q-113 31 -182 127q32 -7 71 -7q89 0 164 46q-192 192 -240 306q-24 56 -24 160q0 57 9 125.5t31.5 146.5t55 141t86.5 105t120 42q59 0 81 -52q19 29 42 54q2 3 12 13t13 16q10 15 23 38t25 42t28 39q87 111 211.5 177
t260.5 66q35 0 62 -4q59 64 146 64q83 0 140 -57q5 -5 5 -12q0 -5 -6 -13.5t-12.5 -16t-16 -17l-10.5 -10.5q17 -6 36 -18t19 -24q0 -6 -16 -25q157 -138 197 -378q25 30 60 30q45 0 100 -49q90 -80 90 -279z" />
    <glyph glyph-name="uniF2B3" unicode="&#xf2b3;" 
d="M917 631q0 33 -6 64h-362v-132h217q-12 -76 -74.5 -120.5t-142.5 -44.5q-99 0 -169 71.5t-70 170.5t70 170.5t169 71.5q93 0 153 -59l104 101q-108 100 -257 100q-160 0 -272 -112.5t-112 -271.5t112 -271.5t272 -112.5q165 0 266.5 105t101.5 270zM1262 585h109v110
h-109v110h-110v-110h-110v-110h110v-110h110v110zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
    <glyph glyph-name="uniF2B4" unicode="&#xf2b4;" 
d="M1536 1024v-839q0 -48 -49 -62q-174 -52 -338 -52q-73 0 -215.5 29.5t-227.5 29.5q-164 0 -370 -48v-338h-160v1368q-63 25 -101 81t-38 124q0 91 64 155t155 64t155 -64t64 -155q0 -68 -38 -124t-101 -81v-68q190 44 343 44q99 0 198 -15q14 -2 111.5 -22.5t149.5 -20.5
q77 0 165 18q11 2 80 21t89 19q26 0 45 -19t19 -45z" />
    <glyph glyph-name="uniF2B5" unicode="&#xf2b5;" horiz-adv-x="2304" 
d="M192 384q40 0 56 32t0 64t-56 32t-56 -32t0 -64t56 -32zM1665 442q-10 13 -38.5 50t-41.5 54t-38 49t-42.5 53t-40.5 47t-45 49l-125 -140q-83 -94 -208.5 -92t-205.5 98q-57 69 -56.5 158t58.5 157l177 206q-22 11 -51 16.5t-47.5 6t-56.5 -0.5t-49 -1q-92 0 -158 -66
l-158 -158h-155v-544q5 0 21 0.5t22 0t19.5 -2t20.5 -4.5t17.5 -8.5t18.5 -13.5l297 -292q115 -111 227 -111q78 0 125 47q57 -20 112.5 8t72.5 85q74 -6 127 44q20 18 36 45.5t14 50.5q10 -10 43 -10q43 0 77 21t49.5 53t12 71.5t-30.5 73.5zM1824 384h96v512h-93l-157 180
q-66 76 -169 76h-167q-89 0 -146 -67l-209 -243q-28 -33 -28 -75t27 -75q43 -51 110 -52t111 49l193 218q25 23 53.5 21.5t47 -27t8.5 -56.5q16 -19 56 -63t60 -68q29 -36 82.5 -105.5t64.5 -84.5q52 -66 60 -140zM2112 384q40 0 56 32t0 64t-56 32t-56 -32t0 -64t56 -32z
M2304 960v-640q0 -26 -19 -45t-45 -19h-434q-27 -65 -82 -106.5t-125 -51.5q-33 -48 -80.5 -81.5t-102.5 -45.5q-42 -53 -104.5 -81.5t-128.5 -24.5q-60 -34 -126 -39.5t-127.5 14t-117 53.5t-103.5 81l-287 282h-358q-26 0 -45 19t-19 45v672q0 26 19 45t45 19h421
q14 14 47 48t47.5 48t44 40t50.5 37.5t51 25.5t62 19.5t68 5.5h117q99 0 181 -56q82 56 181 56h167q35 0 67 -6t56.5 -14.5t51.5 -26.5t44.5 -31t43 -39.5t39 -42t41 -48t41.5 -48.5h355q26 0 45 -19t19 -45z" />
    <glyph glyph-name="uniF2B6" unicode="&#xf2b6;" horiz-adv-x="1792" 
d="M1792 882v-978q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v978q0 15 11 24q8 7 39 34.5t41.5 36t45.5 37.5t70 55.5t96 73t143.5 107t192.5 140.5q5 4 52.5 40t71.5 52.5t64 35t69 18.5t69 -18.5t65 -35.5t71 -52t52 -40q110 -80 192.5 -140.5t143.5 -107
t96 -73t70 -55.5t45.5 -37.5t41.5 -36t39 -34.5q11 -9 11 -24zM1228 297q263 191 345 252q11 8 12.5 20.5t-6.5 23.5l-38 52q-8 11 -21 12.5t-24 -6.5q-231 -169 -343 -250q-5 -3 -52 -39t-71.5 -52.5t-64.5 -35t-69 -18.5t-69 18.5t-64.5 35t-71.5 52.5t-52 39
q-186 134 -343 250q-11 8 -24 6.5t-21 -12.5l-38 -52q-8 -11 -6.5 -23.5t12.5 -20.5q82 -61 345 -252q10 -8 50 -38t65 -47t64 -39.5t77.5 -33.5t75.5 -11t75.5 11t79 34.5t64.5 39.5t65 47.5t48 36.5z" />
    <glyph glyph-name="uniF2B7" unicode="&#xf2b7;" horiz-adv-x="1792" 
d="M1474 623l39 -51q8 -11 6.5 -23.5t-11.5 -20.5q-43 -34 -126.5 -98.5t-146.5 -113t-67 -51.5q-39 -32 -60 -48t-60.5 -41t-76.5 -36.5t-74 -11.5h-1h-1q-37 0 -74 11.5t-76 36.5t-61 41.5t-60 47.5q-5 4 -65 50.5t-143.5 111t-122.5 94.5q-11 8 -12.5 20.5t6.5 23.5
l37 52q8 11 21.5 13t24.5 -7q94 -73 306 -236q5 -4 43.5 -35t60.5 -46.5t56.5 -32.5t58.5 -17h1h1q24 0 58.5 17t56.5 32.5t60.5 46.5t43.5 35q258 198 313 242q11 8 24 6.5t21 -12.5zM1664 -96v928q-90 83 -159 139q-91 74 -389 304q-3 2 -43 35t-61 48t-56 32.5t-59 17.5
h-1h-1q-24 0 -59 -17.5t-56 -32.5t-61 -48t-43 -35q-215 -166 -315.5 -245.5t-129.5 -104t-82 -74.5q-14 -12 -21 -19v-928q0 -13 9.5 -22.5t22.5 -9.5h1472q13 0 22.5 9.5t9.5 22.5zM1792 832v-928q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v928q0 56 41 94
q123 114 350 290.5t233 181.5q36 30 59 47.5t61.5 42t76 36.5t74.5 12h1h1q37 0 74.5 -12t76 -36.5t61.5 -42t59 -47.5q43 -36 156 -122t226 -177t201 -173q41 -38 41 -94z" />
    <glyph glyph-name="uniF2B8" unicode="&#xf2b8;" 
d="M330 1l202 -214l-34 236l-216 213zM556 -225l274 218l-11 245l-300 -215zM245 413l227 -213l-48 327l-245 204zM495 189l317 214l-14 324l-352 -200zM843 178l95 -80l-2 239l-103 79q0 -1 1 -8.5t0 -12t-5 -7.5l-78 -52l85 -70q7 -6 7 -88zM138 930l256 -200l-68 465
l-279 173zM1173 267l15 234l-230 -164l2 -240zM417 722l373 194l-19 441l-423 -163zM1270 357l20 233l-226 142l-2 -105l144 -95q6 -4 4 -9l-7 -119zM1461 496l30 222l-179 -128l-20 -228zM1273 329l-71 49l-8 -117q0 -5 -4 -8l-234 -187q-7 -5 -14 0l-98 83l7 -161
q0 -5 -4 -8l-293 -234q-4 -2 -6 -2q-8 2 -8 3l-228 242q-4 4 -59 277q-2 7 5 11l61 37q-94 86 -95 92l-72 351q-2 7 6 12l94 45q-133 100 -135 108l-96 466q-2 10 7 13l433 135q5 0 8 -1l317 -153q6 -4 6 -9l20 -463q0 -7 -6 -10l-118 -61l126 -85q5 -2 5 -8l5 -123l121 74
q5 4 11 0l84 -56l3 110q0 6 5 9l206 126q6 3 11 0l245 -135q4 -4 5 -7t-6.5 -60t-17.5 -124.5t-10 -70.5q0 -5 -4 -7l-191 -153q-6 -5 -13 0z" />
    <glyph glyph-name="uniF2B9" unicode="&#xf2b9;" horiz-adv-x="1664" 
d="M1201 298q0 57 -5.5 107t-21 100.5t-39.5 86t-64 58t-91 22.5q-6 -4 -33.5 -20.5t-42.5 -24.5t-40.5 -20t-49 -17t-46.5 -5t-46.5 5t-49 17t-40.5 20t-42.5 24.5t-33.5 20.5q-51 0 -91 -22.5t-64 -58t-39.5 -86t-21 -100.5t-5.5 -107q0 -73 42 -121.5t103 -48.5h576
q61 0 103 48.5t42 121.5zM1028 892q0 108 -76.5 184t-183.5 76t-183.5 -76t-76.5 -184q0 -107 76.5 -183t183.5 -76t183.5 76t76.5 183zM1664 352v-192q0 -14 -9 -23t-23 -9h-96v-224q0 -66 -47 -113t-113 -47h-1216q-66 0 -113 47t-47 113v1472q0 66 47 113t113 47h1216
q66 0 113 -47t47 -113v-224h96q14 0 23 -9t9 -23v-192q0 -14 -9 -23t-23 -9h-96v-128h96q14 0 23 -9t9 -23v-192q0 -14 -9 -23t-23 -9h-96v-128h96q14 0 23 -9t9 -23z" />
    <glyph glyph-name="uniF2BA" unicode="&#xf2ba;" horiz-adv-x="1664" 
d="M1028 892q0 -107 -76.5 -183t-183.5 -76t-183.5 76t-76.5 183q0 108 76.5 184t183.5 76t183.5 -76t76.5 -184zM980 672q46 0 82.5 -17t60 -47.5t39.5 -67t24 -81t11.5 -82.5t3.5 -79q0 -67 -39.5 -118.5t-105.5 -51.5h-576q-66 0 -105.5 51.5t-39.5 118.5q0 48 4.5 93.5
t18.5 98.5t36.5 91.5t63 64.5t93.5 26h5q7 -4 32 -19.5t35.5 -21t33 -17t37 -16t35 -9t39.5 -4.5t39.5 4.5t35 9t37 16t33 17t35.5 21t32 19.5zM1664 928q0 -13 -9.5 -22.5t-22.5 -9.5h-96v-128h96q13 0 22.5 -9.5t9.5 -22.5v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-96v-128h96
q13 0 22.5 -9.5t9.5 -22.5v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-96v-224q0 -66 -47 -113t-113 -47h-1216q-66 0 -113 47t-47 113v1472q0 66 47 113t113 47h1216q66 0 113 -47t47 -113v-224h96q13 0 22.5 -9.5t9.5 -22.5v-192zM1408 -96v1472q0 13 -9.5 22.5t-22.5 9.5h-1216
q-13 0 -22.5 -9.5t-9.5 -22.5v-1472q0 -13 9.5 -22.5t22.5 -9.5h1216q13 0 22.5 9.5t9.5 22.5z" />
    <glyph glyph-name="uniF2BB" unicode="&#xf2bb;" horiz-adv-x="2048" 
d="M1024 405q0 64 -9 117.5t-29.5 103t-60.5 78t-97 28.5q-6 -4 -30 -18t-37.5 -21.5t-35.5 -17.5t-43 -14.5t-42 -4.5t-42 4.5t-43 14.5t-35.5 17.5t-37.5 21.5t-30 18q-57 0 -97 -28.5t-60.5 -78t-29.5 -103t-9 -117.5t37 -106.5t91 -42.5h512q54 0 91 42.5t37 106.5z
M867 925q0 94 -66.5 160.5t-160.5 66.5t-160.5 -66.5t-66.5 -160.5t66.5 -160.5t160.5 -66.5t160.5 66.5t66.5 160.5zM1792 416v64q0 14 -9 23t-23 9h-576q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h576q14 0 23 9t9 23zM1792 676v56q0 15 -10.5 25.5t-25.5 10.5h-568
q-15 0 -25.5 -10.5t-10.5 -25.5v-56q0 -15 10.5 -25.5t25.5 -10.5h568q15 0 25.5 10.5t10.5 25.5zM1792 928v64q0 14 -9 23t-23 9h-576q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h576q14 0 23 9t9 23zM2048 1248v-1216q0 -66 -47 -113t-113 -47h-352v96q0 14 -9 23t-23 9
h-64q-14 0 -23 -9t-9 -23v-96h-768v96q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-96h-352q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1728q66 0 113 -47t47 -113z" />
    <glyph glyph-name="uniF2BC" unicode="&#xf2bc;" horiz-adv-x="2048" 
d="M1024 405q0 -64 -37 -106.5t-91 -42.5h-512q-54 0 -91 42.5t-37 106.5t9 117.5t29.5 103t60.5 78t97 28.5q6 -4 30 -18t37.5 -21.5t35.5 -17.5t43 -14.5t42 -4.5t42 4.5t43 14.5t35.5 17.5t37.5 21.5t30 18q57 0 97 -28.5t60.5 -78t29.5 -103t9 -117.5zM867 925
q0 -94 -66.5 -160.5t-160.5 -66.5t-160.5 66.5t-66.5 160.5t66.5 160.5t160.5 66.5t160.5 -66.5t66.5 -160.5zM1792 480v-64q0 -14 -9 -23t-23 -9h-576q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h576q14 0 23 -9t9 -23zM1792 732v-56q0 -15 -10.5 -25.5t-25.5 -10.5h-568
q-15 0 -25.5 10.5t-10.5 25.5v56q0 15 10.5 25.5t25.5 10.5h568q15 0 25.5 -10.5t10.5 -25.5zM1792 992v-64q0 -14 -9 -23t-23 -9h-576q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h576q14 0 23 -9t9 -23zM1920 32v1216q0 13 -9.5 22.5t-22.5 9.5h-1728q-13 0 -22.5 -9.5
t-9.5 -22.5v-1216q0 -13 9.5 -22.5t22.5 -9.5h352v96q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-96h768v96q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-96h352q13 0 22.5 9.5t9.5 22.5zM2048 1248v-1216q0 -66 -47 -113t-113 -47h-1728q-66 0 -113 47t-47 113v1216q0 66 47 113
t113 47h1728q66 0 113 -47t47 -113z" />
    <glyph glyph-name="uniF2BD" unicode="&#xf2bd;" horiz-adv-x="1792" 
d="M1523 197q-22 155 -87.5 257.5t-184.5 118.5q-67 -74 -159.5 -115.5t-195.5 -41.5t-195.5 41.5t-159.5 115.5q-119 -16 -184.5 -118.5t-87.5 -257.5q106 -150 271 -237.5t356 -87.5t356 87.5t271 237.5zM1280 896q0 159 -112.5 271.5t-271.5 112.5t-271.5 -112.5
t-112.5 -271.5t112.5 -271.5t271.5 -112.5t271.5 112.5t112.5 271.5zM1792 640q0 -182 -71 -347.5t-190.5 -286t-285.5 -191.5t-349 -71q-182 0 -348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" />
    <glyph glyph-name="uniF2BE" unicode="&#xf2be;" horiz-adv-x="1792" 
d="M896 1536q182 0 348 -71t286 -191t191 -286t71 -348q0 -181 -70.5 -347t-190.5 -286t-286 -191.5t-349 -71.5t-349 71t-285.5 191.5t-190.5 286t-71 347.5t71 348t191 286t286 191t348 71zM1515 185q149 205 149 455q0 156 -61 298t-164 245t-245 164t-298 61t-298 -61
t-245 -164t-164 -245t-61 -298q0 -250 149 -455q66 327 306 327q131 -128 313 -128t313 128q240 0 306 -327zM1280 832q0 159 -112.5 271.5t-271.5 112.5t-271.5 -112.5t-112.5 -271.5t112.5 -271.5t271.5 -112.5t271.5 112.5t112.5 271.5z" />
    <glyph glyph-name="uniF2C0" unicode="&#xf2c0;" 
d="M1201 752q47 -14 89.5 -38t89 -73t79.5 -115.5t55 -172t22 -236.5q0 -154 -100 -263.5t-241 -109.5h-854q-141 0 -241 109.5t-100 263.5q0 131 22 236.5t55 172t79.5 115.5t89 73t89.5 38q-79 125 -79 272q0 104 40.5 198.5t109.5 163.5t163.5 109.5t198.5 40.5
t198.5 -40.5t163.5 -109.5t109.5 -163.5t40.5 -198.5q0 -147 -79 -272zM768 1408q-159 0 -271.5 -112.5t-112.5 -271.5t112.5 -271.5t271.5 -112.5t271.5 112.5t112.5 271.5t-112.5 271.5t-271.5 112.5zM1195 -128q88 0 150.5 71.5t62.5 173.5q0 239 -78.5 377t-225.5 145
q-145 -127 -336 -127t-336 127q-147 -7 -225.5 -145t-78.5 -377q0 -102 62.5 -173.5t150.5 -71.5h854z" />
    <glyph glyph-name="uniF2C1" unicode="&#xf2c1;" horiz-adv-x="1280" 
d="M1024 278q0 -64 -37 -107t-91 -43h-512q-54 0 -91 43t-37 107t9 118t29.5 104t61 78.5t96.5 28.5q80 -75 188 -75t188 75q56 0 96.5 -28.5t61 -78.5t29.5 -104t9 -118zM870 797q0 -94 -67.5 -160.5t-162.5 -66.5t-162.5 66.5t-67.5 160.5t67.5 160.5t162.5 66.5
t162.5 -66.5t67.5 -160.5zM1152 -96v1376h-1024v-1376q0 -13 9.5 -22.5t22.5 -9.5h960q13 0 22.5 9.5t9.5 22.5zM1280 1376v-1472q0 -66 -47 -113t-113 -47h-960q-66 0 -113 47t-47 113v1472q0 66 47 113t113 47h352v-96q0 -14 9 -23t23 -9h192q14 0 23 9t9 23v96h352
q66 0 113 -47t47 -113z" />
    <glyph glyph-name="uniF2C2" unicode="&#xf2c2;" horiz-adv-x="2048" 
d="M896 324q0 54 -7.5 100.5t-24.5 90t-51 68.5t-81 25q-64 -64 -156 -64t-156 64q-47 0 -81 -25t-51 -68.5t-24.5 -90t-7.5 -100.5q0 -55 31.5 -93.5t75.5 -38.5h426q44 0 75.5 38.5t31.5 93.5zM768 768q0 80 -56 136t-136 56t-136 -56t-56 -136t56 -136t136 -56t136 56
t56 136zM1792 288v64q0 14 -9 23t-23 9h-704q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h704q14 0 23 9t9 23zM1408 544v64q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1792 544v64q0 14 -9 23t-23 9h-192q-14 0 -23 -9t-9 -23
v-64q0 -14 9 -23t23 -9h192q14 0 23 9t9 23zM1792 800v64q0 14 -9 23t-23 9h-704q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h704q14 0 23 9t9 23zM128 1152h1792v96q0 14 -9 23t-23 9h-1728q-14 0 -23 -9t-9 -23v-96zM2048 1248v-1216q0 -66 -47 -113t-113 -47h-1728
q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1728q66 0 113 -47t47 -113z" />
    <glyph glyph-name="uniF2C3" unicode="&#xf2c3;" horiz-adv-x="2048" 
d="M896 324q0 -55 -31.5 -93.5t-75.5 -38.5h-426q-44 0 -75.5 38.5t-31.5 93.5q0 54 7.5 100.5t24.5 90t51 68.5t81 25q64 -64 156 -64t156 64q47 0 81 -25t51 -68.5t24.5 -90t7.5 -100.5zM768 768q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136z
M1792 352v-64q0 -14 -9 -23t-23 -9h-704q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h704q14 0 23 -9t9 -23zM1408 608v-64q0 -14 -9 -23t-23 -9h-320q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h320q14 0 23 -9t9 -23zM1792 608v-64q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v64
q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1792 864v-64q0 -14 -9 -23t-23 -9h-704q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h704q14 0 23 -9t9 -23zM1920 32v1120h-1792v-1120q0 -13 9.5 -22.5t22.5 -9.5h1728q13 0 22.5 9.5t9.5 22.5zM2048 1248v-1216q0 -66 -47 -113t-113 -47
h-1728q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1728q66 0 113 -47t47 -113z" />
    <glyph glyph-name="uniF2C4" unicode="&#xf2c4;" horiz-adv-x="1792" 
d="M1255 749q0 318 -105 474.5t-330 156.5q-222 0 -326 -157t-104 -474q0 -316 104 -471.5t326 -155.5q74 0 131 17q-22 43 -39 73t-44 65t-53.5 56.5t-63 36t-77.5 14.5q-46 0 -79 -16l-49 97q105 91 276 91q132 0 215.5 -54t150.5 -155q67 149 67 402zM1645 117h117
q3 -27 -2 -67t-26.5 -95t-58 -100.5t-107 -78t-162.5 -32.5q-71 0 -130.5 19t-105.5 56t-79 78t-66 96q-97 -27 -205 -27q-150 0 -292.5 58t-253 158.5t-178 249t-67.5 317.5q0 170 67.5 319.5t178.5 250.5t253.5 159t291.5 58q121 0 238.5 -36t217 -106t176 -164.5
t119.5 -219t43 -261.5q0 -190 -80.5 -347.5t-218.5 -264.5q47 -70 93.5 -106.5t104.5 -36.5q61 0 94 37.5t38 85.5z" />
    <glyph glyph-name="uniF2C5" unicode="&#xf2c5;" horiz-adv-x="2304" 
d="M453 -101q0 -21 -16 -37.5t-37 -16.5q-1 0 -13 3q-63 15 -162 140q-225 284 -225 676q0 341 213 614q39 51 95 103.5t94 52.5q19 0 35 -13.5t16 -32.5q0 -27 -63 -90q-98 -102 -147 -184q-119 -199 -119 -449q0 -281 123 -491q50 -85 136 -173q2 -3 14.5 -16t19.5 -21
t17 -20.5t14.5 -23.5t4.5 -21zM1796 33q0 -29 -17.5 -48.5t-46.5 -19.5h-1081q-26 0 -45 19t-19 45q0 29 17.5 48.5t46.5 19.5h1081q26 0 45 -19t19 -45zM1581 644q0 -134 -67 -233q-25 -38 -69.5 -78.5t-83.5 -60.5q-16 -10 -27 -10q-7 0 -15 6t-8 12q0 9 19 30t42 46
t42 67.5t19 88.5q0 76 -35 130q-29 42 -46 42q-3 0 -3 -5q0 -12 7.5 -35.5t7.5 -36.5q0 -22 -21.5 -35t-44.5 -13q-66 0 -66 76q0 15 1.5 44t1.5 44q0 25 -10 46q-13 25 -42 53.5t-51 28.5q-5 0 -7 -0.5t-3.5 -2.5t-1.5 -6q0 -2 16 -26t16 -54q0 -37 -19 -68t-46 -54
t-53.5 -46t-45.5 -54t-19 -68q0 -98 42 -160q29 -43 79 -63q16 -5 17 -10q1 -2 1 -5q0 -16 -18 -16q-6 0 -33 11q-119 43 -195 139.5t-76 218.5q0 55 24.5 115.5t60 115t70.5 108.5t59.5 113.5t24.5 111.5q0 53 -25 94q-29 48 -56 64q-19 9 -19 21q0 20 41 20q50 0 110 -29
q41 -19 71 -44.5t49.5 -51t33.5 -62.5t22 -69t16 -80q0 -1 3 -17.5t4.5 -25t5.5 -25t9 -27t11 -21.5t14.5 -16.5t18.5 -5.5q23 0 37 14t14 37q0 25 -20 67t-20 52t10 10q27 0 93 -70q72 -76 102.5 -156t30.5 -186zM2304 615q0 -274 -138 -503q-19 -32 -48 -72t-68 -86.5
t-81 -77t-74 -30.5q-16 0 -31 15.5t-15 31.5q0 15 29 50.5t68.5 77t48.5 52.5q183 230 183 531q0 131 -20.5 235t-72.5 211q-58 119 -163 228q-2 3 -13 13.5t-16.5 16.5t-15 17.5t-15 20t-9.5 18.5t-4 19q0 19 16 35.5t35 16.5q70 0 196 -169q98 -131 146 -273t60 -314
q2 -42 2 -64z" />
    <glyph glyph-name="uniF2C6" unicode="&#xf2c6;" horiz-adv-x="1792" 
d="M1189 229l147 693q9 44 -10.5 63t-51.5 7l-864 -333q-29 -11 -39.5 -25t-2.5 -26.5t32 -19.5l221 -69l513 323q21 14 32 6q7 -5 -4 -15l-415 -375v0v0l-16 -228q23 0 45 22l108 104l224 -165q64 -36 81 38zM1792 640q0 -182 -71 -348t-191 -286t-286 -191t-348 -71
t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" />
    <glyph glyph-name="uniF2C7" unicode="&#xf2c7;" horiz-adv-x="1024" 
d="M640 192q0 -80 -56 -136t-136 -56t-136 56t-56 136q0 60 35 110t93 71v907h128v-907q58 -21 93 -71t35 -110zM768 192q0 77 -34 144t-94 112v768q0 80 -56 136t-136 56t-136 -56t-56 -136v-768q-60 -45 -94 -112t-34 -144q0 -133 93.5 -226.5t226.5 -93.5t226.5 93.5
t93.5 226.5zM896 192q0 -185 -131.5 -316.5t-316.5 -131.5t-316.5 131.5t-131.5 316.5q0 182 128 313v711q0 133 93.5 226.5t226.5 93.5t226.5 -93.5t93.5 -226.5v-711q128 -131 128 -313zM1024 768v-128h-192v128h192zM1024 1024v-128h-192v128h192zM1024 1280v-128h-192
v128h192z" />
    <glyph glyph-name="uniF2C8" unicode="&#xf2c8;" horiz-adv-x="1024" 
d="M640 192q0 -80 -56 -136t-136 -56t-136 56t-56 136q0 60 35 110t93 71v651h128v-651q58 -21 93 -71t35 -110zM768 192q0 77 -34 144t-94 112v768q0 80 -56 136t-136 56t-136 -56t-56 -136v-768q-60 -45 -94 -112t-34 -144q0 -133 93.5 -226.5t226.5 -93.5t226.5 93.5
t93.5 226.5zM896 192q0 -185 -131.5 -316.5t-316.5 -131.5t-316.5 131.5t-131.5 316.5q0 182 128 313v711q0 133 93.5 226.5t226.5 93.5t226.5 -93.5t93.5 -226.5v-711q128 -131 128 -313zM1024 768v-128h-192v128h192zM1024 1024v-128h-192v128h192zM1024 1280v-128h-192
v128h192z" />
    <glyph glyph-name="uniF2C9" unicode="&#xf2c9;" horiz-adv-x="1024" 
d="M640 192q0 -80 -56 -136t-136 -56t-136 56t-56 136q0 60 35 110t93 71v395h128v-395q58 -21 93 -71t35 -110zM768 192q0 77 -34 144t-94 112v768q0 80 -56 136t-136 56t-136 -56t-56 -136v-768q-60 -45 -94 -112t-34 -144q0 -133 93.5 -226.5t226.5 -93.5t226.5 93.5
t93.5 226.5zM896 192q0 -185 -131.5 -316.5t-316.5 -131.5t-316.5 131.5t-131.5 316.5q0 182 128 313v711q0 133 93.5 226.5t226.5 93.5t226.5 -93.5t93.5 -226.5v-711q128 -131 128 -313zM1024 768v-128h-192v128h192zM1024 1024v-128h-192v128h192zM1024 1280v-128h-192
v128h192z" />
    <glyph glyph-name="uniF2CA" unicode="&#xf2ca;" horiz-adv-x="1024" 
d="M640 192q0 -80 -56 -136t-136 -56t-136 56t-56 136q0 60 35 110t93 71v139h128v-139q58 -21 93 -71t35 -110zM768 192q0 77 -34 144t-94 112v768q0 80 -56 136t-136 56t-136 -56t-56 -136v-768q-60 -45 -94 -112t-34 -144q0 -133 93.5 -226.5t226.5 -93.5t226.5 93.5
t93.5 226.5zM896 192q0 -185 -131.5 -316.5t-316.5 -131.5t-316.5 131.5t-131.5 316.5q0 182 128 313v711q0 133 93.5 226.5t226.5 93.5t226.5 -93.5t93.5 -226.5v-711q128 -131 128 -313zM1024 768v-128h-192v128h192zM1024 1024v-128h-192v128h192zM1024 1280v-128h-192
v128h192z" />
    <glyph glyph-name="uniF2CB" unicode="&#xf2cb;" horiz-adv-x="1024" 
d="M640 192q0 -80 -56 -136t-136 -56t-136 56t-56 136q0 79 56 135.5t136 56.5t136 -56.5t56 -135.5zM768 192q0 77 -34 144t-94 112v768q0 80 -56 136t-136 56t-136 -56t-56 -136v-768q-60 -45 -94 -112t-34 -144q0 -133 93.5 -226.5t226.5 -93.5t226.5 93.5t93.5 226.5z
M896 192q0 -185 -131.5 -316.5t-316.5 -131.5t-316.5 131.5t-131.5 316.5q0 182 128 313v711q0 133 93.5 226.5t226.5 93.5t226.5 -93.5t93.5 -226.5v-711q128 -131 128 -313zM1024 768v-128h-192v128h192zM1024 1024v-128h-192v128h192zM1024 1280v-128h-192v128h192z" />
    <glyph glyph-name="uniF2CC" unicode="&#xf2cc;" horiz-adv-x="1920" 
d="M1433 1287q10 -10 10 -23t-10 -23l-626 -626q-10 -10 -23 -10t-23 10l-82 82q-10 10 -10 23t10 23l44 44q-72 91 -81.5 207t46.5 215q-74 71 -176 71q-106 0 -181 -75t-75 -181v-1280h-256v1280q0 104 40.5 198.5t109.5 163.5t163.5 109.5t198.5 40.5q106 0 201 -41
t166 -115q94 39 197 24.5t185 -79.5l44 44q10 10 23 10t23 -10zM1344 1024q26 0 45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45t19 45t45 19zM1600 896q-26 0 -45 19t-19 45t19 45t45 19t45 -19t19 -45t-19 -45t-45 -19zM1856 1024q26 0 45 -19t19 -45t-19 -45t-45 -19
t-45 19t-19 45t19 45t45 19zM1216 896q26 0 45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45t19 45t45 19zM1408 832q0 26 19 45t45 19t45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45zM1728 896q26 0 45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45t19 45t45 19zM1088 768
q26 0 45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45t19 45t45 19zM1344 640q-26 0 -45 19t-19 45t19 45t45 19t45 -19t19 -45t-19 -45t-45 -19zM1600 768q26 0 45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45t19 45t45 19zM1216 512q-26 0 -45 19t-19 45t19 45t45 19t45 -19
t19 -45t-19 -45t-45 -19zM1472 640q26 0 45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45t19 45t45 19zM1088 512q26 0 45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45t19 45t45 19zM1344 512q26 0 45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45t19 45t45 19zM1216 384
q26 0 45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45t19 45t45 19zM1088 256q26 0 45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45t19 45t45 19z" />
    <glyph glyph-name="uniF2CD" unicode="&#xf2cd;" horiz-adv-x="1792" 
d="M1664 448v-192q0 -169 -128 -286v-194q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v118q-63 -22 -128 -22h-768q-65 0 -128 22v-110q0 -17 -9.5 -28.5t-22.5 -11.5h-64q-13 0 -22.5 11.5t-9.5 28.5v186q-128 117 -128 286v192h1536zM704 864q0 -14 -9 -23t-23 -9t-23 9
t-9 23t9 23t23 9t23 -9t9 -23zM768 928q0 -14 -9 -23t-23 -9t-23 9t-9 23t9 23t23 9t23 -9t9 -23zM704 992q0 -14 -9 -23t-23 -9t-23 9t-9 23t9 23t23 9t23 -9t9 -23zM832 992q0 -14 -9 -23t-23 -9t-23 9t-9 23t9 23t23 9t23 -9t9 -23zM768 1056q0 -14 -9 -23t-23 -9t-23 9
t-9 23t9 23t23 9t23 -9t9 -23zM704 1120q0 -14 -9 -23t-23 -9t-23 9t-9 23t9 23t23 9t23 -9t9 -23zM1792 608v-64q0 -14 -9 -23t-23 -9h-1728q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96v640q0 106 75 181t181 75q108 0 184 -78q46 19 98 12t93 -39l22 22q11 11 22 0l42 -42
q11 -11 0 -22l-314 -314q-11 -11 -22 0l-42 42q-11 11 0 22l22 22q-36 46 -40.5 104t23.5 108q-37 35 -88 35q-53 0 -90.5 -37.5t-37.5 -90.5v-640h1504q14 0 23 -9t9 -23zM896 1056q0 -14 -9 -23t-23 -9t-23 9t-9 23t9 23t23 9t23 -9t9 -23zM832 1120q0 -14 -9 -23t-23 -9
t-23 9t-9 23t9 23t23 9t23 -9t9 -23zM768 1184q0 -14 -9 -23t-23 -9t-23 9t-9 23t9 23t23 9t23 -9t9 -23zM960 1120q0 -14 -9 -23t-23 -9t-23 9t-9 23t9 23t23 9t23 -9t9 -23zM896 1184q0 -14 -9 -23t-23 -9t-23 9t-9 23t9 23t23 9t23 -9t9 -23zM832 1248q0 -14 -9 -23
t-23 -9t-23 9t-9 23t9 23t23 9t23 -9t9 -23zM1024 1184q0 -14 -9 -23t-23 -9t-23 9t-9 23t9 23t23 9t23 -9t9 -23zM960 1248q0 -14 -9 -23t-23 -9t-23 9t-9 23t9 23t23 9t23 -9t9 -23zM1088 1248q0 -14 -9 -23t-23 -9t-23 9t-9 23t9 23t23 9t23 -9t9 -23z" />
    <glyph glyph-name="uniF2CE" unicode="&#xf2ce;" 
d="M994 344q0 -86 -17 -197q-31 -215 -55 -313q-22 -90 -152 -90t-152 90q-24 98 -55 313q-17 110 -17 197q0 168 224 168t224 -168zM1536 768q0 -240 -134 -434t-350 -280q-8 -3 -15 3t-6 15q7 48 10 66q4 32 6 47q1 9 9 12q159 81 255.5 234t96.5 337q0 180 -91 330.5
t-247 234.5t-337 74q-124 -7 -237 -61t-193.5 -140.5t-128 -202t-46.5 -240.5q1 -184 99 -336.5t257 -231.5q7 -3 9 -12q3 -21 6 -45q1 -9 5 -32.5t6 -35.5q1 -9 -6.5 -15t-15.5 -2q-148 58 -261 169.5t-173.5 264t-52.5 319.5q7 143 66 273.5t154.5 227t225 157.5t272.5 70
q164 10 315.5 -46.5t261 -160.5t175 -250.5t65.5 -308.5zM994 800q0 -93 -65.5 -158.5t-158.5 -65.5t-158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5t158.5 -65.5t65.5 -158.5zM1282 768q0 -122 -53.5 -228.5t-146.5 -177.5q-8 -6 -16 -2t-10 14q-6 52 -29 92q-7 10 3 20
q58 54 91 127t33 155q0 111 -58.5 204t-157.5 141.5t-212 36.5q-133 -15 -229 -113t-109 -231q-10 -92 23.5 -176t98.5 -144q10 -10 3 -20q-24 -41 -29 -93q-2 -9 -10 -13t-16 2q-95 74 -148.5 183t-51.5 234q3 131 69 244t177 181.5t241 74.5q144 7 268 -60t196.5 -187.5
t72.5 -263.5z" />
    <glyph glyph-name="uniF2D0" unicode="&#xf2d0;" horiz-adv-x="1792" 
d="M256 128h1280v768h-1280v-768zM1792 1248v-1216q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1472q66 0 113 -47t47 -113z" />
    <glyph glyph-name="uniF2D1" unicode="&#xf2d1;" horiz-adv-x="1792" 
d="M1792 224v-192q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v192q0 66 47 113t113 47h1472q66 0 113 -47t47 -113z" />
    <glyph glyph-name="uniF2D2" unicode="&#xf2d2;" horiz-adv-x="2048" 
d="M256 0h768v512h-768v-512zM1280 512h512v768h-768v-256h96q66 0 113 -47t47 -113v-352zM2048 1376v-960q0 -66 -47 -113t-113 -47h-608v-352q0 -66 -47 -113t-113 -47h-960q-66 0 -113 47t-47 113v960q0 66 47 113t113 47h608v352q0 66 47 113t113 47h960q66 0 113 -47
t47 -113z" />
    <glyph glyph-name="uniF2D3" unicode="&#xf2d3;" horiz-adv-x="1792" 
d="M1175 215l146 146q10 10 10 23t-10 23l-233 233l233 233q10 10 10 23t-10 23l-146 146q-10 10 -23 10t-23 -10l-233 -233l-233 233q-10 10 -23 10t-23 -10l-146 -146q-10 -10 -10 -23t10 -23l233 -233l-233 -233q-10 -10 -10 -23t10 -23l146 -146q10 -10 23 -10t23 10
l233 233l233 -233q10 -10 23 -10t23 10zM1792 1248v-1216q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1472q66 0 113 -47t47 -113z" />
    <glyph glyph-name="uniF2D4" unicode="&#xf2d4;" horiz-adv-x="1792" 
d="M1257 425l-146 -146q-10 -10 -23 -10t-23 10l-169 169l-169 -169q-10 -10 -23 -10t-23 10l-146 146q-10 10 -10 23t10 23l169 169l-169 169q-10 10 -10 23t10 23l146 146q10 10 23 10t23 -10l169 -169l169 169q10 10 23 10t23 -10l146 -146q10 -10 10 -23t-10 -23
l-169 -169l169 -169q10 -10 10 -23t-10 -23zM256 128h1280v1024h-1280v-1024zM1792 1248v-1216q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1472q66 0 113 -47t47 -113z" />
    <glyph glyph-name="uniF2D5" unicode="&#xf2d5;" horiz-adv-x="1792" 
d="M1070 358l306 564h-654l-306 -564h654zM1792 640q0 -182 -71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" />
    <glyph glyph-name="uniF2D6" unicode="&#xf2d6;" horiz-adv-x="1794" 
d="M1291 1060q-15 17 -35 8.5t-26 -28.5t5 -38q14 -17 40 -14.5t34 20.5t-18 52zM895 814q-8 -8 -19.5 -8t-18.5 8q-8 8 -8 19t8 18q7 8 18.5 8t19.5 -8q7 -7 7 -18t-7 -19zM1060 740l-35 -35q-12 -13 -29.5 -13t-30.5 13l-38 38q-12 13 -12 30t12 30l35 35q12 12 29.5 12
t30.5 -12l38 -39q12 -12 12 -29.5t-12 -29.5zM951 870q-7 -8 -18.5 -8t-19.5 8q-7 8 -7 19t7 19q8 8 19 8t19 -8t8 -19t-8 -19zM1354 968q-34 -64 -107.5 -85.5t-127.5 16.5q-38 28 -61 66.5t-21 87.5t39 92t75.5 53t70.5 -5t70 -51q2 -2 13 -12.5t14.5 -13.5t13 -13.5
t12.5 -15.5t10 -15.5t8.5 -18t4 -18.5t1 -21t-5 -22t-9.5 -24zM1555 486q3 20 -8.5 34.5t-27.5 21.5t-33 17t-23 20q-40 71 -84 98.5t-113 11.5q19 13 40 18.5t33 4.5l12 -1q2 45 -34 90q6 20 6.5 40.5t-2.5 30.5l-3 10q43 24 71 65t34 91q10 84 -43 150.5t-137 76.5
q-60 7 -114 -18.5t-82 -74.5q-30 -51 -33.5 -101t14.5 -87t43.5 -64t56.5 -42q-45 4 -88 36t-57 88q-28 108 32 222q-16 21 -29 32q-50 0 -89 -19q19 24 42 37t36 14l13 1q0 50 -13 78q-10 21 -32.5 28.5t-47 -3.5t-37.5 -40q2 4 4 7q-7 -28 -6.5 -75.5t19 -117t48.5 -122.5
q-25 -14 -47 -36q-35 -16 -85.5 -70.5t-84.5 -101.5l-33 -46q-90 -34 -181 -125.5t-75 -162.5q1 -16 11 -27q-15 -12 -30 -30q-21 -25 -21 -54t21.5 -40t63.5 6q41 19 77 49.5t55 60.5q-2 2 -6.5 5t-20.5 7.5t-33 3.5q23 5 51 12.5t40 10t27.5 6t26 4t23.5 0.5q14 -7 22 34
q7 37 7 90q0 102 -40 150q106 -103 101 -219q-1 -29 -15 -50t-27 -27l-13 -6q-4 -7 -19 -32t-26 -45.5t-26.5 -52t-25 -61t-17 -63t-6.5 -66.5t10 -63q-35 54 -37 80q-22 -24 -34.5 -39t-33.5 -42t-30.5 -46t-16.5 -41t-0.5 -38t25.5 -27q45 -25 144 64t190.5 221.5
t122.5 228.5q86 52 145 115.5t86 119.5q47 -93 154 -178q104 -83 167 -80q39 2 46 43zM1794 640q0 -182 -71 -348t-191 -286t-286.5 -191t-348.5 -71t-348.5 71t-286.5 191t-191 286t-71 348t71 348t191 286t286.5 191t348.5 71t348.5 -71t286.5 -191t191 -286t71 -348z" />
    <glyph glyph-name="uniF2D7" unicode="&#xf2d7;" 
d="M518 1353v-655q103 -1 191.5 1.5t125.5 5.5l37 3q68 2 90.5 24.5t39.5 94.5l33 142h103l-14 -322l7 -319h-103l-29 127q-15 68 -45 93t-84 26q-87 8 -352 8v-556q0 -78 43.5 -115.5t133.5 -37.5h357q35 0 59.5 2t55 7.5t54 18t48.5 32t46 50.5t39 73l93 216h89
q-6 -37 -31.5 -252t-30.5 -276q-146 5 -263.5 8t-162.5 4h-44h-628l-376 -12v102l127 25q67 13 91.5 37t25.5 79l8 643q3 402 -8 645q-2 61 -25.5 84t-91.5 36l-127 24v102l376 -12h702q139 0 374 27q-6 -68 -14 -194.5t-12 -219.5l-5 -92h-93l-32 124q-31 121 -74 179.5
t-113 58.5h-548q-28 0 -35.5 -8.5t-7.5 -30.5z" />
    <glyph glyph-name="uniF2D8" unicode="&#xf2d8;" 
d="M922 739v-182q0 -4 0.5 -15t0 -15l-1.5 -12t-3.5 -11.5t-6.5 -7.5t-11 -5.5t-16 -1.5v309q9 0 16 -1t11 -5t6.5 -5.5t3.5 -9.5t1 -10.5v-13.5v-14zM1238 643v-121q0 -1 0.5 -12.5t0 -15.5t-2.5 -11.5t-7.5 -10.5t-13.5 -3q-9 0 -14 9q-4 10 -4 165v7v8.5v9t1.5 8.5l3.5 7
t5 5.5t8 1.5q6 0 10 -1.5t6.5 -4.5t4 -6t2 -8.5t0.5 -8v-9.5v-9zM180 407h122v472h-122v-472zM614 407h106v472h-159l-28 -221q-20 148 -32 221h-158v-472h107v312l45 -312h76l43 319v-319zM1039 712q0 67 -5 90q-3 16 -11 28.5t-17 20.5t-25 14t-26.5 8.5t-31 4t-29 1.5
h-29.5h-12h-91v-472h56q169 -1 197 24.5t25 180.5q-1 62 -1 100zM1356 515v133q0 29 -2 45t-9.5 33.5t-24.5 25t-46 7.5q-46 0 -77 -34v154h-117v-472h110l7 30q30 -36 77 -36q50 0 66 30.5t16 83.5zM1536 1248v-1216q0 -66 -47 -113t-113 -47h-1216q-66 0 -113 47t-47 113
v1216q0 66 47 113t113 47h1216q66 0 113 -47t47 -113z" />
    <glyph glyph-name="uniF2D9" unicode="&#xf2d9;" horiz-adv-x="2176" 
d="M1143 -197q-6 1 -11 4q-13 8 -36 23t-86 65t-116.5 104.5t-112 140t-89.5 172.5q-17 3 -175 37q66 -213 235 -362t391 -184zM502 409l168 -28q-25 76 -41 167.5t-19 145.5l-4 53q-84 -82 -121 -224q5 -65 17 -114zM612 1018q-43 -64 -77 -148q44 46 74 68zM2049 584
q0 161 -62 307t-167.5 252t-250.5 168.5t-304 62.5q-147 0 -281 -52.5t-240 -148.5q-30 -58 -45 -160q60 51 143 83.5t158.5 43t143 13.5t108.5 -1l40 -3q33 -1 53 -15.5t24.5 -33t6.5 -37t-1 -28.5q-126 11 -227.5 0.5t-183 -43.5t-142.5 -71.5t-131 -98.5
q4 -36 11.5 -92.5t35.5 -178t62 -179.5q123 -6 247.5 14.5t214.5 53.5t162.5 67t109.5 59l37 24q22 16 39.5 20.5t30.5 -5t17 -34.5q14 -97 -39 -121q-208 -97 -467 -134q-135 -20 -317 -16q41 -96 110 -176.5t137 -127t130.5 -79t101.5 -43.5l39 -12q143 -23 263 15
q195 99 314 289t119 418zM2123 621q-14 -135 -40 -212q-70 -208 -181.5 -346.5t-318.5 -253.5q-48 -33 -82 -44q-72 -26 -163 -16q-36 -3 -73 -3q-283 0 -504.5 173t-295.5 442q-1 0 -4 0.5t-5 0.5q-6 -50 2.5 -112.5t26 -115t36 -98t31.5 -71.5l14 -26q8 -12 54 -82
q-71 38 -124.5 106.5t-78.5 140t-39.5 137t-17.5 107.5l-2 42q-5 2 -33.5 12.5t-48.5 18t-53 20.5t-57.5 25t-50 25.5t-42.5 27t-25 25.5q19 -10 50.5 -25.5t113 -45.5t145.5 -38l2 32q11 149 94 290q41 202 176 365q28 115 81 214q15 28 32 45t49 32q158 74 303.5 104
t302 11t306.5 -97q220 -115 333 -336t87 -474z" />
    <glyph glyph-name="uniF2DA" unicode="&#xf2da;" horiz-adv-x="1792" 
d="M1341 752q29 44 -6.5 129.5t-121.5 142.5q-58 39 -125.5 53.5t-118 4.5t-68.5 -37q-12 -23 -4.5 -28t42.5 -10q23 -3 38.5 -5t44.5 -9.5t56 -17.5q36 -13 67.5 -31.5t53 -37t40 -38.5t30.5 -38t22 -34.5t16.5 -28.5t12 -18.5t10.5 -6t11 9.5zM1704 178
q-52 -127 -148.5 -220t-214.5 -141.5t-253 -60.5t-266 13.5t-251 91t-210 161.5t-141.5 235.5t-46.5 303.5q1 41 8.5 84.5t12.5 64t24 80.5t23 73q-51 -208 1 -397t173 -318t291 -206t346 -83t349 74.5t289 244.5q20 27 18 14q0 -4 -4 -14zM1465 627q0 -104 -40.5 -199
t-108.5 -164t-162 -109.5t-198 -40.5t-198 40.5t-162 109.5t-108.5 164t-40.5 199t40.5 199t108.5 164t162 109.5t198 40.5t198 -40.5t162 -109.5t108.5 -164t40.5 -199zM1752 915q-65 147 -180.5 251t-253 153.5t-292 53.5t-301 -36.5t-275.5 -129t-220 -211.5t-131 -297
t-10 -373q-49 161 -51.5 311.5t35.5 272.5t109 227t165.5 180.5t207 126t232 71t242.5 9t236 -54t216 -124.5t178 -197q33 -50 62 -121t31 -112zM1690 573q12 244 -136.5 416t-396.5 240q-8 0 -10 5t24 8q125 -4 230 -50t173 -120t116 -168.5t58.5 -199t-1 -208
t-61.5 -197.5t-122.5 -167t-185 -117.5t-248.5 -46.5q108 30 201.5 80t174 123t129.5 176.5t55 225.5z" />
    <glyph glyph-name="uniF2DB" unicode="&#xf2db;" 
d="M192 256v-128h-112q-16 0 -16 16v16h-48q-16 0 -16 16v32q0 16 16 16h48v16q0 16 16 16h112zM192 512v-128h-112q-16 0 -16 16v16h-48q-16 0 -16 16v32q0 16 16 16h48v16q0 16 16 16h112zM192 768v-128h-112q-16 0 -16 16v16h-48q-16 0 -16 16v32q0 16 16 16h48v16
q0 16 16 16h112zM192 1024v-128h-112q-16 0 -16 16v16h-48q-16 0 -16 16v32q0 16 16 16h48v16q0 16 16 16h112zM192 1280v-128h-112q-16 0 -16 16v16h-48q-16 0 -16 16v32q0 16 16 16h48v16q0 16 16 16h112zM1280 1440v-1472q0 -40 -28 -68t-68 -28h-832q-40 0 -68 28
t-28 68v1472q0 40 28 68t68 28h832q40 0 68 -28t28 -68zM1536 208v-32q0 -16 -16 -16h-48v-16q0 -16 -16 -16h-112v128h112q16 0 16 -16v-16h48q16 0 16 -16zM1536 464v-32q0 -16 -16 -16h-48v-16q0 -16 -16 -16h-112v128h112q16 0 16 -16v-16h48q16 0 16 -16zM1536 720v-32
q0 -16 -16 -16h-48v-16q0 -16 -16 -16h-112v128h112q16 0 16 -16v-16h48q16 0 16 -16zM1536 976v-32q0 -16 -16 -16h-48v-16q0 -16 -16 -16h-112v128h112q16 0 16 -16v-16h48q16 0 16 -16zM1536 1232v-32q0 -16 -16 -16h-48v-16q0 -16 -16 -16h-112v128h112q16 0 16 -16v-16
h48q16 0 16 -16z" />
    <glyph glyph-name="uniF2DC" unicode="&#xf2dc;" horiz-adv-x="1664" 
d="M1566 419l-167 -33l186 -107q23 -13 29.5 -38.5t-6.5 -48.5q-14 -23 -39 -29.5t-48 6.5l-186 106l55 -160q13 -38 -12 -63.5t-60.5 -20.5t-48.5 42l-102 300l-271 156v-313l208 -238q16 -18 17 -39t-11 -36.5t-28.5 -25t-37 -5.5t-36.5 22l-112 128v-214q0 -26 -19 -45
t-45 -19t-45 19t-19 45v214l-112 -128q-16 -18 -36.5 -22t-37 5.5t-28.5 25t-11 36.5t17 39l208 238v313l-271 -156l-102 -300q-13 -37 -48.5 -42t-60.5 20.5t-12 63.5l55 160l-186 -106q-23 -13 -48 -6.5t-39 29.5q-13 23 -6.5 48.5t29.5 38.5l186 107l-167 33
q-29 6 -42 29t-8.5 46.5t25.5 40t50 10.5l310 -62l271 157l-271 157l-310 -62q-4 -1 -13 -1q-27 0 -44 18t-19 40t11 43t40 26l167 33l-186 107q-23 13 -29.5 38.5t6.5 48.5t39 30t48 -7l186 -106l-55 160q-13 38 12 63.5t60.5 20.5t48.5 -42l102 -300l271 -156v313
l-208 238q-16 18 -17 39t11 36.5t28.5 25t37 5.5t36.5 -22l112 -128v214q0 26 19 45t45 19t45 -19t19 -45v-214l112 128q16 18 36.5 22t37 -5.5t28.5 -25t11 -36.5t-17 -39l-208 -238v-313l271 156l102 300q13 37 48.5 42t60.5 -20.5t12 -63.5l-55 -160l186 106
q23 13 48 6.5t39 -29.5q13 -23 6.5 -48.5t-29.5 -38.5l-186 -107l167 -33q27 -5 40 -26t11 -43t-19 -40t-44 -18q-9 0 -13 1l-310 62l-271 -157l271 -157l310 62q29 6 50 -10.5t25.5 -40t-8.5 -46.5t-42 -29z" />
    <glyph glyph-name="uniF2DD" unicode="&#xf2dd;" horiz-adv-x="1792" 
d="M1473 607q7 118 -33 226.5t-113 189t-177 131t-221 57.5q-116 7 -225.5 -32t-192 -110.5t-135 -175t-59.5 -220.5q-7 -118 33 -226.5t113 -189t177.5 -131t221.5 -57.5q155 -9 293 59t224 195.5t94 283.5zM1792 1536l-349 -348q120 -117 180.5 -272t50.5 -321
q-11 -183 -102 -339t-241 -255.5t-332 -124.5l-999 -132l347 347q-120 116 -180.5 271.5t-50.5 321.5q11 184 102 340t241.5 255.5t332.5 124.5q167 22 500 66t500 66z" />
    <glyph glyph-name="uniF2DE" unicode="&#xf2de;" horiz-adv-x="1792" 
d="M948 508l163 -329h-51l-175 350l-171 -350h-49l179 374l-78 33l21 49l240 -102l-21 -50zM563 1100l304 -130l-130 -304l-304 130zM907 915l240 -103l-103 -239l-239 102zM1188 765l191 -81l-82 -190l-190 81zM1680 640q0 159 -62 304t-167.5 250.5t-250.5 167.5t-304 62
t-304 -62t-250.5 -167.5t-167.5 -250.5t-62 -304t62 -304t167.5 -250.5t250.5 -167.5t304 -62t304 62t250.5 167.5t167.5 250.5t62 304zM1792 640q0 -182 -71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71t348 -71
t286 -191t191 -286t71 -348z" />
    <glyph glyph-name="uniF2E0" unicode="&#xf2e0;" horiz-adv-x="1920" 
d="M1334 302q-4 24 -27.5 34t-49.5 10.5t-48.5 12.5t-25.5 38q-5 47 33 139.5t75 181t32 127.5q-14 101 -117 103q-45 1 -75 -16l-3 -2l-5 -2.5t-4.5 -2t-5 -2t-5 -0.5t-6 1.5t-6 3.5t-6.5 5q-3 2 -9 8.5t-9 9t-8.5 7.5t-9.5 7.5t-9.5 5.5t-11 4.5t-11.5 2.5q-30 5 -48 -3
t-45 -31q-1 -1 -9 -8.5t-12.5 -11t-15 -10t-16.5 -5.5t-17 3q-54 27 -84 40q-41 18 -94 -5t-76 -65q-16 -28 -41 -98.5t-43.5 -132.5t-40 -134t-21.5 -73q-22 -69 18.5 -119t110.5 -46q30 2 50.5 15t38.5 46q7 13 79 199.5t77 194.5q6 11 21.5 18t29.5 0q27 -15 21 -53
q-2 -18 -51 -139.5t-50 -132.5q-6 -38 19.5 -56.5t60.5 -7t55 49.5q4 8 45.5 92t81.5 163.5t46 88.5q20 29 41 28q29 0 25 -38q-2 -16 -65.5 -147.5t-70.5 -159.5q-12 -53 13 -103t74 -74q17 -9 51 -15.5t71.5 -8t62.5 14t20 48.5zM383 86q3 -15 -5 -27.5t-23 -15.5
q-14 -3 -26.5 5t-15.5 23q-3 14 5 27t22 16t27 -5t16 -23zM953 -177q12 -17 8.5 -37.5t-20.5 -32.5t-37.5 -8t-32.5 21q-11 17 -7.5 37.5t20.5 32.5t37.5 8t31.5 -21zM177 635q-18 -27 -49.5 -33t-57.5 13q-26 18 -32 50t12 58q18 27 49.5 33t57.5 -12q26 -19 32 -50.5
t-12 -58.5zM1467 -42q19 -28 13 -61.5t-34 -52.5t-60.5 -13t-51.5 34t-13 61t33 53q28 19 60.5 13t52.5 -34zM1579 562q69 -113 42.5 -244.5t-134.5 -207.5q-90 -63 -199 -60q-20 -80 -84.5 -127t-143.5 -44.5t-140 57.5q-12 -9 -13 -10q-103 -71 -225 -48.5t-193 126.5
q-50 73 -53 164q-83 14 -142.5 70.5t-80.5 128t-2 152t81 138.5q-36 60 -38 128t24.5 125t79.5 98.5t121 50.5q32 85 99 148t146.5 91.5t168 17t159.5 -66.5q72 21 140 17.5t128.5 -36t104.5 -80t67.5 -115t17.5 -140.5q52 -16 87 -57t45.5 -89t-5.5 -99.5t-58 -87.5z
M455 1222q14 -20 9.5 -44.5t-24.5 -38.5q-19 -14 -43.5 -9.5t-37.5 24.5q-14 20 -9.5 44.5t24.5 38.5q19 14 43.5 9.5t37.5 -24.5zM614 1503q4 -16 -5 -30.5t-26 -18.5t-31 5.5t-18 26.5q-3 17 6.5 31t25.5 18q17 4 31 -5.5t17 -26.5zM1800 555q4 -20 -6.5 -37t-30.5 -21
q-19 -4 -36 6.5t-21 30.5t6.5 37t30.5 22q20 4 36.5 -7.5t20.5 -30.5zM1136 1448q16 -27 8.5 -58.5t-35.5 -47.5q-27 -16 -57.5 -8.5t-46.5 34.5q-16 28 -8.5 59t34.5 48t58 9t47 -36zM1882 792q4 -15 -4 -27.5t-23 -16.5q-15 -3 -27.5 5.5t-15.5 22.5q-3 15 5 28t23 16
q14 3 26.5 -5t15.5 -23zM1691 1033q15 -22 10.5 -49t-26.5 -43q-22 -15 -49 -10t-42 27t-10 49t27 43t48.5 11t41.5 -28z" />
    <glyph glyph-name="uniF2E1" unicode="&#xf2e1;" horiz-adv-x="1792" 
 />
    <glyph glyph-name="uniF2E2" unicode="&#xf2e2;" horiz-adv-x="1792" 
 />
    <glyph glyph-name="uniF2E3" unicode="&#xf2e3;" horiz-adv-x="1792" 
 />
    <glyph glyph-name="uniF2E4" unicode="&#xf2e4;" horiz-adv-x="1792" 
 />
    <glyph glyph-name="uniF2E5" unicode="&#xf2e5;" horiz-adv-x="1792" 
 />
    <glyph glyph-name="uniF2E6" unicode="&#xf2e6;" horiz-adv-x="1792" 
 />
    <glyph glyph-name="uniF2E7" unicode="&#xf2e7;" horiz-adv-x="1792" 
 />
    <glyph glyph-name="_698" unicode="&#xf2e8;" horiz-adv-x="1792" 
 />
    <glyph glyph-name="uniF2E9" unicode="&#xf2e9;" horiz-adv-x="1792" 
 />
    <glyph glyph-name="uniF2EA" unicode="&#xf2ea;" horiz-adv-x="1792" 
 />
    <glyph glyph-name="uniF2EB" unicode="&#xf2eb;" horiz-adv-x="1792" 
 />
    <glyph glyph-name="uniF2EC" unicode="&#xf2ec;" horiz-adv-x="1792" 
 />
    <glyph glyph-name="uniF2ED" unicode="&#xf2ed;" horiz-adv-x="1792" 
 />
    <glyph glyph-name="uniF2EE" unicode="&#xf2ee;" horiz-adv-x="1792" 
 />
    <glyph glyph-name="lessequal" unicode="&#xf500;" horiz-adv-x="1792" 
 />
  </font>
</defs></svg>
PK`x1\��M�@@(assets/images/jquery.selectBox-arrow.gifnu�[���GIF89a	����!�,	������oB����&�H�9�Q;PK`x1\�9\�

!assets/images/ajax-loader-alt.svgnu�[���<svg class="lds-spinner" width="50px"  height="50px"  xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 100 100" preserveAspectRatio="xMidYMid" style="background: none;"><g transform="rotate(0 50 50)">
  <rect x="47" y="24" rx="9.4" ry="4.8" width="6" height="12" fill="#28292f">
    <animate attributeName="opacity" values="1;0" keyTimes="0;1" dur="1s" begin="-0.9166666666666666s" repeatCount="indefinite"></animate>
  </rect>
</g><g transform="rotate(30 50 50)">
  <rect x="47" y="24" rx="9.4" ry="4.8" width="6" height="12" fill="#28292f">
    <animate attributeName="opacity" values="1;0" keyTimes="0;1" dur="1s" begin="-0.8333333333333334s" repeatCount="indefinite"></animate>
  </rect>
</g><g transform="rotate(60 50 50)">
  <rect x="47" y="24" rx="9.4" ry="4.8" width="6" height="12" fill="#28292f">
    <animate attributeName="opacity" values="1;0" keyTimes="0;1" dur="1s" begin="-0.75s" repeatCount="indefinite"></animate>
  </rect>
</g><g transform="rotate(90 50 50)">
  <rect x="47" y="24" rx="9.4" ry="4.8" width="6" height="12" fill="#28292f">
    <animate attributeName="opacity" values="1;0" keyTimes="0;1" dur="1s" begin="-0.6666666666666666s" repeatCount="indefinite"></animate>
  </rect>
</g><g transform="rotate(120 50 50)">
  <rect x="47" y="24" rx="9.4" ry="4.8" width="6" height="12" fill="#28292f">
    <animate attributeName="opacity" values="1;0" keyTimes="0;1" dur="1s" begin="-0.5833333333333334s" repeatCount="indefinite"></animate>
  </rect>
</g><g transform="rotate(150 50 50)">
  <rect x="47" y="24" rx="9.4" ry="4.8" width="6" height="12" fill="#28292f">
    <animate attributeName="opacity" values="1;0" keyTimes="0;1" dur="1s" begin="-0.5s" repeatCount="indefinite"></animate>
  </rect>
</g><g transform="rotate(180 50 50)">
  <rect x="47" y="24" rx="9.4" ry="4.8" width="6" height="12" fill="#28292f">
    <animate attributeName="opacity" values="1;0" keyTimes="0;1" dur="1s" begin="-0.4166666666666667s" repeatCount="indefinite"></animate>
  </rect>
</g><g transform="rotate(210 50 50)">
  <rect x="47" y="24" rx="9.4" ry="4.8" width="6" height="12" fill="#28292f">
    <animate attributeName="opacity" values="1;0" keyTimes="0;1" dur="1s" begin="-0.3333333333333333s" repeatCount="indefinite"></animate>
  </rect>
</g><g transform="rotate(240 50 50)">
  <rect x="47" y="24" rx="9.4" ry="4.8" width="6" height="12" fill="#28292f">
    <animate attributeName="opacity" values="1;0" keyTimes="0;1" dur="1s" begin="-0.25s" repeatCount="indefinite"></animate>
  </rect>
</g><g transform="rotate(270 50 50)">
  <rect x="47" y="24" rx="9.4" ry="4.8" width="6" height="12" fill="#28292f">
    <animate attributeName="opacity" values="1;0" keyTimes="0;1" dur="1s" begin="-0.16666666666666666s" repeatCount="indefinite"></animate>
  </rect>
</g><g transform="rotate(300 50 50)">
  <rect x="47" y="24" rx="9.4" ry="4.8" width="6" height="12" fill="#28292f">
    <animate attributeName="opacity" values="1;0" keyTimes="0;1" dur="1s" begin="-0.08333333333333333s" repeatCount="indefinite"></animate>
  </rect>
</g><g transform="rotate(330 50 50)">
  <rect x="47" y="24" rx="9.4" ry="4.8" width="6" height="12" fill="#28292f">
    <animate attributeName="opacity" values="1;0" keyTimes="0;1" dur="1s" begin="0s" repeatCount="indefinite"></animate>
  </rect>
</g></svg>PK`x1\gـ��assets/images/whatsapp.pngnu�[����PNG


IHDR*\;��IDATH���[H\W���:c�u4b�x)Z�� &i"�CK�6QJ�BB/��%}-m�Ǿ5�B�m�RS
RI�Vj*�T[	�$�J$��Qg4��ʿ���3*Į���g��׿�h�;.�A+ph	.�0릟Jij���l$� -�w�x�Y7���

y��f��
n`	�$�
 A��2'6�a�ԟ��WY~��l�~��~�m�M�8��ǚ���|��&Wo]��S��պ9O=��η [�;��E����,�\�9
E����@��DZ�U������F��9�<��Ns��ď�����l�Ь�w����� ��"x���=@<<��e&��D0�5�!�-b�
�n��(���6,v(|V�9u��F85�=�E��!vd�Bd5��÷g~!~6�B��k�Ԕ�J*-2ox�ُ���ט~>N���?B`�(�����j�M���LZc��c&�j&����ɛ/]��{~<e�)ҷTD���Gl�nvһ<����d���xln|��k�W�AKE��7C�s�+���*�6h)>Gk�>��F�Z��0��dX��GĚ������=��#�5�$�F�[撊��*�����;��ɠ��fo�z-м�}9���PԻ�J�̡����"��D�F�f*%��d�l6YYYQ�X,F `ccC�K�>M���QVVFee%6�M�����٩�999jݞ��ݥ�%N�8A]]����388HFF�.]"??���e%`;tJe���"������������.�K�����A777����\�TEǎ������L�\�����v���GGG~����*U�]�K��900@EE$--�p8��X,����d,�ڑT
�t:�333������*}�ݮlK8��I�%�垞e������,�9��jUkD��;�Jb���X�imm%==���&jkkUh��B���gu��BH���())Q*�u���V����jFFF��*�ZSQR__�q{{;���\�x���q��Ɣb���bW�.**baaAm�|���+����JaWW^�WGhH*�$Ѿ�>�޽�����B��ؗ+*�r��
I�Pj:55�‘�-���i��&77W���BQ �'9�0���,		J�
�O�D�tB���{�X�Ia��k��IEND�B`�PK`x1\�]K��2�2assets/images/googleplus.jpgnu�[�������ExifMM*bj(1r2��i��
��'
��'Adobe Photoshop CS5.1 Windows2013:04:09 16:45:10���*&(.sHH���Adobe_CM��Adobed����			



��*"����?	
	
3!1AQa"q�2���B#$R�b34r��C%�S���cs5���&D�TdE£t6�U�e���u��F'������������Vfv�������7GWgw�������5!1AQaq"2����B#�R��3$b�r��CScs4�%���&5��D�T�dEU6te����u��F������������Vfv�������'7GWgw������?�^>�-ʵ�m���ѹ�Ηh	o�ޘ��Z,61���L7�`��l.K���K�n��~<�6{ϫ��_?����H�1�T��\��^�7�Ikkw�6~��
f�;_zz>)��!=<C��t}h=��&�n���ݵ$H��$�<Yh�}�~�ж�n��U{�>�$�j���ﰽǗ$��lk鹴�9��z-|��{*{=M�?��}�O��67mm�׵��`x����QC�l~?ks�#����s=1�����"~���g��v���v����Is�+��Ԧ�[�Z�3�α�����
���}C!�1�``mց�=�f;����#���1%1����%>��vI%?���Photoshop 3.08BIM%8BIM:�printOutputPstSboolInteenumInteClrmprintSixteenBitboolprinterNameTEXT*EPSON41A44B (Epson Stylus Office BX320FW)8BIM;�printOutputOptionsCptnboolClbrboolRgsMboolCrnCboolCntCboolLblsboolNgtvboolEmlDboolIntrboolBckgObjcRGBCRd  doub@o�Grn doub@o�Bl  doub@o�BrdTUntF#RltBld UntF#RltRsltUntF#Pxl@R
vectorDataboolPgPsenumPgPsPgPCLeftUntF#RltTop UntF#RltScl UntF#Prc@Y8BIM�HH8BIM&?�8BIM
x8BIM8BIM�	8BIM'
8BIM�H/fflff/ff���2Z5-8BIM�p��������������������������������������������������������������������������������������������8BIM8BIM8BIM08BIM-8BIM@@8BIM8BIMQ*Senza titolo-1*nullboundsObjcRct1Top longLeftlongBtomlong*RghtlongslicesVlLsObjcslicesliceIDlonggroupIDlongoriginenumESliceOrigin
autoGeneratedTypeenum
ESliceTypeImg boundsObjcRct1Top longLeftlongBtomlong*RghtlongurlTEXTnullTEXTMsgeTEXTaltTagTEXTcellTextIsHTMLboolcellTextTEXT	horzAlignenumESliceHorzAligndefault	vertAlignenumESliceVertAligndefaultbgColorTypeenumESliceBGColorTypeNone	topOutsetlong
leftOutsetlongbottomOutsetlongrightOutsetlong8BIM(?�8BIM8BIM�*@
�s���Adobe_CM��Adobed����			



��*"����?	
	
3!1AQa"q�2���B#$R�b34r��C%�S���cs5���&D�TdE£t6�U�e���u��F'������������Vfv�������7GWgw�������5!1AQaq"2����B#�R��3$b�r��CScs4�%���&5��D�T�dEU6te����u��F������������Vfv�������'7GWgw������?�^>�-ʵ�m���ѹ�Ηh	o�ޘ��Z,61���L7�`��l.K���K�n��~<�6{ϫ��_?����H�1�T��\��^�7�Ikkw�6~��
f�;_zz>)��!=<C��t}h=��&�n���ݵ$H��$�<Yh�}�~�ж�n��U{�>�$�j���ﰽǗ$��lk鹴�9��z-|��{*{=M�?��}�O��67mm�׵��`x����QC�l~?ks�#����s=1�����"~���g��v���v����Is�+��Ԧ�[�Z�3�α�����
���}C!�1�``mց�=�f;����#���1%1����%>��vI%?��8BIM!YAdobe PhotoshopAdobe Photoshop CS5.18BIM��
�http://ns.adobe.com/xap/1.0/<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.0-c061 64.140949, 2010/12/07-10:57:01        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stEvt="http://ns.adobe.com/xap/1.0/sType/ResourceEvent#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:photoshop="http://ns.adobe.com/photoshop/1.0/" xmp:CreatorTool="Adobe Photoshop CS5.1 Windows" xmp:CreateDate="2013-04-09T16:45:10+02:00" xmp:MetadataDate="2013-04-09T16:45:10+02:00" xmp:ModifyDate="2013-04-09T16:45:10+02:00" xmpMM:InstanceID="xmp.iid:912A9FF423A1E2119087F91BBDDAF977" xmpMM:DocumentID="xmp.did:902A9FF423A1E2119087F91BBDDAF977" xmpMM:OriginalDocumentID="xmp.did:902A9FF423A1E2119087F91BBDDAF977" dc:format="image/jpeg" photoshop:ColorMode="3" photoshop:ICCProfile="sRGB IEC61966-2.1"> <xmpMM:History> <rdf:Seq> <rdf:li stEvt:action="created" stEvt:instanceID="xmp.iid:902A9FF423A1E2119087F91BBDDAF977" stEvt:when="2013-04-09T16:45:10+02:00" stEvt:softwareAgent="Adobe Photoshop CS5.1 Windows"/> <rdf:li stEvt:action="saved" stEvt:instanceID="xmp.iid:912A9FF423A1E2119087F91BBDDAF977" stEvt:when="2013-04-09T16:45:10+02:00" stEvt:softwareAgent="Adobe Photoshop CS5.1 Windows" stEvt:changed="/"/> </rdf:Seq> </xmpMM:History> </rdf:Description> </rdf:RDF> </x:xmpmeta>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 <?xpacket end="w"?>��XICC_PROFILEHLinomntrRGB XYZ �	1acspMSFTIEC sRGB���-HP  cprtP3desc�lwtpt�bkptrXYZgXYZ,bXYZ@dmndTpdmdd��vuedL�view�$lumi�meas$tech0rTRC<gTRC<bTRC<textCopyright (c) 1998 Hewlett-Packard CompanydescsRGB IEC61966-2.1sRGB IEC61966-2.1XYZ �Q�XYZ XYZ o�8��XYZ b����XYZ $����descIEC http://www.iec.chIEC http://www.iec.chdesc.IEC 61966-2.1 Default RGB colour space - sRGB.IEC 61966-2.1 Default RGB colour space - sRGBdesc,Reference Viewing Condition in IEC61966-2.1,Reference Viewing Condition in IEC61966-2.1view��_.���\�XYZ L	VPW�meas�sig CRT curv
#(-27;@EJOTY^chmrw|�������������������������
%+28>ELRY`gnu|����������������&/8AKT]gqz������������!-8COZfr~���������� -;HUcq~���������
+:IXgw��������'7HYj{�������+=Oat�������2FZn�������		%	:	O	d	y	�	�	�	�	�	�

'
=
T
j
�
�
�
�
�
�"9Qi������*C\u�����


&
@
Z
t
�
�
�
�
�.Id����	%A^z����	&Ca~����1Om����&Ed����#Cc����'Ij����4Vx���&Il����Ae����@e���� Ek���*Qw���;c���*R{���Gp���@j���>i���  A l � � �!!H!u!�!�!�"'"U"�"�"�#
#8#f#�#�#�$$M$|$�$�%	%8%h%�%�%�&'&W&�&�&�''I'z'�'�(
(?(q(�(�))8)k)�)�**5*h*�*�++6+i+�+�,,9,n,�,�--A-v-�-�..L.�.�.�/$/Z/�/�/�050l0�0�11J1�1�1�2*2c2�2�3
3F33�3�4+4e4�4�55M5�5�5�676r6�6�7$7`7�7�88P8�8�99B99�9�:6:t:�:�;-;k;�;�<'<e<�<�="=a=�=�> >`>�>�?!?a?�?�@#@d@�@�A)AjA�A�B0BrB�B�C:C}C�DDGD�D�EEUE�E�F"FgF�F�G5G{G�HHKH�H�IIcI�I�J7J}J�KKSK�K�L*LrL�MMJM�M�N%NnN�OOIO�O�P'PqP�QQPQ�Q�R1R|R�SS_S�S�TBT�T�U(UuU�VV\V�V�WDW�W�X/X}X�YYiY�ZZVZ�Z�[E[�[�\5\�\�]']x]�^^l^�__a_�``W`�`�aOa�a�bIb�b�cCc�c�d@d�d�e=e�e�f=f�f�g=g�g�h?h�h�iCi�i�jHj�j�kOk�k�lWl�mm`m�nnkn�ooxo�p+p�p�q:q�q�rKr�ss]s�ttpt�u(u�u�v>v�v�wVw�xxnx�y*y�y�zFz�{{c{�|!|�|�}A}�~~b~�#��G���
�k�͂0����W�������G����r�ׇ;����i�Ή3�����d�ʋ0�����c�ʍ1�����f�Ώ6����n�֑?����z��M��� ����_�ɖ4���
�u��L���$�����h�՛B��������d�Ҟ@��������i�ءG���&����v��V�ǥ8��������n��R�ĩ7�������u��\�ЭD���-�������u��`�ֲK�³8���%�������y��h��Y�ѹJ�º;���.���!������
�����z���p��g���_���X���Q���K���F���Aǿ�=ȼ�:ɹ�8ʷ�6˶�5̵�5͵�6ζ�7ϸ�9к�<Ѿ�?��D���I���N���U���\���d���l���v�ۀ�܊�ݖ�ޢ�)߯�6��D���S���c���s���
����2��F���[���p�����(��@���X���r�����4��P��m��������8��W��w����)���K��m����Adobed@�����*�����	
	
	u!"1A2#	QBa$3Rq�b�%C���&4r
��5'�S6��DTsEF7Gc(UVW�����d�t��e�����)8f�u*9:HIJXYZghijvwxyz����������������������������������������������������m!1"AQ2aqB�#�R�b3	�$��Cr��4%�ScD�&5T6Ed'
s��Ft����UeuV7��������)����������(GWf8v�������gw�������HXhx�������9IYiy�������*:JZjz��������?2�s`����ݻ��6	כG~m��Z�n���+��3��JvG3��S��l$��<���J�!d���Xn�ܱ�p\�	�ƹ��aEfU
���͓E�Q�-Ϙ��}�y3e�m�9��n��|w0��ۘ�b�J��,����J���

���&R����A���[w��7'���v���U.o
����ۚ)�X�+5/����ڔ!Fc��Q�y�
�m�y�8$�B~��!���]U�!
��kI}���^a��ܡ���O`'����&�  U��M"=$P�
67a��ٟe/��*����m�ښ<�H������D�WV���~4���lmۧ����>"p��^�Z�Ԉ��?A���=��殭H���+��δ�_��<�_-Q��ϻ���7��X����p������6��5���>��v|0ÒX�U0C&^Ig��
3>�
&ɶ6�|�m��{P�����F��@ԍ�2����כߜ��>F�Q-9�n����$S؋�v��k
$�$�k�v[`�5�S�
��->���{rn:�~���w��d{ғw�����'����,i6&J]��|E�xcJY�‘�0�]'3���{��w+%�Iu�ņ�ʱ0��=��Š�N���I7.Jݹ3�v�T�l��l�6��MxQ#�K�ؑ i�mW�ȗ>0f,E� ��mD^(�_yD|zE�U�m���
��"����Q�����z5���0x=Ӽv�ȶg�v�&Z��-E��)K��IO,��l�1���)��D�G{+x�k��>�����!I
YVYµ8j_I#ȑQ�z���3|[#��{���n��䶲gJ��$�XU��0
�:Je��qdk3���S��W�%���NO%_W*F�+T�U<�I��"�P���s���qs�X�;�i'f?i0��tme���m���n�����1D�8,�V�U�T�N*I$ԒzĘ?��ơ��Q���g��]�����nk���o��o*��~}<~���Q��;������_�|�u��?==��f��c�lq�j�JͿ�B��u�m�ӹ�|�� �
�C� �kW�J�������5Ԓ:k�u���s�{�2�pb��12��=���ퟷ��
����:^Ӣ��'�Jy�]&�J�єkvIv����{����_�*[���������}��d.ƣ�?����X��k��{���{���>�/=�q�o$;G{�:��1����e7v���C�vLTt�k��M��C��8�5�i*+ZH�jbX���H�=���݀ϭ}��T���}��ö����FM��lX�(��������Zɩi���F�-y���,�������M�u��0��.��=?�?�m��O~��G��Oߺ�R�������u�O��~����PK`x1\�8K��assets/images/twitter.pngnu�[����PNG


IHDR*k����PLTE���������D��F�؅�����@��B��A��A�ֈ��������E��D�Ј��A�؇��D�х��@�ӆ��@��@�Ӆ��������������������x�����X����d��m�������U�����i��V��������t��9����\����������������������ݧ���������������B����5�দ��������������̅�������������������A���������������������L�������7����G��[��5��A��A����O��?��������󿿿�����������>��=��F�����:��P��;��?������Ν�����=�����@��F��D��C�㖖����@��B��@�⍍�D�㎎�D�䐏����������E�㏏�>h]>tRNS������������������M[_IDATxڝ�Eo�0�a���T=Lcfff֘��Wfn�8�<7?wM��i���WI�<۟A:-�F��Y�EѼ?(K4�����UeP�X�Ʈ�V����v��<�9p�e���֮)��ŵ����Ƹ�ۯg��ސ*+jq����:�^\��s�w���N[V%���!������A��+��d����ڸ���M�t0,��5H&v�.��_wF���,d�HKHY��Ҋ�@�?�<B�@�G��r‹`�z �9�o�H�{i�-���C��5��1��CV@/�����
��M�@o���"�z�B��a
�;*��f����0#�ɐfdnem{ύ¦��$�	q�QQ���|i�q?ލ�pHPyOIEND�B`�PK`x1\��.uuassets/images/ajax-loader.gifnu�[���GIF89a����{{{�����愄������֔����ť��������!�NETSCAPE2.0!�	,U@�Ań�8�Kۋ_�!�	,"�H)Д%uu(W�-e������\�v)x!B!�	,"H�:��@a$�qɬ�'aY:dhi�QܵRm�a!�	,!�I�Q4�:ғ�8%�!AbJ�h��8��r�o!�	,U ����{�f{ŎM&!�	,!�#���=�[`x�$d�&��ZFX�C���p(@!�	, H C��٠3s�Ídi��5d��MȒa�!�	,"� AjU!KJܒ%1e���
e�-ܷY^��BD!�	,U@�Ań�8�Kۋ_�!�	,"�H)Д%uu(W�-e������\�v)x!B!�	,"H�:��@a$�qɬ�'aY:dhi�QܵRm�a!�	,!�I�Q4�:ғ�8%�!AbJ�h��8��r�o!�	,U ����{�f{ŎM&!�	,!�#���=�[`x�$d�&��ZFX�C���p(@!�	, H C��٠3s�Ídi��5d��MȒa�!�,"� AjU!KJܒ%1e���
e�-ܷY^��BD;PK`x1\���(��assets/images/pinterest.jpgnu�[������ExifII*��DuckyA��+http://ns.adobe.com/xap/1.0/<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.0-c061 64.140949, 2010/12/07-10:57:01        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS5.1 Windows" xmpMM:InstanceID="xmp.iid:8013A592AFC611E1BE7CAB36B5021FB2" xmpMM:DocumentID="xmp.did:8013A593AFC611E1BE7CAB36B5021FB2"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:8013A590AFC611E1BE7CAB36B5021FB2" stRef:documentID="xmp.did:8013A591AFC611E1BE7CAB36B5021FB2"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>��Adobed����		
	





	


��*���!1A2"5Qa��34�!1Q�Aq��2b���?i���h�V�L��^G��q��I#�Af8��]�#�S>;l]���b��R�}�;��v�����T��Գ=,���|Aa��8c��;�'^�%8h�L��K`9eF��i��3�c
Ko^��h�U�Syit����n��C*��X��{����F�p��Z�V�u5�b��={ݥ�	�)[s��`���qA*������*!�vl�g�-1&��o3�Q-����j�\��v���5wx��}�9�y9�3M�]�BG0�+�9���,G5e9��G:;o3���Kz-�'�I縴�J���В��sf'~��:;o�&�R��B�c�H�_�z|�g>
�v���.���Y��;�ڣ�!䠠���T��v�2R!~ҝr�r�<X�����o�r�Za����R��#�)���y�;��y@L�s�ec���zk˃k�=�fx+�*�6IQ*���t��Nc�c���7;��JJU�F���,n+
�@DA�M�:���L��M�2�\�S}����f����f���PK`x1\5�۴�	�	assets/images/email.jpgnu�[������ExifII*��Duckyd��+http://ns.adobe.com/xap/1.0/<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS6 (Windows)" xmpMM:InstanceID="xmp.iid:4F1C91C9FE0D11E38F108B1821A01762" xmpMM:DocumentID="xmp.did:4F1C91CAFE0D11E38F108B1821A01762"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:4F1C91C7FE0D11E38F108B1821A01762" stRef:documentID="xmp.did:4F1C91C8FE0D11E38F108B1821A01762"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>��Adobed������*���	
	
	"#!1$AB3��V�W�	"!1VAB#ԕ3�$�ՖW	��?�o샎�6��!�����j̍��nY��LP���C!��@9g��H�M	~V�Q�w�[g��
y}���C<�X���D�U�UźF���"GL�p)��	CB��=��6�ͣ��+�ά�\[�
�b@P�Q8D�0p�!)�
Q�D����T��\^���O�:��YI��,߽��;:�������&v���ڍU.���O�����f����ޫ�ש�)��r�m{Qb��UW
?lX}N�t�֞�Y�j�u5괔[�MW�i)x�6V�$�*��`DPΝ"�zUT�詨3��8��0���ڕ�$#"�ˊ#� s
�%0q7�������~ҕq�H��3܇Nr��1>Yl�4�6H�L�
"B
��fd�����bi^��1L;�Bd�$�9�)&�e�n�.ps�l&S��J��Om@TJ+��i��	j�"�+�p��8X�m�H�f^`+K$��3qB(n0�L$"ah��A�a(�/�e�oE7���s1�L��ry�A��p�L��(\�VI����T� &x
r�n1��Ð��ܛe�&��7~F�2ɔx������MU��@n�ns��o'v�Q΢�-Sև��=�k�:�3W���Y��/O��ߚ]�q�Jh�:����oY�����k�/ĕ|1�ζǡ���}ͯ[�Z4���:yS+_�jT�����J�e9
#E��&pTE(`�>V,��E�sr�͇>\�������Ou�`ʟmn���:�PP[d�
�I��d���MS�C/1��s���R<FM���VJS9NU�NA9y� ��G�r�?�F�KŇ��o�q�翧Dw�^�}<��`/��Z����ֱc��j��i����x�=���|8��u�:�muUj��_S:h��WvtpN�����'�M�圫'�e+ZVv�:�oWD������K�;Cd�{W��ޗ��{�nֲwInԣ�A���	%ĐLb2�+�JT1.z`d.��9��8
1��{hx����	<�����2��~�7X���Ӯ*������OFC��"b2I�S�=?���ݹ���h��?R{a�<uF�Q��>��\�u/FNg��{���b��"ů���
'�=�=u-��{��LVQe#3�V�%�������1 ��b �.���J�DĚ�y��Ji�Ɇ�Kpv�!�]$�t��ҰNpn-*\�@ґ���̈́�!@4cʄS=E���ϩ��v�[����ھ?�+��W��2}���h�D��!��PK`x1\��h�assets/images/facebook.pngnu�[����PNG


IHDR*k����PLTE5S�7S�5S�5S�TTTYYYVVVTTT6U�UW[:W�VVU5T�RTX7T�7S�7W�6U�VVVUUUWWWUUU7V�7S�TTTTUVUUU5S�SSSTTTSSSTUV5S�TTT5S�TTTUUUTTT5S�TTT5S�5S�TUVTTT���t�����To�&J����Ys�0Q����Aa�6W����s��������Ig����~��7W�:Z�a{�/Q����b{�6V���݋��ttt���bbb���qqq��܊�������������뾾�hhh�����ᜬ�,N����)L���Ѡ��-P�)L������������߷��Db�.O�������0R�ccc��������Ҟ�К�����7X�/P�o��.P�|||:Y������������Ͱ��6V�TTT8X�4U�8X�2S�OOO9Y����5S�UUV9Y�YZZ
��tRNS��������Ȼ������������IDATxڅ��R�0�aq��nl=���{�C褑�KΎ���G����7;;Ҳ:�V�����Z
4C��*�3>V1��>>-M�J
�L$L�t�@g��AW?%��M=܂����2�
���>z������@.��5u
9I�������@`�2��L|��ey��*�Zq�5�\��t5��4Κ,�X���sEg�w�.�pc`�c�����W���zv�
o *�68�k�=*��!T���7|9�o<RW��'xvɬ��j��7�߷�:[\ڌkl��p���|IEND�B`�PK`x1\#��.��assets/images/logo.pngnu�[����PNG


IHDR��I}aPLTEIt�a��x��p��Wm>p������>s����\��Ew�/dw���OiZp(audu|���y��RkRj5j~l��s��SkSkM|�Sko��9k~Rks��L|����L{�M|����!\sv��6h{}��v�����L|�;iz���PhRjp��SkM|�i{�{��Sk&]qM|�RjDv�fxAp�Sj�����"[pR����j��^��M|�+^r{��q�����Wm��Æ�����R~�Z��M|�}��s��3ey���>o����ex~��Ù�Ù��j}�$Yn0dwk~�#Vjh{�dv|k~�+`u���W�����l��L|�M|�k~�x��k~�ew}k~�k~���•��a��f�����'Yn)_sk~�)_tRg���PhGv�������^}�k~�Jx����L|�*[oi|�k~�k~����gz�k~����k~�k~�k~�Jx�dv}���fy���Ly�,`ut��-auPhb��Pgk~�k~�ew~`{�{��k~�k~�j~�k~�,^rk�k~�k~����Jx����gy�Kz�/cv-atJx�d~�t�������e�����']r/dw��Hw�/cv|��}��1dx���+`tz��������w�����Ky�}��0dw5j~ew~8m���"2fz6k@r�k����A��5�����@Bm�����fdv|N{���{��`�����[��cu|X�������̙��R}���������������i}��������������訽������d����堷�Fu������fx6k7l�k~�:o�0g|����M�tRNS��%u�����������������kñ�2����}��ia]+���iT�ԭX� 7��C�C���������K���C�r�N�ז����Wٔ|:���M�������z���i�6S����1��Z�����&n�*/��0�����Gd��������	��;�
�|_"�,@t���Ʒ������������������������(���IDATx��wTW����;���ݼl�f�lzH[o�$�{��ƉK7��4wB�1�@L���`A,�@�\H��9�~����؏&: �5�wG(�%FC���w��h�����ʝ;s"%62�ld��,�L�Y��f� 3�X������b����{�{o���K/�����B$�,�$t����^����?��#G�m�����-q������G�����w�=������]�i�ѝ����מ��]st��Ο�a�-[�\ž�+���縷�>�㟾�-�Ђ�!�>�����N��<H��{JKw�BVY)S[��3�ެ��۾2�޺�7��>qb�6�s��DM��7��s�d��hmiiَ]���;�Awf٪
�����H�q��OZ�|�C�L
���i�#uu�7�<0�Gk���ޱKMkq�Z�sX��
��ɝj��ġC˥�6�ӈ�W���Vlߴ�?e�����3��T��D��'�t۽1�.R)Q�qEmI��-$�c��w�z�Ƹ��T�V��r<K����
��ں��vN7��/�N��w���Dy������Ҥ'�8��a��9?Ǣ�^��= G�.����*esv�㘣��8�W�VU��2� N�֟N��a��V��Tu�ȹ�?�\�a�I	�UU�j��|��9�d/��a��_1ǻ�(�Խj>���4] ���O��ϡ��$��s>= <��L�zz@�J�?Uo�_�%��̪Z�B���֪J�>���{J��O�Fvr��h�J���VUWu�}��g��_e9d�	��\��1��G�ds� �	k�>ː#o��J���P���J��X)f$<
��_;�f�F�m;�Խj�תT&���-ŎŐ�Av�ɬ1k0����\�CXy�Ԛ/��h�n�$L#^�y$�x�Mў�)e��f,�-d����ɉ�!Wű�-�#25C�r��$�Y$Y��}AN^�ba.�K�/�5�׏� e_0�!-VA�*I�gX��ɜb�Z�Db�JU�R�l��H8pL��`Al$��)ɇt-a	�ctQ��g)�mK�b�r��#�bѳ�ɽƮ��$�gi��&���i��b�-V@B��d�� �����j(b�E
%O 9y8�M��4iG�
�V@>�E���ʻ8�����cp!ej��o�Vޑ��V�)�K�bd7�"wr����Ϗ�;��2Y�(��P�8t�n������+ �9� ��}�襨>�Ni����	 ��$r���o\�oKv�"�����Y��-�
R(�:1�*&t|��Șջ�Mt%!��q���^�-в��M�-���=���Si#㱮P*� E��
��ꌘ!j(&C'뢨.Y�N��Yc8�n�bFp�aM��Gڮ�˫��yc����ꖶk��ԂI�ZݺK:
1���W��,��+��5^��=�'u�o�E���<�N�J�ƨ�;(�7C��A�����J%��m�M3�p��+Ձ��C�n����xt���=��7�8}B�|M��-,�,(�{�(o��2��/δ���18x��6L{�ɫ���<+�yl�eԠ���R�DS�f��P�L�Z������N]�j�q9�A^=@�t/�m�"�d5 �}�p��
B�����r��?Y�	M7t(b�����5w�l��u��+�[��CTLj���Qm�
u�t;���5�+԰�$�c�>p��)��6�7�y�����y������p�`E���(�7(
�;�jb�9��|�|}��j�4���^v뤮� �8���rz�ގ^��9��،`D�~��wFδ� �2/�H
�*��
���`զ��~�E38؈Ѡ!���]�BN���6�"<j|��̾{)�"� ����J�kX`��J$���Z	T�2��N�:�Es#�y2H�F%�
P79� �C����Z'FF�]�ܮQ�Q�n.ӦȂc�`o�R({(X8��p�ȸ�[���CP
��g�uV׺��b�n2��pnR�F�bco�W
V�n�Fp�iA��;���`����/]C���a��Z>gx�l��Q���"���:ک��E����`+���j7��nE
�@��z�j��x���y����	�S�	 ����"ْka��;�}�g��=�j��d���9�vD�YG
�W5m�����py`�Em��@�GA��tnD��� ,�,�q�!�$�^����JC��؀���R�"�^�UC��Ċ�%䖁2�h���H]w+*'�Q�-��
-7����Q�n�<��LB�@?%}be/�cDb�4*Z
�=7��!���H-��3Za1ڛ��;
]G�q]�)�}��zǎ�;g����I�t�u\��~еZ�>��)L�<�~�چK����"�� ;�2 yD��q����=O�<|C�NV*�y��T����é��-�[�X����@.�Er�+���7��l?���ھ+n_5����u�-�l\
ϼ��'a<\�l5PF:OY;��l
��`�4��n��4Z
�2j���,���@DD�����@�"��rLy[����M���@ڲ���a����A ����E0�X#il"���霢�"���²�y�'�7����
���GUJ(�ø(&+�gAp���T^^^n��r��r|
����6@ H�{]#]�`� 5ة����-���oى�*:D���N�>X�H�:Ϯ�Fkm�9�8��Cd��mw��R*�oM}�|�]���`e��L1�54�cH�w���CQ�1�@������
��ߦ�"����@��p���c0�k��>�S9TCu�@@�d����Fk�LC�cx`�6�� c��\��)S���a�,�L�6�E���A��vI�Qv_x���b�8T�a��4[ ��WQK�n̬!�L#���ݼ�U�s�g��EH�Z�.2
ڱT$� ���'�j"�?|��e�`�:�6�	v.�ar惥�k�.�㇇U8@�D2�ħ�	Dz
�G6ˏ/�ƈ�sx)p8eN�|ɐ8�T�G;q�	p�B�I�
b#)�I�p�T���7�H�'� y�4
H�����?�OnI9�*/�X�9�����_a^�J�=�/���jɣ@r�?�_}VU[W�i�_�_�e�UPO"����+�T썳�U�_��N*J�++���o��i��[�+�W���6Il3�왮���+C�D��&�@rf*@7��>r�	$ڟ�服+Tu{��$ɂgKK��J�1�,QU���s.�,Y([���%6~���<��b�yx�ؚ���9=�,�-V�g�ݳ����+��6)��N��>��b{�H��=��f�}����<;>���߫����O;�[0����+מ��[���X���}{W�"*Ţy/�~v��]O|qF�^���77l���;'��Σ��fA��W������/<�ua8X\@@�Ѹ���zF�{��O�t��	�������i62�ld��,�L�Y��Bn��қ���ॷP�3)���zfƆ�B.Wϟ/�-~��~$��J��Ιw�%��S�L�0��r�sE��\�
L����\�C�[(4hr_�\�b��Orm�#d��X��
�-"�M�^��n?P��&�u��C͹p.I:"A6�����h"w�+N���y�I�&�+ϔ$�P��C�X#�w�$�P�$9�Ʉ�blt�J�)Q�(וO�e%�<�<�(QqV(����_�qb�,o)�+�&3�wR��ϣۜ�|%I�TXx����l����e�\�`�L�(R��Y 滣�0�� �H�9@�l�C711QH������Q�(�(G�S(@��E� �y#B?x �Q��6�ׇ�˾��o
��"���JZ4��F�(�B&���r`�f��(�$��z��
[L^v{��o����G��Q���Fٱ����E�!!}�Qt�x#aq���E�GB>� w^>r�#}4/����()��DG���D�h~�� ��?Q*�nF������s�)	~Q�,�˝{QyH�@ p���K�r�LI��H��#e��?�L���Q1��?$�5>���gQr��Ў�O_��Eщ���q!*��G/���		2q�� �D�~�.�3F��Q�� �!EI�q�� а�d��'�PJ�}�r
�H�-�����ӟ�X$
*N�B\�2p^���+c1���#E�"x"���$���k�
a�D�AI�����Ė�������I~3��7��c�P1�����r���2ģ|�$�xx���p4	�!^�U聼�}rpx���o\Z�s=MzA��EH0E�"���H@�F���q���y͑���ax�ɒ(�)�da^KpD��L2(5{����NA�Xrt%��k�4!�����H)�� @V3jN$�!�}�t7%��)��>o��P,�B�x]�ś
�&O�|8C6�j
��Uȇ��)ѽ�0o��,u&%KLJ����"OG���#�qj�wt��r��)���@�K
R�<n�+̆&g�}�2#��rvt擹ŋ�y���(2w~1���Ez:KHo���H�-�	�E$����E���fA��md��,�L�Y��f� 3�fAf�͂�4��i����D ,�A1�IEND�B`�PK`x1\���a��assets/images/landing/05.pngnu�[����PNG


IHDR�U�MtEXtSoftwareAdobe ImageReadyq�e<%iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.6-c148 79.164036, 2019/08/13-01:06:57        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop 21.0 (Macintosh)" xmpMM:InstanceID="xmp.iid:46AEC1B00A1711EAB39BBCF49119F7BD" xmpMM:DocumentID="xmp.did:46AEC1B10A1711EAB39BBCF49119F7BD"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:46AEC1AE0A1711EAB39BBCF49119F7BD" stRef:documentID="xmp.did:46AEC1AF0A1711EAB39BBCF49119F7BD"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>)�.��MIDATx��{��8���/I����ʪ�vO{zy|����/�;�=��GUW�+���.AJ$$HQ
E�MN�B")�}v��MӔ�"��������ʹ�?��ˎuI&	�������i_��(�:S'���Na1�]�����4�\�g�=��ճe��Z?�^#@���
|"�f��}��_7�]�A�9�4�EGeF�v��1��IN7�
����u�Q���^�q��Fܓ��c�4��_�b�r��
����c'�攂ʣ�N��f�{6��=���k&�5�+5��4���/׃�|��c�,�)����!�`ְ�y���#֓��G����*Јc:�Z��س'�rsmA��z�?�� <�1��8Գ(5��/O�yvif�+=K����6c�9���BOis1c�zp�<�Rs��	4cO����Aef̵!���y�JP�d��x��f�d�
�GN�4���4�K�9�2�/s���L��������<c+:oO���C��ã�ٻ�G~͑g�Q���D�9�QSz�3�
��S�o��1G��Tj�!Ӽ���̳I3=;N^XsdjM���]P���y~/=$A�q�s�4��ƹ4�Ԧ�ff�e����s�'�GR[���5p>!�\a#=��2i�3�i�W��]�<f�A&��LX4���yy�W�R��,p<N�]�ye�yw9@�G�8O��ĉ3ղ�k�B��8�����>\vA����>¼����#���Ms�:q�ͼ��I��Qۏ��\������:ѳy��K乢�Y��	!*�+Gf�(��2�3�?7���1W���e��ɡ;�O=��4��N��^����	�4��h�K�an|��1K��ƶ-G�2��a'���d��\�޴�sT`K�g)s9�1����4'K�9�4s]f�ڝx{z[xN�l�x��ye�Q���h���E�9�.3>�fʝ�W˴@��-=I�>V��E�9�f.uf���+t���~�D:�.�����/�W�JS��͌�M�%�̫�y�2�gY|#V�8�Qq���)O�f�l��Si�_�@3�FuPM�T�m0e�S;�e��8=�!�w�;>O�i&���/u�������x�f�a�&g=
m�S�4��6�]�g���#Bݗ��Xj�F�v�@�	�Տ���G�mZ'�f��j�Y�6f���g[�*�^lף|S��u�3��s��*�F�3sI3C)3����p3������Y�����>��!�dc��y4��M�9\����R�6R�9<_F��gĴ��j���9(8�����d�9\i�۟�@3�%�����w��.3C�v���k�sKOV[�M�ur�0��ƿ������5��r�c�gh|rgf,k��8s��̌Ҍ8��@�]���p�#����HԴ�M8|P�ݯ��%��iԍ�Q�9�:sx��M�ˌ���+�� ��k��g�Q����T�4S��4��͉}g�rg�i���R�����s��/�t)xI-\��yF�G�kzB��a��O3�ќ�@sDu�)�.h�Y=)3��>|�xZ�޽^Oq���8�.��7�iV�s�AO�G�4�˝�j4�hN��LI�3������͗z�3=>|���)�3�Ea�EL�x��0C��{�=��4c3e&��8��!��;s�ę	�QSf\H��D'=蘁�!/��åi��n��k\�P���4�y4�"�L0�R��Sg|�f<�f��n�C���cnc�g
�9�i¥	�_`8��1}�c��ON��T��U0N!���i~uf֚�cK3=&��D�q��O�Ûr|7�n����u�Gd6S��\J��l�*���ќ�@s
uf�ęg�f<u�q��׽7ҧ[RE\�	�J�#�\=5�Ʒ��PH7U��]��K��-�f�F��ͱ\����G�q�Z_Qf�}��]���~8b���F�:�/��WmJo8^��W�9�Ls4���	rgȠ+�eM�W�H��ص�+�*2�����LJ�사�7�����:3���c����A�f�T�1�D�����3>�Bʛ��|ԼY�5Z��Iuv�=�õ�iG���x�τp�����K�O�c�4�����P�9G��(��LeM�5M������,3¥�<h�f�c�g��8�(�Kg\tHl���A�R߲%w�&Ƈ��)5�>�1!��r��M����4��)���O��ˌez}��S�w���w=,��j�e�_Ț��"�
���|b=s�,����R���;��i2�пY�ϴ9��E}��7k���T��(��fX�G�^��M��A3�}fbۦi�EC��	j���vh�c��9�:�U}GN��}Р�6�%͙D�-�6
l=�&g�L�x��6�7�����i�f��gzT�)3���;S�_��K���,t���V���´���[�q��J������4�
%��Q���(o��M��ǚP�WgN,�̧ˌk$���&�=qf�M5�R�=�|
�uF:�	|�Rsb�f�F3R��|��\���#ԙYsg�Rg&J3�u�����A9�?wf���:^�D��ظ���b�>���*5Ǘi��h�<�F3�@3Wq�A�395�^�>�3��f�-fz�e<�N�D:��s�?b�����0Ce���n���X��nlz*�ƿ	����d�rR���xtSm!F��UgN�83��|Rf��e�e?�6�ݳ�~�	:v������^
3;n5�34�p~�S�-a��^a��Si��D׌�Ŵ�c*��ok�L�J�[�>��k
��fr�2��� >=�ա�>�~�ݠ�ga�=��|.�ѭ^�l��q�9�M��G�9��s�O��B��snvc�vj?�ׅ؟�4�V�m���k��j��s���C=o�q�6��Όʝ�i�U�,h��o�� �o��ݓ�R�u��֥�s� G�k`r|��y�6>y4o��P�G�<�	1�o��r�)y4�{r�N���W{�:3��ɶ\��o,��-h�fzT���J��"h�X#�,��O
�!��ۉB���
sF�Y��['Z':#M�����.�o���'k4�Yy�D�:yh4s
4C�"sxOUg�6�^��[��/͸���R�_4�^{��Oɶ�y䩶�5^8��?����g��lD�|�~R��Tj�d��eL�cI3����F�4>�y���9���>�:ӟUu�4#�״E��UlN�b�~S�ל�1Lק�����a<k���Y3�W�ϟ��ѐ��plٍ��Q�P���$���nk:YjTqE��wo[ۼ��i|,i�MjWN1�Q�h��O�AsH�&q�
�����:3K��@M���W�q�Y.�y�S4����`|D�.N��Ȩl�	AS8֟n���jkz�j��x'��R�NOǬx���u�f<�@3�>s���Hߙ�3}�̘���ؿ�NJ2>�Gо{����#K�����9���e��%Nc�2:FI)�$P[/���EO6��5�o2k��\�c��ĢAM�+gk�-뤯��;k��-z�.�#ʌUd&d�X����9� -fr�D=�"z��QzM�X31h�C��l�8�_��UmK�y!�$?�:Cܩ(rgz.�p�̐43�23�WQF8�[�;#z��ؘ���Y/�iq�O�E���n��\.6b͔���/�0�'`Wkf�*!94oc���Ө3��3�3vǙ�&Ϭ�Q�6	>�����W��>���R��K�b������`��n�*o}s0���Ԍ��7�f��iȍd�FC���I�K�9�+�pYSO�&[�M��Y3�r�W���(�E�����煟���ׇph1�4
GX�[�����k�sj|#�n6M']š�؎=c�ӡ��/H���S�R��o
=!wF�Ҿ�&�����-�4ӣ/z��tu��K�q��~�1^y�	�T-frd�qz��ƪ��1�d�R���$Ԉ�x��կ�ɡ�bI#:�<�7��h4n������dL����rg�eM��3��5$�������g�(c�W}d�C�<��g�D&D@�!�H3�7���f��}D��/�Ё$SS����ӏ�+�F�:N*Ќ+nr�՞C���;�U��u���4����U�E5eƚ/3x��2�����Gτ����g��*�!҈pLUm��^3(ָ��^�^W�H7��>�T<�������d��Ẍ́�M}���3s�Ό)k�[I�wv^[�cVԛĸCF�2�;V�c��B��2*'^4�"���'@]�����5����v3h�rhoރW*ͬ�A���w�U��>3���^�4��Z�4`4�L�-�j�2���*2^w{�1a}�x�A��J-fr���rB�֧׸BEC�����$��dW <���
��=��u�2�fo�1�M��3
�,�f q�k@�фî��`ʌ�.�'�X�a�f\”�ڂj&��cB4a�K3�7Ś�JM7��fO�ʠ��4�O�T��%�!��|4�B����hy�Z������i�@c��y�5
:���ٹ즻)3V]��.R��e�o�>����!��u�@�?�rK6�`-�آHK��Uj\	5ݬ[6���dؕƯܩk�h�P��g��Y4��g:��gq�(uF8*�F�3�U"��e�7լ��x\ic��L'Y����r�����LCF�5��k/G��x�N>Ҍ;0�J3��ەVӯԸ�8�A��M3>[��6�f�F��{�F3��I�����+�X�2�>3�:��[�MgleM��3�ɚ�ޕ'֕f�w�#Y��W�2
�1�Rf�ƥ��n��	�\�Z7�s����jZMO~�a�-�&Z6�pݛJc
�-M7�>$��Y��7N!�n6,��VjY��g�
�̕�4��v����uhr4K��������P���G�q=|��[��yH���'D�
����`(�yg�o�ªԸd5���4�j#���/��K��]���j�p3�@ӑ8�A�]�DF���T���lϝ�(k�3��9���*�d͌�e\U�F�(�}�v.��u���@��B5�p�#"�l\�tʠ������dӸJIlO�T���N�
�~�Gc5��L�9W��ՙ�v��3?`�S�d��X���L�2��2���ׅ�c�ȇ��+�eƆH���_��P�(좄2vC��{�ɦ�$@Pwx�ɳ9�F��%l77���(�o�]�̸��u�X|=M=Y3)3�H��%���H�_��Ӽ�����3��f|EF�.V� �~Q�5��%ʌ�e,��`�]�����M���\�i,ѫ�Z��,�.�������������q:�7S�:���1:��l����O���>�V#��̠9Fk���3#\���3Î3j�OA�_5��9�:���&���#/F��&b����T�G��#D�R��Z�|����4�4c,izk��$��A3�����hFt��h��]����ti�wƦ�$_Yg��k��!iƩ�X量���=��"��p�|#z��^���+5��#�u�LC�$T��:�ܧ�xxO��j4�f�]�fN�f��41q;�}����du��wF8����x�:�r�q�͸�f�G��f��z�W�"F̂2�n��!���7.u��&�
̇�&ش)5���7�˘�וf�x�:�*<�h�h��}��Ã�����3����ߜk{H+�t���Y��8�J3T�fx_֌��O�^�En��*�l_Z�Έ2��=�|�z�j�tx��dc���E�����6v�l�V��kGtL�Tŕ�t�h�Ւ���4��ܛ�~4�Y
�Ћ��,D��N4ϖA3P��N�1����3!}f\e��w��t��8Ө3]����qwh���YT��}"zd@�(�3��A����_��YBEGN�5��mC�[��Ө/]���%�X?�b0-��*_��$Ĕ1)J�>g�sd}��)�񝛬=���B�5�S��Vg,eMZ�#�L�!�d[��e�P�
��2cɗ1rg�So�C�g�-�t���d�Tx��vy�5}i5zNM�Ww#ٸ�i�C�i�<YSi�&�B/wR�<��-�$��Seں{�S�nG�浙S�m����2v�ֶ7
���]Qf���LLJ��ҷ��u��'�ؤ��X53B���3B]s�kGv�1D�.f�tJ��y�A��Q���1!՜b
q�@��žc��tC{�,1d-n�O:�
D�M�r�n�֥�(qj�zC��6?�k�-l�#F��fr��:�@�3O	��36�f�:cY���§vuƮ��L�pO�&�	�rpC�!z^���&���
13�2]��8�ka���5s��?�7X��jN������9/�]�ƖP�
Tm�4���4m;Kn�F����-�E�h(�j4��k4�$C�i~
�f���w��3�ף��l�D�M����TF���VuF͠�q��~�f�L�B�S�$ts_��8�26˴�I�i%DO��\5�ެ�6�WF�}n�mUm&�L��R�-}��3��'�E�l	��T�eW�Ծ0n�hH�3��N�K��M���e���'��^S;|�7�fo�����Y��Qƙ;3��/4K�&�hFy!��+��L[�d��h�v�d���"�d���i��0f\s�=9���H�����F:����7�5��p�F�5}jl5C2M_*�E�q�;5A���c/z�<4�S�a�^Z֌��):E��J��ۘ�SgL��P)l�3͋�+0�v��1�Q˚,y\����4yI3��zp�:�.E�"Ǹ���O�+b
�Ũ2)8�O�%�^3A��i'�F�2Mœ�JӼ�;ɌjZ�����������(��43U2���V.�<
=ԕht��W��JI[_��'a�xݔ�Ƣ�R�Z�d�i��>�4�� ��U�1Z2�IuL�VK�vE�*�(}���w׀�.fM&#�g�E�iC]1{;��n�AG�q�5c3k���썟T��fICL�a56���N�%�[����z����t��M����h7;��%N����l�4����m�8u���L���k:c4��$Ψ���hh�B8��]��z�4yb�.cQd��P�,�o�w��`���l�]��L���M�i���Z2��=���kB��Lc}��!�T�9�ہ[UO�եш�Fy�%iŚ�n��(c$Ѱg[n=�w�W+Mꪝ�����3;��lۤ�3��C�}g���3\_d��p$ΐ��&bf	b�rT֌.�
#��ޝ���u�%)��K�r��qܪ�I3�ϴG(�
o:�^���j��uԙ�h�?4��jk`b��6��j�����ԑ2�x�
=�V�T�<�n�ތ�.�=����V���M���3h�u�(n��+�Z�D��1���/\l�:c4l�7��#[j��R7k��L�Q�Y[�d���\����̚!�/|�;��px%������&z��dc��]�Lz�l=��6���'��1��K��<
Z�]���h�d��J��%�6�.t2�}7��i�7�Ж��uf�����:�:�t�Z��X��5R��F��(�J5��*�����K&Zʹ�(��J��Zfuٴ+�B��ؒ����a=��C6��&F�88fk?#�����kl�;
ZҨ��<<�M������R�tp���J�zMx~�sX��k% {qS�{-f�Y]W`�:3d:c�=��j�:+��+��V���P�F�)2�hS��$�)k}f	F@����z&����n�A,z����b#����A�#���A���KR�1Z;�5S>�7u2��Y;:����$��	4bR��"p�WP��ӝ�^}�*7ݦ��&�h��^���pw�n����I?1^�1�1	#O�*�Vbl�d��F��F3:�}���e�O���g��+�P�+t�}1��������O	TG�4f�x��;��4D�T
��M�Q�g]@�.Ǧap��J�Y�D�T<����y��!����3t̗$q����ۧ�gi��–J��T��i�hDG�����h�4#Lj-t2rg|���F8�$T�fgq=;�TX������H��?�fI�+Mk�*D�I���IU7�r=��h
���(u!��Z����Dfr�`g{���H���>3���(�F�x����L��کK�j4bo@czC�1+���G���sc:-���a���V�	�ů���F:p����#�~2Q<��"z�K7�F�hĀF#L�FRG�цf8Қ}�����)A��M8m�_L]���큭6�w�]��g�hM3�{��o�D�}�z�S�0�X�X�h,���h�$�N�JW���u���4��vzTU�R�h&�(jER�؅3����IX�h�ј_���ttj뭤�8Qr���W+��k����[�YR�'��3X|ʝ:~4�ߏ�
͉��a01G��8���1�h�"�W���|��&B��%�4�1x3�nd�T3�e�F3��c��!D?�1��F��s�岢�4��y4�Ï�cҸ���OEXi��~�F诵r�a���v�y4FS'e���b(5�
u��V�>\�xV�f�s�g���>{`�x�KF�RU2X�*%�4�V&��hT�`B�M�:#��`v�&F�m��I��"�O��I4'hԆM�:�Z�4z��M�!�s��u���`b��4O�9l�<���N|�k-�0](Qo+f4�4�v�V{o[zk+��.+g�A�k��+������4��:����5]DK����k4f��nS'W��v*�bI�h4�B'Չf�4a�t\�FT�]R�?v��i�H��W`��_/��G�1�*��7h��X����4uR��vt2-iTJ�B�D#,Z�O�HS�4�@S�<����r���M�<��	5�QطmR�R՘F��!j�'�Ag�h����j4�!ՎND��0=h�X��o��;=_��[�q)2�ݵ��:�ڱe�k�4B)��(,�k4DM~�a0m����DS)�oV��~�������4�f��V���l���f֜#��7ƺfM�0�U���E�0V�Q�!�J��`�^��j-]�������N��G��5c�;���X���Ϻ�hA�ۯZ�xR\i�� Ō��w�FC�j����D�cFCl��}����(�N4�l�DlUP��9I͐�m|�e�kB�B˹�AG[�zT+eA{��f�}��r����Qg�
�k�r����d�]�����Z�إ�����m�m��o��y�����[��F�i��&'�V��Ӂ۩�T��ƦѐZ�!J�mkG��[0�z�$'E�p��)+�L�h�H��f�z�ww�9d���S�Ѕک�,wrh4�x��(��6�m�-t"������%4e�l��mvX�؏�H���J3���gkU�Ӻk�8V�ߖ8����MT�`�Ʒ�I���Z�5�P�n��4b��4z
�z��5
݉F�ij���sg���12��.��z��q����z��/t�ꃄ�Hi�F���}�aP�0Xۃ�2�Љ3�FI:�\�
'e�E��/�Lh�q�y�����o0�gp<��r�)t��
5�4;��)5�~4��N�B'�7����I5L5�.MBSjҌc�'�|4��#���Q5�H�����CQ7Ԅ��ֻ���R#Hc�kh4�P^8�;64��!�R�0Zn��Wՙ��I-�j�B��� UNga,�σ��4�������%���5W�q��L��S�Ω�ܩo2No���>I#s
4SꞺ�V�Wy����(�=�����D�ܩG��+5��CQ4�A3b�뛈��I)�i݂IS褴�2����O�/�:2%��G��p���
���Q�3���h���HQk4)�h��w���]k'=�f�0X4��lԙ�u���^Q[n�U9�r�v7R�:E����%N�^����͚��y.�!��{09�o�X�T�܉�;p�y4�Z'��PS'j�Rd���I4��r���f��k4N�`B���	�z��\%��4"E�J#�,i�]��N�CM�Z�����ר��ʆ�
!J*�.wFX�g��92�h��	����#�%,{��`L̮�+�TC����h�!�x4ujD�طUgȾ�II�ٹ3U�Q9�?;Z��<�t
�j�J�	���b�r>��q�6>'�'Ј�+��汻����*9ׅ�Rӳ�ھK�.O㦥VԨ�l�Ij^'5br��j-۔�H'��}�1T������:KE��T�TԲH���3$�3A�>�i�
�J6V�FϦ�:�^4�%K�D�z@�x$�0%V�S�q_]kU�.t�AK���RF����T'h�i�<�~a����u}zܮYj��ec�I��vX��n����\��I�1cWI1v������o9)�К,
�M�Q�p��rAn3�H␱똚!��#�L3A6,�J�8 ��[���Y��=
���*f1��i�M���*N�ٸN(�]�m��r�%�7�z�g��l��/��(��,-�=�D����P^��EP�4�d�M�$%�)���%�D9�A��1�;��*�1���u,���n,����q�9颼.�OY&ă��(T��<�EH�(X��Ņ��|�~�iJ�"�.r�](E��K��e����"J��B���hw�HɈ|�0*/V���"�������O��W2��7	�=w�U�`��x��°<x W�EU��!��&��e��$��ND�Ԛ��%K���˨e�-X�Y�$�]�RgӘ'�K���t��1�!Ј�4�*x��ck�D�z.}/��gi�P��6T�-�2�,c{N�e��nlD�e��e��Ͳ��HZ��{�&	�rDŽ�e��h�7�����<B�� j��DFȁ��)ְ��)G������O�UwY��(6�|-�]H�H0F�k�o�)�)�w�x!��~�>q��ɚȁ�1�5
GdYZ�[�����!�����ݞ.�!qHHIj�͟��S!O�������p�b)����`[i�~��ho�zJ�ݗQtQ���P^ڑ�
QN�6�9���D�D^��Z��qM��ό���QM�'矄ڀN�f�%�Y����qD[��刿�t-�
"J/,��^��&,�.�e�enaQ�4�����
�&QE,HX�$�Rg�OE�A��ߤ�xr��*]-�rz�E9[��rV��5��{����QW�
�δ�+]��M]�oJ���j
5j���Ģu�6�T��vgw�b��q���I�
���k*Bj��n_q�	����CD����}���E��@�s���>�5���`����Nf"�A�w���q�.aL�ٮ�7��M�y��s�K*�BT4��n�V�2d���X��m�D�yJ��+�.��{-AT�I���woV�q��2^��5�֏�����w�]-i9�P�AQ��Y�˗����uqGQ9�U@(�$]�]̊�î��Ы�Ʉ �[�ˬ��/�>��sA���u�K�e@#j�C��v���;���&a\�N��I)z�L�-�oV�ʡ1�'�ȩO�><|��c#���Ini��� ~{�]F�W�wq��T^�<����5�����@T:D5�y@WQt�Ŀ��"�_K�(G�Ͳ?ߧ�?��.2Ax�'����2]F�e��2y����[�������gA�r�*���aa�Y'�u\-��/.�Ik�@y�y����
�$��ET��mܙ�b���u��Gk~�LhD�苢�������9}�b��A�D�]�VE�=�e�os9�;�����3���շo؇D������)+~�diA�kA�s\%��E�,� $1����B����U�FX4[�F4�G�4Ds��hE�F��$�$���پĩ���� �q�T�q��(�
�
>H�9(Y�=.a�g�?F;��,y:i<���'PQz'�p��2nMe�Oq��-
V���(a2C�(�O��_6�/Y�r*h�Ro�V��6ݦ���:� �}g�oQ.mE�!�+�2��"/d�ˏ�e%a�
��~^�U�*��Z]}*e��k��eG������3��x��B�KFD�m�����vNIAIGK�n�+ψB��aC3No�p�ˁ<J+��`�*b7[U�TFD��w��4�p)�`�M����"�.]�����S^���o�u�IY�S?x�o6�<��R���(�3N�o��V-���<K9��)'[!~XE!U��j�){����\��)�u&M�gY��9gq��EH��z���&Su���������U���z���ϋ-',^\Sq��^l)ύ�Ns���7����Qߍ�x��X�����&T
L��W��*
I�o����Tlʕ��J�PV�Ӕ����:�����Q+�j�{]��Ѵ�2Z���t�ԭ�l��$M)�$��sa4[kͮ�UGh�Z��4���v��]�t��^�hr�%��r�#u^]���+����(Ch�.��M.����1+��N|���|X��jH�=򬌼~,�W�sN��b�]E1��%e�^�1��z��ɭ`o�v'���g�F,�Q�~�~HBus���:����!�W��&$a9:��y|Y1�PYʭh ������r���[^�t�u����Ȥ�pEźȋ�<r��d�X���!q'���2���<K�\���>_3��˅�E8��*�Lxx�D�]�7噕��y��>m��n���"��2������+��f�����"8�6�o����u!~x�� ��$xQl���O���a��*�I����JJ�~�_?��m��b��E�h���fʕ����2n�J��r_����F�]'��"IڔX	��D�J���3�"�/z�>��R)�6�~H��@��w��u�ʙ��d�)�n����ū����Ђ��<
qW%}���|W��QQ��䩟��"�H�doBU�L9���(��Y�83T��H� J��V��8����5��F�Y�DT��ډFSu��1}s4��GM��az�C�gzu=t�>Z+jS��a�JQ��bq��؋��a��<��,��sqR����~�����<H�_$�N����"h��x!���ۧǔ���fS�5���$ob��<P(	��"��2jd�o�}(6_�2���~���(�6��I��%��:�M�\���w��M:
��7EB��R�īD�0�VI��u�Ey��,�)�N�ϩ�9�ᮤ���T�۲ ����(����Q��d?o8��n�6KA��ݡʣ[.Vo��۸6�bYD�$�OiZd�K�YȖ��>n6��}Ia�x}!u�K�$���ŷIp��t��f���o�ћ(�n���7��M����I.t�������O�v͋��s�x��IX<���r�=�7i����������$��2I�KpY��q,�������m.R����E�2�j�d�G��ܦ��SA./Va�ӻ�*hK�)�~�s1�p���)�UH�K�!�FC���Q
��5#ƞD�&�4�1J�mk
�'�衢z�^!HI��d�;�Pj��]���@;ak}�����E+��v�&��0Js�/P��I�(6�x�I&X̂�8��"Tk�D�‹8(C��&��Y��jC�I-
�,��Y
���Xʸ��!e��)/@�0X1zE�8��iؤ�:f�<ĽU��n�3�؈9�\�QO�*ըJ�$�h�h�yy�frJ	�͛)�X�>�HH�ey�J��u�K9�����r�o��"b�`o<\]�P��r�7a�f�� �yQ5eR��<QW*ھBD�*ʯ�"���J���p&�b�'ϊ,��ݖ3�WI�&
�!
�i�U�~Q���H��Z6%��V���d��Q��Ivb�.�L��r��O(����%��Q�C�i��Z<���65���4�Ͼ�6�2w�(�8�h-������vNuc����*X��첅�P4_�"r^4z��u`����Q�ٙ���2\WL5h�Ibn˸��uR��{V|�yJda�7�R2 �H-ޭ�"�?>f_x�o��6���^��ƔQiUd[Ώ\��槞��<�M��o�}�n�ɇ �. ?gl�??n�c�Y��v�U���Q(�`�,(Pz�4ܦ�H���W>BJYxŨ�"+h����t���o�9d!cBC}5o�,�&�*�����qD���I�,Y�� �a����_��5��x��W<��/�˽
�Oy~�����|D�2��H��p�N�7�-
�0�n��݅,n궴cA@� ���&6�}Yh�����a忀YQ�n)*)�ƥ�C�_8�ض�^`{Ѥ�GS��g0�4b�
���~S�e�ha�����3zyT�m�AӜT[�Dۿ7w���(�*�NZz�G�Lc�V�f�	�I_}S��3�or"XxQ���\6-�	'"ͳ\l�Q����!�\Mfn�IR��"ϷE��|��9�Y�ה�Df��'�DQdY��)�D����0^�!]DoB���0�l�6#��*�F�h�I�|��%�_����D\�"d�9)��ZȆY��"R�lʻ��+8�J6�x�7��K��AD��mĖ���S�)ρ��8~��ێr��\&A����ȥ�����wA��DO��>q�W��b{���iy�*?\�C���Hf-/ë��CDI�]o������O��nj�ș༩��Ԫm��Z'j6Ϧ�&j�mC3��P�/:�0�T�^E�n��+�(�g{��(UN�U�)F�4���q��<hƊ)��xQ�MV�A�5�"�r5��H�^�I!rYBy����=Z����>�Tdq�pd^9���
�3����z�(�I+�,�Ҥ�,hP�$A�`" ��&"v�?�'*;@�]�����Ià<B�69{�<0�s�%b+י,���~Sq�p�l���r�Y��ŚY;V�)OA�ٔ����E�	�\ad����U+�~�)S��ePNI�ڍw��|���e�#,�t!�5�(�T�˘%iy���6+����erA��U@�?����������gp�Ҳ�c{�,c6޶:Q�FH������3�(�V954����{Pg拡�PgP��|��|���.c{W�6��ޓt����w�!E����n��m+�8����0�(�$ߥ����;��<*Mp���6E���-
�^�>l|,�XF�o��}�ēT))9ɤ�y����D�Ȗ>o�:Dh�6^ǜ���)�����$a��wLvG��KJ�e��MzӼH�����U�/�&�ht�E٧��[ٺ�1���uy��:f7���r��|w�=�O��T�4e�<xb�?�H߫�r�)?��ʭ����A�WL�#GO��5R�)9����I�l%���'�.^-B�� ���Y���L�,/����u�wW��ʛ8SuFK���,�*�(v-�Xo�N��n�lz�X
����6�t�n6��h��լ�	q�r�Y�����JͰ@�S]�̺�����PO<���Ԫh��4#*ߔ�4%<�e�C.��x�DN��0XEA���b�j�C�t��f�}*���6����n�I\F,�'�e�� x��?4b,Y�r%�!EQ�����Y��$2K�$�qv'���|+D!�"���&cF�r!�<ئ_�$&RdOiq��L&�$ZP���nr��������yS�L��0|��+��,�?x�&m�Z�
�`7x��
�;�ebq^,�0��h�-ʙ,��eB�,���/� @
g�����6UbLa���R��ԉ�-ZG���C[���T���~�vN1G4�^-���P��˩�6��I��ӑn�	4g'm��#���n^�͆�R��U��?����:f\��(��Ur�o"��N�v�v�Ձ�r����S򷯻.b��\��a�/o�?\F1�d�ӈ4Uu�:�ާ�/<�Vv
�*����@��b!ˊb�IĊʆDjs ��(�'*շWA�$��7W��]�<�=-��Ho����S*iBV��ћ$�/�VW���V�E�Y�+����h�������B��PS��1;r���Y1�`bU�:��h���	��7����i��?�)+R�����6�Y$��&y#���Ѱ�ϵV�d4<2�:���A��NT5VzH�$Ѵ휴��o��O�0��^2z9	�����V�*5�"�C��_��٣�3��{%��A�J"�F��b���ۅ�B��F��m��X 8ˊ��B6f�^6Qp��\
,�08��?K�HB�.��4��(����e�$��zb�)��TQ��e���ّg$E!8�ߔA8O����qKn�w%I�j���O�}|,�8�^����_^��b�����<z��c�Pd���zs���_��U�2�/''��h �Q��·I���l��
�$`�\|�w���?n��O���'�.x�Vː,�JS�?M"��l�}��3_T���!�&i�e�J�����K&x���䞓��ˈ]$�"hn�J����,�6�W�EO.K‚e@S�?	��vͯ�刎voT�+��A(~��7�u�����6˾��&��� ���v�54Nw~4�Ҋ9Fd�ѸC�j�Uq�`�@u��Ӣ[��͕�N�8/�ئ!�c���N�)��D�V;UO�n�g��P	��Ǫ6���*��A�n&�^Y��06�$�'��|�	g��Υ��מ���$�F�dHc��ᥬ�n�]�G3õ��t�-l)9��H�/X��k�@S�MQl˯`�zZ� տ�J�+o�ǜKo�{d%B� X��e�8�yt��v/K��,�/����o��	BcQT^��ʅ�U\Fѻr��L	Q�V�cfEo䛘���7�:/�i���s���4h�W�6ϤFRu首��\�Oe��+��3*-��F����k��8��>�{��:�w�����y{���5�)��M9�L䋞��<Ȗ�L:�"]�bE�-/�F�T�X��Ŷ��bˣ����%�
!���)BQz[n�N
qxА�
�f�K�^N�Lӭ�Pe��4�ќ!�S�ٟ�z(A93��VJ�7o���d��P�-饌S/�wOy���6�����ur˖�����~+;R����H��х����M��y�_�q�Z�]9�t�]�A�I��t-��eH��r��<���Y��iu��R9�W���,˿������_S�7����a����<n�"��uh�?�eLF��?��d�������)H
\}Z�-w���U�]��S�K3$숐Q��^&E�Oy�M����K�&(g�<cd���hv�m��(���\�qlQ����߷��\�s����M�K��[G*x������s*r^_,ބ�?h���G��n�����Ѱ�ED���x����(H���t�f�I�/��6?=<�]�
܄�+����װ��V�/㵀ʹ�(�l�D��
/	�
�͏.F����h��]1���ѐ֌Fq�::�I4dL��������(�3|r�R�,EIf'Uuj_;�6uc��,q:0��߀����Lw���h �B�:.�\�Y �Oy�����<����
y��<�l~zLr�P/
�[�e��t�Z�l�̂^�A�����e@�E���?�o��:��g�I�>��]�=a��7qX�;.x^[��ԒP@E���4�D������e�d̴�7�lr�.�<��]NVTV!9�%I$y��}�CJ~�$i,��]TR$�`FKi0v���DvYdw�-�ѧU|���Y� �7Q�W)����兢�J�IU^�"���ާ�nj�$���݂^�U����T)�pT�W�c���ۏO��TA���Wqy�;���	R^��<���}��"X���sQ��k��GDAx�D��{���"*�f�n�xئ�cwI�I��F.Mu��\�)�+�l�2�?����rAr-�[���x��Y~�I*5Z6b��?��+5Lu�m`fШ�E[��+�ږ��r{��>)��֩[���n7T���.�tz9k:�S�m��=�9�Y�O�W8~��c(�\�a�C��J�����m�g�ú��|�H�=&��3ϋ,{zx��c�X�4NVq��2\�$aӮ�즔pv�/Y�)�#i#��	Yؔe_�/����P:���tN��2��L&��M�L��n��Mz+� �_%����̼AҜ
�M�u^A�5', ��,��E ��t�-����OE��o�b�k�-��S@)�H�ˬ����͆���MB�wB��dA����u�.��ʋ,�&bq=�<+�㏷�'��r�h��7�,�2��F�r�����r&�
P�-�����c�)�2�/�跫p�m�+�)߆)��,��D�\?Q�,�Jy��u�?dM�e|X�R������&�s�5����ArCW![�:���c���I-d2��N���W��٬���E��Q��z~�k���Z���fʉ1�
��(5M�>
�6uj{3թ6FG'B�I4Z�mB�n�h�cFt���`�L���I����6��(xj~=a�L�kL1�-�2j�,��C��Ѓ��{F�r��*��m�SV�Yz���m��D���y�D1����*~�	SV�46!Y
�A��S�\-�?<��s������g*v�QZ�Ț�o�e��*ҭx����OE�>�������du���k~�$�(���ТsR-.#�=��ٺ�?ݧ�}�)$��4�P]k��r��*Ki��闇�4�.�>foBW�(��~T	
��]��˽r*�l	ռ'�xW����<��߾<��E�o� ���wW����]�,�"+��1�tw���$���G��������e��>��J�Җ9��_�O�$L>���󺰈�0�I�?ܬ.��*h*�ʯ�`�᪸�����Ȟ��Tz���X���ξ�\|�f$��Y.� ��
yʊ�>�-`V��O���CV��  ��D�y�R^-���:X)��6�)������T$��!m��E9�8�XD�-���M�#�V�|�m�d���(��:��bK����VeAhf4ڶ|/д�Vz/��^�UN���4���ɪ��}4mPHm*��S{�2*��!���	��u�y"�~[l9̤�PTgH���J�~b7IP���C�{P�7����q���2��#�+)�曌l�>c��$`�0,��:.jTUk�hX���Ho��CƤ�SeD�<��%��� f�*�QF2A��RǨʤ�B��"F�Q��,�r�KF?I�a�.�jc���ɎZ�A��R�7Ք2�������8�`i�m�o�k/yS�a"-�C�ݧE9���o9�d�(:��r��M�TV8mV�\5RR	��y^�TJK��$���2��a���MT�0�m���QT�;o#~'K����<ٹ�z�%�Ip���SM�*���n6"٦����O!��"��\�ƒ�ˈU���'&�xH�uV���V�tL�V�HI�H��$\NL
��:5�RcF�o�v�63bv���RC0v1���V��h���4�n@���i��^oJ֎��ͣ�M�T��-������L���+�by�VH��"��=�F�׿-�����Zڵ~��Y�����(|�HB��:K1H��[�����ҫIr%&\]�1��y����փ*	�2�.��2��6:�F&�+Js^;_z�^��q�V��<�l�Njd�/Q�$qx��Tfiqu�������m\D�DS�r���BIny�غ<��I'_km W���D�My46dq�����8�!�ۈ�raI��?�}N�
���qˋ8��1[�}���æ?nŽ�^!uS���I�����(4$F�X\\^��'a�}_v�
����*��8�R�V�R�?��ݖ��{!�%�Vͤ"®��E|'g�s���vq}���"��v��5��o-V	��a��"4��W�Sx}��b���M�"ͳ�>��\�EG��Ll�N
,�-���&��Z�1cH��,�pC�h�T�f4{u�PC�B'��#Q=E�I�iK�����2N'�����]ؔ�� �b�˩9[']�����p1'�JPGI9�:����A������We$|E�U"���+�D���*f�Y]R4!I�q�)C�t�_�ae�7��͚;�V� e��U�@�Yѥ���^�ADbBÐ��*�$ʡ�e߳�0���X�.�d�eQ�\E⏱l8Y"�0�
̃�Ʋy�`Gp\����E�і���ZI�\�~W�B漰37�4���\,xy�����}tȑD�Ey���A��m_~����l齿��� ������#�۷�"Aߝ/s��8�`<��e���6D�"c`�����b���v�rI2���x]����p���5��%�k]����F� �J�R!Ž��")Z�E&�B��\���vAb�����֝B��6�&�t�O��+�e�*'��wW�Q�e��vqr�?�(�̵�M�t@
��5>�z�P{�c�f�
ݫ�p�DS�4 �3��V;�$�}��/�F��+�vY'�X�:YP݂]�莼��@5�Dz�!Y����i6������*4�[�ңʬ�"6q�t�����?v��x��؎�5�'�h�p�����/��=\jaC���ut��Z;�4��8���v��\�đ�Z��ͦ�I��b$�X�	�(adݘ���P�$Ĭr��ضY�@���Sӆ�4�v��qւx݉F��I[�#Z;^��W2���|��:�f���J�m"��}�~.z��pz�WO�u�g?$&�;�]Mxh�hjѡΠQ�h�҆�-��DC�����.L�ipc�I�߆�wd�'����&D�a/��O�R����(�R��~�l�N���/tM�S�I��*V���.u���@-���wV�V�t	�Ŋ)P��'�o.3�����o΍�\�4��(ͪ5�\�FG�f�&�obyQ��+��v{m�j��߶UsP��n�#�#U��h��x���T��-��}��ݠ�˹ޝ���ht��N��4���uj�j��$��i��%�4�����R�dX�鐽j��;�/:64�k�L38���ܙ�DQ~�����b��N��@�p�о*j~��66g�Z'�/t���T�ͭ�^m��:)ݞiFOCQ���i�c�r��M��Z�a@C��%NyB��c�U�y����@���xQ9U5�}$�:�N�j�S[�^UG�J���Q����sa|�ȻQ�m�y4m[�N�H�

��V!<�u�|d��;hP���>�DW[�a���4u�S��^�D-r�0-��ZK����B�a��ݺ�o4G��ѨSo�iC�=/���e�;oQ�1�i��}5Qm+�_���r��9�}�S�-Ӗ8�HIq�ѝhT��փ�ya�y�lh�fIc�����ׁ��J]�By�,���1�Yf�L���N��!���y�E麽�k����Iж�"���wg�6h��4��;�Ug�C��K��5�c����֧�R����Fx��5;��3��Iٗ5
������M������IWUE;M@m�-�X��$�N)���C�^�KS'b1�9�'�kcWx��8t�0[<Ow?+!D��9�^N���I�\<���N�����RNz�hT��a�&�C0��Ř�v$�ty�]���v�i��i��+XRD�&ߵs2J�������!��P��6�fKE��Z��'�J��D��'>�1�d��)b�ޝ�&j��"����^@iSi\����A�m�D4}do@���v;4�,5ץS����D���^�^��1�xI]�����(2��C�Z�ؗ8U������Ҵs�E���G�ꃢ��p�C���54�_cK�O0�:��B�7��C�V��r�Wo���I���¡�u�8~�O�ꣽ
�}mK��Iu��ݳWh�(�
��"�}�;���ũ'��3q��o��65�����x�x;	`�>o�`'�N^̮ʩ�i��H���ע�b���,1��2��If'�UX�B']6�~���%�n���s\<JLlq�0��g ��GR�d��-q2�9�UN����w��-��64�<�2��	�a��2w��0�����z�]�FJ.�WW����-��d�
5vda��i���ܶ�"��#1�7�J�Xʐ<Ri�S��)9k3
4�����	��;	X�'�)Zٻ��
����޽�;D���bz|�E��
���ڳU���~�6$j�>v;�o������q�GE��Hb_�D���M�ٻڨ����B'���<�E1�O�b+�9��c�c-tr��;��9K�<�h(N��p\D����\�B��A�%Rʮ]���;E��l�<5w��ܚ�btt�Os��2<h����~�8~�^��9��#y�߶fL�r'*�&2Ja�0ԙ���P�{:u�[�m�v5H�Jh��_w�<�@��D3����l�v�5�����l�d���ꌑ��[+��t��7�&���+:���ٌ�=d�4X?���Ey̗��ipF{�
�`�8�V��>��d:ay]��ufD�D-��h~tG��vP��Kձ:ѐ^�a(�d��#��Ě�������$G�6�j�B�	v�4b���4y1��f�F0�:�]C�P�N4��3��W�P�=�.NbT
��X8a\oj��N]W��?I��J�0S@D��Ɍ���'���Oj�Pwp�h�M�M�mv�/�����\(3{��&D׬�[T�`�Pb��hw��
v�Gq�,���j�SN& ��þ�,.�{
w��v�N'�F�U���cf\�2�k�v|�*\r7�n�ڟ;cу™��y.6�>)�+L�Z��]��,���T	�C�sc�]:���]UQ��$'�����1�l<h�ʁ�pD܎�+�ڃ�X<hv�t;"�Qw�Dz���c3R��f�oR�=d&�װ�V�C�k�'B���f^�Vg��>��?�q�ݏn��tM�6q��O�'T�8rb��x
A�y&-ݵ���d��V��-v�G���
Ed�Z��%�"�6�ŧ����̡;��d��{�(�g�]�3�3�����L�ͮ�8y�OJn��u�X��r�I3>9%/��i��0Ri�S�S4�e��U��$�&Pg�/v?\�;����Wg�or���hͬ��WMQ�4�<$��
4&ϛp��vN�}�N-�^����m��>8��>��
ևq��W�B��4Zw���64��G�z0���e�c�?���C��D0_�n�QkFGhf7�^R��xY��^�	�6�y��&9�fd
��5�3݆֛�C�!_�{��6���9v�j��d)�l���q7��_���p�h��_�j�T���6�e�H�|>:�Ҧ�v�3���e�����/h�k�|�IS��> ��Kp�'�NJ���$�8��t(�����8�J�-;Ԃ��%�K��p+���>}w$�f|"y?R� Tt��gr�W�v�߶}Aw>�J=����1{ #�:�6?��ؒm�3\�����gb��g�ti_����'Xx�<�N�c?9BT.��g-]��4�ͩc��a5 +
��]��L��=��%O��ư�F�S����r[��:"߉���)�j��/�Tx�kC�v��4�ό��9thA�Bi��p�!dz�u�M��g}�Z@4�Z;����r�~ܶ=w�Pg#��ע8�Q����,Ȳ�{�g�k�o��`f0��@JA��iYKؒ,Z�� ��^�v8�`I�����ҴE)R6� -�	����0k���]��Ϛ�μKխ������������s���~'�;�_���`RF�~3gk�8��.n}����
уz����ql�}8T�l-?�!3�$&<��Mm��9�=��1,�jh�]��c���w웸G��=�Z��1�HZJ�d
�	��%��ڍ�ͯ]����ǖU����
:��5�r�7�@�v88)q�#h��?z���a4�c+m�D�#�|��>k��q4[��(Kr��?Xi{�`�#=\l�FӇ���#n����X�>�*A������C7��ch���3�-�=����$_3�/쑦����4��@k91����wx+����?��cQ��	=q�8~���'Op��pa�K���F?�;G�m~�c���<��!�n6���Ʈ]������B�g,*�3+�猧�?�i���A�&��_{�m�$C��zxH��cn�?��_�Ix���4���j�N��p!���n8$�I	m�>둾PH��C7z��&~�]=�l�Ƭ)���=��Ǧȳm�����N��8�~�3\�z�g����e@أ�ǃ����h��{��b�4�Pm�]� �jo���z�6�6�qjPi�G���~���#��(���gC�'CaF�[v���wm}�#��+���>"�	�=�7i���p�zYۚn��X��Q�a��7�y��/�=J�����G������#tF�`�l�#��9�����3[��l��D
.'9dsj���c��l?�i�x�A�,(����A���_[gz�J����ڷ�:73�A�'^���Lq2	I���92[�9��w���G�}/o��P�eC�v����vɨ�s��ګ'{�k�e4G���7�1�]"k{<�7���:j5h���85�vl�?�����2��7'���x�J��4�f���N�g����a��I[�i<P���8a��:t=�q4�^H��p4�r�f��[/ٔ��f���N#��>3;�Kڥ�?6�ccq��m�[���MH�&Y[B� ��O��l}�w>j��%z�O����8�8����j�b��W�m�D�KX�;�4�[�:�	�յm���k�f=���0����/� ������3��N'f��]�;-�mv�Ō�ٶ���f�{$H���He�f	6G�ͣZv�5c6�c}(M<�r�t�]�dz�
���N�e�ǫ?�9D�e���E����w�B� =���>������Z��ٴ��Vd��Kt���X�f֒ٺ���O�íw��w�Gs�y����e��s{m�q~��ۄ.��k~=H�z�K7�ݘ�1���]Gh,c{�����7%��v�mƫ�n
\;���3��ۿM��'+4��w�ͦ0�M��r0�	��M6lM�Rx����gFW�-ۏ_lv�k��0�^����;�fci������X�d-Lijبp?��!Lm�l���9Q�cFI
��e��HtN^�3�K�W�Pv�י}��7��_�G�6Ohڭ�m6�֣15tc��M��'�����=�&�6��h.�7�"=�7	x�������~�k�����[Θ���8Q
��m�ݸ����}��fS���r�.Yl�9��Ͼ�f���;%��pS]��srǬ��d��`�_-����o�#�
<��6}���3v���g���o���d2;�m��
f�#qprl^c�n.�i��B0�SnF��6�gg6���
�t�՝��:�=3H�������n��	�8�i�6�V�õ3����a18A�?o��n܄n���J�P<x}f�YN�v�
<^f���þ�vo<��{�|��Q�&�
�|��R:L:�(�m�`3���	�'�:��5h!��m�����~c�C�f���^�;0�0�g��t��qPF����Oa���o��Go�Ak�n� MC�Y��s�H�<Qy�k�%���R��l��4ki�g��vz�3�z4��q�D���,��24�_�������ؙ��qmc��7��
�ⱇ͓f?�B�e����撝F��Θ-ud\iL��͐2���ٲv	�Ǵsg{�R��
5H���䦱��/�rڥN��Zԛ/���
�2<��^8����1c����L���/zl�l4�	�8*\.f�bY�+L�/bۥYƆ�l�����_H��g��3�l۷X[;v�B�ۤ?d��6tt�A���9g���ս}�ᇱ�1�n�����7�h��#:��4���	�|Af�d�[+pN�XE{C�z,ZRd]�sm��{�b���#Ð��f����`/A���bv�q�XI�B�ںN��G%� 6��d�����$j�:m0��l;�N$h���:���������X��{B�y'e� ��P�M#���o
���8r�n��]+�N�ZU���5d�[�i�H���pN:Ԡ���o�{~��>A��b��\��l�b��ןډ�#AO������h[/�0x`H����%�h��o2c�0fCW��l2����t�e���k�m����`�wH�n�y��O�B�	x��#��Ķ�$3ݮZ0]�%�-�j������'8�=;<�f�h}m�9��X��촒�lA��`�}�Rڴ&7�ы�.C3+C�qlm��m�,�)�׸�9Ɛ��G�]�K'�&��]~��#'�/'4�$
���W�#G��C֢�bF�(
�®�����z/d�g�E���#J�U�U�m�13���c��ka����[����
�P��
M�(7VQk�R��O?0"
 A�+1�@~ǷG�����@C7��4�|9h�FT86��x�
��8 Ԡ�'d0��l�
<ޅ�D���߈,�M6���Q��@
��a
<��	y�Q���4��
��Ѣ7~��p�:cd�̃�
�	$h������ �0��)N��$fS�]@rF؜�A4*�t�^�Y����>��,ĭ{�����3�X���'f��������jB׿;���K���0��{�Պx��W*�;�+��4
�	FqR`����ucg���fnCM
�A�^�
	x���cz�Xk��J�!��'�6��t�yR�l��R*�T�<F7���8�)�Q�I�9�I��]Zn�$�(�j���ǧR��߽�z-�o��jI?�kn%�5:��t��s)��Tڋ����V.�"�Qœ��]��03c�_���H늘}m��U�61���w˭���<��wI�w��'_�X����5!K׾u�ͯ��m�V��W~��^���wR����_���颴�8����v���_z����7_�!�'��T�����ދ�ݯt�wy����K�+r�����f��4�Q���޶	�����W7�/|�!A���q5�}��\��/�7ں�":O.i�ڍ�w��/��#����\���o�S���T���[)�L��J�c��
��ϕd%B�jn��&S�%����P� y����g�o'-�߭�~�?��^e�̳��fA����{ar�,�����h6��o�)Y�uȮ�~�,p�b��k��
�1��w��&�=��m���=j^��_(��[-Umh3;VM�(�co$���!�&+�j��D�M�֝��&�Bŕ���tID�tT��d2����d|T�A)���\���Z0U�˜(����ǭ�W�ٺ)*�{��ʄ�
��ä����[��S񳭉�g�QYVpd9)1�l��`��B�愄��J)�6�0g&�lk�0���B�����r ��pp�i��I^62���3�9����D�x������.Qj�P��之$mPr�|�rA�zj��QQ��j����e�P� ��w:��逈A3,kd�Ʒ���X� |eF�z�������Ϛ�q)X�ɷ�m+��k/�3��eC���N�v�Av0��p�W�^�@�	�����Y\�_ޏ�w������b�����fR6�+$hN{|(��vG̒1����
ƮnF'Y禙	)���vRB���*\*M�q���,Sz8���Fϯ_��'hܩ3e��vGz`�O��M:X��^c�V���=Ε^��d1���ym4�[i7ѷ){ڧ��e�J����Qy�,+��6MɽЯ{dRخ�E$���Iߓ�T�.r�'�j!n*R��兩*t�2u˘ }B�F����ul�`�_�4'�=2f��N�S|O�\�{_V%����`��N��ݕ8���P�P��K��ǃ�鼻����B��iv��v
(w�^�DF�s�L�©�`G�r�T���,*�>&�l�o�fӦr�n�msd&:qN��Ȼ�~�s�ҋ�X�FZ�G�[�s'm�x@�'U��7:��)Uh^.�dV�x)���7J��L咔��i8j\Vy�rу�3�5��QnCq�~M�4'�]d�х�$���������߁199A�;�d��
���8���e���4�*�$�A�2�0�ʝ�cU�ͻV��4�	�y��U�"�
���8<	��l)������I�+�*S!��T�B��,�v�+Q��\n#į�V�v��Sg+�5�H��{�,1&+�t�≲Q�w��[雷T'��Ԃ/�4Y���nH��қ7�o��F�jڸ.��S�����K��������6V{��=C)c�W��3���Հ��&K���~�����SOW���&Y����;7z�Vj�o������Ꟊ�Z�w��\�(m����<N�����\����O��>=�j7�{�j7�ƽ�nj�o����O�����UH?��YL��k�[=s'��lb�Z��?u�n���8�Ho^{cY�EE�n��_~���عN��_�O�,<�lY�����8����m�2��s|R�[�5n���̾����d�s�S�$�^+�����ݛ��c��)���o~��w�K$z��sW�	E�qo��@�椧f쑍Q�
a���N^(r�,�� �(gv3�ߜ"�ǥId�"iǭ���v��D���Q%ܝ�R*��,�Q-�>X���]���B*Ŝ ���L'8�8#S���^2��8�;魜���9��i(�^6�BF���)��)�D���.{<�%��������Ɯ��G3��c�Q�w��w�?��;S�?{y�>1-��:+���7�u���o�tnh��^�W��j_8�i���n�������2iPy�3�]���'�Vm����	����t���I�ӗ��l�G.��	�����׾��+�W�&rMGB�ŋ�4��f�.܏�w�3OX��r��?��P��y��l��VJ���[W{��f�OZ�jn��d�u��O��/���
�����z�ي��k����!��ה�W/��8S��,�)K?p9]��G|�⿼�������յ��{��~�[�Wڜ���g�.A��w�W�wW?�o�j�P���_�Ɲ����6-�f*���>�7���	�κ�V�ݯ���m�������u[?�FK�M��ыޕ��	�ܐ ,�&�z���B�*{��N�&oZ����{�W�iU�.]<7Y�&A�+J�O�8il#���'�5U��>%��Q���w�gRF�3�J�3��ou{�h�����i˜Օ�j�_u��ɰt~�K��B���Ko,v���/�<B�I��B~�ʕ��j�>W���I�]�����W�������^��պ���Bgi��_O�ņ��&���t��P��VyA�,�������$y�ݏ�-�����˥���W�k�W��o.|�v�/㼨��\�>#M��Օ��*�l���j�����R��ߡ�\���/�t�碋�����x�[7�w�゚݌�Jn�T��P|�lt�V2��vܟ;�|�{��N�zG-�E^�;��lLR|x;���n-�s�����~��fփ��E���/�v^��n�r~6�ۓ�/�V������l^|;��ދ�������|�r��?�
aƓ?~6�	�)�2�F��6=��,H��cÄ4�������
���}���f�~!y?�j|�%�Z=L��Vq�	�҈�M�MڟL�1�q*�
�����ƍӱ;��<#���C��ܐA����V"�`'�m#��gy���ɨR	��R�
��~5��,q��.r�╫$�٘'l��0`�"w��H���Ҹ��xnã��f�pel�TY^�(�J	�0&�dK�v���6sC	�p��y�)W���`�A��Y�n9��jT�ep�}f����:s�4'\��E��b�S��+۵ɵ���qs�d�n��;�\�2�Xӊ�V�H�*�KL�սvޭs�Q�-�V��M�J~��:#�w�,�e��Lh=��vO5�T3Q����w}W�*��4��m�	~hn�lM�X�&˲$�~(�>��F=�uI��gOEӂ����|�l+�׭|��}y9��QJ��P�H�{��}�.צ*/�-?+M��VI,�#��{Q�+�Jz�&�z�.N��+���&��p�g������=�̼gNW��
����ѹ^��QM��L���ܾӽ�̯g�<5���q�Ddc\Q�m�^o1I�iv���nS],󇪶�5)�nJ_>�z�sE�t�NO}����$��46�*���ɧ�b �\Ҍ0-�K��5o���^���	�ڐ�Q�����:qn>\��D`*e��A���$��uu�ͲK�PN�lū~��
r8���ˊ�ؔ+R𧽢�=5������П����L/-�����^�JP�؆V��T��W�B�{Ԅy���D('C�����י)��Js%&d��̙j�|��5��~�o���Fiw5Iҕծ
n�-JQ�Ujg��/�z`�F�5�Xp�zw!����`�̅���u�+���J��qf��0����%���"y����Y��IP�A�̤��tL��*����e�"M��VZ�
�Z1ɥT&f�˾'µ�O�Py�p)��iy期Y����kg�β�4ˮ.&�����`��1���v��敋~�����r�_�@�m�J��{w�'�f6(�v�F��!�'ʟ<?'�����n}��[j���JE겷xs����uX:S�_��ضBr��:��br��6�}��Η���7��^��	#�
�5����蕧���i����'��.��o��IN�-.�^]&��k��B��L���ť�鵙�����uIJ��T�UV�_:E>(V��t~�AI�+O�ħ����:�3�[���_%K��ڙ���>��	2'7?�^���W�{T���r6���S��~�������?Z]}w������^	f��8��������M��g���������7��7�嶸6����J��?=����ߙ_�����M�ȧ�y�|�4*��fX	+h4p�
��+�����N��ݩܗ*���<d���ig7�9!��܁�F�����-M.�dd�(y�'�|���qe�����!0�{�~TL%|.�兾�5��a{<�ʝ�m䙚_��b;3EN��ո�+�;i��i`�#�mQ��z�{�4x?`�fS�Y�7����Zů�b�[��,gI|�r�L���*m����V�s�'f�ƭ�]䩢�[�Ř"�1+��%����"^�_mt����:)C�}�Ίn�^����gOG�D•�Lz�;�K�8QZ�e�hzIw����]��ԛ�JrvZS�|BM�6q���r/.V�)����Rm{K�˭֬���)������i��xO��(MW�$���*/Nz%o.,Tj��I|Y*�L���n�6:/V�Z�+y�׆��	��4�4ǡ1��0�-���v���w��V�\��*�3�cu᫗/��i��;K&(��og��������/R��E|��+��<�Js�g�ƾ�Q寽x�bI�y�[��B����?���ͅ�z�K��Hib��j�^]d/*��;��{���\�9_�/FғDW��^�4VuWV��g^~��3�/M��������_���4���ӕ�ԏG��kϔ��Y��yg7��[}�\[>xԢ^���O^_=7sI)gK�&�ӎ�t��!�"�#�C�b 
}40:�0Ƅ(\��+�,��D�%�������B�	��m�SS��h��/B�S}:4�=&���
���͉0��w�v�F�؟K�v�j����!���J�wʞ���m:˛i��T��=��Pmrm�y��Ls���6ؓV��3�u�/����(e\�`�kJ=�i��4I{i��I�:m�a��=2"�����:�\J*8��i���%�X�@2���(U�i�m�i�^q��n�Z�^�������(���$���:PzثҺHS�}�n�*�p�=3J����t3e\57O��0��P�T�)���,�s7s��K#̍�di�'�
��6��ɬ*K�4)�T�vG.t<��Q��P���W�emnt�$O�D��ժ��S����p&���U����b����~���m�*��)�;��D�ʢ���I��|�����$�4��B��"��6�4&Cq�B�Ơ7��H7ϓ�
&Ax*L/��J__ꮸPm��W�E��W؈����{L<;Q������vmM\t3�}8QF��2��oiÖ_���DD�(�z����F�?�G�s����-�F�h��Ȑ�"iaV>��1H�~b��PCyT�G��V�~��n��%�&Ɍg�9fKP����Z�\]NJ.��QE�'��w����l�g��vR��yO>���-X�M�g>�)K:I��3�5c}7�I9�⥺��v�/�m#�Z+��!�2kt���d�JʗυAK�sT�f����i�3ը��S�Qثym�[Di�L`�0��=�X��m��X0si�r�}��.H�޽��wW﮶� ��M�QX���m6������~��t�{��jho%��7ow��dpa�������U�V�{�~���η.M�'��w�q�����K�򩚔D�z+�\�e5��PW���`�6W���[��Vd]x��T(ܼ'��Y��x��;����}�J��`�s�e��$Y�6��\�O>#DXeL��K*.��$�4�+�)��X�*�4:ݦz��R%@UyؾC�=��г�%�4�9/�-�z�y���.���0���R�$�
��S��^��S���|����f33�R�|f�^ݵR�w��d���v�po�;�����Dx����K/����).�sFܫ���M����]ũIC�{��L�>����w��W��;�_���߾)%�'&���g���ӯ���@}S�Mj�2%�T��%��l��P�P�)ټ(�D Ux���6_��T�����n�&���ʍ�x`Ơ�r�+��
	8	a�է�⳦"�Pݼ�l��9�Z2�?!iA�B��)����/��?���b���uX$y�l/�0����k���۞�d��ҝץ���:'��ҹ��Bg���=0�X�\+�t�H�Ha�h�B����\��7s��nYXjܼ�ܕ�Q��P�
����N���6���P��9����#7����<.r�e<��X3�j��"�14WEA�<S*�Z�,5yj;����'� ��V�
���b�m4.b��T*}�%��$����(�����i�ʳ!V���fLQ�~�Kߕg����A[��]�yn��'��*
�˱�/�9Ez`��:��q/_]�w
�0�[�C��Y�XEN�Ecn��u�g2�����<�W*�i��%�w�2�ڎ��
��|�gli�61��R���u��kH����J�^��/�q~>�Z��ƚot�k+�w�._�*�=��3n2�s�w�n⦱����7�m<�)%��}�mp{e�H�]���
��}�����;�=?��"n�7[Y'����M�Jy��,�ӥ�J
�J�^a:�,���C������Z��3���I`��g�t�����Sը��~ea7)j�$լ펲�IT7U���4#��Z�`�	�I��]�#���j�L��#il��dY�\i�{���۝$��,��v�2����8w�ѹq�\p�II��=����v:�F/!����/�>�pMobT�e����0ai�WZ*VRT��NV�o휰�ׂ��D�i�
���.��v7�х�Rt����G��^]�;���F'�]J׽0������D��y��aev�k��4mvҊ�I�M�.z�N��eQ��F!��j��֛c?�'��ٛ4)����m�}"�������O�™�V�����e��~k�y�/~�\,��m3}�Lx����>���s�����R+����~�߸�}�^�����LU�\|�CN=�g��gfϓ���,k,u���?\H��^������F��O�p��f�2b�w�flcM�{(g�<��1>�F53��P�M���"X��6h�?xǭ�ph��	p�y.��4��l7�{�d��7�u]�|":��P�U�ٺ����u$�o��ƝN	iolvc�d�%#㋤��ʨD����ݸ����F�m'����8?1A����O�1b�#;�`�w�rm:q�f*��-�]�JF��$���o����H�lFt;���ݦ�q�rK3SH�?h���dT*Wj�ʄO#�uV݈CW��	�U&��3=cc$�4�%c��`M�
�̍��s���e�Qj<_J��6��|��H�\��_�G��q#m�Q$���|)���'��g��j;�IZ	M/I�q�Dҏ�� `T��	H��0�6H�3��H�m���܎�FNf��k�D��w���oǿ�i]��_��
i?\�O���`��ɴF��S��9�Ye�U�s�}c�tk���t1��z�x�	U�I���u"d�IQ�����Vij�����v������7d�n��n8���[*�S�ÉnV,�w�h�1��+���YyS[�>����W��n����B���s��
�tm�]A��w>�^��ř���+N�/`��J��j�'�
e�	R�Ƥ�����.���6	11:�''��o�q#c	ǯ
 As�S4�
z��Q��îid4�dm�m=�n��+������d{:�gD�F�6�����0��4ts�f��_S�Gǫ>���Пpܟ@`�s�N�z����b#�6�d��n�*U{��3Ew�N��Ns��a$)Xh�"�1��h=��P}��(n�;&�D���Q)$7�1�Pn��<��\Q��~�d�w��`��(4�~�A��l�X�����F�]!�l�b+�"+��yRa���:W>��ׯZ�_'���a���ܣ�njn�j޼�ř�W^φ�W4�f��f�T��q��y3�?-M��ڽ�b�f���s!����T~$�'^��� ���Q�۞W~.�����ީd��"i�+7;I�[��D�p�W���J�_�p	Z�n�$�Tj%��n5;��Õ�\�����>�p�2�ja4u��Ӵѣ�[�=��&�fFgE�h%��P)����2aÚ���d���D�r���~����k��^�~�s�Gz�<|��ب˙m׍i����ڲN��17�@�v��E��9��k�5�pU��
�F=j������"a���V$���LeIg��JZ~��P���қ�F!7��G���}�Ъ��N�+���Z^�ZP�(�[��I�ܤ�ջK�N�g�J��ӧ*�I�YO���mS�â�֠�ä3e2J�jUDz&���E�c6���ܐ�MUm�S�*�z}�$�ʔ��'��P���,�J9'�b<�rS[���d�rn�o���ݦ�����N��R=�H��"�.UL>K����-���?s��]�a�	�^�����/�:&w����V��W�[ia��Q�^���~���a��+]��7��h��\|��:��S���鹂��q=A��{�{����?{9�a�bTk����M��)���ʫ���?��*���׈jw�׿��z�K*���3���v/_H���C��ύ�`������6?7̄�G+Z���bR��N�N���g_�Lg�������o}퍺�O&��h���ot����[���…������\�x�z�/���o&����ڟ���T�µ8ѺW�yAz���2�!�J��I��/��C�E��s�~���c�	��̓3{ՍX���|��p�U�ih�?�k�q�?�Ii]䪣I����F�9P'�4O5m�{���fﷰ=F>�j��/�1S�V*�r�U����W�Y5��`�P� V��L���|��L��!7��y#��4�R7��'&21�Uk�Ҫ�F�s������wH��tJ���8
3��Qib�d 
��9)�L��vRb��=���[�I�v�4��'�a/TҰ�=%Y��lQ��ZЯ�I�2E�u��u�@V��Ko8au��;�0�
eBIg����̃��^�P�`�E-�*��lq�oF�aX
/pR�8X-�ʰ�s��.����T�,��fB����쑷���v�M�m&��J?��K3�s���cB�8���˧�컷��!5Ijr"O��|���뗦��p�fpv�Z�_�h�ٖ��fvmAE�"�HW��$����5��wԿ^H����A�E��b��$t�,�?55���;]X�fo���L��{�W6�Ō���/��O]9}y*<'�?H�y��\`�=k�Lk��������4;3���J��L�5
g�z�g{כ����N�w�#�%D51Oc)n@������D�(%���ke+ԝ����A�jJ4I��Rw��v;l۽�&ϋ8�;�ƃ�6�wA6�?У�ޗTHI���2qH&H�,��E�ǹ[@�����-�~pʼ�\��I�����^��E�j;�'�c�rq�ț��B�qb� ����E���n�fY���H�?c�X�U���n`�p�c��~Q�Kq�m�:��$�0��QL���QT�%?�HR����Τ�iH)7�w���$��ҍq���ۯH/�x�n�R�5�"�]�'����V�=��e�C)��h�kt��>`O�
i����N��0*�(�</@��-G�R�,-ǔ�4BLg��Yʪ7���K�JH�im?U/��'*��3�K)ʡ��y�����
E�N�"Z��r���Q%�ũ�'��_z�ԕ��aC�R�D�%"�{��O2[����Q
d�ȧ|Ƈ��)Lzr"�m��ƹ�"s��B������gBxS�+�n7;�P�1���(��O}��{fbb�&�gf�3�/|�}F����g:�Hw�o�P�	�N��&�����왛�n��1aR�z���4yQ��V�C�v�K�\4���~J8���ʩ+s���ܔ���3"�.�/�ޭ��|>6�^��ӯ��,�/ŋ8���%
C+G�U]��Vk
ja_{mUr�]NG��瞻��R��������/�;�ؖ�^�f3�x�㗬N��еs��|ߟ?�?\�ԌN��냛�V]~]�h|o�-ȆM���fv�?����ն�ҏľ�٭k�F��6�J�g��
�9�&q��\l��1���j$_=[;dR�ׯw�d�naʾp:)�چy��<e,�O���|��n�ү�o��i?>;燌�g'��\]}�s[�����t���ݻ"����RO��={�Z+�OՄ��i���F�R����*���/ʼn�|�ޟ=]
9�t�oF�ݕ��z��r����A�����hU�h��7s��N�%�ڝ-Os?��&<-\N���:�b�~��z�t٣>����v���͂����t]a�6{�lCh<�ѵ�V��Q<�p���!7)S�jǗay晋uI�Rw�����߱;	�Չ�$�s�"�t�i7�`Ҕ�_�r�䱲��|w����^�YA�r%��ȼg�m��pR�ѹK끍��4��I��w��t��Kg��`�� Z�T�,\���F>�"�<!��姞�
y
C�a��f6T;Y��d6^7��B�p���_Gy���60k?�nj�j*P�#���-�v;�M��m�}�,����ʴ�1Q��|��17��κ��fF�
�^B��i���-w�����+v�}��	����{�(�e��������^�	U���z�
{iZdI�r)^Z*���񖧩2K�aBpN�C��a��e[bʝ�#Æ�#=J6����2i7˴kX����Ѳd����iV(���"��.�[�*
<���QI]�Fu'�/�[\b�o�y���/ئbc�����F��<0J|�t�+)�a��n����^�¥���Z���4zZ�SN��Ƙ�l���E35����/5h�q`\h�6�
Oָ���\
��m��
jj�Y��;�|��p�,���8�����:t��o�1+���ǎ&�c�i_�i�X;�znt�X��,��Wf��k���
�[O"�?62���WE]����53x�kw���X�=�`��Z�c�!FМ�T��ThʶFk/��Y�ωgL�N�a0!���
�s{�d����HW ���mLG�i��\��ME���,)�t��?��~�����@�#=�����nb{)���~u
���� ��#~�֦Wd�Vy�j�N"(M����J��'s�wl�����8qW2ɸ�
�k��D�K�j�h���a^���'�@ƅ�J����S!HNM�V;�W��ل�{���/�\� ͼAN�������OGJ?���&˲��RS���nw��g,�i\I�~�`Fv�Ka�ݸe����د�l�%�g�f?*�Z�k�3�1NN��d^)"��i�jY��ll���[�A��o�Ԇ
�+m�X��$g��+�W�}5�?��F'��D��=�0�cS����זs�,^�l�P�L���j�
���vx���1�����I�:2�e3��<��29���8[W=��2��d��F���>������ME4����U:���R�g�m)|� !�4�aP���\�et/�A�rP�Lq�d�yk&e��
����y�0�A�߳=��|U���Kl_�N�y��O����3p�PԘ_�P�VE:�����^�i��ܓA���t5��s6q�Re2�|����$S�)����^i7[6fr�AI�D�L5�_��f��u�N�i!];�s��3����Fc�][diW������0�O��Ϙ?yI������R���q�HT����5%I|��2U��'+Ӳ<�|}1��Ņ�j����<~x���r���<Ô����
#�� L�����T����P�dT+���>�_$h��$hd�L��pC�@��v`3f��ī*=M���2)�~��ë́�ñ8�e����IZ1,�.��J�H/�禸�ҕ^�ə�֙4d��:���@h�4CX�iA�P�����Q�y��S\ִ+Ql�;�k�ԍ��>��:+��j}�/7�ލ+u����"��	Pq&k�<*T�kV�^@�^P�dCf�]��n%�h0=;SrX����|�
v�|VKT�0/��wi�%�/G.̭bfT�~ujJ���*��Ľ0d�&K�Xi�H{�k��TL�0̵v�j�s?*����
)�kB��Sv%�r��ݒ�*MjL�{Q��=��$h�4�Tv�u}�~��Om;\�yA@��ɍG�q�3k?K�Kr:�:�VPFjuY��?p7�:b�y��z:�����jɣ��ǹW�r���C�􂰲5�2�=�6���&��
��?2�O�צ��%��i�iڋC$w��\圱��Eҋ�Ѯ���6�N�{<��UQ�INh^9�J�@mK�'	����m�v�H+��/�\�tg��ޛ��e3U
�s�r$�|�c��кg��+Eߜo��_��)Հ�����
�a3�I��v��)��YWE�y�N�`2*�Q���<�ѩʋN+VI'ϒ�\F~��{�P
� Ap���ڋq7�y;qտܺĺ(
���+�]:;U�&�R>��,�d��չ��B�(E���8;U����C*Q~�IA��P����\d�Y�Jc�Jw�P�j�󦪑'�xL��dUF��YV��^eb�x�G�3O4��rWf��K4���R�P…�[*���/[)J����z!^�z�`���
��c^���鯦�_Z��'��c-�Ke�f�l�ݏK���8H�|��1�Jv��e�@A`�Ä��!C��!ApȐ�8dH�2$h4�	�C�
�!C��!ApȐ�8dH�2$h4�	�C�
�!x	�<c^8Z�xSf�1c��Fߚ�w�}5���!ڸK�hK{�\N�WC�ͲL3��>�=;�Wې�5���6�1�lD#TS��Ԇ8�umh��p�׺0i�1�����_G���Xhc��"�%$h�ms�E���]b�/_���4�i3�fpQ�KC�hS���z�ڕVۨ/8|��J(c��?�s�T�c\v�PE�I���4^2�)&�醜�`��\��c�8v��9��+>Pp�:!k����̠'A�1�Dt������nv����D�������?�x؛��U��|��H��Ct�)7,f����IN٨3辈���h����mB����v��1�
�n�.е�M�1���n���'��G����t0ʟ���8nv�1���zЩ�B�R��qg�-2�
c�1��y�~�d�<�Y��㘍������k�'�bN$h�E#h�Cƿ/��a���d8j��g,��V���i"�I����r)�4NtBK	��e��� ��YH 5|4W����a���ጧa�cd�ҡk�eF{��q4�X���2��Mx4��p f��v�.[�	EGݒ���'��p4��W=ȿ���0#�'(�C�t��~�B�搚5X�	�V�e��C��}oƇӌ5y�1������U
��f� p���p�%_��(���5Ð�]��a�T�2^�6�Y��>���p�ar/�!C��!ApȐ�8dH�2$h4�	�C�
�!C��!ApȐ�8dH�2$h4�	�C�
�!C��!ApȐ�8dH�2$h4�L�%��d�Y�J����o�ؖt�
_�p[J)^L8���9Yi�GHk]8��3��X8c�3J�L�싱�Pӿ�
�*
e�4v[&�\��a �G4'�1&�{{m�M�c,�a�7�Z�i���0�^�$�3O��Jy�V<_��6ZE���})�����E��Y\�&i��Fgϝˆs����C7������g�	!y*
��A��ln���yQdE�S�
�5�\
c�3�Œ���Mѿa����-5�py����;��-K󃾾5�c<�s�ʪ������nw�
��Bb6��- K	$���B2B��O~@�,��l2V���e�3vUwWWVeUNw�{�{X��ZkG�g�y3+o�;�y��s��رc���o}���xu ��+��'�3�
'"�޻�a5��s�!�7!1�f�R��8�F�����Ń�_��~���9�솅@��S�l���h��U���B)�/D���}�4!'4���`���t��vo�h}\�8����D������G�J�Ti��5[9��_�{ro�<�*<O#��qn�L2��<��څ������Ù��i,�Ё9�Ou1!��J3���)P27	A���|��0%Q���?����T$����am�J^���G�"�� �Yj�S�|@@�?�8��o��n��l�g�6~ܴ��,	�,Qjث��'����$�Ԅ��]�8�X7��o�Tq!�Ks��9�8"��{��	a�&��C��L��jR�hd$?�ɳ>������T���a9�Tw�nh���P�3�^�ݢ��JA��lH��$k�VJKIZ�����B�ֶmw\7��,C���J儃�t��l��p���8��z��t]|��c� Y�\F,���$9�a�o�L)�����9
Hs�>:X�1bPɪ"�3�
�W�O(��$�������㺞�(�b��OE�]'
�Jh���Q"~���i�cNSb+��lR
}Aτ���i���ں���?R�֜Fŝ�s�dA�.L*c��4T��Oh��M?3���F,���&�4i�8��?��	>w����|1��m[���6u���A��}���C�IH��8ﺶ��~�v�����ڔ�F)%Δɬw#fq�-��0f(�ɒ��*�����z�����qg�?o���� ��Q|}C�t�h�Iꢨ��w�
��B�*�H1����T�ҙtA�}�\&�JI�nL0�R�YM��L�,�)OǝjgRO�ƺ��:g�QB��0�~�xI�;aT�
M*�R���Z�9���9?킥�J�&�tJ��M��h�3X5��<��I!�$�t*�)�QDF*c�Y��X�]d��vu���m�T:.樂L}j��>�%��Ǵ�%�\OY
M���q!�xC���Gsw`��u^۵*������lm_�U���Ⓟ��N���ƥ�A�ALR)��v��f��N0�úX?�]��94��+v��yGi�%�T��]���gP��Ea�A��5���2q9�m�Y/�%Ii��Tl�4)uuZ���z�X��i]�:�l�Ym��Q��Ն��]|����A�8ŝ�U����r�iXp�#ʺ�E\�����c������TZSnSl��}ԩ@tk�K�����H�Y����F�N�|l��F*kԭ��(�T��ۦsa����8�mZ7F:��"�g
|�؃�`��d�>� �RC�"5�M�f-��i��J��IN��mf�)�iܯ���G�@)��>4.%Q†�z+��q��T ���q1�f�:Z�&�a���"�{�ƅ���^V)yﻮ��a�ЉF��-�ظ��H�ཱུvo�L4��w����Ls���V[Ai~sA)Y�E�δn�٬L!N~���lm�Q펄�7Ĥ���9��`,�����-?�����Nj�TGc��"hM��(�xP��VF�2�_J�D*�h����)
�WRiT�]�U{��۟�:&VR��Ώ�7۶Ha�S�'��Jc�*I�y�$Ni�ڃ�h�&12��iһG�ި�W��Vʗbqp���k:⫔�S���iD��6���hZЖ
�u�Y}�,��ʁ�2k݂�c+��Ε,�F�_Q���n��yl��@ޘ�R�H�д�n��h1s|�S�VR|n!��#s�N+�3;���Q�B@OC�LR�E�B�I
�X2iQ)�R�E�Z�h-���\�,i	)܉��e�M.�Ǜ�`�/�I0�}���g�y�WH=]d`��Qz�^t��B�#���N�BM�H15)�>MyE!�[�x���L͖���C�z)R@�\\��ŏ�Ǖ�f�J��C�qp\}*V�F��ˇF�Yʄġc�Bވ��3U̜�2�9��B��rlT�&O���eG]�%����<Nu�v���xѾ�++a����rX)9�2�n2i�Q�0(�b
�aF�ldHW��Tyʧ~@�+c�3�e3�s5�W_����*f��:��bVw��Rw��*b����cQ�F����J��L�޺��W�|sRl�JQU��vu��F���{-u�y�x�q�{�=���F��`���1�e�;.o�̆��7�����Ȇ��soޙ�>5��)�wg�����=3�O�F�GRxvu�}�������t���&�
�����U�.���KB����󹳍u]�3;^�/B���cB�>�0�7�RL���ZQ�'���.�
=�X�)L 
i�m�O){Y�t.����(>�.�xX~e��jiB
�:kt`��ho�0�����>h�B�օp�XQ|��g�9��Z�@�Z:/}5(�M�n��.̜�>�5����3����FN� ���靁.rqM1�7�Y���	���$:�M��d����phi��v��urY���ƊY�vB�h�����.�m��縵s����|{��1s*�0A�j!�\K�$�Fެ&#�k�#j�DG����Ҽکf5o����;>�ՠ4#�</���؅�s+�;�®>��G)�j:+O��`Q�rX��h�L��]ʹ�,u�m�{��K��\/ ��3q�DP�6)~.EAi��~o��g7҇���jͬ;I���U0�Y���xf�@�̿,%!����k?�w�]\.
K���cꍒ�Ǥ�5ޥ/���!nH1�+�^R�O�(p�4
[S��D��);H�ħ]�ӧ��˹��z*�Vf$��.-M��*S��F�X�g�v�ƽQ������F~kj�<٧�@�	H!��)e��C���	%��J�K5b"h�^�[��%HV$t��R/f�>����W��S@��1�ꡑoV�_~�a�_pzv�3B�g
\�9�7��vֵ�4�4��;&}Kr*|��� g,�E��4R'4�R�2O��C���R�5v�.�&u�U	�l�����\.��7*-�dPh"}�i�ҙ��b���؊�x44�R]L�o�����Z"�ϹS{c�
�7�i$��fNG�Q���g
\�̥�ۇ���9ϡ��\���!��]�X����rB4A�y"%�<L��,�4RnLDי6Gi-T�WIOQ��jg�Sa��,G-�ݔ&Rʍ�uUUq
V�VS��LJw��=j‘��ƃ�J�6�{;�-h���+�#����*+F�FG>��R��g
\vў'ծ�m���~�"����M}�5/�1Zq��sO���)�`��*�*p�"�t%�m3�	�oۊ�X�*M��GO}�M=����ip�"�x/�d�>�Å��rG��ʘ"�齩���[x��#3��͡\��t��7��'��&�p�r��4���d]cS@�2�5/�-�B�a�F��x^��}4�M-7
�<���v����F���g
\�9�
!p�^bCk�k�l"BkW����F��,6�T�lf5��S2W��&=��$s#�44=�3}�}wU�|G�l�;k�<p'Ҝ�F�J�>.R�Z�w,�]�̵e���o�l�'i��2�P��8Z%'���6�x�+�����g ���>�oK
��0�}���/�+A&�/e���X�YC@��)W��fQ�`}ߒ��f�4i��j�ڙ��ל/�S�
7!�{yD����1�灊��/fRR��fQ
��i�J�BIz�S���H���b���ڊ���,���i�՝��y}H���J�}�~�>n�<�7Dj���Q�`8��I��d��!����B�~%+�Q�:=�OSs�&pO%9���l�fhb+r�g���)�;S��)�ɛH��!J���u�y�r\�8�
^t4����|m�s0|���уa��?��e--��tγ�~4B�:�����|�
g&��&n�8�څ��Ö1Sa*�$]:1��З��d�@���
^I��Mg�
�*�rP�[�b�(�o�Tf0�;��M���ӤWiPWY��@OG�H�Z+;�:���Tx�9�R�q�Z5T�R)�IS�z\� UDN[	�e��!L�)�R�<�TU���d�!��G�tQ�G�MK�6|Ұ�)����*K�5҃R!�x��%B���6UZ�$ ���#jr��U	M?]�����_�;�ٟ�r�
�^H�xx �4R�AO�cדe��(�1�O3MV�v���
�P�[�jlԝ��go��TU��;��G��b?���R�F�vf��U�%,iXmU���5A�HF�Xц�G$'Z�r�Q�I�1C�2iά�Y���^��"��Ш��x)�B��(n�.�6�4i�/�?bq⏖��q���A�
h�!4�g��@�׿��֮k���uL��!>�n&�>�k�\-�*ސ��B�������wL��8�܃��"z'mWI�.r�s6�lک/����s7Ñ����p��󐮾#2�o\|"z0��q�ѯ��2On�2�<�SQ�Ԓ�_���ˤ��,v8�AK_2���t;��䊣e�E2��k7�#���:=v!�x��*P�ʤi?{T�)��q�b���ay�)%��g

��ĝ�ޥ�4Nf9:�sf��H�
��gWz:D��>��B�<Q�'�(�M	}���0��>~I�k('Q�~�p�l�{}��|Z0D9�)�?�tg��2�~�s����$�t�$��T��L���M|6<J�<B\2�v�
��3�����7�6i֠ H\l�+O��9��$]Z,�Z:��_�lq�Z?���5�U?�J��jB.ty*pi�̗݃&=X�<���������~�r���sK�<���K��p]�%:�[�f�	R�t�k�,yd�si`���m�S3�a1}�7j���I�(���+�}�F�F7=�dۄ���$v�h�'�̔�T��O��1��,s��tS�έ�O�����è������йmx����#f�e�V�-��Ǥ�s��m2e8��&%d� X�s�,әԚ��ܩ�Ҝ�y�T�Cj2܇:|&�!��Y���St�Y��!�:�"B@,[Ǟ>Π�Жr7�<��sޒfu����)��o*�Z��hNFO��������-�*@@��Y��|�lK��'��z�P�o������X�I��ůr�B��˄%���O�0,�4�:��ʓt��4$��6�NX��UO��n>��
��"���0��y�N?��s�"����>�-9���4�d�����.�5�yMy֧���\�L�4y��c��K

��jg�:YH���l#�dJ�s���r���4B�7f���er!M�!�N�C�*�\0#r}L�C�U�_�c�~�@�����T�׋pD�8��R��A�83���g�+���R��U�LA�j^�t�?p
j�2�YN�����P���$g��-����b
r�g�1��c�v�X%�'cY�A@�j99�~�V�����&ޖ�%N���bfusߋ&	��r��R:�VQ��>�r�_�bN�1$��H��g
\�V�1����>�N�y9�W���W�0��,��g��G.'y꣙�%��8��p��-~(��ߤ����g���ʝ����iI8Ԝ�D^����u�~7N'��h$C����@@+Ow�}��rl�����2��<� C���k��&��ߠG0<˃s�u��g�Y+��K�%�ː��뚮nf���a��2�3���=�^���'�_�8����u.!���*\�w��p�[x9z�NKbNX���}
iM2��zb�O�}��!��ϡO����n���s��&Z)乸��Z"��R ��������� ���i9��*�Y~��'�[M�y�҇s�#9���J�E�������Hؖ��4Uñ6�SR5~"�(�"·7�����\�Xwm��$x�8{x�d��{�K���G\}s���L6��t�����?�s뾪��S.h^5�����\��6�ږ�[9�����9�6~�`��|O6�]R_��!��{���_5�9�t��G<�tmh���`�1��a�:ٸP(Y�+�['3>��a-kȹ]0��8�J^�{��i_�`˯O�V������;A�/���pS����N�t�?8�}���\�:6�.�W�����Z1�p�CS:�)K�/9#J˅���^:Ӫ�T�b���x����"�\��
�%���?�X
C:i	��))�*�x�B�E�~$��'���sB�e��X�t��vy��NfjZ5���:��Hg6���w�7k�i�^+��
\���CJX�MMjW+3Q�Ż��5�r��_餎��k����j\(e<p
�Ť�;j�x�v�pR鲔Rr�f+tM�~�9��C�TT
�+
y�������Ɋ���*�B�Ce<����|�ƫ�pra'˪R��N�6��u�zֺ��w�x��˜�(�3�\�㦎{҅�">�FHm
���u|��Jiu��x�H���6�!mC��Hִܪ���]��b�vy��3� ��%���Ҩ��k���}��a}z�`��l����V!�<.��G�����wL776��_���w�|�T�������}ۯ���O��?6�?�Qhॿ�I-b����ÛxB���ӹ��p�Ч?ߖk
�ό�UE��Y�~��g�x����\�PF)�R��P��:k�ceΏ�;���ι��`L/�R�69�`����ټ��L>�1T�h�RÁC���Y��6�y��
�dTJp$�o�߶��[7ϳ���
��J�6B��#�6nJݴާ($�������i�\W׵�x-(%���S����A�z����Y8&2Tq��{��҈TO����[8SVUw�2m��:���s<�#娬
�F��:kmz6M|Ƞr�%X���Z(��%9�4mh���tX}���}a��B	����7��-3e�zm��@�����u?$3��R�Mg�������ݨ���K�W[sp��{��Q��NJ)����B9��ܸ;�q��Q\����^|�:���O#ʔ�p��7�L5�k�x֑�@���E��LY���L�Ͻ�aK_��hd�%��,�Mz?�v�2�t{�:�g�
h��E+����4E!��2������zZ�Ցkن��mS?��p��ZϲҔ�hl7|CeY�&�fǏ�G�J!J�0�%�,��*kP��xPkl[>|\��Q�JǿP��k��bcd4����=x�״Β���٠���'J���ޢi���q;� Œ����Ae���=���?j���̧BHE��~0�nnL7nm炜��m��c��൩<|ĝ;T��T��=���/67nl�զ�Gk�n�,�����}�Cҏō���F/Qӿݼ9<�>>�..b��6�(��AU�4|�_��~�P��[~���߾9�7�m{�+�;��W����_~�����`y������~H���?��d�3��ƽ�{��߻�?�ݰ?����k�4�㜃��_�+G�}�^����ޚ7�k�����������~��}#��x1 ��5�Y�Q��WT�K�f�$1�t��Bt�I6�)���ھ��x��A�t2�\&7)�����K�@Oʒ.��
<!�i`�m� �tY�R�K(���ҵ�ں��!���-��wE��1�zP*ɖ��y@Jk��Zkg�M�I���)��3�{Q�e��^����#��)���Zr-�|�0{��lOt1S��f��-9*n�R
/�wA��t�Y��6H�qc��Z��·��ĵ��/\�t�}�U�'����Z�����+Ԩ�}��xD��޶��]%e%˲҅��}�D�!��Y�ѹi��ᰭ&���˴����~;���9����n\���mSľ%��UY�.��/$%���H��O�͑Y�h�㛃�}�7�ff�M���~<�=��~9n���jgпF7n�~�[��wk7��	�-��l����W��6��F��Nq{wS��;{������?�#1�)=xaCzb~�*�Ih
Q<7���^�#q���P�Z˹���Nսz�q��0]�����x��l^��Q|�|�����G�7�أTB�ʱ��"��s�[���
]3;:�wt6�ܹ9��&�DZ莏�*Ө�z���:6���[;=йp��^�J@�t���yu���w��1V>�����F��ph��-f��ܛ���ƭ���BS�)��D�e��3������2?7g��agdj�mG���qG՛;w7J9Η����Ⴣ���`;^Q����1}�a��P7vF�r�Wʡ=ʵ�9����m�>9�ӣ�������x趇�mڽ��yq�[�1����E�f��u�fe�4�:��M-ud?G BxY����o,�R��t�~����1�		���j>:>zx�;��[;���������Ԍ^����Ox��o���.�χ�/���kol�?�O���N��/M��l�?���V&Z���^��fu	�G+ML��uJ%M�T#�Ro����Q({�徳A�Nkd��A����t�Z��dm����
�ǧ�T�\G���&|���&�pi6ӗ��Y��Am���iӧ�NY�=����a*o�.f]�8��`��o��ɡJ]y9]�
Ɠt����-���;�A�Ά�<�/T�t���s�^�FOwnl��p9E��ɛ�n��{�C���r#]�m���x��ʲR�'�Q���~�6��e�G\����\x����>>��ݛ4����T�n�7�nɇ�}r�p����ز�zPmߝ1H�_2�L��ں�W���n��,�o��HY��y�`���-�z�����V,%_������^�Î�,�?"h?U������}o�No�o�P'gB�	m����v��w?�����������Ο��?����4�gߡ�����?q��?��h��KkR�J)��E-"_$��M:�OE�����{�ʳ!�s�3�J|�x&o<��w4	��l�9��#Y�\��,)��w֥�ڶ)E�j����HB]�Pj�u2�Ҳ�$-:��h��)9s�&)���6���i�:Ƕ��tt���O95)m
�l�5��ת��kNy:�JREe�訸��
2R�4)R��\xR_c%�օV}U��dO�P*nl��yϧ�v�oTz�'���]�-�d�k�ƞL�ġ\�`��
i�n�]̤7ׯ�,�LY
��M�h�i�ʡ�'�t�f���qC�A�Q�g���5�V4-y�hj�֬���\<���M���u�Z��G�%͢�:q�Nf�4��H��*����.�_��Iȵ5]��I�Hȩ��M���ɺ�&~��:i937�|��R��TU�f�Ni����W��*�8w<˥}ݬm����,�{n��$r�f�N���<̚V��i�ǥ������1i(�&^��|�
��7�;Ũ2�R��x���2w]g�ƹ:�=Xh}|Z��k�w���6��Rm���߫Ï��E5��j{{�,�@	�T���l��>���@�ʢ�v�Aq���m���m�jk6�J\���2�4�������(i��M�x&��07s��.��֦)�V��t����v�²��6��n?ԇ����z4(���x��Ԩ~m8`�K�Y���B߮�77Xɔ��~�}gaޞLޞrM͉JJ�3��3K�~3{���?��o5����=����66˪�B�g|�H�ǻTh�E<o���k�}WWt:�Ho���dE„�	�B�4�kdz{8~G��#L�"z�@(�#7$����!�˹��u3��L�ׇ�}��Ϥc��f��c+��H�r��j�%�cO�Cǝ����9�T��g�V��C.�\��Iy���\u��F���"���.6EY
G�X�e��یo�?�]wܲ��uV�뻓��BǛw��+�q��ۿ7�����n�
�����1�Y�i�V���|���߷'����ڏe-Cһ��jUR�d�k��8�����7�nv|�u����R!fq���ag�����`N����W���i�F����w�|�;Uu��p-�њ�'R�?cOz���_��
��W3�Ϲ��ҵ��<���/�'e���-�����p{j:�T��9$�w�,X|�Z]^���Gp��g[�^*ʢJ㈔_�R�µ�]t^�!ʤ��D�g������O�I*���F��_��T�gq�H��`0�w���v]ݲ��M�x�TRI7�N[�t��P��fc �R��b�@W�����V�rb�'��2�7Z���~��u~�&'Z�+]�J��kEúmm��8MxE~d0^�cL�`���y���Ygg�}gnݚ�ެ;�ҩ2��01v<�*Mڧ#ן��י1��>�
�
E����q'x�.S�͜.��e|�����P�������/�x S�`%�&u��?�E��2a=�	�c���5{�VK��&��C��t��]�ƫ��s�5܄���	��F�n쎆ň�@l���g�ng"���I�E�C%R�2d?R��
=��i<Q�u2hH,�z��4�H3��y*�K���+Fۅ�
́h�}�X����DNʡ���Rz�Y�}��jf����-66�('��J�.�6���v�l��EW
ˢ(d|J����1G�P\��I������A�'�%�;§�/�dg�v\�ڃ�O�]�:7�C�Y��^�Ì�����1�����Lo2����w6���>�v�\��>���|�V.��=8f}H��������}Ғϡe��_�@�'�)5	��y>�4�*u�T�
i�c�����<�Վgg;'<)��VJ����OQ�6J����,R�\����E;*��j,e�鲉�MQY�E[��k74tR&���p+J�,�s$lg-u:�:9��٭mP���Qi'���)��JMcR��\�s��#�~cR�M��U_�HFj�K���֪��q�����N�>�R�)������J��T.�۴nPƍҧ��y���Na�O�x�
���RH�
/�?!2�^��F
=��+�.�8�\�w2��k�;�͍jccpS=�K�5k��T	Q?��LZ�g�h�E�d�r�K�H���-?"P��?�˂e;�\E�d?��oVӯI,{�,Ox9aI�v���d��K�N��x�2�R��}߻���e�%x��p�B"����u#S�G�J�=皐�Y����
�����n5,����{�G�[7'C���1�e��S�0N�8����ރ��Ő�W_�� ����k�3?��mO�U��<|TR�&��
�?�Y�=zd�#?
B����1��t�Me.*]�·\�39��
�2�1�:�Y�DZ�4C��u\��[��,�9_?��`.����*
����bR:�Y��?��������U��.l9������^gYYmr1ib�||�2�Q�/'�<�Tz䶾��ɓ�=�����}�o������~��3~��i�j��o�8����+��ӝ)K��h�e��Y/ˏW*���JRyL�6��駖
l��J>���*�U��py�rRf�|ז���:y�ĜňE+�������+��]�)�k�ӵ����:�)F�J�>W��JY�r�s�Ƀ�d�T�r�N(ۖώ?�1=0ĩ���[Ƙ�Tj��M�&=n:����~h8u�����Ƹ,
��6�AU�7M=�ໟ�९�Ѳܘ5I���u�x����	L>.R����X
��n~�a���k�T1㙥���Ƹ�yI���x�
yд�?�X��R�T�pt{g�=,��>^�Bߚ��>ɝ��>�</6��n��Ust4:���b���rW���j�TJ�4�SX������/�S�+!h��V�'է7$xq
�Q?�/~��Y�o������_ؙ.O��\����vI�lf_͏�����^�y�w� g1k���q�%�S��h��}oLb��]M�1�/��~�'^k$sښ7����7?i':)��SdY�i���§�|����gdQSF]�
��ڔ�o�Z����a�T��cT�ۦs��χ,�y�iʍq��FsI�;v� ����4�AL��jH\Ϻxivܴ!�1�����C/��|�uʧ�H[YL'EYU���W�|�;n�u��
U��xT괖ڤ��`�DX̜'���|<��j\�x8(Lq���h^N�~��R��>G���)���`l+�8��~9
�f�%�Q�C|�~�9k�X4��T���)��(��Y|�۷7�a��(�ߵ��ͭ��X�R���Aó��k �7��¼��@�"S��xĢ�F��Pk�D��:����y|���^.t2�Hj|�uQz�ųj�SY�@�K��]&ϯRW�ӻ�'0k�m�o���aS^�6���?��#�CA���[KiA�lH����#�h&]l�Փ��u������P!7���x$�!M�R��ԓB�v_�No����_֔U�l2�^��j|��j�²���L�M2���tU���/v�?-��tiTj�.��|kӞ��=\�"]��f(tu�ڍ[�OFh��ij���V�-�d5ܺ5��MNg�#a�����1��l�����NQy�9�;�M-�;�U��"��ѩ.&g��߆͛�d��O��A�W�(��4q�����ܽ�v�ړ��s��~�'�KJ%6��0<��^�*���k�88�����U<�ݥf>|tjޭ6��-1:��}'׏lxH�&�����^�,J�;c�ڔ	�*4�"_�<�4�)�2(B+98��}�=�{�'X�bf���g�t)A��
�*h�ܻ&�
LR�h��^'�`&U����>�h�L�"���}�A�V���љf�Х8^��g������}�!��qK�/u2�u<�*����ܐT���p=��W�����+��%Z��4���L�(�
)V��]gҮ;{���BŹ����dK��Z�٧��3�;	��YV��.��G����p!���[���������p�:'�����Y��V}����x���{���Nޛ�W����&���q~��q ��]�W+�u4�ž7\v��%ʗA�:�~��Mg��ц��xr��)�]v^�]��_�S˓��z�P��K��F'�?-��+*���S�3}P"�?�p�42Mm$�-Kyz�3����C��C���F��R�#�zZs�ZҸ*uY#�K�[NCԹc>�̏��tٓ�w�8W��GE�I[��=͆���S,r���9��|pG���u74���(�u�xm�8�<:l��7ߐ�1���w�{X����뷷v'J����ͮ����{��$�c;\�I��X�v�݇�xX�����2u����.x�^Kb�?���X�$��'E�J��Gx��%�>m��޹ƶ�/��N�b��aOJ`(7��p&uΧ��/��3@���0�X<f��~�G�`�1|O��rϺ⮟�_����e�~6O|���=a�]�\>ϖ�^.�kg���~�w��_�P؞��x�����w~��������?sg<X�|�[����������<~o��	�����+������O��_�B���wߺ�_lt?��������5n/?H�?|��?����[��?����?��*h�r�F��=�'�S�?�N�8x/�����MN��ִ�',�kk|<%�L.B��2�<b��t��ۯ?x5X���>>r�l��椺34z�7J˪�6XX�~m���G�.����N
���f�U�~�3aʪ*_�2��=����p�aQtgލ�q��H�gJ/	4��	Ź/V�3�l4�c�&��%�DH}.U𩳁$�mm�Pwҷ�|��R�Z�P����C0Ӫ��$j�$���R�Li��[p]��_�T���Ư��J�V�<�$���������Fz'�6���lV�_��~��,���ٯ�q:�a���{����/����@�#on���U����|��/��B:b?�9���O�ё�F@����W��LpJ$U�AV3�4_Sȕ/�4K�?]v��%�n��'/?P?�)O�"T��{��!�6*>��R�djtV
�f���wo�g���P
�v���h`����3g۩xQl�}����:��
����fx�uT<3���?���7�`e�7��j00����ԤqZ�A@�Q<�RDB��
)ړ�	i6��ߌ�����k}�1'������ӽ�V�2�69��^�j~oK�Gx~Hww�O����n��~�{ų��[���~�����v��撞.���3�4��)�mh��댒T(ُP�Z�i�>�wu{�SP�u6|6p��*G?�FT3�"�ݪ�1�D�%�
�Wʙ	��fYI��w���$r��;�ښ��<�/[���d�t�#�o�r���M��ŵ��,�ei84��p�O]���A@g,��^u��E�RRj
�g�sP�Z��JiI:���2�ϞM�$%\ԤN,�7�>3�J�����)����LQ�I�:���.]�KC� Yo򻖂��������J�M���_���TJJ%��Kr�oZ\Kn:ӷ�'�7�o/?w�-�B�(�#��q�ބ�^\h^eO�Յ�R
�IJZ���7����&�N�qihr�m����S�/�WBh</GQjBL/(4��t����$O�?H�L 
!��y�K��4�Rg*h��%1]����&$�4�*�r^�<���҄@��qjF�!��I�r�
��zмZ�6��CHA
�z�	]Ո�rM�w��K9^�Br�Y����rE!ϗ�ֻ�e�'m�<w�����(��*
\�̧�9���/[f�f�����ɫ�Z?f��PD/4�����#1���e$ô�'ۯe4�/O� R�A*!��TAC��v�z�*aBNZTNd$	�c��$M�d�bV>�6DV��ZF��[��<rf�x'��-	��\���F`�XмB��(���c_As���|��|�B)?���(�㪌�wF��>l4���c"I��[�r�k-�i-?��=}������g�;�"9!6D2O&%�~B����R��6�0мBR�_�����6����d��I�G
[R��\S)����\&߲Z]��sD�\�Z�9���R�JE,S�C>a�Dg�xQ �y�c>�o�9
rV�)�*}����k}1x5�T�ԉ�P;/4���?��o��\�Uk�?��2yA:/$4�t.Kv��N/H^�e&���k���!��fh��k���!��fh��k���!��fh��k���!��fh��k���!��fh��k���!��fh��k���!��fh��k���!��fh��k���!��fh��k���!��fh��k���!��fh��k���i��L���:��Y�d���(}7�'+���H��xᎆ�#q:��#��v�;���H�h"y�*���2C@s
�D��`NS>���^~���.?��ڈ�L��,��2^��[x��h����)����G�xܢ��%��h���[��:
l�1p�e�7�3_�>�ڝ�e�
���k���!��fh��k���!��fh��k���:C��(���;��7�|a��a�s�2�x��	�k���!��fh��k���!��fh��k���!��fh��k���i�xF�� 8��+A���T&~���_̣�_�j�Lh^-�g���b�Ά�	�",ڔ�(A�c�цTZJu�g����~G)%e�Y�ͫ���_�)��K��������98����T5$���:�yʍ����mVJ�g
/4��>�ܵ*O��Rp�F8�Š��!�d�����c�3_��r �y}�#�έ�/lI��`J��VJ�,�6�nF\���W1��E���Uti��<����0��{��%X��&~���.oI�o	R�/���S
��깘�-�f��>*)?}a�i�:>�4��[����
|q����SA��s R\#xyyM)��>�쥕邜�����ԇ�o�����n�So �N�ʤp����&��t6E��N���'MS?<��+�F)�������R7$�~���k����>h�Ǭ��w�%3�<��g��x�-I+)i�j�K�i�U�
�ާ�&^ �@����s�4�ь&غ�:��=7'Z�ILN�4��r{\���36�͵?{�Xk����1�+[�X˩��
�[��u����iSN'o��P���-��X�ٺ�V|����x����Yx�`�3ꭑ�(��k����K�e(�ӒJE2��"N�"�$�ʉ�%�u��?f�bu����g��~�J����~�̬��d��v�\iF��0��#�00 /��"��$�d@o��O��/�ŀ�k`�Ŗ�1,�hFHy�;��ow��ln��r�X'�*�Xd7�[M�a�X�y��9�Y����/���1�N���!śd<.lIv��~K�4!X��b�%]v݅��p���ཱུ�v�pRU���wJH�s�-��ֹH�f��.M����yιeg��U�5C�i�t������j�:~�9�ᤐH�"�̜��C3>���>%g�
�|�g���mpKm[�
��R�S�~i���Oz#�|`Ȼ#�^-��h(#���"�X�#�s��妍0N�b��h*!��0�(���byka{O��݂nLe�<0��z�fh���s�7vم���<Rg��!@�+W�#�@Rə8�eCa�ը7�[N�$4��09�!)�!լ�����}*�ˋBmo�-Τ�Z�V�ͭv�Ac�5$O�l�KQ���q-Ŏ��%�R�����5q��åp_����~�P�Ÿ8�M�;��Yw���C��O.7C�KA��Τ�Y�6�".�n=
�%iM��vM�`��h9/LE8�P��jG�2��M�z���G��mm3:��^~�&h8�~�����2~|4:w�OS��@ӆ�k�െ
<�l�)�
�ph��g6�0u݌��2-t]�Ƒ�{��-*�]<���]��?v�˅SNS�r3x(Q��T&������_c���گE��#6�|ʭ�m���>�#nw%���aX���&J��9���SƊ��Ol�ޤ��!�~v�\@����d�Z�Q�',EҒP����	Sq�9��t��T��8�/�&����WM��q�!����U�	��_-�9�X:�A���J��'�w�}b;������F�R���5�,M"��iRV����)ėK��#Z�e����y��OO��c˧p��$�Ō{��=�|��P�#ES&��[:�N™5��95~�ݧ���ݘ�J6B:��p<�8<���s��i�+A�i!�x�u���G�C�RZ	V*VIQ��1~���zһ1	�(��_�����<t������S`l�0<w~���
��L���*E�>�s���(3��)v#W/#1�X:�萶g����������mÑ�J���r	&��C�����WJ�c7�*��[��G����p���*v��$w���ˑ)���&�r�����]kBkIRHI
�]Jɩb/�i��e���jR��m¦��WMP����x�.�.6c������`t�GI(�D���HV�Nm57�*SȐ�V��-��h�������LH���39�2�yRh��P-8����S�;�1�1%U�{O�zM����
ߤe�����&��5��[�A�~z��"ٺ�Kl�̗Mg~�o�O!�@������]��?�n�ż���,-9p�
il_p5.�W��e-� �m����
G�G7�-k�^�h��(O�&��?�ָ����;�{��g�R-��o��p.s��xwt4[t�ֱ9�(Į!(������W�G�R|�x�h��pH��F׮�~V��	f>�7�w�C��x{�׮�{���l��������'�s���V9}�����?���2s4���g��b\���vA�f��4
�������m�}⻧���]���	l���E�}�/�=�J�񌍔|g�iY+V�����{緗����F�Vj�$ۜ}�e��0W'f�j�D.�du��`1kݏN2�ų�;UucZ�W�j.(�@��1q	�J�!'B��<�4�\���J��Z9���KBxK��4�8,wm��9����4���E!&�,�Q�·δ��[h�벦d[�R���E�nR�4_1��
#��
�n^��z�j�rޏ��O%%y-#Ƽl�8ˆc�J�{�e�;kf��n�v��
y<qc�(9])�^��o/I8�]J���\*�s{�Յ�JPrv�����-��'ػx�q�SӘ�4��)m�&)	H�4i��Ή�21U��);�*�"S�`��S��t[�p�H�ݒ�Dy�4�eI��`����|���ҵ�Me�my�ų�7�y�0��!�^ҝ�$p��;���������XtMg>�����2��J�G�79^#�l8�^�����/,�eQ3z��4Aʇ���4wL�Q�Ȅ#D�
�NRT��FoX՚Y}�杬&297���4t���JJ���\�Wo�K���^Or�G<�ٝ�R�2��s�M�Fl;on/ɑc�;e%���>y�<t�׷��yI�
P�d)
FwJ�Ԡp�`ql������\�f4��rIe�
�+e�c��v��v��������,�g���׵��qs���k�b����Km?;���W���d�4��Z�ކZ�4�G{�L�l�� H�ޥ��w���b�_鸞B�*^�w�OmH�a���t��&Ж�+�bW�mŤ<y{�xʋ�z�Ƶ+�Uъ����N�g>|<�[�?>�~�>��/��K���c>%�&�޲;6��Y�IY�Z-G<����|�iY�i�ޑ�b)U�3�kc�sR�4����9hn;�Q��V1���h�~4�G����i����#�x�"5_���%Mr�%� ֦2�.�r�>��
�y*Pz��U�ʙq)�6F�iW�i��rY��[��h�
�P�[g��9^|5���i��V�ڦ�?~hg���Z��<6J�pu�f�Ջ�A_Xʧ���&;[��J.��9�i(�] �;�q+��I����W'7'���xgn������~g9#����BS-�@��`a>]���J%��T+f�.��d���6����D�Qqv�˒�o� ���t��I��?6�2t�ܱz�BB�6�mY]s)cs1Eh<!?�ڄ��L'������>l2�(�'�+6�]�iO�ݩڮ����W�x��������5���(�z�r����Xo=4�o���Oǒ_/�����Qa�y�-[y0�<�ʶ�{��QQM>ڑ?�]��[?���r1o~�+o�C�Pp�c}ԸOV�j��{��D�p��6�Ǎ���oJ~u7�&b4�\<�]�)��Eu�T��yXΈ�*��n翫�4�)��y��P��O҄&ƥU�Ik�낟�v��…:���,5<�z���*,A4Ks�JFO��f�Ҝ&��л`�7ya�(~�=�h��ESH^JV�x�#X�hA�I�0����O�o�O˝�����iN:0o��iɡ�ZB�P)�Winq�k���[JN�+"BP&|�x�3>W<x�ٰ�Q��u>+'�Rl���<�l8:�̞֨�5gJ�R0��i�I[�J��T��?���pa�a�q6�|�s��Rae�Hƚ��||�[�+�+��V��� �b��ᨆŠLl��,�m����s2�)�먠uK%	Z�N�)d� @�
��щU%�VdR
7BS�_?V�T��f�4j(Mc��4ϐJk&?͈�[R68�WH:�BMF厢�l]�fb�~g�ɲ�o��^�(뜛��*iw�P�U��D7�B�=�&��C�]�/��'ǝ�&.��z4I�K���h�%a|�`�ɲ̔ɷ�9���G�+�Bq�T�P��%����P
��Úp�D��#/H.S�;�δ���Ǎ9 �X���N3�����&��֊���J����a����~x��i��b��:9ɤ�SJ���u��+�+��*Rov��+�W��&,�!hl��F�U[��ͦ���N�K�R��P.ڻ��ĕR��b3ׇ2RL���\?�w�k%��J4e�t���%��a�'�xZ��<��w"~�iO.,�9�^�΃֔��I���'�pE�!L�h�䟨x�jKR�J�r|c\�9���T��/�J�r�$�EHcoo(*ʜ�g�;���틪*�;�8g���š	�-}�qRsy�s䏔��0���x\O
�Su<.�3hrL-U����dA/�,��L���f�tp^4���q�R�aޢ��{O��,�	�N�������,չa�]w�p^TB�P����r�+�M�����PJ`����)��b��>ÐC����(�_�<y��2�J�IN�Gg";Ý�\N�gN�?�P4�V�
���G���_Oʉ�J=�I:�I"�1!���oO[���)��y�{�h{l���j꒏E��-���ͳ4�{��/")��ۮ'�����
�M�H�)�b�&��"��W$D��SS�0�AX���2���t��0�K��2D^�j�2�_D��d!���n��&b/>%P���o�}Z��o�Z��l�M3���H�҂[���yvx
!@�9�%�4��4�1	4MnZ���B����0M��a=,8��@8���c�}a�Ko�\%E*W7�60G��Cs6�"Ee���Ծen�d����!��@�un6���v�~�[o���q��{Λ8��\�%�Ȅ�o�M�sN��&J��%���֩I��v��uQ�E�z�.Ҝ�v�cYTR�/�=Z|��B�/]8��j�d#N���r�22�`N:��_D��!��.�wlBI�ܢ��h�5�~oZ�s�1s^h.��0R���k�ռ�*T�䠍qm�g�NS�#����u���z�>,N��}��ᎠcIǂ)�o@�����0T)m$����l�<�NK����B4��x���a�Z�&���[��rT���������,%\֒_)�J)ruD�m��鬉���W,��7D�G_��z�H�f��
4W$���@�cK/����'@I���d��%u�ҩ�;<����u��ƾ���vB+�&��T�S�� �<�->�*��S��J4�J�2��I��ſ)u��e/b�X*��N��)�}o��e�o���V��G�[ws��r֦Ԣ��,���m?��W=�%WB�%��|�hK�Q�.�-�2ż�����!���A�P%-+^���m�Y�>�dl*Rmfk��Exh�O��X����@���c4dU�7Mrb�MN*F�t������L���l0ǪT���o2!�[W�f����vDq*lX=����8��X�+�1!�Wj�Ù�{��K�G|�ܽE׉�	:+N�Ji�0>.{��NE�޵u�uh�z.͋x���(%�"��>;�sk�ȵ����Hp���K^�?�*�0ɉ(VJ��؝�v�Ω|_�B�g��*j�������O\���7,���p�(��H2��ȋ��FC�O�u��7��PO�W�%�t�"����>�
�Jϧ$T�ߟ���}��+[�*S�*��YZ������'οU����}c�`I�1�ggE)F>���Nǽ��e|�Ѷ3[Z���h���-�2&}�ߣ�]�W�3,��(!��)
�*��|*����0��8�\A8�-�F�\͔oa1�G���j��6��I�d<�&R��UTն7��^!Ƃ*���W���ڣ�}ٶ����eN��g?�풉8n����7D�͝E��ْ]-�b�Ja.�<�U�$��M]n�s~R4,-Ф�I�����˼�+o��9������n��W�z�3�':IʷvDU
��0S5�{�|6w-�~�j�f����;���J�W��odVœ�����gB��n����Ⳏ�/��zK��tZ�,hj�3g��n��ri��'��|:�����{F��iVN�q!Rl�%�v��~�Է��6�G]Z�I���i<�*�٩♎RH2�m��^�Y���iw��e|���VJ�,ŃF[�WzJ�˨(��Pߥttlf�><^,(��*y)�PV����H�(�b�� @��c�\8}�cdJRU�!g&���6&%�D�4b�����,�F�җi��!^�V�ιDt���{�*W��0��V�
�����Z�����yũ�%Qx��Bl���U���:<�Oj‰%��%%jUV8�)$�,�TؙW%U��U���n��yɹ�l=e����eح�d�X���>�%q����F�k#Lp6⢐�)�P�d�\�E��q�c�Sa`?o�ӽ�L�t<���պV������L���q�5�(���*��|#�'L���?yK\�ߔ9Pu��節x|S���;�Q���%ֱ�,�b۵�JQKʇ�R2>�NiLR�(�F�#G��	C�Ct\���rŽu0!t�ȴp;+9M�Y3��x��Z�'o���0�Q��r�Uq�p�j�}��)c�"�j��+τ��w��aľZ>x���ͽ�����y�8.ť7��W��;��ν���rі)��\���8�eB���QZU�m��SN3V�*
U���y}�u��4B��X!��Z�����ۏ<1�f�+��Keo��>,�ԕ��?��Z�C!�#�[���P�}�b�!����$��c�y�*��_ZoṠ�JJU���,eJF���o�_��jQP�n֔M�t�x�S��n�敁���.�(&�i��`R��xh�D�3�$g�b�Q�r�f&Ħ�/�4�|�*�#i�x����AK�O�K�iT��)>'��S��I`����a����0E:���ƒ�YJ�B���!����Ex�+�.^�(-��������� 6�RX.���m<�@zK]�X��&d_��qR���m�I��Lw2p�پ��Ou'�����x,O���¤��"��-S�
U��y\�kX���7D�i �er
a8��K���s��T�-ݴSI�Q^���]c�K��4��<��R�K��Z�z�$�|����� ��Q߶Kįf:u~ӳQ�����d��A��w���+ណV(ag�;<�e��դ�l���0�>rldc��1�d�-;%�\�ja8ȓ�>
J��nD0��''�ՆȠ���
�8�Q�鵵v�,�����F�t�ņwo
=p.�LY�1)EZ�!K�
"޾�����r?8���rHgW�&2���v�Ci��`!��V`
�3���a�2}�j�ƇM8�e|V�	B�����`EޫRTRl�WQY�����ٴ���@�3�U����=��[��h
Ħ���HIy
����bsw�<GEzc��;"���bx[�P��4��N	L皖�B�!��?9��S9.��ʣ�t�t�W
)q��t��{A��tSR���������iL'�|�J�	���ڜ�Xz#����Y2�
����͛Xy!��F�ƅ�ﻮ}���l���z���DC�&��6�tRJ����JM�[���s����kü|�bO���_�H
U�3�Ԡ��5���(�v��u�V>&v����[#����D<�}H�c��!J<��.��Τ�_w
t8W�M_�t^��m��C�H#W? )���Q�^�T܆�gb^�Ȝ���lмq�+���Ō�ڸ����鎎�}�J3���!j�dWe�W�l3̭�κ��F�I8��pn>��[|�����e�CZ��)_�:�ߛ�%3�F�b���e�X<xn)�%M��ƹ�83���w��H�0LGd$�N���6%X�^Y��w��՞v6�S��SZ*�[��b#�qx4��Nj����%���!pR"�d�U�%��t.<u���!�i����?
�2��w�,�@$�c!�K�S��w�Q��8\x�bI��?����7��1�!�2*ɳ��ciHQ�\Ϝ"�^ɟQ�*Q�wG�'��]\0VJ^	VE�.�
|���"&�Ќi�e��Z����Nى0�	�q�rU�41$��(1!H��W/FUA�-O�*�٥�J^q��=���4ʼn	5C2M./��a�L��a�.�y�+X�>}�3A�������<
�^�6>�uf��S��ɬB>oh���{k]
�G�<]�����.>�r�⟴�S8���5��
�4��%e�E��UHf��LbM�ƹ���8�7�8�u0��+xN)�B��Xw��>��:ͪ�0}������w�4y�K�rr��.�]}���^?	�s��q���:J�p-?\�o&Ŝˡ�ԯ�C1�J�y*0ȅÀ'Da�gC��1O�q��w|rM6Rќ�t	q�Y:�� dQ�Rh#��	5h�9��F�TH�8;��߸�䶓��xF�d�P�3�s´&x�^��i���lٛ֠���b+Yݘn�\�^�%��J/2h��I^�f�S"WJ���޷mwr��u��?����(A
�X���!���^O���[6��NF�i5�� A�l׫��A�ln�����qUq4�K���ńfN�0�L[͙�Y�fc��:&��Juj����:O�����!�,S5�q��sN�:T�JU�k�'��))euVN1J�r�����fT��,��x!P勺�;��T��#_��!�u�/�I�y��G��K�w��\�����5�����@��)W5��Xq�8fD�l�s\�{��}KuK�!�0g�>lV�<��9����'��]Z(�
BS�M�X�@�x�lf���bZM&���ܢ���
�s��e5��K8�$ @�w	(����7�Z7DU��J�`�w>;����=�rB�����!�?��M���QJ�F��I�l*^y%/�}�z����:�XN�#���O�J�!m���qC���c?���!D���6�f鍙5��{���*v��ݚ��gk��#�����LQYq!&�I<8�/t���5�9?����z�S
�OCLNgf�ǽ�&>Y<w�l1��(nxp�g�|fgr\�پ�;��*˲*�n�sMl-U�R�G��(��t<�ܧ3ƹ��U����^��Y�2C�QR�wbӏK���9��
�8��������ڔ�xUO�sFk�f^L^��s����a<��A�����:�w�Kɕd���7��w�f,ϯ${��=5���Mo:��ض�J�j���yߙ��߽wH��nQ�h�Ue%*;���˙n����&ĥH�VYW4~bT�|���m�m���R�V��(y9�e�?;��u{t��jo��")�a#U�h����n���‘�qJS���~w{�����$G��wv�.����}�v��x{{�eXy����x�h�$]���4�=>|��w9Ÿ���V��l��T�^ݝ��@��R�$��hTѪ��@��>Ip*�rA�g�(t} ��a���~�����)_%��/�#�$|3|
�̂�5��+��~�J��ߕ����ҳ�(^K%y��x�o��Ϻ^,l-%Y'ѸRY�m���WS>�7*FCG�9r)��fd��L���{�!�j��T�,�`���O�=�5��N/���p�����#������O��xkwT�����}:r��급��tF�4���I����7�j�[�X%Si�`�=�9q6ȸa<M�<���>��KŷS�yo��}s��y��n)Y|�{eg�YgY�	S�;|�n�BR
gMo��餬]�nC��{<����L8�z�=����t���;�ԙك���-ݽV	���.I|*���Rӡ�04��喨,���p�5sv#�cܛ�������W��c#�o���ay�v���s�e�`�~V��|�YY�4G�5}�fn�ִTeQՌF�n�T3��q�oZ�z��JV�V���}�Y�B���o���-�[u]&�Fiz�M;RE��d�ec�� ���HBi��e ��B�M�M��{R�B�e
�xmL�[/���˶3��մ���xq�6̏f}�D��4�*M�r��gN�r42O��1oC���BU�Tذsc�E���[�RJ֜�mO��\wu(ô���;��^�j��J�"0���4���rx; @/r��b+�J��@F5��c�#�9c�W���TY��OB;�.(�%�LYQ3!�	
/��{;�;R�F��i�Rʠ)��Z8j��xn��ƛs]�nfu�������;E{�tO{�"wT�;}p�8x�_)F�O��)�q���>p].��e`;Ӻ]��Jܦz�\,��~���Q�t�g����dR!�P�C�!���ͬs2�bk2��b2T��LF�B1��ڃãn�����*e��5�~\u�=�?�O�-�E��-a�ߘ�ˑ�p|ߥ{S�˺�^�|pwޗW��H	�ڤ���~�8��݃�r������Ŷ�C��1����g�����$���t���KX�)��<�6V��d�R.O��[
��uʋ�k~�
�/��^/k�"�CJ5QRU��PS��#}�tn[XF��F���A��(vRd]Ֆ�	�9f�[����Ŵ���XEgV�`��R��6vpEQHU�45j��Ee�BJ��jƜ��a�Œ8Ҩ�d,>)cC8�ΩP��fK��ɡx
�},�'d�7ڴ��^�6)�XU(5��ց3�ˡ�eq�,�"�l؇ɪ�|�|!ҷV���,�:>s`C�T�F*J�5�3ad�)�Z���w�TE��,v�ú~�� @/<83DY$a*�J��'9���J)�*R�s�q�
gB�b�G��K
��Z��™q�y��ƥ^�"�@���F�K�5��{�%�jR
q6��u��څ&eU�e���O����Yh��)���o��d�$t.�΅�z1�YNe%x<T�K��0��P��fE�H����I�*2l:���D%�,�ov���B�%3ZSƝ'"�N9�bJ��.�=$���vI�	��!����@I�1�	�RV�yC���1ƕ\����s�!@�7�V�e9�"�QQ�:]�+ѵ�f&~��k��|�}44�r�*�,M��~�yO�]���;�#�-��uɮ׎O4�,vO��"��}�kG;RnI./^6�b=	}�,�G�9JU�O�GR�����RY�H����*�/����?}x�D�u�F]��Ɯђ��n���v�����UW>�����{��(Ku`.: :t�)pt��Rj��2����9R=�7���lqx��I�	�����j_���w�l�s�`�����K�F�j�w�괈���h�A�^���WFs*>�}����R%NI������5�!�,)��:GQ�,%;s/!�w�j�jϹOሔђ���O�*�?��ʪ?���BH�$��{>�/��%+�����x�!Z�u�aR���Yx�&�0�tg�a�Q[���g�ħ��–ȷ��>9��'w�9퇥u�(�R�
F6"4�#��,�D�����Z�������yWY%RE�-�B��
��W�O�(��؃I)����0��%��804eɇ��|�ۤyO,C���{�̗�Q���x�z=*��\�ݹ|���M��i���֕>�\1ƓGRb��JŻ:��/J�(�Ң�k^�����'+�j|��1!{D����?ٿ��}~g�;�+UVW���a'����f�ſX�?�Q5)��B
R��4օ}y*����S�ňbNT�+;�Wvvy�.���Ǎ�[����{����TG%���Oh�7S�H��!&��<r�=<�<�դ���krp������`�V;M9-R!\�H���
5���H�6��`����5.��]:�\��R�R�n�l�N�3�鐖���3^���q�������#�6�xc
�����Bv���O�
:�i�4�(�s29)u��V�5����z��4���ͼ��t:�)>�Y�RE](���RZ�݈�S��u�|�[ΜI�gS���rP>RNDU�vU0�"D/�� ��2h�i�9�ɣY�Zr"Y/1{���!�\O�Z��";�)k����	�5�]�{�8+k��#�k�J��L���P�@GR
g%����/8�KJ�d�`sv���K^*�`��޷����O&���J%7��eۛ��ʴ6�j+�6^
��y���l��JՓ�ҩhq���-�͖��ɖ˂SRb�OIfm�$�t5�*8�/���4����T�a�U'}A/K�����(9�%iM�6�JOD<ƍ[�9a]��}<D�m���yb鱼.�*6��#����׍�:E%͙�#��I�_��PgL��u��_s9k�'�������/z @o�g�`�2^)�U~N���)Gf%]��~Ar�*��y��̀˳_��GGM��X7����J������磪���(�@��;���dRn�{�]t������vK)�*Poh0K�M9��3�ӝ��w�%�얹2b)�fIk=]��ɕ-H��Ńv.�I��`C�$�Ψ�Dm�J�0���e_mK��|��m�^y�vkU�EX�6��nU�a�)��zK�ko�E%)S��k�mw�9>���J>*hJoq�?8l�HOw��)�"'ComR����]�2wB�Ż�DU����p��]����PX8v��:9�j�'���=:\��5|TŮ>��Y�z)F�QQB���NBn��߼��[�oqҮ�I��w���T���I6M�����h�;z���m�Ayv������_��������>�������y�]�c]�`5m�	J�>�@RB����uV�^�2U���Υ,G%�c���w}�9��=A�!	�r�TYU%���m4)������]�d|���t�y�kN�b�ف�y���Z���.�G^r�����I�>9���i��@M�gW��xf9#�R&dQ�J͈�v�tҾ�Q*�}㪐�ʡR1!��ܺJ)��r	1w͇�5i�>Yեn&�Ɲ[�����6TM���5V�|Z�/F�ɕ¼Vx�z�����ٽ �+�N�~��e{0����o�=�v�zK<�G��_ݿ���p��%��=�	����yЏhſ�[*~�������D�x.+B����������'��0�w�dcW��i�C7xzt�H��=v
A�`�{E�5�+&�śRV�?;�{�g�ސPƋ��E������1s΂���-%�(҈� �x�]շ���6�)AS�K=�.iQ�^O��U�V���{Gs])V홪�޻)�%J�gn���7�x�w���ۻRj[�$����{��&	����߻2>�*���ܸ����~~��鱦�9�۹�;��ƧEx(SD����agʄ	YmQ^�T��%�o�VG�ۇ_<��@�rV\�Wv����Hӻ�vB���nas
x��hG��\۫$���"��~v���������X��+��G�di��~�}t�7�����������29��o	���?���o9���w�4��3���#\� @pQ��\X'aؙ�i�4�6�j���Ihf���l�p.f��bw��hG�Am�\���� R�UԻ�KBǔ+��=5�b|��v��K��@dQ��Y��TQ�Wo��Su-���l�_l��{ۓu�:�e�4����u��~=9�`S�)+�\-��R�ݷFy!�p��H=Z�_���|P��x^8��*�ْW���u��o^�[��
A�<?u��3Q�Ul���"E*��vJW�+۵_�'�;�p��6��f�;��_��ݟ�n�"��q�>���[��_����t���Ѥ��~����Y���������#4" @/r�F#t�<pv����J�M��>��w��
<s�ą�f��
1����gz7�f�'>6��*��y�Ց��)�\�R>�YR�O���f�<�ɯm��)-y�����%����x�k��r�ey�ݽv�:�7FWG^����F:띯��#��6��|x��_��^
Y��f��x��7[֑ X�0��H�m���eH�ay�@�K���
��A*��e�ڪ'C!��iZk-�7�+x!��"?�S�li�xQ4�\��?�ߟ?]'�-���=
Z��گ��?���s�0����3B�{s��C��;��[�ހ�W�ѣ�n���i�%�d'�����h�Gt^A�:��	�yqiV�ً�iY?��u#�_x[�;I��%y���t��E1;�M�
��x$��
����”/(6���@�k"��L�H�i����ݢ$��k���I`
xa��ֺ�ҕa��6��N��9[�&/�?���T�2��	-	��x13����=��{[��G7�x�K�*
���cv�+q�o���2�N��������kxQ�"!������yLCm��k��	�#���W��_�G��-"v����J�g��\��=�>�q?\e�K3�?<h�r�#FP��
��+���:��L9U&�f'���*��GsR��x��k���??�� ����w�����Y"(�1�x'�G������Ս��������_�/c���G�����)��+z���sxa�d#��7Chf�YO�6Ks��)P�Dh��-y����;����������_�������[e�8��}�z�������_��������/��֍	.�^Ȉ�<��a�f"L^�ɜ�~���bU����w�!X�^�k'�B������w��?\��bz���_�����/��}�����_���&v�X��؟���x= �/�b!�3�*����"�0�5Nk��{m�����QJI%9�>��A[������ս�������7�����/�\/ٮb/�R{[0us/�s.�kw����&��x���R&L��P�J�Y�YZ����*�p�9�b��Z�1���ο��G��{����7U;��L�L���8��x^��l�T�� 1Ƌ��E!�4ڬJ��O��O�r�gx"�3)EQ���<��*�K�����)��P��������_�Fk�txjмY���̅�>.R�
��u��ۦi�Y��P��7�V𰫡0�GP^��*G�;�G�߾���>ܙ�;�Tߛ��K��>�n��C:+*rc�U�1�7����8	!�l���R�T}&P�^g���9el]xUQ8hH�� }^)ކٗ��/>�����޿�)_�
!��=+��oǂ�Ms��{l���wv����ീ͛����nW�A��l�_�O��s�JB����j)e��d<^nMӌ�\�f(-��w��j4$l���>�<j3l?�
/[�~����!��n�'�?�.Q/6:s�G_,������E�&���/?����v���/~yz����k�7��^�=s.��ؚN����ǧ��H�!�s��hgg'�fK�<���uU�TF/�c9ԧ�����d�,`�%���aE�J·h|��y�ƴ��S^wS��u��n�_M�Bf<��}�g>��+��%��J�.�y�^o�_��ڵk��`4���x�l����ޅ�z"vT�����{Wʿ6}�_#u����쟐[��/������wǒ��^'Tk�5��<��ϣ�bW��>��ݐ�
K)k*�?���r@�[:d]�͛6��ނ��4o�	ť7wl�x@ŷ�H�.q���p{8���`/�֋@�<ڇ���A8�>����t;���[}��Ύ���񑗯ɠi�u_}�ۺ�fy����/{��{����9¢,��n�d��t��g}��[��Y��(M��'?�l��IWc����u$�ÿ�����x�|��5[���𛞍
���&��X�O��-FV�w��aH)����.l�!�����gwD�<6��ؘ�򁥯����<y�Ӡ����F#�~�Xm���ǘ���&䗯>�.*.�;�_|���$��

��ǂ&�\�\2h.4��K�
�%C��!@p���d�\2h.4��K�
�%C��!@p���d�\2h.4��K�
�%C��!@p���d�\2h.4��K�
�%C��!@p���d�\2h.4��K�
�%C��!@p���d�\2h.4��K�
�%C��	4�O^!~���)��9{5�|��	�q��oÖa�����~�����=c�#<��x��|���1_H��t۪�C��ֽh�tH��{!�}�]}�1��`��e�ǟPJC�����|6����gF1�n�
Ԑ<x��^�.1�p��w�CIqj�I�:���ͯC-l��:^��=�l�n�uൄ�%���^�Aȅ�1a�uR�j�l��fN2�V��i�	7��.���S��SeȐ;��K��-�:f�9�6]gV7�U�z�]8�	����k
5hॣ�4]����H��c���p��;���I���\2h.4��K�
�%C��!@p���d�\2h.4��K�
�%C��!@p���d�\2h.4��K�
�%h�V1�G��-�^$d�\2h.�8���Ծ�?�������×H`�74�����w�2BSd����r�V���!4�Rh����{�Xٲ4�k}k�;�3�!3��̪��N��]Ma���H 5�H���@F���H<��A ��E��a���.����JWUVe�ͼ�#bk�����wD�sϹS��{�=�_��g�W�Y���h��{~qNV���vל���N��i�B�њ���0d��VF+7��mml�Y�yAge�I�Z#w�e
xn:I��GN�E�1�`t"r��ض��`�)�&1oH��@�y!�n<���PG�ƺ�O��H����4�h��!bb�
9'q.�IN����#����D�s�OwY�������'݊�c%�M�Tl�c`���I��X���ɰ6i}cGQ��2��)�3]d��/!~1��[��^�6K����m5�t��+ќ͌Hw��p�@�_%ؘVg�#�ݤ\fر������	A2��;��	煄�]�>ڋ+��1[C�p#1R�:�w]D��~���&����%��U�+�\��!	E~�x�4���
�eҼ:�
��v e�vʪE�D�#[(cY����7�R^�h"�m!U�U�=J���2D��jZ��ЬнH�"��m����vs�]��7�W�Qθ/�9OU��f~��꾧э��r��.h�Ԗ1>8��H'ʽ�U����ȧ�W
�T@�O�ƌ���M�Ep��c�c([��b�
�	6]qm�(��\���0$wˇ�y�7�J���*5��F�XC��yᇏ!��p�Ԯ`����j�y�M�=L�.$�9�R/(�%�:�*��?�=��8��U�t�hg��g�x�6�|����Bw�%
x���s�4b<�cވ���v�Oy�-�E�:+m\ᔖN�v�Yτ�Y.��GF-�&�چ�RH|k���ߘ�X��^��%x����?99���mzskĒ:�9Bh�;#A�j�.�q�#e_�;�5	�rZ=.�)]X�B��yX��3��;΍��b�|�|�x�K�f.}��Ph�
4��j(�V:TL�|�!jv�sc�w�h�ȕ�-���
���i;]|/3�$HkMei��}c�N
Y�M�.�ê9�;�|cۍ�]���T�ɺr���ޱ���,v�r�_�(���4���j?�_���L�7��%K_b�3�Ԅ��07�$w���'�3�����x�n���51�.��K��Y�9.����q�,f����vN5�AIb�N��4ٜ�D�Ŝ'��/�i$&H��Fg�GŞ%CS��GU��ᰎˠ�?r:����
ڲ5V��	��o��_{��(���PLZi7q�[���Z�
�jڋ<R�9Bp%�@�k"��~)�p���i�e��By�/*k[S�•b	⬑��Z�
ʧ�Чjw?�i��/�-6����v2M
=b��宯,�V}ضMО�P��Q�uŧ���)��P��n�l��v	�Z��O��K9���Á���1�U�s���Ȟ;�S�`[:����Ù��2=�1�ێg���?Nd�&�-+g�.��1"�p�@Α
�r����6Tb�1P�bIkҹ�v�%K
P��*JN�5�K�D��t��ϭ�;���&��.M���W)3M���&��O�	� TM�"{V�/��J��)�.4���b�1Ϋ�Du�/��Ӆ���Fߦ��!h���i�
�	�&D^T<�ܦӑ�Sa���:#Şxh2y�~�y�+>l�9S%����k=64rv�Qq�sL��:��l՜s].R3�Q[n��䃱���xo�>r�ZL����F�C�U��Z���au��#S�O�b��|x�RM��9"E��H��p�m��6�*E�ϛڇ��#�w'v�#��� Ѐ�P��U�:[���eh��J��4c6��;�|Z�����6h�@iVn�s�rs��ri�S�H�k:I	+�^���2���M�q��Rsz~�M��}�4��h�Ƽ�=�)W�,_���u��cHҚ7Fn��ۥU��m��ú.
5*'�.iT¡��&�?
"WLK��’�L�9]��)����{�~���XZW޷��[=rfwk<5����7��Z�UxP���Ԩ7�Ƴ�N�1�4�ZIJ��&p��WA0�Ύ�VY5q�I��G�$�gڎn�w�@��h��<O-�o�������:����֪*2k~pR/��g�5#W.�'�@^Uf�`QZ��U6F"eK�^�b�R��>e "�6��nD�ik$��Z��er bcԼmG�e�y��!���鍑��v�#͢�pm{|x���xԪ'e�󼍞�ܿ�]��S�7q:�p2�x^�x�V��3�DA4����[:/����qz�|���#
~Y7����c�.����Sj�L��0�k�m�C��N��:x�[c�M�N�o�SP{�Mz5������~}̺b��1i�6���$�7J�ן���/?��6ƃ�BQ�}�g�Z7d�F��[e�b3}��<}D����8m�z_UN�a�Jٓ��U��m�_��(��J� ��HQ�5�a�@^W�F�5�cg��&�Z<�e6N�gEIr��+��*9Є{���E8{�j�����UG��������T_c|#ɧ;�}J���
IG>j�2�J�.i��6��E�^��H��e��bC�k�Z�is��[��<d��^�T3gh�Y3�@F�빛v.ZFI�j� .�R����R�WE)]�r�󠚴kC�Ն#
�T�b��5y���Q�-��ZU+���S��*�t����f��I��>r�O���k��J2�H��N{�5�֥���(�`�:�2ݓ�mC�X|�6��Dy�F�.�9:k;�Ҧt�y�������DӤ�`ے�E�Ҍ�.ۄ�3;��[:���G:�j~\�+C�nM쭩�լt1�?�1{���������j�}�Y,�'ֽ3�Eh�Qs��z����R�7"��0�Q�D��1:���̊��'���G�u����[c;&Uf���Z�e��Գ�϶��l�M��xx�N���䧷���6��塳��X���E�_��x�֬��^�v!oa�aKD�&�ñ$֊�l�3}�d�O?>j~<o���oOKk�/�I ��D��4d�(��o�S�ur�>1T��T�	u��r���J���ڝ�ێ�[� Ѐ�@���f���14��9s��1JI���:�~���n�6�$���Q&�!�b�Z)ţ�-�!���D-d�)Kwcf��u�U�.B�����p��#m�+�Y�y-j��p����.='����Z��>��օ���uF�[R+��	��PLb=��F������Ⱦ5)v�rCHR4م�<�E��[���l��nx��V5��iՃ^�த�dT�uڿͱ1�7�U[��Ȩ�9�+��#���ֹi�v�vd�:�4R��JW�>_���V���QR��m�ݍ�h���t�W��SK9���S�pY٘R�D1��M-�R�9W^�#�U�8�5��ٱw���D�P.qD���;�H�TV�2ܖ��
�` c̨(�o�w����LӶ���M��IUZ;*y7tkhYsN�����﹊�"5f��)-I_"1�k����KmFz$գ�zh6N#au�>�4�;c{�?`��.�I����eb�䥭hg�#֪9:��{��d�h��63�S:��D˱i�~�o�b$SX��B�`"�'��n�#c�+�95����>V^
�����إM�lT�Nmٕ��"U�����D.��~��
���4ŭ��j�ַ"�JYw��^��N,y��5�#do�E��}��)+���U�k��,~4�i�mSZgoO�R��C�������O�H�_��J��-w�	�SۆԖ�ז�ۓ�w���i�7o��ee�)����d�0_��s��6���jR��I�
��Ȩ%����-(=3�R�/}=�:-�ЬPmI�7w�v��?m���ߗ�.*�}��t��7��v�D�QV\�#�_.�.�Ou��Gn�J'�91r�9���j�!���2��;U�eB��IdFh��ІLqz/�:��n���٭dZ���b�u��+��ϕ?D��"VFwm�]oSzP�E4��o���jV���;����o��u*��!V>4�*��X��޷܋(�"�	]�NwW��-��X�Ց��dڙp���KzW`ZH4����)s*�����h��h�!�mbܜR��t����m� _�zTȠs)Ϭ�gR֘�ϫ1mhV]ʆM1�z9��w��ʭ����S�ɪP��e��!
D+*'��Co�&���d���z��?�W�Q1o���I�X��+��ǜ�����>9$J�I�9m�i�����ɕ�+o�f�һ��*��q����hw�ٚы�eH=�#���Zԗß1�2�\Hdn}��l�'�k㙳A7�~��#�4+1���P�*���R(49H&����Đ���h��=���R��2���V���qݜT�8jb*D^i8Ң�J���5��M&oN������cX��ŧ�H�񊱝6!�<8��U�i1���dw:Y3�\���~�hd��n�ـ����ZM�![�ks��ٮ���ʜ�Z��:�՗�ˈ&c:�e�mMH��|�|d Ѐ������[�쌞O�zΜ��\d+Db!^at�
�}`��U}h�0�q�
x��=�[]��6(���$V�ClX��+f*�Ő9��KY�f�Xq�Uz0U��N�����5�0ܶ��~�	���d���3k'�o��"Jo����ш���H$c�G�mۊԤ��S!��rɅ���bs���Y�
���J-�Ud#թ4���4�|��{��F��G�������>���9�z�f��z瑥�s̘W��vgГ�Tu���jlX��j�㒌����W���)��M"�o‡��V߮��EM�MPY�V�k$�f���^��E.T�q�-�����k�$��%�H�S{ʵ̷�Z9�|�.��~\��i��h����noOKw�����[F�r�F�w�|R/�/��_ڲ0;��Olۙӏ�!��||�����hKKb^���g�ܴ�.ݞV�\�I2�������\�K�D�	Y�1�rą(�;���j�
��$	���K�0e�n��fV��?���#cǥ�}s�-˥�c0
�<���%���(��>e�8���Y�s^tFwL~�C�:�6�ΐ#�2��RUM�T�f�썱�:-宵sV�Ú��Z����QQh"��no�bD�
��lL�������n��u��I�6�tߔ�Z7�*���[�Z&�
k�cr���dv��j�Jgh�
�x�_	�1��uZ�rY.jwl�JSȫ�Z�V��r�S{�Z;�G�UCV�_(k˩5���օ�%�Gz��e3c;�]�})�*����p�t¤�OJ+RCVK(�{��pVV΍n98�(usr����ͪ���*&9uU�%y�(��6YEKR��7�nhzs{4s��q��dGӱ��[���a�Yd�bV�k��8��u�T�M4N��-�2�*|�fy��-#{۞�VM{���Y9-�X��N�ٍFv4.��^�ᣓp7RŪ�B����$ي-@�E��h�(~2�Z�m�Qڝ5�R��Y�6ȶ7����V�\�0-�M�FF�?v_�)'�H–�Ɩ�6�&�=�N�|Z����P�[��@���ƅ*��QVmX�RS{3rlv
�h�����F�]v�g2?n�"]�6\ک�e��w
x塦i�0ݘ	u��WK֮���z�j�#�y���M�3�xd�q�~S�`ȏ��I�Z3,��ۆ+�ƪyݨԴ,_zs��N'�{Y'ж�����1��>���|��1F�����@#A�ߣ����x�
�9-�P�uҽ���c�*����E����r��Hj)�%�4��L�Ơ������F΢��
V��b8D��H,c���m�Z\d��EJ�Gn�$=u��@*�Ɵ\�U�b.�ib�Tu��C\�<��S�G�y�c�4?��m�"P�7).�V�9rj)�.��(�C����^�S]��[e�vԷI�J�W����4���>��&�F鉕��|wX-��)��ĝ���d��[ �?�tiJ��+�;:얯��� ī.�u�*u	�_��y��*����c��-�]h��^����~b��v�\-a��,i��O���pv�Ή����J�j��:��?g�ӲW���d�_m�~�iU@m^�f��a9LB�W�-�'}S���|)mJ���l������"�湩
�c5����N&�ߵ^���C�E���iC��gս�ѯ���ܛ�^�q��Rg�a�`�.�]�gt��e�AݡA�X�-�l^"�7�
Ѩӧ��<f��8E�L�[�;ɗ+�J�3��2�ako�3��;ʺ���S���Q=&�,�f�IKyj#�x}e��P�kh(�e6������;�`�>�4騔����z��C�e7�1~�
I�����y ~p�@6g�kKV����Y#��Yw'�8T�VF��(�1�W�uՏu_���Sn��������7y�����f��9���,z�Ӯ�U��k.���]���\N �\E7�]y�t�xԹ��/P�#�]����e�_�w >eY�;�p��Bh���x��@s���9����
K9X&���_��z�cr�� ӧ\r���i^K]6�9��k�~@����ھdm5#bI�]��vO,�M�J�A�P�Tx&���f�+�_Щ+����f�%N�w-֦7e���x�ړz-�h48�D�Y�/���ߥ$�g�a�8ۑHi'����G.���
���P
���1�C�x=Tr#�}����66�o�v�H��w��T�����h�
$Ś�І�$u�z��ȑ�X��3���4`U2{�[��5�U6^$$�GZSW�݋�/�_:�_�S1�.��#��s9�&��֒��V�Ě��)h3^{ �\Q�/���e3E�<��Q{����H}j��Cd"iΑ3�i�:]u;4*� ωlN��Js��3�rZm��k�+���H�(3�*+x�C�j�SpH�%���t�1-�e�I4yz�����:��&e$"'XQ~h�.-�i��j��OB��8�W�%X�����
���Wt���5ϊ#�K����K}��xf�s:�8u���Ʋ�Y3-b�9�m��F��H�'�zV휁����^��H9R�u��ld���^�ȁ7BkH"j�=�ތF�
�M�Fs�ǘ%C�(��
{��XK���s�Y�����y�w׫ޔ���ꑥ�CZ�f�˃Xc��o]�96D
�4�h0��cjx�ML�/u��(F0d��r�U�n�W�O�aWz�������Y��~�~a\m�z��[�%O�u��s*�͕��Jx&D���G��b���dϸrg6v�i��C��m{�pȪ���V!ᗝ�喦�8,����׍�zfx��~]��m]sFo��3%q���M=}���5����<}<<�u1��d{l��O�R�jM
�5����J���(5�iXn����{�A��Z�fC1Mgb��|�.��
�������$�Oy��*�ʒLȑ:]l�r"��;�g�8$g�9TG������V9��U%���z����Ž=�zD�G�Ia�

�碸��ׇ�:X��{!��c��&�[��Ŭ؝8���T��|d��Gn�^>�w�g׋�r6���m��b�]km��<h��3��^��H�:(
���*�LT��p�+.�U� �+����<�W����<ԗ�):3Ry���FY!�����\�tӾ�	�c��J��Z�UE';33�Ei�ƃ�p�6�����0uKZo�,/ݜ}�S���֛|��qC��w�>�G��n�Fv���M���~�~���1�������
����\���򁊯}m�Ԗ�:}�i�@ΉW��Ao����•q/&�,�v�Y��	�9oZ�ݨ�I���p���-��Ľ��I2*��!D{�b[)f�V�V�˥��0�K8���E���j-F]JWXg�ϘѼ�/팍�Ɍ��fC�'�����ش^���l@��Ҭjx�o$11�z��‡��Jr{�wn��4LY8�J7y\d�f(ZI8tj֑#ot:BvN�{���}�
b��~�U5'��%rĠ�	�d�VM��+gF�-ՙ�s���e��uM�Q��ˉ;����9��{:�"ɡ�W���}��}�l��uf�/���iW0:{���Yn�&Jw�"��]=R�n����[s�e�G��e����r�-km�k��;a����3@��������Js�4iq�����D�pԺ�S7a	��H�`#)Q�x#�)�JyX�ޖ䁺�O���dS��H���o�s��[6 ��H!�����'�ԫ���q�tYeٙ�qlcS-�yҘ�̵��2nH��U-�6a����r\���ۺfcS�V��m���K��f7*�.%"�Փ,w���7F.�]�kV�tQ��u��Y]��,��.�!ƪ[3��e����� 6�O��@Idq���&�lT�&�VM`��]��弭�ʷ!���9�i��a�rh�u��v=:��D�*
�v4� ������:hZųd��6v�RuI��D�›O������B�mwc�s^P�h���]���W��˽C$g��(�XH�̧{��c��&�i��t�z���bP�n�e��U�u�(tד�(�MS5��@���U��4�Jg��/"eJ�!ڪ��I.���F팡r��%�e�1�mC>4��s�Yci�r�	����V�ԥ�
%�qh�V/��"��&������m9n�L�ԩ�8�H_��o��nCڇ��t0#�N
�)��)a�M<L��jU�I�Ӓ#[8������*�"�Hݑ��j���a�[
��@�'����,�L'����x9b�%��SC�m��k���Nah��A����hk4vb��3�/�jqp�7G�-&�^���W��/���������{�c�J�̛_�}mT:�:T���>�v[roO���jY�ZVGj��������Va�+QG]�hu������b�>6�k�^OߺU��;��w�Ml��eO����!J\Pl��
S���΍�Uql}5����n�ݛ�]��[>���7v��O�*���EU��2J�R��ϔ�P1~��8r��G�G��wE�(6J�S�Fn�z�$'4�\��K1�K48���ԕ�fr7zU\;�e�>R�����0��]�L(�ſF��c�\���c�T7>��Խ����.��b�U�5
MZCԅ�+�1N�1��P)l�Q��8��F�O�^���nB��r}�:�}�Ž� I�2����-y_Wm;-$���]q�m�o��(mAzlT4�[r�Klk���G֕��#�HsZ��
�ta��8�(U�y��,��;���L���Q?�
E��fe'kKmgR���,���іcK9y�D|7�1FCw�@se�(|*٨��_��c�8h����� ���
!�����W`�ە��W)͔Ӥ�xS�Q~��"g5IiXk%|&��c�sI�5�tXŸ�
��}�Ęؙ��;w�.����X����c�<�+^����rT��=hS�	^�ۻq}����?8>��G�c.M�-��0_�\,�x�Ƭ�6M_�!���t�=�����ƓBO-��>��D1ԋ�{'�����W��L]_lU�,r�� �m�}(�����'��tȭ���/���ѵ7����bT�����$)�M��ܞ�צ���_ݶ+����;?Z�Q;�SCSy!��r����<;�����ȚR�^D��cɽB��\��~��+fcCF��<#�	h��x�>�u�LV!f�L�r�%�{��gCwܖ���*���J��C6��c$bk����G�q7v�gK{|pR�]�m�]R�SU�+Uе�T�ɩ���n̶d��ûǍ��D�Cӈ�J5��)�-T�v����;��\I�n�;��׭��q�b�GD�nC3�Q�j�)e��f��!;�]o�r���k[����h;���zy����&9Z�7�����d\�w���#��m�.0���ޛ��+�R���h�:���V Ѐ�5���$�1�Qi�*jξJ�a�gU�J��wo%l���3���r�ƾ7��s%��I�&������.��}����P}¥�V[[ն!X���mӪ���N7�w�5�UMۄ૪nb�$��^lo�8!}V�~��+ȍƎ,����%1��,km�~X�uۺF��%R��M'D/ɖ�Ii��� �[c��:x�bԘs�P�6e�>�H9�P�fWOd�i�I7���%&��������@sUE�!�d3�d�,M<8�8d�2M���[��E����6�����Q���Y����!����f��Qnik/s'��H�j����Sӥ`A�|��/�l�vf�%��98��Ў��_���@�i7���\�U�u�MI7�dy|���j#7���ǰ-��
Y�ɢ2���X�V6�T��K� ʎa
K�Mvo�zk�p����nO���0��m�F�ʦ��OpW��:�8��ٓF��#}r��8�E��'8w�2��d��m��?�����s��ڭ�,��2t�
�G�R��7��� %Y%�H�g���~��I�f|J#J�qw5�� ��m���}����r�9�)���cj��M���oxAr���p�Y����,C�K>^��b4�h�֮���y���d~tR�zDV��L�֎X{��zqX�4H�t]]����_�%���.��.n\g{"��:V�	�z��5k���=�]���p�x�>Mxc6�']N&[^k
ujG�XϏ��R����64h��~��Įv7bN�|�B#IOd���7I�QT9D�:��U�nһw�����V��$w�E
�}`M?�a��ο����bl9Og�~�).�q�X��:�Lը�ԡS��<Z,���/���s��R�ۦ�v��e:W�೻�N����pR��T̜ל�v�����h��N�t����Ξ>��!k�l�ekҺF�>n|[�eup��Q.�rZ����'
�t	Ȏ�"�H��A�D��ѲmZ�_�F�8�
��Ѿ�p$I�!,f��G�2�H��/��F'��kXuzL�;b���R)�s�T�A�w�E�fzJ7��X-?�͒c���W�G�$�t���ɼ����o��)��\�)-_��U���J���>�K�'�8C��lo*g���<�?:8��vƣ���ل摸�ػ�S�\�ҽ��m��8\/�~���,��7��E�$�<h�9c|�²�+jY|/�O����e(��V}�.��u��]M~��3XE�twoc/���8�]vU_^J���^<���RT�X���p��2�ؔ�w�0��֭��<g����x�Ƣ?�J!�R"�h��#��K�y'�����z(��y��	O]O���t��֐��O	(3��Ź9A4$)�o�("�K���K�~hr�� &4l��cdU�	����$�Cr�MW~[F��/�k�A-����R��ȝ���@�6���P�	�8�<W�D��6t�%�3w�d�Lo��u�X��v���N�KG9�g�f_P��9����Z��8V�B��O?=ZԾ��J�j����(�q}�\��HE�B��Ѹz��6�/x-U�=�@�H�j�6)��LE0��Uh�0&�����ǣ�`mY�b4��B��mj��jk>� �\�I�yC�S��8�ؕj�b���D�w�3��X���+����d�\�������Ce"gy�P��Խ�u����T���TH��n%�}��ϫ�=���Ǫqe��e�N�,��`>ف���q}�S/���j�á��W�d\:_V�ё��9��6��L����m���|)�F?������:ҽ��<��1x��l�3�N�.��@�ꔇ��䧯�뒀IK�h\����}F�Ũ��-(SW��8]�39f���xsV�
u@A���<)%G�K���-]I���ı7��79f=�EJ�@��n�A���ݣ�8�Q�h��hPg��Q�%PN�R����=�"���1�Vm�2���6k���+�JFKפ���\��Q��LJ�}�2l���^�������S�R�tpe�\�@�8�b_7�I��c��j���f�������"?�����D��Ze'[�t�݉����)���5Α�e��C��EQ�u����9����U,/8rj<v�mu�e1=o�ɵ2Ʋ�7G�����U���
[���3r}<@�5M��3�n���Z�pݒ�����~���Y���fџG���i~��O��\�����U�Q�iY���N��N�9��D����7k�&v62q-�p��9~�B�m����:i(������׌u�p�����C�,�do���Y��ғ�C��~=�NӉ4�D�ok���ϖ'S�������C�WN�v���ۅlH��_���GGR�;	I�u��M?�9�6���Y�):aA_�~0�Jݔ�w�:P��Ѧ�1��޷QI�U�r�a
m�ӫ��#�ޅ�?k���z�,͎~
��#E�v���Mr��p��]�κ�ChM:��Q[����{�8,����YM�*K��&�F���Y#iS1Vm cUډ$��CG僲�[��N�ԦU�SS0� �:�!�6D^�B����8�(�TH�Wc�s~�Ɂ�UI�T䍿1�p�J�(��Q���W~���k��ar��#w�Rh0�$�7���M���w^VS�M����	�����ɢ��<��Ӫ�ڼ����D�U����!�W��P�h�~)mJ���l���i�aÁC�VN	]��am�'�����Z/p�ע�j���`�={q�_#pqwCbD�����T�������!��<��e��O��6i$����_�s�88�7&�J����P���;��A�:�l�&V]?U�X��W�+Dr���X���e���͍���R��L�v]ۙ��v�)c%"��oc�J�*����Jw�8�-���Ig�J�j�Q��~Y�sIB��N�>{�D�0��j�AFSh�W�m��@�nډK;���1L禬�t�z�_'���4W
4W[��i.xUJ7���}s%�4��iT�c�ʘ2�ƫsM_c�s߫��QS�zF���DBՆ���i?F�$=9ϝ*���K��f:
�9�Aax�u�+�q���7V����m�O:�T��C��P�ě;3�-=�T�k.�:"7��9�j
uq��^s_�9��t�J�kj%���Ƥ�!��h�O,�D�8:�Dr�ܪ��P��##�N!-��=	p�irU�����cՆ���)��f�cq�;�$���Q���5&M)$��t�RN��
ɑ5���ױG�d�|eO�-IЄ
p��@s%'��i�=N��7�q��#2�͈p�����K�ry�>
�O��	�2�]M�^��\�rV⪎I��DqH�����p���uE"��)U3h��
�Y�d�^�Y��dr0��xH�&E
s�ZK�M��R��,�b<c��-11�}�:f��>Y)b�^�*���3��ʫlZi����H��G����@�,�����4�9�f�*@r��KB��x�#_6�9yILgr|
�ݚ�u�+�Mz]�k0��6�1/��q�Şxm=3��l�H�Lq��TDHpɀ@Jd����ֆu�s��R��N"��%�E�erUmV^��U�E��\��n��$场�������9�c��(51��3����BP'��@��U��N:1&�l��b����:�CTZ/ŝb.�D�Mv��9�&g!iէ$qW�D��yF�-�]�C>��I�j��$*���۬
礆���	�b-�h"��\�)�
:�#1�"K�F�����$~��
ο��CC�֨�,�E���wA�?x8��;�����F�1���ik6*
tѸ�����|=�z�V^g Ѐ<F`�!��2��Sd{	�����^���,1J��\9[�-�2i�΅Fu�2<d'q_���jRi-)�b�n6�J�I{h[J��^��c�
���j,��w>�t�/���������/��_�ӻ����_�J��o��w����7�5��\�M���4`E?ȁ,"���L�������)�u��B!C4+��M]쌨;�*G�dA�����51+B1K34��_�b
K�\�[e��t+���W�X-�'���?8�_�ٷ���wm4�5���|P�ss��k��n��A7������>~�ڿ�vatnlʲ����Юp�@s��a)}u%�k'bo����Xc�KA��z��,���H41�]��4�ڷ��ab���ce�E�o�Û|�v�M��Pj�����������/���m��e�>��`�_��>�������c3�	c�����?�߹��W~y6���
����Rpo�ԕ`*��D����Qh�����ƛ����>D6d�`IV�Q5]X��u��l�Y^��cWs;�~ҝ�Mz��^��E�$�Jbhd���W������;��wo]��ԭ"�6�W~z������;���o������T�]s}v�8�;���j��o���7~�z96�@�@zO�a����l���ܫ3*Ѹ���gUE�Rap��?�5�>#�r�L�fr�̠�Pf�]Δ����.����r�Ԇ�ĸ��W`E�?�g�������-%���g��'U�t��y�<��'�#WN~n�'o�?��{Pz �\��3o*+s��R��4�lj��D�By��Xb[��O��GeL,[�N��(���J#2�vK}
ş"�E1�s�8ȮT���B�u\<��C����h������D7�g��mk��ٚn_�;�Q��M��'���S������[�`
�+�~[��@�=�X
�.����6;��
[KJ䚴E4��q���,[�R���N��Kka��Uo��c��1��K�T:�ؤ*mz��>�B���'��-�C_<i�'Ε�]����f��5��1.U����D�<����AU�޼y}�󆦸�`sŽ&�:�h+����:gs,Ll�^���J��<����6u˳���M��E��
(,�4��r�'2Z�	��zKHim�S^#�h|h'�r�7�bq����n)�)�|�s��k���4j�>h>}Ъk���7�v�x#��X��P"��*h��@B�����a�P��j�Y�)U1~��<�l/���m��g]�ԩE�^1�R�����_����w~|�7~����~�A�|������'%eG��{G�C翱��?����c���U8��_���o�����
��l	|��'(;��r�@C��x�J��������EQ/����Ѿ�]�>�,]�v��3kuT*(�\�|����A�`R��k]Q�j����{�mT�m��=��\9 �\i�",��g�gQ��m��ѳ�ɟ��[���<���o�g^b�#�w�'�/�ү�_w�1�RG��΃vy��mw�����?7��]I�n���{��{����܎��K�͟�жpՀ@�s��G��p��}~��3[��]�G��~{g�G�g���٬�!�<����k���>|�\ۚ�w�W>z8�?��w�;G7�3���W
4<;�*?<��������{������oM������?�����~���?�δt�uj���t�k{;��{��!z��nO�+x|m������7��'���xfbӜ|����|�W�~�[���_{��z`ek�տ��L~�Zu��O����.�Q�vF��{o�*�;s��u��U�G�g��Q�&�+���<n�����۷�v���զ��ᮍ�'��R��F)WZ9�NI��
��)�.�F�9��ꁞ�g&Dug�?X���m��f�U��~u���
���?�J�\��7�������}�&�3�Y��������խ={}B�8�m^"��Ã���[�|cf�����g�V��'w�K��z��ǃ�~�~�G�w�ݱ��

\5 ��̐�񖝌�7�p�?]z�Ջ>���n�p��К��.��b{���뮵�]4�}�
|�;�����F�Җ��\	 ������ξ��;?������W����Jz������_��Gf�ڵ?��~i*/�~�7�������������<l�]��{���Ɲ��nF��/��;�h^����6���[�����Q�<<���#)��:Y�'��tk�go���R���߾=[��>9�ࣇ����O��}S���h�S}
#t��_,M�<~
�֤�M�ZB�U}������iʡ��daz��t����7MO�G�����z��ކ5ԩU�Q�iY���N��N�9�O.|��[���<���čU�9���zMN��NV	�{&c�ȼ]h�/K�OK����><�O����G%��_��ߟ�k_=3
i�{����;�\��������_�'#C���t�����T��k"����ʌ��Gsgʓ\���w�䭆��"�����U�?;Y�W���tZP���1c�v�V����9Qm��pn�s��6�	�xk6��i�^>��ZD�<7�!}��A�+�N&�ߵ^���C�E���iC�Ȳ�J��WD��s�����ޯ�/�*�}��ݚ�?j��F�;;7'����U�M����~k<�(�W4<7�T�s��Q��Ӯo���|g|�`��d ��d ��d ��d ��d ��d ��d ��d ��d ��d ��d ��d ��d ��d ��d ��d ��d ��d ��d ��d ��d ��/h�Ihx�]%��/4�H~��CbB6�h����/ac�$]䗽)��@��{�΢��s�<sU?1|�2�H]��D��.iwA����	��)����~��@�/}zC�R��3�ֹg�;x�Ox�@�xɠ�6���C�����K=�E�`�~�\ ��/c��*���0�B�m�e����s�n�)�1���%���p�z3�1
���j�Sd6>�j�w�]T
��b�V7�	��Ak.I�ȫ^��v2b֤;�s�;8�{�N���'�_��O2�UK��JСt�:N(ٯ'h^1F4.�4d��Y�fC��5^������V�E������f���1�l"�Q��A
}�t�c˯Ҫ�S�AM�Y�J�4�CDΆ�:Ѫ��@�Z��%����dc���̣�7fK�Ɗ,7�%ZF^�E�^�	�vy��݊�}.ir9�� @&Ң��H0�
�!=(8]XL�p��z$���~��fo8,B�����ˆ2h\.h6c�;��Wφ'�G�p7y���T$�IK���K�Ls4�g������ԓus����jC�9`��P�^i�,Ф����Y��DZ-ؘL�G��4/��(��\�QM�x�
4g��B��Om�Oă&�ҩ9,4�5�p emi�3L�Z�P���k(z�;O�И�v� ͜�}Ok��Sf�g~����g�����Jg�����Mhe;�4{��%�uzYm��'n&=�>?>\] ��/ݗsz�jp)���6�1�1��3�/Cϴz?��'1/�cm�Ψc08�4m$/=}lB�q�'O=�ƙ�^��5���t�W�'~�����#o.��.e��W�/�} �7 �sfB�vc�N�X�K��r��g�֛Z̳��<k�
^`��9�0W��]-�p�%E?�
p���|�sR:K.����4���
F�.#$���7z�S��{�����h���~$�f�l�eLZ��[�Cg�F�v��S�O
�2�.���yÚ�1q\N���Q4�߃���d�d��X1OCd�'j.�:�Zm����?{o�Ir���5�-V�gY$�M��Fs�G=��9z�M�L�ͭ����Ll��jf2�-|
�@�ߏI�{D������Ō���I�|�j7�G�c6B�����|�@���Z�Q�A�?�˄�E1���Q�>h��G/��X���P�1��G��p\80p��d��<v�>�3R�S�1��b-���d�3��|��z$k��LJ���|@��*����G�{[
�V��
]�h��������ox$�a�"��P�p��J'7�v��U�Y�aO�u�l{�?����!e�o�-8�y@c�&��d覵;�ޣ�h@p�t%�"*�M-ʔ��˿�<�)nt��5���]U�V:M���c�~���Fc�Z}�%�;#�(e�
��p�m'�4�Alo%��6����D�1�Q�y�h��w�!v�1�o4�$���7:�4�9Q�-�X�v�f�JU1�YKX�F�<k�i�є.�S� �d�PO���<��>�0�h()���y5�俛��iq^��Q�y���П�
�4qT^�TG$��t4���j��TV���m��w�1R$��-G.q�4��]�Zo8��
�
�8Fp4h�C�He���D<��o��4_�Z*�QV-�4�5U�Dե�
�t;�V�S���w䈥����!ח���}����J3�f�;Sh����2����>�Q052Z�|@(�؈֢G�)♶rÊ���be�R�t�(c��&]7u�$kU)k�����B��W00z`�qj�6�<��g��H6���I��?��G�V ��;B4�L�#��hx��(*3^����?P��P���W!P^�t�"܊etm��Pr�M4���*��θ�y�S��˔V%�k�-Ma��gC�ӥRC�����7p�(G�z
6�R^�k�TYx�:�>/��T�N����ںܞjD/�A���8�UCP=Z�zp�2S4�^MS{u��~���3��;��9�Z�@6:���J@QC�ҾSHuWo>�����	w��
׵x��7	��0Z%Mi&uэ��aJ��8��[!�~�w�5��{�z��"�9��M+K��
,x�>h��D?T��t����L������P��KU�m���4�Z�p%�ԩ4j�؄�y��I�a��0¤!t�,�q׎�J��|��#M�u�?M=Nv��]'�%|�yq�9s�ڵV��n���x5�2��ę��p��u�����ܙ�����:0��o4�flQ�M�f���^M]��������,�W����L��Y��k.��w���4ɔ�K+�p�q�`�>�.�±��)	�f0�v�i-Ϙ`�o�;]�x;2R�o��7r����j�$vH����ڹ�+$���E�3b��י;�㍾WZgQ+}.�=Φ*�$�:a��s��;�nصM��4��Fs�v�TXtga�^�"��I0͏$��m�6�M���ٙ{�h0��Z��I4���t��
U�77t��h��#�m�m��d��ǁC��/���]���g�:���3��+B+i����v��ޚ�Q�<J�^ ���#7���4����s̽�����X�z��U���N}���������=L��}�Mf|�2y~�]�1�8Q�X@J����*
m�ɫ)�'�纎`�VimR�ט?[�3��2���B��4����AӪ<*�%�b�ߝr��C��Β$���T͈;�j.U�۾�؛X<�N�G.?z������My Ϳһ\}��k�����T��݁�.ְ��m����,�a)���o3JgQ����˸p]���;�Y�m&6�&/w��;�gg��CH|-�֔�����f��r�M�(ɤ0Üv���̟{�rz����V��VI�^�MN�1�Zp������l�ݪu*�n��J�3�����(m��n5T=�%ה5P��93Z3��K���<��L�ʡ���0Y����u����iB���]/��:�*��:VoS��, �Y9�r-X���0��}@$\�}W��Bp:�V�/�����W2�����]F4ϴu�9f�yU�L�4I�#�h�,f�g�W&�iRieq,�%W�z컘dz�8��b��>�(/�VK��D�W�Tf��~��;���h�ũQޘ�*��z��(D���%��`�bJ�YL'd���2_ɼ,�q�%��z��Eaf"?���u���a2UL*ε���63Z�U�33��v�\�I�r}��I��/�|��܎{F��n�RZo�7~~kß�<��ؖJI��@I��c���T�T1]_���%��jt�Q�q_�Ivꊹc'��惰Y1�U�?8w-��Sa�A�w��O���1�}��xM�?��T��)%Z�%��0���L�lg��e\�i=qd��e��!�f��at����@��X�M8BB�Z�*��2�N�7`�k,e�\���\��*P,�l.�]����$̸��O-���f^1֙�#N��z�W��󱙿��\o�~�K���I�z�o@da��:T��/�R&�U�0�i�7M��j��.�/�u���V�KK��<v���}�G?�ҟ"j�>̤/�PU�3�T�Tff�g#|�IfL����R�6�;�\י�|9q��7s�N3�kh3j���Zl������K��L_�mv�U�W�џ37�_z��-�7v���?^�"ץ�~+e|�)(C���b4��V�c��W�Z�6�4���#<|:
�R1���as�]di��w���=�:�+Fk^�����"ѓ��ϟ��΃iຢh�g�
A�j
bc?-�.����<p8X�CAK_3�MQ�ԐO����>�_w�#8�s""EQ&ca�[y-Ij)Y�1��Lh�I��6�6����k���VS$l�R hb=�m!���⨔����}��u0B�]�.�i��Ti�͑rMB�i6�F�J׻&N_aiI�}��W���mq{�]�i,7�'|h��#��c���ƀ@�M�OV؝�t���J&1��f��9u���d��JW�,��=?[kK���K�G��Y�����	eT�w'>4_R���P.�'aD�R���zs���N�/μ���ΦZ��k��5�R*��W���ff_�h�E%�,UҌ}��8��m�Ec���JW�h�!����l�Z,�[/��	��%��YAC�ҵGG���q����8/.�ϼO��O��7ߛ���l=���	�'�}{�~5R�3�7�8��4tH�������_3�c;�5��:�d�P3j둞�,R�˵ifufe*��0rmi���th��‰{vʦ�ф�|�V���<=I�V"�YFXŠ�BM����Ce�!�g�� �hV�Ȅ�Z��T�7��R������L�Q�eL�d�c�x��;���fF���d��ʙn��O>PRg�l/9�����5�ե��:�t�u~o�\�/���:O��''�!�\<�|NE7z�w�)m���E��I-���ۇ
��etmr>��4��n�@��ύ��ӥ녫�J�z�z�;�3�@����.]m�7;���R����l,��g���ǘ��f���~����u��K6��j����":�ϖ��7��8�?�3����@l-����ɳ��b���n�$�߯��Υ���B<�xOgޓ�7w ��#۩$����`��~��t1;u���Bװ�P�,��x����a�J1%&��tzr��gO����_�_�>�y�$�F$�����=w2�����bf�E��nu��rF�.eŒv���˗�{��yi�*uū��?�߆�eD"X���w��/��͏+�ݳ�����SQCī��]���&��c8qr|ov�����?�_�*��1K�?��r��-_}﮳8������Ÿ���6�����}���t�_���U������ջ�z�/���W�fڂ�C
�ت���S�3��H�ѷ��9UbL�\�L-�`j>�Y�V�ۗ��C�x�)s��LT*dH4ъ�NIq�f���aQowl���0�T��/X�8ʶ�e�?���^1���V��[����X�����M����K��.���������L�>	�w�~#�(�q��ܗs���;�/�
�!��5�����_#�)�/�,������"���n��vje�fviv�9/N�pB��{�\Hu��$Ow�㛋?9��o�,�.��{�4��(�i��%;����L]ͧ��ҟ�͙�$M����ud���s?l����N=3O���8��=��G*�f⻧�3�N̊���(�.S1���_y��d��[뛳[��+O��s���k�<��������K�Eכ0N��Mz�Y!��X���_"W8��o�fSs���?�D��0Pk(���4�Y��H�/�!Ѐo.��Ω�)�:�a"���.�n�=�FZo�X�����w��83�s�w<��I����Yǩ���|jW�����ԍ��2eB��~�l��%R2:���of��m����(�%�&��F2�fbےZ�p�q��$��Yl&����x��1+^eIj�]���,O����y0�m��-��˼��r�_�R�SF֖]'��n�]�(c�.�l3F��Z��$��L�����j�c30f�7���$4AI�
í����f���zo�xgF��[^%͑ǻ�f3�2�'�GE�4�v��wi��Q�"S��yތ��lÈ���Ye�i�z��q���62����t@�)l���>a�Pĥ�ʾlʇ0s�lB�B���D3�颤)դ���<�F$�d�����I/f�b��,�y5sx�nPb�v	9R9�SfV'��2��DnT�M�/ɷR��eMf2)ӌ�%#3N)����fGkW\�bb�t�6������+v?�9B�Ti'O*��F��"J������<��n�"�k�lbN.�U���y��[I�7�i�8YG�:�.3JkOV���f�U*%s
�,G�.��#�Iu��H۔�m�$S�"K�.9y�R��]���~�l.OCS��2�R�"e=?[�	��6�֤�JNJ%v�j�)��2�����2�6g��,�2�Ҟ�7�������н��֛
(��=�
�>q��\�#Y�i���`nnO�p�b�0ɻ�������g����i^�s��g��^Y�dnLf"F�:b���s��4�o��2�~Xǿ�Rs�
������M�Y��%��x�|�/����߮�˔���g�	�2�f�/��"�����篖3ASx���JwQ��|L��[^'W�n��<�&�y���H���|u��o�4���灘�.�31�M�7�[�	�t�x���e;������{��OΦ'�I���:�\���˝;6��',]�t���\%�9�f��Ϧ:����&I��0�3�eq(�*ݼ���c�(�&�Gg���u�$����vC�,���N��A�ncv����Oa��W4��;�&sO��*~�]EV^?[h���C��v��M�x9�]{��c(��&���̰gp5�Z�4�g!<<��v,����
n,3)Ug�Ji�X�Œ/;�&�{2w|��&"۩�4
���`:IdK�O8O&��+:�j��ʕi�t�V��~!"o�x���,�g[#���D:
�$�?Gb���\����?Eя��J����I^�Y��4_2mK�����u�l�/����f~9���<�/��͝-%r8�gs�E�$��5�D�&��3O�:����:��K�i.�#軙3���*�vάl�Xb���m/R��Φ�ԣ���9f���ٯO��Q����Ȫ:M��(���=�,���Q�m�63�	ψ&��z뿅�F�?^;gw>�x��M������vss��sw…+D0�B}+#�Z7[�#��Cݰ:f���*�͠�=��R'���z��7�����g���8���_N��^ngk\e�&�.�m��N��Ҿ�E��`*Rs�~6���N�T�7ѹT�^�Y�O}�.]�2s�r�]_%�a�J�㲗2�����
�_?�g���&�T�$:[�Q�]���SOL��	8b�B��;�L�����jaLG���N\)�E&7�����W�?]�z����o�ݎ���l�rA���1nm�t��������x�SW3�۽
u����c�L���u(��ɳ_?�͞L\���d�&�mҿ�C�C���*a�����?���W�����Jw�O^����n�]�|<]̂ (����@+L�w���t�>���uJ\�s2��{�
Ø]m��o��P%��.ܺ����b�|L�=�Lzo�����絩��,��x�/�|��aĸf�2�Z���L��X=��,.ґ���;��	)ljf��Rn%�Rs'ޥl�r)\�K׶�䅙����E�cF%��L'�0O�|����<�F2�kƖ��P����0[s��͗��6��hg�"��Y%[�9�f�W��X����m�����E%R]�:r<���?��pE`v�;sIΧ6뇽x�z���J�kWq��d���.a�pֲR��
�0;����O�(w�1�!�ϗ"Kw�&��N�\<{��OKg��IF٣ws^�*��0��¿�*��ƒ�|��ַ|�ܑ�������|1y�0�nfڔ��v��lKd&�/�I�K_ȫU�2�pūGs3̛[��{� �.�z~�2c�Pp���+N���l���A��9K��\��cnu>q�ЩY";}s�wJkHf~�	��O�)A�;4��Ha"h�i�g�<��ꖁ	=lQԉg�`��lŕ�̢,�Ne�ڻ��o�Y�;s;�)���JŒt�����1s$��1������$ˬ�9fT233�Ȕe�V�̀������5��;n�,�J�*�i�f&�DZCc���4��>�q�ڍ�<H�v&��|1�-��8�l"X�s��-H
G��~��5�M�`�\Ng��;�ZO�e&�0��l��oz�
VM�L��qg6�d^e�h�<6�z|#�J�D�n>�ˌe��,3�=�]���%�0��v�3 ��t�ڛ,|�]�si��.yYQ��"��3g���ȱ�<��&���=�eG6���䮸����Bun��U]�;���+�fl̻I��v5��v�\o|�3Nې)3�C�T��<1��^iݴ@'&y�����8N�k[oO����Tx;��pK���G�����F�J�Ux�{6u�g�ʟ0�x�J%2T�lz�k&�K���m�e��2�X��Z�JZԵZCy���:WR��g֎�:Ӊ7�G��,�<9�*1Gj
ȬS#1Ǽ�"Wp��N�;�0l�,����n/�N�
�5��8���yv��]���x7��/�G�D�-���u�_��V�f:"�����漖����m՟���=r���'�.Qz�ؔ����{�r�z�9a��*��eIB+ţ0�X���Fk���s��8�)�T����bm�Ǫ����+qґ�{��8N.��L�6Ma���$M)�y]�Zb�.y�N�pF'q��p�E��
��l\R�ٸv�"O&2�V�1O,��L�?�sl�K����L��^�xCZ.�?^�&��P8�����{^��f��vRO�^�:%;��d1�z�y�L�\���xs�M�DO\���z�b�,x<_�ة?�N` ��a�`���F�̾�S/����}�%!�M���ސ�޷鿩�6Ӌ,e�2�SOyZnn���|n�����ɲu�+���L_���O�Y��A6���I�돬|�Ω�n�0��4<��<������w �uM\ກ�=���2G�G�H~�Ѿ	�^��*�d?6��7��\�/�n�(���d2��c�_��U�6�F��*�F�
a�6�\������7�!̍�~�(��s�Y�|?sf��X��d�.�4N�wq�n�C�w�^�iƔ�g<�!S��1��gN!�Y)j��$��+H�TtD�lm�5+^&���ds�ꤎ.CǬu�؄W
�fF!��n6��4K��m<�y}�(�� c��
��Y��ř�*�l�L֙�cY��9��M̋Α��.�
��b�]�O������BL�#N�X�^����i�IkD�o(�W2
�8Zmm���eNVϘ����2i�x��ڌ?3�v�D
�d꨼^3�x>�9��87+]�y��$r�2�T�����\�v��r��\kUEE�Q��fl.��$���ob�D��XJO1Wg�Je�]Ox��b�>��ṡ�M�5J��79꫾���oS?d��Sf[2���;��\�6A��5��̎ZgDS!16}�y��p��K�b)cQj�j�JWh�-]��J�S���CΊO�a���fڿ��Wۨ��N��[��$��x��jF~oR�Ҵ�f}�h��q�6urx
��+:]�뤊��Na�������l�5��AN��}c��U��mr����B�Z+�k Ѐ�ުM��M-�O���D��s�=�zR��/Lx!��|w����)����ܣ1%�2�c�Y)���WX���]޽���H���]#tkN��3?�������`�ԕri	����ȝ��Tmu�YowO�;�̠l'�ͻ�W�?��v��Ϟ���sB���߽{w�^�7M�l���������Ϟ���
��Y��5K"[�d�����{��V5�&0�û1��k�@�!���	ü�5o&��Xp�h��Ǣ��:Zx��c�(ބ[1�����s9!k�Z8��v��v��i,�f0���H�����(��x�e�u�\{:�z��T�����&�<�{��/q�2��ٵd!�
��FU޽T�|p��>�=�&�ޥ���J�?)��/�,�t������W��ڈ	���b��o
=͝L(��ȹN�_��j�M��r3{�=s悉JҨ�o�p&�Λ��������桔>�v��!�J�|B�@�W����|��O��
�JS)����*׆tW��WF!uf0#栚CwS[zo��Π�6�@����Z]�������oY�(bn_2J��?"�^�y���|�@h��f����Х�<���0?C�����9��^*���yp$��>9=ۤ����b-�˂��i�23����n�μ�/&�����)؉� �~�;���<��U�a��6kQ�,���~^���Tn_�'�H.�r�T��XMC&&�ֳD&ae���������n��S��>0PR�3]G�M�	[���,	�u#6`�*��|i6N���ν��|�T�˓�bzp��#8 Č�7u�d���R3J	F��\�����z11�����특f��y�}��
�mt��]��+��$Y��4�q�h��2O��DP��asM�K�+=;eY��R���d���o��Y�3�i�/��m���rR�D4�*bj�&ɽ��3Uz�d�
�D�q��d�Ƿ���g��L��t�rGtj�:x�%6�R�iz����I;������Ԛ�H��m�3���o(Q�D���b��}�e��p�4�5 Vu����e�W3Q(��-!FWW���E���T���zB~�7�-�g�;����aq7^4��������Ij-�,���*Ͳ�h�XZ�#������
I�3�$�k^%)���c�ԉ4qe�L �](�޹�c�[����&�$�&"�Es��ݟ��d�]��d����������f�o����BSi�QtO�f�l�����j˳$M�L:�*RWl����G��;l�%2O�q�f~&|��`B+�^��B+g�ͫU��e1�Q�:N�6o��*��8�͏T��o�:�e�0>	��d�,u�.M����+t��ϵ%^�&��J��Es����-}������m�M�wL{fF��P�T�9r|J&����p3
�y##���U��y��<�6��C��8[�f�r̖��8�z���V1�
k�04�6��+_���f�Q�����`K"����銥J���T�mNm!��?���+Uz��d��(̌WgR��S���R���u�柹2�R$�mf&�V�*�3[MRZKy�n��!3�ۮLփ9o���ue�y��"k�89}�=�H�(�e��2ԕ*�we�����͇
V@��"�����|����]F��oqG��N�����D���v��`:��.~#u|M�엺�)�N�� ��M�
���Z����y�md�>F�����p��?~��)ω������?���Yp2�&�CE3�$͒lM��Ͽb��EE��7���\�۷��W�6e�鮝;�Y����R&�5\Ǻ"��3f�r�_m޾�[L��,85O�D�p�n��=�n�o~��K�q����|�j�	�R�/��p�ID��~[5�l�j:�V��~H��?8��Ͻ@0k��oz��={r�x9	f���3YN�y�\\m�l/l7Zwvrr�\�#�azʑ��u�ͪX�m��;��1ۻml*��h�Ӌ@��m�EfRf���'.9e��S��0�I�&%3nN<���s��2y� #Q��(�&�.C-�?ͻ7)f�f���̈́����7��6��EU��St
�
ًdD���uQ�T4�.W���2�D�*T�w\�'¾'d��S�uW4��=NB*R�z��k�O=��|қP��?u�wW�q�6����ϟ�"`�̊wڱn>So�@�7�x��?�[�3o��V]WI���:]%Ls������s5���PyIv��T��̫��2��d������R�������:Y)�J�ɍ�yi�\��֜se��s6הI��n.�O��ٚ�A�C�7��C���4�,y��Z�vV�(�I���@�SZmub�{s�*���;���V���D𥓷h��j��H�y�v/�sNjޭ�ݝ�����e?�ʟ0;͔�����|�l��ej�v�M�:+�O�զm�-]Wxv�+�� -&����ԟ��]�m������[P�o͜�Lx6�ś���@s��&��'�ffo��\�:!;�	iG%�(cf��� ۞�W��Bn��?��O�g�����k��:�l�u�rv�'�Lӳ(�Ą�I� ̟>R��,[����͵�NL����Z]f�#ÄMud���f˧O�����7�ި�u�Yl��]$���ě<Y�3�F@y6�R����Gp}��b�n��l���	w��Dx.&���vP�]G�CGK4����9)gR��q��{�4]�����R�u��ɌO}���]�h�i
�ͬL��"���0L.2�$s�p�3��J����	���M�N����q��ۀ�*�aN���yQic�iY��.i����r뚳�8f�Y�q�WSo�o�3���D,͓Y|��Q,.}�'�Աk�"$Gh���wC%R��Fa��.���͞�`�;Ϧf)ן/N�,U?g���p~���4[kG��j�?��Sa3��w:�O��Y����˄�)���s�1sn���U��[;�R��I��ϱ��y�S��%ܹ�_�Y��QJ?^��#�}5q}��!$���(��4���}�Z��N�d�%�y���(K3����u�d�v&�w�����v���c틅KS.��B\i��j�\�׍���We;���7b��ę�ޔ�0�W���:9'�.$�,���
g�ap����٩�/w��~�Xm��(˻��_�:��\G�V��?Z
��?^Ea�>Lⓥ�;O�KN̛Cf�驧��`��ڌ[:V�?˲ٓ���+�����\^]�������t�t�s�H�m��ɣG�oov?_]�2��?5s�'�D
��de�Hn�L�M��8�y�K�^�;_�/��^�"����Of����y	�>�:��sv�b�]�c�j�I6�pT��[�����T����_YC��].r<�KىJ%'i�yym�?��2�'	�����L]�V���J���Y�-�ܦ��i�\�O��{��I�t(�ZM�t�Қ��2Y*���0T���h�]�=��"[,�D�E�%�ܝx����ݩ7����{�;�ygۄ���m|��ә�E���h�	W<?Q\�b�������]�1[L���cř��y*�L/��;�*���G錹Ϝ��'�ߙ]�ž�ޣ��qz�Q�X�5J�*�;�-�ݘ:]Pǜ��F���aޣ��ڼ���:\��#�=�S�3w`@p�iOPp���b�$7��9�7��]�#�o���������tU*��海���_��5jn�1+h,�/����>A�\ms@��>s���:K2�^�b�-&�b�Ձ���o�Y(u���Of���
�U�"���e�9�
a��o�D��p_̽��,�3�f�j7B��[��T2Q�]]��Bn[A��f�80�(U�C��l��´Sk��T��H�$��-�9D��3s�󝉀�9�h)S��vc�3��ι�bfپ�y��̱f��Ng��u��mʜ�p�'S���0��	�3k��[�H�%���2L�Y���ٙo;,�14��$ڭ��$��L�2?	\�d▞�Z2�����Ǝ��L余�'��-e����_/��M������s�
��,�di�^��]�l���x����sa� 
c�J��J{K,/=����i��/�i����䗿��,��/�7�;|�n^��ɍkjmf��([Щ/W醄v��tآ�Ό%J��6��*=�M�?�k���M���*bW��f��Ë��$5���XNJ��63J�]7p�r�x����f21n������t�eʌʫ�o5=]���(�]�f�V��GΕ`ڌ��)]I��34=uU�]��6i'�y(V�x��4�Llb��4��66�yJ�Lp�r�œ>�\��yv�H�5+k����|96��L��7�J��2ѱ4�o��ߞ�G�(__>eF�4�ކ:Q:"6�=_�y-�ϑ$�7�����f�FF���/���l��.1����n��}�"����ܹt&�Cf���m���uQ�t��B��!���φ׫
W'���
tN��؋���!T*d٪��4u�m��K�;Es��KG�	���kHy(�?��`TCv+��^��7O
�>��;���7��j�3M��d&�BL<[�ĵ����y��C�'���:��d���Ѥ8wJ�5��z���xˍ���jo�&�|ۑ
 �T�v*n����9��g�ݟ��8��xj넹ϡ��8;º��og���-IsG8��؂��+�8�v��O�Y	�=7��5q�oV���7RͰ�]�&J86I�1C�[�[�5S�3kr�Ii��9��P��F�c��Ce���	//��+�����by�_�h�A����ܘ��]s&��i�p�'3e�|�C_e�msI\�v�F�O��10����-Z��&����Ȋ�3��lhb����������b^&�f���B�·���L:��281J3���t�,�o��dʩ�0����C��L�E��C�׺f����퓜b���s��
46U�[/���]a�����rz��Ƕu��n��^,���&N��/Q^Jd�1q̉��@�io�iܙ�BYV��8����1tCt�	ﲹԉ֮f�9M{)�y�߸y�	J���������gMS�#Ͽ*�z6O�<k�Y?y�a�/h�F���e�쯲�M2pIU�(��f{������;=��ki��Y�{[_�7��i�����;�n�9r��S���0�@���K�Y�ۿ���^����̤��ylӺ���LË��y?'�����b��)^�#��b$�4=��ge4~%�y#
m��v�zk�M��!��M�X�Sw��i�t�]7�T��p:����6~�b#Wx��T��ૠQ�	}@��7$�c�����JȠaȠ����@����m�n��]jl-b�I�D:nL�cgZ74d}6���vיT�1�}�~ݩd�%2K��/�0
��l:?���ڈ�8�]*��T�0U�:I·��[�>���	�?i����aBˇL���8���捃a�1k1}�����w�]7��o�踍��o�_����{8�o ����R�	f^��F+�����J�f��#�4��Qxy�I2�f/��4�\�o;�e�����.ٽO��M�x�����"p.&��Q��6t��^�����'�z�@|��#Y��,J.���3�l~<��/&~���`}�y_�M7�˿�Y��v&g���d�x1�z$0�����t��?�q����1�3��@|�:w�|6W�̤�-�l�'�������è3&�p��l���t���tx�������m]w�b�Կ�U�2���+�o�K�O�����+�wqSI�`�ۦ�t�p|�A��n�����@�>�9�m�m~jq\�z���Z�������(�֟�[�M���qH�����@���9�g�k� ��OK_�Ǥ���O5�p[8.��4����/��.�|F$>4Q�A��'
�'
�'
�'
�'
�'
�'�%�� �?���Z���}<��k9G��1��3�&�
���Q�9,�oX����;�B���l��y/|�M.�1���R�ɕ�}~J!|�g��
UYDw�+���
�(����>rr��q>��r�n��W�AS_���ݠ:䯫��g(45��q����O��F��uQ�TԲ||�ຆ��5��F%8F���MȔ>�н�$�E�����Ai����V��e�/S�)��}�3q��	�ۥv�y7�C��\Ch��|���!�����e���St2*9�6�a���%:oH_�@S��|���Z��\
�WCU�BD����ؼ���Xoȯ���_A�I��B
���~�����Yt�	6-��fW|�Me͠f_:֬����Q���G��{;�ʭF�4o��	rg��0YU64����{����i7�]���0X
Sh4u�҇��ֹ�Beo��W�Vԃ��@��CQ�"d���H$�̇v��ק�(Y�[MݯT�U���@4���]������jN�A9>M�g�"}��>���Z�ǝ��t���E��r��R�������4U��C�}����c����M��r�&څFs���U��'�>u]��O�W4�xs�8ݮ�[�����bO��>8���B�'ˠ�Ͳ�y�R;|�T���W9�}o+�4z3�Tk�J��݄�����|w�||>��I���ui_s���l�[� }p˧[��d�*�~��]���f2��q\Qm=�#�ԛ<2�'�!e:����P �����MEK�VF�}�l�tp�=W��j�r����P�i����[��(�BJ�9)��}�J$~�:�ގ��-$��g�OōEKVO)�k�E����e��z��:;�:*7,>V�Pw���^��.��S(0G��E�R���:���M��3����~d�H~&Gf�Z���21����AS�d���[KUy6�Ǣ6���fM���‰X�	CG���ݔ�_�x���:���E�ȷ<m�3����6qcK����9)cUNeZ�A���]%����E|hl�?�u�UH�>[M(�>"U�Q�N�v���
3��N��9Z��;X�V�14�.)CȜ<Z?U�3l�3����G
W�����s�Q�v)#�q���:6��vrD!w�|��I0�j��{�@L�H�Qb�.N�RN�f��Lp(��9)�2����:����uH3���@�����a]�W&�C��U{�(`*�z�š�L��Y�Q۾�@�?�W�x
!
��#�#��qHsae�̈<0���P
�M%Xd����hJ�����Q]�q��a:|D ���=�S��!M��e��^���Ӑ2P�H�́\}C���rL6���ʗ��g|j����Ǭetã��H�ьt׮7��u��_�D#��
�t��m�ר.Fr�����\��{��B'�I����ʺ��}s�h��O�O��ʩ��+y�4�ڹ��=�p��f���W�=�h�Tд�6�ɝ��g�P�s3,I#bŘ���{9�hnn*=�i�%g�ܘ?�`�SQ%U��}�L7��E��i�TWFuD��Nj!�Ԇ:F(��㄃�87��$G�?��}��a	�u���������JH�mɢȸ�,L��p$y�6U>�) �:7�07�<��^�[,}�Y"w��q��%o^^��W����
�)7��f�N6���/C�M������O�!���˹�%�%�S�T������J)i����ӠG����Q}�6�����F�u;�Qe��$�t��]����pw(v�}���r������T�t��C[^�!�1{`��=pޓ$̚�;������hP�VI�h�4���F�?pqn�����/!�q�3��j� �s���D�֥�*���I�w4�gؐM�tr[�
L�XG!/\��i
�8.P��'�a��l����tS7�UO������?���l�n��f�i#���uԍ^a҈b��4�'����z�Hq
�5QWTb��;�Q�?�+w�n�!I�x
�e�F��Sנ���;�L�m7�tZ�+���L��^����me �f���d���#�^n$��@J�7�"�nmJ�39�FAUՒ��r�$x�D���9e�PWUP�OpgՑ-�$���e��;���	[�\DH3�GA7�q]d��
�t�ӒfTC�(���4���
Q߀�mq;�t[:���{��z:ĸF3�;cWx��͠��CD����>���Ni��v��VnGS{j>Y�}$����c�@��XXx7���d}۫��x��+��-�S�<xpg�t���B��ϴ�U�خ�fJ��^��f��Z&54my�kXsPd�>�tԐz2��yh��t�a��4�����
���*i�5����o�o;��M�w�i-\dx��Ij�oj��Q�ivG��e�t4�9R��yin�
4=��ۿ�sH�:|�x�t�iH3UmQ7e�V�z�*��l����3��a"
a�yC2M{���D
�qĨ�z�Q�����O0�z��*i�]�G��Z�/��^i�Qˑ�o@�Uq�ؒ쀁p�*��݄;}����Q��5�bGw��]Y�8��~��{�1�D����n��A%s�
�x��\��t��4�z�_���&8�ő��	-i�1p���8�òð�̘]��=h���.��F�kI3��9��3cݵ�7u:L%U[�}�coXs@���
��ޣT��J|Y�sh��{�Z8��ՙ����_�7�+Q�}�GZk��O�r{q��A�*njH8����S�ViqF�ܙ�zCjQ{�õN�}����s��|\��)��*�[�T�R���k�\�T���+
5�yH���7�iy����pWZj��;g�A#	&>���
+�N]�������C�R2�ՙv�l���x��U���~O�Y��,��[ګ9D�bXb8�©���4��{�%۴��<h^ݿ00�>J�^���Zk��h�TX�͛X+�K�Wߤ[
���c�3���J�-ˢ�1�B�D_�h<��u:ؼ���t�TJ
�TH��*c�a�[�o*Q�͛t�'f�ĉZ�M�6�u�?�A3f@Ӫ�j���8�w����<}P��~��|�� �@�.*�EYS��I7�7�7�=�F�kK
f��ZY7Rk�6N����4˚Z@���ַ"�E�O)���zf@��]�/�o�3���Xռ�8z͛����ĩ�Sk/��Ie�M��v���j�]��<�v��f��z�N�L��T?wf���j����_�K����+���g�}���M�Q�Ԭl*�7U��>�F75��t�%N�
P��N��Wj��3�i�
�E�-���DcGԵs��T ��@���o�`Bј�̑	0=g��U^Pg��]��*nR��2wF�}yI7{�eo���%N�t�f�M�X<�9螲�k�]��ԋ�U�֝uJ�'|�4��ܙ���s�zF��g�MueS%���gX3�d/�&�4��>0V����#i{��Yό�7(:�E���K��G����I�)��[ϴ*�X��_�ԖuXm)[�8�
6:7�F�SC�;
�����v�����J�~��m��݄��F>�@C�B��7׿�o��r����S�ު�
\$ΔI4��&ͪJ�V�lڻ��%N���|�����Z������[I@��4C
���(}@�'@��|u�+�|n����l[9�x��K�u�L���U�3l��Z�:I���S�z_�O�������A��߿���������-Q��󩽝����As'�w���<dC�*'��7���򗪵v�!���U�U.K!!�����=�|��ڨ��C�5���M#m��%�4���g�A�o���C�Bcy4����hjW�Z�)zC�������k�^�쁉ul��g����R��[����%t�:��1Z�<����?��ױ�)2h�3l�x�>Ө[*���F�_�\��;Æ���Vҁ�7��fx�K��v�K+w���C���8��~�gn<�ѳ�c�DPg�������ę������
�O�a��NC뮝p�Cx�)Q-�ԵI�	�kF��M��ݗؠ��g�T�ҹ��{��4�L�%�^Q�ְ�)
h*n(n�?�O�i��U]R�Cx���F�ny��w���4�^K� G��p��:;����a#��m4$+�4�=Ӭljw�jW�A��8�*1�ʭi�ϴ�u��3-�1E�:���-�M� �7l�����ѣ=�e�S�8��<�7i/�M�CҬlj��g��1�ę2xo4ݮMg���@���\hT`��Zk��M�X5N�\����H��
rĀ���c�\Z3vT��B߸$��pi���u+���h�3�'ȧ(�g���v�)�׍��әZ7��\
	�/<�N�J�i�7�ţB��{Q5O����8�J|���3��|��)�ki�/y:^��m��L:�L�;���ݱ�ae��.�g*�����Y3�/Tjz��{f�©v���7�i�AӰ�!6d@S�Y�Tućf}��:� q�si�]�6�������2
p�4]���3Te�Tm�Z�3u&��dX�Q����+/ᎇ�U����o��I����-{`��ө�nDd8T��>��¿�׾y2�mhhء��`�L�mS�zf�sS��g�����!�h�=�>�eH���#4�t�:�i�o*
��JDW|���+e�%������ȋ1�̊�*�zR��-��#�P�>-�C�WgF�6�z0���t�sSݶI�
lʢ!������}�톦3�Z{��`��溃��:�h���vf�sՐi��]X�����p���`Ƭg�KK�m��H�9�>�xh�5���)/hT%���<���7�J3�/��d��N����2P�Q�|�@>o��[�3�Pg�6�-��b���L3����e�}qS#}&W[��7b�~eӠ=��׺C�';TTݬX|\�f��Y� �u
]	ֵP��aB�Bt�}g�x��m���P�N{u��PC����e��v�o�^G�:M��[���Mu�L�SK�h*P�"��A��2h:��n�U)5�x	�<E�Lm��ɝ��c�5�}��vY�X�&�l�]-z�x,}����l!ʨ�Iu~��:�T�بC�x}Ә��	4='�W����=7T9���R�ե�l*
���L#w�c<X��
ɣ�h��{D.h*C�5����M�]�D��?t�v���W�D�>S�`}�;`|�:�g��߇sgk��n�3�MC�T7UMÜ�U���
�GP{�4+��ݵ��h����S��6��b��{�����x��+�-�Y8�[	��
��n��P�K��M�:��c�����Z+�fj1�7�>}�Q�u�ַ\�3Rm��N�amu��>�4�F��@)�	4
s滼���eԹ�7n�[�D����ojͤ��ˎڬjڳWg�@S�Ac�n�F�M�D|���>�6L�aU���l�Q��6�iK��R�q�M�3)q��$��l�OB��@1����u:j���*�zM�����M��&2�ϔ�=Լ���';�g4��z��4d��~��/��=��<�y�vt��Ʃ�+�p2@��t䕖+p�
úM�����3UqS�F|Dk��Z%`�1p�©�>�X����X�l�������A��X�GF���w���F͎J�l�~S�c�^�1u�5��Z,hi:u�L��ռ���	>e6�8sP�8�D�?���2��\F�_��*'����*��;WCh�g�XS�Bi�3��c�3�Q�D��P�n�]�ϴ�~]�WZ��޹.��3�+��{�?�/[$
����USS�DQ"	����`
�OՓWr��:є3�Mz�1���_ʵT9�<y�647��iO߿��sT{��<?����D���9�w��4��3:�g�ʦ����`���y�<�a-Z�>?fMD�kr$w�F�qڱ�;���3����h=c}�c/_��K�b�>��8I����L��G����ا���x��)4'��c
WqlN��L�)^���~�8Ӳ3J�U�rg��M��J�jg��ʾ3i��Wo�O)s4��3�=큍�Me+`�W��Y�T#��V9��'}÷�j��Ok��qFGiO����q�"٦ogBQ�����(q*z��3���&y4��e��2�H����`����{._�びqL4;�ѡ��0�H���N,UK`ٕM���_Mgzv��-!��O���$}&�3:�'9<��~|���T0%�,�R�c-*^�M�j��*'k���@�-2ؤ���9��K��Mʇ*�^ �2J�L9Z����}|k;�>m����>A3�2sJ��Q���=0�'��j7c�=��W�Lx4H��Lkl����G
N�Q8>ޜ�ٜ�����������M�Ȫ�#����l�1���5+���$O�O�>���[y$Ψj7S�����I<�ΨL�iY�P4N<��erG�Y�h�e_/�eMIqSh9�f{����S��%NVag��e\�d�����ќ������g�Iѥ&�3��3EY��^%�q�⦯w���C�GF�S�B<�glqQ|����4���4?�ɳu�R��&�;I똬Yڲ��X�j�v&k��#Ӕ�c~S���hm��Mǀ���Y��J���ǂ|��-��g�Yq%:�|c�6D���Y��yԳ3����]�l�&7��o�7�fԨ�J�p��Yj"���>���_����+��Gi���i��8k:���v��j;�h��.�̙��9�)m=����/*Gx���8�Xg�|��������I�k����2��D�|����]K�3"�lϛ�%�sg��P3�Ǻ���u�S��➲M�}�o��>s|�A��8㼘ͯ�r��E��;�k����"I�l	,�/�9b����|��H����rrS�X:�g���X�5I#e���,蜮�z�a�ʱ���n���u�s��*
��b�����j:�G�ł�)ʚ���̦p��ԭgb>BJ��Qу&=�s��p��L���
�	w֌�s�9��
�ȧ��
�ę�t���{`���L�>����#/k:�G��ɘ��5��g���P/�Π�/h���+�̩9z��R$�d�`3eM��gӚ <�=vƞ�=L�Izg]��P�U�����`�͠��M3j$��5�=�� ����I^I�q���b�f:㴵�Θ�g��MɎ�J�X�ֶ��$�>���<�>^�҆q֌�U0�M��~�cIg��p���_�3J��a=/������;y|��M�}��)��?y��I�V�S|����$�e����L=��aU�ʚ�hgT��|�M��s4��v(v�L�5s~k�v�}F��v����D��ʩs�E�4�q���V�3;��ܙ3�峲�w��*n��IHLC�i����f�P����*�o��_�q1C��9�uu)����!�Z�m���zd.e[�?�����ɏ<��wi��c��ǹ��bU�^D����AH�VZ(��{�����n�E����Z��6h����]�8��DFg�+�*�Q�V?n����L.,�W�*MG_;�Lz(��&As��L�F�}�Qܤ���FO��|��kֲk/w�q���,Y)�8e�R��y��VFǨ������^Dٕ>�c,�X�<#��ᤎԬ��K�a��?S��f��Ä��L.=?O᫝��o�����϶�������w��eZ!�W�$^
�7I�M�_L5cلC�d��^3v��b��\Y������%��k;c�"%� ��!ٶ��WGy�̟���.�f���\�����?V����_�cL����y4�w��EG������߫�(ƋRY�xr�g��4�n��|�N�����x�_5�7\�'�ÿ�\�<���f,I�ʩM:�lۃ����}���f�>x����Mg�h��X��Mi�.s�MS$�N�Y��ȷ~��wD�γe��@��Zm1�~�v4��i8�d��5W-G�V_�dgRY�}R_Z䪩l��35��5�yi{���0C�'�4��A�]���,12J��c5z��e�O�>�gEy�C�$E�U$3 ����9-�L����3��KVb���vΕ8��1��������^DIMݕ*'3�&���VV쓯�,i*I~ɒ��C�կu��m�e��2Q*�(vJ�<���atNN�Kg��K�S�@���AS��)4#�r���sp<g4���I���m�8t*�~w瓛��$�([���t���_PU�Mz�4�������D�<�Ig����To7/��M(j�z-ik�X;�i��e��c������OM�f�S�ʱ�3���A��V
D���P�Q3=�N(�̴)Go�Ԍ����6ʚ�ʦ0�;c��%�瑾U���>��Aҝs�%N�~{�=
���8b/j�Hv'��,C-V�T��;t�M�uϙ�/wR}#M��ו�i�v4N:Դ��$�z4�]��xS�fT_t09��x�Q���GELfĝt����<L��kFIA�3s$e1��&�|]��My��j�#����w��dA4C�vH���ȠiM�l|��B')���Ю�0��T�i��deS�BL/{�J#G�S�i�IO�2�����T��,�ȿI�b��������23H�&��֥ǗU��Uaw��ʚ��AS'L�v�UiK�1p�i�i��MڔC�4��S��YN�It0�]^��\�|���M�q�c�VMkoFB��J�l\�/M�����6�'�,�L֘�||�t�7ř����ཨ뒊�l&�#��4=�vS��L!�
!��	?	�	M�/Y��a�L�t��ͮ�ueS������&����M���L�y��9-�?�����g%�V^�,Y+S3����R]�GZ�h>��<���]қ�hU�z��Cqk����amj;S�9��ʬQփ|f���!�N�,�>�`+���4�R&)bR��JG�>H���<_ѮiJ��t2w,�
��H�8:�3uW���a���C��i˾���ڞs���^q���vnL�����yE�ϭ�u-Uu��o׎FU
��%M*k�af��rj��i�����]=�&e��i:z�3m{����V�TVI�R�&�4S�+���e�����G�G���Pڌ��*����nә:���L:��PKu�L�z��?8=�M[���5��&�I}�
��RƙDc������(��g�N�i:Uy4H{�l��%M&e�2�#�%�*��TG.a>=���[v����kBk	��̻��_�9�����t���g0��è���4��ȴ��D�|���e�fV��Zͤ����7�}��tFyW`Y�z��S���g�(5�+���
F�f��9�d|[7]�q�)m_�!��p�[*�n�4}��hb�hb!�s��nI�3�KFœ��4�n��I�Z*k����|~j��X^YS�g��뙢�D��DC�(k]��-��c9w��c:�Mg�_#��5MV�;h:��̦���eg���MY���u˩}����	��K3�3�Υ�?�� i�K>
)q4NJ�\[EK��Fn��X<0'z�*��3驾9�ٙl����v��B�
�����ʓ��N�3�8����T��^�C�W�lv�h��
�
����qr0eF#��ʚ�6�)Z�Mg�vF���ag
�pJ���k���\W�p����7�V�ԩ껤���blz��7�ѕ��8;i}/���ͯQP�I�nFm���>��|��S��-i��p�1٭-KMs����ݭ�����kvϚ΅.�p��z���y��E��5����\��w��4��2k&y`�˴Ռ�Mg�(�mgd7*)ke���.Z���c�.nj
o:����i�׌�e����8'���F�S���Ĵ�u5�Ij�aR����NKeӝ�'��Gf�S=�)�d�6S�G�[��5~;c^�`�!L�5�/b��:Z�Q�ʷ����SW��/)ƴ�e��vA��<tm�j2���tF*��q���vF���v�Ӌ�u��1�iE��S��N4�1y<vE��:�':
����5�:��ఞ�񴤑ѕ��4��4��=Mj��dB�%m��V6ý_��eͰyk�mk�jȟo���,|���v5S�f�9M���uw�:qF�3������j�vl�P���Mj��hO�S�wʠ���8��@��,�
n���Ũu�5�u�O3�wٕ{*SQ�$_�S���5M�>B��2fj\4-Nk%�������8z���@*�B�2޴�f���&YeM�1�Igz��E�>��]�:�FX�ղ�En6B��*˱!e��W'�,;��C�b�|y4�hB5ݩ�����b���I�nkUe{eK�К�}ö��Z�su�հ3FIS��[�x3.�u	��Ȃ���窗I��?6��dVw�
��v3F�[ҖU�t�Ѷ��w~ڂbZS�G�8qy�͔�1C�4e�N��}%N�a�ss��%��D�:
MQ�>YfW��j�k��1M<Mv(���,w��!�j�Ҥ�ij_�=�0G��rQ��UY�U6*��j�_�����3�����EOߋ�J��V�1��2#��Le�@�f���s�>jX��x�T?��9��y���wWq��׽��`6��ߝAǚ��QM���9�L��&�(q�6M=ŻXdf*�ѕ��4J�
���J���^��bҦ(�"�-#Y3�tF+�
�Rm�2��X2�X|��iC�d���f�R9?'M�QU��3eW`սe��2��1���"��Ș�3��&4��p��Ϗs���{֏��z0���_��5UM�cg��yE�4�V*MW�|}Jziz	5���eM�Y���dv�eM3���f_�#���[�2�)3��ٔG�E�L�f~�gT��΃�`
..�Q#�W����m��W�N�)Fk��a�Ip�\Lq�� 6:�� ��\���J���a?b�08�y�`i�ٷ��h��ϗ}X����9��ig��Q�l!l��������F#3|Ǝ
����V�v0gA��ډ3�5�p�+���Ee��Ě��fqS�JO�k4	�bU�V:�V�*r	�Pg�X:�.q�{�YUe��,��R���=M��V�Bxx۸L��(����E��}�2��e����ȗI��L��y�C��N�ʳf5d'Ψ��T�5���$�+�ig����5�"�kuۭ~���4��3h�H�i���mMN��0��z9Z�l�Ė�Es�;i�J󹦔k��ר]�t<nKM��&sU��z6T�`��Q;��훁^�w�N�8H�Q?kF�v3G��O�Q��)�3u���e�T��m?����Fk?O��5̈́��\��uG�y���I^n8u4^.Mʽ��0]�1ګ9�4�3q���+k��}q���K��5�*��{�LcQ�2�Q3���H�Aڹ�5��ٙr���_kl�9�����FAc��K��D���6�ф|�iG�V��:Y+�
b�i�U�Q�!�+�<��x�gm��L�.���[;���(:w�N��C?_�ہ����u�*��L�����m�L���3ʻ�8�g����-�F'�4kH��Tk*�~:����}N�.����t��+Mv����]k�jғ�H>w�"��$@����I��^)�H?��L20{����9���.�����Gd}L_
�3�?�qOF��o����Πit��3s"�L���ogdٙ�Q����_5�Fs�NfWd�OtRÓ
j����Q��z�ՕF�lYEO��=��M�ʩ�f����~+�n:�U#"3#�a藼+6$Ҡ�I��&%Y3jv�Q�H�N�����i-wF��M�?���7��	���YhF�v���g���Nrv�QޘF��'i���w�y>5�R6C;c.������8B�n���1nMӋg���;�)f ��8���&
�ki���g;�-���xN�h:�F��h�gpck��ک42�Ҙ¨�M��4
S�N�`~�
���wͪ������T4p�"�џ�]c�e�fj�U�$��&��3u�z]�=-w����F�3�����Z��ά)�kw�`
k��*w��`�%���}�e�Fa��_�1oN�d���i�<{Q�om�]��n��S'�{��Kf$h$�ԡ��iBU��)hR�A3�lP;�4�Q��I���
l婼���=#��hF��<�:���h�K�I��9��<��
EO��k�Ԩ�V#����_��;��<�xW��,\�W�&����+�-bmeY3�HY�X;�_~�Θ�f���?�)�Mg�x:Ѭ'��;��f4�Z��5~[e���9S�4����lUy_j����H����p��τ&K��2������zQ^+YF���+mU3�n�eͨ]�$�C�^әR�4'jKZ��ٙ'�������h��N��F���T�ѨٕF/X�X��L+mlhjܲƥf�/Mx��	4��7�J���"��Y�2��T��ෝAӌ�Co Sy����Rz�:�M��xUA�
�N�:=��HM���L-ULzR�]N疈����k^�:���|��w�M7FX.SSg��f?e��fZ�o�'t{��g�3C�Qq��7	s1M51ZH��8���h���5�O�*4;�֚F݄5rj���u�V�f�wA�K�,?�W�Wg�4�}$���;���Ę�]7d��~�kN�:��lls��i	�9;�]���xܗ�=�颣Ѿ<�-i4�J#Wœ̗�4�i��6}Y��5�Kk�?�a�G
ཽ�|4��>�
:�[?��౥i:)3
5�x�j��N���tF7T6]�3�/h��\݂���I�o��Ӵ��r�ϥ۳��}��ӄ5$e_�td�S����G���d���[�j\�n��~To��eM3%ej/��fP#2�f��L�)���pd]Ν�T6��m9^NЬ8��h��G#g���4j�xjh�&�xL���ج�k4ʦq��d㈋���|�# �_�{�n��u<�Qd��h"e��fd�i� qF��&�˝�j��ɟ%h��0X��3�r'��ҨY�^6�4��~N�Sִn����M��n��ߵ�M��	��:�J���8���y���7_f.�
�0���f⌮�5i�w�kg� h�k��8��G��{��,-��I������4��aNM�Z��^�_�H��n>V�ޔ�8�j�x'�3��0j;ʗ��a;�p(���8�A��i;3�;s�μ���J����h���I�N2.M�ޤ'�����JZy�����}n���K�{�o��p=�m��֓�0��Z�A�3h�fʹ,�U>���)�������^K��[��ht���R�%N�T�4M�Z_�kjԕ5��5-/�٦uaq1�/з6}�p=.�H�+eb����*f�v�%�tZ�z��wFvF�(h�hFSn��?���F}M�q6�ƭ����M~�&ϱy�{�i�߈�[:'������Y31�O�4�F�M��f��8�o�3�6���%_��O�Ο_p4ZjI�~Wug<ɥi4�PS/U�͓�+G�R˒��q񸘀��������Vؐ2�'xJ���#kFrm;_��8�{팞�Ac]��[&�h��0Xw:�rgvhM$��o���b�*�y�[�=N�89]Ld�6�9[Ÿ~R�3|�^��nS��6�N.�]K�Ѥ��Rc����<�x"�f�=y4�6~�\��'54��jd�u�j���)�ί��INC~
��œ�8˭c���f��K��\�FjF��4�=N[}g4ag�LA��*'�9M�־�4rdU�eӨ�P�\.�J�<)���c������r|���̉~��Q�R")3�˚Ѧ��Ft��#!_a�7�vx?�h</u��,w���I�lMy�q��I4)y���&q��@��9[Ÿ�N.F3�D��ԁ��)�[!�0�ֲ&-ۙ�K��e�9�,��8�?��2�Ǯ��e�Vx<��)���k�0�h�5v��f�����g�n�6��d��<�b��|7.H\�Z�Qx��v"�v�
��&҈��/�7�� �eM�O��[Ф5M�ٙ���`"4mo�gWO͠1��.W=��P�\'
Ř��g%�p=ٟ;J�e�4��&�h!��q��E�.��a]�Ʊ�(��e����M�VӤvY���3�O?��_�#j�`
k��˪u�dK=SӨ]�4~�Kʴe���p�'ƹ�wdK@���|M�c��&��t���|�y*�4ggtG��}��|ץ<��
�w��np4Z�4Z05Ҽ��9����jB��o���=�Y�a�B�Z��^F�P3�eg&��R��o4��޵m�������F;M�云z���A�ኈ��\��\a�0�����"c����Ռ�Ν��z�|�R�F[͒��k����VM#o��Q���:p�c��	2�PmO��*��DI�"�P�mddg�t"�Q`�L_��f�n:3V3��{�8��M���Ʃ���h�I��h��4�҉�^��yg΂�i#c��ش�����yl���2O���P��������~
ΕS��XN;3�)j����og𶺳�ӗ����'p'��'���O�(�b&w�@�&5MY���B��p1�&x�4M�9rj�݉��hFAa
ŭ�3�(n�v��Ύ�O��;c����z�+f�ȝD�]y4�SiZ�]�U<u.���y�j4g�����%��I#�ރ�b��p�zK�
ի�t�:vy-�4��;d���|���4zG��vA�u={�&V�zf��f���F.R�{�����H*���AcW(:�ޡf43Hϵ3�;�&�$��M
-��ζ�ޫ8X�'pz�ze���ug����'c��g�/��g<�*'k���C�袝Y#��͂��������E5�I�Cݧeӿo➮�d������c?ޞ܆:fT�Ū!l9i��ڦft��ы=��hC��^@�h��s�6:��oE�k�>wش���+�D�y���>5�]eM��3z��1?x�E����h��J#GW!ݣi����_�8ʞ��?;�l�����U�r��5��Jؾ+qF+vF�#hZ߸�ޕ���N���I�ͦY;,9{���x�.��Ǯ)��c{���-ŏO�2��z%T�k��]��#zA��=�5�+�V<��i�[��,�e��nR׿����)��c%��Z�_�z�ʞ3���0�rMӂI��oY�s˧	=����r'�5�襹{j�������s�W���)\Z� �6���N��ߙ8��ܙύ_N��VGs��*��kBOO���`�ʝ�2�i��CO<)/�m��Z(�omJ��2#���f��8���x�����a8�g��<�a�e_V��	5ϑ1�ݺ˃��o�#�v�M#���	mB��z�=�Y�3zMA����J�FWůi�z�����1/�n��{����S[���f�̖�:�rg�?_��\��<o_O��Ί�
���v����]�3�n���b�4w3����^��8�Sj��uM��{���}Og�l����ʿk�7�3��S���a�{1�7TϴN񜋰��6A��F[4��X�k�F#�'�����]�,d������^��R3�&�h�W������iM�=iGNMkY�����w���3��͗�B5�v��3�^A�M�f�M�-�S��s�C����xw�!�;��2�U��V3Zp?C�hw�`]L�Ѣu3?t!���p��	���8��z�;>2�%���4�Y�`�x޸���}�=�Or�մ��v3inx�^�rY�蚝ѷg�xc��֖��̩�Yӹ����}���mxJ�������'ht���M�F�35���o��i�
~W�Å��I^F7�m�3zA3<�+����\�;L�V�eV|��ޜ��
�VSf��-OP3��%h��T-�&5������S�F��f���;y��-��]	'g����[;������4z
G3x��E�2y�&k4r.�w��I�v�~\�仢�-A�J�Ӽ:ِ2����cg�F����i4���P�ȭ{G��d��n�/��/p�/�{#��4l��w�ᷪ�A,���F78�ј��w�J�����ӳ�:%�pO�׮G�+R�iA���f\;yYA�gd��u[�w�-��s��T6]�E�Mގ�	�v���8�5B�p1���"�F��F߮it�sY����&�"'���żY6Ð��q�
O�;5�����q4�FM3Z"�ޫ���=�
�/���+���;?A�L��o!h4�h����W���=���y�Y0(�x��*��B�;�F�����=���Y;B�2�r�+��)
�֓���;?��������f�v��k�=���ѝ�4/I�[�W��m3��MWn%\���(�ļOk�{��Iw�~��1���n@�b�wݲI	�E.(�?E�'{Fx�1�}Z^�=&���w4�!}��!�ξ�ۓbn�-�$P���a�w�#֧���	�\��xcA��Dl��ͽ��K�yfzۓ~�y��n5)����z>���.TDŽۺ�ޒ��o�w����u���wD��YSt:��G���vv>��ǖ��J7��?}u�����6_����C���4�{�����_	u[/���>���A���=�fj��s��sKt^���g�S�����s���#�;������d���a�pY�艦�)s����=��e�305��Z���8��,�.O���_?r�Oy��X05���A���]k���9�����	`o�Ġlmd�s����e~������S�%=4�\��,�*V�x'��C���������G���@?n���7�z�x�/���+��k�O����y��-����?x��ړ����{�����x]�h���o���Ƴ_������VG��mm
��V���_ E(��mU��IEND�B`�PK`x1\�}YZ�Z�assets/images/landing/02.pngnu�[����PNG


IHDR�����tEXtSoftwareAdobe ImageReadyq�e<%iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.6-c148 79.164036, 2019/08/13-01:06:57        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop 21.0 (Macintosh)" xmpMM:InstanceID="xmp.iid:E83498250A1611EAB39BBCF49119F7BD" xmpMM:DocumentID="xmp.did:E83498260A1611EAB39BBCF49119F7BD"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:E83498230A1611EAB39BBCF49119F7BD" stRef:documentID="xmp.did:E83498240A1611EAB39BBCF49119F7BD"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>�Ny��IDATx����y��6�:,3� �@�)�%����8'ˋ��ȫ��ɟ��9y��X��H�c˲������ľ�,l�{���۷�V���{zz�댛��[�UO��[�"�����"��\RQxU��z��\޹��d�b���ĵd�Ғ��.P�bW;@�6�xӹ��֜��U��e)Ŏ�l�Wl�챷�&�C���B^��t�P��eD{����ּ���tN�h��C�(VŜ1��u��9�|��ΐ�_��3"<�$R�(;ʣ��Vd�n;�ՄZ�[)*we�rDju��
�f�]�h�0��,(yv����EE��J:$v�;{�-�O��t�Leε@�%��HH2�v�b�9�ыp#�N���ܼ�zG;�Y�K�h��Q�̑ʑy�ʼn ��}�PLŘ���tb����L���-,ÿ��i��u��]�9Z�㐳ǎ3�����wt�����u�K�hs�G^a�+Ďrˑʲr���ʑ�������U�e_X�@�`ݍ]�v��'��&��-4�$6ģ}%K;$v�H/%���h�6G�2��K��c�K[����8�<�N* a��%���Z-�x�/���0�bG{���coZHZ�6�#�%:S!	B<e�Km
�A�����RbKIY-��;�(vt�NGTLGyy+���Nj���\��Z��!�&ms+��<�^U[���kY�]-7����Q�3(v�Q�h�g�NZ	�7�P�����z!5Di&�UC�a��V��ܷX�Ȳx�]�\�G�����m;:�t	����D�3�Ѷ��Y6B�dbb�����њ���RJ�������-!�#oG�����;Z��h[@GI���-�l��M2�l�}Ymu+��8eT�l����C�����(%���Ď�F�T�򔎘����mx+'���e���hՃ/ۭ( ��9P����g�E���!�RZdt��L��d��	,�+�歴[���'p��kX��7���6�t�
�)�,LIϧ�R=�Fy���2zG���P:���#R��'pD]�9��V�\ߵ�w/���j���6JW=ʒ<J����9��]Iː˺G��ٱGV���+9��K��/^�tr�e��z�rb��Hu�\գ�GG�\�B_d��?F��@K
�h�̑���82Սؾ,"����0x
����c=�|k�����_��Ժ�}�Q�.���	�>D<z����P��z_ʦ�N/����#�T��GhQd(-��pQ�Y8T&B鈩Ԣ��^�#���>Z�\�3�ҺRl��^U.J�>�x:-fd�q�ϼK�p��z��RJx��)/̰�����ԕ̼����8�gHdG���J�^�	�h]^ͺ�M>�$����cSS�^�����z����RZڬw��͎�=wxB[����94��G�fim�d�jw��A�Q�EN�h� Q����r�/1>��LdtC@�p���&�c���L�[VY-v�J��oS�P>Kj���=�Gv�R��J���,��y+2N�s窸�,R��Wu&i9�#h�ЃPЗ*Û(3�#�U�.F��F>#/��j)�diV|G��;JP:"e�̑�-�#�h��k��xu#.�C�>�$���Q�L�g�}x�ٰ��ZA�#��%��ޑO�(/��@������n4+#��x���2GyG��A�\���"��~Q���ׄ�H�Jd�#mA���C���;>��‚����rs(��t��t�9rk9�"�ԍLi#>���P�0�)�q�wX�=�-�b!�"�z�_�(G�H��wdi�JB9bGY	,-�tD�z8������.���h�8D�;���C�h��2�Lj+ZYB�JN'���f��2���uJ�oL��J[�hki�m;⋒�n4+e��m����\L(G\G��ݺ��{gJD��$�%�^�3Js
��H���(�̛�b;�Q�g�C<D�{�f��ź���̓��P�1�P:2��+~�#�R�IL�Z}(���O��q�Ο"�u(�'5:z����r
������"S��J#��("�5�2�l~C�W�C4vIX�i���.�[�Z�~r��4��\dG{ۯ�t��-\��3ɛ�"��/��d6�-t%�G��<5b�R�nJ�#"]�$&�#�͘��"�8����|�^@:���(ԧ������p��"JG���)�>��_�PF�J��P4\g�-1f���C�gXq9#[ˋ���z��܁\�H���ڼ���#�q�D���VW�ia�C۫����,E��6�YUʨKZT�7^)=u%6o%,s�3VD��N�����H�4l�"������	BF� �O���J�n����L�#O�GY�<bJx�hI�S�(P��CbG�ay����t��t�#�Z�9d�y�״�]uڱ��r^�N+�P1�b7��1�J���9Jig6R�}��'�"F��#y�j)�w�L]�P��L��d���&,��=oA�(%�##o�Y�4(s���M�����Gt��^e��D7�6�\��E�m	��Dԍ��ٽLt��K�0:��3�%��G���;2��Ju���>�#$s�搞=|a�8b�1����3�%�\T`���T[�GZ�_D�<���[��T��pI3�w$��9�w���;��O�J�_�Q���<E�y+���S9���j�#��Q ��y�T�2( �Y]��C!"�X�N.�#(|t�D�ۘ#�#Ÿ��<\�9m�;��D|�C�����JG��(�8�:�d���9�#p�*n�����S�c�*e�;@OR�_�qID��\���!|�DvB@@�p��Ƕ@	_|��cK�b�y$��bG�	,�Q:2c:ZT:�:��V"�9r�}��s�9/���9,jT��xC��E;�=]#����Pd�)>$�I���Lẘ�����(�̬�����,-�~GI�Ji���z5�H�W��N]	�[q~�s��/��kjz�u��'��;ӗ�p\�R�)d��d�"��E���m2�.�R���Ѕ��&`�Q1d^e$�)l5���*-_ۖ?l�CZ‡�zHO�GD�'9�����.����ejSj)����h�����4SZx$M���}��O3��Ȏ�f�3%�tm������D�"�\2G@ϋ�㰃8D�;�!�D؂8;"��b�G+^��D�K@���V������p�z�zȠ_�4�
k����%+��褛���u�u*�;�����d�u�^�##u%�B��̒9��N�����8��s���5D�%
�;@oS�S��D$F�p�/|��a��9�j�T�(%�%�~G(�%WQ�,���bG�j��2e(�c:�RW�
V�J@uK��[����r8�82/�����nTr�2�<��8��XՈ���]�n���T���L�ç��B�m'1�= 쒤qU<Z�;O���z��mF���ŎXBbG\�ټEIۮtdt�G�=S����8*��d\E��U��6D1��2r�
��<�LO$��H[��xI�‡�A�%B�Ȏ��r|��Q���R��<�J3�;f^��֑�t�����t����Q��L�I�"����u�:Ս(�`��y�,��9�kv%�%x4!���R��3�#��<|cѬ��ID��+j�dẁ�QB]�<	,�(�W�VF@�Q �/s$�Pg����8����-y��S.���\����鉤Ȗ9�73�������*���pH�+��a���R􎖒Y�*�Ɗ�3�TrK8{%��a�2E��dV����{�+�k�r85�𕦽8�y����8ƐA�G.�"�1��َ.o��٪�/��~����
dW�Ki�}�\bG���Ҧd��b�a�#_X��c�	,���ɘʥt8�$
�H��Gs���<�kV�����J����G�+u%|A����^@��#s�X[�H�}a}�a��W��뜦�<2�L�s��ȣw����;r$�$���pj-�>�-V����(Q鰵��"�ԕ`���sQEsث��8�2��*�q���>?���|��Ƨ_�<s�\�B�ě�`����a�?�p��3i��KMRQ�f0���;��Km%�Û���y����}6���=�߸���5����̳�[�C��u�O�T�_Ҋq�Ӌ�̡^WjG��E�QcFk��IFyl5!F�}c����.��h�s΋���¦
07�yz�J��Q4B�~]}R�V�تG�u:@D8#��%2=��vAI�[E};��$��z���V'Ĭj*��i��4���]��f��u����jK�;���F�����K�p�P��V�B] �#S�H�D���C��/����+E�H�ie�u5$gŇ���w���G��z4F�����Z�!�.-�Kl:��ؑ*V��˷V��)�@�i�#�b6�H�����[1�`�֙+~�#I���q��_ϱ'\��!s2�@�(�J��q�,Y��t;���
�#3�ř�bYd�$�t���.ݢw����>��c����B��O�ȗ���t'�/i%	f�D�r�#�p:'�HQqf��w�C��j|��hc�,�"��J@�`�
�4���!�E��J�K�pf��$�pn�/���؏�X�\�h�Ji�[�r{�-�|����bi������I����ؙȎv���
��:�9*�W:�+t�1I+q+�&/�2rX��v=g��[��@^e$�z�a%�
{R.�#�9s[b[�-�%�<zOui�(Y�gI
�+���__R�2�Xrt��qJGZe(�t$fzJv��ґ8�Сt8;�d�^��y����ʷKoY�cR�z�^�#�"ūV���:,y��>�A$Y.jH���p��E�gsՐޑ�KA�#W��$��s��j�^�����:�۬8$������+���Q��b���__L�L�8����!j�\�)����p��S�R=��Z�B�*���,?�~G�zG�ϩ�Ď���XG���o���b+�"f�JL@�.s���Q
EsH+G������6����Bf��Ν}k��-h�.GF��w��үzDz4}���є<d�NjL�!Z�Īܑ8Kx���u�CZ
o�~G��G�5��h�;��A<#�DdGF�_�1X�t��a��W<u:"�t�:��akr�<��ӊ3�ɡ�ג�n�#|�w�AD`#Dg7�9\*O��3��_\#I���]�C��""Kx����w8��Q
wde����8�Oʈ��9�u{���X�}o�� �!�Jj�+�ԕT��
�HA�h��F;#���a�t�w]mC�:�-gا�f= {0w4Q̃h�=�>B��X���?|QU���l���p���]K�V��;���W��o�bwfQ��X�@�H��:y�f�i�����"|R.	gf�����tXub�+�(�t�'b8��%s�:	Վ��/;�C�������é19:M�c��9%p����(S�H|y.�g��b�
�O�i���G�gTq��D� �)-vW�f�#����F���q�h�+d�h���0��O[�+��"v��"��'��%|�S:W�yRI+��9K�p�p�t�k������:Vn�I:&J:�8�W�E�[�T�b��0EM�9��5�!3�2��P���kF)l�V=\�>���Ѭ]j:���f�GcZ��Q��w$�؊��!�S�Џp��awڇ�ޜ�r�L��2�gX��u�͚�W�t���.����~�ˑ:�=�#P���Q�Ԍ�P/d��Ud����Z��3��5GF����\"\��C�C���y֩��-|1�n��Noq)�Ė��]�p�#���w�|a�ܡw$V�R�X	J�HRzG��a��ߝXڇ#�#�*ޡ��ɓ2��`X������L`�oLG��a�H�#�L]�sh/dճ	����^1B9RzMj_�<�\3�
��hn��t�q�S�K\���� �sP�G�Jd���a �k�O�����G��
�pH�����G܉-�����W�C�(V��G�h���g�G�͒�QD�
�H��ͧt����b:\’H�(��+�E:��G��Sy+Q2��!Z�Uя�O�pHqJ[lGf��
���%5�iX��i��@�L�J����za��L?ef	����m����b���Y�x��Z;��j?��kR�<���j���MXZ���(�s�Jn����H��p(�������V��9����"u�FkQ(WE�Yt�Ni��l�o��>�S�S���'u4]B��z�M;~ܒ?|�Gވ�o����.y�Jx$fu�,\j�0RZ�~���ަ�:4��΍q7g�?\"Ci�-K��X�K�z�Af��uÍ�گ�S:]鰳W�"FsY+�C_�P����I�	rv�-Z�D�8���P7�>/�Q���-��2F�
( �����X)�%s4߷z�ڇ�26W��3�#F�p��jm$v��Q���J�+5OΧw��#5r����<�T����G�[�N���]���ՒV�3���$]���W4�ÐI�p�uR�JG5}"�*tHO@G�[I�H����͑,���,}Z�=�H��V6D���ȧl����Rs0�(�H�yl-��r��'��S�%�XJ݇]X�'���L7�%y856`j�QV�Z�2��yF|��᪑�E�$��=I�OO�ƈ_��'�'�q�"-Ev��,1 �
m��a�ǬE�x�Kd2���J�HGձfG�V�E���͑�����f����!�ٟj�
ֈ�M�/+��s��^�������嫤�Ʀ=V[~�rrQ��G\�G�QKf	�$�w��;� 
�5I�>hN�Q���d���<��V��coJKc�Q�#kIgXG�ґ��b.dnΣtx+�:ˑf�pJ'�.N#�S2�0���G*K�ٿ�.	��(k�!m�R�:_��AT��1�#�#��Nj!ҹ2o���� '+s�ΞF܅�P,\j��d���[�D�+5���Y�T82UZNfq�R>��+W���s8[
�r�;��ڮ�ج��K�"�O��*�aH'��8��bER�Rkb���s�S�zGJ�� T��
6Ӯ���	%��C��Y����?҅���V:�J����i�c�$�3��t}�DL	�E�_�0�ws�ml옳3K��5N�k���CjU\?Q���E\X�Yӝ��TA�F��%I���t�J��Q�7s�Óy+�=��e���4b��g�lJz*|�Y3Ʋ,jt2�׏�w9.�
"}���!dе�ՐF‹t�UJ�H�Os�rH����jq���%<�i�S�Nhťw�^fZ��VWO�Xi�k6U
3�%ɓ�vo���L��i��o���,E'I�u�<Y�`Ls��^��P"�YD;���`�ν��
�+��~:�Y�C�wHK�f���؞2�4kvg2�����(ҔWd\-H�f:��bE�2̠�E���o�[�APw`4��
g�
]00�xD��0�G&�J��	W�T�Q�d�H����0X�u�y�l�
�(֑7)0�4�r�)Z�>bj�zؘ�r1��#���Y£j�+�
Mz�;Ri,���!�h��,z��V�;T&K.��7�Ε�&dڧ}> y0�M�ޭ6,yd�xx";|%<zGb���b��^�#ђYR�h��Y2�d�d_�o`Xv��w�&u��m��!3Τ6��f���@W	�<�s�%�L�##�C�uS�%<��;�J�!I�tj���;��,B�V*�CJ|��
fi�
m��h�-���n�9
(RJ(:)|�����J����?o�M'=��o
i��NiqY$�;���
i�D-
B�z��:Š�o�z�,rt��ݩyg)�@W���4"��Gy ��^�˦�T�G���&�1!�)-�|�`��FpGm)��*V���H�h��V�Hf(�+�Gg�<9,I�\ @�i�
-�L�q��d��1o}�]��):�0l�p�UI�!$�eB����w$�z���Vs�$I\�Ibƚ�ި�,��r�]�4lÙ,���;<;f�3�^���#~2��o�&:qm�J�>�c=�@�J�gl�oC�P ,yH�ȡw$F�S�0��h#Uv̌1�;;��a��փ;Re;�k�ؑ;�/*��8-P��9�t�(s�|�i",tΙ���ن�'8���'��-�;���m-�AZQI�8���	��;�֎�;�Ri��y���=HRV3݉61���,i[��̝Ճ;����x{���J��PC/ME½�V:Z�9���d�+���G�Y�O�eX��W^L����=�����%<4�B�m�;R�Y�E�9�ڠ�ϒ.����b�gi&��u��n,^�e��11�5;�wp�1�:P:�M��t
�UA�..3��3�H���1D:B*��(\�
�(_�H��YX�𥱤v��x�f��Y�����ܑ�}D���ĎNH֘���5��X��sJG��~95��øS�J��R="SZ�w�sS�T�C#�E�TQ3�V�" J���+u&��5����bF^���*�#B-��d1����̇Ս$gK:㩱z��^S:ʒ9�G[�'�&J��e�T��c�y	����*�Cjf�7j���QK[��$�w�$�!z��&�jv�T�^I�e)`EU&�W4pE�u$�ſ>u#���K��@O�(rj����j�Y�0÷�6j"Ό{�
�'y�y��h��ۗ�jE�zG��Z�w�X�.�o�.V�ڲ�BW�r��-L���˔����o�!�&vd݂|�K�������t�C�_���2�9*�)`d�����=��Q��J�0'��$I'zԅ+i$Ѵ	��I�z�6�����Y=�#���	��m�fGc��/�+�2Y2̩��Ŏ;>�GyĔ&MU����=��MJG+2G`I(Н�s%��W����%��2���=�5-��բU�H��Њw���Dˈ��NT��ՙ�!sHg�RGZ]�H�eI\�.��02�C��Ȏ�B���y?$�A� @鰬J�j���KHl��%0	5��O�Oc�@cN�+�zs�.Y������!��@���;UP�JG@�h�ƺ�4:�4�;B�>xWZK�ЌZ��;�%�m�ZϺ�GO�h�BϺ|zB
�U��J��@�h`V�8bu���iE���zG���,�ґ��r$��/�V&����ڌ�S�4a�����ՙŵM3��*��R72�;�;�#}��:���>�K����!���:%m�ґ�q@����A|�G%:-E_��¥a����Iw\i�u?ؙ���;b�;4�'B%<�=Y��,���H���6��Ō���L;�Ś�{���F��|���#pC����e��
�E+z�[�J��tϘ�yU�#>��j�G|�Gx���-��t���%�b��;\�M�TG'��ҕ;DvpGJ�0w$I;�2]�4"�C�N7�Fv���LZ�(i��
4�›�ӌ�l��~5:$S݀����DtK��H��ޞ鬖��^-�ޡ���Q:�&M�f�%<�9�Sk�ʝ*��,��9*���H����M��u�.��oH�n��X3��,�����?��`��ނ���`�MRc�&
�:��\d���]�Y��y�c�����o�|�<�������7��bz����S�|�az"�w$vsw2�2�fg��W�3G�ę7c��SeJ-�]�X�C۩���bGI��̥zD���:�#�v0[�mP:���d>��3�u8�s#�$��a+U�ޑ!z|�;��J�V���pU-MU�Rhf��Iq+f���6�#�T�xÒ��̢�\Mk%��2]������=h+�'��k�a�t�R�!|�,��=T��z��U:��Kfhy�<�l�r��®N>�������0�h�xd��^�,%��g	w�Ҵ�awf1�;T�R%yX�V�p��G�G���~
��4���Vrw�u�a�{�,P(�*��y�tD*�v�z�@W�Ydx�(ڇ.|��Y����̉{�|d��{�i#�����wh�r���H�b��N��Q�4Q�,��8rO������͢����ɒi`ˋ�(I�7�57b�e"�.��2C�Ȗ9G@��&�����A���t�$ZB��z8�<!��������`'Z���:�~u]�� ��t���;�����Lq���q��a�m�x8��*�C��l��*P�����z2�}K��K��X��S���|>�t��Hh��:!#�\к���4w�H�{�
sO�d�&u���!R}a퇐��,1Sy@�F�C*�#*�œϢ7�Mh8l�0�GL(��hC�ڲ$�ޑX�;�J��c�?�$�2YT�����Yy�8�;p���E��jH�ҡPJG o�%s�#A�
�0���T@�
F&�>��#�@bO���i#W�_p��0;g��`!���7�Aҋ���8�v���Z\�I]�P�GZUpw$f�Ҵ��Whk�;.;2�_���_Q�H�8�MSSY��o��i����8"��i����>�C�¨�h�9B<ڤwzO�H!F������R]L��Y�n0MK�Nc�$�R�2Y���4b���YLɬN���6��3a���Njޤ�m}|z])�t���k��G�i,t�t�FH�0�qH��ѐ<D3�=-y�D�����I��iֲQ�U-����N	�hΒ�1k����Jݾ5������rG�ʔ&�|#�#���
�0�6o�vR~K;�ֽG����!��).iáqȆ�w�qk"�ħ�Z�)���UMN�$��A�'̢*\�ƴ�N"]�P6�^��}$�	s}"��fQSõ���<SA&�5�5�:�YL�ڲ��Y�ˉ^p4�\��wH˩���
m��g��+n[���ⵀ��g�k�ki8j�E�9���ԏ�H�EO�b�[P:B׾U���9O�bV]��lT�v����Q��w@�2��iA�I%��禮�U��~��;�����
_wC�L�5̒l����,�b�J'�z*�ґh�Z�;l�.Sjy��ꦖ����B[�Y�t������EzG�:b���L�^�1�Wd#X�o��`	�l�Rޭ~%4�@=a����R`
��A@O���л��%K-��95�6giL���3��Mqpw�G^ў���s_�R{����Ң��>*�>	ӚD��&� s�!���%Ћ�HN�#CDZ�1�z�y��uஔ�gd�:��`�ۊ���UEͩmV�`���k��?�!N饅�5mV��푫
mZ���UK5��g��.�D�P8��i�(��c�2B@|���
S��En-���}�$X�N����9�����75�8T1�w,z��� ��M#QQ��u5@EvL�"�ȱN+M��;TpG��I�U)2�}hz�T����`͆,鲙R�G�,�I����=k��?
h¾i�*S��`�O"e�2N�@���:�w�r��R�#�]��D�?S�vĆC���
��Ӱ#h�Y��FpGjפ�wxE�����9r[�x��R�Ϙ�d�j)S_K����S�ȶ	2�d���bfT�hN�zG+�,P����]�nh���l�$�z�H�v��Fe�fEcQY�/B2��h��G��eT��J��A]Ti�O��Ҥ^C��%}�V�y�bG1�"I՞���V��d��zஐo�T�FZ$&�ڧrhu��3켷!ܶ�MkQ�[��h�F1�-D��0����^�\T�%�z�ՈtqS��h�4���U)̿�Y�C8�;�{1�n��M��4ʱ�j����b��:>-,8�X=;<XW:`tD�H�tl�Ù̒�R)`�2��Z��;�C�Z��c4R
e���NiI�[�jaX�Y•J
�C���jSx�$U���!u�Ď�0v_;�B��k�� �L���k�G9,̑�d�L�i�����w��+���!��:�|�T��E��_2K3�#I��,��Ju�B�k�L�$���i��!�}��	,1bB��O�n[5J��@�J2,m��0�����<�{Z�xG@��l˂��j�C4��F�;�C�E=<A��_�T�HTHb���%�kV��;�
#�ū�|��f���Y���;�M�3Y�R����S��d�H
&rG�t}������B �%ef`�K�hL�SѺRP+E�T�J����;�!��TA�Zp�݌6m7�Y�"�.���=�B�<T�چ�/͇�Ӌ�	�<T�[�Ї�o-��"��l�HO���k*�̦���8�9,.
�I��sG+�#�L�)���Ж�H? ����-�=���C��hDO��#;��,I��S��Tp��\�.0���-�ސ%݃�)EځQ�����qI�L�R��f@�0j���#��}�wЛ��E+�JtF��oIٝhso���;T�������k�ʣV���1��f�BOzQ�J}�h�#�t�����2�F����!���d���ү-̀��J��7�E:r��@��s�@�rX��MY,�}wk����']7;gp��Y�78f��v�w4d�T���1�,��
�HT�_-�#܆6�V�,���2��5�z���G�qj���J����e��֔��D7C�W�g���Y�,��s3�s�>���F�D��;s�VT=�R�Y��Y��lJ��љEw4Tak��iC<
uf�J8h�)�ʯZr���a��yB<2�PK�1�	Ju��ڇ�����I@�3q�j޹d��	wz�J�?�<t���S�;��,�rQ��Q��2�����h("�`
��2F���KD�V�������^�mx�}E]�l����&\;��sB�lk�:I	�@�nF5�C��
+�ޘ��4@:6�GՒD��S��o:���,�+���3K���Y���E(�8�a�Im���8���^���"�J��'�tf���W{�L�)"��Dv�$S���K�zg��#��j7���|���4�����Y���9K�NJ�3�H��0\�fp��D=|�e���W5;�6���FO�[Y�'�J�n)���c{2�&=�`G���6t]��^)C�ց���T�*GJ�߭�@&nn�fs��ga���ʤQYCk�b����T'��-K��f'Z�!z&K�f��Z���K�v\�{Ѳ2Nm���G�b:�w���:0�{��v��c�.
T��^ݳ��T:R�B*�E�%R�eS��4���E�/�{,X�f�Ն��=&�QqC8[Ϻc:�F�Ŏ������
�z�+�3T�6#�;�
��C��DE�;T��Q�;��Y�aFR�unt�M7��
K�H̚��]E/�!2�^\��h�""C�Ď��a��O��0rX�	�"�f�TC�0k��;��v������L@w�?�jzG��PzG:��.T$z�F3��j�}���z9�f%�X�R�Vz�.��Tt�#���H"|��̖UB�&vR4��4�u{~S�J�
wf�=!3C�j��l@.�4B���,aܞLQ#��:=�0"'���z�6$\�4��S4SVT�T��t�t�Du�m�"����°WZ�W���|�n��w��I�p#.�#�-�7�E�R�J���C	���F�_JV:p��|a-'�Q��w�UM�pV*mZ�-�%
�� �I/
1��d;����`�I�d��j�|�p�PZ�,���f�@��e��2���(M
����\]��z�t��D�	�d����H!qT*��;D3tC���ʦ�NNq��J���{�$����D!�=F
�\]��O��N[�Hp���惭N'�Wk��d�Q�@�jS}��dq��
79f�L8%[��"*�d��)�J��k_�_-#��Ҕ+LA ���4"A��p�B��wo��@َ$i��g��!��
��8j�<F�񓙿�K,��&s���-w�8���YlpGE��(V���y�ې-z���DU*M��,
����f'�tҴ�j*#�LՃ���x��Q*���2���sҭV,"�o9e��P��s�1�����A�٦k
XE}R�¸��Dm���Ϣw�,���Tp�*Vڬ)���eJ�Tgf��ZI�ґ�T*rJ	z�#��]�V���2��w�Vp��-�ޟD��_��>&��=������U����yw�G�����PVw�+�d�z|G�
�..�R/Wڌ�Э����,��g&K�ێ���Y����M�r��&q.�7�Ő*��|Y��ۃㆁ�`��O�>��ۙ���=��t��w
\�j���R`�5G��5�i,�C�~�Q�T<��"����a^�������2K��7��_�U�C"���g���#�@��[OEV�HE�c2
PA�Y,�LfQ�zs^"�o"n�4ˏ
�#v�3K�aO
#�6h�X#I�wؕGw|G�1����l�a6Ev8��zK�n���{hvP�͢��o��˘�y��$���d��dՓ�۲$����K��7M�Ի�2Y4�_��h�0b|e;d*$�!Ө��"E�0�����wZ��[h�q��tUs��0ku�"�l �h�Ƒ}��<����k)j&J�ВY궁��j�-�|��hI3��^�T6��:�ʚօ���!=V�=۶�OUZM҃��L�q$gX�ɛ��3�}��#p3�/0ӓ�T��t2�4Ăi�C���^T���+�%�){2G꾳�VVz��T:�J#Q�bU*M�C�`���9Kb�#-0i,"���VK�s=�]G0C��KL-%)��`�&��{�
޼�z��RF�����TO��і%�_Dd��K*�{��T�@�}BNF̐����a���+Dh���(y9�l$���sM��:qK��Gj�M U�D�x�&04{�$�4���,j.��d�n)�4E����ۗ��(5�\%;�#�I/ە�1���a�߶Bs�#�'����7����y��T������g��,�z
f,F�����ɒh�v[����(���}C�>�����lY�(�n,�6rt���+��q"̫v0g���w	���t����7�X�q�#5缪�p[K<� U~�����<jΫ��6�;O���`R��->��k�O��������7(f�ݪX�">�!;PS+�J�d�1b:FC�rG�AN���(�`c�T�D��?�����0��w�[t��tD�Jw�����*��Yx�'��p��U���v7�_�k�b�
�D4�V��A�h1�6�B��Q�*w�f�����SV�ؑ�2��F"ҙ/e;�����fN%j�/�]�rmV��b���H��Z�&̍�e`�	3�mwY���C5J��x0G̅��k4$+��l�bf�;�"݉6C������:��1�N�	��F!}�xK�$�%Lq�2;N�\��F@��3�.n�3}Ò���0�`֛��K/�ްY�;�d`�ճN��^���2�vH_�e�� �!�h�(�mWy�.�f�h!q��Ǭ�}[�(�@OL��M1�Н�M���
��.*�Q�41Jf��}ժܑ�%�J��?�z8�f�^E�dc�A-���]l�ߑn%G����_h�75�ʬ:_����)��<\�z�b�C�s*��Y���a�s5rC8��Hf�kv$���`�0�K���G�w��,�˜�~q�:�KGV�h�1-�u�Y�3�U��٧ė���!S%9D���
D�B��%�ȝ�Fg����U���u�Y� ��k]�����:�R�LJ�F�Í�X����!���l���k��~�'Dڱ�\Q�i�|����ΉfM���>T�5�0f�\йp��Й{V��,`nb
�^b*�F�Q�Q7B$��4�li��p(F	S35ƣ4HgT�gJ��*�*At����ץ��ޙ���UG� ��D�ff�5��;L����b���ڕJ+zW�ڪL�X�?�(��^w�m���;��yV���i,�Ŏ���X:S̽)#l�N�z�
@�#\��#U��/yȌ��*��)P����g�?a%�f�Ρ:Fx>��΋Z�����쐹Jk�b�����2������t�tf�K�e�!�٪�,��҅���WlFF�(���!E�>)�&�gE��!)f1ó��Ypv���DB��7Mmz�ө(���'��Pф���+��k1#��{��\	�x�b�By3��YrvȈ��=~�(wIf�F���@Rw�RH���mA�)r��4��^��%����ƹ��1�+����	!�8:���;�,S�/��h�J��ma�	K�ާ���K�S.|�/,����ݤl��E���!�'0Ӟ��}�[�ّ8jv��j�fع*�u9����8�1���̸��7�Θ��4I�@��M�lݏ5�՚��đ4t����Xa��������D{�<BvF[L��ȬgZ��Ď��q��Z�޺u��ݻ���[�lY?�	�c�
�L�c���`ga�	ΒA�H�����6s���/b�
�E����FW^$B�MLNN~��'~��K�/^��c�=��[�lY�p!��J~�3D<Q�V.���֐t�jV�����R�9��
�.�4��eO�`�p���_��Wo��ƕ+W<x0o޼C�����+���ꫯ.^���
�y*
ï8��.�Yx�aY��*im�dX鐱	��b�K�;J�̒$�[r�Z���������_|����,X0555>>~��Y��O>�i�&�d@�]mY��mT���SN�9.��,"�&x7^� <��,S�F�Z�v��X���l�@����.������nv�J�&���[�x�E�V�XA/D�r�S�V���S�N�yH�iz111q��ųgώ��̟??�(���e;�:�R*2��b)�c�D�2�1�Id%6`���Q�RhybG��JsO2��P�K�.���kǎ[�h�O�`���?�ҥK�/_>88�q��իW�Z��\���<�R�7'''�/����'͞,�7�iL=D`���1W:�OLjd��s�cŋ�����υ��"��Ʉ����'N�8r�Ȓ%K�7�4�;��������{��[�l)�[�������ݻ�"KR�x��!�phhJ�CS��������hT��z��U?��:�eI{�C�(⤗ь�l���lg�;fD�C`�Q�Z�r0E��Ç�<e||�ҥK�~��_}����J����͛�s�Χ�~����{��m��رcǦM�X�@/OQnn]�z�UO�Rc}�u�,Y��GǧS�ZhFn����R¡�g���R�̛7���.v�b�F��j�z�֭Ç�߱����6lh}H;v�я~����?�qtt���~����~��W_]�r%~5��PU'b<Z���\#C�yq�<"���Ջ�'C�}qb���Z��//S��=��l�i�*�Z�c7�;z�������~Z��o���%K����^���M�:���O�9u��###�?��ƍ��D��^o���u	;��Z�R��D�L��Zu�Ƚ���*�%���mW<�Ͳ3&A���T�U�R�^�zٲejRA/�߿?Q�X�`��>wK�v����,]��G?�Q�c��度����z��ϵs��rB��j�8+�H[����~�R%jz$��ꫯ�͛���.vܾ}�֭[���gϞ=s��ÇU��J�R�V�\���'�8p`ddD���_7oޤ��޽��͚5�ׯ��+�����$�����ΝK�,��>���uZ@I*,X�z������������h�<<θܴiS8���|��9��溧6lX�|�Z��t��
��{��+����_�p�
C_>: 4r��;w���Қy�7n��T_�v�F�BRӡh�tx�X����~�K�.�.�H�kŊ��Ë/�I�KP9)��
Z�HVC�������Z�������?8Zg{#;d۲Nd��y�yBp��O<�ꫯ�G9��\�#G�����޽{������S�>���իW��N����o�����Y)�wh���o~�/��/'''?��Ç_�p�����ѝ;w��?�3��7o�����;��
��z��<x�{�����/~�w�}W�a1�g�������A��O~r��Ť�Yfbbb�֭���@_��]�~�����<y�^ߺuk||�v9i�+Y�lٖ-[�����c�mذ!2g��w��
:8Ǐ��q���k׮ݾ}�FΙA�w���{nǎ###��ĉ��o�v��:�,=x�`�ƍ�ַh�E�4����ti����H~��_��w���l���ԲNb�-T7��5�:�Y����)�%s�i��ѡ3�f�…�r;��<xp͚5��/����*	��W�\!���_���l�\�/�������r�\�裏=z�>"o|tt���{���?<<L�Ҫ�޽{����Ǐ�G���/_N_�w���i��'O�&x�ܘ�^?��s���S�&������
���Ъ�͏?�����-�mll��jp���ׯ_�|��O>�o�ݻ����FFF2�Z�����:4111ՀwV��v����6lx�嗿�o�^�z���43�e�.\�p��s�΀�1>>���o��T�
�������ҥKqn�Z�؊�
A����,"��FI�ʛ����h�N8�;ڜu�B< |Ȇ�j�휜�����䟏��*q�%nܸ��Cb�taA��9�ԨV���q�jՒ*�D��H����s�ȑ�gϊ��3gΐ{�s��e˖�&O�6J��{�.�%������755�����w޹Y�>eu��G��w��������?��O<�k�{�ڵ���o����ӧoݺŽo�ʉ��v�666FDŽ)��V�u�V:�'O����d�����'NБ��{���{JG���z䡡�-[�$`�ݑ��)#X�X�En��#�GU��s��̈��y1�;�v�����?����GFF�9���>$�]�,���e.]�t��9r���j�M{��ŤQU��駟>r�ȩS�h�;̝;w�����ׯ;�رc���}�.�gjjj��ͯ��ʢE��=�駟�X���C��^��������i=v����[o��ӟ��̙34T{�
�;N:{��o��`�������5ܾ}[�un޼���oڴəDC�~��G��"���}�ҥtжlقS���6���,w��
|��j7-6�m-$Vv��Υ�t �B�vW^��7N�s}���N�R-�U
N�T䇆�v�رlٲ{���Ĺs�>��g
����'N\�p!i�S�/.\���.k���ϟ?�ʕ+,LMMq)����\��4�?����(�P��������~��i��(g��:Y�P��ccco����}��|��7nܹs�8j���=��S�V���څ>��+}��B��t����褯�W6�,�$������y��'8w:]�������MD�>11a�/�U���ӏY���&�X�b͚5�_T_߾}��={>��CZ	mt�V��w��������3�Z�ĉǎS�/8)f�֭��+y��?��.|��W�¡��e˖��-ZD��ܹs�ڵ��q�"˥K�>��c���͛��@+9~��k��v���%K���9SSS��A$�pC_n��Ι3gh�x饗>���/���ˠ�n޾}����_�ر�HK���ɓ'ϝ;ǵ]YK�6lx��G�@]5�h4X)&7C���x�r���D-Т�/+�'!� ��>�x񢞟B�X�bhh(өf�aɒ%�֭[�~=y��ŭ[��s%��g�=|�0��\mt޼y����O��p��PO*�w�ޡC�>��s���W_��x≽{��.�]���'��������w��M�’
��ի���o�~��˗/���*$gΜ��OFFF�F-|�ҥ��zK��{Y�z�s�=��K/mذ�>:����~����:u���e˖mڴi�ƍtXv��E�O9̄�tjj�ȑ#4B:h��r��9Z՝;w�lDLJ6��/�0�Ui�J�EI�Z���f��$!E�q����B��<��Ç�o�~��w:4>>�
sry��֭hpw�<��o}kժUk,�9�%K�l۶mpp��p���?��͛7�j��͓'O޺u�������5�<����3�ܿ��ݻ_���{�1C�%i�4Ÿ��*UU���^�|YU*���9s�w�����$-�&dSSSCCC����/�]��%�M�6Ѷ�n�����G�ڑ���^z��
�6��SO�>}ztt��Bi~���i%-q�_Z	@��ж�{�9b��E#�*�r����hym�\��8�;���z�739�����a�s玞��B��G�9|�0��,1��y�+W�\�~} ��5���������}�v{��q�[�n߾}7n��V�\��֭[��K/����i��ΝS���nv�޽m�6uߡO7m�����W6P[��7���_��w����"(�.k(|�Ξ=K�~jjjŊ����w��56���5k<H���紐��ݻg��і�>��C���"m���r�\^rll��F�e�����/B�I#wv���|=N��LNs|ڑ4ڱ�-�E1�RS*e	�1�eR�,1���b�6;f�)�����ݻG�E�-_������LYf�aA�5��7<x@��Ŏ'N��֩�H6�[�>��#��͛7��裏��Ȭ^������͛7��
��y���ӧO�08�abb���p����H����߿e���C������to�S����W�u�ڐ@K��WTd�����˗����{i%�ׯ�ַ��r�J{w����ϯ]��CcR��J��H���ôBՓ�8�'O�ܷo��ϣG��-l�ܵk��O?�j��7�<FҢ��d'���ɲ���/[�b+h�)������
}�e):]�ѭbG)BW.�N�4�O#����ʫDLNN�dKoڧ�A����ի�o�&H�i4�7n܈9��=�&a�[C�k�׬V�v*l�٫߽{��/�n�A�-^�xs���.ܶm��������>LN��M����s�8bŊ<�y��q?z�h�Bw%Z�ĉ�w|||ll�n���F�:�w+�FLQ0t��{���A��͛7Y|Q�������n�K�.ݳg��#��O>��'�|��g\%���Ǐ:t�>�
��=z��1Vm�F���۷ӡ@�$�~j�P�E�,N��L8�d6ɶ?�A?w�&�`��#�{�ƍ�ׯ�y�/�	%k��ߏC
��Kh5'�䤵�]�)�:J�H{�iKs���ѱƱ�OO�T�0ѷh�799�~c�wJ젙+I��=�s�Ν�˗#�f���!
o��n,sН��$G�o��o����)p��M�6qH��Y���W_={��…i�Z�^���}�6l�@7�_��W׮]��0��nC���^ړ���{��[o}���toJ�S(=�îf�g��n����y��-[644TLt �v�v��1Z���Ҏ=z�����\�x��I~�e˖ݻwǗ}`F4�P>|819�M�Ďy�*4o��.^R��V�����n�"S�Yxʔ�ߕ+W�L����ҷ�.!����j��HSA)Y�h��7YF��x�1�Eʶw��)�2U�#�M�t�
�c��_�5�a��ZfŊ�7o���Y7/���O��R&�.ܻw�;�s��iuᶸ����GGG:ąBy3m������I�޽����?��'T�6/�;����<�l:�1���������裏_�t��Fi.\8|��U��9��_�8U�ƹgϞ]�v!gt��A�)9��ݫ]n�m��u2o�	+�&�,��_200��@�LMMq����E������H7w-Z?�h�@;N))I;�SL�df�u�R<D��6n����/^��	&�D�R�>���让?��
��@<ܜ�7��d�7n���/����G��`�_JbW�M��gt7�y'�;v�>�Q��g����˖-�U�7'N���/I+���S�<�W}^�<L�=a��>ռ��t��m�,��;����V�iD4�˗/���;w��O.^��Pα�a<���k׮����[7oҜ�ÇRVE2��R�T��$�MMS�u��r��%K�$=��B���z�dٖ.]:#�QJG��l���LʂiY��l�J��6���^�zUB��/_�b�
�}��P�N�2G�%��F� t�#>سM�����k�x�Js����v����p��%�YȖ������|���47����m�v��MN8Y�\
E��Z�w<��S��:�sq��z����^{�kB����M�^?��#�>���q���?����Ӭn�,�߿�޽��GL|�ᇿ��/iU�c��(�^	�IØ���y�@iR{�J��w�	>��
6�۷��7ߤ%Y|�ՒOB����s�+,\,v׮]�
����+Wh�Vm����:G|�U�.U�GFF-Z�c����#]�lC:ע6���l�>�
�څU�V��ܠ�������h=���W�r�9��5"
���@⃾�p��P\fQ���n�3K�=��$G7-�v��[_��5�L8��g�y���~"d��ϟO���?��#yk9��(%@Cڱc���:�,�o?r�M�iXF��>|�p���{��ѧ�ǎ#�K���������֬������[od��˗��МI�;w��ߦ��3��ԩS���:}w�޽_���l��@|��ʹ$���"��ׯ��7�!O��±$�Я��/lڴ	�3�NFGG'o�9�i���W�^^3�	�Vx���1�sW:�,��w�r��2
>��U�V
�9b�l�R�1Q��?WI��������S��엹��,ٕAf�j�e�M�:��h�V<m=�9s�ں	��	7�{x饗����!����VX�|���>�nݺ�/���ڑ��)�)�9,۶m�-�ݻw�\�r��=�D��
����?������3g�p���Y�x�ƍi�O�ZfѢE�n�z��7�
x������4�'N������wr�9B�޳g�dٲe��GFF�����y�fX�"�֬~>���v�2�@�p����I�G�O�,X8����>��0A˖����{�W��ĉ��F�T�� ��/OVe�ҥ,�����*�%�2��L�B��n��A�-)�Q��v�뇭�y"͒��*"���bG���J9y�$O�hzG�+���L�&�zi:8>>~�Ν��	���@�)��zr]�4?�y���Ą*�Lc��#'߾}{ll�[��Ҙi��%K����9�t0d�jD�%����}E����+�:e��S��VNir�w�`�K�k̊��4Nr���w��E�g��Bρ'�u����M���iH3��g�>��c�W�V�eGGG_{�w�y'i4�M�7m���SO��7���>\�W.]���.\��׿�MR�t��)Z�СC�#�ݣG���ܾ}������b�=�w��o�
��
/C�ɩ=�֭Ýt!�޼9fǛ�SM���}\������\��p�_�+V�X>�Vf�Ni
791I����<�~[+�ӿd	}��,sҚ�V�P����W�P.�S���H3O���}�Hc�K��S�i0MD9hB7Jt��w�����o��a�_�j�BDŽ�`O�y�M/T���$�.E-X�Y�f�׮]���
h��fZO�!�_5g��G���Ǔ~��s�"�-X��΍7h$j
4l�ih[�nݺW���g�O6V	:�S������֠%�����S� �j��G�y�…�k�A.`f����ݗo����#�i�@�~e�%M��7�8�9z���#�:W�����K�@�pU9]���њ�"y<l5�U�V�
���Z����5�F2:�l��"y�I��"�&4�X�f
�'����)�lڴ��'�|뭷�,ӹ;7nܶm��S�}�G���/i��~-@w��_��͛/������vp������|��2�
8}�nݺ�=z�K��2�I������w�y��<���ݿ8��v�f�^�v-�!�Ӟ�޽���/겎���
�tg�i��j�~�f-.#�&M>�8���j��M���v�.�+W��J�pd��7���5�`j��b������b���P{6Ȧ#���Z�fԴEվZA��4�>�D6u�қl��c���
�x陶EDŽ�eO��#�W��;
eCX̵�>}�֣Ųe�2UTފ�ϑ�]�n�������)�D]��B�j���%N�wQӧ�$틾�t�L֠��~�24�iq��CC	����������{Ot��\�z���ZPD%%��I9uG�ء����z�SX���Y��}���S�i�ufw���k;X�{L̄^�Z�m̟?˖-�6m:}�4Yl����k��ܹ��Hj���O�8.��!�Ν�����C�-]��C/_�L��p$�`���{�~�����~Fߢ��CHh�Lw�(�5�_Z@���
V�;���׿������3g��4x�����͛gET�kЌ�x/Y�zp�ﲢ+b͚�U��Z�`���q���+W�ߟ
��tٞ={vdd��Mh�ׯ_O<��"w��%�!b��n���tX|%���{���[�St^��ŷǏ�-f�
�B�Vv|�ݸq�z�+r"�'�%�M`w�M�UA�&J���,��{�'�L+23��7�s���g��ώl[��/�HZ晴�����'��Լmn�ʕ��gDT�2Fd����S�g�Z�?��c��̆
���{�����)�bs���{l����1_�p�Ν;���h�K�h���&._��w
�dy"���8���o߾}���޺v��b�ŹU�X��v�������/�ߴ}3�Mo۶���.\����ƿz�j:v(8݀z����j`����Wh�iWɡ��.�S)��W��޿t�Y�v���T9�B68KB�2vN��5�?o#�A�iL��DŽGBp���іk]���SwlԃD��ի�ҋ��I:�a�'�WQ�Ӊ~��c��������	ڮ>���B�A��ϟ��!k���M�7f��"#���io�,p��t�߃4�rv�3�g��J�J8���͛zݵ��&��E���4<.ϡ�M�����y*Ic0�5h=�G��c2���ͳO�/�;j�ݧ�-[V�|]:�h�D���\��4�ݵk�;�s��U}�� �m۶�[��_����͛���o�}��Y����K��y��������96�"~�����/^Lj����^��A�׬Y���~�{��R|��'Ϟ=K{jT������3�<��Ok��e:��]=��^OG[�OXާ�ׯ_�jz"�z�.��ث��Y�a
FGG7n������5S��h��>>>�b�
v��&�I4�E[w�c6z��5����&h*���^���ۘE���,��1��X����5:��bccc�A�
��0��~
����Ç�����.�>��x��ܕ�E�E_��0�ѩ�&�ŪU���漐��"�3�J{j��8We51rj v��իW�24û{�nft[Lr��"��d�t��Z���C���


B5'-s�/�>� �����6Z�w��^	
�P�iVj<��Bv����U�>��۷�C3��p��X9�G�f���'��0�-v�iH�k��@F^Ր��iӦ-[���]�"���G�m�f$�+hz���~���o��ƙ3g�4����hi�K�������#�B�������ۥo�w�����ի�n��z�,R��<�����y��}�{�v������O�\�b�r�#t6oތHiеǸF�զX��n֞�ߦI�d����ҥ�+V��)*2k���>�#���v�f?�d]�\Ń.|}�y�˕;�gw���Z�߆�vM�q�!˗/_�r%��7�&H�[!
�F�)�\N����Yth42�d��Ѡu�E�����)7�_�J9 d!���w�����-!}Jۢ�4ʰ�x�(|�TM��H�A��a��4x�t��BG�W���tt�,�MaL�+�5�r�-�z�Ku�W�Zs��ӭG.GvDUl^Q�`M�'��޸�n��2�B�1��X��l+�^��aȒ���lٲ�F�,�g{-�����TX/?6\�~=�<0%c>88H;-�st�PҪ��(ܰaË/�H3��ׯ����^xaǎ���m��W_]�v��~���G�Ҍ��_8����jժ]�v}�;�!wBU����;t}c�����g�}���?�������Oq"�h�f��?��׾�5�-��'����>�A�z�;���͠�,�b�C�ӱ�����D��l>��Kx��B���Z�����Х�v��S+����i�lLkY��+�<�b��ȵi���t��e�ԓBt�%3�2�O�`4���=M�cf��(9�
[�{jt9�空7A_�чA˓��`�����XT�%�6�w��W9��ŋz�kV���nh�������s\�p�#���d&�Вt�*��!�r��
��"�2�L�iC�Ze��v����3	���v�|6*�q2'�&^?Y(Z3ٻw��u۷o���'��zJ�]s��ʟ{��\od����˗*��D�o��o~���d��&��������O��nC���t3S��h�;w�3g��_D7�s9���~��[�a�u��ݏ�ҧ
~���#����K���O�	���Hæ��MGE��p�%�o�7i~�r�>�S:��?�|̝��9��B|���W�J>�>H��L1Z#��~*BƄ���R��&�d��	7�O���%�0}�L5o�O������K�\�v�3g�3?v�Ǥ�<G��
�5�n�����.���4�
��]�r��j���0�K,q�#oEUVb)\_!ɋ/*o���;f��ٸp�=��i�eh�%�f�N�@;J1��FӨt�u�������,�CH�N�\<!V���R)�/i+�~�a���7���c�dH�k�"�t��W`�Kj�2l���P8�\_������l�g��Λ�����~��͛7<x��+W~���;vL���-�[�n�Νt+�Y
�wJݷ I��WYm&&���S��dV���F�	c2�3���hZ♎ӋD����N<�{NCD�1��9�KN���@����Mu��w`U�q(1����;F/a���K�޽{�h
���u=11AkX�z5*�E=��K���ܻwodd�wPe>mcڎ��l��ߣ���ܫq5l3��;��p�K�.eJ�@�
�������`N�!~��g7n�x뭷~��_~����k�����ԙc����ϢZ�f�ϯI*K�v��t~�G��8���Qg!��$_k�v_������){]u�{n�G��&�����-�)��eJ�_:�w�޽Wcxx��Ď>ث�y�&ͨ|3�NN�8�&�ccc\�����g�����lذ��?99�b�t_���ی{��b�1Ξ=���^�z�ƍ'O���߰��}I-\߾}###8h�k��������ڵò*��W��?��y]��ҧvNߕ���%�zh�x��F�th@/0���S�x%��#����K*:�2>>>11��l{+���#K�n�:�����w����i>�U�-Z��qw�3�f8I���15V�088�j�*n��'����eƎv�͌�}��k׮qu-5W^�
B��#�+_z�ݻw��?�r��_�x��T{)�ܾ=>6^�Źc+�'ȗ\�x�b�Z�$��w�.�_�����y���3���!Q\X_�1�d�{h�_Yv�wڲ���q�wݖa�{"��wxx83��ύ�{+tZr�:[8R�
� �[�bG��
�t�U�n�
�����3h8�ocׯ_�u떺��e�T3?ݬ;���W����������I�_굗�v�@�8~����k���
�.�UE��ݻw��\�~=�r����X6��yZ�!����d:)`�X1~k�f}��+WҌ�Y�`��{MŤ��WW�^ݸh���b��\��ZXW�L\!��׫�p�sgtOi�I��\1�4���i�t�FFF�ݤc�↲�15�0e�N��7����z=�;w�#`��v���3�<��&�7;t:�ii,�:�bG�`�]���.	^ �w��9��b�
��;���߱�6+4S��,�(�����w��]�l٪U�X�V��
h��Hm*M8�T|S3B�5�p�ݻ���w�څ�C0+ ?vr���;f�G��MN��/�%��g�w�ܾ�6Û���Q��ؒ%���XN5J�|��g�
�Y�h����i�g4�PQ��y+\|�1�w}��
#��}sr�y�R����)+n۔9�-s�}%.\X�v-�):��;z�ۅt��C�\҂F�{ʊ�/-�"P��-h�4cWI�4��u���9/3R���t��%:����4
�����Ď�q��5�8�ꍯ-Z�%�ld�����n֠Q�uc�A�֫"s��*��U���Y�S�N�)�/�r} �qn�211�嗹Y�Ow=E��L1��1�x�����>��#�O�_��{���8����ٳ��"���.^8?�`�x���
��L�i��Z͹]3��Ls�t/R��;w~�EE�,NX:�����ތ0Z-����7h
�?c�y���Y�n޼93"�����S�XJ�90K	vE�~X�gV+b�Q���v���k׮����!�DZ4u�v�n�T�֝�!�j�k.��\���ȃ o��M�
��]	�D8�P:А@��tM&V��ҥK�!��nQ��c�B��
[�M����ŋ����NN�d��&�n*\�j���Z?+0O:��۷o߻w�իW�i��>'��]�|�-[��ٳ���ٻ�/7����U�¾t7z�&��w��vɲlE�۱g�%�ɻ��y�y?�A^ϙ�33'�g��+N[�l)�7K"%R�)Rd�+���̃�� �
�J6���2X(�r�Q���]�!R�����k��Tƫ-�Uƃ�J�����c��%##��]�]��K*�K&��ώ|��
�<p�3D59�-�j��Zjavvv5�z{{oܸ�d�V�4l�uI�D����;|�rҙ��W*�l���&��jg�ꖶG[<��l�J�:;;�d-FrU��X�M4��Hn�[L;q�s�q,wu��i�[��c���KnӚ7ǵ��j׷�����bq�.j�QyI�Ws|�߯Z�I�a���'���x�o%����`��Ą�ʜ�u׺a�ѣ����4CW�]�g��cވ�n��|j�����+"9�*1�TT3�l�̬��FI�~7U�����KU���O�UYގ���T�议�;�	�Rݐ�Y���T�y�d�t:��Z��L#���+��kUe�qmBM���w رi��q�/�B����%�Wo�j�7��-��?�J���+�hoo�f���ڒI��f�#�B�S���-��F�QՑOn�Kz��e�W.V�}j�dc��V�#)���l����(��������T*�Pޓ���a�A 
J�M
x�r�!*���{�
�W��5]u|Q�JY1��bR��[�Uq����7o˒�Ϣ����	P�e\o�om䥻�{‹����.DR"�[MUY��;v옜��+R��.)�b�\���WJ�F�y���%	��C6S�%�J�[��
���F)��r9)�//��ˑK�kY��q����f��P�B%���Z��,Y���R �q��MA}
�g/�-o'+���Tд�Du���f��bg�;̧
sV����e3�)ȝK�n�#78u�~u���N�R��D"!/��iՈ�:��$O�RQ�@�F���]U��7&E����\���4M꽕�5��\.+�Y͕˜�Ph��"�c�X$^��B��z���b6���9��jv��W�m�����L��$ W�N��RΔ���<==]��V^�-�J9~��,ɓW�7�V��V��j���jIg__��쬊wT��)����7IyOO��3��QB�YԡTIx����L�6�k��Kf.i'�<C$����O핪���ZE���)u-ˋ�`���W�,�տ5�G�Bm��n&/ɓ�ߕW?����_�cU�&���j��K�)���x�ŵ���5K�/���˕O�|v�I�eY�u���]Uػ�T�6յ�U�G[�B[����|���~o���n�*ұ;V���;�������g_}�k_T���[}:$W�a��;�Mt�F���#�ߤE%`��mg<]����'���r����&/���J�R3��x5s����
m�P[�@V�ߪh��ZVG���-��,W[S�����㮏���۶x��+�ܜ�>�������|�,���/�=ߪw���~�V���&�Q)!�/̿/�,�+��kz!��k�>�`L_\
_�iI_�6�&DP��ǫlz[9�74W%�z�[�����~e�����tE�\���Gk�1;�����*wܶ_M̫"V�憯�kx������v�[� ��P����T�}���.�ֵ��[�nn�l�7�3L��Z�7v�jѩ4����M�`h*;@S!��
��Tv��B�4����M�`h*;@S!��
��Tv��B�4����M�`h*;@S!��
��Tv��B�4����M�`h*;@S!��
��Tv��B�4����M�`h*;@S!���I�"��'���]�t��ze}]�`-�P������b�ʅ�jWV����o}m�]��oC�-��(
���]�.z�._/��ů�?��ja��{�j�^r+�H�ϑG�[%kly����-)gF�`�QY�o!y��oE+tC��_,��-�A�1G�k�Ѵ~9 ��՜��qxk���n;�������	�LMwәg,
vh�mI�C�]�C#�[�9��p����j�
�['��E+\mQ$d~�Y��q�O��
o��x��F7|��.�s�����#��=�\Ǯ׍�5�fڪ��k��B��w̦�d��՜��.����)n��·�v�M���%��u�`H_(kޅ1;v��1@)�f�8N��� `�ٮ�*9_1����l\W��~�GV6W�v�b�y�`�3��Lv��B�4����M�`h*;@S!��
��Tv��B�4����M�`h*;@S!��
��Tv��B�4����M�`h*;@S!��
��Tv��B�4����M�`h*;@S!��
��Tv��B�4����M�`h*;@S!��
��Tv��B�4����M�`h*;@S!��
��Tv��B�4����M�`h*;@S!��
��Tv��B�4����M�`h*;@S!��
��Tv��B�4����M�`h*;@S!��
��Tv��B�4����-�g}�n�Y� �k~�e�.Y�iA��U�\��N��|k��v�B��n$���cJ�,�	����c�����Q�u��`�>�{U�g�Vɲ˖e���|�I�����;��Q�E�#g�s�!�b�(%�`0Hn�"_�`�T�GR�\��=��a`)�ˣ���8]�x[4��}Vyhf�q�����A�X���
�z�Zum�r��|n*��KPkt]�C]--~�ϲ��\.�˖�W
M��%U�5��u�t�0=�.Y���2����;��;�T*ٶ�7*)�|>�������gggeぁ����:��jZ�T��m;�Bi}��J�_�+���BAvP;.�3[*V��V��J*���C*���d*����T.;^7Wsg���l�~���U�lG����\�\���\�qT��b˱�8A���q����\.W��[]�n4���2M���J���%�B�`�-�v�����mt���…��n<\w/۱��|�AӨ?8K��E!�����h0(k�ł��|�,G�5-�3�c�h($�f
y�0֚�|�Tv���D"-��0re��+�i���9�K]��o{�G��}��'�hT-D"�E�W�V!�p8�������:�!w���ֲeI��0��X��@ ��&_*�#W*����wSo[[,��M�\vW���@\m���N�T��WtݖH$�ޫ-��ZSb;N޶d!��#ꢢ����'`��|]]]N�&�R�.�J���Rh�����)Twvv����J��bqhh�4;��%qX+�,��1|�|�m��q*�d\7
/�qU_���I�j�I���	��%R�\��I��p:my��'��p8���+uu���7��g�nlٶ�i~�'�<�+�pG�VjC!���C����;����غ[9�Zg�+��|z%�+l _+�ߔ㛋#�w�ޣ7�kٲ��4o��zc~�v�V���T��n�
�Q	��Ǵm�zè�CvԽ��^�ɎS��F��ʑ+A9��6^��\{wlR������������,ک>/���"�Q�����T)�ڕb�
4��R.KA�i<�G���DZ<��8*
�Y~]�Y�r�wT�T�ɤK�ӵ0>�t:�-����RێNj�l&W,�ޝN�F!��"
=���+
�9��d��ժwg�1
�D"���q���iM��P2�}IR��fm��E��aTb1�H$d���t&cy_j��T.7�ϫ8���u�c����-/l#�=����B���fY2��d:]�9Y_kk5�S�,u(Y��l��]]�ۣтe�/���q$�B����hK���f�:�����~8V�RV���W3R�ݹs��%GT�Y)���I�f�d:�Y�
���ԔeY�s����VJ��S�V*��8�@@v������b�ɤa,99��̌l_�#��B���u��Y*�J���c��䀱X,����4e˪�9%[(dKe�uuu˱e�%M6�Ţ��V��䱈ܶ��R�\�L$��ke���T�P�]Gw�2iY�R���u�!^���d�����t!���]�2�F�XJF�ӬL]n���Q�B�
G�]�纲�T.W
Z5�:TLDzW��w����ܻk��CYV��R�l�TR�/Yj�Ѷk��uf���d,��R�466������X�x���j�X;��<��썲_-�.�,��̤R�jӏ�|>�N���������Q�����\.�d�9{�P���k�������.9�l#����]�-U�%�)ǔ�q&����6��
���\�3�X�R��E���a��L6[,��v	[�7�}��B� 7bG5�X����
pQ^TNa�L۱3r��C��\���f:��u7i��d�rk�ژ$��H0��Zi=���J%�i����O&��,�Ne���v$�@eV]����U���m*S�$�,���c57n��r2�����o=mm!�_[��}��tc:�V����K2��H���HD�?�����p�%���L��Ittt�\.�����65�ʚԎ�a��޽{5�	��Ȉ<���
���pC5R�8�����̌���Z�#)I��T�S!�������������"i�
�D�c:��f�Rf����ˑ�ru�qkk�l#򒬔�b�(g������'(���ʂ$8�L�R��E3;;+Ǘ�vl�t!/5�%A�ؗ��溉�w�l�$�9�����⾅�p�4c�N%v�\՛0U�>C�li�n�����8�N˽y.�MF���;��U�S�ZO�=��q�Pe�����c��J�T�����V�	,K�
X�E���u�1+G��ø��A?*C���pX�h$�l�2މ$�;�AF�{�z'&&�xC�P"�P�26rL>�G1M�_����妦�d�h4���S�4ʚL&3::Z*����w�ܹ<I�e�aU�[�DbffFv�z}��Z"�Hww�
[y*��yS����\<���qI�ڦ���zL�W���W�	�)�3��Z��_�2_.�l[*���ղm�^o�h(�$0�F��Zm�i�P�:�C�7V�2�k8�Te��]��:��GP���,��F�G������&c�JÍ��T@S;fggU�7��^�zuppP�-�l��Ԕ,�B����%�Hzb�X{{����=HOO�쾴��HT��|��H�"�jiiQ+�B�JU�)�F"�%�5j<�Y@�c�o��E�o�
�YG8ܸKa�4}���z�k	���^�a�����I��\�*��}�
�)����n�]H���/�;
����7��앫s��͛7���kzۊ`G>����b�����)�0IF&�Y�A4���3��] jG*]TG伲�����R��wH¬�T�M;K�&���hY��0�p0ظE80}�e����l�����u��m�gp�A��{�A��.Z��|�
�uGgf��P"6�J+
ozڻ��K����900 5|۶����2��,���H����s����fR&/��\ZMC��"]ҹF����~�S��6+�+��$����J9f�388���
�$yՍ��|^�\�7Փ,��e�q�v7_��LDŽ�˕�9�R)W�>3d��`0���o*/���ޘ���,��G,�Ir�����ru�a�f�|>�鿋��"�_��Fe8�@ �J%hhHuoQ��(۫	\,˚��h��jv!�j����u�J�5V��U�YG5�Q=Kuegg��U�qLԀ�HD}���D~�W��l���Uf?)�v�X��+
��D�7K&�/Y��k˽ҶӖ�.C���m����<}[ܼ�4��D"`�r%�8���/�
��L&+�i�E㡐�߅V��^8�O�׍T����̌�O���V;T�BE%T���~Dl�@�A�A;�I�[�
�}}}r�r�r��e��eYN�Rr�������%#� ر~�����\%P.G��e�B�4��nN��?�us�bٮ�)�N�\�2�����ޕ�-�hK��I� �Q/�Q��,[��\Zse�����ᰚ�U��؊��~�YM
���h��cI�D�����(-P]{$Oz{{�Q��3���2�qfs��ߟ.��m�Ek���[�LW��X�0���RѲ�+7r�j���`-�����t�v��bbY_D���R�{j5}=6���VNa�v�T�߽rx�V[������L&�N�;::h��y�Y��l,\�zX��b��¿�����+��]�q�m3���EC!�h���b��؛-W+l��hn�mK���L+�\NMG7X���-i���D��l��d+�(�v�4ɇX,�B?jhUw:,Ь����t�H��
���\>743=��-ɕ�xQnU��,w�)����Hj�T�k�vl�ޛ�e>a�A4�5^	�333SSSCCCsssu7�f��tZ����6j��dy/����֦&���,�q'&&FFF$�w&g,�L�Ru_��rjR�uwE���b�|!�?oY�7�k���{9��.�3�b�T���e����LW��M2�Nxe�2����I�J��)�-��|���:�R9[(؎�ӵ�髆�C�_-�����\4���\�����X��Hq�](&&&fff��p0X)\��C�#�ӎ���;䘡P(�ͪYl�Ѩ_�����x"��5�X���}rr�T*


��9�5��ɣ�"[&��;0L�d��VrfnnNR��!��d2*�!W�4����d�zK4�K��nW	|�������^�\�*�K�^Ы��:�+wq�]uĢ�qG�*3{���U��aɗJ�kڛ��"��p8�Uw�W�"��LF�f�M
��m;�	��~�����.�����X��D����xA�ƲY<�H���'�l6�:��5�M�X���׊9�Lʣ�V377����7��J�,K:;;�̀��hT�6�ϫ�q�d�i����w���Ƀ"���z}Xb��
[y7���H�b�p8��g
����љ>#'"Q��
K�nsK5�L���Q>)>ߎ��l����s���ރl
�[��Ȳ���._��e;���o�Z��鯹�ӭN��{s�o���ؾ|>_2�liiI�ӪV_.�k_�D"���U��/X�R<�m[VԚ@ ��ѱ$1�XljjJ5��/-{#z�z9B���Jg�m�D�%'�l�d2�3�]o$7$���:��E�/���Y�J.��ίQOWX�L7�ՠ]�UQYP�ם!���,�����V�mamѦ޶rË�Z��ߴܕ7p�!?mǩ���5��gY�D+���*�aɝ�u+}sV�"� _r�]mi��Uf�/��]�1w�~�]��[tCp������U���;�Mt�F>��o�x��l;��#MU{����kT~�R�Յ�5������54����j��%5mmu�-�r_�nV�j��5������|5ܩ���!���x�\�Y��6�٦61�Yo���knd.���WM�מo}��T�nl�>�F��<�0�����Fꕾ��1T}���җ�}.�ei�j>�5�L��{�S{CsU"���Uy�^���W�ߊhKW��%�X{��4Z�8�E�M=�&�����^��0��l�)d<���`�%o�EK�[���"f �D�����An�ts5
(n;��:�ϳ�3np�5%��ќ��/��xk��ݝ���7G:�{�eY�|~nnnff&�JMMM��Z[[�=mmm�h4
���|�4g�#
��n��
`}��b6��t�҇~x�ʕ|>_.���j��C�P �F�{��9y�����#���!�ɓ��|A�F��n�#�*��\]r�V�&5�b�o^��4g�cG2�[Mizz��?<s��5����
�P�V��Q��ϝ;w���Ç?���=�P<�xԘ���Y�(w[ajj�뿾�꫎��'�xB.y#
������{�����ĉ�h���eY.\��o��ȑ#�ַ6%{6��_~��Ԯ_{�W���k��ա�O���ӧϜ9�矏��<��3}}}I@.���/�z��<��i���������N�O*�z��WO�:������|p#G�d2r����k�9v�Xmn˹�~����t�ĉ;v�x��tlJ�۶�\��_�B*�R�V
7�1�H[�@,��y6���|��e��8�Ν��������w��{��uwi������ב�U�_��CևB!IUww�nOoo���!�&�,�+�c�D���r����d�eY������G�%��	
%���q�w�y�?��3gd9
:t���3vww���R�����G}�N���]�����"u��������/^������~x}�|>��_���JTߙ�W]וsI2���$O�w�����'�ؔD�7Q�\Ze��
��z4�|v������x�"`�lw�.]��/~��_8��D�j��/:tH�;�G۶ϟ?���vzzZB�P8.
�lV�<��.OϜ9��+����I-}}��#�ؽ{w__�[3ۼ$ON!i�����󪙉${rr�����w�ޭ�w�1�x��矗�,�˒�{��i�KM�``[��/y��9�u#��SO=�����m�177w�ҥ�gϦR)5l�T�e�O>��…���,�z뭷:::����=��0�H|��|��'%��Y�RI���?�z�~��X,���h׮]��H&���'�IZ"�����+�N���~.�3M�������#G�,��$�I�۲,�{�EY~���=���������L��^���~���QEW�
9Zoo�]�V���СC��퓤����|���̌�t���M�P��0�`"�ؾ�^���o��������o~��ѣ�#�x�駟�F�.\�裏eM__ߡC�d�|�_���ٳ�m�|�P(t���w�yG^���^_�\�-�ˎ��0Ms�Ν===�Xlrr�ڵk����}��ɓ'kg���(��f�Z�ز,�9Ś&����BA��=Dk-I���ڵg��)��LF�H$�[�``��t��ŋULA��333���mmmK6�jvOO�w��g�}�����>{��G���T罹��@ww����m����P���{n���S�,O����xꩧ$���_}��$�6�q��
����I��?���d�qp�ڵkW�^���رc�c�=�`�5��\���\��=�Je�Y�4��x�������}M�*9���Ϝ9S(�8'O�l��CN=22"g�d2r��>J��[�f畅�Im7Q�{���;�L7nܸ|�r>�W�����_�:���?�Y��ԙ_x��xKM��;wNv9}��T�ǩN�*/MLL�����Դ��*�>/�y��7��ǥ�?66V��_|��…�v�ڷo�$�A��\.���կ~%��o|�\)�!9&��L&s���W^y�O>���u=�G������'���7��gϞH$����|��g?��Offf�|��#G��
vX�%������w�*��mW�����U?���x��G�%�*C�`.�< ��]#���?�����Rk�6R�j�x��Y(�Jsss��W�N�*U�L&s�ʕ����v���nuv9��쬚
�2�f��R^R
OW��B:���s��JMK�MW~��_����׮]�v{��T}Odw9�����ӧ����?��s��T"9�����&FN�駟���+���꭬&C�E�!o���gΜ���������T_
��;A�vp�H��͛RcW�w�$����Ν���Ⱦ��������*�PմkC[D
�!g�<����Jx(
����q=dK�}�m���Tꭷ�*������;v�Xooo"�P1��?��ʕ+����O����>���g����k+C,$��h#r���w����y��UIO2�<z���M�wdnn�ƍ�ϟ�7hxx���_oiiy����ٳ)���B���d$��r�Nf��`w��8Y��{��`��	�ݷT*I-������o��N��v��C�)���r�\,��k�S���x\��[ڸ@�R�3�R)ɱ��ާ�~����ڽ{w2����ʿ\��'��v���˗_z�%I�3�<�Y�۶/^��ꫯ�>}��9rD~���;vttt�AI���ؗ_~���~�_}��,;v�����
�F <��ӪT4
[42 �����e�����0�����s�}���mfgg�����F*��X�n�K}�;,˺~���E�������{zR��EGG�w���?��?�5�y:����_�jtt��o��������7%����\�tI.������ϟ��ڑe#����1�~����u�����٨.6�ܐ�r�D"��)l�6M>��
j�^�����<00��SO%�ɺ�V˲.\�p�̙r�ܠ���+[�R)�o��ᇳ���,�����;�{R��B>��/��Ҡ$/�������/�,���_|�駛쐜�x�S����6=������R|�СC�H�駟޹s�$i��9�g۶�娙_�,��=��~��	�@� �؎�¬���
O��y��՟��'W�\�����~Y�n:��G��

���7n�Pca6�S^�Z�m��Kՙw�(
7o���~��oJ�ZZZ>�gϞ��:��|>�裏��_�U��W���~��?�̙3ׯ_��/���3Ȯ�����ӧS���'��O��AKy#v�ڵs��Mip��S�mI�<J>�1;r���쬚�&�H0-;�����X�c��NNN����T�g)�؏>���_Q�5���#jf���4{k�ʹ�Q�j<EEO�(��lI�ٳg%��~����T0<�3�Fض��ݽ���n���y��ׯK"��*v�)o���%s�~��A\e�nV�C �l�\.��n�Jy��#���`w���.��ihU�C��jJ�S�N�R)yU�Wrہ6�l���s��!'�3��`��8�|^^�����I�ddDjݒ��;w������|S������t	��ڵkW"��,�����H�n0������B$iii��;�gc�v�X�<W����2����3�X�:A�; ���������H5U^���x�W{�1�L*�R�
xV�CA��r��;�R���O�]��$yR�VCE�$i^ӉGyD�E��yFn{ir]��V�j�%��	�H�eYl� �0==-���
w�F�Z�(�K.�So�꣤rLԴ,����6yi51@���$Q����q�'eI%_j�R9�|��믿����ݻ��ŋR�-xV3=�$�L��K5�044��_.�o�|�`0�D���%����G�}�'���W7�!����*ruK�2Y�6��dI��F
TGҿ)!uE+
���,�l6�Nˣ,KFվ*�Ţ�$Q�^H�䑑J ���~2��9sfy�C��~۶�~�mU�okk������_�^�=�AU\�/���ˆ�'
��tj��%�Um:=����mЈ@M��P.�o{v5�F�`�<�R)$��-�SSҨ����r�H$")�f��|���ț.���������:�d�\��TMȲ�_��0����رcgϞugy�@M�244���R���uOO�Tb��;99�j��K���K���'N����Xk�$1R�niiy����o�kc
�a�o���q0E��FeKI�T—�ϗ��gff�\�
�Bj�����r��R
��W_}�N���x\�e��]8���H2���������W��쨎�Q��ꪣ���D�B��4�da�,lORC޻wogg���Wj�`��Gj��}���۫S��A�����C�T���y��'[ZZ֗6�ϧ�Ő#�֐���h4����m���\���GGG����m�k�I��7o��OO�+�<w�d`$���LT�.�p��A9T�\>���S��Y
���>/����P(��R�鴼�ˏ�F�U×
�X�7r^@���8z��ɓ'U,��טa�`0(�������a��Jշ������������}�ю��D��B�={��߿ݓq��L7^OV���\.��ܼys�-���^y��`5��J�\�r巿����J����������,�۷oSf'I&���u��.���sss+ml�W_}���o�{��tj\�l6+o��8�R� ���jS�XRH���D�M���s��o|�Ro�|���i'!��@ �8�T�e�����{{{�f{��u���׿�*�A�=�з���h4z�/������/J�̙3��N�gy���^{�7�����n��
r��'�|�����wv�޽$�$��߼��[j�ؓ�M�(��G�����裏�������.�#oօ䭑��O�ky\�5r�t:-Y�:�T�/��
�$�*Lf�&�w@��;G��Ǐ��TMGFF��+��m'��C��.*�p8��Wmώ;����>��#�Ҋa�b��ѣG����f�x�
��G}���=���WR�����^r����j�����^zIv��g{{{%�~�

���˹�y睉�	��Kv=��3��ݛu]����MMM�>}zhh��?����\WWW�J�\��������/�,W'I��x׮]G�YS�Cu�Q�͖�e�5�J�`��D6�]$��A�`wTKK�s�=��W_Im_M�8H�8NGG��Ç��/��������g����#�L��?�����l�<x�^�f�7nܸr������,u���NI����իWO�>-�===��Tjzzz���l�2���F<����Ϟ=�o߾;v��qɇ���.ܼy�T*���gϞ��Gǎkp��sc�z��~xjj�X,J���{饗>��#I��@8���~���$)�$�B�����_Ǡ!�a��XLR�"D��E�,���o�T��`k#�?��?�*�ロ����
~�omm���r���ӧ?�d2����^x�����֗��BR"���\�d2��o}�X,����7oޜ��J�R/^�1&�tǏ����/��^
6�R��U���O��r�k׮]�z�ƍ�pX�M�p!ǔI$G�����㏇B��9�z|HJ�_�jR�U.���|�F�{����7�H�Ο?/��dH�$��dY�������/�b�޽k�"��X����U8�f̑#��Ƨ�;X�}����?�ӱc�^y�K�.IUYM(+5�%�c��_�r�_��_2����D*����x�СC/��⣏>��HG�[�4�^-gW��n��uww���?>z��~x���A��W�}}}O>����?��w�}WN-��Ŗ��%y�U��ݻw?��C�<���o���G


�J%9�d���w�ށ���~�ĉr����hr9�S5��}U���W�jB��G���>��$��?���Oϟ??33cy4��Ν;�}y���x�I�r��K��7��6�ۇ.E���C�wuM�(0�F=]a��!V���JY���_[��ʂz��=�xkU����m�m�hZt�c��
�[���>׵/�eg�zǭ>�?��-���Ne]�q�=b�M~�mB�t���?��ץ�>55���+���ȷ�<���Ԩ{�o}�[ǎ[�~aM�٬$ ��K�z���jZ�ͺ:۶'&&FFFR���H.A��j�����9���؍7fgg��r9K�L�…�jkk���trrrhhH
�Y(��`�������۠�H�X�y�E�&מNR+����/�岜�СC
�?r9�����9�
O��������2���=�l;��b��3,��r����&/����ʅ�jWV�φ�W���╋
���y'�mod.���WM�מo}�k�����P�]x�����0_l��o#�J�u���\sj}�ˋ��UٮM�V"�$˭�Ӝ���Y=���{��zMM���V\@[��^.��ڣ�@��TM�\��ٳg�-R�O�Ӛ�Р��y�
���+���Ǐ��������o�����8rQ
:�#��f���7T2��v�v�ج`�X��߿w��;v���s�Ν:u*�J��R��F��
B�P0L&�G�9~�x[[۽5���b�{���*����ct]z�x�'Nض��SU���R�6���[al
��{�ߣ��ɤ�a&Q�4	f����_���M�`h*;@S!��
��T�zp��K&L��!��Z�5��~:��AtcM�``���X�g�L`#�����4jq�u;�T?)ti`v6S�X��W_�!�����І�J���"����h,���&�AM�����E��]n���ܝ���[v8�C��^���͚�j;[ey\������5C|}T�w4h�n�``��P˛���B]
���nSw�R���J;�Y��ݨ�����D5~��R���V�``-���
�mȃq:��X�CQ���6�``s��W�q����\.W�m�� h��Y���|0loo����1�+$��Z���򐄻@[��Z�m###���Ry�e:�U�ςj�������jٴ�{�j����S��j����B�H�n�~�k��)
�L�6�Q}���@���Z���Ik��ckk�L��`�qn޼�N����Q
F���'�J(q�D�¦�˂�����H�K>,~���yQ����Kt�U"�Xg����m�;��&�q�m7j�U4�`M�8
؜�Z� K�jTπ���u?Jd�A��!
&�u�K�jT{��`�v6��V[a[2f�U~��6�XL
0f`͕������Tπ�}���;���VJ1VB�����y�ծ!gX=�w�j�A�/6��&X>�l��(
��D�(֍1;���������T��N��@c;�L�a�Қò�l&U�,�!b�{���F��K�B]����#�-;�Z۫7!�:���gG?���ى��\��8t����7
�+9��|b�އw�C��}���Ӗ�� ��*�m�46����S�~y����p!?n�-;pO0���56������~x����ֵ~|����l��n,�h֑+�^�|�_?;��٩��'
���'Wq��4�R�pn��x.m��8�H[4B�p��l�������gߝ�j5��a4��=%��-�!����/�����}�9��Dh�VYGk��L�+�NM�#����Դ�aDt�j&��W/����١3A���L粟�r1�P��E�dۧ�Fo�R�wEI�&��9b#�����t�25�t�����^������Q"�� ��M�����E��]��7�B�vK����և�$`�}3�F�߿��-D;|`}tև`h*;@S!���I�"��'���]�t��ze}]�`M�P�x*��hja�H-֬\جve������Vݕk�6�Ҝ��B��[�u�FիcϭY�.~U�q�P��SW���[�G�~�<:j,LM��	E���s�P,F�`�QY�o!y��oE+tC��_,��-�A�1G�k�Ѵ~9 ��՜����p�[`�ʙ�%��	vh�mI�C�]�C#�[�9��p����j�ugO���(2��,^�էᏅІ�Jw�x�B�C3����a����-;t�5�fڪ��k��B��w̦�d��՜��zp��>��g�܎%�
/>��:V�H9��A�V���i9��byﱼ�ާk�JG�J��h��\麃8*���nQP�&�0�&di��YDZl�'��vD�m����Rq"��eK%��L=�yXw�[��8r�>]Ok�Iv�qJ�c�z���[sҗ\�,�릡����);�Fj铎�a��H&w%ZZZ{c��D�3�J�t!74;;����
�͝K�\-�>3d�;�%�9�]o`/R`l�w�O�v�B��P�\/�k�%�AM�
��@ɱ'K��mW�P����d�P��i��O�+v�J�q���H4v����>�kOW<�3��ɣ溎�`�v�l�pnt��K>�y#���V�o}_�q�4u}�P�ze:ɂ�LXV�q\�
jz��mjȠ��]���;w=�s���ї�\L�檯"c�]����s��k&�{w���c��h���H&Ot�:�������ʮk0"�G�4��mk�{���LJ�{j�����X(�h��OC�b�`2�������?��7��-+�󹫮�W�	2�]��ݭ��]!d~_�ap���jnv*��l�캳�5c��lF�@����<�s���`$x��.ϺvT[m�#gYm�����10]�f��;������h���ē��:�����?�ѩ�T���o�v�Dڱ���?8�'=��	,�N
��zeNb�uc�Pmw��ho�ٖ���ǩ��s_�(�|�U6a�s�~�|����O>֗h���X��e۹r���e���{���W�^�R,�+Iu7�0\�4̖`(�G�A��x�熼���7�d$���
��u�\2�����*���J��E��o�+v�Aֶ
�ў��Ӄ'�1��z�Xx��#ۖ�}_,q�����]f �4d`�;:�⾇e�|qh�������Zںb���ݽ��흿<���s�ߌ��6?\������N=�8%۲�JM�m]��>�q-	gJ��]�0�˵����]A�pϳͧ�'Z�~|�vV"��KgO���g�R��e\�o��}l���Y�����V�#���c�pWϋ����{}�f����8Nٲ\�=76���ʎTq]7+Ä�-���;�t����Ǣ�?����V��SmB\�nx"qV�P�>��k�ʼ����]�ps.�.�>�*�+;|������Ev�m����Ž`��>�s���
Ϧ~����ǩ��g�q�?`��;�����/�ώ�LK�p���~�(C^:�������w�&��Uvf�L["5|�bt�{]6jl���e�#�?�w�;��<�cg2����7S3s��^��Z}>�q�-K�m�0�~�0m�Y�H9N�T�3���˿���;nۖ�ȉ维�UF��k3��t�)jZ�aH��}�fA�@�������u5���4|k��`��[Ҵ}��o<��K
����Ͽ8s>�k
"��o뗧����S�����l��ƍ��⹁����s�(�`�޼~��IK[C㎅��[֜���F��[	�LK?�t񳑑��'x���x��C�?<��KF�4wGc�Ԣm��s��� K�u��G[�>�h.7V,�9�������P�+��~���h[ٲ5U,
��>]��Sk�j���v(���+��
sV�v6��mK�
���P��3�ʋe�ɔ��B~�\J�F��j��aܲ�G��޳G��2>��v�b':�Gr�����W|��b�_ϟ}�/�ၓ����᛭���;vMs�XH��95�-=�s�g�c��ͮu���|>�u�����Uj���5;=���������oi
�5Ǟ��ڒ}���;w��g�ɇ�u�z�i�e�l�YW�??�mm���??����rX�&��-���%^ؿ�����w�Gb��g澜��d��Ã���j�m��3���������hz�g�}��ͯ�Ũ�����]7l��b��w�D���D"�Fe��K��߸����3��㘆AQ�`m���?������PD�t����;vߧ���S�	���ӫ��J�y���>]+Y�����u%Z�oC��?������3����o��r�Øq��SS_NO�i��F8����8ݱ�C;v���':ΟіMz�5q����d{O��'��̺b��^�c~��ή�8��}��x�4u��@GDZ�������o.|����)ǎ
F�}�д��{::�P_<Ѝ��EU(Ķ{����CG���OF*3��lڡ��k�z��s{���?|��ؘ㺖�S�;X�J�߱c��ζ��V�	ת�-b/���Y	j��ͦ���ww�~��ѽ���pƎd�;w�M�i5�i�Ba.���4�o�L�g�N�2��O%b����]�����z���{�XO_,��f�O����\�Ξ����m��d.���h�.߶����q}���hU�є��#w��pg��z6�;7><4�
�����]=mɾDK��O���kÃY����`m_f���oU�-�ɕK�r�2��>����&*S���}}���#����*ᆮW]��쐳g57
���^x�-ٶ�E�J��2"���ԱAo���rK^��h�҅��_^z���χ�����@G�D��g��ߗ�ٻ��6�<o��L @�9S�A�$*��sk��z�����b�?���7�y�}��b����{��z����ޱ,[�-K��D%R)�bsrh����a�I��)��92�lTWW7�BՏ�U��%U�0🜞rq��ef˾h��h�K�����ґ�)�����464�ʢPa��QX|���&?[i��������@�`�x�Ӊ�Eo��V����lgQq_�/3BT���8[7�.�om�{}K�
�D��G��ѩuZu��&/_����N�S�ᘇ`4z���ϟ�����Q��t�s�������޲����SVyi�N��㋫k�?W�:]��n*̱i��>6�N}��ب��<��̞�qO�Ӹ�wLM��ϡ�O��J��ūe�a4	�>�Q�p��νٲ�E_O4Z K�F$N���xwE��[iI�$Y%)����I�j�L,���撅�&�i���(�
�����U��s5M��yC�G�p���]��o�zbrJ�9Iǩ'jZ��ƣ��n�r��ۮ��噪�[n��c�5�^1��U��U�Q�z���lt����t.cbYnD�������!EUgE�t�5Y��U��8o<�)�v�盋K-�^/������μ�oi��sI��0�]Y�+�����ib��Ǘ˒��z�-���:.��zIz����[����q�狎��szQ���.$�&n��\_��G�s���\8.'�h�^�}9��hr�:\�,~td���;̛e)�d
'`h��]�$%�I�+W��Zd*���8�$�9���Rx�����3L��&��t0_<H��j�]o�o�n�NIv���J칫�9�(!Eᩣ���m)(�?v�W4U��/�� 
fQ�t8��)�\0p���h��?G#�Ueѭ4]*+��s}|$WrDi�������"�	�w�ӕe0�D)9s�Fv�4�èwKބ�Ѷ���9�(�,ґ&Gr�1�8~F��k(<�x�ƫj$cs|.�XP�reM(�̏�X
-���nM��p�)�E��K��Z����:=x�'�‚/7��iV^'�)�?��b1��ť������J� �k{�&�ЊMf��J[J\�
��I�M�A���1�Ǖ�@�i�p�&�E�
���P8������f�t��Ǭ?0��_ca|��l ��4���20�H<��܁�l$�.
���rxI�k���l���E.�xL���Xr�E�$9L&q�GB􂘫7Xx>�\�v��F���z*Z$��*�)��B<�gˆ"IѩKNk" �?z+�)�i�(�C>߹��"[�Y^"@�\TSUO(0
�$I/�f3�'$�i�FoNM�ǯ%@ޞ����]QU�(j�cÊ2�y���괈�������q�x<��5͔{�E�{Fx�έ�M��� .���B&���WQ�{r$r	bz #qX\5��+;��8_8D㵵�*r�p08��6�Ɔ���#C_OO�҂0G(w�b�YDь�I��5�8�!�W�ޯ{o��5ۗvH�@�d�j3��Zb�A�C�D�Q��y�$K�#&����;��&'$��д;3��y#�[di>��h*u���F�$�3���8O84��)�yL���8/��qϳpILUcQ�0+k��e\vLJ"ܑ���RV��@O�����̠�ew��C��8�
-9qU���
Tn
v$��|Jt6
��$m+.�:2��ĸG����$J�j�t<f��윘��D"��\z���* ��Z�E��[��]�%9��Fm<�ȅĢ-�F[z���
�3U�[���q���ɮ��X�!��#2�i��H0�N�N��y��rtK���8+Ǎ��ӳJ<f��%eo��~;>��u���4���-��Ƒ?i�R��@~C^���3��E�O�'�%�Q������w�lf���No�� �xlM(p����99�\XR`��-�<34��zUUH�K���:�w�l��{��y�܌;��;� ��e�����^tee7��гff�����!��E�+쎼d�chf�ë�Z'Ǎ�sk��:�A�.KV3c}[y�����#V�aWY����/qg���awn�+�ީo�1��b�eSsq�����_�������Ͷ�Q�ᵺƍ��S�������6a�mQ��LN��F{i��a����8���/��Ô��l~����ֻ���Aw�?�+�<��X�(�*ʑ��Ҷ�VY_��[9�͉�c��]fá�ʭE�F)��Ʉ��I���=�}�p�$iO��qMk��8�s�톦,��`���i_yUDQ$Q,�ٷ�X��qϜ�b��ME
�q�����P���x����n;81�xN��
�Y�J��)M���'7گ�����9�Ng��n��_�t�d����h7�_޴�,׾����p�k2m/)��u�E���N��J���(�1�'�x��fKNQ�YO�Q���������dywIi}^�s6�[k�z��?�_��F��uI���@��FI�9ΘX�U����I�?�vE�}�.k֮�J��^�4-��qm�����i�
"��/��k�����Ϻ?�q���2�QR�RZ�:e�
�:&�N��bp`\QrEQH�D��3$W��K��#,Ba���E�O�SM���
�?헂��5+�Ƃ��~.8|ut�m����+Y��g�Xs�#�p+����H���wnt��W��S^���29JBS�s�/ou��ÑH�Z�<�u\L�&���#kV�̌N��y~M����ig�SS�N
������r2Ġ(�7�==��]���Ԛ|W�#:�'�T���������l��ė��7'��<����,��A�X��\�s���iw@�g'/<�S^ĕ�I�,���q��n�Y��+���r:'Ǧ��GQ5n��ϲN������>>�ˆ�"�� $��iZX�����c#G�o�����U+��O' ��0!��h��A��Ϸ4�M&I�{�@�oUMD#�H���w^�b��?���g;�<��'��nLM��U�2ljk�ٔ��v����O�:��d3A�	=�H0���B���=�L�pr7�#�tc���v��k���Hh<�s�Y��d5$b=�p$S��2uZ/��(ɕ��P�:w�,�QU�(Q��I\b�E��˟޼�h�L4�Ǎi3�Z8n$�|p�Ԥ$fI����D��x���F�Mź��`�#v�⨢|=6:
�ݵ%/�`EuQ�ͬ׳�L4M)�1�����ᡡ��.�\_$�'���O�j�P4��k���\�$�s��"�˚v3�|:������1��ѷvI�i��33tQ��$)u�W���B���%�$EuZ{��K,�±�\tq5�� �E1�ޅoe���Kss:5� �$�"?���5?�?�K<�"�&��P`�/�yo<�:7KE����YTv.�.Jƴ�
��D�":����驩ډ�S�N�� IzA�8N��Š2v͸����ι]�Kd9����I�h��8��H�9�D�5��4MIfbM��[V�"�qq��<W�y��%3P&��%����q���9�2IGY��%z=����J�/�|�9�%�����:��O�+H�7�<���`d�x��+��N�F?�h��n�]K�fB}{N���v�^�?�a<p�cq�uɬR�(�s^�,�/�g��UZ���-u���T��xM��> ��!��V�3k���D@�Ydl; �?�8N���d�i��i@FA�2
��Q����`d; � ���(v@FA�2
���h��0��uD�y��tש��T���3��~�q7�0|��:b��b�%[c�O9U�T�+�X�#���`�#������`��1��nA5n�t����Y6�
�'�XGfˁ�چ\{PӢw�ӊ~z��Ve���-��qC�0;`�.���Mu;,V��L*JX�xjĒa��X̭D��-onؼ��� ˸3O�U�[�Uox�v�l P�w�snv*�F��A���E�B�Wgg?_Y�V}��b�mx���u�n�����
�O�߾>1>
��q�E�uN�4�
M�MN�ފ���
�������Ȩ�o/���wy#�H,�ad<
x�ND�^�k��t?;`�~D	��l���&��d����qxL�	���6��%q��~˩����6x��ߠ�F�o��V�`d^KT�D4G���3Xt�6�$�-۠��x��*�B�!ܷM�/�`�E�{q����k��O; �:<?::
iw��a1�T�c�`G*�(
�"
�2������ �`�(��%���z�7��Q݆���!���Z�E�F"v<�F��~�����\q�ߣh4�>�#��o;�w��ĭ{�����8!1��C�{v@���Baa��?�=��~Z�#���ڼT��=�B�5���z�|,�
�V��b2��N�,�<ϯ<gG�+�O�}ҩ:.�������qmQU�2�%Q��xb�4�5�X�P��b�R���*	����m6�u�NP�lY��WC���-X���5w��z\eI����+@Lm���r���7`Iv�#똭����J�H���x��$v@FA�2
��Q����`d; ����y4M�����8>	����4333�ϟ����$UVVn߾���w�'��(===G�mmm�B�(ݺu�СC;v�oq�2�|�9���?��o��6+������������ؘ���v�a]��JHE�8N�e��y��sFD�$<d���!���>����ǏG"�㲳��fs4��|��\�~]UUA�m�F�'S$�̳ICV��߹s����`0l߾=''�'�fћ���jjj***��G��n���?<y�d8��sVV֎;�m�666v��ѩ��h4z�ƍ��w�����<���X,�LOOS��3����v{nn��lEqA�^U�k׮�ۿ�%())��������ޗ��{��r���0<Bv�S���>}�…�G��������[����i_}���c�XGGǟ��'Q�o���
��ܸq�̙3��Á@ G�Q:�^�7�L������;v�p8�SS٨����칛��[F�Kwirr��2UU�3����s��.\���E1++kϞ=��NUU�qz���7��y��;��K����+++sssU4M�~��s�?���6==m��(Y�C������5�׮]�y��}��n�J��I,����΄��}����-x�����H$B�UUU�?�|uuu�Ղ��w�}�h4~��g��㔬'�n�?��B(������ߏ���\��{�����l�T�czzzhh�����ɓ���


x�; ��!}�@,����D"555���333�gvvvxxx���d�M�N�>���_UU��k��������i�.ǎ�$����`0�-x|�o�&�̏�b� п��Xb����d*,,�F�]]]Ǐ�o].[����%���D�z}(��b��^}$g��:;;���[ZZ^}�U�ӹ �$I[�n������պ��DTN*��(���</˲�l^���>���0[j����tF�Ѹܺ3�9�JI���=tF:/�o�.-�H5�Ċ$��$Q��.jCw��E��֥�3;��QeBu�T-�����uM�ǔ�*p�,���\P�p���CFI.��d<B�����kii�}���ؘ��;y�(����᠝�Ν����Z���;�������T˝��񑑑��Y�˵aÆ���V���P��x����������-���lϞ=EEET�%�t�l��������p8l0
�����겳�\)�.������;:�СCn�������/
544l۶�nQ*�C�������K�I	(Ò�����*�����@ @�B��Qt-ԙ�K�C����t����ϣ_d]k�����)+�3��X�����`P��]ZE�8��Ê"p|8�g1�O�����Br��C]}�;vL�׿�����?mG�Q귳��Q�����9����~�7H��e�>>E��km�St���=u��ѣG�055577G��Ggg�={8����~ r���K�.ݾ}{tt�.��t�(�6����������Juuuz�؀�'NP�������/޼ysrr�h4�ͤ�XJ�iW�^���nݢ"э�=&��-�Kپ���6lX0�(�O����(۱���$*����r��HYYY�[.��(
Q=I�
�U�T-X,�@V_��A�+(=�` ر�h��ĩ���t��p%A�:��e��g�O�׍FU���a�Ou�_{�5j����R��~��W�x�l6S�:�,�A�$I%%%�W����v6�o7nܸ�ȋ�>JE�����[[[��͛)�5�;dY��Ǐ������lhh�Z�ԑ���8v�����y��!�"vT,����ON�>-��������^����Cw�o��o��?��F)�B����ϻ�n:)uW������jkk�z�����ӟ.\�@�nذ�����FFF�����t��}�ݭ[��_����g��ccc.����:??�JE�B?877Gg����Ӆ�6U#�!;�fCI>��n�S-��x��TQ>�qd��z���1�x���yVk�l��TU�&}�PT�
E�w��U㢸m�6j=ggg�8q�������1�a��&��^7�����]�~�֭[��W�O�k׮���S�}�=pʰ���z�7o�<s��ᛚ�����}��>5�=�'�|RYY�������eeeT�X,644t���ÇS�?��*']&k�kIt����;vP��U:�z �!���8r�����?/--}���gE�4����ةS�L&��~���{�VWWS��V+�1�^}���������߿q��C����P��t�ϡR�;w�o���/X�b˖-l�����~�駟Rx�g���`tƹ�9�����_�p�ڵk��d+��xZLNN�o1�v�N'U�A�銢x��@ 055����V3n��aU肗fff�J��<??!Q@��H̝�pCj��|8��?����7�|���O��v9�Wa�d��ߦ�:��f*%���G��><�ٱc�Z���v�޽{�Ǐ?{�lKKKcccEE��f��ʢֿ�j]�p�4
%{�嗩��H��*,,�||���h��-[X���6mz��)1m�����
���g��^���788800@e+--]�G]J�{����7eee�uI��nș3g:;;������߿��QX�T���✜����q�Ɖ'�Ji'ݽK�.ѷ�Ϯ]�~��_���Q1X�Tl��A���������o�O6v�j*�y���Y9�~����(��㡪�s*3�մ�ٚ�x4�i���n;� �k�^���9�l�&_���m��t:)��'��x�r�(�ZxHT�nذ���u���N�n�h��u^^^vvv���.9�(��eY�������իWٌMMM�]j$%޽{��f;|�p[[��ƍ���l핪��;v444.^�����b�öm�v�ܹ`V6�E}}����z�l&T6��deem߾�6��2�M��u��tԂ`��P���_���N/�v�ZOO�gϞ}��-gN����y���?����ׯ�����ݣ���7�X<L�JE7a����9�m:~h�
T������J=L�Bu)�Q����h�R��Մ�Y
�'��6[D���c� �W���I��l��
�c��V]�o��\b�rGQ9WN���X�����X/�O08X���*�;���Zr�D8#�Ĥ�Ҭ7dM�=��ձ���#�223s7ءiyYY���ÚN������&'g��y�f1�d=��F�����_��W���ԣ��75��" ���o;>>�V:�&,RP3��ŋ��Z�����߱cǚ��0�L,�166v���3g�tuu���sss��ȑ#���7nܸ�eL�lll,..^2s��^PP����~���A�ւ�t��A9{��G�>�%%%lA�����[G�nٲe�1)6��
L��@�ꢢ"��M�myy9]�rz/���{���P(��X���*6OG�ٓ%�@64K|߇�(�����N����'''Y���_J@�I�v�4�1e��f6���QT����%I�g �:�*.:��+�`��~:EVVV��ڛ*O"ai�%���[>��O�a���*���?����������P���4��ۂ�b\$��96:VI�S�QG�ZE�izC��@ �(C�S���b9f��l��F�K��E������'�254��y�����5k�R�x������|��}�����N;)6hb
��ɹ?���kjj6o�L
빹����k׮Q�l�V���k�566�i�X�����,׋���ʿs�[a����A�Xz55\���===�5��һO��[����)���)���N�>}�֭��
-���d�Pz:}��Po���
]z����.yq�!�9���K����f�p���=�2���lJ�=T���X/����3ux*�Bg�Z�yyy�+=�!]���(�b�^��h?�B*���E��_@��������%��}fffAzv��ʹ��xM���nlv��-��c6$9�s<��T���9� ���\U��vrn�^5���T�C��T��o��Z�eh��
�ċ"�Ԟ` �X�E���-��Dm�p�H�Q��Κ��	�~;�Si?���v�)͖-[h�믿�������K=vj.��CJo�X(CL�pss�7.^������R���"}�R����;WjUֲg3d����S�NQ�CCC�mj@8%���i�%ФW)�%��H/��~j��=����ӯTK>���'mx�؟1W���:���
��k��[!��d�_|6R��Z=��\]]MRE(7��S5Iz��^ca���l�r�z=�V��̰��^Z�`�222B�R������*
��l�o��C{(�J��=T*�I�&�곳����KT[�վh?]�+ʍ�E�)s*<"v�/��$#zQ,Ik�J�`�e����L��N�</�*�sj\G�Jq��j��a�N����`Lo�[�i�o.�Xr|��+�c1�G ���|���l����|j�65�7l�`�Z����oR��ǏS��ڦ]]]7o����}��R챀ˎ;6m���~������Ԕ���=�%��X![]������~kkkAAAKK�M��,�U�US��ܨ9��ʎl�5��m6��o,�ia�j�S㾲����5�YWg�f�xZ�A�;��-����,�X-U#lr
I�W�����{��j�� 2JL�YYYl�T���#-�OD�U��A�
���&''�@�`;Ձ�K�����(U_T���~X��ҷT�ֽ���6}��
�a@�c݉*Q����3.�NL;g\�yV�Ѻ�(�\�5�Dc�p�<��:�b�Iyyy�?�<5��&�μ��%%%������ԙ3gX[v```׮]��!�Wo�Νl�Uj

UVV.xhe���)��W_utt��⋿�կ�R��I=���Gj��0�'e�L��@
}�Q���dJ�'a#S�萾�>�@j�/��4��3>>N_�4+
�(R�f�/شBu�
�<���A�E��q8���B���SD�8U�K���4T�/��֙b��t�)B�#�4f���Vʜj�T��=]Ȣ�o�r�'��F�JdQ�*���@4JU���G۲� ��hQs����=FN�����������Ұ5bYk���~��1PǞ��+'f��Q#��Q�U�j^�������ر��_�����m���Z�PЁ���N�sdd�NA���HK�͏Iaa��$�`���б�v�+W����	�Υ��X�������o+�*[�[�:]�(����s���	��%kE��ʞX!˥1�L��b��:�}jPe{�@�c�HT^���H,6433��Hb2��C���7�b�UH���K�t>�?�#������l�٨%��xΜ9s������Tj�RǾ������)�V:|�����_�N
�%+pʐN:::J�eYv:���o}�UM������c/_��zW~�~ɮ¶m�*++�n������@ ��߼y���;՝())����y~dd�믿\|7(1���ٳt8����'U�ܷRbO�<��P�BU{X&�<*0�Qh�j��`Rq[���%����F̱y�Xy��j��$�&:������ܯql�P=�&f��N�u���)1ņ^%C�Ogk�3�P�Fk���y��ux���3�Lԁ�����L0����N���z�������ׯ��'lA����а�޸��9~��իW)��;w655��RT�S��ĉ�Ν���jII��w�l�խ[�nܸ�����ϳ'n��rz{{u�N�JUUUt�(�;w�����ݳgO�w����������WT��_}���tEt�[�nmnnnoo�{B%y饗6lؠ���QgϞ=|�0�)ϱ����;�n�ɸ�<��`X�F���WH���y�Nd�^��O_,&5	��h����|�HB9P�G�
���뎞��9�Y�?�+�'�c��DB����b4��f�*�Ug�
������	:N�Y��À����<.��W^�.\�D"���/���{��
�B��_��Z�ԁߵku�W9l�����ի�~�mWWWGGGee���X,�,��b�(���N����?t�[����7;v�����?��S��t�n��̙3���V�u��}Q�n5ُ9r�ҥ������7��O��q�ΝӧO��۷/��@���o��6]rgg'j�ܹ377W��q�֭�ǏSy���)������w��gWH�f�`Su>��P�t6��h6_ҒጕO��Y.��/Qy�#�T�Œ�rc�w����@�D�����kJ2ޡ&�����Q%�
��J�4�!��f�x|�륏	�$:-VIy�OvLy=�P��1�כ���t��}���띝����i�^es�S3�����w�}���꼀�n��o~SUUu�̙�����>��<[}0S×NZVVF=�g�}v߾}�=�h4ʖk]!$�c�|>j=��Q�(7�رc�������H�Eg�x<��Nw��!J���:77� s�Rj�өS��/F���?�y~~>�@�E���ﳹHٲ�N��n���lْ�K)5�8@�~�����ΫW��:u���f0��ɡ�|�M���?����Dz��'���BK�`p�M��X�EEGIظ*	U2��=��,�YIT=��K	[�j9�|)..^<�* ر^H� ͇�
�4�#�h,F����v0�C��lf�i�6tb>T<��TWWSg�:���=[e�MH�&��[o���s�Q�|��o����/644\�t�z�cccl|5� 5�)����[ZZ����o��^߽{��fcO}/y
j"���R9KKKS��+��K/]�p������)SRR������=���v:�[�n�K���
�W������-[nܸq��mj��
]QMM�3�<C�_pEF�q�ΝTԶ������'����J;鼻v�@cc#�r`=�_^���jsvv���� �XYEJu��;�́N����,�{r��JȞ[I�hK���`�O�(���p4�'�/�������xr�蓀�a��nY���ǰ�,��E��
6����$��ٳsss�IM-T�x���k�=���f[��PQQ���w��AEQ"�H(b+���LX�wqav�޽i�&���r��Ko�����?/��srrv�ڵe˖p8̦G�3R2��BEEE���T��?���MMMUUU��@�&��Tf*^yy9eή��lY��������9�ν{��Ql��!�2�3R����)+��2�s�M���h�j�׻d,���x+���STP�ZvA�i�Z�~?�*�u�a&��}
d����SSS�� >�  ��=L\9��'�<Y�[��s	)Q��^٫�UH�:���"�֛��~����C�E�A�>��`��w��Լ��{uuu7oޤ�(�������7n\��KF4V���&�����v��^]�<,���r��Y�u1���.�?�O��E����������������z�D"KN/�*�P(�v��%�86M��Z�*����"}T4M��QI�,������Sv<Ҫ'9	�\  �ˎp�c4�ej�)�/��%��EQE}rI�h<�����C�/�W��[�@$���l0�%&������Ρ#
�Hu4Uy�P���6�%A��/	�B��X
�ڸ�����[�n�����������O�o��[3{||�=�� 263��H���𳓲)B�?99�"����-,,L��(�t����h4:==�1l�WV%��b���J~xt�aq
�<*'����g!��	����I<���C;�z}�2f[�P$��Z4�&AdI�4MM�hiӕ�����^5'����Fe��I���1U�6F-�Z��f��e�@��x6�6�izQ0�b0�AnO���z.((�=�y��:����hddDUUS`�cDQt:�V���g����
&E"�����Yfgg��~&���r�K�)�Hb����e����?�G�$I���h���g�5�
Ci���y=;������iNM�̱��*�j0�d�7�B���Z�?J'��h�6��{'F�D��nw{�!E�TJ�`b7'B�,�A�Krs�|�HTa"&N��f��0[|�p(�u���%��ŵ%[X����Rh��N��[2|PPP033�M,bx7^`�XR3t�����P1(M�$��M	D�Y�;��q�I�9�A�-**
�BT�`0�fNM��j��;�;Y]��c�_�!T��fe�.`&��l�%TV5��ļ�+�,�b��Nu���x�RY�l���S~�����w�ٜ�����Y�s��U��DQ|�%Q��_YY�lE���N'{dɩ7$I�%i�&�r�R\I+�����>}'Q,))Y�HMQ�*�����Ef;�E�=*��Ze�<��!�e��$�EM��x,�닐�XO���~Tɞ�uU����U의Ȁ��3�ȥ����^f;,Cf\��a�5�̾t�ݎ��	��@FA�2
��Q����`d; � ���(v@FA�2
��Q����`d; � ���(v@FA�2
��Q����`d; � ���(v@FA�2
��Q����`d; � ���(v@FA�2��[�JӴh4A0�L�(r�������F��ǧ��&''iC�e��UPP�t:�v� ����<F_< ; �h��/^���g�������(
�n�L��;w���KUUUF�q}��J�v�GGGsrr����S��B�2���>v��ѣG{zz�� �� h��B^�w``�7�8x�,�k�<�MOO�B!UU<C�[,I�h�N���쑙���Ç_�z577����n݊�`���̡(ʅ>���AI��V�^����h���i��z[[[EQt:�[�n]k<��������XL�E�z��y��dI���mhh(..~�x���ĥ$�䥗^B�� ��������###z�^�嚚���:�á(����7&&&h�6��曲�2�ݾ��C�Pkkk[[���R�wpG�ҫ�X�d2�\��I���N�sM����kll�l

���=�SOOO

�
,**���Ƭ���A�2����|�
�a6�[ZZ�}��͛7K��K�8}��G}���;77���v�ƍ={�P�՟�K�C������S�E	$MOO߾}��O?=u�ԫ����k�����~�њ��_��ׇr8t�'���K��FQ��e��A�2D ������,�N���W_���K�2�V��{zz����Ѩ�����ۺukVV֚?;E�����_���H�zВ����ܙ3g>��㑑�����b����{���������q5�����t9�����k�h��@f���d3�r���[^^�`Ԇ�lnhh�v��d����p�����YdY��������Ci>�쳛7o^�r��g�---�R��Hk0R{��z��ͥ��Ci�D�X,�}�� :��@4���Fc*��*�<�T#���/t,�J��&ѱt������,{Z�n&e�x �M��)gJL��i��K��N�y�6v�}��ԁw�\��ٺ�T���u�[і�.9��N��s���vuuMLLtww�y�z���;w�ܵk�jkk<h4;::n߾=>>�p8^x���[[[/_�\TT��3����}��TT6��dZ�Tn��-��o�>ʟ-[K�S����4�C�+//ojj���L�%�Jv��QJ3<<�Fi�ȑ#Tv�<{��I?c ����ܹC�錅��6l��c�@��a��c�%31�K�!�7��GN_a�Ngii��n�BCCC���z�����~��	�ϗ��?22r�����I����~Ϟ=�#ttt|���555MMMT�۷o����aʳ��|�3҉�]�v��1:݆
��'&&Z[[�\��"��2���f3���ٳ�w�fvC>����o2�dY���W���q\mm-�:=�1::����I���)�
I�l6eH)[ZZ��:,�wQo<�D�Qڠ�9uԽ^��``c=X�J�TJ��#;�KUU��l�X�C(t:���4
�L���gff���7l����Ȇ��gIH0d�w:�7n<{��k�z{{�\�vtt��ɓ������555����֭[.��������j�R�(MgggWW��}��;��PII�[o�E���顝���t:����(((`�BR�cǎ}��'��N�w�^*?����_�NW��}�ټ�<�|�k�oܸ����̈�H�;w�|��999�h����<uڧ��&&&(
mS������������D��`�Z�l�	}e�J].�{キe˖��¼�<�ŢKe(��Ď2��uuu��ų��.\���f3�,8#�y��E:�7m�����t]�v�ڳg;��O����N�<�۶mc#A(��͛}>��Ç���_~y߾}l�V0v.��_|���n2��R�TB��Iw����ҥK�ww���G��H��z���kp������}}}l�O�3<<��?����Ҥ����B�������~�w�"�~��=�QSSSRR¦�`��6����WE�Ni9{��9v�عs�ZZZ��I�z�ׯ_�����nٲ�j��8p ++������me�������DQ��D%���*--5��,��few��H�`��p8���v��E���[o���.��K����骫���_�����
\YY��Ѐ�Rx�x�x����LNN�B!UUY�>��A����Ұ�h���P�||||�gd����3�^�p�����a��JJJ�����L��8p`5�B9�޽�j����ݺu���-H0<<|��yY����WVV��FG���7naAQ)�͛7S�	###tgR/��>a�hɻ}��񡡡���g�}���p��(tQ۷o�W襶��˗/?�Dž����ԣ>��Ėn�%�"a=��Ȏ�X�x<�z�e��FQ�TA��&
�裏������u�V�.I�$tF����Դ��$txYYYuu���nooonn޽{w�U*FOOOQQѾ}��Ngz܁�)�&�r�-����|����H$�t��.y���`oo/}���/--
�Ë��<�gϞs�Ν>}zhh�.���k���+��HM����e;>>~�����Q�`����$n���͛����޽{:d6�ӋD��Ƭ��5]����:::�]����žd�������$I������H�DQ����������P(D߲5h���$���BVY:���c�>�[j]{ �����i�-F�Txb�X6`���M&����H$�z=O0����M�6o��/��2R�"���j]�H:Wss�'���zzz������X����…��������I�[[[ϝ;G	&''����PIE�X,��XY<�k�c��%%l�K(2T�Ǻ�/�bv������'>rrr�(����/��bss3m,6"��h|��_���kkk;::zzz.\�PRRBY�iG����y晦�&���S�Ν;���CCCyyy���Y�T���}}}�Hd��:t�+��!t�T�˵������͛�<ah|��痗�8p���"���y�b���v��$I�}GL����/����ϖey��gsrrZ[[ϟ?O�mnn���O%�u�������ڿ��޶m�(��IU�+��ﷵ�-���I��:�.9�c�Ν��կ�:�+��F*�d ��,4�����ظq���p�Z��x�I�,������755utttww�Fsss��.333���F��^ڿ?m,Ȋ�
��"K�+���N�N6���f����K���(�z�^�e)��t��������OOO����Ú����������<*��f[���/_�u�%[0��8:}�����,�An۶-77��ŋ�N�
��IG���?-��!��f�����x��566n۶-^�z��O?���ߴiSSSӂ���b)((P�ܹs�/�cǎ}��Wn�{�Arrr$I�W)�P(�OMMy<����>x�`MM
}����]]]�9������������'O.
x��<�4Mc맮�P�r��5������ٰa���t��ׯ_�=�����m�\xiiiKK�_���ǏK��k�.��B�;33388���_����l6A�ldY.))1�́@����O>)((�D"}}}UUU��Φ��^z�\�r�����mjj��Tz#&''/]�t���ɴu�V,�O��ԣ���h�F�ԯ^}����S/}��h�
��� u����*���r�����,w����m۶9r��*,,������<��sccc_~��w�}g������ 8��]�vMOO�Y��<ϗ���رcnn��������S�h��/�X__O��d2:tH�$Q)�K�.�={�e��z;�T;w�ܳg��jŏ( ��6����u��7��W��)�A�v:���|����XTT�����g]%Y�sss�t��r��U8JC�x�
����g?�YWW���ۻwo}}��������w�]�reff�n�Wt����].��ӧ�&����k6���_�l��'O�i;x�w:��7o���4�=�����v���!:E,�[���USS�o߾��J���6��F�[~鍤�=����=��e���u�
]b'm�;^[��y�P�`_G��î���S��I�L�RL��[����X.���~��_d��U-��ݜ��v�NM$��U��DI�<�w6�
Ӵ�ľU�'DE�����u�7m�D�G^$�cSO���id^���~�]���X(�X,���k�wD"*���5�Lt^�R�Vt
v-�*�Y.�GFF���v��f[�z�؀��.�l6�QlVV�ӹ �A���I��Gg�b�Qt�����iP�
$���T�T���^g$��}}}���t{�������������Zh�d(qu�I�!ɛ�%���+:k��^`������w��ϼ�Km�6�{w��pO�w`��9���r�����Nk6�~�����w��Щ�w�a��jd��5�/���[��nQ�ti!��LJ�T���Wh+d��?t�S�si=�����;���nczn�O=� ��D�$���>��z�� i�S�'����d���Y�I���|i囖��r��	�&������(v@FA�2
��Q����`d; � ���(v@FA�2
��Q����`d; � ���(v@Fq�1��{�c}�89�H�=Щ��	�%��m��ʹ����w�>��G���ε|�23�������mM["��Ӓ��_d��U-��ݜ��v�NM$��U��f	o<j���"!~�`�����G�*��Z����N�Of;�so-����FZ<CKۧ�j"Tq����C�5��|q��%_M;�
�<�O7m鏙��״���q��8>��N�.y(DZ��g�N�kw�����4w�M?5������ш���o��6\���;���
и��x��Gť�.�7MXc�:�
�1��B��`�%Fv������h�swk�O7?�#5���0���t�<�Z`���	?��v�a
��Z�鿡�^�t?��x��Y���|7đ�v~3����z|"֡�2A
��T����0�~��t�GjX�ݏ�� cx����(v�x��@�2
�������_����;[o���5�����rU�>��~�>����s�,Q$c��b~o�VJ$řX�V�VA��UΛ�~�v֩�3�\���(MK�E�o6�5�c�������2K����t:�L&�?��zi�2i^;�����fUa�.䞞�����C�����ݝ~��W
w�#���t3���~Q�����_�Uu�i@�b�^������e�_/����Z����TX�XgЀ��b���xzz�Ǻ�����_~����j4�Gl�����������o����Eqyy�_�J�u�"���4����޼y3�L�}��뺇�����`�<�%��f������[�y���۷oG�����ĝ@>��6}��A�r_�~}xx������~@�R/��8>>���z�����	��B����-��g+�EQ�NWt���y<O��&�`~��O�%��ё~]\\\�V/���G�e,�k
�;��?YW�4W�T��`0�������:�|����EgT_4/�����a`%M[GgT}�vg4�\��8��y���k�v�r���4����>��"2v�P����'KU�U'����t�,r1Î�l֜�����|]=��翟_��;ғ�pC�X[]g~��)����lV}!�%-�>̰�Z��2��;M[Xa`���i�i�x���f%K���k?�4t�^)��~����0�i��;�|��嫸t;Fs'�h���?���s��`o_9'�����o!� ������ْ6X���G�8�rh�0��tN$�!�l����� ���	;��}�D�X��sV�$�9��gͰ�o���J1���~&�=�O�#����3����Z5�4p�z�^�o:�Fl6[��4������c0��X�TaG�t��~�N���363��E.`E��50�9����~�������ӓ��~����~��F����`��n����a!
 a`͚zLuEQ������߿����p�ydxm&�������\?��g~��l�H
�"�l�Y�9ۯ�'#��R=��]T��':�t��D�X���,uM����ӧO������~�
���l�z�!2F�r��a`�t����]�CR
(]"� �`;k�+�K;��Ł=��x.���F��M��!����$�܅�t�
��f��`�A!t�v��;[*���2_,`E��]r$ �֎�@���Rp�CB�
a8(��v��B�
a8(��v��B�
a8(��v��B�
a8(��v��B�
a8(��v��B����.��!�pPNjY �p �T�	a�}#�:.���>��Ϛ��ڏ�y�6v8��O�$��a�y/������
xU�z�����gV!
>�`v������E�`�G��l�n���)���?x�����-�-՞�>�����{Χla��s��wX�#`�Xr���^�	pvx�Ǒ�cA��������?5>��B�`w���v��(U�����S��r��Qx��������cVG��Jr�v�;]ђ�)�:[������g�T
�A��ub�����r1?��~$I�5��+����{j���tp$&������3�� ����<6����rv�1�T��^��?�2>��ϩ�)��a�Wy�iMJ��RU�_���4�W��N
�(Ž0Uz]��0G�ѣȂ�4���?��ܐ���?��///��x2�T���_�yǓ���ˠ�gG�0E��>��t��;����x0�8��k�I�ˊ���ϧ�5,�Ǚ��������f����'''���g��;ܰC���t:�M�j�2��h0(���~gJ�==�ys�2�4�����>2>����������ad�e���LJ�ww/�Y��v~|��7#�܁�BșPf�!�P�ab���U
�ar.��;r�يe�C}d���'���B�s0��c���~��w}	�߿�駟xFX��;Ɠ���x<~��b���R�Ë��������?��x��͍~�>�ʞ�痗�l���7(?���k������d4<��.�����û>��k�l�(D14���Y>�#�x||���{~~~zzzyy�7�������\�WfG5��[�����'�M8̰��oߞ'�����@V����e��w���������f<��n������OW�g�'U�!ʔd�+3ӗ�����E��۷���E�!m��$֡��U�_B���K:?p�l��LH��_��#�ױ�܃~���˗�߿O&����`prr2�NK��ח���>}�\���ݻ�(���s9?ҿB_��ٙ�Q߆8��e2H����H6��AM������~��zw4::;:2#��dm������ϓ`H_��IU���������\2����+�X�=�+Y�D�u`̶sg�v��+|R��C��?����{s���O��P��_^^noo���nnn�O��r����>�r�����k}����;,�A������q!��Ǒ8>�[q��<Q���t42brU.;T'�Q���l~����'�PR΢��"�X1U ?j�k됉ϵ�x�ooo�R���o��������Ӫţ���?�iE�e"RJ)���Uf����[������x>��i<e�4����dZ�YXN�ɦM��h0n��X�Q<������әR����\��Ti�샮�zR^N����Q,����g`�_�I4d�s�|��mZ!�I�vtt����?��c<�S����4w4�a����\���z�O_^^ڙ\��9r��#��xXJ��r��|3���/-��o�"m��(��i�������c��b�v�B�q�~��{�nLgj �׻��$}�_޽;�/M�m�u���vg����y�/��������K�n�K֧��/��c��B�'ӣ��竫a���y<���7}��޼9?>�)�<�����+Ydu�Y���W������8d���{Dr����?d/..N����������x<~xx�'�L_�>M�˧O��Ŋrd��ϟ���L&����~���էѧt.��OOOUDR���}�6x%�|��o�h4��?��/��?����J����󫫫&R���������4�Z�{����2�H}�߾}{)G�5�G_��2�*|��0S�!�Š�>����x:m�#�v�t_�����ۛy��>M]MͿ�N?������꒛�Og��.����㗙����C�E�������pĒE�!chFid�W�$f�����O,��H��c�������毦�F"yuu���8�uٯ+�tK��4}�U�E�M}^}���	��`qT<�:����lk^�����奿������	~����-�v}域�?}�������u�������d?~4�L�ɾ}����WUr�}��������F��;6�y��&�h8���x�^�C=O&�܌�ӟ��.NN�e,e
�����w�F���ӳ�~�|~y�~|�o�w�����p8���;})wOO���{�����:f֧�o�/����v�||t\�2�Mo�N�FG�?�(�����t���(��#V�ҁ///�hY��G�t����p8��ֆ^����������㏻����sso3d������_�_��ۋ�}�&�����/_���>��wT��?���>�>˛7o�������G777��H_��Nu�����i��7�O���S������@�#�{���߯��S��=ѷ�� ��,���a:����m�x55c6��w|�7#��B����y�QHquv���}S>:~{v��������su9G�A��6�3��/�����������ᡯ����T����,@�q8+YS
��gPlB����?��VWM洋��)C���*J����>��}�_�~�W����~jV��F#�����o��V�S=>>~��M�"�����m�������k�˗/���Ç��ߛY�>��󟗗}���g~�~wW%��ߏ�v}���<==���?�o��_�7O��L�[���ƫ�ߕ�W��ɉ�t4u�Ooޞ�k�O�������q�<S3�����|z��ht�N.8��"�ͬ����2����Zɒ�֑XÒ���f�����0uU�9�pww7>~�����W�o��p8�6�
^�������	 �`�i$9??7���4�F3��'��Ք�&�����I�#a�J��з���y��l4(~�z#e�m,��F�����i~z�v�O��pX-l�yx|16j�<��/��&,��G�
?B���[K���&>��/�m�kX��p��$E�w�5
���9k4�LD݋<M�5�(W�T'v�S�����hT�ݨ.��i� ��)F_���I����{g���!���w�ۧ�����h8����aƛ��b���b��8���I�w�Bʳ�o�e2}O��m^>U�o��i�
_F�^?��dh�grG��r��>���֑,�z7�8�o���)�6�A���G���۫���h��b=��Qe���YG�	�Z���C�����Z_�_�������l4
J,`;6�tq������d6;>]�9��H6�;�:��oء�'���l|�p~|��x�<O&���踐�K�5�?%g"<�ޜ����?��D#9�b�Iz�d��Q��Z�a��[�t����/���>صa����h��`�eoH�U�JuM�!��沷���8M����'''�G�׼RŽ�'7_n�&���������5��n�󍵓`U�/��Y�ͷG�����D�o2O��E7��E��\�ց/��;K����������qH܇Q�wtN�6j�Fun��^)�[�΋�M��F��R�FM���>�O?�trr���P�󨖴���͇������@رƤC�y{{�𨦳���o���Lj�[-�5���%}��yO�2�������X�5~��==:��x�4��͋�����m�^��R�N/U���b��a~�ܖ��~�8*�?��tVOG['�uD'p�~+�w�wtt4�y��M*777ղ�j?׍��R�C}M������N�m�"�*�f�*�N���}zz����xvv�k �X��nn�g3u<~zs�D�Q������d:O&G��=���ԦK�b
�'G����i2ї3<>�v'�{�ʷg�<G�̼�=vT�i2-��v��,��n���kd��?i^�R��f�>�[r����6���_�v�c\Y���=��)�����~�߿{|�řR��o�uz��M�]�|z|����Dzo߼999	������Y_�����X?�&ӗ?���/E���r����o���������{�V�i&/�o߿�����Y�����k}��}�v��<�O���-�..�.�/��qђ���U�D�l���t6�J<}�����Me�%��:�`Qjx�ۺ�p�-���l����U�AHk i �8����R����ׯ��`���d������Ֆ%����B��鷷��d����$�)��?�w��	;Ž�������Q�?�ys�B7�������~���ۛ���|��]���:=}������)�_�'GGf�G:^]�
5w�S<"�J��t>XXUK���b&�}����&�/P�W�<����H*�P�ѰC����:}|<���V��p�#�l���x�0�}�{��z��4���~���T_\��8@_ç��כ;]�?>����/�﮲x|~������V_���թjǟƓ?�]W=��çO������?n��G��=��'�l~����痱����?�|�v;�M�'gr0*��r*�ۨ����/���;G�{���yww[����%6��͟���_���(9(k�B�v�vD�B����duX^�_^��0��GK1U�ոux�/��f�n�x
�hGGG����>�~�6p<|}}�����
�OW_�R��=�o������V����.�fRM��\��Bk8���?���^�a�:���뛧'��4_�����j�to�ο�� �?=�)�?\^�C���u/+���FÁ>b|����̏e��'(ਚ;��!��c���X:?�4f{������e2"ǫ匱��Ա��S*'�P�_���%������#+�7o�����S:�(���\�X˾���������|�R?�t���/娌e��o���'��EM&����j��.�y�|�훾B�W���q���Wk�_A����./͛<�N������Ө�_���,��U�᠘�ݼ̲�E���������m������_�������|�*��}�z{s��|��z�K���WD�3��j��a�Q�hX'���K7ט��ye��y^�-P��G���W���^+�޽�oY///_�|�N��-���Q�}���W\<��C
�=???;;{||�믿�	�s�s}e�����h���?�/vT�*8o-|��Oy�Zu��9&~�����l2������1�D��Ed�)�d���޾��۷��/�G���H�S���a<_��g��x����oNO��/��l�2)����'(��TF:����O�6y�p��]�Ka�>}�B�t֜�9�2�m�=�R�ci����z�y�?���ѻ���!c��bP��#�G����I'�,�8?;ͬ����o�Q��͛�ɋ~Ӟ��|8?����������A��	$���V�;�Ŵ�o߾��ߝ���������]�����޿��;���߀e����=���Ç��2yz~~|z����~;99���㣾�O�(�����.�ۆ�A��/����HI�2�}�'�]{�$�����)��
)d�	��E�ߣ>}���W�Y���OO�o\�d����*������U}5"D���O����+���7ۿ�����P�S��ϟ?��c}M����5��nEQ�=��ݞ�[��>��-�տE_��j}����W�T�3(;�c�_�;}��?b�9a��O���o?����<�x�L�|Z�����N����ۥ���������p�l�i�"G���å����;�P#yX��4�;��`���w�ӳ�>|��%�wT3�����͍>����J�}����(}�\M4 �>^�w^�_����ٳ�T^��3��11�3�G�J�k8�L�'a��)�|���d2ч��OO��gk/�r#C]W�z��T�(i��Yvɪ�ɹ-���������흾&����z����?�tzr��3V�b8,��*Ï�I�?���A�f�h�!�
fͽfO�"��x������������~��o���W�~���?^ڭj��o�%�+>����߿�_!�Y����o��6�s�kҼ�Vq�~��Ό��ht~~��`_J��l�a��>?���),�k�ؓ��2�'��f�������=?�f��OG�����G��U�q�Hp�V<K_'YO'���3Z�p0�ǥ�W$�e��,usG8�����1�;�yweJ$�hB�e]]]��o_�>>>ߒ'//����U��aU����Q��ꚞ��W�M�\��������G777�ww�Sd0(..�����z���\~b
��>nF��|�������x\�B�D���
���E���b��jƓ[F#]~|җw{s���XeC�̌�XqM;v��"��F�O`َ/-��/�_��K3�uĒ��bq}��ƿ�����x<�އ�ۈ���w�z�tԫ�G����_~����~�]D�R�w�fBG��������]__����p���zsn:[.",��*}Yk�������{��&�ξv�ly��=S�+��w-sX��X��;o�Js�"_�EB��]5Eˢ<t%��s�X-��>��yiFe��<�L��M��(�2��+� 
d�b�!y5�rGf����~��8��f�ф�O`�EV�G(Ѱ��
]�[�#�x2�|-��l^�T��>����S�+�6���Y1_ȱ�炾���T�S���,0+C��0�g^�EVb�%�dN�!BKWBIG���g��%tU��!����q�j
Hz�F�ɶt�S_��`@�����n���,S�]=;/ꦲm�ƚE��뾨��7��g2vP*��}V���є�c�Gz�MAuP����̌w�*(�_����K��_,�]�����g6W¼����/3���Tۊٖn�|�\�;&����!�ܑ��E�;��j˷f�ˣI=̜WF6�H/٥����?�4�Lnoo�?�͜�}>���j���~�����
��e���O���a���dv`��	��ÏB�K:���|�o4�h�"�d[;�2w���R��r�������9-p�!r�X�af��cqlk�N�!�k[��G|ъ��c��C�GN�{��������]�QT�h��~Xd��>�&��`i���I:�,��c� ���;��ŽMg����?�'�;�۲�yGu�f�c^�=x*t�k�7�xk���X1�F��['��R3��G�LI2%��G�+��og3cfG*�Xe��#������rP[����!�jqL�;�Ҫ\ᑥ"y�x�G]|˜�v����?лA^T���Ct5t��ӱ��ح�
��~�F�
�;��YD3)��ʼn<D�ѣ�">��!;����@������"��!C�Y�/�H::�	X�[9�칒E���2n��?�v������]�扛I�v�a���%�'��֦���԰S	��%0���$��N!��	��)���t�A\�#���r�ٮ�<^l"��C4�Կ�9���G���
|[�/t�
��'E�d�ΌC�9D^�a��U��腰��;�����h�)��!���s4�O!U�8�l��"�#x��Z?�c�!�I-�+�vz$�\�"";�,�w�z}J3�C�"�*o��J�S&}������k��L:��:�B�`{�����yG��;�G�aE"�z��\�jbZ�6>e�W����#�uɛK:X��B�`������h/�w�gI�"N�!⩇0B��z���^|��>n�'4��Б��`I�����՜9ڕws�P�Gs�l�>u������|p�;M�l�{�=�#qJ�1�4�{�!���C��&���y��n�0y;��v��$��R����'���I�^�%~ґs}d�<<�t��;�Σ�>y���x8Ǘ��G}�ؑ��;�l�!"d�.:,#st.Ta()�a��8D���!��!r#�HW��9BǬ^H��GI�G�����*���t�^!���#��,�y�=ֳ8�ω<�#`�*Ŷ��@��&�9��휤WC��z��Z�	�!��
�b�b:(��;��"����3��O�������(y�n��Ʋ���D�!�7t�p�)�;8N]���9�.iIm4�ju��p�a�wĜ��?����9���<[���\��"���,֒t���@�`ǣɼC��_�"��tl��N�G���.���/�=>>�f3�������h4��>t�o�E׎-���Ϟ��G����~��h��)"����:s=*3/�a��^��θ�I�|�B�ց�?8rOYd���y�U֭��Fv��Qi�0���Cħx����j0���"ךC֠�h��&���T����r�Io��"�;���Cx����~%v��>q�<�Z���;�Xf
�rgYq)Ila���7�bm�G�6x���Sػ�5�w��VX��A�`�U�-��t�"�쬍�#UF��>�}�"5?ѺOã�@�`�G��Y�l�h�S����@6�_���|����J�L�t��v��eFޑ�m�H4'��\��������\v}��^�B�kD�`:�;��gq�M���Dz*o�Yx}�2�{�&ӆ���H:`';�Ǒhv�!��x8ǩ�s;Ǹj�-f	D`{�� �JV_��8R��{s��=�c��C����PK\>`o>erߝ��6�+��s֎��^���W�b�<�M\X�Q�4u�N>>V��R�t��vط�~��Z"���n�K�������]r��c6������_���X�k}33X���Y��!��� ��o��b��$>n��hla��?��L��P��HZ�变����k8�,��tbA�X�3h�5���}�^��f��*q�s�J�HR���e�^�ah���AE∖��d�3��8`�;��CU��'���IF`ǟ{�����r�[���A�K-��=�}C��=i�l���;�pǣ$ �U>G���G�.���vǾ�A)��!!����pP;�A!����pP;�A!����!wk$��	��OH)�R�����_�m��m,�,���Y3a��FU6"�,DT	�TJ��[T�J�5��nT�QFfB����v���H�7Q�r*�uw��̎y"�
c/z[��2Yd"�{�랕��������M����i�)��2b�e��ߠ�{�^�P=�T�jAJ�a�:�5���bo����(�P��A�;ʂ��CUY/F��j�F�*��.��c1tT
frX3�t�R��V��f����u���{�\�n�fU��6��ܓ��̹���6֬^�zu��r}�
�ū�d�v\��v�
�� �9�¯s7��h�E���+fv�v{�eڋ��RK�����6����gQn��~��{(��~������(sل�5\`���2�z�Đ��C5����2��V�fy�*3JU�w��~��g�K��_�A��VU�����
��Uw�-�/ױ,�Z62ۛf�vCֳ?�Xe�%��A.�Te]c4�����=�Cn����;e�Q�K�QMb�L�.�v�8Ty����o�^g�J^���
�s��V��{��U�D��e��c�Jy]��.���;m���[:$9�5���*�S���V�ب7m�S7���}uW�,�B��ܮmtv(s��F�${��
��R��_�b��a{����9z�,�5\��x�nN{-^�3�`����eV��G���D
����d�[�Q�o���J��n��;��[��Ud��H��Q�O4��W�L]�|�Ʀ�4[l�S
#�9��\��c
K�^a��P���M[�'��mUŲ���F^���zU�9�W�^�"�CAU�AFp��T��&E��6�)�7vldΪ�L��΅)�l��(O�.��jՇZl=�Q�g�В��=:Cf�w�������>�Ҍ�Z�Z�R�8z��W�
u�D�o�lU(oIf�A�˨%*x���uwvT��:/�w4���f �ݵsѽ��
�Q ���h�ՄҞ2^��ֵ�c��O�������Z���;+�:���mz%b+Y�ɉ���/�n*�J=�)�ױ��X烹ޕ&��%Y��KuO���V,2Yy˺�"{�'r�r`H:�Ț���w�%Fp��ǰ��j�v::{T�v����zY׬nO��`�
�dz�u-�#"gϸ�����6�~e�2�`�+���q}�G�7g(!h��D�j4kDR�z7�`,��z6UN�z+:����O/���;���r��z�{g&�����J��
UT:c(����YE�)�T�ߺ�ˆX�y�e�eoc��x6�����ȫ�/u�&A(s�p�C<A��ŪXF�S��G$�PTW�GNޱH|��}�v����,�_��v$Ѵ�:��X��_��|@F{1^��܊E+z)�5}r`��X#�V��M����g��!�N+N��xuv���ޮdc�8�1�=I�wDv�m.Ү���?~߆�%"�7�jq�؀6g�_���R�li�:+���̡+;�u�zԇ��X� e��
���Y|��Q��J׺K�o츏�9{GՓC�l�ڄ�8���U���t�'��3d�;"�r��~�i鼣{���
y%�ݷ�mY{��C��$~K�\�u6C	O'm֝��D��8C!�e4yvb9E�hҮ�}�= �kx*��l���!���oZߟՍJ:i��O,�o�eq�a��*�h�A|�\�x__q_���q�{���>��q��o�v����롚���8e���En�!pU?(B�x5^��]�'��z/c��v�'Rj�:�NEF�����oa�M�DU�;+`�S��0�1v5
^+A��"��:�6���͎r^�X���=]�ҙ���6얌�&��M��N���)��p�D^�L3w%�*�1b}����\DZZi_l�a�2��#}�l�;�W`�ܵ
U��;C�2��l���U���\�iFu2'm�/N�p�f�>����@�S��X&�6��n,];�&V�(v��W�[��M*BkC����JPR��')��D*�2�0~Z���Ց,2�tE������_�/��Ql��ͺ��t���	ٖ�Ҫ���W�A���b.�2Ϫ��
��(U���S�s�K	t�W�H��=w��}����d�>$4t�E�9��g��CJM�d^�@��G�2E��2>��=E��H������zF�s��%˞��r;;Tm��y��aU�&��e������MÊ9fFj��K*�����a\����{�E��v��U��-r�=\�z=�wD�t�ϰ��n^�k���hH)yiv[�.f�m�Z�؎�f � F��G�����!�.~O,h.Q)���ՉU`��q�*V�����Zlvf���h���]r(
R�o�O.�k���M밂�Y��l�ͱ���m:k��������:}�w�#�P��N�|+����"�(���!c�y:�c�\RY�ˆ9�Q�����j
�l'lX'��..(�}X���c�� ��!^��{��̂=6�b-�56vx�e�?9�Mp%��E�aLʨ�u��7Zf^`��5#h�p����j$
vi�
��������Ef��N,�W����D�0��7%�9��*���^�Қ�kX�1�쪰��Hk�?��MDD�"1��SZ��L��_Tp��ʯ�W��(�B�L��R�v�ۻ����b.��������ZR�kR���\rsX?�W�(wh�Q���ni�����ꚧ���بT�L��\�W�dY���i4t+�h"iF�g�N��M�S�P����8$ZK'm=ۚu�`���.�wv�䭐ٳG�4��X{�H:�,���؄eq&�N먃�\���tm����qH}u�;�0|B�=�BɋJ����?�����u��D�u<K�w�`_��,�*&�{4�,��o���5,͖/~���h2`�0xsLݘ�:�rn}G�.#M
��Ύ�!E�n&$ݔ��;u��$������o+Y����mQ�saClmJ��H���T��R<��(�v��gn��@z�a�gv0��y��Y5[�Qx�Ͷ��؄��Qm�"�N�*X��[â�Mg�r
�X[��鬴�@�Ko�=��3���~���*�X�c��FV�M��8'��ح���2���bE�MX�5W#��EZkX̭g��88�#6��Z]cT���X�_���n^�,��iC�.Q	1`�WU-]��(s��{�v�e,cƂ�`ׁ�����!�D��;̥+VgJ{z�.��
�2�v�����;���=d&�,�ބ�
�MX�+�2�]��1�
Pm֦�u�����5X�(��t;�=��@%K�ދY����˧���S(7�`�`g�f�,����\�Rm�R'm?�2�#Q�2'30�@bkRܐ��a���I�0˾'�0�]l��*#�V$��tm7Ցy��ɯ��>$����XXf��EO�jg�� mlю&U�6&�2�
�����ks�U�ަ�3��$�S��s�d	��y1���}f����Ȼ�lIbT��n�h�aiV��I��!̶�6	6��:�SG�ְ�uxsM�9��Q�5,�B�)������Ce=?�~�l��mGu���\R���fTe��e~��,�X�b���4�Er�-�t3�#���0R���F��U��9Q@��
7�7�
��⢷�N����1�#���3��-�	��U����;�S�Wф9�T{~�X��) ���YZCL��#M�J�H�i���C����+�b�Ύ�.7ݑ���HŽ`e���"I:{CYN��g���:D��kM,���mRZ_4��j��������5D4gr�a)��8������V���ݢ��@�lac�X��A�{8����V�v�]�2-`Y|Qo7knR�%�PҦ�C�5�}bo~iy��#����yGp��ֳ�R=1�#��O$�=�C��#T��%����(gK�w4I����՟KZ�p��Q�9mB��hR)�Ə�d	�t$v4�eqe��ߐQ��H��Z�P��'Ot%��]֫M�]IG�T�FC��%m�:��)U��L�0F{X�͎��F	'�P�&������07��r
3�Q�]n�Y���CXN�y��������tv��8fFLP5tT_4�4�[d�m�ESIKgm�Y7�gY����N�F�b�&����/�>,m[���t,�UFGg"�҆̈́k
i�3Je^3;23:;�1�c1��ֱ����i��b{���oG2T�73;BJ݊܏9�s�����IFKY2쐱h�W���+"�T��0"""�Θ�W̡�UgG���0�n1:D]t�=f[�=��l���*ww_��;���n�P�����0����+�&�v��5VJfTW��X����s(���Ѷm
�"�؈����%-eٶuxᅔ��^�b�iO83n���^N!#M
e{`��b��R���Z��>����۬�Q2��/[a��I��o�~5�ØH*�	mߔ��n��L%�^Tq�_�+gk�:J�װ�ALp4{ʘ7G�Wɸ�u�n��`#I��mtv���%�x�Q~z��4�N�Q�t�EυrFu��*�h��n&k&��_��K�bVGpK3��]��^�vf�1�C����ͺ�H7װH�HP�J�yk��ԕ�x'O���ܕ��	v}yv�%�h6KQvafb1���|�]��:�i�2���)��;��Z�Im��PF9�&̘C�ջS�+��}:�l!��)���v���v ���m�b���Ҕ�v[G�o�t����:���x%2�cQbϜ˱�a����[��H1�k�ߵ��sl��n\#C����o$��M=T�l=�ä#������be��l�b�ֲiQ��Һf�VÆ��D��
�&M��b�R=t����e2�B��Y���O��ElE`4�����iuwFlT��`XY@t�Y�M#��a|��氻N'�v���`�cR�:o�h̡�HCe��K�e��7��dQ,Z�j���j��Čf��"��NP��	8���n#�v���Q&�2\������^	�&UހRa��g��_v�ٜ0acaG`J�Zb��n����;��Хi`4s:�U�ۯ��]�Yڤï���,�;��%5��m��61�w
Ka�ai�:�}X���Ls�ż�:�m?m�rg��U��;�H��x��Q
ة������t4[ƶy���~����.;1ּx'M�%��u��Z����q���I���Jd�D|
Kg�!�l�"����M!
Er����~V��3�C1�`4�W�E*v�a�t8CI�X�}�j!L�DVV��ag�����E*�Nw��Xi�a��.fI��P���q�<ҽ{h���
�tan1k&��+����Y�R��0k)�WS�נ��a�^�w��u�ю&mo�4/�U�i��&]��#��/6��!������]�K�ۼÞ�!��eE���I:D�t4���t�z�K;�T�f�ι�m[���E)s����9���E�I���a����R�t��v�c�y�Wι�;/�]�"�
{؝&�k��.���X�M:D`���PRw������Kj�u�CI�m�n�9h�a�v�%��M��﹆EFb�D���e,+.3Q�.6~�m�3Ǒ
g��E�!��+�F�������ЍhR`�u,.7�	K��^y�7t(i��}c��+�ꈅ+��z��IuueH���q�(������2��šHZuiw���PRwTG��������l�������RD�:�����)I`L��鬗jtW��E	�p�-��rS�Ѽ'2�]����hcg�K��h60��ۖ6�t3�h�j+i�:̡��&,B�7 }�E��#Y�ob��b���!#�xJ:_d�Z�B[`�����b�dA�^�m4[�V�a�5�!�E)R�Q��f�k���—\��ثu�*X����%�$XiC�B{�tH�N���k�����ֶ�<Ѳ�+�3�`�Q�9�%m4bIG����+4���!��s��bՋqc�ޓ�l­��}b��r~��7*8�U����-fU��î��ۯ�CI�Q�t@�;�x���m�2�ERЬašK*��I���a�G%K���X���5�V��;��ϼ��������K:���k��#��J�PRa�5k����0�:sI���JZ%�sF��aqǐ���ӽo�l�����;��q�ӹ�%|���Z<;��"��-I�|#�t�y�r�@�I�tV��;���Q�2g�F��13ְ4yGS񧓎@��u��b?#"H[2�P������A*8�Dv�=l���!�?��G*«W��N�ґJ:��Bڿ�J(���h�PM[G��%��6��3�q��Uݧ��>��l{f�LF}W��.���N�]��XIGX[�dl�"��Q��
8��t���6�I���!3D��#~/ċ�%ְ�[	;:�~��X��w�����L:D�q,Zd=,�N:bۯ�vCۦ���f��3���v�˜K���X��\�bo=�
��Ž7D�v����k��dA-�b%#n�ё����CK`��g�J��JX�4T;�C����\:CI�L��8�c���f��W��c�����Ѥ*Y���B'.HD
�-.c	M0�=����e���,�Ru��_V4C=���
�T;�H��p��4���M{�4s�fK3�CV�H�WM[G��w���.��@�xw���h��EKΩ��#؆�̵*��eExHGh�G~�a
%-������b�#�ݬ��4��gw+p����:�B>'-�]��)D��G�
G��q�7�
����"����]�J:��K:�������8���M�!"+n�KhoH�df�)��7�
��Ƌ��k���)z�(�v�r�Ej
�M�D��#��PRc�Z'�h�2�MX�Q�v���^�mm�����,�#�{�"�܁�]��!�n%t���Bs`�����x#�C�v4���$����%�CXCI����I�e,f�m4P�3;�i����:b�@~�D�#�(���GoF�J���5����Q�"N�;���9ꩢb�������C�)�݁ŜK*D��a��Y��d�'̨�l��{g��L�9!C�������$�y�ћƘR�~��,�6�"6�C��_"�p��CI��W��H�Q��
FXY�pfv�7�=�5�4�Kd6Q�"��&)�2�#����+rn�;���P���i�X�y4S �7^����C�Ga/]i'���J���/��wZ��vJ���C&��.��Žf�޼G9����eQ}�
��CJ����ֺ����v]�+eY�؛I:�{�v�usI���M��ݴ��v��ʞ皙6�����,��!�u�uI��$����GM��=��.e͐��9[̮1���0w`1.�_I���f��:��N͞�2��p`�l����/��9rƔ�?�=�s1��l���eוt#�h��&��#��gv��:"�|�Ѥ�;6��b3a��AM~{�+Y��J�˃��;�x'�:����Z�"�L:���Q�J�y��
n�0�9���nVyi�0oz�v��+8�b[�=0̕,2y+�˦��'yǢ�6qu:r�ѻ��m��V�̜���,�5�FEnF��f���I�+2װt�í?�Ҝ7kl���噞���3B!����8u׍u���uk������,�^����-.'����
���E��|�E	�}!�矹`,1��|��_��t.�|!���c-��J짉�8�\���?QA��B��[�t�9�ױ���a�j1�«���`3c�d�^Nq���Ճ2R��79��E�:������y�<�}xf��U�TK_׻w%8�#�>���L����Ψ��Ok��<��fn�!g^z|
�y���;�.��CI��E�#�;��>�_վKt&]{�ߛ��ة��pؔ7�!�5���~Quׅ���YW�cU/�hKKwъ
������-W�_#���s:Dz(�]�+M�XT${����e�}Z�H�|t�?�/Q�mkN��+H��Q���64r�al�ӑw��I<��`��I�j)�ɽm��_��������#���w�Dxgb�7/����2�����3�-;�DC7���8Ds4�QԨv���a�9
"8�èj3&���+fa�%����8Dt�t+D��-��� 穩��+~��xF*k�F<�pr�H�a��u5��C-ͯh�m�(eNb��z,|��?ňgV¾��!�g������s
�U0F�!��E�D������H"��n�Vk�_|5��구�G*D�DR�>u�/B�Fux��[{�v�{&:���㷮W����o�W#�O4cm�ߠ�9�TD�;�U)f�d-谟��(i7e�M�9.3wr�(�R��y���tNi���%��j�/��8a�
v�.�nl���T7�hd�,�Tt㌦�n�]�9���I�Tl.֞Hjm�┨��P���b���M�^϶�?�Td�a��<?m���u=��۲X�i�@�����J�y����"U��;��,n��'Z�%�"��IH���Іs��I�O���7���Y�'a�[Q@��_#�e��t��i��B�,��ʮ쭺�+�����W7�t�[��J:���f5m7�+��2���g��M�{������Ѥ���L�\e�s��^wd��)�6'zm�y�"��%4hû]����ʝ�a>�!���9&z-2;>�'������.���`CD+dg�C3}#�^�&�50�B�`ejL��ԩD3�C�V2;����k���DR���PR���[����:y���uy�L{V�[�������"��E{O{�llX��~!C�;��Ҙ��|jx-"cU�y,b?���z�F��s�y)��7�k�~(��Xk��4n$�b�~	3�w)�#�+!��Bd���'txKWT���#��t���[�J�N9�V��,bs��M��m��#g���ts�y�@J&�-�����cX����/5����@�G��#sp��&-"aN0�����x�[�G�2_!�*�����kX���S)�ʢ}�*d��
an�"���ލ���Qd9;�t^I?��l��t�fp"��zŬ����JjFV�\��_���:�y�l.�h+���)���*���}�F#+�h����u��wT�Y��1�C2cv�3JW	�oL+���y�k���O:�3���&�v�G��xZ��DL��D�-J�Z]N*��X�"�?�K7���N��.9W1�nŨ6��j�;��]oRכV��O$u�f��
\l=��.ݙ���fs�t��{
K}��;~Fw=#��ǭ�O����{��#�xo↵��w�}(s��|6.����C��<��3*�����>�]��#��2o�~�l$VP����m�fǢ��8��j�eZ3+����g�t�sE�t�_��ᗟ~�an���4~7�?�#�7ﶹ�=il_���U�Ee8�ȸ��v(��t]�t����H���,퉤�I��:�y��;�Y�r�5#��+�0�{5�v��;�$/6��j�{�X��_J�}����I@�� �㝫_ల�"���WE�ݦ(��
3݈ՓF�Q��XKb� }c���+��P����vH��'��ЖNOG0:	��0�9:�U�sI���&Žv)Dީ�צ��͉��Cf�����g'Zi�u��e��	ƒ�����mO�U-����o����P����@$&˶�UɎg��������^�h����殔F�c֊�݋�Y��e��G�RN�!�u+���cH�H��-�J:�e,��wK�Z��N��s{�Я��n,=�S��k�R闫�OGe�֦'*R��������;�gU��sFx��a�x���{��味c���A��tX۸{��ͬ���jvx�;]F-.����,W۰�z�gq�J���
݅����d	(������` RzKW�9��GZ�C:��a$�I:�ڼ
�����O�5x�#��E��#o�M���n��>Ns�33F�#C�5|�bgX�_������xQg?Zatvd���Ŋx��y�]~�����t(��N?��d�׫
�|�8���O9��B�j�n��W��7��!�*���#�S�(;�us�H��N�6�C:�j4�t8��]���.�}�(�i��J.1���v�͑!2�Ķ,"|�v��b�"�C��!y�Y#<��KK�+ӆ&�	G�d
c�'�X.��m\�Gwґ�Y�����"V�J��1kk��tƋ:��^�"�MU���M���C'�l��E*�t�&Fv/oI���v�\qKV���Ț;;��B�o����Y���\�wfq��
s�gps�$(�w���)n���;�k�P��H�ѝ}��>O�%O��Ρ��	�O���X�a�%K\ue_�+N���b�J��
">��O:�s:�2��h�.ʤtҝ�{�Jw[G�#$��qgxz���iܭ=����N;3�^��Ę�К;y��Ӆ����ӢM�ʧ�{I�N��E"��Ÿ�~������W����
>)�τtPG���2k�/�2�.`�PpȮR˭�B��/B�L�1�0���xE�����"4�405�YG�-����|;�$���YƲW7�ܱt��{����*��!�]Z�焿����dh�������ƴ�g�5���!c�ƶĆ��^+\��3���Ff2/P�}����v$�ʭ�*>�u�ff5)�ŧ1�Cy�V�)��J��\V�����f8��/����]W���g7��
8�%������ѳ�c���eti��i��adr����פR�ng�;�#�x��J��C5y�uSBI�3�T��H��9���>�����N=T8N�Y�#�NW:�H��"�0�HN��,�77�b�5)���U��BW���vc�pC�p���:���O:I������Y�껬����cy���x@!6�K8��fP����>��V�ۜe1��Zƒ�W�;��m�'b�ţ���E����I�F!�9��'�X�:��'��9���8h*�EXs�.=�p�Tl�\f�i�r8�[$�f�6�H�p��0:��t%;�p'�
f�;�#�t*�M���u��T��3c���*8�ޡx�EB��b��gGp(o��,u�Z�$�!�*�EK�ЄZ�b-��c�[̇&��L=��Cm8��~d%]~��#Z/lt�_:�l��\]o���ʡ��W"��b�Y��Cx���E�m��|GD�]a_�uG��?:~[G�꛰�?O(5�T��u�fx���	N*u���9��$A9�J��`�+�c����U(��~��uN��<��L:�y<*8�4�<M$��>`kr�,�CŔ�k;��.Z	���Z��*T�I��Ѭ�zE�
�6�
.`qjm7O�
�o�A�����o�����I�����o=����[�b�+�;�ܑ�V�G(��έR��9�T��K;_ZY��p׹_�*�{m8�E�c8���!��V���0����~h�0��
����9�7t�w��v`���m�n۰��.���s�㘹qNl��:;��$��C��Dj��mhEϝhEgG��*��)�pQ=��%-��ţz�	;�p�_��|C�̉͒I������I�!⥊��>Z�N�V�"��!"�9�:1��!RKW���_��8��ƺ��:Z�n�9�͊�r�H�`k;ґG��C�[̲z�a�o���q$���� �K5�9�T�oG"�z:ү��>����(��qFN�ѝnd�A����
�r$ba���csY;XI
�H%��W�����C���%#�w�l'�\B��w[��Cؓ;��;�}��y��
���T<�s"��+A��?^�"ҫZr��t\���#�J!~��b��Ae^l��)��R�M��U���0�DizȒI�}��{:�=�#��#'7��ý~�G&w�/���,��t�y}�����ֶ�Ϻ�*��NB���'v��~����z"U&���d&�9��C�w�]:� �[��"����lA��5�*�,�͝;�%*u��"���m	h���[��wvD&tt'����T��Z=��t�P�a���B��
܃��o1Kpj��3K,��X�"����QqZl���wy������%�DW�$�#�.JZ��J��Ȗٓ"Q�dLy�K�q.	d:V���E+����	"��o�H%��+�t��X�����(7v���yaG:�Xbx��/7ʘW*�����)��!"[�X"����[�sd��IG�e�7��2rʍ���w�<�U*�ڪoƱ8g����19�C�[�":&���6��:IG~�ѕX
�ܓ��#Ws�y��F�a�kޭ*��}�ܕ(�)gk��4W��>��
���A��Gͳf�<�J;��ecUgV��[,�OߘCJ����_)�
��:���D5�2�mb�rF�ְԥ�%�Yf��>�s0GU���o)@׺a6t�E@�&���ƥ&�
�1��Q�~�W^ҲRgG���/f��7ΤR��a��s=��Z����E���>~�!"L��"����"�d�ӑq��$�'�R[(x�W�%F�T	�(,Q	VL�&��Mڝ?*��V��ّJ7��Z��8ApH�H�^�J*����k>�v�v��lC+"�;D��~�Pf�{&)���y�� G��[y1�0'����p���:��st� 鷪�s8��c��`�������U�3�����BϩI����]Q�HM*�+�'��K$"��v�K���W���;��K�p�O�4#�%�pGx{�����p���^ϒH�m�S��+M�=:c��FN��=���BϿīd��
8"��[�3!�+V��fDX�"�nE�x)���F%�]f�Xè�~I�X��cSaG��76?&~3���;D|����P�!�#T;r8o��𕉵<u��GV̑��Z��o����h�r ��X��i��p,�qo0��u�H�wvD+P��XŭP�W&;��H:DbKg�a|?�m�A�!ְ�Et�g�F�!D"򰯕?2�ꄳc���I�l�w�%c!r����#t�nE#�H@zV
��HV���Ŕ�Td�V�H�+ݡ!29W!�бɤ��T�^����#�kz
�Y��#�w�8�c��C�s>S<�����P?��F��>b�j/���!��\����Kg~)ѣl)����܀#Q��ڐP̑.�;u�&t�� �M%���_�!��::S�M��X�s�C~��3�����ѯ�Cd�j���<�w[���>r��G	H���}���(H�J��)�$ʜtY$�EV,�H�rDb�ha�o݊�7t�vH���5$"�mG[�����?Y֤�����o3Z�>�nyKZ��w*u�\�H�yf������#|d�3�+��̖i�PK��x�V��-��$ꗜȣW��g*yt�9�&v�p���f�b垎��@ؑ��d;;��;V�!����KZDG������<D�F���CăF�d��Ctuyd� ]��@"r��^�HW�z�<��&���������9D`����!������t�
��yc4���i��ѷ��a�¤���<�yG�xW��J����G�5��"��x�J����l���э=gd^�a~S�W�S�#��������{Df�mN$�wg�—�S�h���@�uڢP2�#Z�Eˊ.��a��"���վ�sJ?^�ҵnEt4t�Ֆ���ВI�f���'�|%x�5w�T�X��̺T��(��E�:���B�gg�����_��@���
A�GG�1�-���eꅜ��)[%O�J�]�'��8��z��Q:g̘�!:&��N::�tt'km�h~�a�Xf1����yt/i�T.+��[��=O�H�({�K�:'�� ��V�u��x�V/f�4��d9��7��!^�(�2���n�XbZ"�ƥ+�/���!�_���a��Ts�f��T��f$�%Z<��G���ʹ�G:�X"��e9��D�5t& ��|��EfTLɀc��-�٨W�&��t5t$ƃ�K���t�~sI�v��I��i��b�ʼ�μ�#��]�{tm�c��C�і����d"���Q������n�%j���#��Io0*����	�I:V��;2�4k;�X}x�������!�{��E�{���t�|�E����D|�G�PN�!�3����)U�N�P�"����*�J6��C���_��m[J:D�@���b���̰ҍ�"�ӱ��C�h�H��ү:�7�ϤT�!��t(��h��6�a-eB�Y#���~�QRe�����s��:�&b顤b����Ît�������{~��F��e���Fu,=I,U�����H�{d~�_��x�O2
�>���3ڍס�p���}g���LǒH���t�S���-8eR��GVp��ڈ�n"�����S͡��ݴܭ�b��C�Su�B��P��%�;䞯TySx�P��P���8�:~e�Kݝ�?>MbZފp�0F�����XI^���R��9�Է�I��|=�a�q���Ge��i�;T��"{W�n%�eQ�[��mi��S�a2 ���5m,oCJL�}��k��>x��쯫��e
һh9}�^ں7rL�a�
��߁��ׁ�u�~�<�_?�;"~o��Q�?�Q_���l��C����F��;����q�ml��c�3��[�q��;^6�<ߝre��>~��i@�7�u���
���5
]�
��eý�h�����Y�V�ѷb4/�zd:��f:�_T�18�Hq�B���g�TD���@>s���>��f����;��0���>���T�%���b�g�YNc��q�ڴ����[Wd��X\n��
z�aIvLө}�RYf����9��V�~o�|O��苏\��C3?���`,>����HW�ѱR�9䟤C����] ����k���7Jd]���wĕG�z����}X����Z�}��7"=B�$��U�U�{�͑f:�Q�b:d���$;GP�8�V�;�+�T�a�[�l@֥���HB?�4
�UL��8�kU�t(g���-�9�#�B��c�;r����r�&����}x�6�n'�I/�?���HI�&[�1�
�WpXG'_��k�'�k���X\~��d�Ey�E&>��v�q-�(����mdl|rۍ[��z�d��P��Τ�W~�d�6�y1M�9�
�w�+�X:�U��������7�.F��z���nIZ��*�k���c4������/�Ծ�I=��#��ZH�F����>s�z���_|� -�Abe_�����O9檍:�Qb:n��t,i�g+;꽱�&�I�]�V[�ZC�d�,��Y��gD�k\!�j{�Q��Ө���r���
�_�:�qSo��8�[y���pc��Cβ���7Ɏo�;䝂�XyD��X|LG۽��������hb_M;��47�l`�l��W�9�Y�㻘�L�1U^١�b�ʜ��z��Gl|[Ň�}��˾6�[d4�T��Ҳ��ks�8|9'-�uͱj:�ܞ���1�Q�;NU�a33mv/[��޺rf$�����Ld��Tm��W,ӥLaQ�9v��L�,;6�%����<�(�}g�G�ಎᅨg -q��E4��v4�9�1Y�tfie��l4��c�ϦG��w(R�!�L-�QJvg����*���#&��n�NJ�
1Ǣ�����o�
:jL�����uu�\޳������
�<��s�O�
��F�TƊX�	�m�c�C#�6��Dg$
؃��N�Z��4�S�Z�WRɼ��U�k��]����d�Tv����z �-9g��ø�ܷHܮtR;V�m�*ni�Yy��}~`�����	|,�E�"43alA˺��A�F�ʂ%�tX�Ó�C��c�2غZ��F�=ƞ�Qӱ�ˊ����ĊX�1����X)���s,'h�gߨ0���#N4�U�1�fVZc�Ұ�cO��.��^�e�{��~0�p��\�Yi��� ϧ�\�+!�tU�òCվC���ٕ�+�g=oQ��`
ȏ�5A#��v��v�j��9H*k:잡Vv%�M�%��jIa_����S��ƍ�(T�4'��P���tΣKs(����d��+�@S3s���ö�h4��L�=�����'���F����
�z�ػj��<�,;��;��<�˓�)���C��TsĘ��cf�搵�C��+/r���ߡ<�!wo�2j=zC��>�fA��-�y�8�XQ���C�C��%��@c��O&ԃ4-�P��r�=ʙ��sVE�YsD�yF���9Qv({�R-�x(h�n�i��c8�;��	����1Z=H޼uʫ�Ѓ��{��C�]-�`io��ܣ��p��Md��e͡-��sv����j�mi=�Ze����&����Uۖ<��o%�-;T�;T�<��z�6�2���$����m��P���.ӡ�d���OD��P��P��#�>������dŢ�kiϛ�s�AshKM��_���X�P]Mw�"�rn�����޻�u�l�(ڬ�.o�k��g����O{Rv��1��{�]�Li�C3�l7���Y�YcI����"�,~
�PʡH5�3z\vT|���CN7g�f��]g+�h�'ª�h(ȕ˟����I��fɬ�Z�9*��N�E_,"���j��
��2ܟFg���E���\���"�c[8����N��Q�
��S�c1���;�t�,>5r�~0�D��x5ɳgDѶE*��9��U���P����h>�އE��h4�@E�|(�X�?��us~���!5�>�u��dG�w~Ly̆�Ҿ���)]��e�i�9�����2�͡-�Cʎ�7�=��W�pP*�}��g�Wg�K��K��Q��%�j
.����);bg�~
R.�u����"�y���MY&��;i�f�bE��ln_:�/�+;Tl}�.�U���w���r}l��8��,]��R��95�4��M��΋uFϬ�1�5��>l%Z;����bTb��.�&qW\�o ;��L`�9�lz�F`L�x�F�
|�
A��n{�m��K��`ִ^@�iIEND�B`�PK`x1\��b:�Q�Qassets/images/landing/03.pngnu�[����PNG


IHDR5ʚ�tEXtSoftwareAdobe ImageReadyq�e<%iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.6-c148 79.164036, 2019/08/13-01:06:57        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop 21.0 (Macintosh)" xmpMM:InstanceID="xmp.iid:E83498290A1611EAB39BBCF49119F7BD" xmpMM:DocumentID="xmp.did:E834982A0A1611EAB39BBCF49119F7BD"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:E83498270A1611EAB39BBCF49119F7BD" stRef:documentID="xmp.did:E83498280A1611EAB39BBCF49119F7BD"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>��NIDATx���	�dUy���Ѓ��t#-x�qB�1א��)�}��{��� 3t��� 2�PP"�Ĩ��p}�s4�}s�:�	�44� 4
�}�Z�9�j�Zk��^{�:u�~ߏ��t��޵{�?�z�����1�T��K)��E_���*�q�/?X���C1��Z�Շ�vB����k�/N���������#�*}��tF�=գaW�qb�cް�>o�J�ĭ;�"/?�O�Y.�h?�ޔ�|�WT��UѳX��G(q\�B-n�4h�YG�㵢�?^�3���C��q�U��T�S�S�W�דL�л]�ɀ���"���s��)ZE�Uᑻ��ܑ{�jS*�ڿ}�ԷL��%"�6�	��dэP�8�g���@�6f��csGp�;�_+��SE�U%��ڃ�*)UňJ���o٠$S1�Ys&գ����*����k��}�ߣ��/a<�|��oG�;��yc�^rU�ҳ�!�w��㺞3kG<բU�YOP�O�q�/r2U�Z˼�ڋ�����;�%A��WL���𺂪�J�ȧ*)����L�<I�L��J+Q8��7{��	�0mQ�X�w���2"�60��D��@�T�/Lϲ��GO�j�AH�*lg�����%����zW��8X�2N��Ծ�Z�g&�*u�&2T==�z�I�HڤOm�K���s(�Pճ1xŠ�G)U�ӒO?�{�-�
<����g��R'&��"��iL���JyT/�׋�R՞��O�¨�3�&S��Re�l��1��Q�lգ��
,X�C�����ϑS�G
ZJ~B����d*�9OR�`�ı^���"N�v�s�>����Re��S��/�b���9ɧD߶u]G���E�%�?����W=�|>��:1�a�]��9���Z��u
��R����|J�a+׵�'S��_<������8'r��D��"'
������2�,1ԕuUHՔ�4����O��n�Zv������;ͤB�r�	".����z4�2,-:
�}��hM���T=[�weS����;��Y(�*H�7���>u
�
]
�e�Az-��zה�\�B>UukV�7�M�zK�ʕ�VW=�P�0�̴�聳���ޔ��T�SU7e/©�$S����U�9APQ�i/Ȳ/�)U"*��6b��)�PFX���(��ſ��A�k�gYo���P�B>Urۉ�S����C3�Z��)�%,��`��&P#nT�]KU{!U���|�䆫5Y�4��lh�[0���gRR��+~�=v���L�JG�����I�T�M&ʦ�=)�*~������w]w����a�W�M�%�����Q�������U�**�b�K�!��+��+����V�_Łٿ�r���0�1Z��0\�J�T}��ȧb�T���U�T��Rj �`�eU@]z:.�+w�\qTޫ��DžT��|*j3��������P��T�o3/�h;�ҙ�t�D-�h4W}8Vq�����*�t�;�D�%b�j�N>7
��9}%˦*���1�R}�;eN.1���'����
�ʍ�Z��Օ��RU(��q��T�*�ʗM�O��|�K=k,V!���

�ʎ�zS6���U頪Ҍ�����4��|��=��*���W:�g,U�W��#6~*q��
�l�UnH9��i\z���;ݯ�UT�SQ[���,��*ѳ��r�`J�p���#�s�t�N����aWM���A�%0/9�/�R��ף�jt󩾅Seʦ�1����L�l%��Ӗ*x2(�y��u�aW��\��Z�5հ��o?r�_(�*Z'U���bDE>�հ�����.nB_d��ӂ��ǿ�+ K��d�7ڣs+��ڇ]�ƀut��uV������**��Vo��c���©�VS�5S�g�*��9E9�Ĝ
Y�z��aW��*n�Yo�S~�y�c���B�Rs�Tt�*�!��O�bf_��T��z�L�(�IɈӊ,~�*��h�;|�~��y���TrQWPU�����~�Q�O�އSu�M-J2Kˤ�NWVPU��	��P�,�_���OŮ�74,�F�TՕR�VH՛��|��Ɗ|H���@&S�/[l&�bҨ�5��O'����s(@�e,]�5�)8�,H�T�<��KD%���h�S}���
�+���=�z�L���fR��T�J~��Y/&u�f
z���L�7-.�&_ܐ���bP��R�YHU$܈o�N>��4��HL8�M�1��,���p,�nWm��;g�wգ�r�çwc��:�۸X�P�877��uJ�I<1��ET�S9H�(��iN_�>Uis���6�T�@�*�I�� Y�x�7eSL�2#�*c�����|;g�?
TŇ�Ղ*�~SE��s�zQ���W�(gO��z�L���fR���M�O@�S����=Iי&��K����.oXU��*r0��XE��*��Y�ol���\J��WV�'M?���;ts���w9��wD�W���',z��H�T��S%�+W�N�aB��K|ݓ��7���1+*OϏ�j)(0֬c�Ug	U`�Y�z�9��t-U��~5wLϫ���Vȧ��O�NE���dJ�l*B(�
�R�:��@*�xJ?!_PF��W�p/w�Wy����U �S�pD%
�T�M��
Xȧ��E���1�S���é>'S��R�V���un��l�Ĺ�0���}�Tb�3<,1���+U}N�
DT�ǯ���M��u��T��Su�S%��±T�L*H�Q�S�L1�z:���+h�ƪ��I��ާT�DT�xU^DNZ�?��kf_�ʩ����ي�B�_2n/���XpЗI���"�3c�A����U$����E�LeǸ�J�T��n,Z-US�H�S�=ѣ2����U9�ϲ���AL�T\�T|X<��O42��&�'EO�WFM��&�9ċ���U�ؼ���:jx��B*Y!��mD%<��ߢrT�Y��﮳r*�}5cN�C��T>,��U�)�����U���;��Y9wE`�̘]j-�	#<^��[�t�I\yG�*��TČas�2�L��&���ؼ��~ʨ�|$�������ܟ�%Ug��v��!w���s����S�w�m��`ϩB�S��	�wp{g�I��Λ���z���'�~t~��F��
)�Wz�9���b��rn�����<c�܂�%��~e���6�� ǰ}d��9
�b©��\G��K�o'v6_^2�\}6�Ώ�Y����'8�:����$�0b�.����Q��w�3����S�#��#*�SEU��O�+Q�V>��Q����eé�R}��鋝�N��S�d^P�1��طJ�"���i42lR�����Q2� Y�0ПX�����S�=:���"�Tu5��iG���_��*����S�MS�>�]:>zN�K�$S*���hs��&�s{:�6������8�I�|g���S���8QR3��i��9���<�̎���s��"sK��e���,?G9��-)�����n�T4��iGnP��sZ�)�U&N	7���*��*��3�S��T-eS9��Ѓɔ�m{�
F~绛�����/�@�φ�'����V�����+<�[E�vfU��*�}�˩\!����ێ*4ѯB*�XȧBw��^Q�/_�ȭ`ϩޅS�d�H͔/W�fR1����SR��&���M
��V����;Y$H)�U��dH�2bQ)�0g��R�ŏ�D�Qu�FT�S��Tn�BGw�yr����0�#;�Є�蚩�+�ꍥ�T�@�D͔�i�=��<��å�{��1���P\̪J~eް�@-U�x?>�rMY�YD�7Y���O��\`;�=�+PV��
��eSy�T^���ɤ��t#�*�T�%^��ɴQ�)FP��T̐MF(8G��VYU���̟�������DK�M;43�(�+="r�|��̾��S��S�)w���	}�5S�2cc#�|�g��SL8�j�:�ş[�g����Q�H�W�8Η[�78o��f*�
�5��*w�_^K��(WEUkDE>��|�/
����V�s�W�_O�T|HU-�I��,�����Os�U�w`X��¬��Zx���߳�ʘ�*��*v�����+y'�s�8ׯj�t�)�7��|�p8%���h�l�_�rJ?Bs�"&�J
]�T �����R2�_ �;=ŝڔ�Z�$�Xx�Q���+0�$VθJ���*��*��J����M���RU�Q�L, �k�e"��k�e��)3?
.v�8�;�x���)�nS�oE^2[0�l菫����R%�Uy�GU�d�T>�q$�3R�r��d�yc|V%�ɔ�8�S*�S"en'U�\��^TQ%T"b�_&��|���>��u�S�+����e�Me&��[��nsRa�`�Y-��mdR���y{8�Rg�EU9�+���
����?N�3e�XU�'�M<��Cs���:RU����U��Jz�0��QɧJ��'�T�m�ꪜ*2�/�P�/O�gG2em��m}�eR���F�r�3�9�}D<��)5���zJ0��(�{��Xefl�Z��O�J@d�|$���ֈ�R��"��ȧ�w�Sŋ�réڧ��SU'��4�ʾ��79��K��N�@*�$�=�9Ϙ��ʊ�j`U.�
�J��Bq�o�iUΊ�@9�+��
��N��cD%"zQ�@c��P�|*�>Qmы��%��Y��q��Me��2��l��܂��X*.�rR�)U�r��ٳ�)FP��T�HͼC~2��17�*Te˩\��|�S��ʿ����*ӎ�ʢ~1U�Y~�}:T�T ,(x��<�/<�O̧�i��s�r�M妹�O�[  [0匥�_~�@&>������V�*�2t*=p�'V��vV��:��٠�WN�-.q�Ryg,�w�����ʧD�D�zg��O9�P�x*��#g�
��gvk�p�yp�P��q�^3�}?�Z�X*S*�[��qr����J���N�U5�GI�C��d�?��&S�ռ�[T�|=m��w��*g��w��DT�VY9���Xg��PMO���{���S��66�򬃘[<Uc8%2qS~�)ל�`����GZ3�}z_qc6�r~�=�R��)7�*V0�<`|��� <��I��F|�ᡧ�*4�ԋ�e28��Q�0j����B*gL`?�3F�RE�YB�}��c#��\�N��ؑ�7#��=����pJ�;O����|��|�7p�p2���X��Z�WL_�zFF&��~��{[�Τu&J�v��t�+k;Z)��M��g[@`4X�Gp��:�)_�叫BAU+�%T?�eX�9��=�N��$;0W����q�켎�ܳ��R飵�WvSuQ)��rvq'2H^F���Ǎ`�Tՙ}�p��T��)��1�O��s��1���j�rc)a��������'�̮�ݏ�s����܉C���i��E�Fk�)�f�kNP���@-�oB�k����*�����l>%J�J��:*v�"��ʧ;���E��sR�V�*fB���oZ�T>,%�?��� ����I�T�s+A�:�MG�H���4�;��޻T�N�s�˔2�Ol�IQ9���
JD��8�7��7�ݏ-3�O���q�p�S����S�w�7�O��ELuJ�
8?YϚ��ʗ���oL�_&�R�s��A��=e�	�yd�F?�1L�]��>�ycd8�ʪ�S���*<��7�/�ǹ��>k��Z ����҈:������1~+{%��_�1{�>���)�Ŋ�����p�3��b�+����é�nSz�T�l���|�e�7�3�ϻ�����'AU�	(-6���y�qbx��
�B�Y礿��B*m���T���tLN��ڥg�:�Qv��h�S�q�Sq�0���ᔰ���r�S9��nSzٔsm��d�K9O��E�Z��W���XbJ
���2>��L���T�?I*_Z$E�>Q{Q�s�����_~D5��T��S"���3�ru�r�Td�)�����v8��6�k5��3��[PO��)���^^&�y�<a�C�R$�c=h��K�t�*Dn���r*__*_S�`G��)P�S�ً�zD
@
&*�[�?�����/�2w�����!��fW�p��pʞ�S6�'S�L�Z��)��<��=1���u{w�L�	�r�zҗ�?�>ǖX
�4�K�Ux��`���P�TE�SuǠ�L-U7�R?{F��,��:R�L*�lG%;S	��Tv�K晬FU��j���Ce���U����ݨ�r�*�>kf�0ۃ�(�*6���s*��T�۔H©l�������{td�ٯ�
���L*|��!ǿ���r�#Gǐ�SQ�,��7�ŸRe�R�?x�ד����r&�J��1Hw+J��[��~J�
	d̆<�������^͞���9�*3�<rd6�u�M��
gٔHJ�\5S�U3%����)G��U9e~��5��l�7GW�ܪ��H� g�aU�eb�ɪBEUfEUf~_7���R-�P���������ݿ\�s����Cd�)�rJug7�+���ˮ�lWT����c~�'o��h�=�� Y�{��:g�ڕO��s*�9_�jC���M��)c9̅-���m�xJ�_�gOmT/2)g,��uZ�+�_�*�7���a���C��=��(��9س��&7�����S��G���F�\?=�2��}�p�J��GۿԂ����.�v������J�Qɧ�A�4�S<e�3������Q�$�7�	��in;�
�B��g6Aw<��L	�R9��!�C՘Ie#�4�6������>���`�s`ƐZF����
�K���|<#s�U�r*߀�UK�m�n��B��dٙyވ����JLfD%�3�ҷp|D�-��C��*
�S1��g����/k/�'����zN9���Н�^?�6��i�n�L�?(!���\�YUލfJ�}��m:�Zv-�B+��T�2�طW)��Աv�H�ʩ|?dG�����VHe�g�L��`=�#��v�Rd�M��0"��X�ڌ�FS�FT�YB%���ȧ�b�@ϡ�@�5r�:g�u���Sy���
=wN��dJ�A�</������)!�y|��s�s�y�Jk��:������х�u�˶l��
|��p�5�/�`�YlU=�R���=�\ݩ�R�P!�ȦT��~i`Vi�g���DDT�.U�@�t-�3j��K�2��b>%�D�Q�S���ᔝ�X!��r*�!�]d���i8���sz�鄾�d*S0%+O�ӷ�/�r�Q�}P��#��
��)2��M������ٸ�DVX�ގT�)Ux��ޑ*�!;�o�pD���y�Cs��gETژ�\#*=z���w��63r=�p�S�j#���U��Z��_�̬?�:�SfO(�U�
��9}�	}��+M��Ho��L���d�I|���$�)g�FY΅
�S�T�;(�9���O�s56�/J�ŒI�|qUѺ��J�%���ՎJ؝���o���5�OoG叨\��xJ������o���.�7���;�{vK�}Eۢ�oķ`_r���p*��gZ_���=[6�?�L�a+!V�S�ZS��ϕ7�c)G e��oe�F����}�ݹ¿2��[�}�3\�I�\�T���*{��"WzVU(�r/7&B)��L�(�-����[�u+�Z�"*�Q�<�`7,*�(=ݧQ%T��=�����_�d��D����e{�w�{�>�
�����S�q��S-��mJyʦDhB�����e��)3�VVg��z��)�6R��,�m�0�X�$;OJ�T()��`a�YfИ-2�}�̻L8՞��;�}qya
c])��)s��8�=�nd�>+s���v����	@�N�9�0�H��~#<��#��#�"����R5M�����O�]��=�Ofߏ�
=��7�������
�Z�gv̧5~0[�ek�D��)��ѝ�g�JY�g������LK�bN���U��v��->�JGa��X9�龉|I�(a�7t����3��@-Uڔ*���X�/��0#*���*���C�1K�[��+���붲Ɍċ7���}����,�
~�ɋwf�}'��<ᔷ!��z^�)g�%���T�["̷%�$Sf��N2eL��k
}u���t/l(G���WH�S+��aY���>��V���O�YtOt��̤�ؠʹ$�Uݤ��!�7ݞ�ێJ_�/�]�Q�n�t��Wy��sO��*;{Y�2c|ob�$�pV��7�/���Ae��©��SV�e|��	}�z%ߜØ-�/�i�_����7 ӹ{i���-s>� 0:d��|ѿ�&Vf��4�2�)k̙�G��O=7��3 7'9�“(Ŵ����GT�J���Y���9��+�_�2)W�5���*��_{T�Q�Oٍ��3F��U&��{�g�u��~0�S-��ٺDDŽ>���ɔ��������i���%[�d��;���N���=���:�P"2V2P����V��O����$!�7��5��nG%��R�7\�>
7�#�x��+��*�A�=�O���wF�.�	꧂_��/M��`�ļ������ؓ;"��?�
�����**����݋�l�dJ���s��U932i��M�T\��6��snT���M��Y�N�����Y�����2'0�s��~��dN�2������IQZNd4��gue���k_�jlO>+9t���2�SE'p����R*}�_�aZ��Nu{:g&�e#*�4��ۥ+���
�2k�
¬��,�'\�����$���T݇o�ޢ��w�SI/��4@fc!��)[?eFT*'�RvD���LDe�5����r�^G�������R?\��M&��u��2ӃF���\g't�'X<�rޭ�>�e���M�r
��ݶ�l�n�[��*-��"*c!>{Π�W��������3�r��鉗��J�K&{�~
��-%�O�K� o!Up��k�Q�/dFT�c]����;���T����0^	c��p1�2�b�ezQ�p/*��.TB�z��]h�S*�nJ�]�|?Ԏ|*V�
N���'�����a|�R�R�UL"��v��Y�Ok����ҿ�U�U�VE�S�E[�S�-j�q�*�I�Q,)2�[d�O-WJ���J�?��r"*;�rVQY�i�4
����� aL��v�r|���т*yF�)a��B4�x���tF`�uj��ɘ��J"w��u�*'��D��4�J���+�|���FڕFT�Y~+�Xa�PE�|J��?��|�#[+��T�4�iל��Ev!U:��l���9�ҍ�Z�C��RiD�=�#K��Z~d��K�(��O��~*�T��TL�)�T�9@��NTc�4f!U@��J����|�"�҈�1�O�B��2q]��6�Ii��)� �H��M�O��}&��uOG*�Ҳm�;�)��.�� ��!Ў�bDX�O��'�s-?�����Mi*��4b�p���i����SrA����“��P5�+�T�d��n8�	�B��$!��dx�_]�0#*!�����Z~�,���O)�i�ս�}s��~i�獫�b~_��dx;�n�������`е�5�G��hJ���G�T{D%�ҧ��+]v���?#�_YO�d�%����I���9Θe�����_K��"���QiOq{B��K�ҀI$��3W(Qioc^ZB%"J�����yD��Tr��g!?]B�P��e8�}���k�b:��4�k��"�DK�t?�#�9-NkDծ�*Q��T����QBhD%\k�i�Z�t�������)����J����'���k��G��8��M��E`𸢥N!����%-��t��\�@DՖ�S�^�m�\?�#$O�������I~��B�8rK���S�C�)ޮلOE'L�}&v}����G��h��Ҋ$�\�vD�䍨���T��J�#*��P	�Z~�F�"�.ݕ��oQ��OX��Q�c?�|ʳ�23�G�u���a�R,�d��S�4$r��DTBDWQi���޹ov��H��Bc��?��n�J��S��\E�^#sT�;R��so=dUz�z:�0���}�]��1U�D?���4�
J�i���4�2K�D��T�V*���<="�LA���6�#�R���9���`0ɤ-����Hf��㔹�^����
��.�
i�J7�J�l����������ՅJ��TYo��\1�C>%���8�Y��~��|��|B���4����4��FPًʱ�_2�O��E�����������`�n��S��Ђ*O2����?��Ɍ
A���u=d�`)=ڤ^1�
�F�(�$-��˩2��L��UJ��έ��	(O��L*aU?	-�i��.��,����TwƟ>W��F>go
!
O�,�S�"'��|��SPF����R�T�?3�����^�f8�]˯��_�Qzfr���r�dg���"ko�!H�C
s>Uf�_v3i�-F6�r���Ȯ�H-�&�L8k�_ �J�*٭B�"��FT�ꕞL��~�t�n�t������v�
�?�	�w��P��]��J�U�ˈ�O_�ϳM���N�?H��`�u2�vD�Ir�9�M���Jt�iU^�JWV�T�i8�9}���'-��Z!��S9��9��'��Y�d�ў�g�U������»<[_�?��[��^He�fS�t�oUQu&�iU�r~��nNI�d�P���*�z�%��9-1Qy��a�Vb�����?��g��t�
:O��M��J��Q�N���_�iy������ҵ;�����
�:�Sf��;�Od�[%T��Ԁ|���3DT�_+A	;��ӥN!���d{������iE,�fNZO�n8%��}Z	U�QzC��%��f�����}�n�a��Uee}�\�S�TQe��]a��9e�����*�!�Nvk�KD�,�׍��vT����T� t��Kj�*��P���N�t�3'
�U�Df	�U4e�V��ʙ�̽��̧��e5�����S,J��T�~RZ(3�O�ޭ�2��yQ7����t~_�ռt����YXͧ���5�O�k����)���u�ʩzR*�Wmw��q��
}U��_���0"��~F�e.��F��Z~z8%�^��i�.��+����M2���O��E�O�>�&��M�N��f�JO#*!ҹ~f�s��*�����b|nFn��X�r~ڌ�N8�|��'�wIW�B*Qu�_���?6L�N�:���4�D�=G��tfe�C0��	��J�'�L7�Z��E����4X�����;f��++J�P%KꝤ�%Tz��YPШ�r�I��v���O-��MQ�~��FЌp�T0�K��8�s^Λ>�������ҩ{Z-U{�_�b�a��Wz�	t�)�4&J2&Wڠ���]�O��ܥ��_��f�)e,�g�V��������������m����V\�������	|Ҏ���|�9Q	�*�9XeQi��)�J�W�1ѯ�ьp*�R���Y�3����Q^P�D�sd�N�T��sO�~��F�Q��ߔ�]�Q�ӵ�@J���yWՉ�<���4h���U��'k!�N֎��v�f���zB���҇ۿ)�����I��)y�UTJPB��Sr>��TQu���J�'���fr��
��]e'�ʼ����h�T��*��׽o;�ih�S8��;J�DhT���r+�|�\�QtJ�d������SG�)���}a2���d\ߍ���\oWe�OYك��j��ɛ���d&��f���"]�O$�DZ9��Gw^?_s�B�v�}���
om!�8�ŠfI�c��},�@@vbi,�gL�ZU'kjU��`��VH��0��B_���zn���OF�%�)~i�)��e>B�9��ƬJ��)~���>��~�'܇M�E�]�Jr�t�;W�ԫ�:S��_�{�wS�n�ta������&��eRK���j%�ZZ>�~:��]kc��.��j��%:K�~*����Ǩb6���7�z@7�$�`i0f�#*-RH����|���”�4Ir�O�t-?��>z��-�r�1=�J�<H�L��TiiR;�J;OeS*���fN�S��ђ��|ʪ�j?9�SU)���<��Kst��lD���Jj�:��맲�	m�s-?��T��p�ti.�/�t���Y��}!�J�⦂��+т��S���*��~�R�	���BD��j7�"����J��u�Vv3�[��?B�.��j�dL�ߑ\v���˜O�N���i����e?�{�_�w���Zi��>����~�~�w(ǼM��pi\⬢�$�X��=�5�r�Pu��Z~Z	U�0����Ȑ����%)U�N#����zܦ�T��z'�O���T�1��Sћ*�W�7�J���O����4��VQ�M�۩TRe4��FTR���SFQ�*�^+��_�ƄV<�钮u7�@d���Km�?{V�+RHeT�0�O߻�2�p�)aǍ`@��S�@��7J��XM����z�=�/�1�-����B�?��T��Kz��ʵ���V�"��dn�ғӆ9��2e���ޗ�U��C��,6�~�3�W�@G�Ӥ����������Pu���Dz=�N(����gi?���T�L����)�?��U��Jfb��?��I����j����]{B\+���U�?�r~�U��k�I��%tK��{,��㽩l��J��IQ%OS6s�̣+����(�~#�75��Qn�j>�=�<A#H�M
�s�T��M�(��-���FT����ҤAk�n&8�C:�Ъ��]�E�u� �*�K�V&����*�:�Oz�U� �E��ǔ�,�GDK��&K�ϲ�z�qi�q�U7�zd���d<i��J'�u�unH�'���덊n��2��OS��T2�0�,�}�FF��=���[xKu��`h�P��2��**В}���ֈJ�ND%����Y~Z�t��KOrW+��J*��W�d�E�n�
����y�t��g��{����v���o��jQ��9z�wL��Ḓ��������0--�z͑�DT")\��z�X�[\�7@7^N�UKfޤ�_6��Ɋ���Lx�<yR*����(�nA%����J�F �*BE:y��;34�P���r�ֿ�Ub@S�o��^�~�@7OZ��l�~j��Fg=}ٻL	��]�L%�����2�݅�:.��2���=���י�(:o^*�����\�ΟT&�Ƨxݏ����v������s0���ƪ.5&YU���*��U|�7�J6�UB%���V�Q�����t�����[�幈̈́S�I�|��i֤�Kf���ʠY�e}�j
�T�Ku����>^y�
����uH�Њ�ʗ�f�5�̦Zz��UB%���F��sG��z���}<�ѓU����Bݤ�~E�����}f�E>U�Q�����
�]��B`P.u��iٸʘ�6b���ԍu�Y~A��Q��g�)_~���u��?���f�սcC˧�����T$���LС���ĕ��Χ
|��o�>U���.g��s�j`1�3긼XzWA�j��9���֞Z����w3��K�-�J��B�%d�@��u�o�i�~�q� ���Q��.雟O�TҬ]�,�0)O�t���dZq=ѳ���*}�f�١{$�4��}�`0��]���ۥ��e�Џi��}��=c9���Y�6JWݒ�L	�V�%��@�.�)��H9����Z����
fS��-���
,�׹�����U�ȧ�=Z�����H;V,�k����x���hJ5�c]=�2Q�NK��'�)sc*��y����:EH�0��^5v��S��~И�ѳ��^ftyW��`��f�j�^h��T�'���g}��(u}V��
��|Q{tU4���Q?e��f�#��Jv��u3��Hk���Sf%T�O ��.�F������1/��/]��ш�Sy_���N1���EUЗK��d���,���ak�h1{�QKbU(��mRJd�M��e�^��ހ�����~.�}
۝�'��H�]#=�B杔��R�.Y�g��7�S��2�&����\T��r�R�]�@��
��uMR%��O��6��2�J���'�����(]�L���~S�.��6S*�͓��ewb��s�fWf�̒�����_W���[P��K��O�0rplteC�728�^��\{��n����g�'2N�^`xףWŞ�y�4����df�u>t+	z��ҭ���z���n� GA���J)�&W������{�極؛�xc�˶tT[�b�\�9G2���U��sX�z�������3?�(w� #ƞٸ�JPYH5���4��l����Hh�n�t!?+20�����c�j�ׯ���.7���;�a�SJڻ>���+•mDE���;_⬡��c��I*���WїYկ}i��եN�E�t_�dW�����JE���T.�T-�)�B*�Ky��#W�Ս��J~��g�JsU>��B�UrͷHoX��b0��<;�t���2PN�o�z��1v�ź��:��K�"�"�`T��5�:��ɘVf޹hJ5:�T��5���;�e�e�w�|����G�H��k��"]X��|���{-.Ĩu�
�Aӣ�*��L0�������2��כL?�ȫ�R���Mփ+�REv�I~�l�*~B���.�'�x��V6��3�H��lzD��_����έ7�y~״>O�T�Q�eR?Ճ3��R���mU���AU��Ȣם�DV@4�
��a��+���B
�G$��l%�m�d��0f���i2�:�u�RO���^RM�wG�*:��P��qc�Vv�^fQ>׾vUI)o׋�#e��)U��\�7�tޤT��k���Ჩ�g�ݓ
�.�"<8�ﯷ<*]H���i����֑�E����=J[Ou�F9v�>��u�hL�����Pe��R���}�YާJ��P�B�T�����n��{�d�y��@��~ ���A�\#2��TE.��<����~R�U�*���)ɭi����	��y�RS�v�̛h�m#z����=Ӟ�g�f�qu�p�+X9�F>U�ܹ�gv�*I!Ԯ��*eS��2)�(P�$�B�*r�>=>�ǭ%����e��\�,w~�X��vI�����iw���~.����#&�*�+v�|CY�ʞv�%��O�e`Tv��~.NUI�Z�Z���5OpN_z҈���Jh�Gd��ЗP�s�n��d�h]���UOy�)~ҹ����sd�o�'hs��(��W4�r��Vj�U>U�C��>�N���j)�u����ĥ^�/�ww0����j��`F�eǼ�+��JI���g�N��,��_Hn)��\v�;��w9�lܓ�zZ��~-t���P�m�.Ǎ�^�P�}��-yʦ:(�������uc|��W6��Ȼ:0.�r�@&ſ���H`|��p�B�F�+�F0ub��s�轜�]��
�ng5��;�OۃRf�O	eG��O:u�<�̹ҵcMGg�V�u�k�X��8e�|���EG2�_�1�풢�Z	�"k������_�0Q=�(�u�!����#2)�3�Z!���\8�
L�[�%T�;���z����A�L�vS6�p����S�w�p>V:�P�ұF̌Q򩒧��b�5_48/�"��L�'�r*�f*����lE>���!	�#�<;=���	DT��*��X��P쒤U�1�*auI�\?����ڬ@e�S�<ɳ9�[�K�ŧ��P-a�n�j��kT�{кWYE>e��{U�ɤT0�
��n�X�H)�T�"�ٶ{�o�ͧ2�@��~iaR���|�Fs�����4k��5ƷS*��쪮]�*a�9�&3�e�Q帲��#m�)�ɬC����/�T�sGh��~, �1߿���N���*����?/Xz���k�h�Qά*;�OO0���Q	�^)�WQ�J���?�-䗽��~dg�)����7;4P�K>U���}8����U8��=<
���|JU�[^(��������LD�X4��WK�5�b�0:W#EF��Ń��J��҃�l-�Q	��mVS3ij�d��^�%]��T*���H����?���4^pu͗24SP�Ug�l��q�,Ps���O�1HP1�Зx��p.�N^�S0��R��9RJw�m��~�!���>ͤ=���2p4�O�N��p��6��҅�)W�sc_���)p���®�˖������-��.���ȧ�:y�p@o�-⒩�Fgٔ�`�ʩ���Y�~�ff�C�qt�k�i�=R��̌��6GoG%��G���S�w�XLp���%�nKz��=�g�4P��2��/���~�>�Kpʖ�O�f��=�I�`i����T�dJ&����d0B��^�W���ˬ�u�v:�W��^H%2K�Y�)���p���g�%�Գ3�t����̳�}*����+_�h5t/kT(��#fq�QY~_*�8���\S��0�;ޏ�yێZ��`85T�5�-�bUE�����WzJ匨ڗ@
W������%>vwI�7uZ�t�ZO��<@� 
�;9N<��LM�n���v�v��O-���깴��{NYmt.��6W��O�5_��q�=/���DC&�N
\���˒4�0Kz�ѐ�o�6�'��g�{Q�>�=��J���k7u��u7�g�g��ȝf�"������O�bȔ_��`zp
�nU"���e�C-k��0�m�3��3ѯ��
�0��U���ɾ��Z�g?t;�i��SZO�õ����b_�z7y�"9��-�"Jv����0^Y�4H�韂�-�p��9Ϋ��%�ʽ:�]M
�@4#���ӆ΍�e>�Id3���Y��~6��_�v���Rj�Tn�8�	�mɨ�:L���Z��jN�`�.��Fو��w�^y�/���ܨ]/�PG�
}��u�.w� �UQy�M�p*��-��h���#��}��Rdl=����j�&Ne��H��_L)=^�:|������ZS��.T���K�u���]�����kW��W\B1wꥊ�c_�R9f����O�R�2�iї'��ź��=��)��`诔�B�@�᪢�?�^I��<;�x�]��-W:!���-��r��H$�Gr��Ǽ���@��R�K����Re��S��΋�d�_���w5L���9��"+��}Z�?(��������(���9M�c�Jы�J�˧j�^8q�L�~������+�*�o9��L�^#�b�:�Wi}��|laȯŸUk���^#`,L���~T����TᲩ�w�~j�a�S�pe�+�J몕�T`8Ia�3�]�8�c�(�]$�Qy6����:&��t\�@!���B*�V���V(o*b�#�O�ڋ�}�vQ@}���x�W\�/�x6�]��^>%�<�e��Fr>O΅�p��'E~��Z�]�{#�:i/���I�V�=e����)�a����,�s�>�ʺV��!�ǽ���ɺ��_4Ʒ�NVǓ�ys��3*���������$2.�h�r/�B02��TO�%&d�:#pi�����!��Ax�\��j�ʍ�:��%��!CK[�/oר��Q2�Ŷ*�{�w��xP?Ճ���
�K錮�K�N�{]���bia�l��t!?���U,�/��n�_�*��~_�S.4�����2�ޟ�>e���(�Aj�AF:��ߩſꊔ
�qi��Q�Zt_8�?��]Ge~�#��ˡB%TK��ja�^��*j�Z2e/Y�OF<���z|E*[�tє��?�R?%z�ȕ`���B�������'
���_YYuR�?.�B�-�U�~_�CT���U���*�Ǫ���,e�C�/-`�.�2ݦ򊧼�T�7;;������4��Վj�Z")�i6�����u�1��Tc>��ާ��nK�������U�t�\�h��(�'�K�*�w<��v��HN&��U�]d�o��A�u��_��Vk��d�ʕ�y�s������ݾy��M�6��g<�{�wx��V2yM$ͳ��wV�K"��߆��Mg}=Y|��4�!@{��۰��n��zٞ���3�n��Bu`�����)��`���{�ǎ;�����<���r�֭��{������,@�,a��%}�������ڏ��lVU$W(פHV]_�ׁ����z_�T�������cwɿN���`0�R�ᄏ�k����{��Gۿ���j�Ss���a�����&�PB��f{n料�\zi�QC�̮���7�Օ,���j�TM�N}��)ɧ|�p�O��s���O���4�arr��O������Ν;7m�4����7o~�ǚ�f��x�Ӟ�|��,@���J���ov�L���2�9��Ze^=i��x�&�ByX��ȧ�x9�I�(�K���������{�{�����v��}��g�=�,p��残Z���j~�*�?5��O�����D�*]���h]a��þ�O�)�^Ct/&��Sʸ'�Z�A��^{�Z�j��l>��ÿ����Q�n���=�D�)=�vDս.
�%�fFew�N���=[sa�Uk5�I�*6>o�[���|
0��WZ������l�Y�fٲe������Y�0�o������(~�d�����Z���^�]�T1�i,�?Ru�W�-k�Gc��Ʉ��O�4,_�|����f3���g�}v�uׂOc�g�P	׏�V���7"�W�0_��6jx���������BZ�z'�"rwr��]��R�,z62USSS��˛Vk۶m333.�Z���w%�v
��LI�(!e2k����ے�棨���Ŷ�� �S%v$)��\c��d�֭[�li_ƴZ-)�#�<�iӦ4�*t!��j��R���=��WT��^�/���=vH���_ȸEɧ��YAJ}>�V�6�x���v��q�NOO���S+V�h߾e˖Gy$�yZ�e��%��y(��I�Ӌ"�io�������{긗�?6ȧ*�H�`P�(b����_��ړ��$��`vv����o~#�{ֳ�u�����ujj�{�ٱcG��YB�5:���XN� }i��d�gI d��[�Oմ���?�� ����F�)�I,)<��?�l6�~^�j�n���<e�}����i4۷o�����Q�V�E����^Zw'٧�I���_�V�Gȧj>()2�uB����[�nڴi�*E��W�n7�^�j՞{�9;;�l67o�\h��κ�aX$M�:Fɾ5�n�L��k0:d����ȧz�W$A,��v�U�4==}��wOMM͏��5k�,[��������k�._�|vv��j��׿~���\e��e��F��H�K�+��T�/Ӯ�J
�N�1!����܋�����_�q��o���;v�X�|����U���c��+W�\�v����sw��3�'?f)�P�Q�ZTu�7��%NO��1v�<R�fz��z�y��@��m��wA�������O}�^{�޿ݣ���s@�-r��aD<}U��e�Jpȧ�KKS@D( s��j�VC5�EI��v��tT��L���$ә��(��D��hg��|�֏��|
0�W���E�U���R;7i�N�?����4��)v#�K�&�u���f�~'D[�6E��u�����6��c:>�v���A��Q��U�R��l�4��R�n��a�NVI�+�jq"�)P�J �p��P����k�S�Q��j���"`�O��
K��\��!�J.��T�D�j�:��
a�S�Q���
��R0N"kB�ȧ#z�s]ť��%6��|
0�Y*�[.���JE��e� ����:I������އ*ȧK�R�+ ��/��‰�A>�hQ�����b���O�_c����C�Ӿ�i�I΄EF>�k�����\#r%�$�b!��y}�5��6���5�d?��ȧÌ*(`�O�F����|
����D>��4�&�Z�����;�F��R)�h4''&&&'���EA>�'�|��n��?���Jٙd0�s
�듪��$Ԛ5k���'�z����9�G>�Q�s�Ϋ6^y��nۺub|\Hٮ��E@�'&����ǜ�����N;��#�8�**@��O`��?����ھ}�=�%E+�����i�ZC���B8��;�oo4R�'�m��ʫ~��ෟ�<	@��O`��Z�?�ٶm�&�-S���rvvv�=�8y���;w��O=>1��_��3Ϻo�։����r��6m�ʗ�L>�?�)��Vk��m�%�����������C[������_�;/�O�����O~j˖-�f��'���\�h6������l�2)d��?�ǯz���ƙ����_��͓�?���߇�#���z��7�1;;+�xݟ���_�_�>��Z~��~���jǎ��~�3�9���?|���뮻�>�_���s��0�A>��O�r��w�q�Xs�b��w���W��o����0,����szz��w��i��^����/��'��SO:y�}����o[�bŒ��SSS/��~t��Fc宻yԑ�;��f�9�X!���0�H�Z��+����}�����s�l۶��sч.|��Ǘ�������⯯�r�����׬���K�>昱��a]���P?��ƛ��UO]u�>�˻��ص�n߾��OX��K������o������ٙ����?���
v4`P��eN�_��K.~��^6=3319��o<u���я�֧������N�����������\~9�`��O^tе�읇�Zjbb��n{�a��׾�T��o��݇�/����e�q�?������g�|
Y�f�Sֿ��c�cc�F��{�=u�)���g���满_��ܳ7lڴIH9>9y�	'u�Q{�'�0h�?��c�=�>�������7lx�G6mڴ�������+W��7�裏]v�E��ۿ���i4��q'�𶷿m����M��~
ȷbŊ7���+�������ROn{b㥗�t‰�<�Ƞ�Շ~x��u7�p���lkvv�3�qՇ�>��C��|
��l6��U�^w�s�;;;�h6�x�'�p��gp��w�y�	'ν��ؘR��/}�5�\�G�G����A��"�
x�^�q�+:hzzzl|�����������j-�{�{ǽ��K_���~��^w�G�;�%���|
(�/}���x�9���������;��_��"6Lo�Z_�ퟏ=昹73999>1�C���׮]�>����]���s��e����|����]�����N��?�S)e����;n��.��~}os|�1>~�	'����w;Y�Oe�^�~�]~����ۚ���#�{�1]x�֭���mlڴ��SN9m�)>�E6�=��\v��K8XBȧ���'���o���+���L�پ��k>���7m�ԟ7�y���[�����jzz��/~�7��/��]XZȧ�J~�~������W�z��RB|�_8����^��w޹�������OOMt�AW]}�+~����%�������\r饯��?���i4��w�=�Ͽ�k�������׾~���׾6666�׃�򖫯��s�������|
���{��7���C��Ǜ���~��c�9��[nپ}{�/455u�-�s�Q���f�9>9y�G|��W�^�^,Q�S@=��gՇ.��c�^�r�b�}��;��+.�|ǎu��֭[?��O��n��Ƿ
!'''�:����8�)�<��X���@]�'�t�^{�}���驩�\}����C޹�n�U|�|��W~�����m�Z�W�~�QG��w��K�P�C=d�=v��‹�뮱���/�����G��wM���/~q��+��s�k4���3�}�o�|�)����
������7��g�������������������-�l���8�]����k4��SS�?�/?��ON����}�s7�sλ�}xK��������'����}�Г(����/�p���q���L�uػ�}��=�Y�d���+����g�q�{�7���{�>��u���g#>==�7�_�����7���e'�[wʩ�>��Oe��	���Z�r��g���U��z�;wl��<�?����?��=��=�'�|�W^w�u��i�l��.�;��ox�����aC��[[�n}��j	)��ΝS��G�8�z���<p�)�^}�U�՚{LSȝ���{�'�`{���C���|�����v��1;;�|�J%�l����g�y�]wݕ}���q���}�3�SJ��.-�ڹ}�%��^p�}��UC�|
��v�i���O��O�fsjj�%��?o8��?|�+���'��>��Ϟv�������ο|�c���W�:111=3�_���:�����vN5��O~��g�q�/�+�-`��O=�O��z�!�~�_k6�R�~�5��[�֫?|��9fbbrbb�;�ֻ9�O}j������߽�#��?oIq��'^q��7���}�5���3��s��_��!o{�͟��-�V�w�
7l�bホ7���OLL{�	�z���7D�����[�}��p����[.���G}tzz�����{L(�뮻}�q�z�+���^{������7�0�ן�����9g���y�;��&[�ԑOuڹs�U����}l۶mRʕ+Wn8��7��
˖-K��.����P-u�%�<6g�cW^~�ܝw��1��g?�٧�u�k^������!�V�:y��k��ҋ/VJ��G.�����u��lv��F>��-^r���ͳ33R��O{ں��~�ͦ]�4>>��C޹v����;�?��\�qff�e/�Y�~��_�hؽ8v�e�w��]{����#m߾���^��8�G�+�X�ȧ�z�~���{޷����������
�����٤�m||�կy�SW=��K/�ُ2�ԁ/z�9矷�3�������o:x�5kN=�Ի�s|b⚫����_��aÚ}�e�(�)�?��N<�����������?|�+�=��s@�QRʗ��%7~�=��j���{���zs���?���=����o���[��-�������#K���Z�o}���O��G��|��xՕ��Tjlll�>��Y�f<���o?���o���W��ӓ���o{�1��w�R���C>�733s��n>�����7��F�y���V�Z��^�z��g�����ֹ�\��'?��������2==�~,-�S@I�=���g�}�u�7mj6��|��������:s�]v���u�]?t�E\t�^{�)����{םx҆�7l۶��XB�?�q��\�~��_V������z�ŗ^�{��{}~˖-{�[޼�{m8��_�u���̧n�q��8����cv`I�~
(�?��u�p�J������\�qc�é�f���׾���~�E/>p��F�Ə�p�QG�y��)��@>����t�=>>>��W����^w�+^��}cx���կ�ә�i�h|���z̑G��?�c:`�O����o���[�w̗-5�v�U�\�v�~���gm���C?|fjjrr�'?��Q�}�W����`��OQ�m��n<��~䑆�OY�b���w���68or�=�<����y�a��F�{�Y�I7�tӓO>�,���z��?v�u�\35=-�Z��'�|����|�+V��pk���5���?��睽��-[;��{�'�0�ȧ��6m���n���j�V�/z��O~�k_;�oxrb�G�מ{]q���կ���ꪫx��N?}��wg�
����~�G�����M�!��g��5���Ər8��l4�?���n���';w�J�t�'�����>�)�������.��ܾs�|񥗮]�v�����|��~�[�gf�'&���ow���7ٳ��B>8(����/�}����/��Ƥ��;��.�К5k��y��O?���>�0>6v��z�ɟ����b��`���7�p�G���'�h6�O�u���O�o�������q��{�N<a�}לw�yj��͛7��l��8b�~"��!�:�ccc>���]��ol43��O�3�:������t?����=�0)W]~�<�}��K/���_�{�N�m����'`�O�R���}����_������K^��37l�/��/��9��kV_t�ŷ���R��_��?|ƙg�}X"*�""���SJ	%&�-���uꩧ~��\6�lvv�t��=�9����׾v�}V�y����ߓ��_��z衹�?>>�c�v�� ��������e�]����OOO�\�|r��C?�c�[�|��}�|�?�w�_~�g��3۟x���[0����,���ȧ0��ƪ}VI)gggǚ���Xkvv�SV<�����;v姞��l6+V�|����~�"�fs�=����F���[�V�����Ɵ��T����c���O�ff������ϴZs�7�۶p��y�k8$�G>�Qw�}�ї]v�C=�l6�oR��Rb�;��'q�F�-����>�W�v�i�?c�@��O`�5��w��x�M7���-�Q������w����Y��(ȧ����e���)����|
��|
��|
��|
��|
��|
��|
��|
��|�g�>��򶁧�>�BJ$��"�

(J����vq��o�]ˮky];�
�@A��� ��$��Fz̤|O�e��m���9�ԛ���=�����������)""""""""�'Ƨ��������H��"""""""""}b|�����������)""""""""�'Ƨ��������H��"""""""""}b|�����������)""""""""�'Ƨ��������H��"""""""""}b|�����������)""""""""�'Ƨ��������H��"""""""""}b|�����������)""""""""�'Ƨ��������H��"""""""""}b|�����������)""""""""�'Ƨ��������H��"""""""""}b|�����������)""""""""�'Ƨ��������H��"""""""""}b|�����������)""""""""�'Ƨ��������H��"""""""""}b|�����������)""""""""�'Ƨ��������H��"""""""""}b|�����������)""""""""�'Ƨ��������H��"""""""""}b|�����������)""""""""�'Ƨ��������H��"""""""""}b|�����������)""""""""�'Ƨ��������H��"""""""""}b|����������Ʉ]@DDDD+...((��d^^^����`>|���hʔ)VVVwS���Ҳ�����z��}�����QUU������x��{�쩭��8q����WSS�������������۷GuXX���垈H��.LDDDt�S(��ч����������'~�MMM�`^�pa���O?��ʕ+�F���.Z�h���gϞ4i��o�]SSs;+�c饗^?~��;���;N���ϣ�۷o��0&&��-E>�7o^�`r�󍂈H��""""�˭_�~�����o,�BQRRRWWwwwTiiiJJ
~�l��066��4�����������71���k׮uqqy��F����cffv+�_UU�������:�TSS��V*����onnnhhhkk{�3��j5c*�aFFF666�����s�T*��t����"������p�f͚��2<ްa�…��ݯ7���d������>[�b��O?��k�i7�{���֭CFDD�ZUWW���[[�n���5j�M�377w˖-8V�Zn��Xݢ�ݹs�o���w���D��)�gϞ��Z��߿�
׳�a<y��={�8;;���w2����y���d2����a��nƧ�����f;w�<s�̀,,,Ο?�q���{���


&&�Q̋���=��͝�,�@5���F��P�5��...���---m]����k扢۬sg�$���>,**���W(7�{�!j���"���՗Dx��
TUU���899�w�v�;�����Ao�����A��+[�J��cqo^�JDt�0>EDDDt��Y��+++�,Y����lݺu޼yNNN:)���bbb����������3  �����Ʀ��cccO�8aii���w�[EEEBBBFFF~~������whhh�^���$'':t%FFF�9s����٨d�����w�������999�
E�L�innNLL<{�lnn.{xxxyy�7*���U$�������j5:a���vvv*�j˖-h����h�۹s'�;w���ё#G����aaa�u����ڎ]]]�q�:ב��աP4Ֆ��ȼG�",�J�ڵ�JOO�S��T*сcƌ�2�t�F!--
{����}��i/V�d�5�Oqq�'�|bnnnff�cC�X����Z!C??���@��DGG�EÇGw�:u
� �c#�����!%%%_���ƤI�pHɰ���x�N@��F-Rt���qp�i�6;v,33���*��ٳ�L&�d�5ܱcG�n�F�amm-6���>///GV�y�c1�۶mC%��뫫����;{{{Tr�ر8�nCD�{��4�Zt����+5����J>ʶ~ʖ���ӫ���+��J����O�ZO�-[j��f""�NMZ?�MM:?
�-?��FU�՟zuˏB� W]���W�j~j��QU+TU
U���B�S^�*�S����(�j�����F�<ݹ6n����ػw���b���$�����O?�N��ЀS�0��P�0���|�r���7��y�SO=��Ҏ��������
E�ґxÆ
C��Y�����w�i��B(wذa�ӟtbÇ���YYY��u�[

Z�v-�ډ4��կ������Η�#G���FEEio��P���L싮Ė_~�E�m�С���k��4��ٳ�'O�n���͜9sDhL����8q������vvv/��Rii��@�b�u��ؒ%K���FجT*ׯ_�����|��������-[�xxxH�E�(4&&������Ag��������I�|��G�>u�ԥK��XgϞ=322t�:v�X�\]]���'���7[�}��I�&i�(�ɞ~�骪*)���#;r�ؒ��4k�,�!��/kk��\�V���;w"�C=$u�޽{Q�iӦ���-۶m

�>D��HNMMm���WƷ���Qn���JQX����<���?��w!�ߎ�4_��e	_���'|���S���������d���5j޹��!����������k[��V��H�s�qM~��[�?u�T�)��+��k��i�����Oŕ��ګ��SY�h��_�i�Ҳ�J~��Z�A�B��#�5�����E��%d!��ju�R(C�V�C;r5<�6�M E�v�8�������M�6UTT���urr���…���q��sxib��_y啄���_~yҤI������G�9y�d�޽���ڣ��^�����e˖-X�����


Ο?���O�>���U�Tnݺ��/����O��̙3E2ss�s�Ν={622r���>>>)))�}��ѣG_{�7�d�6�P������ˑ�o�ٷo_�Ju��AT������˸q��D��?����yŊ���8K***ڼy���:g���(��~���9s�������^�G�IFR��)bO�!r����=hР��<=p���w777t�#�<�6��>?��c����y��]��բ�ӦM�ѣJ<~���_~���ӧ�z
���oϟ?���>B�~��a��瞞�"8���?��O�N��L�OLLD>��s�dɒ�K��9r۶m111t���'���١]}��A�����V�B�Q�!CP���>@?���{R����ү���d8l�z1&��ڰa����oPP�v�g��ը9����v�}��w!!!�>���C ��(��`=��C8�0�脤�$]����~Hiaa�lE)�����?q�F�h��[�������������888�p3�D쒈�~'Ƨ�����N/^ĩ���ǔ)S���Q�z���3��d			C�y�W��F�YUU��쬓����J��ꫯČ�/��rΜ9����G���

��؈�
Ŋ+6o�,ŧ

������,X���ѣG���O�>���ӻw�~�G�,�رc?��ڵjժ��0h:thHHJ����2��СC(�<���Ҿ���(�Rcذa6l0�L>|�N)�Who�otBTTҋ��P֢E��=ZRR���O�t1����|���K�.
�߿�/�����%�B>���.ܱcǬY����===׬Y�WCCC�h���y��wQ�ڵkg̘aaa!
B�K�,���խtw�P���#FH�V�\�q�FT"��(�W/^��7�ౘ�$frUVVΞ=���>ruum���y�qqqH��,;;���08&N�(���������W�^=�|{{{�>7�\4z�����/KG2�|Pܒ��&�o���'%%��?��C)�+�- %HTcmee�zv��S""��2�������s�}�����=��#=z����{챺��;vH�m�L�����gϞ���W𙛛��_g�l������{�W^3��Ν��*�8�2d���Ccc�Z���z�ԩ����v�Q�K/�$����5J�R������R�ܽ{�\.��������Ԡ�ZM�<����;x�`zz:(dhcNN2D}��/'�{痾F�J�)�0a������-�"e�-3g��.//GW��666�������"fԯ_?�Crrrmm�H�AC����رcG�E'M�dff&�����^x�}tt4��Ym���	J=��?`D�y�ѣGK�&KK�Y�f=��CUUU�W���8��^}�U4���D���ҁ��2e�Nh�Zs��a�AGw��:��ή��466uF׉�屗�
_�#�#G��[@׉�����~?Ο""""�effnذ���I�ѣT*�q�ƭZ�j���s���۷��f�G}t�ƍ<�@�޽�5����:�]����|�M��>��R555���=z�����8��.�ŭ+++�W_rqq�YJ	z�����PVV�f����x�gϞ��$�1�L�AA����@ZZڰa�&M��f͚}��
2$L���h�������
�3*��	���fff���:׻���b8222P+�؈>9v�XBB¥K�
���iUUUmmmss�Z��\�IVVZWXX��ohF��ߛ��%<@����i�?��	Y�-#F��y	�Ϙ1cV�\�����H��O�n�~�Q*�|t�����.--��,r/�'�Ν{�…�K�~��Ā���Y���v2�1c�֭[|�Ad���A�?���`i �"�O�m�������9ҭ[����;v�9,���uuu�K�~�嗠� SSSGGǏ>�(00pӦMk׮]�lR���^�F8�߶m[mm�������S�V�X���/w0w��������?�|bb��������DN{ڔDLqj�B�b��6�hll�r�?nee%�h�:��*�
2t��u�֡i111���}��J%j�G
��m����^�j2t)�899i�~�@6sͤ�\�ti���{��qssC>F��Z���jh��9������i8vF����
��ۼC�<ŝ���ő���k�n}�=d+�+)���X�d�����_~����X�~=�w�}K�.�:uj痠҆����w�s�������*ʚ9s��o�ݳgO���:�O�mJJJ֬YcddT[[�n�:�|l4�X�z�ܹs���4�^���>555999))iӦMQQQ


�V�^"�����>�'�/~�������͛�^5���_{��$��_����&J?|���㛛�;�NP{)mll\]]����3��1b
���ڢ\<�����F���S�Nmٲ����������p�
ϾѦ0��"ڢV�׮]�k�.�‹/�ثW/333SSS�ԩS����w�jw�����r�С+W�DK�GY<577���)@'XYY)��/Jӻ$			MMM�M{Q';J���;j�QZ���?��iiiIطo_QQQ���q����pz뭷�����Ξ=�Ce�֭6l@�1^hE� "����)"""��
ΟϜ9s��A��_���J'r�V������:t�[�n8�Flwpp�a�Y�{���			�+d�����GFF*�ʗ_~��W_�J
�fM*++�=��s�Ik`A��n���}DD���o߾�3gJ�KIK������������O<�}�9"�S�����XEE���׿���I�1
�Bg!v1H{#����899%''���jg^__ojjz]�puu
?���
�M��=����d۶m����B������8��f�z���쥁-,=ztaa�ɓ'o8>%/C�khV���[]]��1�M$k]%4q|""�\�����RWW��'�h��^�p��ٳւ����{���q���̙3�f��㏓��Ģ��(����455�?>22�@��s�=�|���QD{��[ZZ��� �={�H��ץK�\�g��l,2A�F��nݺ���o߾���L�R�������7��ǿ��$ؼys~~�X���ٳ�������"J~~~��}��"앝�]\\|�����V�B��r���ꫯi_��ѽ;vTTT��)))"n��k�eee�]_���K��p�6�b����������z뭰��-[�,Z��СC����������ȑ#�?��O7�R8��'z���U����f�|饗N�8!�}��⨻�l��������O[0�[P��,1�P&�9::�	�v�jll,//�}����/�8q"�ί�ODDΟ""""��;vl���8E��K3k֬+V$$$�\��۶m۽{��e����LLL���RSS������?�;�544��I+���[o������/FEEi�OprrBK�.E��g�8�G�D0E�O�ϵyC4�R����w�y��_߹s��ӧ=<<LMMkjjrrr���P[CC���M�6<x�tww�����Q�������c�|�Mbb�̙3�mee�c�=��+���4DJ���$uPa�LЁ=�К5k>��Ç��ٳ��,..��d2�B!�enn>a„U�Va�bbb�]W�^�p�¢����{��_����^�R�����ƍ��)T�u�{yy��6n���B�������#F|����A���y@>|�С?���s�=��VWW����o��0I����E�X۵o(*,����r��?����`aa���ή������;h��E��"n�(
B�������߂����[����a �S8~������_���k$���ϝ;�~�z���xu|OC""j�󧈈���8�޵k����̙3��Im�֭�ܹsq^�{��ɓ'�Y�f֬Y������.\����7o�ƍ��i��󓮕���?���HHHX�vm�RLLL��?�Z�*$$����۶m+//��-[������)�������֙�h�V��Ԟ�#G�[���G�YYYIIIh�����I�&�]�������~���%�155��������~+M�A�|��w<�@qqq||���Upp��f�$qU�t����Q+�JmA���Nx�@��t��СC�9�G�NNN޲eKJJʴi�0�
BJ)���
��W_���K��ճgO*B���QQQȪ��
����ݻ��+�}�YOi�Jz{{�T222rӦM���*�E��������о������ޙK�E|�{WSS*r���Aպq�z�+�֊���H���ӧ��/��������\.�ÿ����]a��ש6R�0vuu�=���+W��1cJ��$�-������7�|St�hv�A��4�ͽ����a��Sue�J#.��Yl����-Krhh�840��s��^��/���I;�+)~�T��	���N�DD���v>�ߨ���xܤ�QZtW�-O��Ѱɠ	����hmjf�Ρ;I]]]CCN�;Oh��N�mll�t�Z-V��i���"1��---u�����R{��kjjR(������VVV�g�UUU⩈��R�Ė֙�\�dff�Stk�R�	�����좾��Kh#~�%�5�L�@4
A�EzqAJ����!�W�Ngmd��؈B�]��B5���Eqb��a\��?(%��H��������2A����t|;��!$n��7�C�LP
��F1^�
�jtL�#�^�z-Ew��:��Dc��
��@�"�����=d��v2C���8�E�E?h7E Cq,aD�Z�)��a,q����Z��֍D]�B�X.W��/5�|&mx�Z�Q��^ޢy�����	�����t�-mg�m�7\�N襂�ږ��r�o�����Fi}M����ʗ�+�Z�|)����>l��n�%�	ZE����#��f�BѺW��^�TM�C�,*)}5�!eo�	i�~5nb��������SDD�O1>EDDD�Ƨ:��)����n""""""""�'Ƨ��������H��"""""""""}b|�����������)""""""""�'Ƨ��������H��"""""""""}b|�����������)""""""""�'Ƨ��������H��"""""""""}b|�����������)""""""""�'Ƨ��������H��"""""""""}b|�����������)""""""""�'Ƨ��������H��"""""""""}b|�����������)""""""""�'Ƨ��������H��"""""""""}b|�����������)""""""""�'Ƨ��������H��"""""""""}b|�����������)""""""""�'Ƨ��������H�L�DDt�0����ٵ�#""""����)�B�����"�ͻ�o�1Z���4�y��/�Z��PD�
/?�
Q���YSSSccc��x ~��x�HDښ�z"͌jn�M��M
�6kbRF`ll��y���E��o8DDDDD���������A�V�w��H	�Z��^�;DD�툀7�}��
��������������ȈA*""""�ۏ�)�����U*U����a��n�w�f�)54���ll�242233c�U�NEDDDDt�0>E�N����J����K�������%z��РR5�+�
[�T����F��-���r���
����A�������̙2hnlR7�U

FFFff�ѭ��*bΔ\.olldo��ֲL^C�B�p�t6�D*""""�[��)�%T*�\.W���
"��I+�ѭ��s9�R)�˹�0u�St3��j�B�T*��u�St���r�B�����u�St444��r�J�����]Ƨ�R�յ��


�
"""""""��O��R___WW���Ȯ """"""�c�.�&fN18EDDtw�w���H_���V�kjj�""�ʮ+����T^^^XX��{;���󫪪ؽ��J���˫���=��������@�������8���B<U(h;6�0 ""�G0>E7BZs���uYEEEgΜ����{;�>|���w�ޝ�����RRR���WYYy�snnnnll�	_�T�'N:t�EĴ��{��MKKO�r9ڎ�.""�{ן��o�uuu8�ap���+�W�={6!!!  �����ʪ3{5it�F�6���~'|�^�x�������g^RRRXX�cC��055

B���ַ��8��Cf8nSRRz�街��m�St�'<���*���)"��,77����o߾555�����N�a��A2�jll����[�������7=󢢢��8�B���گ_���pKK���^W�*������9�����^��St}jkk9s����KMM���2dȑ#G222z��mff�����233����nnn=z�066n�Uaa!r���255�޽����5?���������
�������ob��qe������kZZv477����ٳ'^Ŗ��,�R��Q//��
�x�"�222rww׉� s4377�����d2___ъ��
�_ZZ��؈�zxx��W��+((��ή��A�zb2Z�A��
D���𴩩	}���|�������
@)�������mNN�m���A�䓩1h� �C �����Q%�	�clllII	�{��Q����&2������

�Q!���d�@�Ek18}�t�n����RRR08N0�H�Йh>�
�
��n�:��G&�x����/��9ED��>///$$���1   &&������];MYYپ}���.�����SSS�����������*x���x��i###ggg�Bq��q������#G��D'''KKK<�A���	��ؘ��_PP X[[�>��\.��Ȱ��555E>�.]<xp``�TClA����U�V�={[��>�@�h~zz:*�L�Jerr2~����Q�*�����������ɓ'Qd��?t�)^���Q"���[�TD��?��)<HHH���Co`_4*::����Ў��tHUU����v�����IKK��@m�3�!C�H�D��ūbw�v	�S��RT]mff�R�}�Q@����#mAsP(��qG��?�6���C�AY���_�*�;����J=�nǁd��G>999�G��!�ށ$��[GW����.�u��%�����knnNNN666�S///�䧥��d2)�P(N�:��1c� ���a]]]LLLFF�w0��B2''�#F �\PPp�ر�'Қ�������� >>�9���ԭ[777���B�P\hh��X.��8qU���:t(�EV%%%{��p�����hba���H3j�(԰����O�=z���Quu5�8h� ���&�T�<^����0a���J�«Ҥww�����ݻ��ݥK�<���8r�H1e������>|8+�j#����TJnn�3g0D� ���4��ѱo߾m�j�����؂��Q:v	G[D�9[YY!gQ*���TItZt��qt���󳰰@�Ї�{a���_�:4�"��cǢ�E�:tǏ/͢Be04�~��!]G����G��<љ8����Off&:*��/�&&("??��)""�{��Nk�w|�q""�
���.]�Խ{wg�l����N���׿???SSS$������Ѿ7kFF<���	i���׷O�>���@fff(����j���Ȩ[�nȶ��!������ea�^�za{�=PI���E��GZ8);;���6$$���E gg砠���,���>¤��:88H(<mjjB��z�knn�ݥ��L&F���t����1�CU�?"�H0p�@��>1�8559�؍�$F�����`�^*�
{I�#�0%%uCcQ.^Ewy{{���k.���idQC1Euˇ��hb@�]f�:dff��h2���Wxx�8ƴS���0@LȲ��
D�����q�8x��tuuE�ʎ�Z C$�b�DDD�Ο�N����+����8qA�J�rww����UrNNN"QSS��~���,,,d2Ymm�����Lg	$�V�;VTT��� +�ف�Eh������PO휍��E�GڈL���E�Clq���䴴4�E�B�(����%%%����Ȕ��� .�(**:~�8 %:������n�����ͭ��5D�!qឈ�a/���YZZb�R��t�'�4�$�/��^B���ЋK콽��W�«nnnyyy�����\ˉ"�*r@��]Q�f��ʬ��\\\�k���lnn.]"%�Z{��Ba�EDLtfjjjqq1���X�O�\���T͔7Ƨ�����Oѵ��,��K_1���˪��������8�S�4+g����y�9P�آ������UVV:t�<<<D4��̬��S�������������F�]�L.+++qݜ؈6������<x���gAA:'///--�G�C��.���cǎ���.))���ƫ��ɑ������M,�}���E5��T
�XZZ��r�Z��T*�k�Do���PJ�<�{�"�Ijb4uH\ͧ�Eb�Z�c��x8D͑�N�"`��{됥vdr���.xyy���Ŵ�kV�Y�_?�����O�5�$�|��&JDD]Prr2N�hkk+����***Ν;�����s�Lfaa������*�^)�K",�d����N�B���`)^������	(��痗�O�6M�An�Yh<==��֍���HLLtrr
		�6666J�B��C�S�Ry��I������ۻ��%��6�۷/++K,�������6a������J�@��z�̙�����jjj��H3���K�T�)U�u���T*�-��֎���.]�XH�P:V���;�u�:A�z��%��>�`�:���b_*mG��V:S�:�zb/T`РAbK}}=�r�C�P�otHDDDwƧ�#��/�v������W��ԋ���
���k��@
S�z��mee���4�Ν3�,�dffVXX��� &�H{᥋/���644xxx�wzz:�Й���O~~����sss�oE�������7&&m�4���<)))((H�㯲��tqqA�XZZ���b���9*i��e�����2�eee�Գ���4!=cw�_RR���;�����…b!���R|h�Q���������zyy��^�ti�Сڗ���	j(��K��w߾}���w�ȑ��p;;���T	��T{��oNNNtt4�����HAFM��gdd��h���c���	>>>h/���������製���ڱ�k�41Ag�������7j�Nk��F�Vq
`�ד�݁��dpͯ�z��\.������O��|��!*"ң��������Pqo;m���=z�8x�`jjj������CBBjkk�4--ML��֭���Myy������#N�8+��XZZ"<�`����G�޽Ϟ=���,=2�,;;��	;���:	�T*u.Ukhh���fkff�7�.�����^�f2�̥*))���4���A�988 ����~��E�:����ٽ{w��h�ѣGw�څV���!�w�9�6p�@gggdRXXhdd�����k��
v3f�ɓ'O�:%b�(�Y�P�UPP�R�D2����;j�(d��~$@��3|�p����������{���'��bw)����������;v�X���@�a�ȑ�9F\,��z��)nD(��a�Y\L������G��Çw�܉��*������ڻ�U�?�kjjP��"""���!���q���������[��v�,g`�y`�������m�{yW<�[�����&�ܮ�0�MRM�&|Wku����euu��.�h|���I������,��{܄�ℇ�,D��#��'�W57�&�> �MW�5K�Zv��������ܰIL��l��p�0��m�����WVVz{{������<KKKi�Z�.+++C����d������Z�+r�����MMM]\\lmm������ڛ�c�Y���� �������o�x����f���Ɯ�333777)�P(rss�E
6AEEEIII�nݴۈ��ohh@Y���h������&uuuh��;&֓;Vk�,�GA�W��$V�/..F2����}%)׎� �Z9�	(n���aaa���F�B�(�m��7t�nj#�L��B��TmD&�J{bڹs�N�<9m�4TC�A���F����$�G$@o���ĵ���IGJDz�Zt��������k�^AA�H,�G�7qM%�+�i8Eg�]5�.8$��݋n�ׯ "����r���?���6�rB��(�j/o�<�~lx�d��P:ۖ6�3�6߹��{'�RAumK�\9�7�mt�j���J�ax�+�g-��t����+}�����%�	ZE����#��f�B�Z�YS1��'�l����ܐ�7Ԋ��l�71���VJ�d|�񩎺_�;���N�[��֬����b##ckk+s�rt�9J�>�r���f�lѓO̞3��)"Ƨ��{��Fi������%��s��U��ܫ��:n�
��K������� E���������'N��뭆����[����[O j�D|jʔ)"
y�n�t��7+��Ǐ_�xm�Y]����b|ꮌO�>j��4{�ħ*++�Ο7�Ʒ����IS�������@�Q*q�F~^��]���
��JJJbcb�M�nnaΫ����j�m����n�ww�L�:X��z��̫��R�233�Q��� �d���WUU��|x������'++�}���� �&�fq���M���L�r9������?[""�{�S��WC��D�UjU}}�:)��驩)S�T��"���;M��Դ�����⊕��t�Xcc������neccs�����䔖������������Kz�ӤO�>*�����u|�=���ݺu�Y������z�v"""�+1>Emkll�:ש�����?wn�ƍ߯XYUY5g�\WW�P�m�L˼)##�����ڶe�L&���c
��9˗h]gDDD�
�BW�H��+y����7�>�����nŭo3|���\v�������M.�w�I@���L��SO�t�b�7kV��HO��'z��z⋲�^u�ĉU��ܹ�����>b��_~�)"�{�-
	i��V���"""��0>Em�"�RUjll���;vl��a�Ɵ�9RWW�`�°�ps�۴��+���EGGG��CJrrh߾���$�q�m6DDDDDDD7��)jC}}}�455ZZZN�4���i�ڨ������y�>����V��Zk��ܻw�ϛ~���9z��9s��q�)""""""�߃�)j�Z��1���&KKˡÆ988lX��رc�V�,/�7~�L&�uu622*-)���;���M�:uփ����38EDDDDDD�1>Emhlllnn�K?�b&��}��u~�yww�۶�������E�/r�955��i_b!����uk�����j�#O�>C�,���Bw"q`7k�7�����H��"]


MMM]|]RT������mlm���	[������M����a�b��ii~�ᙓ����y��q������}g�FFF�Sh����-H��Ncc#���>ֵ��j�G2�����1>E�p�z���:99͙;���fúukV�*.*z�Ou��]�B~g�Ȥ���…��[s�X������ǎ555�op���XDQ���)///--E�&&&>>>7�FTȪ�����H.��3���d2����]p���9v�Ԥq+�
���>|���"""bĈ����EEDDDDD�����UE=mll�͘ncg����v��k�J5�c���133�=��9�R�<q��5kΝ;60|�…8�766�o�b*��@��d�?�!"&���?������[o�emm�;�522JOO?p�3gJJJ�r���mpp�SO=���~o�q������!*cV7����������ŋxgii9z��v�N"""""��0>E����S���'N�زb��
'�/*,�={N��mmmo,��9�/��7l(//36r�3�����+o����$--m͚5������������2�F.�XXX�T*q��_ff�����l��q�T*��=;y����O>�u�?.���ɓqT�@��mnn.�j}#N]SS�P(p,!%~w��@Uq4\��(b�DDDDDt�b|�~C�tg��9vDD����z;��Ç�֬Q�+'�� s�]�pȪ��p��-;v�P)���L�9kV�n���2�ħ���ccc�j�X�i���}��Q(7%`�qS�dݺuyyyfffx��S�L���to�q��]qq�5�S����
���D����?�hjj��s������c�)S�l߾�y�~����o�rc7Q]]�g�}&���߿�ĉ�"""""��1>E�!�0w��)�j�νz�Z�"{{�=�vE�YSYZ6}�L//��:Ͽ�z�<p`����Cs�L�<��ã+�쌌�JKKϟ?�3vsssk�����ȸ�6�j������Dccc�6<<|�ҥ���J�RZ���d�!-�X��� �*++۽{��y4q�D___�-��ԩÇ��d2��!i4����������S�L�3�]��)��;�~��~���̛g�`�i㦟~����h�g<==��(��,�ܹs�׬���utt|��G'L�����U�VML.^����n���v##�����?��8��iڃ+b�C:?�:�v��������:44���[�T�u���!"[Q�h{��$�f�k�.��Z?�^j�:00�����U��!dkoo�sq_�q�$�n�(u��g�=�(������ˠ�����di�;QP��Fg�O�!�hHK��*B;��=*������K��H��N?�s�ph�l[[���kw�ލ��G{,0(P:Ko
/544�;w��ϿHNL���m�3�Djii�E�VVV��������СC���O�<�P(N�>=v�XOO��W2�{��^555eeex�annnee�ɹ3(Q�R����jqqq���o�?QOtfnn���gff���}�����)[�
/���TWW{xx��� =~���vP���|�LoooKK���Z�}����oW&��GY�7�\��������-�tz����Qt/TUUa���b����J�9���70�݂&����	�\E���*�J"*/�
�h���R�������Á-(=/�݈|4�{5�	z�i�����	�(�G/���!t��L�F&HPTT��
$���O�ccc�1�24�Q+�b�8)h�#��)삆`<����^�_T���F�RRR���(svF��&�R1>E�O鍽���g9�8�|��]�p��SO�������9�B����9���B���O/���t���p���}��Q
3f���ř3gpڏ�G�y��Gu�Sh�dee�(++�f�`/�����#G���w|)+�ʭ[�FEE��r��d�GG��%�Տ?��رc���b"Umm�7�e�_y�Q�F��1UUU�v�B���,�0ȶW�^<�~c��Q�c���'��Q
����O���999O<��ܹsۻ�"6����طo���EG̜233�ݻ��i�
�:K��Փ'O���[H��K/��M�6�TUWWW�}���|GK�'�D�w�؁���W�<==###G��qD砍�)������m.�y晱cǪ�j4��o����F�}}}?��s1�
��s���Í��|�ͤ�$<��͕"\���S�NE_��3337n�S#JA�Æ
C$�>�p�TTT �ݻw���bܥ�\VVV���ӧOG'�eݑ���߽{�JS�P��b�=&�G5JE҅�������9�[bm�NN�äI������'���v"""""Ƨ�n7q�}���;::~���N�R(��xb��A8י�S[[{��5���H�ēOw� ��u�����B33�>}�t����!  �…555gΜ�:u���b�+&&�믿.((�)������+����SSS���O?�����J����ںu�X�}��>����/�������#���#�bnd%�0==}Æ
��.
��WTTDGG'%%MӰ����5GC����q\\��333�ܟ�Cl���ի���+�,E�Ĝ)d�dɒI�&iG�D��ͱ�O?�t��1izz+--]�lYBB�ҥK��{�h_���~�">��Ӭ�,i�^�!w���b�st2zM�����ذE;��4h^�R
h���P��Ç�d�,<���E5�ϟogg����㱈\�!����gϾ������b;v,//G%1�R�D�j���.,�5k�8NDCč�.�J�H��#��V���۶m12Mر�wEE�=��<0}�t�.3���������Fv��800(�W��������~+���w�}666�*�+v�޵amTVf���À�}|
�ԄԳ����8K=z4���&L���733���߿�t�3=�����hoo�>Q*�x)33���j�ĉ�Vnbb�P(�o߾e��		Y�xq�)

BJ��"�������Dd���Y\G�lٲs�Ή菗��qUUUnnn��w�}�6Ξ=��Ά
P2wrrB;Q���\.GJWWWqa]eeeZZ�8�7m������Q���������Q\�VSS��a��������;EJwKl�U�f�"`�z����l4�٣G�cKhF.G����]\\�
fiiٷo_�L���Q"lקO�Xp
=�ɿn�+Y���jl�����|0vq��cp�


���Q���ꨨ���t��[�
��u��
G��@����(�BG���A�Q[�1""����$�u��؂�5�2Y����֭�S�&Hcmm#W���3P�v�Z�Y�fv�{�S�n|�N�_�����efdnݺ���î�.>���)��~�q򅤙>���s�.l���]��mm�5*-#c�O?��3�]\��'�pK�Sj��СCyyy&&&�{��߿��3p�����������h���I+Hy�ҥ��333��������bQ'�JU^^�WŤ�����ظ��l����B0�a̘1O=����{{�)���?���Ν������P��c�>��(W�k���_�re||���ԩS###e2���ymmmVV��͛ccc---7l����9bĈ�e544���<��C}���wq��9s� ���P�wrrUSSs���e˖���������ѣ������zby�iӦM�0���-R(111�֭CO��;v�9R��:3��*�{��w۬3:���ׯ��1�T\\
E���
����Nuu5�KD��bw���^��-\���q/��x8ZШٳg;88�8�oߎ��&b�*��#�<2|�p{{{�G�ϟ?��NII9z���ɓEt	]�裏����">�<�9�v�Z�щp��/�R���2eJEE�s�='����/���.��ndt��i�+�c�6q�Dooo33s����?o޼�~��M�|������5���������)�W475'&%�_�>��!��?8gv�b��iÆ��7WVV>�`~yy�Ɵ6�;�,����^�{EGGoX�aݺ��҇��ùn�MV]]�{�nSSS�l>���CL$���7n\bb�����###����	N�qn��<==���E�/999���4j�S�>�쳓'O����������1333q���5���3z�[ff�ѣG��N�>}�ܹ����f�b���YYY��Ũގ;�
�z�s�`����_\�&�{<hr^�x�X�\�X�
�������?#���ܺ�:{{{�ݑ�o߾��X�^�<j��`\�]����W;�Bs0�111m�*��'O�|�^uZ띋qD�@�#�:`���B�a/�K��(��U����\BأG�E������f͚u��٢�"������N����و���xZPP�#����!�=�CϞ=����47iv�zƌ�N�:w��TTTTUU�E���Í���M�����9~�xqI���qXX،�����D��.\�0/77>!���fߞ=�+�O1>Et��l��ٳ?�^}��i�3/~�����nn-�ǫV�ܿwoa~>�c3/]���������:�f�-7nߺ���|�EAAAzoN�;�s~���|�o߾8����q�~������������XdZ�Plmm�RP��q�/��:����7���?G���O�y��6�RB{���S"�%��F�igg'�#B0"{��E333�J����N����F��:Ӎ"��z�h���I�^��t��ܒ6�Z=q�DKRY��>t>����
y���]׬C�Z�R<������CD���?���1cƈq�^�G񸃞�$셿�������)Kb���=�"����ʼn���8���tD�$z	�d�����Rt���BB���?u��ݐ�+��efd`��*���Y&FV�V�QܠA�����rynn�����GDDDD�U1>E���w��}"Z�)II=z�|�F�7'�8/up��<e����_.����)��'�|2�_?�D7Nh����Y��G���zz��-���-ڹs'���o����*
q��Sz�ٰa����s���{zz��/Ht��Ycc㜜�5kֈ��]\\���S�=zHsR��L�������7�r�8���E�$�Bs��NNN:1/q{Aooo+++��fgg���K'����Xx�˭��8y�T^^.��j�������Kqx�������c+���b�K��:���3g��~��&=���
6,66�gee�q������0�f{��&���&��#�";;;�W�*Z$n����)&�8p 55���X��1�b�,ִ�̟:��Qmlddla�>����פBJ�e$���G��?""""�.��)�K��у���滢���O>�T��>-��+!S3���Ce��;����~Ld����V9Ϙ1���믾�����O.Z4x�`�[��6���111��R8�޼y�v	p�obbbdd�V?~��c��;99=��QQQ���ر��^L���JOO�����3�xyy�t�\��
���$ks�PVV&z�����¢u�[lmm��"��:����v]������?�<''���r��%�M���ML&,���D��$���C�e�[���E�t����
��b���SSSw��1t�����ܬCT,&��ҩ����TH��@�W�w<r�ȪU�JJJDok�����a�)�d3�
���}Q��|�AQϲ�R���DDDDD�51>E���wb����l��]k֬Q�Ս3f��E=z�?��AAA�{���ҧ�#���ڬ\���ɓ_|�yY�#S�L��\w���S�]�v��%�prrrbbb���\D�����[z���o�i����4^.����>����x���ܭ,�H�=9z��8a���xqXc����X����cX���k�'ڞ�4�QΩ��U��J��ZI��R�}-kZ��U�^Ww����W�^��4m�Ν��s�W���o�|>���Ǐ���D"���Gs��Y�břW����b�������]��ѯdQ�Q�?<<W�!���{omm�\������ۗ��UWW��3��u���ѯΪ!++g�ܹ_��v����WWW˧OV��-�K��g����'>�!��559�1�.wڟ��


r��"_��0�vݾ��r�q�T����Q.���M>�­V
�I���Ν�������؁*���Rs���bE755���x��o{�
����%�-i+N;"��w�����G�?���?~�]�.���=J�*y0�}����j{0o��J��Y�����v׮]o}�[����ٴi�֭[��������G�>��c�u�����аhѢ!K�x<o��o��Gy�W���\xcc����~��%%%gx��d�����r�/ξWN���ŋ�br{eI*++Ϥ�冿���555����[�������W^y��'Gɧ����O/��.��~���9����g����K��*,,�w���ȅ8�n����E�?��ԧ.����e�����nxfC�o�\TUUUSs�\Tռ�}�.��Zlz7��\Yu�hT><�'��S��E>���ۧ�(-�0F��_��?�zJ���=��+KJJ�<HZ�r��?�_�._����w��;���{�m�-]����M���~���~>���C��ِ}1��z�رcn�����^�W>�{��������gw�ڼy�<n�����#��Ҳx��Lu٧�}����k佷�v�<��˔ٵk��w���~6�Iyc�f͚���������_����ūV���@�i�,�O<�g�Yy���.˾ ��v���{$�c�[�N.��H��������:�UL�T.�(a�=෬�#G��B�E�e�Ǖ+Wnܸqٲe��U'k2��!N �O<��X__/k[n��p��ڋg�}a>Y��#K�u���~{��;Umm�;���؛)�4����ymr冤^}֫���h˖v��-��'�����[n��3�In�/����u�嗛�Ly�Sz�lw[�'���ԝ;w���ع}��ի��w]z�`p�G+��n�馂��{�'\W��]�Z�f�9��L�)�0��M�6]}��#�r�����:uJnxcc㫯�z�5ל<y��G�]t�ʕ+�̙c�q.g{饗������,X0���~�%�\bW����[���s��a���~����q��H��o���'x��|�;r�V�Z%����:��������s�ν���l�L�ԕ� �����瞓�!�K.�����G�S�q�)�Ꞟ�,��.���^�n������{���˖/_.�EV`4=z��SO=ewD�Sd��/^��tuui�&g(,,\�t�|����
������)�V?���oy�[�����]7o%��Cn�}.���?��[�l���
��l�*���K.޽g��;�~��O�<!����*�@�#�߷�_����ںu+'�S�r�c��2�<�|����G�\�b��?�_�?���^���FIi�u�_��O��?�I`�q�{7o�|���i��u۶mkoo�+���^{�}��������\�F}}�|����-{��y���555�`����#���4[gE�G]~�奥���7�bETr�|������Ҟ|����_w�u�Hd��\���~�i��{�ȑ���P(��,[WWW,�����}��lO�u��V����%?��SrՋ-
�ò�����mNK�4����H�5�����_�{��e�e��:uJ֒�1�?�d]����b��˧��t�c���9<���?�Z]�z��
��[�K\p��
�������'��7o^4=y�|
�ļ����K/�T������x�G�[�J�֯�['�Ûo��СC�h\�ӟ�>��K%�wwuGc1Y!��կ֭[od��.�)�9,�����������7o�r��,eF�H�7�p��9s��������|��/�4�,��|������+V�\9�I��Æ
˗/oll�����?�����t�D"���)V�e���/~��ߟ
d��7d�7n��;�������Ny�_^^~����'�Ҕ��>�̟?�7����3���(鱖�o�-�~���l�2|����]ii��>��o}�[��	e�9r��L�u��Wo۶-�pc]�x˓JI�j{{�({���o����/��������u�]w뭷��PQQ��_��!{<���f;��x<���_�fMv��>;g��×,�T>�7�|�/~��-r����ų�7����/���~�>u1{Qr����۷��Kޖ����f��sǎ˯�B���M���_H��z���F+����)u�ߺu���.��E8Lq�Sj`��)��������=$����ַ��-[�Lv��bgs����3�����޹����]���W]�;;����g�y0_ZZ*�������<��+�����G�ڹs�?��+W���G�mll��f���Z�J��]�V�Μ�)o��a�����چ��g�yF����x�ǖ.]j�����E��r\.���^ː*����]�%|���?�f]�M�gee�,���!���ς|��݌�}rs�n��o~��Gݽ{��m��P(�dɒ�n�I�TV���Ud%oW���͞��J��GV˘\r���������(Wm_���n���K_~��{�����ϣ]��W]u�ܴ�q��Ě5k����<p��@  �;w��y�?e��۲<�¤.����HDN�ۧI� &7\�^� ;��c�/&(�|�7�R����=x�,��"�᭷�*���۷�'e�J�<rQ_����m۶�
��\n�yK��"�y��իW?��g�xc�S��QnEUU՚�k�Bn,�OS���	�F��4�#�̔�-�o����S�6��M�{uy[ްo�_�C�
�w���'e/-=��3�5�<�X�LA�h4�e8��՜���������}�֭_/���G}�>����\}�wΛ?�ܔV���ѣ?�g��6��s�m����3��G��7�m�����ߐ�g^��-3;;m
��2W�"��ᎎ�P(dû�d?<o_��"e�7�ŒR~��k)++�����2G)�=�Zkk�\��ɻ��V��
�.=�gV��<�Z��겟�Q�2��Ejii�u]n��!k�S9�ا���#m�HK�.���S[�z��������={P�̼ºޟ��ʉ��rGJ--�~�F���g���f�a=T��Ě�����q+3E<�������U�k�}T;0ź�}[�x�����vfb�u��M�n�M
ݽ��I��tap��Z����&g�/�e�(F��@�4]���n���U��w�<n0��.��uȓ5���2��2��J�.dfՃ�Ff�"+	IM�M���U`����P�ſ�Z��#ۣG�<���/>�|aq�M7�|��7ɣ�s����+V|��,*.z�'���&�n�a���^c�(��2$F�>8��|~��e��ϤH�]ڐ�-��<c\�i�e�ٕ�w��]��3��gU֒�!�e�b�
?�b'���N�)RIIɐ9Dz����Qr���B9o���B>��TU�4-�HL��*N�澽{������_�͛w�����k
B羟ׂ�s�%�%����y�ם����v��YiJ?���oF����q
n�Ċ4�Gq*0M�O!���ǧΑ^<���O�{�cǎ���+���ڗ�Oa;Dž�k�;w�{�x��ի��O<�D]mm L$��9L��p����S"�������x�H$��n׻�-[*�8;t�}i����_��g�w�q�z"��	������i��C���B���R����r����wj*�)0��"�H477���hT��ܹs}>g0.�S���&	g����������'O�����������>�*J�TU�\����ޡiڙ��
�,D>����r1��taI�<�Z'�M��I֥SC��k,\@8�x�O!?UU�nw4�
%Y�r��ի�ru�i�9��F��B>�X�����T�#qY��*�)�&j�F=���|
��u���х
�=�S8
���Y~��!��i���p��O��\.���8ȧ0��DU=��MU�IG�1�z���.T`ґOaL�>���vS`r�Oa�t]�B��Q`�Oa4M�BB�L�)����
���,�S7��+L
�)L����DT�̑OaB�����~��GU�3D>���:��^/���� ���	!��`(�*���O�!|>_(�7�
0�S�^����H�u���&���GƋ|
�FӴP(TXX(oP`�ȧ0�<Oqq�����]��H0���`��v�ۜ�`�x���Yƀ�8[<���D"�h4���<��`���)�.�sq�2p��O�,B�|>���ǣ�h$!�0�ɷ)C1���[�ݪ���ig��:!����u=T��t*��a����.�OK��r	���i���u�S8GT�����0��%�HP3�i���%ߝ��
���q�;8wȧpN	y�g�u���AU4M&��I?��H�V�궨��z��&��)��"�"�������,�_#�&o�S�d3��Ls�l��w�UJ�o�PUU���|+�GB7s
�\#�”��WEU��q��0�JN�m�6�021��$R�A>�6���+Gɧ8e��T�"���ȧ�$�)8�|
N"���ȧ�$�)8�|
N"���ȧ�$�)8�|
N"���ȧ�$�)8�|
N"���ȧ�$�)8�|
N"���ȧ�$�)8�|
N"���ȧ�$�)8�|
N"���ȧ�$�)8�|
N"���ȧ�$�)8�|
N"���ȧ�$�)8�|
N"���ȧ�$�)8�|
N"���ȧ�$�)8�|
N"���ȧ�$�)8�|
N"���ȧ�$�)8�|
N"���ȧ�$�)8�|
N"���ȧ�$�)8�|
N"���ȧ�$�)8�|
N"���ȧ�$�)8�|
N"���ȧ�$�)8�|
N"���ȧ�$�)8�|
N"���ȧ�$�)8�|
N"���ȧ�$�)8�|
N"���ȧ�$�)8�|
N"���ȧ�$�)8�|
N"���ȧ�$�)8�|
Nҩf����g�}���[����x�����.�B�0F4^�94M�i���H$��XU9]	�)f��������4M���J_f`\x�0s!�n7����p��D>'�O�I�Sp��D>'�O�I�Sp��D>'�O�I�Sp��D>'�O�I�Sp��D>'�O�I�Sp��D>'�O�I�Sp��D>'�O�I�Sp��D>'�O�I�Sp��D>'�O�I�Sp��D>'�O�I�Sp��D>'�O�I�Sp��D>'�O�I�Sp��D>'�O�I�Sp��D>'�O�I�Sp��D>'�T�S$�8���������"���x�0
�*0\�����<Eߊ��"��j�
�)f��h�HW�K�'��x�6���&�ɘ0�L��4u�)�l�VD@(~S�U��r�	n)�{E��
��� ��U�S�
Iè	w=v������n�H�;LE�8J�n���UXQ:R����P�	%�s[ÃG^��/|���_�iiQ��2HpV�O0��n�����?y�&ܝB�4M�5��ᲺG�F��v�<��SG޳p�+7� ���)f�H"���������ͩXJwK0v��MU�?��ѯ��X��ϭ��%��=>*�D�S�Xm�}���NDŠۣ�.�D���u����?~���c޴$TL���|
������{^�ף{S�}�b&��8�ch�b�zd_Mo��6_����*&�E0��ji��??�\��"��P�
��A芮���vϳ��޵j�|�g�|
�����㫯�����˝h1�n`�ȏW��`ߗ^{yyQ�e�����O0��E����s�oo���$��p��宋ž���_�_[\N�g�|
��#f�ۻ�
5��'ɦ8��"tݽ����^��%W���	0a�S������ޟ;����	j�s��y��z�={�EM�>��!�`�h����}ձxjLtp�h���wyբ7͝OeC��� a>u��E�
�sJs�����
�s}G�D��`&����^Eh�ʙ�s.�M��U�}�j*��)����|��Զ���N�ơ眩<r���-
��T0^�SL{=�ض�Z�4#�Jm�Uy���pW��9T0^�SL{u�=�:;���S8Gk�'��4�O@>��f����p���P8F�&#�JsӇW�S��C>��I$�kl�}L�hW�km-��*�`\ȧ��:��?��)���U-f�1^j�����w�H�ai��g}ic)�>��BFڨ�n�H��V�2�E3YBh'��7��ɧ��"�`zk��K$�p�|
3�H��b$�5�DFUuU�c���?�-�H͜z-$��B��5m��a�V10s������҄W�	!N��.���P���><���t���bxp�!E�QYw�*MX����$(V��ȅd"��U�Djzr�7kn-�(`6��)I�����Ƌ|
��%�G��X1!�x��DB�`ᒀ���'����p�>E�u��E.��4�aG#}�c�9��:����{Y>67��$(w�uE��{=�S�����H�b�"�3��x|W_��*W���b��2�+nfF�D�&;�z�&3�*�f`���w�"�4E�/G"z�F�B��\�z<q�l�F����KU��I�Lek�_�Si�F_��+��ꦹ��]���-���\��R��6�|��,F�4^��O��%�PTqE����+q�b��������K�r����]�Ѧ�'�[�L*t��la��fw<NE�E>���ŭ~
*��0����>�lٖ��"��-4�sG�ɺ��~s���ލߗ6nYR����{�?�4T�w�6l,-m�F��c���fETf���GW�~��J!�<���r�E�%_�|������ 3;�����?kjJ%7j��4+uק׮�X^jd=>�L�Gb5�ݏ��{Kc�*��4�Z��m�d���\���]	�zQ'��޷t�֊9�>�G�Lӌɓ=���j�;Y]#��5M7̈́i~pيk�͗Kx���7^K�W��i\_5�������幝�&������B�˥�+Fg4���;��Z�^]T|DzeVT�\n�Pe��F�����Ɔ{��ȊUo���lîX�˯�R�ّ)0å^�fW,.�@">'���aa��O%t�|
ӛ��2T���.ZQT4��%���G�{��t���(\*i1��b(~�-C��K�6W����H�z��"���<^���t���]��Ҳ+�Ϳ�TͿ��w�?j-d��%�y���`�R]4����^���'��e*s=�E#��D��:�U�X�s�~Ӧ����S�Fm*+�p��~m�s=="u�Y��W�ڄ9^_�#�2P��i��=���������2��7^��dn�7�lڸ��t�3�8���t}�@h��B�O&CrQV%��c�|8w�bI�P5��Ǝ|
��'S���1�U�o׬]SR"o׆{}���/\��*.��bN]����vE�L�ꗤX'����d�ם���ѩ躜M�S.����7޹sG��"�|�d�2RݔRݚ��PJ���-��/77˅��(�����r��e��w��rs<>�U�:�-a�Je������\K�dz���~���ol�����PE"=nԡ����2/^ay��-��D�Ɗ��%����/����FGG@�֖��*(�\�̟�s�>�}�+}��1�L�ǖJf�'�|#}�a$�Q�R%HX�������=�C3��d�d_��|xժ�e�rbMo�c5'��B�{Y������m������4����s�hB�:��`�ao2y*c*�*�=!�H�M�E]�A>��fw���	�����;��H��F�ݷ�V\.�)tUl
��~(���[��z�KB<�|����:�u�3��*JDSU7�^BQ�jѢ���?�w_*�Q�\L�>7v`ʑ��߱�@""l*�=�ϭ]�׋��]�啕�}��O��+��+�U8�g�48t聆�"��MskA�׷l�l�ܪ����^jk�3�nn���^-�A�TSy��|z�:;�j��߯���`2�(	��V����M����+���k��f�G�'��.��֙���X�?�����K��J�i^��W�`������Q4M>#Q����Ѿ�y�4������ZVw�����Wh�8����w�:���Z�wui�K�8��j���ʡ
��虀�-���iV�$���WX��*R��*zM�ٮ��:�]Bi��BU�Kh��#�Щk��؇���޵r�/�w�:��La����QU�5�h�ov������u�->��v�9o�R��a]O�==�9q�8*�hvT$�7]x�'�k�.i|��b�Օ�?������=^-�u�Q��'a|a��VW�{e�]:gΖ�)��H%�!'���{�[ȕV�\hX�r@9U��!�ڒ�7�������������=Q���*+*�*�n���1KфHh�u�.zw�mcA�)�9y4�q�>Lo.U����w.�|�����Wnom9��U�>���'㊖�ʤR!�����[� ���^�&�WZ�o댧汻)��Dg4Z�u�S����?��b��T7+�YqMVd��b$��]1�ɇO��b޼R������xCcB�~�	3�:�:�G�N]��TӔ���z|yTM]��}eQ�?�Z����O��u��߭�W���,h����]W+�>yw�^��E�����.Y�ҴJ�Q0�3܄����{�0��HUK�JO	���<o�[���t,�4�lhz���`4~��w�5��'V����b{k��Γ��W{�-�x<U��Js�
U��u���e�|
?�)�y3x�_�˜�BiT��]*XS\��ⲹs�O"i�����ȉ��:�cpW�h�;�-yG�r~|���-���CE�ɻ�s��U����߭_�ʋ/�ư��v[ͼ���G��\�KU+}�a���&u��i�"2�
U}sa�_�_h��U��NƳ׵��D�d��HW׃
M��(�x�V`t�'ܖT\B$�4S�����HTn�_w���i9�0X„jd�(o���jjzJ���U��<����u��)�ǎ{=�JK�&\4�B��q���/�MOԜz����35�C+ޗ0K�
���#�`���ǁ�t�w}�T\TQ���pq0�Ҵ�%���T����S}r0j1��==�ј��($�r�����T�'�y5mW[�km;pم�-e���x~�Ǔ��H�r9���'ZW���ɫ�v�#�ܘi*�:,��å����~h�r�p��U����T�U����jS�jf]����p�&4;ۑk8�ՕL�R��V>�fbȘYfRU�VDZH25RM�ǻQ��S�zM%s�=9c�L�oe�M&�uw��F&ފ��H��������@�+o�Sqٜ��E煂^M_YX(nZ�`��=w74)�o�ԉ98�0�����#�`�K�2�f����Dw��[Yߴ8�[^PZ|��%OU���w���pH����44�]�co��	]S���k���u��֖o�q�m�X�r]=��0R!�@�b�G.φ���T�4.)-ꩵč䱞~EW�_q�K�Y�B�).�]'{z����_wv)�f]Bp�/5��Þ�C��9���0"�m]__�H�5}i��b����^�k�ݞ0�7�xR'��cm�b�-Ѩi����܊5�y���^�}�#�r/i`�m����;�ӣ�O���N�E�{"�*;����kh��-
7�ݰ`��@�����K�lj;n����.>8pL.R�a&�K����{���ӟ|U��.a�AMK�j<qȈ�L(]=�'zz��Mr�9>�j�Kn�Jc�垰�qg�R��6J�˦j�6.������0v��!3�/�Ou�J�L&�RX��eKCV�s������"uŽ!��Lf���E��隢��۝4�?�7���FES]��Tσ�%v��=��v.�).����w.�.�e^�'W,{i���x¥�qa�Dr������xO�p_Lj}�O\S�ŅW���T�
��ǭ�_V*�FC�U��_qŬ��1V�.#�:AOS㊨�]=I�'�<h$�z���Qj�?���7]�Ӵ�!��}<Mס�[!�/a�~*�
	��Ӿ,|U�i��0��b����?V�jgwS,�'
�6��g���<�@�U���>߼�PyV��)J��<�}��S(�=1��c��}��������D�-Ԁ��
�?�j��"��?p䘒4]K�y��4̻��Ms�_w-��?7��T���9WV���7�:5�p��
B��X�}�y {�����'?�f�O�ޱxa@�<~�h�߭��B]�t�5pUk��dBq�_i�n�F+��e���֮J�=t*���[�x]Qaj�HdwkG��\�[��F�(P���xs<�/�W-+����Ύ�x�'��z��Ϻ������S��"r#5,��}	��c�=��)�{3Xd���%�X���~�e%M��Sιd���[[��~\_"�l}ss2�D��#?��}f���Z���K�m�
ڽ��H_�ϴ^#BU�&���u%EKN�Kݥ��ҙ5E�]z�a��T�v�'v�b�:zOC�Їw�2
U�K!�b7Ɠ����D��⒛�_
}d�y�o<�4\Y������K��duU9���;^;�_?^�����y�]�i�k�Wք�=�����Iu��?=V���zEw�-|���ߏU���U���Tm)+n��J��9^����a<U�����f��\\���֍Ѥ�9�P(f�0��#/��]Q5gQ pɜ�p}_�7+�zV�Uȇ<]�Pk$�l��W	��R���*�?���[�KW4�z��f
�Pw�h�(���~�3p��4��?~��[�j5&ٗ�Bd��V(V��fsk�+��h�������u��TW:C�G�v��մ��/���av�b:{~|��-V8e���u8����j��
U;a�;xlmq����;�.>��Zu�b�V^�vɟ!ˉ'MY����͏���p�M�x�>]_Y���K$�{�~q����E��E��~���
��m��|�r��|�R�Jk$�T]�wOgن,�]�{a00�r�+|�~S9�����{�? 23�g��~T]ףd�ߧ�վ栞���f1��]n�^T�8�O0�����{��sh
c�Ҕg�}�yu���o�(Y�=n�4�b��H�ڦ���Y�靆�lCˑ�p�ju9��m��ݝ0�oji�F{��X�z�Xݩ4�O�Z��/�s4���7��D��i�U�Yl�R}����j�|���!M���Bf�������G�ɺH̺|^j$���}����-�ܚZ����'��;��+���.M=���mZ5��F����[/�(�\VrIy�*�
�~�O��_SZYT�tK��D\��a��5�]Y9ga�����D��?�lc�=�M�P�������Tc@S�aeP�aڏ����}p�kו�gda r��~�c��H��kږzF;��JM$�DM�W�vw�L�K�a�R�b�ǥ҅
g�6�M�g�E.�2x�3}�^돼��<�;��%�u
S��#��;�Py�m��N�^Zz%gVk^�x<�0���>�ߨ��{��F�D3}�'���3Q���{���8�rO�&�MW���,1���t7���N����6�����hTI&���VO���#�a��U�*��7��^T͕��g���D7Fl��F}H]/i�K��AϺ��aX1�b��)#5�E��r^#!��~�_-��hjo<񧆦�HluQ�ƒ��{�յ�!+כ�=�u�̭/�]��x�t����
�X;Z5��#��T��K_�r�[G��#�V!5����0w��>���_]��K�N�r�Ǔ�}1;�=T@��ښh�L�nd�NwJ�(rG�J��,�J�N%��{�u���_����L�T�H7V�Y﬩F���t�k��.;O�Z�zw��È�)YJ*�[`��~*M���U��ŋ�$$5}07Q�N�W��r�
����]"���!�0͹�>l�L$͝}1�����ԁ�M{���x�Qb��aϦŅ鲛��qP�\<Ռ[3g��a�I=(�h��@�����+n]�op]�)#.*k	�Ѷ��
���}��;W,Z_Tp��y�m�h{4��eZԭ
OMO�ɘ0�Ks
�k{G;<������
f�'�FL��N��T��I�]�*�M��,u�7�)��2��إW�I.��dpoN])O�x�p��/��=|p!���Bg/*}�X=���%��.e���ju����Ɲ]=o./^QTUQ�ӷ���?�:�"��i���a���I���U�gK�Y�T��Z̹2���O0��ݗ��mR\3�P5�0���\o_���hI����x�"1/�YS\@M�E>�����7W�T�05��j�͎��rr`��Iz��)B5W���B�0^�SL�kK
7��bq�Ш`��0�$Ls�b���X��ڴT��\�gKQH��9Z�)�P*����T0�`���7W����S7����XWT�$�&�	 �`�s���U�����.U�?�5C(s����� &�|
�����iA�OZ{S���J"yKeɅ�E�01�S����-����]}^��%8w"��ܭh�<��D�O0CTx=w�Wux߉����+pN�S1�O�W��8DmF>��q���_9֘0��Y~�q㣕ew,���p&ȧ�A������;M��Φ��qSq�3k�z]�pF�X������†E�	�g��BS��gGW���si��~j8C�S�4��na�G�{�	��`�u%�M^�߯��RưS�$ �`ZS�{���������#a*�Β�����R�B�IA>��4���yK��k�It��:R�����2L�0>YU��VU.+�4z`ҐO0c��w/-_Y�����WT�Pը&��4�Is����ݴ�����40�xE0��UqQy�ޭ��\��PM��p�KNUE�"8���E%b(I��Le�G{���w/._Q��U>D�IF>��7��z߲�����?�{��FZcF�!���X3x���D�s���,b��.z�T�uQ�ҀWU�!� �`V�R���\Z~��C�}{;"ۚ{�E�#�v3��7�~EIRS��JS��P
J�K_pm-�_X\Y�-�l>�,�5����Ć�y璒�ݑ���D2�4zf2�0��ڏȠ��t5���
��}^�OE�!�`�҄X]�?����$
3�p�`���8
p�HŊ�d����=�a8�|
N"���ȧ�$�)8�|
N"���ȧ�$�)8�|
N"���ȧ�$�)8�|
0���Jȧȏ��
�)��nTѪ�<�)F$���YG��<�`�+�`���
0�Of\�F��NB���Ie�l"� �Y���fE�'�	D���`v�ԙ�R�Z�,�S��٨�50�M,�J�#ȧ���n�0K��LIL��@�;��iEo,�Q�J㙕f&�|
0˚W�(*I�Ii�̘�U�s�|
�am2k�:U�����9$Fm,M�}E�
�!�̔�m�1PN9����E���-����Yg�s��l
�U�"R'L�S�Y� �Rԑ#ZL8��3	��lG���O��JP�vmg�t0S�B6~R�1r�(w�-(J�<�S�(ok)31���Q��fK��)��g�o��jcњ?UQG�J���ސo���F}�p�{ ���9L
�S�Yn0��;�Ll	1z�hB��ѓF>��֘�T`6��
>5�с�E�0�^㝟�S`2����	�)�s�!��=��K�
�j�)~���l5)�HW��:J5�F8s�S���^&���� ����}pn?`�c�mm).�fa ������>T����Yd�)~����l�}�Ә�9r�%hi�tȧ��3O�֠J��5�����@�����s��$N��]�ٍ��m͟��i���Fl!���贼0�~�Lmy��ΐ�?�M`��&��>��OfIl���n���m3+Ps:O
J5�y4��QC�$��D�Ff������]��>��efrcI�Sbh8��1dO�[Sy�:��`������t1�3�9R)�߱t�&�`F�����(�t��2���w��A5�P	ch1Ѭ��If�1v2�ʞ���?iL��am���v�:�H�pf�%���_*|�fAC(��T����Ɨz8c�S�iՖ:��2�)~�w���-+1����.��|
0�ZZ����z�׆�.T`�7�F�<EC�N�u��4�q>D��Pa(���&��w��u��~�X�q&��@�g�����.m�^��ᔼ9��S�o�4V:�"F@>���7+��L�bf�̾w��JI�+�hc*�xRޒ�g�+�ʫL���b�̾��j*��F�-f\�yp.�<M_��p`6]FNDV�"}
��PQ��d�Z�:8ap�߷��f���C�J#�Syo����ȧ��9���9���yI�4�v�b��C1�;V(e5��/�I����/&�7s�R�d�<��!���� ~5������ g6��2x������Y��"S�L[jޞS�^=fؕdrJN�3D>������P)���@�NM�PV�k�S����=°��G�_K�-��e�'��w
ܑӫ+O�.��-�����+�NI�CY'�	5���ɢ�͜�fHf!���	���xRi���#�L��\�!�F?�/�J��ʞ`'U�T٧����&3}j�՞3�g�
t��k �i��̃��V�?��oь�z_�d*�GU�yyf���lCr���9�}��<��};�)��k�MJ`�K�DT�Ix�	�*3��j�fND��Tf�ŖuoV�O7�:�������3�ݝ%���ްzN�	�r+��38d���0Yȧ3��7z���h̜S��[o�j` �tV5�J�n��s���*뤾�F_V?)3�mg��	<����͘��'��65$���`5dLte�o�&7�"��(ȧӿU7�)~cd�B5�@���5Jz���>�OI�TJ:�z�_n���O
��
��ن�μ��K)#'Sʰp*{�yz`�
}B[��`�7�r3�Ѳ�!���a�2d��a�
�T���S��՛#TC�Y��`�����:e�ͧ��KK���D%�R�]�/�Bq�f-��`Z6��a
���P�G���=�yNK��$#�B{�F:��<c
�o�2�AM�6�k���=��ihQ�O0S�4��;B��?�3����
_��ZJ�9}y�����r��T"_t5��O�gg����Y
ř��L�Z��Vk:�t�`�4�GTY-��cQ
�H�n�e
G����<=�zf�ݯʾ=�}#5�L���G���v�Q]٢%�~��w��Nw�*I%�$�v�9��$6`�P�W-��}>�I�%�f��J\�� N�~D�Q9���TūX$����>��ѧ���&����{EZ.���2�JKT�	����C��%E�r�T���=��
���%�6��b�V�z�s�^$I��`�$����~=��C�;��*�cB�[A�zޙ��ȡ��	`��&$*I��‘�g7Me>JjS�XrU&*�_���ny��V��T�����e�J�5�c��_�<l�OLO��V߂F�oF�{O�
+���n���n�����a�!
D�H�����S����#i&W���U�*��ˣ��~(��K_I\~m��I%={���>��a��uL�Y/}��Lp��;p/%]ߨ�
�Z^ك�̤�}R?)�TZ�J��V���gM���3�WO>�Ro��6m�8�嬸?�mI���~�찿���B}��aCP�?�Um1S�J����0R�Lj�N�=b8�,�M@�����Nf���8U{4����o�&>sH,SEǠI_<JϪf�S�U<����n�ј����k�e�:�J�JvH�aM�Y1(4{�#J>�q%Xſ�`S.�ğ׷Y*S�Ǧ��.6�������6'<��/���L^/~ڞ��ЧNz���-���?�JU{��*�<�-}Gg~��g�S�@�9A?���ʔ��8��ܷL�8�n���]��T�>5�#�����&#��T���~b����~۟c�����4+��³�d/���~4%�9qꗖ����_?�g�y/�-F����Ex�u�vɩ�� *�D%��?��T���Rk_��7�n?�)3��w��+SC/�S�#��XJ�H��C��_n�J��Cg�>5v�@��M7v�D%�����RI]��V%���gA�5�'ݚ�������6ᜂ6ߑ�G�C�t8������-��Ϛ]9}
~�C\���<�%*)B�3�%i��D��jO����yO8���S���zTª*4���<�; _[���B�V����]���g���ڧ镞D�?�9U����1��A�3�G��P�G��9�N�S?��f��y7��l�Z$��o/���G��D]`�����W�+�)���m�����ڟƺ�HK�����8��F �Ot�\�!����S���S��Ꮮ�5"���+���I_r�ѧ�7<睔�$�Do5R5��*3�v��y1�}��_��Sy&xHp.Y�5j��>҄O9�?l�P��q�g[�'��S�	Ч�ꜻo%p��3�JR�*���w�C�{����.�"�d)i*S�8�����M�>q?�oS�৯�����Up��/�Te���p�_��|xrfQ�?�:�J��ٚ���U5�Э>���W0>*��/.J?D��7Sˏ�Z�p�Ŕ��Gϝ�e��i�O��"�Tz�&�FGNj�To�Ph&RI�HU>��%��ȯ�_
��!�I��O)�sΙ�Y_�� k'\t?&���%M"��y���j	���x�O�c!���p��P��6��������$5R9?=}�G�/2�>���l����m~�8�ō���4�<���cV>ף��șS{8w�n7Ч�1�Q��õ�H�H%��������j@����'{��G����>�Q�Z��
BK��Ӯ�49�ϛ�d�,z�Ё>�����[��8�{=X��Y�S�e5&���'B��~�cɳ7~�3�?Mq���	�����S��G���Ss�uqڟ�L޹�3nn��ǵŧ=�RIO���$`�i�eJ|
H�=�3��.��2��
���m���G����5��u���N,���$����ՄJ�=~T������c9�*3\�^{v�<�}F�?0����S��-Ww��Fg�r7!���e�?|m�0��&]ד�����߂��:��O�����^��|��z���}�T7=��q?L������^p��=f�f�	2 V|mQ���P�?u���7y�sKT2h�2�j0��	���G��!�yF��i��ܷ1O��wR�>�^��p{d�|�WA�G޸�
s�_V?R��[H/��s�x��W:�R�U�[r>Y2���<�\P�^X�%m��;Y��O��=�=�����1TY��֩���{C�玁8���Տ�h�{ ��k=��8�a�`�a�͎m��;��a_���H��Z�����˨r�h��}3O��#��'^��C��0�[r�������F�~�����D�)�S��7w�s�)]�|D<����gZo�������S�t��.89p������3�E��)x�c�S�'<�t�ڂ�j���ψ����BA��C��o�
�g�!�=s_Z����S�fNM)S}
���^�Z���`�7<͖�kZ��ߎj��c���Ϊb�qsE5��QӚ"�—J�ꍂa������8<M���=��LJ�9�*�O>�����W�_g��j9�ődZ��i�,� l:���kF��9�f�o훹oL��<5�O�P�	h8������G=�*x��2A	�T����W��Ԅ��4�ۮ�%Z�`�ԡFXT[�j�>a(��;$�|�uy�է���?�QCN�]k�ѭ�z�.�Y��;e6��tN��/��|��<Y��bc�ϛ�<�N��z��e#���qXG[7��������Y�!�Q%R�6�L�?���S�D�����`�U�U�;*�W�rYõә��35�&��}vE�z�}��ୟ?����
�����X�p�5�>���Sf�ǵ�*�^5Z��σS.֓�����y.}����w�<�����(S?�qM��=䀫�_W����6Q��c�\2�Զp�
�Sb�Z=&��z����`��?u��=\�?�I�[
�`��7Ř^o3O�gaM:i����7�i)i�Ʋ4����w�M]�d��h:�B��jtvOS��3���%*�ޔm�<j�"=���cS�H��z�(*�G+��T�]��T���6>���?�>g��F�j��P��<��F��[WLhs�ܗ��[��E�%�*�V���x�[u�&C���񘑨z�Ea����N��r��g>��I�lښ�����M�$��ΩCX�@k&���f�J�\��bֵ�{��i�D����=/����J�R;a�#wāV���L�Ξ��s4�;j��!�d�G!��]3��C�ЛԇS��gb�jV������&�>Ч�|ީ�`(#��sġxs��S�O�˔�E���)�D-��BdΦR�Z��z�^����2V���Fl�(ޘ,	�O
ЎQ�������>"��2)MF?ؓя%�<�f�L�)����V'`�;T:����rMM��kk��|���$�9c�� �¡�(!�;=���k���RY����x�b��|�2F=zv�؊�2�B�/5w$B
�����lS?��J�
!ԒѓM���̵����#�����p��`��B�N|m�٪�-W���1ۿ�?7�F^8��s�2𣈪����)骋�*Q���гƢ��SYRU>B>��d[o'�����K�zF]��dN�[a��㟺�A
*��1x�B�8W橥Io+�s��N�VN�U�Z�#*�7��I�$��B���-�qP��шuW[�d��o�9j�?et{Nl��eKS�"�S�KX��������D�Y�rx�ָ�\J�$	�2§��cVբx;ӳ�,U����b]
�}��
��*#ޚ==lʔ(eJ%���<����/iQ�‹Q��
��j�tObW�һ�)X��*_����%Y����Oy���u,�q
�ǰ�S*�iI�ڒ��ģc��ƱI)��R�70ݍ����j�[X*U��k�@�+!U�.*�Sg���D����_Ǣ/Z˦L��}_es_��w)�Iy>��XR[R��YJ��R�f�fv�Re���oЧ
1҇C�k�QO��wd�EWMw��<I��c�ߺl0����C�J�)[�b����쉽�Z�hg���}˞�G"߾�<UKj���
��.��.�'(۔$ʔl*ϑ<�U$O-^��o���6�k�b,�#���`ij��1_%�}�?>�ԁ>U=��5L�W���bäP��.p�SKg��Oƴ}�J!O�ڴ�d��ο}�Cd���>�`m�c�u��Ut��CB���YbY�m���z���h��#��"p슁k��(��IXs�egsB�}�{s��C��4������.�2S>���	y�z��%+���w4�P��́�}��#�z)ی���$
���.Nm1Ra/�I�QL��d�t�����t{U�i��B���]����:y_�
Y�Sz�2_۲Z
AL��C�<�N��j3+�m�>-N-|�i��ةe�>I�V�(L�8�k��J����*��dB��`��V՞Đf�w�%C�(e�q��qëy����(h����ޙͯ�2���V����$#���Is�rG�.��S���P������W�S����������j:����W�q��K;�����џ���/��>Q����f7[}�$�A�����tO_�:�Ϸݚ�O�ˎ�>�����jl"[��t���ڝ}�M۷�;Ŵ}[O��ߧLQ��N��z��6Em�&մw�آҙ���U甚s�tNU�Oa�*���C���b��1תH�xS�j�+;���O��-�m��ẊZrR�UT�}�����n��5�+�S��D�n��}$��<)GJ#�۴���%:��l[��ގ�HY���L�)��&��K:���ξ�9�Hre�:��#=ߕ�}�l�V[X�����d6=}_J͈*%=�lݦđ	 >�\
��Ğs�w�h�N}��}澽�oS��h�ѡ\�^=o[�t�Zs_�R�$�i_��N՛��BG&�LyrЧZDא�|��JT�T��'*���KU-�c����Ts�E�߷�
S_�C�����)��ᡄ��S���
�?w�H%��Ч��E���T_�E�����Jc���j��;��lmzG��l�G�y*:a��N�myX���[�ί�m?'�}�]�
*���r�i���)s���@ԣ��m���I�C�oF�ğ�<�u��f��ղ�O�wd��橐
P�V����^�+_��>S�*g�{�]��{���%[]2q#��/ݎG����g������[��"�h�xs�ξ/��o���(�3�e�DߜL��j��E|����U}[y'`)Q��E�����zsXޝXy��}���b��VsQ�{�9�v�jD�ũ�XƢ/��-f}םj��Ar{U-y�h�k�O��e]#&�T�����FL��������T[�pQ�o=���c�_;����mJ�X��<����)���U�E�sJl=+��M���������]�J�S![W��KA��N�;�=�Փk�7�)�w�Qd�/���=*��/�E?�S���R�Q���Ƨ��u�U��1/��dV��w������,���Ju��`�>X��H�F��ޒ/�;��Omt:��w�T*lMye|�1w_N(��4��G�~�+S�Z��ՈHO�A�5?�Y�
5�q���ʯ�ކQ���֧3���b��Q��)۔l�����4U\���������-�<j]�Q�����C:�`�s�-�X�5#Z�:����H[�O@���L��<u���mj�у�N����BB8�S��M��3���C�?�%����._HK���^��F��0>q��(���;�Gw�P9
1��
���C�y�8���Ö��N�@t�Ө���R��}�����
#��;9ԯ�����Mj��P�����{X�}��SƦ��ќ��
������U�&�L�Z�S�:�b;%k{^\�S�F��R�a5O��U��%[�rŞ<u4��t�O�ة V����P��*����:����d�?�9�h�!"�*�d	>[�WHO��C���8�V)����od�Eߔ��J6�yjK�:��<� ��1��/IF_�S�� �YH�V���Nʡi�_�CrԔ6��,��#��*o��*&�Kb��9�v� 5O3��,>}�@��S�E#5U_%j� ���3�-݁��LF�Cog}m�E���SiB~eUg_��3S�����V�Z���ޙR��Lؗ̾����9��	���v�U,��7M�6[���T��b&�7g���%eX���b�aI�!���yȃOt�7`ќD�qe�Q�R��;�D�D�Ѫ�Z%��a�R/���۵.��O}m���ھ]1s_U���
e�g�
c�S�9($-~�n>��?�T���XΩ%)j�5_��e�m�]��SJ/8T���O���Ŧ�^?I=Se[����|���N��\g6���-Ė�֧��8̙%�(y�=�K�Es�3���>�	�t`:��!N��CP��1��X�6���������6���b�C�5�`̥�rY�;5|�%�� =�G�%T5�Hxc�Ԟ5�9�d�t�V�o�S�?�*��X��^3OEA��]4�/�����!Ne��Ur���}]Y*�'��O!�Ƒ
��'䧄?��>��Jt����T�RΩ,���E�I]:k��̼*�T���6���6U�O�4��0��?�"�n}���1�So���)�/1��	��L�w�m�
�Jz�
�!݃=�J���;��}�d�����$3O��'\T5A���c����:J�Lļ{���m��~t��":���8%�8%bg��ANa��d͚ڵ�v,�a�R�}1�D�u���/���{I*N)�������kH��˯ҧT��̸k�l@t�����|�Fx[v�h��l3��Ω�}�23��9���jaoĢ'�4�4O�f���6����𩄢�+�<��B�!���'�s0�z6c�v�<���4�d&�C����/MC/�Ӱ�b�4@�0O��mM��|��
�d��!��Ʊ�C�8���V�_μ�J&�Re��Z��3�vo��q�>e�R��x�$ICO�SG&z;�u�mA�-�T�ZCa���Y3���J�H��
[FJz�ZT!D���dS��|����]HU5�$��[�N��Jϥ��P{�Ծ#=�l�8%Z�Z�$��<�3ѓi�D�/��R�M5e�xڄC_"Wef��d�v�Z�0O�31l6�C�	�bP0f���8�W�8�Ԣ1��)(u��TC�2O%�,�(>��7�V�Ƙw}ES�8��g*-�}j��R���!sƩ���x��_Ǚ+5�w�,e�S�,uy&�n���Sq�V҆��<%�yJ��������q86t��o��1��>u�̹�8�~I&�8��F��>{¾-}���>z��{�S����Ւ�JD�dt��S�:���|�>�E꫟�6mdvJ�G�j�����Cۦj���ߚsʘ����.G�z:g_�9��Sk,��I��8��ד�n�ܗ��'�9�X[I��ӧ�9���'!�Pa�xS�y�Dʉ���8%��3�U[�
Y[�6g�b�ߗ�F�/��'��*�l�S)Z�K^K��\s��n}*.!c�G�34*�!a�w��Mж)�2��HC��Ob��8��v�)���JQ�*�T��S�'�+W���'��ܧ�5�ga?��ZW)�C�T�F[��M`�xc�W�?U�hqJ6�'�t�1a�����B�I���̩��O�p�lSbD���T�(�E���>k#��C���v�\DLf{���V���)S��M�Z�BaKJũڄ}�����������ϻyj�E�j�t���t��#�X~4d܁SX~�>7�Z�8jʊ��s0N�6۔QS���Y~��#sJrTM�Y&���vY*����Z:�v�޽����>s6��J2��m��&��MYr �Oe��P2�u��PL����m������e����w؎���T�j�Ne=}���"��ξu��ߥ�oO���/�p��j�S��3F;��O�}*4�s�y���N���'���tg�^���r���T������0��ܧ��c���]�ҝ}���z�P�_�2OB�GMq� ��j1׳���l5��b�o�$�U�~��<┈O��?�������_V,��LI�Qm�"�bZѨ
�TȷX�*J{A���AmDPu���H>:�����(�$p*쎤�s����LtY��Kq�p?-��ة��\.iO���}�X�������"��)�P}j���:��U�P�X�v�$�I�9��u$��<�sjW�6eJ�L�Xv��N��'J�P-by�T�<u4��3O��H�����ԧZiS�1X=���r4.<xG҆>٢�%�(�i�"��I6{̨8�lg�M��֧|�>�.r��$�b�ӷ�Gy�>
����]�O��W]�{[�[�P9����h'gޞ�E��.��N�fX����>���G5��-U�N�t�@I�-���:H"��F�S��T��t}�c���Xy};�ݓ����Y����?lS��j�rO�'��Ti��o5�����n�3�	T=}y���������&u�ÔY~�>�q���j�=�#
Sf�
�SoA�з��<}�*	k��8��NIeξ�<�bѓ@�]�(��ռ���B�b'o��Y���\�^���U����\(��A��Ҵ���׺ҦLm���m^"N��Sz�>�Ჟ�0a��ɾ�5�iжvS�P��}���)OJ:�b��F1i��V�랾��)Q�Ԯ�첔ڣL��7��O�?�&O��w�&���4}�>�fY��&Z��u��R�X�+I�T9w�&*m��z�dR���9�8��IT_Y��m�Ҟ�c_B�?�'OI>m_�6�=h���O�cG�8R�3�^*��爚
E0Sj��S2�:lMK[�W��nu�{�b�U�U6J:��/�|�L�hYq6���a�Y�3�~5����i��;iPR�E��7�]���}ߎ�N����	�+�m��sX�P55�s_`A<���M�?}I���F俾$ʟ�_���kS��s����nc1��r��Q��:��J-/�ze`�sMH�!S�^����U*Ap*S����$+�۱SE�*���>Q�Sv9>�2�uz�Ч��om4��WA�-K�C�ۉ�u�DbR�"H��6����>�����%��U^�UQJT�'Q)��aM�"�J%K����T�J��q��S��-��e��]l�yѤ��9����,��4�
�S�����I9L����Lŭ��(��n�h��K�yw�>�1!�-
dNI;]�M�/��/{t��#�]��e�<;��[8�O=��yH2'�V��1�0O�/$*Q�Jv$*)���D%��T����:�6���*�u\2e(�R�B�)T�~5_��T�5�k.��Y1����e_"A�Ĕ�P"�吥dW�vAJ}�H@/=Sr(S۔��S��w�K{�>]�K.Ne���B9B��}!���.}�ɮ�XD��R�z�(���.Q�C�)Q�+�l8�/��H��qdIk1Ѥ2��#TɸV%�\%Ň�e�D�
�\����9?D����B�5])B�5e,&�˪�m�aj�:QY���u٦�LC��'�4��Jc���������7�g�gCiif�|�~]O��c_����4gJ�T,Ti��$�N��ٓ�Bj}:��fL�W�B%�]/�����R�J������6B��qil0}�XpdJF{���TEE�U����uK�X��lo�lSҋ�Ty�Rz�l��Lؗ��_�Lt��/٬��c?�����'T�}!��~e���/�6�D~��
���	�*Z�J��b�.*US�J�r57�c����6��,�N�":]�80)l�����]λ'��U5T�*����|�l��j!����g*�$ukO��Hr�n���h�k�S!�e�V�l�T1�����S��1+�t���}]m�i������6��&3��)Tv�h�B�+)c��?�.VǟU|��APW�:��a����Eg�U���ʮ�Z�ʝ-�?�f6*�Rf��3ze��K��>�rW	SE��&$�9S�������5W�z�Dd4�����D;(o�+b��䩆��ZJo�]�77��)Nd�k/޼�o
Y�X2�_��_�JOLN�ʢ�����A��ѣ�0R���O
�j���]^
������!�_H�$3XE���X�g������wf�g��1��EΔ����N�*z���*}'�8u�c� U�D�C֫�B��O�bX)��R�bD�8c��'%Zk���T����J���j۪墪mͰS�F*gn��z�?��R���L��K�*��m��Ek�R�
r.�uVCe�H%UVp�Ij)�7J�|!�ZB2��vB�"4������2յM�Syn��m}ZOP�)ig�k�*����}��f�r��/�M�;�Q[O��>QƼ.�8ejW���=#u3O����W��䫔Z�l��Q�i�F�D�$z�Si�S��AݹW��5"��n��k�|\�=_CU��T^�Ƣ!դT��ސ�KT�=���
г�vC���V���.�z<��@�LUH�Oc��Z��Z��Ig_�m��Q{�����"�
�T0�e��H���5�H�ڶ�N)QI�t�Q�Ҫ��7��3�RIM�wF�g���p�սT�ͯxY�~��A�v��*4զ���D���b��J�E���=df��q��"7�&�ŜvL��Sey^�Sz¾�c
�T;e�8�̱hm&C�y
e�m�!V�Y�T�.Ѯq��\Ӥ�*C�,����B�2m�TU���E��.yb��8*њ�n��]N�,O��)=��L񗜸X�ʭrU�]9��'�U��LeH���t*�`-�e��P:�����*uLƗ4�%ʕ�+EK�ʊw��>�2j��4]��2甩v��S�ڍF�y�b�c�C�u�V���ק�1���ʏڦ}�Z.W�ba�MM{�J�Z<��D�D3y�9������%���'y(�װ_�Ң�֪���?>5��E����b6�Z�����É�`z�wU�Z:�|RM|{��>7JI�2%GC�U2w��9[_Ѷ�����2*��s69��!H���s!0_!m4e�R�Ȯ(U�_2�\>��d��Ŋhb�?��N��$�}�/�DG��8�D�������Ry�+��M%�T2�i�܏u�X�zۜ�C�m�9K#���BIM������j�Q��yb̖z�,�
�E9��zۈ��J�\������i�[�:�}O�n�U�K"��wl��u�
mD�)k��?շVUd��B�E�I�Xޖ]:]~YV�6������ts��㨴"눣�r�RwT�P/U��2}�uO�;7�*k+��G��䵡�%���©F�.K1��$�p�_<����'�ϖ�JØJT5ϔT�Rʴ��<�3pj����T� H����5E��6]J��;�b1r�����$����@�TC7���nj����.�X�Xm�Jj��!Q���$��o���.��*U��&��ĩ9�J�����\�6[�y�}!Dԋ��g)Z�N1/kp����t��J{M��I�2%�)S�I��(t�N��┒{��C�J$ɡ<��W9��@�J����������n��~v���N��˲�EG�����L�-��G%F"�d*U5��T�DJ;UT�|�ZhUҕ��T��[?���$���Lq���k���@�y��1-N�V�L�*f�SU��)�MI=pJd(s*)s�
C^���M�tg���|}�Te�����A�A��ލ��/#l;�?J�*'Rҭf�d�]~��VV�X#��S���|K�5��-�J�v?��1�J�P����0�4E��H07׻��[Ci�G�LK�
��+E���L�?XY�UeJTO��1U�.ی��2э�講��#�?��e�e�T!�(*�+�^*G�M����Rt�e����*�ô��/��`�Q���'E��W�bH���8���B��ž;�`�_�֗~�q��nU�÷`�O(�}�R��%Qy��,mp;���'�gH6�s�3�n�"ݨ�EC�X=}G=n�S���!��/	#�\j�Ҥ̒Y�:橦����\)�(�~J�yE�R�t��PPz�bn	�s��!�ƥKi)�%��Xzm�.jj?��t(U)W%?g�_*T��~�MU�J2禾9��Lut�	>��,���*�`�S���m�k�[��'f”��ʗ;0reʶMI>Yb��N��)#}�(�o�o.Y��]�<����)�)韍L��Y�*r՘D�hP��ָ񤿯�nHTYUym�F�=�Jr�Jt(Uz��!ةDt��y
�E
��k/x��x�࣋�j��$;ӥ�`��
F�C�eR��\��¶�L%��{�H>��MI��'^q*D�2�:O�J6S~��ũ��{��B3�,�ߠO��"۽x�����]~�=˛9MAg:�u���T�ibcR�c�X�š�JZ*�)�Դ�T"�e�N��/�˵��[d"N@3��߶&eLƷ�n��W�b1[_Zqg��D���ۦ���r�>�ĩL�H�I��#3��vJ����}�o� ]}�|���b%L���+fPzvn�	J�qC��YV�އ4.]�j�t���]�T����j�S����n]:
q�>�
�O1LM�*6�z^M%
��泊e�6%���V!o�o�@�\U(	����D�B�ʴ�\oq�*ˋ�Y��Lя�u��g(�zjR�VB�*w5�}i\zi��#�%�.kǖJ��ӥLO�^���$o4o=�y��DY�e��v��V)���owK�t�Ie�[)ϢC�%�LɦL�mSRέ���I1g���貋S�9*9vf�=#_H3��9��r��*?.~���#+r�i��b"?q[�D|.*��h5�6lM�X�{��g�Z.IU�L��z��s]��~����ER��[����M�X����%d�����홒J��^G�mS���-N�T��y�`��� ��B�𙧚��g�S�bv|U[���.��Ur*k�z�"QIC|M5�|�Z��WW��E(�J%
�ʴM�oƉhjU�W[��)��+�k�j�^ԉ~YJ�41If���2%iԔH�6��)�N�ĩ|����e��%Nə�>A��k�:1=�
��)Tr��*��KTR�*����f*�uqF{H�=���*�JC������_�L�/^�,�4&��	��_�4)w���L�U�XQS��.��۱V��T��y甤�S^�GW�����TR���M���r������e��cF?��fU6�6A�H�����|�/K�*����p�|�8ձ��+����>�2n�N�W��fm���qx5T��V�������b�?��m'�K��W��*iS��LJh�O�.�8%y�F{�I_�ަ���埒�.?3�^��򓊺�i�$�J
�]t���D*�{���oӟTt�j�_��֜�~������:�2�Rٙ�`��Tk�F
�򉯛O�gJ�iS�nu*mS�����9�8��;~���[_F��J>}J��D��[Cq���g"���TR������-|ʔx+�S�ѣN�)���Z[���n��Uk��,��Ywr�u3mJ�z���.����ʏN��┸��Td�D}�\xL��a��������֬�R7R��H%��^*��TbU�h�Mo���yeP�
A�Q�:+��­V���³�����'eJ���^C�h�TYŇV�y���@t��NɨyJ>X�2G���򫫀YP�\��.�F?q��U��P���?��(�u��N�m�T��ל�Y�"eڃ�}5c��Oc�Jr�`�R��#6z�̊ҰJ�%��R�����'��o�z��	��V[�\��.e,���#ѧ��l
U�N��Jg�S����J�9}����u�I�.B�TMU"�W�tWɈ�>:�<k|s��t�VqH�
Im���>��R{��B8��%�L�+n���A�8%�P�9��aj�o�|��`���ƈ��P�[�dX���ʆ����8*Ig�'RI��J楒¬(us��BU���T%=e�:i��&����{+��3QO
�KbSW�_�Y��b�VI[k�2q'�LI��O�^���$S�*�A!c�N\z;���'�4O�'�Sc�E-��~Н]~2(Q�TS��F*K��j"�4��br={gj^G}U�B�x�*�(Sͷd)����L��+�&*��&%㲔!S��F]�OU+�К�/���;�=�qJ�}]qJ���2�Tk�k������J��R�{U�?�r�ds�I%*�q%��5�)��8x������"E\ZIu+5�PU
R�b3T*ֶaJle�VD�X��ӲMɍ�TWʐ�:�֟?D�2���ܵ	��%��AT2-QI�Y՞�Ͼx���R����J*�*�iU������L��"�~��?�K����ޭ׉�23�k�Po����vmN�f�M�j��W�SRѧ��)雧}��p?��/JTr��J�8*3R���O̷�h*󰵯vijU␫���/Z��}���\%թ���2�]6�zZS��)���j�<��'u۔�SrC[���jBJ���O]�n�n�s�΢�vQIe���U`]Ii�xU*i���N%iY��TC��2�U�G��׌U*N݂~+g�$c�G�J���T2�II!KŪJ��4*k�fݽ�ژ-����MC��s���'�>�WK*���`���D%�.*q��I�H%���V�d�N%�J�ru�XM����J|ҕZ8N�d>��z�+)�ɠ��W�|/��ЬF۲����L�1C�tlS����SrC�)��OݩO�|V�v�uz���H%�v?iy�DF~m;�ħU��,�h�(VR�����;_4������h�խ�Į�k.�&%^��Xiz�v�%U۔���^�8�)A�jrF�z�D%�eQIS1�-k���'-�a��.2�k�QU�[�`)u�*{Kz�U�.����|8s���d��FIhV��4�sK���:d+:Ҧ��>p���Sr�8%�5JC��קd��O�\Trm���R�\*����]:�'����j�M��T�@�7Я+n�����җ]�[/6�=���=�\�IŬ���z���UT��2✒��>A�����ޠt�E��)�T���F*i�T���e�P%M�J��*�>�\�vb��N[�j�)���(���Dm[3��q�ͤ��m��N��T攌�S҉E?^G�j,_.����YTr�D%m�J�^*�w���2�!���my�T歭�J��|cme�ŗ�35QK�4)��5����3%��)y�8uBik,��Oy�Km�� *�L���8*i'RIsv?q�T�O�*�0�5�+�e�|�v�3�)*�@����:�Sʵ�Z!YѤ�����5+}�gJĵ�xO_�=I��
,�S�U,T2��.wJTRsN]�Rɀ��}��o�'惻z�kWi��sJQ1\UF�-Q�2�x�Sr��*�i#�9�L�9۔�S2��.�)������F�[�ϖ�E%Ebz�9��;=y��R�Bl
U�4U9_S�75q��9E(�U�i\U.
�kn5j�ެV�>��%5IO��[��hn���sfN���)1�A�O�l���IT2�.��Q��
8楒���9ʭ��X�C�����P��'�,g)gP�e�Le�s�TS2晒��*U�O�	�┠O9Fp�0
IT�������'�v?1��JǠW_3�㸅Jz��xD+ϵ픢�}וQ��8�(�8t*P���Le	�V��5����'���NIEu�Õ3��c�п?�G���V�c�}S�#�8mۋ�rYl](JT奱�j�߮��t.���7z�Rc.�l��xWNH��o�݋~Q�<P@-ES[�2#y*�`Y*�1Շl�*�;0�(�v��
}��2�A���wD��n�S��5c�����ƌ~ҕ3�K�}XN��O
;�T�O�����M�L���,�T0(RLTj'��~MګЛ�L�,%�n>9��'��>�;������4O�'�S]A��.�@��VL��O��*�ԛ��k�4��V%�
R�ĝѹ�O���_Ѝ�U�D��R�d��OnS�d<pJ<m}2/N���{���6p�pQɳ$*�V�dB�פ�r�8��j��k��t�(�:��D�j==���<C���ĩA)�xk�9���>U;pr�t~r�E%OW��J�J�u������
�	�*��_�r�[96
��ș�B���+Sr�sJf2�}�>�a 6����g��R�%*�T�o�T/��3|��C�
b��]n���L��j���+	݂��>�F��+��.��ʔ����T��?;a_�ا�S�#�8���(C.*q�T���U�x�@
_H�	:�M�Â��F��T}W6�������<5ch7���k�okm֙C<�.NqjD�������.���9�`�>y��ZKo��������Tyq�gf�[vAO���S����ZՌ(���IU���7|�pTdu����j�0Q�͙��wl*�'֫@�7�>eJ��L��V���>��\�ѩ��U.*��T5;�}�~�Q��U=�*�b��ք��yߝS|��Pe��Jsf�~Yگs�R�U��L5��;�Q�S2"��O����1�U��ф���8z�.<i�K5��� Rq��os�-��+���[W�J���eJFfW�������j��Z���1]v2���z�J=�×�W��\U��ݢ��N7z�WQyY-擢�ue�8�L�Ke)q(SrR��.�ͮ�xU��u�)�����g�-U*�H��л�x����	D�Kp�����}��Q��t��
ᒃf��eʔ<I�j�-�S��~�D%���Tr���������}K��Lt
���]~��q�]f���nYJ�S�䪞>�K����O5�����$*�1R�#M�Q��bV���=���>�A����W��ާ����3�U�)�E��3.��.�8z�GƇ��O�륚�Z�A#w��Z���U�V����k���C��I���Z�m6]|�
�T�r�'.]�՚K���R�ܒ�41#�w�>i�Oq����
����Usѻ#���9B��o���&�r��Rc┠Ou���q�rk���U��[c����޿��S�կ����W�>0P�SvM��M_M��,��M�EΩr�)�X�O�:?2|�~�,O�S5�2�:3k��]O�xP~��]s%���5�e�0%����
����΋S��T�8z�<�E�]��sZ�i���h21��q����~���s����\e7ZK>!j�]h���\��U┠O9��:|�&�[{�ɯR�	U'��Y���M��\��̉��e)U�.�Ӻ�9U[}�sL�ܱS8��:J%��T�.�W٦���j�|9v�T��n}�H���*�qH��i��T��:��iF���R�h]`�|���+���[�w0tK�Uy���v��4�)�d]}�y�<�Z.Q��'�;�RIO��P%o>�1��F�:>_�ߥL��6%���%��O��Ƀ~�H%�z�`ӟ\ᨪ]���	g���g!<ꖒ�V>�R����S�>5qȺ�~�	3ŵM��v�T�k�y��/��FK]w�<�0%���[��	��D[߱��=�r�J�CS�֎�wT5���!b��3T�:�d�tu]��}�)��9�n}���Z����ܣ��'nSUmIA��we�b��p�JN��)y�8���qzS���Ֆth��J�Ъ��X����w��)��s��뚛B�:{��JnR��yBUm�*�D�6pa�9Q�>I���)y�8%�S�㢒�U*�E���Ԍ\弛t�)�l�uZ��9����L�
Ω�g��ܦR�֪}�X.<�Uɬ\�]w�4t3�����LY:Z����ra�P�+�Voo
}�1��@��;:��W�L����|��8(1��F�	^U�]Rl�4��+G�d�3%/�}�;�/����*�*�C�ݘڼ�LRޛX<-"�;�����[��r��då��U�ʔ\!��O�/��%*�#��=R���]���e8e�pBM�ءޞ'�}��M�i��QS��8��>58��k��3絗��Z��xO[��ٵ{�OivU�٩�ߣT'K��ئ�wѧ�/�8~�Z�Jn���Wt���U�Q�����j:�Ǫ[�?���#5�eo�FЧ�.�$*y�J�٧֕�b5zHOJH��~�,]%��B���	ʔܣ��O��8n#��4�p7^'r�\u�8�(.��^�����R�N_�Y��6eʿe�s�=F��FO|���B���v	�Z�RC@�4/�aoV��;�*�}��s�vx�H�w���s�j��Eg~�D�xWezI�|�������>u
/W�.�W����qZH
�MN(LUu���<�̼�4~�=e�?A�Z�B��n����l�Jn�DM�K��@��/)�_S$^^�>��Oȃ���ѧ.�L�E������3C=ӓ����
�R!�r}`t��a��>u��g����oq�];�7���
�*ާ<����rϚ��|��F�
�L�;��*���/�,�@{����f�wۻm��9D��!x�
��9��K굛3jnʁ�P�^�L-�O�w�R���jh��cr��Jn��?n��%|��-��p�?`���?;�me)�:�}�^�U*y�P�1��q�z����6�}GC����zm��~I>�!�笿c�E��\��8#T�?��X[��j�
��ы��#�~Ϫ�߶��n��I�[�R;�SO��™1!Tɔ:6j�j,���;y�t!K<�{�:�X�䰧x�+��O%��K��pr|��F�\�^x��6g�g�m>��}�H3/I�W��}�e�W�dV�*W�
s��h/�Ut�

�ަ�Z	��f���	Ч��2�J���Z��\"Z���p;���WܷՋ�bP��:/ri�O��es~T�iǫ�u2��A�&�2�Z)��;��w���P�O���wɀ;i�j�x���%�G�w�?!�꾽}��}ꭹ�Ten��Xl�~����.-x2/钹����g�>�3��TU��U��n��%w"�/�w��~t=x�y�z}��_׎�kc��\ox�"�
�w�ؿ���q��v-�1�ۼoē}w�����w��O��+��K���>���7�ƈ�W�O�~��XM|Z��֑�	U3��'Rٯ��.
�����Z��{%��N���A����"�"�d�!�]�I�-��%-�}
�� �|xa�}
�� �+yp�O�+A��W�>�}
^	���)x%�S�J�O�+A��W�>�}
^	���)x%�`�,Ŋ���IEND�B`�PK`x1\J�%����assets/images/landing/04.pngnu�[����PNG


IHDR�S�Jg�tEXtSoftwareAdobe ImageReadyq�e<%iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.6-c148 79.164036, 2019/08/13-01:06:57        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop 21.0 (Macintosh)" xmpMM:InstanceID="xmp.iid:46AEC1AC0A1711EAB39BBCF49119F7BD" xmpMM:DocumentID="xmp.did:46AEC1AD0A1711EAB39BBCF49119F7BD"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:46AEC1AA0A1711EAB39BBCF49119F7BD" stRef:documentID="xmp.did:46AEC1AB0A1711EAB39BBCF49119F7BD"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>luU(�]IDATx���$U���.W$
i�0" *9�CƄ.̫"
���dZ�ǂ�
�**��i��+
��<�0830��=�K���S'T��������ط�©�S���7�O?�t2%QJ��0M�>(~�_��u�IR��%}ex̟��{��L�gG�x����@��S��4޷bw�Ȫ���9��>B0m��۶�B)X��X����
�ٴ=�����Rs5[!�իհ�e��TUҩ�2<bJ�>�Q�������qd^�jܲw�O�
�Q��M)I�Ɲh�婱^Ӱ�;��2L���?#|̨M��]
D[�9_��LIe�bJ3}�t'Mi1ɸ�����%�$	
t=�Mi+WX��JՋ>�bJ�Nz�Q�gI*K'��%iBd��!�4j�T5웵���}�fo,�.~��'���?��ѫO�01=\��H�# Lt��I�-�ӣ1؋ڻ�x����9r��XR�p��ڇ�'�4��T��=�V"0l�������I�l���>	+��*�VR�Ǖ��R�a�.ބ_V��)�� �-9 �%�i/N(��-�VU���J5g���)�+)u���s�j@}�G�s��4=�2��qVIjm5l�J���d�T�qU]խ�[J��[�Ǘ�W�+��0l!��00vM�VXڬP��&=���jDX�T��8;��Tڪv��D�nZ����CL�B	a?���w3�Q˨���6jK6e���2��*�GRi���Ri��2a�=Of��ٟ��T�Z`8��F���\ڔJC�n_���TU&��2z�j�'�����(E�f�3'��}l�7}2mz1��Zy�ۧ5ҬLUe2H*���)�O���}kV�Q�i(幑�S&"M�E�L�J`ڛ�H�E��4�7�Вʸ9��WL郒R�)����:@L)z1���D��x��
+wW�*�J?�)㥤Tw]���@��Z������=[UXUejI*M]�&�S"�J}�=n�d�����P�"k�0L�UL���~���OU���J��;�9�4��E()�'��Tx��=�0>T��bE��2��V��Xi�]�O@�\RiV��)ҧ�tW��;��(h(�L�)m���5��ڦq=ۼ�d��;�לp�J��}��R��������b������<=T�\����1��.P�o��WUU��I+��]OiJL)sK)��qRK��54�w��z�
�81�_�ffZ�ԭ-�DU���J�'�/��)�������}�p]�
�C?�a�\JM���~	+}vWiPU�l�J��hUS�a�+T͖R��s�ݬ���+0@s�GS��ډ��Ii4P
�%�uW�_��I%���H
��tN�9gJ�b���ƌb5F|U` �F=h<u�b��'���+=���/�x�GR鯞һ�Ra>æ�T宒�M�K}rN��R[[�)��8��TU&��2�S��S������R;�L̈���SpW�q1+�<�VU_�Ӳ���lP?}Uz&���G=�Ǜ�S�;�RT/{�3�j�t��T�cLq�dV4��r�ԝMQ`i�4]+	+Ճ��SU���ʸ�)u�S�t�H1e�n)}��\6���ئ���N�ެ��ОFr�4p��͏�*V�z��rWOUet?,�"�jv�Z�>��^_�Rz��^����*
��p	��JlجP��N0s��sm��u���~T�>Ksg�L�U>dv�������R]\�ڭ?��՟�sW��^5 ג���^*5��D)X��)1iS"=ST߆�^���R�
(�G7j�@�p�fE��Rˀj6h�����y[�]�V���ҋ�0��J?B~��S��鷘R aV�Q҈�"�>�^r���ͬ�vJ��O��Я�Mi+1�J�q@�PUj�XR=�i甁�)�JJ5%j���Z����XǺ��z��VN-3}�
(�k+M	+���BU��J���6!�
��z~be��2���Ed� ���%jnX��Ns�F���Qq��Ru
�Ym���ʸ�*I]aeH*���Y3��5��'1��S+��j(��ҪY�P�g
��z�8��5��ęlU����Ra�Iw�*�{|e�F|U&��2�zJL�ca�W�y�UYI)z\{�[�
���Ֆz{��H�l�fK����SF�W���[X	X�3yb�*�PR鋞�P�Oi����r�t9?�tH��m�ީ;��U\T��Bd�ԡ��Ћ
i줥Y*c�y�V��n�����FU1�k�YU��%F��#U�բ����S�'�TPR��(�k[����������7x���x�LA�a5T�_bl"{�HO�y�g��z�������GV�3�NM>��.�fuWڐY+�C�pR�+s+k�}�XC�R;�J�?�����q��Qq��?�ǿ�N��Pt\ҳ�J�G5e�iK5aM4�R`UUNE[fF�_[���p��2_�U�ARi@O��a�bJ�7�ݤ�[J���F��P�\T��c\��Ћ}eΔZF�
K��-�V|;��a�wa�XUI*	+�E����j�H*���T.��"z��<^Og1�9%�Z���|�M��)5w�����4kkD�5E:K�a��f��A[ga���R�T�|��.�<�%����F�S��Sj�)����Uċ4�R%�?��"��2��K�ߘ�l�"�$)�V�/�4��$�}U��H%!F�I������S"�V���c�����R�*��'%�DQHFIkU��j*Ii��)E\���}*A5�N�fLqm��V�K,{�+�I�ۘ�JI��T�S�T.��T�实2�)�=;�-%�'%^2�.��}7`�+dU����M3
�K�	���*�����Q��8���=���*WMU;ɋ(�*Vŏ��?��O=m1Ou�7W��	+)��Jb*0�M	}�~뮐]g���bn�Uc&�=g��h��g{W�UIK�����J)�H���:f�k{v�H�����SJ��f)e��E�Cŕny`�>�U��^*�-�S�?�������`�O��m�nd�YZ~��x῏���1�~(Јi�D�,1�*%c~O㓦l���k� �:�*�*.7&/LI�v��:zJ�x_�?7�zJȱ�$̧LL)�M|�ؕK��yE���hR�K�=�)����)s��=Rl�8VmU{*h��wi�R�9�>���g�cyP]U�ǚʃ�Tʲc4�����R\ܧ�`��H�b1%㓖i+šD�^^I@��{�G�H}D�0eh�LHU����~ހU��C���F[��R�c��+1�U*W���4��v��R�)�R�N�U.���S�}�zST���
KZ_�[�^�E�e'h53�mn,K�!�ȬQ�;z�><S�01?�z�sCXӵ/�֧2��RG��`�ֳ�<N+���?���ӕTVbR�'[	�9#y��TőJ���'^^/�^
��^R��%��)�8��D�x��)�f��"��%�S��ΊE�YDQ�`jS�c��qQl���D����+�+�u��V|?�[U��T�Z�(���������TJÜzJ�R1J��"1��gJH�,~���(1=Y�E��;Z����^,S��T��헴��_Q^)��<�U)�V�|(�OX���'��T�vF��-��畩�ak�)!�1����>ў)�L��TR
d��J
�o�;\��LY���A�F�(0v*),��JM�.-3+x�Dس�Š/��o�J�+�*+�3:��J9��z�q��5��$O)ʜR�R&��eK���[��+���
�л��}Z�3ƥ��m,< �č�c	L	Fj�0#>�o,�,���د��,��ͽR��+5�9V�`'�J�K��M��TA&�@�+�,*�L+�\'�QCIU��M��R�1�B���%~�Sz�S��S�#}"=S*)���P�T�Q:jX7j�l8�(�D���%$S�|�I�)_ՠ(�S��=Z��]Xj�9~+���X)�*�eQ-��������ƾ�<r���V�Sʃ}
j���X��L�W.���>)V��e��\Q��<z\P�T{ܱ�N��;0yRF�*�X��Y�&0�DU�_b~�-���FW�Ϯ��y%�o%""!ౢ���#���$�����URe�*�%��J�O"�$�Je���Rx�k�����(�'"ҧ�G�'�h���AsJ�OFI�p����+i����82���"Y$
��
I`jPl�������]
Ԗ�Ȣ�_)��
/IJ��̦K}�D�0�l�L�ț�*�|b����-���*�A�5�X
�*q�?��i"��W<�w�)sQ齾OI�Ol���R&���Zg�QHa��#�*g��I$I����I��i�Q&75,�Kd�P��7���4dٸä����5T\(*��bZ�b��X���J�,*�"IM�)��S��}��)N�OXLI�ڠգ�b���u�)}�d�R
e��z�"���'J��L:�$�v�7%*�-��2����+!�����	+!#�("u�'�eW�]UIyU�*�ʵU��TjN.�T�&WMI�w=��9%ߪ���|��)�U1W�Y�$�xǎ�������J~O0E�e)�Z"��rE���+�x
��<A��R�|Z��~��J��JO�j��-
�	��KR��R��4�S����� Cb�*{8+Ŭ���p,�j(Q�;`y���P�,S\=�mJ8kְh���Iei+^�����2������*@{T�Z�*�VR)^'*+m���F��>�\�b%a�)�%:�	SJ�Rb��8ū��+՜���b|�25셊6v���.,�W�j+�ӊ/�J�K�#���h����ZE�c�QUz
�	��H�b�J�}[Uj6�8ާ��b��E��fN)��g�ڐ[�WI)~��%2J�PR��GU�3\����T2(�
���Rn(iy�gmyL3W[	9�����<V�q��U₀\������E�)�'�	,�TsQq._d�O%=E"�*�)���RrM��=!'�x%�qH	U�����zHTԩ�S��ɨ�T�"M�1%l��bJ�pr])�VB���i�c�����]w�*��7�K
U�B�OR�f�v��a�%��|+��!���4���
Iy�_�Oa攒�y���y��b��Y
8����M�J5�o�	�$�M��T��&!��5>,E���R��wZh�>+5�y��ۛ��*^3أ��Vj/�*�(�HG���J��0:�}�g'�b-�������`�d0yJ�ϢR��s�|Ba>�C%�Ŕ��HKIk1;���Hs�+˿�m-�'��N��˳����hi��G��#�P���F�-��%������c�9�Y�j+��yg����Q�����r}j�5m'm���a�%����b�UQ���}{�
(��m��s��j�-^/�^C~��.*��L��1���D�8z�7�-��<SJ����	E����1v8���>��GT��~һ�R1G�A����
9��D[鴮�c%���U�Mb۠t%��V��[���*I_��%�ZO)*��<%��V�D�Xm�������$aa��G��n]&����%�
JJ
S"Vd���)���_F0�ni+��@�P �a�<<"	�V��V	�	U���2:e&� '�G%%̢�S����)�c
�I
c|"�R�>[��\����ɖx\�̅Y�
���7ٍ
�)�
�T�Q*))3��&F�VW���z�O^��儕�h�P(��nh;����w���P�  ðMsfo;�d^�l�[���CΟ���`���L8/�~Nv��Ě�����S�3���)1a>q1>�BBfJ�~�	�}Z��5U}�����*F�)���-)��Rd�y��bB�\w#(	����T���0(���֑��v}C�'^�O��/ŒJ����2��)��S�?ŧ���Zy3���)�j>ebJPI�>�E�|v�x?~���
m���Rh"�k+NT���XXI���
	iRf��*�yU�vt]U�[��HU���@�|�O�H���>I��R�zJd�,�]$j=%�9%�6e��7�._��M霚�{ti�,�'{���*lW�Q����m��4�Lj	�)V�y�*��2*�����<�'NJj}%X�gWQ����2
ۜ�b�2�+�ƒ�#��(���%�]�9�J�i�]T\y����Z��ע+��zJ8y���R ��y�('���Y?HV�㮒�u|�do�&��*�S.�v�
k+N+]k��X		+����U��*��Q%�V�䌶Ԣ��͎"�*5�s���ɨR,�To����q�s�;Vw4�׮�T�x�@����)n�LOq��,mJ����ạ��O�*p�
{�+�����.��FT1�c-#�IeX[!��2ْ��V�+�@E�42�Jռ*^˺j�O��߽J�Ж%!.?�y��ZvmTXP����1��M�W��VpV��E�w_QN�YXO��伓ҠsJ�qH�y��|̒=�[��'��Oɟzv�sN�h�vc�B\�:JJZς��<��W�\W�~+n%�Ld)r��nI ���?}�d�Ꚁ���wG��H��S�cq��?�g�o��%�x�-0��OF�B�R��VJN��~���:�仮�<�*��+��)fw/vN�)��X:a��(�.*����J?d���u�����+SJF	[iӣIy%	E���s0� ��G����͘�x8?�'�ґr�+ws\X�?��*�&c�TE�#�����I-� ���Y�����R`��1�.*>y����y�쮫�p�n=ů)j=�8mAM��\id��-1%�{�)o�Nr��,�A�j3q4/l���g���eT�a��0E"K��i�����sZ	t>��n�Z�x̻��
�*�Ij��.�%�xT�
ǫ*�������(PxE���	����%^��ʇ�K�$�?9�!�?�/d&���)��JA攱�L��gJ��O���|ZY��6�BO���m��"Z�C��0e�Q���^���m�k+n@�OO��>�̵��pW��"ڑ:���=�J�d�M'�"SU���Y�'�_4�M��xU���*q�NЮ_���E�-�\UFI��P�J��b}�%�-
�1���^�[C��Xn)�]�+T	�G
%�@i5�v<Q���]���͘��
����k�B?��^�����η�˴R&���x��pPf��}a��@���U%�qEUHU�T�������WRI�}Q.*F�Me=�6�-]�矒}p��&n
���)f���k+Э�H�(1�qKI{��1�aHC�(�{P�[A^��:JO�K��b�%��ԐW
J����RdfW�>�A@���کU�M�܊����6g��*�i�)�lܠ���Q�x�MRRI{��S��O�ϜUv'�ӝp ��F�[J>��GO�dB3����i21%S.�L�^1�*ߓ֊�1y-g�5��b�w��}@��UN�JT����5	U���7]_xGd	),U�W��@�"A���K���YW�7m�U��
2S��U�y�wQ147��_(�r�%jK��,&@�Oyb�9������nH��O5=%1�7��M�b�Iv�S̝��<i�Jܪ�5���ɼ´���P�ZB�U6��*MT��V����P^T���S�˝�<��b?���uZ�V��(��b�u�+�zG˒�*�DUɵ�)d�U�Ԛ2J��J��R��6�\��C���p6�|�秙��$�B���%~=�c��)Y�3���|woeNQ甤(�'��nTb���gJ^|UV��&�m��*RḃCu���B��j���SS��e���
Gq�"�w_Ө1Br=E����,��Xf�OX�&��4�V@�E9���TykԌ��|U\7k�_�J�?�'��Mȥq�=�R�{t�K�a�R�V#9ⴽ;t�^C~R�=v&�·P����X�}����y�쉝�}�gr=S��n)F����+1g�(K.k{�$γ�bF@��*O�l�r��e�jKfe�Zd�ڡ��|��ŚƦ�t����,�J��J�Pij�$���}U,����4ɅqF����������<��XR͏H�6��?r����uQ��S�C~����`>Zo2ڲ�)^�&uS)��'����d&I��x+1�	�:zk�BySV̞
e�\ջ�0�D���=.as�pPޝ�'��aY�m�V<�|H�Z˅ik� ���*f��l����tSզ�؞���w*��E�2�"���,OJ��T,���6��縞�����|�!=�,y�%���\���
F���f�,[�)VUr�ـ4���󌧮a�D��L:ҪQ>�_�"K>�C�QX�z�eS)�D�Ϸ�œV���FbH�I�b�
�*���/d����V��r_�d���B�]RQ�J{��c؅!�sQ��úZ�[2Y����������S���\�.O�O�Tu1�*ܣ,�,o�T]y2sE�frƯ�u*��G��)QAS�H�PTIU��j.�!�7�2�#�>à� �ئj8�d�VI�3<S��*����<�S9�NU۵�m���I����m4��6d4�+����OC�:��]T�*y���3�@X��Ȁ���]�
�4�J櫢U%����	KLQv.���c����t�tE����aZ�L��M��d"&ˇ
"��X�U�i7�rK [e�L�
���X�[����K<jƆ8����m(�+��$�m��`���qQ���;���b��73�@,=��Ӊ�qU�I�bg�M,UŎ'J<U\�I�1�)�x���Kq�����푥7���ڭj�:yQJ���U2��$��J^UQ%���U�I���k���Ԯ�j�6���HS}��"FƧ�
P��ֿ<�����dݢs]��)tQQ%��50���ρR*����(;kn>s�%�xT��]�RUr�{�`�`�Ze���3k�GRPb�4!G����jn4P����:'��bW5�t2��@Y��"blU�>P^U�������TK;d ��B����5SU���*v�Py/��  '��*Ϋ��\F�$	��M�V.*�M���U��f�l��vJ�F�$U���o��fj&�Ļ�ؾ"T��l��6:���
��Z����*EU*��(��i�5f"K*�BG�'�E@�!#ͪ��5��̜-VT���Z�DU�����U�hi��X�J��r��l,�	�K�Rk�PR��36�Eź�$��a��I&��SIJ�Lm���U�+lhG�LO�JU�?x��]S9�*+[�?>=�������a�%S.�V��D��:�Y�aG�Th7�������HX[��6Wh���Y�k�e������KEy+'�+���a�Ī���I�K�]P�P�ɢ0<dvnGH��%-��U�M�ꪊU9q�r��xR�d��'��̨R݄W��"�(��՞�:WZ|ͨ��=%n�`���
dCn0��	VLA�ifS�V�QU)(d��$�����ZŔ�l/�,�����1�Q�?e�BH�IE�֎�S� ����~��^�O�V`�tJ�U�3��Q_'�.�b@��6��$yU%I��J~�f��$�`�RQ��2�������I�L�*)G�L������P"k'�w=��y�m���(��£�4��$��ɘ��6�����ּ}dSLI��06��>��%�\1�|>&��R����J��
a��6�R�ڑ2�v�4��#�x�檪�ь��U�G����#n.��
fF�@�$�Q%$�$)T$)�Tș�%�c%&1m."+޳����[�8ddW���IU
�+�*I7�(K�sT)H������&���][ޟQ%�K�$�� �	��"C�!�R�Nc\)�������S`8�cG
�U 6�e:�F�꿝T��������T����1�*T�p�TvS��M�Ro�4B@��QL�"ʾK��L�W'x�$Q(+00�)�5�2
%˷�2�_PA}堪�/V|�J�U�Ĩ����M�l�>��0��{�R7?�4Rv�22���:�o��3›�B
��װd�Y��
�*!������U��0���)ҼnTέ֛���c�uӒ�YG	�F�8���M�/W;�Ĵ0x3��cV��+ݜ�1�JlP>-K��!J�-̚��eE{:�J�Q%qs�tl�|F��7D��\�����V!2�bbz��N�j�_�I��00����5����
�N�O.jF��TQUrvqg�V3�|���c�G��?Ib����|�VF���j+1f~�,�=J`�$��C�ST,(���#�YT�e����4Yj�v��4��D�U��$�T���mW�1���ň�֪���VbJ�"�Oʒ
$�xib�y�^����u��t5R�@��`Cy0��i�Y�5��VT�%��T��ɫ�j�t*��cb���UP9�~SO��AL�C�$%�j$�+ �qj�NO�J�ȝ�g(��#%"���WUB�?I(Um^Oq����?n�Z'��:�Ҝ�i����� 2x��R'�=s��RdR�����
���Z�~>D�
*PU:�J��0T�Ҥ*�������kA�<�I�c�#���9���|
#�e��J�u_|E�e�k3�^*Ջ�.S�+��4�!������UG|�����+�$�v��Ki�Zey�t��)�svĬec��,��$�؟$	�x�3j�1������^1,��lV�6㠪F�(oB|U`�q�U�tW�%��ʶ�J;�,e\V(�R��㆒�&�wTIB��MϚbU%��6I�e5bL=!�ZŒ �>#S�w���K2Y�뮢�R��6u#��U�
usƶ����Vk���UI�]�ퟢ�&y0�'q��Z�*5�G&o�啲��k���mMA��b�n�ڐ���d��@�Lb����)I'��pTi�1����Qʯ�Ϟ�X�}��1�8����v^��Οb��%UO�n�R�rDže���J'�J�K%�PV�Xe��ᨒ��ע���M�5�;ՔS���稒zL��E��JBNm�'��2ĒJD��w�4|Є,*0T�qbeEi�#��d$�M���I[	&UQ�Q�K�b:���#��<��SN�D*qf{#�|���t�z2��2�����4�/d`|��L��*Y% �&%ɩ*n
�|e�4>U����v���zJ�����S�u�1����ֱ����-�ܮ̒A��~i�Υң�Q�C"۷���S�f�Jҭx�O>k��JS�|O@D0�5���@F�P[O��1�=IjU��J�k�O�"��w�^�Q
�P.�)n݆������A�-�4U���Q��J+J�'��iI[��k�����2��*��AfV����i��K�N<�xǧ&�
�v�sg�ؕ�]�{��E�
���{��L�|�5:e������i>�&���WN��g��JU۱y�zJ������xU�ČҥLc�̥�re|���9�H���G��8ܤ*�\�[�˜�|�@"��������D�����)��QU<IU��ĕ��'��8�t��,Um.�}j���ơ��tce;u�wO*�2m��d�:Ki���?��`0��Xņ;�S|�j=����j�vUf��r���Y-ٌ�ɧb�X��ҍVRR�N�$�
��t7����r١�]L/ӝD%�:��**�Q�J��$�*m[U1h�Bɦe�2?wմ-�8�1�m���S��J'����F����M<Ij=�*]���K7�����S��s�+��ƿ��C�T`��iڊ�Qi����UU��ʉ�z%��*�r9J�Q�@�V��r��*LA�Ĩ��OQ����{�v3kLИ������
�U3�������D��0�i���N��Fi�:�e��JLw�M����$f��|�Y�7D�����r���$�o���x�a�n�&1�?�~�b�d�RiOp2��E�@u���J��W%5}UڮƗ�T�]!���6�s���ܚʙ�������X'h̰���3����y�IR�F��M�//��$�i�(����ޑ�6̷AW
CL�a!ңU�d�h36�¢��U�'UiW�I2��]��*����JV��c�+�"�s�g>ZXɲ��Š�<�h��e�O���6�b{����Mƙ&S�KE)��t�}��MÂ��dyU:� �L/�PbD�x���,�m�uT)�S��K��E�Ք�m�JO��s,G���_��gg���K�R=⯕RNp��J�����\-Ue,m�U��tmXKnx��|R����-���ґE�pB�4oS���ﳤ*m���C��V�ڷ?�ixn�H���p�I�s�zw&����Ab
^V���ENf�{}U��x���v��z���U���Z	n��‚�Bǩ�����N�2���?��?v�I�8o��Q�М�0�^*�g�$�I'T�ܕʉV�M&@��*v�Q-�t\NrIU�nR�4�W�Q9g�
�*�W�[�'kXb������w�;H܊?��C�s��Ow�8�
_j���ӣ�Hq"���F楢5�3Om{�\�Č�1y�5TH��m�uT1yB:E(�'�K���LR�vr��IS+[G��n�S�%�J�,0xIE5�.&-9D��Կ�4)�]���ҶXUW�H�F�n��bU�I���J�P[�0�N�R��\)y	���RQ#ya������ŀ@:�bw��7��s�4��׾����N���ё2c�E�*��@�:>��?i>��e*wU�5ZG�Y�*�ϥ�T��S��8[�%f����@
hZ���E�;���X�
X�or���GF�,$��f!�JwT�I�����mUEu�ꤛOִ��QP���#^�:5c�\*�U��a%
+�q|�{A�m!Jm(`��i]��CU�Aګ��2/+�k�W���$�~��I��pT�g1����JR��D�M촛��*��=�ӿ�Ȅb�����OXR���6
����h�&�Y1'K��VZ�Jy�Oۅ��?k�Ν�?���i���S;�Jb%�M��T̊?�#D��+
���Oo�O�ܴ�wD���a�h��)Z��J��?�!i�OW}躰��gs�S�oH^"1j�8�{ފ7�4>+��On�Rʉ���Sk����o�
���İ�RqB��zVT�S07mb+r�����-/��οfR-��T�I�7���;Om>�l��N{�v:�B���URˊ6r����v����?a>��6M�[�9iTM���zt�t"�l|�r+({�.T�-l�w$����$ܚʆ�JjUG��i�k[zH��JG]���c�/k�e�[���]�(��(��sGH-?��Ʈ|�u�L��iԵh|�}6xsE|�d�*f����#<yj]G�4u�[���6u�y��t&��Sq�$yG;QG-�=F
���J���:yh�O��Gr.#��]S9�����mٺ�m�*�$��6';��y��g��!&�J�
���!o���w�I%�\Ę�R,"��ؾ���NTiO:�H���[7GW���d�gCZ�K���ʹ��ldC�ʪ){m�Ա���r���r���}�BF�S�'-2�C׶��`i#���y.L�vt�
�,ݬ�f�E��*V�Oǹ!稒��M�
<i^61Նn�V,Obo�?��|�Z��r�0���S\S^�'e�I*U��zn��Τ��!4�[!3ٿ�6��1��i����J��'ʨrc���ꃡ���?�Xo�On�|zZ�&���('�)�MH�"d��d��)�+��`!�55U��Ś�U	�q��GR�l��ʭQJ(�c����Mb��m1K)w}U�%|T��z0�ft8{L��qb�/��"�I�a#��$V�WSX�ґ�v�N�1���|65#l{9�E����i��wZ��Uq3�$~_�܆1�$�N�Ն���k#M��?�+�,JP`ج�N��N�R���ѥ�\v[-�L8�:�YT�U�DF��˃!�NE�R�xĠ�e��gɅqMx��ﳕ?�%��	P<�C)_�������U:/l��5��F�V%���NU�i1��fg�Ij�0�ԯAdIm�rKWOQk�o�;����&��;k�*�xM��TMI[#���P���I��j�j�J��K�dFT7��|�Z¾������i��f�d�ī����&V��'Om~*-�6�J��TEyR�L��0ى_�Q��}��5�޴�oK���T
Yݟ�S�'��D�u���OH�(Ȩbj+c��T	37m�s=��p���"���dş4~=�]5$m��2Ff��K�X�?���Og��]�j	��gsM��4��4��f�M,��9IH��qF�8�����l�LF���qfJ=�X	`�t$���J��Obx�������I��}�Ҽ:�TB�*�?�����-O�s�O���O*�H\�m?�+���h(04&�:�?ڼ�^'f>��3"ht韼���3�t*���S�G�ryg�5�jG�s����wN��J��7��	��z>���K��+0Lvq�9Jtҩt��ִb̌*y9�-V�<>
���5:!EaG��O�����9�=�?�?%^�y�N��X�D�_Ҏ��412�8�'�؟LXɪ�dIUL�W�(F�ٜ��ځ7%�AV�s��]�'q5��z�Q^�ޛ�6����8�(M{t	&"eQAX�A҉�Is"�'��.�c���{H��r>���N�6Г��Ƹ�Ey"��T�bX�T�Ĕ�
1:�:c���
ܐU�<�I[XI�a)ي��<n�� ���[>(1�c��Zߪ@d�	ΉpW1k����o2.)= ��=�ݨ�=GR�"�
YE'Omb�2��
�)��8�j�/�J�FsA���#��_�x�rCu�_�R�D�ޠ��^�b02U{e��2O,	*��:�?���IkW&��it���K�a�ãeة3�$�9(�c/�w�*�}a��DfT�!d�,*0,���j��	ј�D�	26MK
m�4�Ƭ�6>�7����aU���l��V���_&s.��+�~���d�igT�X��jʹ$�I>(U�d(F����G	X��\�:P�X��R9
()h_���k5e/RR�ϨR�|T���'���L�����I��b�{��V��)%���I7Qn�	x���rw���SԨ@��O�`!���O�U+hR����Q]9AY�F[Dq�W���I̚;��(V�?n+̿zrA�0ތ*��yi*�~��h)��X�8�p�����E�U��C.CmXXQ%�T��5#��6�"3�S����E!DIiS�UtҴ�9���$�U&v�U�U�W`��_[�T�q��x
�T��۹A�?�}��3�:r��J�4���X(��V�$UD��ڂ����ik�?F��N��̔�%��b����I��X�/����J�#��e��G��q��z}PE�R�n:a9v�M'��JӖaG��]��+��r��rs�W���p��8�=>ڧ7F���ۥ�o����$��%���V�e�S���*��*�*h���X!-��<��c6Z�zd�F�Zk���R��\*�'�J{�[=�]m؍����ۆ�KEù�R���0�S�_��YJ�Q�ɒm۱���*�R��Z1��wi��kgvR��Y)2�K"Eb�N��l�}`h$���N�����pj&�����)��T��7UJ���	��:��T	*ۛ���|!1>}���R���t�X�<���m[��!�B�Q���U3���2��M�G�Һ?m1%�[��ĵ�6�5�]��	 �Q�5��>�9
�ê�O�A���R�z��u{�f�7��v�$�F��T�R)�
9�kA����##� �vTPaџ���/ri}Q�e�4Im�L�&�S�&k�u;���j��*:�J�Z��#��.�)n���h����D��:��S���u(%��O���RA���O g�s�5%�pf�]Z��9���q�u�DR1�þ#/}N[�B=�"}��M�N�I�v�1�;�U��li��4��\da��ή�DR�H�s)�!�TҦ�;��R���OZj���Z���3-3�U�vt|h�j��T6���>�]���3:�2	L(�l 1�SMٿ�J�j�(!�Y{�-6�x���!��T�L�u�q�:�~����vJ������ZZ��2w�S�J��G���h�/�rWI�����IV�"������헨*0���
q-q��[�#Q{��ɤ�Α�d��щ�K�uQZ��
)YOdԏVSV�8�����5�F:V7�l�v�i�qz�!�i�x��D�s��VUt��甑$�w$���bKW1�[�6**/�d�藘�/N�G��~0���FUb���j1!���̥��"�Au���˥��8��]y��N3��H��D���K���!Rц�m4�]G��6��Ӫ�G�(EL9I2]��1��(�W�����sy㒒��\��H�	���ߍd��XԴU���c��?1u��C��2TC�$}N��:NJ�E��A�@U�����Sħ����f���;�owt��q�j�>��O�����$KgQ=e��CD��gڔ/�J�ʼn�$����/jg�9SlwG�v��yoڛfd\bSzI�I�,Y��Ϯ����-�Wz��=E��
���HK�iB��>,���4#~<w�#���
@3�(w�-�\s�5�<���?{��VX������w�}.�ϫ����o��0�s�����4����aC��%����.�����L�g��G}�ᇗ.]*�WXa�5�\s���J'����~�ii��y��rK�0�����r�w�s�=���ꩧf̘��`֬Y���ڠ���3�|��_�3g��=�����O_e�U�S��~��,��/���[o���+sM��V9���6�T�UWT�O�Sܤ�@�jW)mR7��^*�P]	zA^��.\���ccc�AZn��V_}���n���Na��g�}��G�����+����d�ӦM[�h�|x��}�t���\�0}�t���U�;w�Yg�%���O?��SOI���$�ˁ����}�
6��-�ܢ��:������
��x�b��O>���F@FŲe�܁T�l�>��%K�{�w�y��ȈL�O;�׾��\���#m� �ǦՔ��>��G}�54'���@k=��	ol!�a+Pe�	1,Xp��Ϛ5�%/y�)X	O<��/�K���ko���[o�u���w�u�믿^Np�
7\{��y��]v�er�+��«_��3f���^z�q���#�Ȭ��g�U-�?��?~�駿�/|׻�%k>���|�ҥK��������6��-���D>p�j#��?�yƭ��V[m���[�/x�N;��s�L��W���[dV)���g�9����o��?��\(� ��óJ;�I?"z�l��O��;|��.��썰24�;����߮s.Ȉ���+����aѢEO>��X���u�]�裏Ξ=���J��'��rd7m��k����{{7�>8��U���{O9�y��b�w�5k�,��n��;�s�7�s�=��+�����/�e��ggll,^Ѯd�u�>��&���/�1_��z��Ȩ.c����r�G!��\���K���?�ٯ���˝�I�UW]��W���׫�+�K�*��#g5^��!�,Y1����?+|HG�
S�ӷ��r��7�8::*��*�����[o��:F&�����E����Ν��N;�1����z���e�^m��6�tSs
"���O?-��q������!�dɒ'�xB�8mڴ�W_}�u�5�o��{�y�gd�/zыd�?���jٲeҼ3fd��z��{�,Li�…���J�)ȇxࡇ�+���̙3eM�SV������_de9SyI�6�dKm�������,
#���ꫯ�>)@:��G}��g_I/��o~#}l��6�>|���K���t���d��63ؔ>���}����͓Mz�<P;찃w&$]�뮓]����~^��o��v��n��� ���s�7�a���
��e��-^��Ld#�e����_�������1D'��_�"3@�s���J2��	�y��W�º�2%��+�?��Moz�̊o��{��C�ٯLd
-�����x�5�\#�m��~���/w�!�
��ϗɧ�1y����w6��e�����L�7ykˆ��e+���d�e/{ٮ���N�I2Q���[e^����ˬ^�	����+}UNm����V���r�-��w�!�j��,e�w$[��߶WH���� ѓ���3�%�>?W�	Ǖq��'�����3&�ya�k��GGe ^}��/���K�ʓ/��̙3�\sM1��B��Đ�x�e���1��m$/1)w�m7-��[A�R���Q���%2֯����J�
��x�bya���!+��*�3YS���J#啳�N;�YGLDy?�Y�����������)�<� g!픕/��YS�AZx�W��|��f�x��}��j��A���});�=o���t�)�t{�`�~b��ɤ'�ɟ��'t0��7鱿���/��B��'�p�G�W�ꪫN?�t�W��v��>&�U�zՇ>�!y��_v�eg�q�< 2+���?}��8�S���)_�sģ�:J&L��k�!G��@$O=���+>��˰/����ӟ����/Z�H�=��w�}w��XF��?.S,�V�-bu[����م,sZ��7�e�.S/3͹�s����|f�u֑�L�.�&YS�z9ܦ�n��J+e_=��#����ĺ6�҈��*�l�-�����d�$f�l8�O�+���PNY^��o�����=.7Hn�Lz��fseyq�x�rŶ�j�H�Y�i���K������/����>��t�r��=�X�g�y��_>����m*�Ye�U��c��O>9�� �=��S�_�-���zٳ��_�������dΐ�J:���E�l<��cr��Zl���x�;dW�P�2��$��|���w�#j�Y_����?����<������iұt�ř@��>�pX�c�|)�n���*�ie���?��3Y�0��&��zJ���e�;w�Nx)��~�j�R'n�;q�$� ��BV�y���/�.��͛'��k�,�Ho.t,���_9�lr��7�@&7:{�����ާ���HtK��+�Ee���g�ѩC�\�n�A�@��LkLI������-dnďQS��j�.��~���y������hq��-����H��W\q�G�4WǠ����z�������}���\�dr�я~Tf?�W��K�#X�,s���:�;Ֆ��?������1_��Wd��}�D+�b�fK��2&'-�k��֔T���j��u�:<"F��ïx�+2�oȒG}TF�N:IL�9s�跃,c��㏗[uyh�E�2%;��_��X�����a��_�J^:�^�w�J+�$M:�������|�:���!��5����}򭼆N;�4i�,���[��կ�DKrD�}�<�&k�J]t���Ξ=����,\�`�o~����^_d�)���?�3�],/z=kMZ�M�[y���/��
��T^r�%�֖�
r�ds������,�ˮ���3Z�Gz���F�����y睷��kw�qz
��c�}�S������`4�B2��[��/}I&[��l�.]E��O�{�^�9�6
d~"'���~��Q�����u�ۿ/�dM7!n'�>���'ʙ:�W��2l��F��6�pC��*�q�5�XCey�l��ӦM��[^�_����p��w�}�l��;�����o.o&�啠c(��Y�fɸ��.�H{d^��Y�/|�|�9GhJ��~�ɫQ��DN|�m����8(o,�xy�M7�;�{�y�K^"_�mo���덼o�4�05�s�=7�l3��u�8��C��yы^4s��v�a�]w�9SVYe�O��ұeb���OK�{�������'���SN9E&@�e�#_�r��|��?��t��n����LԤJ����>�=Y�iz���/s;y�~��_^p�z���OX�\����c�9���u��ˤ
=���"��K�t�3�lA�42I�?��<�+_��׾���\Fݬ�…?��7��2��udR!���&�|��2�֘l%C������[����H� Y��w�q�QGIK9䐬%2Οx����ƶ^({�m/���O|�o�۷�n;yO���������t�9��sz�!9�6�l�~򓟜t�I�ݑU-�ֱ���_���SO5=#&
r�uEH�Vt�\O�Ο��g��Ŕ�gƹg��|���,��տ��U��e������+�x�[�*�x�UW�)��g�}�UWI�[���έ1$��/}�˿���2�����/�@Z��\����l+Z9�Q��,Z��?���dj��s�9��b9�}�Cp�4F���k��Vf�2K���̑�D��>
qR<Ӗ������V��h�\��͗��|%��t��z�z��^&/3���V��7ym[��LĒ�u���ү������	���bيUy��7kIe����b�-
�C���bgʤD���ݚӂ�7��;-Y�Df3�n���C���g3rD\T�82%�	����C!�h޼y�Y:�Lt�Gɼy�}����L�dr&sk=�/��l?W_}�M7�$O��c�9���$�WfKZ�pΜ9r٧,�������2E[c�5^����u���,S.��\p�����ɬk����Y&L�A����8�,�Xk�\rəg�)y#��%/�b$��������f��E��������D�q��^YS^
�_~�^g�u�Y{�-Z��Cs����ѳ#�{?���k^Yy�>����Y�p���E�m��voy�[�b<_��2��}��u3��>�s�7���rh���'�,3y���L�F�u�Dd�%o��3g��l:t����;W����_O�,�E^�2�կ~u�QG��_J��/ɕwM\���C����ܑG)SS���|�?��#r��Y��,\��O=�T|$kʁ�>�l�0�+�Nm��F:���29�Y�N;�,�H�B�ң�,��/�3ҁ��|�;�=�X�\��뮻�A�裏Ν;��[o�q�y�#K�<FrCmk�rH��`��^]�\6��4��:�Cyd�^�%����5�G6���w�}w�q�X�������=bm�,dX�3=�К����9e��*[?��)�\Mve~%���"��$C���Z�d�ր��Lev�y���9�cv�m�5�\S�c�4T��g�r��g?��k�s4��!��+�PV���t��d?o{���o�O<��C�K5�S S�l��ӧ�d���~����L�n��O��=�<zғ?򑏼�U����2R+i�%�\"f��j�S�����3���ٳg�w�yG}���s�=W��\���|�;b����^L�N:Ivx���s��[�] ;�e�]~��^t�E���/峼G����CW�J�[�{���#���/~�}mΜ9��r�,���p�*9�{�!oi�e�Ė��uW\q�=��#6�l����K��~�鲕�׶�j�o}�[��{���:����͖��\n������r�#��[l����>��O~��c��ʚ�
�>/~��|d+�Z�+����ŋ�2[����}�9�\v�ezWr�dz�xd�\d����_X�t��Qw�y��!���|uڴi���e^��,��t$ݫ�_I/=�å�^*�ُ���hμU�1Ҫ�3�S&�;A;�'�z3x���!cz�I�����CLd��2�.��k~�.���ke���ndƠ`IZ�gd���Tzq�)�3͚5K�r�ȉ�[P۴��Z[Q�I�L�>���TFf`�a���J���!2�>��v�uW3�zL�)�~�S�m��FV}e�2�{��)����y衇�ʛn�i�����^=���/���7��
��TE��GyD�L�e^�p��_����QE��W��2��$G��Moz�LTd��^����G�YA���-��ٳgg6���9s�Ȉ-��W�����te���w�s�ܹ��u�]b��端�Z;&H�9�,��!��M�d��H�x����@�Yv��_�����/����c١�oy�[�Xc
yw�v�m��q���鳐?w�m�M6�D�S\�}V՘	�c�=v�����*����o;�	(�c-F̛7�'?���>k~+-;/�[o(�g�!��
M�=m�4�$S����f��KVZi%�NE6�?��T!����e�5y�S�S��w��]sr.K�#�W��Tz:z�j�O�$ڗcb�պ�px� ��p fۊ+���P�9s�L30'{[�z�Z���ɒ�����Ei䭬st�;��t�r�7�pC�ur,��#U�7R(o>���䯛'oSٳ�b���0��g����Gy�)����?����묳���4���#��c��v-+�N�4KO��]w]�9ɤV֑���F��Z�Kuy�/�p�
6��?m��
��X�3D�ۗ1V��w��:7��.\��w�q9���,_=��#�0.��5k��d�M7���䃌�b�g�e�[��z�"V�N�"o�w��*��.���,�_�`��h6�x�:�����s��9ꨣ���k��V������^���к�������2���B���߮%&���Ν�6���_��_�\TOw/��C9�qQ��{~s�9�s���5��r��h�Fg�o��hƜ]�^�2y����S�����W_mM�eZ+S]ꕯ|�f�mf� �ה~e�9��\ҩ��yM:�j'�9�$?�q,����T:����z�~�_y��J6K������E�Z.���ε� /�e*�������-k<~���=�ܣ!���{���x��PK܉�$Sjt�0�[y/J#��r�]w�=��l� �L)���oo��/{���~8c�����?ֺ�S2?,�S澦ޡKG	��{��_��׿>�V��2i�?Q��Z�����.O륗^*Q����OfBnP����w�]l��~��7�x��D�q2A?��ù����ز\lo�p��G���o���eȴiӴ�b�O>��9��^�Y.��%0:�#=e>f���52[��B֚�m���;ﬣ~~�߼�]�:���d��on�S`F�dg9ݚ(�DT^�Y(�u�����B���d����>�3�<���V���g�}����g���k�q��w����ӷ�zk�W˞/�첓O>��C���…�?������]{��[o=�"�����C`B����/}�K���\��;��G�9s�Zk��}��.�K���WXaY9�#2�e˖��s�W�7o��|�(�=c�YYf!z.r�M7���㐭�����MS�<�D�j	m�K��j���{VYe����$�@��m��&m���˹�B�. \����~�́����w�}�M6�gAz��7��o|Cz��gk�Q:�k�!�Sֿ��ku>Z�,[��N�n��}��']�SN�����*S���G�s��#s�=��C{V��u���db$�}�S����>��;J������~W=�"�x≺�yҒ_�}�s��C�p�	�~�L�t)
y����G�Hdd�1c��^�2���]�`�� �<0s�]w�ue��y�������-oɤ]ZQ��S0?�4�3����k+Z^1VM�?��O�p��:U��V]x�r���k_����d����F=�#\Z(g!�8�y�d���k!g��3�X2Є��K/���u��ܸ}��njF�?:~���.���k����Q�})��^�h���#o�s�=W&�=f�=�c��׿J;�D���o��7��A��ϗC�T�ʫ������;w�\9�����Ї>���p7�pÙg�y�Av�a�d$�r�(�ܕW^�U�ٮ��jSst��W��f8�̙3��ŋ�h��C]t�E�V�>=:*���B�/��b��<��bLʫ��Z&{�i�?���u��W��U!D��V[MZ.�+���߾l�2�]��rK��|+S�[n�E�Mv��Zk�η0���~ �+�x�k!�D��t!�QڑDz�{��=�i�.��r�w�T��o~ӛ�$��l2��d�Md��O~R���~��㏗��|��e5����GtD�N;�t��˔N��{챲�le9�]w�eN��+�ú
�w�q���g�a2�;��e�%Sn%@2�n��Vg�u�v(���~&������z�W��T�|c��6�p�
e*"���'?�a���n;���}��~�5;�Xq���~�K.�D�W\q�7��w��ݫ��J��v��� Ģ�l�Ͳ�^;��6�l#�����.�.2�ѱKI+S؋^�"ym�I��w��s�=�Rq2Q�3g�졠���g��*�Qy��������'��.�L�r�僼�k�����]s�52[��_�r�a����/��-7Q&=&��v�m�7�p�	�ߤ>�Zđ��5�����K�.K��"��׿���d��*�
2
֥`"��L<�@Y�E��z����"�ӧO3O��϶Ў����g��W�Q[W3�+�C��e��y���o�}�5ה�z��VG&k,/V��z����[o-���x��?��O���A�o�ٮ���2!О2�\^���n3-�Y�fe/6Y.�ӃF�2��?KJϑ���Z��IO��4mڴ��:�=�y��0�??�p�?�-e��{L�m�_~�<��[�����Pw�'�x��'�����v�e���>{�wΎ+S�SO=UF�V�W���{�q�g̘1C� GY�B��=Ao{����w<�B���~�>�(� =��ϯ}�k_����+�s�=WlQ�|��V��G>"sYS��mq�qǽ���}��,�>����M�##o��Ő�AI_���@�8��?���=�������W\qE��L�9�Y�S�귏� 2�Y��\�5���<�c�ַʒ|��[9�p�7N�;{���_t�E����W�ګ�蛾ꪫ�kW^�_�����&�m�l�27��|[_�%�Y�l"{���O:���?�-����D6�"�s�ޏU�A6Ͼ2��tЏ��C=t�-����k��_��d*�g�r��s��p��y䑺{���瞇~Xǣ͞=[ǂLD�R�0}��}��W��b��gE)��Xwz�����L���M7�T^��fCQ�z�7�pÍ7�X�h�%[S��<��o�C�5�\S�R��/���'+���X�:����D֔�k���
&��[�n�f��GGG�m�3�ȻD�_���f�m&{���Ae�:c�y��W_]���{o��f��֣��f����+^q�W^u�UZL�^$�_���+��ZS�Z2��w��#ݤ�o����:�̆��7��N2#��c���K��m��v2+��k�S#;�m���̙s�m�i�s�{�k^��-���/�ee��Eh���?^�i�������M��Ȉ�я~�2��z�2�o��I+��'>�	]�X�b��8��-�L*d���^�3f|���D�Xs[蟸d���է>���YF#�0y1Ic�"ֻ����cs1�On!�4y�\v�e:�G����[o��丛r:;����//'(/��jrg�[�h:�K.K��L^�n������>��VVx�^~��5�\�d�y�Ϛ5���~�%�\"�r�Qҝ2�C^�2ǖ�iMSe�+��}��9G���9s�)��"_I#eCى����_�lY6���_{�O8��ե�^z��w/\�Pf)2��>#S�L��p�=f��&�2�M���>?gi���>W	��I�uk-�qۛ�r!��L;���E��:k$�U[�%�����8:U�
7ܠ�\i��dl�e���d��g�}��� ���f
��Riy�i�E:����-��f/��By�Ik��4S�G�[�h�<13���Ⱥbd���IUo�>!� 3���zj�����7�if*��+;�0�'ȼ���җ����7�x�w��1������iɺ뮻�{��k2s�UW~��2��a���N������'�x��g�T��/~�~��7�[n�E���˼��c����>f�b�_t�ErĥK�ʫA���n��[m��{j���'e}����C܍��7o�y���^_iό3�Җ����)��6{��?��%�\��M����?�я�RS;��O��Ph�Λ�}���O�T�1�d��r��h�'6�V�����Y�ݪO��m]�칯s�u�m�m�!��Nş��{�Z��k�g�O
K���]] ��K&e���Uwɧ] � �1��Ν����M{��;�ϡ؍���L,"3����b��O<�x�k^c����i�W]�~�5ְQ��TO��YgS��/^�h�"�N̘1c��V�>}���̯d֡F�+s�![�
q���k��V�����<�>�i�\ψG}����?�l%�9h�G�%K�d�ed5�~ŋ�S#��F���>�y��r�}���=����]w��[o�̙rg�^��K�����o̞=�k�������P>N�}�ݷ�z�C=�t�R�$2����nkzN����W_�׿�U�]� "s��w�]�\N.���C=tٲeYu��(4!s�c�9樣��IIIIe\y��g/^�t�R�+����+�ܬ��� 'x�]w]{�O>��~V]u����J�0l�t��n�я~��x�����{���j�#�8b�]v�H*H*H*Ր���ŋ�|��VXa����0�����������=�،36�`�UW]5�?�T&���v00t)"�K����-�0e�TI�2H*�AR��
@e�T*��P$�� �TI�2H*�AR��
@e�T*3�%h�����a�O�:����[�.$�l%f����U�N�wy�J-�O|�+�cdSk_��71��cccŝ�<z����5?x����l^�
{\�����졩������K�\�l�QG��6�0��
��>�l�5�Bh���(ݏ�p��I�nX����Q�O����P�u�Re�]Xj�W�5�2D� ��i�>�q�j�5��/�*��0^�1����#ه�_M����\ӻy�5�/�����6�l��z��T�J���ժ�E�C[�[�e@�`�
x��
L<�5{q
m[�Y��F>��B/;�CB觧�OI�=l���绘���!#���]?�l�\*���ŏ^6=md�ȕ����J�ǯ\��*�!~��6f�̋>d/[>֟ڀt-�l���b�ʻ���c��-ha����!fa�JS �N�r�ٹ+�qx�p�ctx��Fv2���C#Ie�Ff�V�)���I��voU{��&U/u��)+��^���[|g�����f� /��tF6�Is�OS#0��fK�W�m^�o#��ڜ]�GfӄvM �Tɻ�x��v��Ch?��������7�Â�Tj@��-) �{f�T�,��3�ߤ�����ۤ�'�+��K¿�V������`��J���*c�֩�ն�����8�{�ĝ��v�	]�J
��3]Ui������o��]?��y
C�*>V|�M/0�^��-��f�K��޳�w]���k���<�RC+$�T�����3r�F�_�k5�>�	H*`��??r�?��$Q[(^�k�Ƹ#V��J	���0i��?@���J	���:,F�UAR��
@e�T*�������o���~���d�{o;�g:!�R �Z(m�R�о/��
����OeZ��P @���q�x�!Y���u�}��XV'����~��sϽ�h���3�Tb��
@�R�B*1CH f��!��!�3�Tb��
@�R�B*1CH f��!��!�3�Tb��
@�R�B*1CH f��!��!�3�Tb��
@�R�B*1CH f��!��!�3�Tb��
@�R�B*1CH f��!��!�3�Tb&B@�@  ����y��&Q&p�uM��a�X̆��(?_s( ��ۻ��MF������[z{}>��b��|�⁳"Pj�Z�����J�B��괩ii������(�R�p�|�����UM

]�>��!�\ri��=r�W���88����g�~��Kb��~N��6Q���X4�����`0��
�Qt𧧯� �Ǡ��-ể[�wOq���C?�	Tp#�Mn���?��]ɍ�����n��m uB�PZ���R)^%0����#G�l��e���.�,e�W5����E����_��.*pn���8��D����?�ϥ�������%˖fee����e��_ǡf*}b�y���L��������n����mz�g����m�C�C>a���v�QQ!�`ß�������e�����騖~p�`\��a�R�'��&���]��
����[�ni�oh��:rt�
q�Ll�F�"�F5�΋M�iʢ�Ԫ��-t�S������ڒI�/Y����R�1!�Hkk��>;VW��r���
���2�`
��	|CX�O|�
I�R����L�݇����1c��Kk4��	�\(:�?h�:S���C����'�+J��,�e�&Y�,�r��llim���P>0�a.̥��q��j���Z�$[��M�]/���IߌS�"�뮝8i���\*�{.̯0�9���}��O>�MR��כ��)0ڰ��|*Ւ�E)�8�?�xs׮]<ϣd`4����b����ǚ�*���p�`tb�NΚ�����յr�J�eQ20:!�0ny��?��pk�¤
��S`�c�����.gi���j�j�ҥ4���`4BH`|�8k9RQ��x
�!��Z��4�,�}�n}rJ�$̫�50���׭���I�J*�̞3gڴi(7�h��O�w�ڸiSU�n�N�x
�-��
C��5�~��:�.--
�ry<���?�~[�R�$��t:?\��ŗ^*(,D�D �0UVV���ÖD��$+ �c+P^�ٟ�S�I���H�ѠX���vp���3g>��4CS����iz�֭�<����f�T�!�0��}�fM��ِ�ј��*V�d"i��>���'�\{�ub��r^��	�!ѐ_�?��]]]b�D@|�DXD`���<�j2���9Y��XA8��6d��߷���
r��D�����/�c���ݍr���E0��:��/�jI�5($������u�����?�P}����b�5s��ah����v;,�ښZ��O�	�����him��%�O�`A�R�$���xj�*��y��Q�T����_���`\پuk����!��tP0>�ٖD����СC3f�@��PSS�S�{���!�Qh��s��b1uu�y�#�C{�^�����+�I�	�R������?�A���<�


�x<���EEE(��CH`�hllܿ�1I�"e�E�
�6�)F��-[&N�(��Q&#��ǟ�ضm��W�$��<w�t(�!������t0=I|r��l������+�,�4%%�>������p8�|�$%%i�Z�!�0~�ض���nO�G<��
5��������+�R4JuU��7k����<y2�c$L&�N����w���|����|�Z�Ӊ2s�^ouu5�q�u��cǎ����4>�F!�q�f��wv���h�T8��xԀaX�0�c�0����=�P4�7����0��1�c��a�����z��e�Ζ�at"���M�@0r�1���	<�(�5ײ��?���Ͱ�HUJ�h�M,‘�!iFP&×�p׮dXϷ��a�]!���
�����h��7YJt�c� ����#2b��0����iii(��@H`�0������„�6��H�����Jr���@�n� �`��V��;q�J$A0��vk�ݲ�b�?3l {�<�tNr�#:��~[�ú�b�ﴑ�ީ+$��JfL�'��*ީ�x����Ñ�兩*ͭ����qR)�0N����eG�[���&#h[�#�0/.����"m�F*#���;���սgl'
�!�p?W��Q��p)��x��ˊN�"�*}�m�eC��.���o#%������a����s&\�z��5�gw�}�zE�٠�:\qŕWb5嘚�(��binn>9�VSS�v�\@��mo��F���^��3��I���;�������&� $��
�ȇk�{����?b�K��{ڹ������yU~�0�H�r�}v�������=T�����/J�]��wƫ�g�LEI澼�{Jg�j⇤�&o��5�Tl��o?U7�����+��f�)5C�:��ږ�'*�W��'DU8��O�+KJ_�^��:����htWL>U�����G�����l���6l�
Q��Eu6S���4eU��]����|����q���~�Ȥ�4M������2��aRn�qR9����5�:���:1�e��)���"�������Q�`��L��(^&_�����k�-����N���bI�R}����\|͕������M��3E�0�L����+��)��QK�7�O~g�+��ܩ�21����^���K��)�|�R�u�S^��4�$�
�����L������7�h�L�%�=?�ʟ�Lvh�G~�GI7�j�K�b���
o��X�;}t�vs@_������l6�HyB;::zzzPJg�^*づ����Ӛ����GSۆ�V���[�t��~]n��lsZYz�_w�Z�{Gg��"�IQ�M3�.�*��"�H�`ټW��C��.ǯv�縀@j�<G��8-�,!8�d}�S�/m��!:��M������!�Yѣ�K2T��.6�7�rt�h ���$y�p�-���[����k�58_�2�Ƃ�9�Yd{�6�3��n\]�;�)��N�{yNI����x��`Eo���u+2�f��9����J� \��Y�K��r04}M^��m>߰C�H�_��贓2���Ii��O�J�RV��S�����c��u4qB0*#g���/
�����4-0Tp�
��}��FV��"��inn�8.�ik.@���rV9������)�|�uv2b1��1�f�;v,<+mx9��ϧPL���TVVΙ3G&���R�z{{=�&
M_�W�����Ѩ�g%g&*U��l��q��m*��ot�S�Z>�P�ۚ��*�$U��)����;M[�ѻ�9�+���iY�m��L�i�<2��G�f�G'�'��dƏm�J�鵖J0�#�H����2].�۝
�`�FX��qw���K�][�l���\B���V���s�nzb������Ȯ�/���%e�\45|���뿶��h5���jk��&��8�/*w�S����T8��i�����$>�@k����ؐ�9�ኒ��Զ��.�����5=3o��a�	���*w�-ً�����v��f0�P�{���7�r�\r���&T*���`��u�}��_�R*�:�;�3�
4%b��Z��^vYRR�|�p8�GӴ���lش^��DB���BH!�"��c(��US�r�0S����Th��[�&)T3�2�`�e���+�ݮa�W��bE�]<�l����\)a�T�抌�-���KS���!�a�����3U�����
�Sޭ?��n�s$t�	�-�!2S#K6����p\���z��
M��=_n��E�,����bg�F�,��ܽ�p�u��<��NmˊVd�I����؞/7��'�����`0%�<9��5-wFRp"�>�뗇���I��r�Βiot6��)�������{�;�m9�QK��V��(*�1�k'7X�h\�Y���bw���t"�rF���{��/���;w��{�����8�|eN^#����{zz~�o�.[��Lǐ��m�ټ}���G�;m�4�R�"@H��xIS)0�1�[r&%��i���mlIK~ꚛ�Tg���d���r7%��-���Rk�Z��D�l�H�^�i����m��,���h�L���o��uB�L�=0JU������a�p�{Ck]8���P��<C"�Ri�>%|o��m��t�2�����'KBA�-�͕vۻ
U��'KvjB���ou6�yEA�YV>P�ct!Ks�����/�4}����ػo֬Y-<�υϷe��N��;�Q((�1j�G��(������b�Y̌��9�/P(�d�N��
�^�k�z��\��Зd����4e�z��>z��0��h��r�����IR(϶ׅ�I��;��[�^`�;\������ꓟ����u�^���8n�.�<9#؈�*)���g<hl'[Tb�չ%�p����� �R,�9�49xV���^�I蓉���~����t�oii9�9�g���E���3-\���0�\.���3�VP��R�Kt	�f��������4��������qY�!������멑�j)�h�X��0��Kӑ�,�9L��QB$�#bYM�a�F�
���#��Nh���xzEvax��֎�Oz:HI���j�J�$W� -o��𥵇:q�^r&�N�g�{�1��Ҝ8Cq�� �,ƯL�3�~]�3,�s�û~���z����|�s�x�}}}���X�r�B*pA��ﯬ�N����<���XXXH���g�f�r�@�d���Չ���2�Q-����U�0�����q��an*��fWӈr�8��8����]NG;��^B�Z�X�����r�N���x\�;�j�5s{��TZYhO	�֓���42�:r{�.)E$�:>��)JRf(4W�M��၂�R�	B�\��T�^&�2�����'�4E]�3��<�m�O��x��
,�{~��/c=��߉w�iu:�\f2�N~������k���n&��T����"���ں��&O�"�J�ww��6��`0�B5�9�������(�J�@H.8.��ȑ#>�/���q\qqqAA�h����W�,���e��\.��=�c��Y�E��)	���ɩ��|G�����49�t�ޙ_��D{:�>��#��Bu[���G����K��&K�f����x|�丄d�<U{���5��R��^[8�x��j��
����^�ncۜ��D�3�үM�}����U<p�<�'�h/�7
µ9%�
M��e��Z��.�Ku�k�>�����/�Y�g�{e��hJ���b�T&Ż~���u��f���:�
���o����?[�.999���������'���M7FR����|��k��6a��蜻���_���B�ɖ��������s����z<�	&����lR��I,Z�(}���kjjbF}W����O?���t�s�y^���K����t�M��,\�tq� h�]4Z��Z8%<���q��%*�D�02��ւ)�M�Cu��ˑ�j��X\ �ߑ;��9���>��z�e��!�v���8��a5b�L���)�&R���V���og��e_�;�(=?WO2y�l���{g^t�ag��~3u�P?N�_=�����p���c���*4RV��=|�o��|fj������ݺ{���M�)���
��:�%N*�):U��-gBp��(�L��q��N����»'����ZC�LI��1�R�B!���T�Uqq6����_��F?��H]"z�_r��N�����;$玎v�H���Qȣ��n���6��f���%�ԟ�V��SSS��B*p���d��3��MMM������rrr�o��w=U�DXH�rʔ)���P(ȗ�L��d8>p�.iz��:_�ܵ����Z�& ��3n.,#��S���7YN�pIf~�BE�4�ˠRO�%�JJ����pp[�+8h��C*Z��&��`�A)�����S2ӕq�G�w5��XI�C�>r&;l�mz�
	�&*T/,X���������T��Ey��mˍm���T{8Ұ�h�[�_�ZJ&g���W.k����|�@�Z;?5;���u���wfe��}s<\�{6]�tTI
��Y�3˳���?lq��Q�Ŵ��G68�3�ɓ���=}Q���G<N�{s�h�L,��dx׏�\.�i����ΓB*��-��<��+rr�؎�N1��N�F�@ ���ZWW�v��O�iyfO��dE*�$󾾾�����t���'��
��d��)�.\h2������U�S·�Ν;{�l<�0:y<��'
Ai|�L�V�QZ?o�F��?̕YE��T����F���t�o�[.�,��)J�噅�,��\�ʝH���oK��ك[_�?yr�_L_t�.~�[�V�ȁM~?{n�$Y�y��A��o�Eq�B$��`��oJ����}_����,+�M�D��r�X>l>��
�2$�+rJ����7�7>�p$�1'�*�qwzvr&M�S��7$e�LҜ	"�#S�^���n|kɵ�2y�!��S\��s�Xjl
��^N&�`6������ٳ��p���l���T*5~�m�FcMMM___8@	�x�^n�y��u��pf�`
�=p!����<���QRR�EX
R�Q���ϟO��W#���T½T����͛�R�\.��f�J��>�yt"U�_|q͚5w�y��ߎg� W��%s�r��0NSAY���ڼ��5V9����VwS�r��⩯7hA!f4G���w�ǹ�����8����)z���|�>Ww�����Ϸ�P?�r��K��N5BӏT��g�i���)Y��4�z߭�x���38��{m�e츷��,!Urb������#���^J�̤���5MU/��c��]͝�i䈷O{����w�D�vD
mmo�KGv�r�br��ҟ���p$:�%;�����z�����EZz���Y��7ۮ�.�6N��֨�v�ZZZ�~tXD$uvvv��=�,�k׮S%#��H����j�Xrss���e�;��h���s�E�[���pPQ]T�z��ŋ����?�������?��7y�H/��{Jcr�������aט��CRR�X��~>���ێ�������^*x�����/����*w��l� �W�o�����"!�%��k��5.'�ş�?�aߨ9��s�pN�z]d��~�?4���)䬼<���uI�kUS����PKbMO�-]�OΉ3�(T�5{�m6�A�q��ʲ�3�S���̛
_�;�'��J����luXX��vru��6��
����<�w��<�c}a\pp������㧛>
�lK59��O3��hsXÅ��rD�L侍�޷� ��
�m�/t�R�r�L�T�]CH%-�4�{L=�1O��c��RSS�ch�hoo���!5�S����#?(9���?v�XWWWqq1���T`�Uiz�ԩV�uӦM>_p�8R%"u�E��|Ʈ���������o��o���ڵk����U�V}��"�,Ҏ��o�^�O�ĩ]>J'�vτ4�]G��
;܆�8v;l���|OF�Է�

]	��O�Br����2w����i����'
	ߜx�N��Ww+�
s��`)�'G�irn~�;]MTw���
Ʉ} ���ލ�g�����-I���j���+|�dG�������'7���������i��=x�1���s*o %/	�Tb����q��Ƹ��z]��z�^.����u� 8�N���TVI���'R�Q��g͚���VUUE�/Iw���ӦM���c�0����a�*�����O�8���JJ���ߙ���a��HV�
?0��t�fh������s>�#���1:%C>���,��|N�2L��NS���D�x�����_(�0o��ɗ���;���yɳ��ks8	�w�(**JJJ������N���o�}��&��?��_QYYY����U.L�t:ݜ9s�FR���Ξ;w.~H������������~��N�ku���l��LF������-+���r�H��VM���ע��Ԑ�9x<rP�Ju�ɍ�$'Ir �G��f  W��Hz��x~���&h6oV��n�hYG�R{�jFT\R����R�HNN&����W���>���5$P���V��>}zkkk}}=������qy����<?l͡��:���---v0ɭ���b�D�M 4MQQ�|t�k� �06ϙ3����OOOG��?>���n;v��'�|b2��x������n�Z=q����˖-;}}���͚5�.ɄܖH$)))���W^y�%K����_b��Է�|�M�?�E*�n߾=!!!�COOI��_�����HMM�4iҍ7�x�%���+|��W�XG�mkk#'����bŊ�o���u��t���<��+��Bj`�>��)S�ԟG����cq5(�P0�����*,.��
��ʤ��ifs���=_S���7?��к�rss��R[[����|x��|�]� �I�S��A��,$[r������B�J��E0&�o�Y�fedd��+Jc�
�=��s[�n���EEE����ظ}����׿���w�}I�'�x��W_�h4ӦMKNN�Z��������Z�d��ɓ�nwEEɰ���dNjEb�8���#Gz�}���q"5�����>�l�ƍ7�p9zd2H��I��{����_|qwwwCC����꥗^����$�v���>���o����/���+>>>9)9���JEH���t>Ngu��`�k�drYFvf��
��v�B*==&�%r�V:|�T*����WUU�l���8;��3&&��N��G�;`|CH.Pc�6F�

�܍�W�ڵk�,Y���6%%��5��O?���W_}u��ŧ��9r��?$����K3g�dY��y��Er+++#��z뭷�r��?\QQ�lٲ�z(�c��)���SO�ٳg���=�XQQ��W�^��O����$��?������?�A�S>��
7� �H8�;z��#�<���N�6����M����O�8�/��)_��\KS�������fP����2�˞�=U�N��[6o��l��cM�c2�d
EbR�w�JLL��t�!�@��3$_�r��|�gffb�@B*p��ҀQ�TV�M���/DV�NKK{�G���_SSSWWw����l��le!�0H]'..n
'GC���Z<ѻ�^�z�ƍ���/��RdD�X|�-��7�/���_��k�!U�����_~Y&�=��c�e�H��ӧ���+�&7mdSS�}�ݷg�rz����n欙�����^�U`�|6�t�͛�皽�t�8;������l�%7���m�&�k�S��tIIIbb"�`�{n���J���.P�X�`aɒ%�xJ�	edd�����JMM%͌�G�>���F���r���۷o�V�J9���n�!33������=t�Poo�iӖ.]zr}��x�D"!;�{���/((@<��&�.Y�s�m�಻��ñ������͟��8;qqZ���V�y���t
�k3&��2�
�l �0B*p��y�4M�K�༣i:77�����eپ��S�XRRr���d�W_}uŊ�V�������?�ٳ�}��;����$#����D"���c�����%].WQQ�H�!�\QQq��۷/�/���׍��fΜY�ګ	�(
8����%X]/[:���`�6N$����<nwOOOjz:à54��NiiiNN�B���v0:
��,mx��X�}�/���/������6lX�zuBB�����z�4�^&�
�oτB���KN��<c�&|�_|���_�l��bٽ{�/~�W^y+D|�$��y�***�u��fh1��4���W��W��3k���V�R(L&#��>�*P_���t�gd�68ĕ�������P	���'�af���?����l۶�>��{�^�믿�y���̇��Y�-(( �<x��lG}}=�1<�,��P(�=j���p������裏����ܹ��g�=/��idee͛7?�Ӿ���1���1����������k����#W*M&StG]����Cn�C"�\������x���P���]v��j"~t���"H%8R&�!��2e�#�<RZZj�X���r��h2�m�ҥb�����?z�萜_~�������3g���:t�$������֭������X�⩧�"�S^^����t�w�y�䉧��v��K�ΞS��3���T�����%�YVϪU�

Q �B�T�5��	j�4���=��T�TF�i4�eȼZ�SJ'��g�%�#�;--;Futt�۷�`Hmmm�R����o߿�iF@B*��]{���zSSSOO��n'7n�H����E����͕��۶mۻw/I����--_�|�ʕ


��{�
�������?��/��"�0w�uWRh�LR�~�8�{&�����$5�u�֑}��FB-�ZFv,))QT��Q|�A����-[��Y�Z���+W^9)+gJ�)�ˡ�
�9M��s�]�x��r�9bE����3���	~���}�ſDω�����?�a�…��xӍ|�O��-��X*���Q�c�;�|w766�zBWWWd;��noo'I��d2�d(+��C�.�oA�Sɐ1>�=MF�>ڡC�6mڴ}�v�^���o�X*++}>�]w�5k֬p�ŋ�������y�S�N%u&����W(?�����6o�����!9���o����t�M���V�\Irx뭷�y�w�y��ԺHV��D��1>��v[EE�{��O��������J����U����j�~�oǚ�0vp4Uf�Ml�:�����,0����XW�r�"�v)C���,K>���+W(�'��2��Tʑ�S�Sbb"�����?y���8���bL
pF�|�r9��F�DHӴV�5�"D�4$�i���k���֭[W[[������@1o޼[n�eɒ%�$�,==��_�����{��Ud���W_}�?!uuu]]]���.���#����W�����~��Ç��Ԑ�/++�ꪫn���E�����L�>���}}}d�?���>�,�Zeff����o�<fܓ��UJXa�8�*�s�5�K2����z�L�29w�圜���x��9���{��x�F���


��ZO�^������l���>����7����4�%z�^�~�ΰ��s�S�ThJE�&7������F�op��7E�6��:!i(-OQJ��8��y='�#0����F���<�k�p���t�\��+�����dIs�,t�QR�&	�Z��#��X,$�F�rn�k����:C8����>�pM���hn�n�Q������V˜�ӯX�2zL
����{�'~���`��l?�g����������|3������{�޽�
It5@&�͙3G��٨�e�6�����gT3�x�\� �$8�?p��N����	'����CPm�C�C>a���v�QQ!���ȄЉo���e�����騖~p�`\��a�R�'��H���.�K�[0l�aȔ�#|�䔚��V�iUȩ����p�a��xƇ��0a„�Ą��@RU�Ɏ_��"u�QOQr��fk��s�e˗/��#�W^^�T.�7�%''sg��E;ݮ�����v+�)c]bbbZZZKKKt5��l

0�`��E0�%n������{���z��T�X�� 8}2/Lu��Z{3����__^^�.l�]���?}�k>X=�X�0�5�V�v�(ұ�a������^��~I�<����7 �a����p帝;wnX���a�J��MTuKYDU�[~Y�����hO��
r�.�|Ed�2�:�l6��O�C{�T�5
ւ7���<n��D�ٳg�z˨��?��xE^���<A8��F�Ŏ0M�C���F��4�F��J����H�,;o޼����;w�ر#���6][/��L���@��+�
�P��D����&u;2��tm��뮜R6��|ݢgF RSSM&Skk+����� ����t��ֆ�*€HS?��i��<�qEo?y	���'�g���B�$#ON3$}�F�.�&��^@7:M�d����+����j�JLL��;ߙ:}�W6h++s�,:�%N�-��DT(��$#�ч�O%�Le�/v�5n����Z�S��g/]6o�|̅	�`Y����h4J$���|@L0�έ�Z[$G8}8�,"&�x։Oy�e��$8��q�:B5�NQ__[U���j1��_&����X�bC9�"��p�T>^�4~^��~N��=�8/�fD�EE%Ť	������v566��⌌�(��?�(���
B*p��V����Í�������x���8����G!�gY#�H#M,ˤ�H,�dijrrф���\>���RAH!�TF5���p8�@����N�3Ј��YFT�L&�J
�L&�J�*�
+� �2nB*�K�Cȍ��i1(�X!�3�Tb��
@�R�B*1CH f��!��!�3�Tb��
@�R�B*1CH f��!��!�c'}��|�Q��`li�[޸��n��d�=�g�4=v����U�ME��m�7p�zk_��IS�DC�Z"u���ڼ���5!%����HY/0�BHƘ=�m���h���ה��(Uc�Z�{MW����O��%�G|yώ?T�D���n�������U�|�/{�wO�>ɐ��!�c̴����#V�Յ�z�bL�3'�o�lw�u2�}��u2Yx� �@��y�3g��9�1tJ��Ĥ�s�����t�9��ڡ=�\/��_U<	�F��!�cL�ΰ�;\~�A�+c~X��K�Q�ٜ���gּ�sb�2�뗯��ǭ�+���r�_8t���ȕ�	�T�MC�j�3�����
�����[�Xr��<CҎ���&I�f&���6�Q���ߡ���'�ɡ�����ivؽ�@�J�o0���d�������z�r���h�ⱱ��ⰳsI~�\$&[�������S�Pfhu���Nվ�u���4
<��є�g�-�]��=� ��:]���>�3N.���:Q�p�kow:���N�ϧ�����eE"MvkEg��LMMWI�{;Z�5�E�l�anZ���r�����fu���4��<9-����<l6))�,��K��Ѫ�˳���&���a�]��m�~�H�f��tw ����l�9}>�Z]dH�3�r����l�kd����G�zj{L�S���
���ion�w�����B&t�6�oGG���a�ytR�N�.MHNR(���)���1:��v���Ԑ e�V)?����}�(��,�`zJz��L��
��v^��'��51!�H�_�T°J����sTꇷm��3S\x��9�W6#��_S�Ž;��(��J,��h�8�g��i���h���}7�6=�x����~纵M=�s�r�w��O��ﺚ.���y�a�*�]y���4Q1LS���w���)���'�J�"g�Vu�۽����N���]i6QE�Ɉ�=\>�G��{�o��w��m饼>��B3�Rykv��/�4Y�$	vt����亮((q�|;�B��P2���4�7�D&s���yj��w�Z(���8�e�j���
~uѢ�jg[�U���D"�o��}��!�<Y>�Μs�TXvSw�����-�;9�B�piٯ�^9�!S�;�|��B���W'���N�qw�L���<��=���եiu�Nx����g�����R�{��F�U����Khvww�#�7l��ܞ`���T*[����%�>�q�g]�T(���7�����[y]�&nH���������y���ٹ�N�`H�a�[@Hƍ`��D$G��6��`��������`
���7xy�$pz<w��29%mFR�����7|�u:IQjz�X�QoO���]�%,�߳��TZ���Ho;	�|XS��o��ҟM�EQ�Û׿�0U�<3+]�19������G����D;�	K)�R���r��'[X�k5���%��y���m��'wo_��1a�YWe���4-!!O�aiz�����x��ڠP�~�%"�3�T"���'�-���8�:`����C�g�f\]XB��r���wtwQ4=�`(P���m�6�K�@�eW(��,����!e������(�$�F��^R�e�M�Z(���{�$&_\��pܿ���ݝz�ria�Z"��5o��g�Wr���ҩ$����Lf�y�T���H�t*���>M��I�D�*�0��jݞ�N�TzMA�F&s���z�:�&M�6ȤiRY��C
?C,�J�)r%;�О�͘���Q��m�[��m���>pqrڏ'�^�_��H��T`�����|�m��zj���j�{(0��s�*,���#[6}�TGy<_57�HJ���c;6y�n�T���;&O׈%;���Z�YK���{/��[�_��}{*��k��a�Tk�^�z�띝�>/#w[[s�@4���W|G#{8��s�j�/�+�"�`�� z���/���fq��۹��u5m6[Ew�!��&L��)��3��N�;��Y�iE_�W�J�xn��WM��#�ط���-M��J��};w�)��AQɃ��e���־�6~�Y{�_k��fd�*���u7_��{
Vk�R��˾��T�$��3'��~�h�~��ާ�x�ߵU�O��A+l%�I~sт��fR�!K׮yo���]��sӔ�pN^�/�hq�¢x}�V�k�e���=&��b�e�����p����'�j%ҧ�,_[_s�W_PuU~у�sY�N
��Z�d������>d�\�T�j]�����ӓS��q�@����~8yf~��@��k�4�*�~�Vwoٌ�8����R�����������1�����|~�B���f�����׻��E%��V2�d^�߿��(�먩���J$Z��� ��h��K�u�����5�nkk*��)�����1]�KW��+ե�ĕJ��0t��"�\+��,,�y~g{˺��>�+#F�u{{\��l'%�=uV�FK
��SrC�j�6W �ʮ.r�"��sk�r���O����
q�/ƺ�fR,%:��	��%c��8�*��O���Ĕ��?O�����w�����|��JQt�B'�o�'�t��4+1��is����w�t�T:���S��$��^���PJȡj_w���̞m���%�T����4�:C���2i�&��{�	h�,K�u	to�G�0^��
P��x�Bi���(�L�_��Tj�HQ�>/��l��XEB�Z�X�]|p��o������~���ٿ���)�߫=J�J�U�I�:�58u� <���{vς�F��}VkL�Pj�:D#�R�̹�������lvu�?�{�-���?P3Q,k�@ �d&�
��I@Tbq�T�HA�s�ZBa��jm�@�<m|*+����C�X#�.c|�z���TE�M��DR����8��|\`��AN�����OB��R�{�6[$��ljb�پr?�9��=�:�5�u�ES�j��ʦ�hj��e#�	��3GzM�;��4�|��Nq~�e$�\����Ż
R�qSai:w`z��`��<��V�c-V�#:�F�����
�F���ߘ��ת����˫�|��@2]��9=1�4ʳ���"�/ʦ���s���.����@�Z�P���g"!�a�Et���׆��L�,����t����gC5B��+gE�R��P��B�^+��%br�vW�������dmv���ȍ��K�rv�b��y[��4B�؋T�-vK�J���*����8A�<_���G:Aΰ��9+|0F�S6��]m-L�}�=
fc��_۷$(5�-\5��]�߭<tז/]�IvrU�y��-()1$
;�0B*pa��h'��o1vo3�<�ϭ�&+Œ}�οT�(Z$��OͤB�j,�/�ks��ݽc���X��Ie�`GyJŰ���j�K(�����t���X���’X�(#NYc1��;ɡ礥�?#��N��V��a��O1\�)�LHL�����qώf_��Դ8l>����gd��T�c�*�z
�'P�G�P����mio�u��ܮ9�Y*�_�u�3]��N�x8.�l�R��wuu����'L�~B��?�*n��c��+{{�]��`�v���x+bN
5�,.����s�.,IU�1���T�,IY��-��������7ӊ%���-.%�L�:;��'.��_fH^��F�|^�[��7-���?���n.(~���?��z.��e,{��|�jyb΂�������j�V$ꢅ/��~�s�N&���~K��b��'3/����p���C���5qUV˾��
>7]Z��a���){:�:�އ�Z��V�$��jޢ3f.PC�w�M_�X����˝[>��(��8�?�.��ߗ^�|�3��M3=.�w?[c�s+���
Ͳ;�+Qb���x"�F-U(�n�������#�N6$�p΂pyA��Y)iX5�1�T.t� P>/�:"S��6��^*p�#��)}��˲s�X���w����!8LE,IP��(*��̹�h�B,�q„�-��/�TT7���R,~f�R�T�añ6���^Sp�X����k'��l�?�i�\p�p�4%�Y?B�u��(��L�����{�Ƕn�X�(^�<-��:J.�B��ܼ'� ���#�~��O$[��KV<�e�']�:wu���U(o��ݢ%��+�Bn�\����ɴ�ر��?�a�gFy�c9s�w|�a{��/|=٪��\r�o�oY��v�d<���R&���70��NJ���9�t�T<�`2����ȱ�B�����T��ijl��Fu��X67N��IS��+"��u�G'�=�O��n�1r�+r�Th����5}!�����y�/K/����W~Q����H�4����}��O8�x���&N�(#㳆:������Դ%�C�rU^q�l���2�d^VN�C�*�_�^vUAѾ���!b�F�(#{�)��
�o�/������.��V�KQ����i�4�ߑ�
���e��![�V����hm�z}�jIn�Lf�
2�4C\�g������jTj��)S{��8�b`�9�7W�Z�P�����v��|C�5ERf������/����j��N�LaJ�\$JVj�=7 ��R")e�����y<IJu$���i�\�A]M{_���R�d�Z�5yEIJ�}斢	�j�,]�9�ӽ<�(Y��&-t�rV����6�G%���0=�+�����c�9�n���
��y�1\Th"��f/��'�lw�}qr��4����D�|��#_!jx:T9�l��[��w��M҄g�B��mr#��0�q��ZC0t�%���Mѹ
��NHJ�S�R*ū�]�~:<A|��J��zlwG5�遇�v��� f`֭Ȅe��͜0k�	��H��jwG���������FE��
z�
�'�S��0��l�G���Z���qj��
pH1��[0"A�`��B*1CH f��!��!�3�Tb��
@�R�B*1CH f��!����|�?�ڒe˲彷;qvI!PhR#Ph
�J��BiC�J'���k�R���B�@ ��8�I�x�{[�dk���?�lE������
F:�=w��I�<�{�� l��
!��!�6�T†�
@�RB*aCH l��
!��!�6�T†�
@�RB*aCH l��
!��!�6�T�&BLA�r��6�׹"�Tʲ,�"�*R��*����a'��vh�j��F�y�DFOs�7f�+g�Ŷ��mX�6�-��Q����;q�	L<0%�v�	���W=t�QގecFO螎��wa�s��-�"��N�>XTT��[@H�ǍR�� >�̣���-�cEg�%�Hs���(�����a-�=2����豒�/;!!�1FF_M�g�<�:8۸�8c��;�i�!��-%�B�=��0���
}�;���~:l��^ݰ�=�ZΘlh�c��1���S7s�ݪQ2��-�����B*05Lȝ��{��oGo���n�og�up��qq�����b�{6�9�{k#�kkDz/�8��O��93j�g�s,��5sX��5��n��Vf�q�@u%Pcc-t���9�8�l�|4J�C?:��ǽ���dz��q,;ʞ��?C�1X�4۰ˎ��"Q�5��N�a��5����	I?�tš?�D���T�O-��Lg�E�]K�m,mw��G�m�{_���k�]EX��Nh�f�\
V��Maؼ:���@�tWm��:J���?c��J����`�~-c�*��g��p��&3r�j�R��c�E�;�Х�^
��W=�z�t|�1�|���~��U�{-n,wA�1ܕ
���Uq��8��nX���R#ߩ>�lvG�1@He��l�=h2J��@븑��������~������SFJ|P�a􍤆���tP �0�>��ă�1�Ay8��Hm�U�A��AE���^�t#4���3t�a�>�^�;c�԰Z؆��v,oGIh���o�]�H�1��SC��y,ð
����f�sN��q'r�{��B��YX�M���=҂���ѣ3��^e��-,Θ�X�?�6Jk�3V{F�#
��;���T�w�'��8GP8K���L&C&� � \��
!��!�6�T†�
@�RB*aCH l��
!��!�6�T†�
@�RB*aCH l��
!��!�6�T†�
@�RB*aCH l��
!��!�6�T†�
@�RB*aCH l��
!��!�6�T†�
@�RB*aCH l��
!����0���F�@n�4��
�������NS���vu�].��ht�\����V�JeTT�"B�T*5ZmBB�V�������R����꺺����n���r1��N��#b<�������z���.�i�x8��O�D�������������T*�K0E!�p�jhh�r�ֆ�f����uw�D���Z��UD{(�0MQM��
�
^�A�2A���#�}{dSݾÇ���E�K/[��h�U0� �p�ikkۿ�=m,��(��4'TR�?r��Na��a
c���r2���9_���d��r��:z
��:Y^~ђK�Ν�R��W0��n��\�:�]�vpJ�?vߔ��^�yhO���k�"��0�z�%/}K��==)4��9�����)J)��,�i�d2m�⋲�G[���mY�� f�Տ����h_)/��)l7'�II�/^�h�D"A�������*-=��|��RM��?�����|�WեBL���܀RA�
O�ԻC����x�r�+ۡ�F��|��6��N�f ��^���{0y:���~:.@
�0\�Ɓ��"�p��R�P��־�;u���hEivr��W�byS����F.�ɌΉS�n16n�שS�7�t#������
��@i�6��I��Ϗ�U�X^`K�I �B�F)�ɍ]hr8�57�tcZZ2&9�T�9�����o�y]�xwfl��E��l��Z�W�m����M߾%??9��,�ƜN�{ᄏ��O+t�����aS`�by�P���*��Ɔ
{��E��d�V*Ӗ �����ӵ�cT[�I���H����h�=��_���Z�LO� |�u��{|���O�����6��,#�I%�p�����R���?��Ok"v�*0x
L-��ʗ��ZƳ��w�F#�&!�T�����w�~�9B�+I��)0��� b��GWwu���[.�y�
�R�n�v������ܟ�33��*r�TJ�2�lU�mۮ��J���s��t���<I��ׂ�3g̸t��D���B*�MYYYU}��F��S9��j*gԎ��g͚����<9>�����?FӴX,>��n����SO}�k�up�CH`Z1�L;�}��<��"�Ӂ@��*Ӻ�۷m���[I�Y2�<O��2�R����5**R�]�0������R@H`ZٻgO�����D�B<�VZd��8��GgϙSXX�<�X� �<�P�
g�d�3�/�H"""�"�:�G�>������Q#cTZ�6X^�*V��pۿ���� C&�H$
R3�@��0�
�V*�Ɏ�v��l3�1$�׉#u��H���t�+��>��������l���N��=p2��
���(��+䣷o�i�����t�E����U!?<R�$!>��L)V��\�R��B*ӧ����dTJ�e�IR�*�U4Ê�)�p�S�K
�r�&����pw�9��xn�E��L7�9�ұta`E���Zη
�a)�#)��`߻��%��dY߂I�$Ű�M�Y;lN��;b�0�
-�δ��+P��b���!��U���?|��^�t,A0[����O3gn���^�i׎eee�/,�;+髾�яP9�Bx�?v�L&�3gr ,�L�����5U=)GQ�Hˏ�H�+�����A�N򥲫���cd����t؛�֣6�/�� ����H͠�99����i;a3�{\��9H
�Ƨ���g܁]]�;�=��s<#�|3!=+*&N��0���h2�:v��ˎ1���\�T~yLFvTL�BI�t���l�9`l�o6�C�64�N����[�'�U�Kt)̐<�v�:��f#�@��ژ����3n�^}�v��GU,c�VV?Aj�c�c�s����wޙ?^II	?d�j�aȩ�qc��c�:��H$ڹs���߸⊕-D�Ommm]]]�k������!�\p���L.g�*f����q�����t��_��u;k�����{@��WF>s���!�.xJ09F��`g�*�����<����r������]v˛�e�o<I����a7���$g�q/���jG��
k���x�\]�d`�������;y���=����ߓ�{Ѣbmܠm���}��7��ڽ��'���?��<��Ե�ӍMn׀uqܢ��g/�z�J�����a}�K�:(��>{�myg�)����ݤ��y>�ڤ�����Z�RRS���b�y~��sժs�"ud��F#�|���l'O����f,����K�` ���'�ZU�h�]�izMf��?)�]��CQ�(e���+��Z�"'2�ܒ�������\Ƚq�v�r�8A1+6�W]�ْՋ"�|�a�3�>R��~W����kǧI�MRTQ?�}�ˮ[�qu�{ż2�?/]]�04֓�ÒK_Z�2&��'I2ŕiy�)ّ1��ӆ�������"�'פ翶�����)�ˍm�'K�N��"��.?q_��|��j�W��*����V+�g2�jkk�'c�V*pA��l555�'p�'������t\�`����ijn1%(|�\�I�L�����e����.~����2|��z��ر�6�?J�J]qB������+�.�ߚ�ux18�/����bijD�ℴ�
C�˓�� �ܼ}s��=xh�y���@Dİ�+Z��� �K;�߯=��oឮJN���YZ�X=���*ʍ]^�'N�^�Y�K�/�O����o�A��;�H.�Ōw��Hyܛ��ˍ�^�7!"jyR���$2��CO�pUlr�6!8�lƵY37�׏�"A�;��఑�d"qqL•i�RV-S�l�e'L�M���{^�J̰�
�f�������UG)�fgGŞ�B#+�2�Y���Ւ��?� ��Q���=����>����.>>>**
���
@��������\0D"��W�~ꩧD"|`�06��LƟ�kҲ5R��?u��X�m|�Z�*9�p�aj������N��|�8I,�#��%j�Lʊ~<璽Ǝ�6K�"����)��oTZ�h�J��⋯͜�s�ޛS�X�j`�e�
m
_��uݔ7+R���U�!*�a�ˢu�����hcgs�@��F}�%K�[��ywƌ_V��D:8��Ro��z���}[_�h�m�?���~Q��yn=���ӱ��1{f�i̮���MjD�eI��5q��-�pYI����/?�c��V,�����.ch:#BS�����}��BtUzn ��h�y��/I:�;I��K�v��j��\.�B�/>�� ߣ�����4�t:kkkKJJ�l����.R�4+++777??��6�6�
�Ӊ^��дEDO��i9JȔ��d��:�x~cu��
��o�)JK�6�7��X���t��tՑ���7�s"c�M�����bI�R"Iy���_�j
�p{^�"�zhW�VD�%)0�!1͜��@��.NQER��5�sGvnlk�
����Y��^��ؘ��fKe�� C_���S��K���_��^O�T0�r�}͞On=�Eh<��ޕQ1K�2)�`4�<��Xw[ $tG��Qz�Hܟ'b�������(_�A�"ŷ�}%C��ӻ?yjVe��.��jŷ~<E�s(Q�B���{zz2�e[ZZ��ڐ?c�[�pA���x饗A ׌��7/��2���4�q{8��N��6/wgnaZ��<M֞7�kb$һg,���ݺ��_W�Dg��i�a^�/�)�8'�����$����v��ES�Qux��׏&Y���g5S�_8AH��4q��U&��5W�-�y�2L��wSͱY1��9Y��|�攱#��I'O"[�7�jig�:�}mjBf��Ԁ����͕���@G˧���ڊo��4sIRƪ����c��%�'�`����0�zxA8XK2����D�	��"�J����kkkI�K"������h<u�԰!0rO�<#�ɐQ����ju�2�R)2����d�	;y���!dWgj���U�{��^�[rg�ifUz��N�8�K���L^o�Q��)U:Vd:�Rt��b��Ub��jT�8�NB�D����49i�r�;��m=N�+cEd=�H��>�K������0�;��3�xHMxYd�%���qC�ۧ�Q4������Y�-�ߜ=�t���,���z8�
_�&�7�s������z���S���-�Y=�9!!_����Ξ1c�������y��	oLB��M���Ϟ����<����x<ÆTh��Z�������hv0:�T�Q�`Zr8��lf�I�e��:>�(�ײ��f��p�x2���oe�P��suɫ�Iou4PcgT����Y�c����0�ĄH�"��QC�@W7l�B�Oo��C�*5�o�ܮ�O��H2]n�kUG~�o�,9�����=�z�zуys��v��"��ܨ؅�i�u7ZM_u5O�S��P�y�J%LIII���o�y���^}��\�`�B��'0}��w��՗_~��{���Ĥ$�d�������0���v;0���)%%E��"�F��
\����k�z
)��™X��������2��x���JE��3g���&��X�+��&����aM���D��
����d�lMl�]��n��Ƀj�����}b����P3�����u;o��f0����%+"�]��}�^������iyQZ
+����W%Nf��g��m��W�R����Xbq�"$�DE��Ĭ��CCj��]�������RkϠ�&M~�@Y�b��a�bL��eff^���^VV�ڛ�Nx��eeGW�[iii��I.>>~Ŋ��j���#Gec�a,X�T*?�\��@H`�26ڪ�����N*	����r���z�!������O�=�����&+�t��?;ya|*�7t���KN��a9s��IH���!�
�.���_�tUf_�#��^g6��&OӭN���u)���u�ɯ�Յ>Z���I�X��������C���j�Σ����.t)+4q��)�th��7��
|�7��pURfvdߍ�5Y3��WBݘS������G���7��M�xJ��˳�oLa|��A���d����d���*���$�)A�x�t�J�T�T*d�X`������ӟl6�(
j8�KJJz���u:rlJ#���'�ܱc�/��믿��\����y^*�����n�����l6�|�`�xM����?I*ʓ!���w��#^��c�kO�;�"%һ�Kv��:�����|#���}�Rf���w�ȿT����-5�$�Fg�z��
!�6[&[?s��Ծdž�#_Y{����P]vYb�N����O.��k��3SW_� �N�ʞ�}��(�?+W8���a)����+�d��H�j���E+��?����#�J��9�b���@�n_W)��;y%�}�=�h��̏��5%�7��
8���C�[�V������X��4O�_K���}?Y
�<�BUWWw��|gg�&2!�)gЍF�w@H`:����h4[�l�F{���˗/���AvM�$���`�X�Εz<��z������/))9��"�1�nw窦$������&��{��.UG_��x�Z��2};r�I
yr�5�,�%g-P(��~d�.��c|-5����m��)فx
Y��#���M,�r!}T"����hJ)���5K3
����S��b�a_��gH�����Ģ+h�}�Xq�[5ǎ:��G�Tߘ=sNl��;_�)v�W�-جo]Ry至.!o5�
�ߴ��측��Ĉȕ)ٗ��N.�Y��G)�yQ��N^���ѝ]vk藈\n/�S�M �͚��
j`��S�|y+�ַ�G�
4�de��V��js���N��$�H"��[?2�L��466��A}0M&ӱ�cs�̉PG�$$�sss��Y���ǎ��Rʀo=�uww'''�k' ��_DD�#�<B
=��\LߍJ������>��>=����D_��$k<r�HMM��ʁs!R��pT��������&5'V�k:�f7?slo��2�Ǎ�˒2�bI�*����Ҟ��Ce�Q0���������5��i���%��ݜ�]-��~^�r�g�c��j��DD�Q8�����ŋ��Un�x�&�k�Ց�c�R�Qk�}�F�rŰ�$)�I���|��W׾Φ�T�
�*��{q�j�`���cS��X���lð4}�f�ա��wٵ
�xa|���;����橀�py�2��E.�GGGWVVvvt$���~���~������.[�,0�f�=�̯
����O��߽��_��w�V�����Z�֘�XD�&!Rn�8���Y�z�g�B*�5IJJz��x����A5m�狊��^����v{}}=)�����Pgg��h$\�F����T*�X�iii�X,$5�Z�R��yEN'R�"���/yA�"�Z�Ւ�����m�^����|]K4:�.�z���R�&3��#	���]]]d�����$��ʤ"��q�6'�՚[���|T_Y崳K�췘�l��f�o��u�s^k8IӾ�V�M���X<β��?��������6����&�}cͱ��:�싧���������w��pw�/.��tip�?l����}����~����[0#B3�S�����??��R�niO�M���
������\�۝#���;����I_�����Ȃ���<t�"��3�j�[KMhf֕�&��E��Ŭ���!���v�\�wPH��t���v�6�5b�@^���3�'�B�����Ɇ���
�HT\\|�I=zT.�����( ��)��`�ҥ7�p��/�L����
)�����~�����8��؉'�������7�x��W_��/jjj�v�N�[�x��;o޼�S���z�WȂ����T*���/���|�;��w�A��d�`�~�zr^�R�W\��oS(--%)�"Tss� iiid�d��s�
�lܸq˖-uuu===R����p�ڵ7�t���<y�G!+"3?����[\\�DT^�@�;��2̞�z��!S퉡�_H���Zy�꯭��,�ᴿQyH����4�a�6Xz��=��������
�!���{=Ͷ�Fk��q�1�S8��Ts,A�kq@�:L����4Vm�n�NzA^�N#��M���-֞/[���l���aH:� <[S�����T_��TF�6�]͖��-u��[H:"�y���G�׽˟�KU�r�����|��Z<N�HRc6�Uy�|��B�k@}��I�d2I)J"eC�AY����v�k�^�)��+W��V�����=���kh��ƅNd�<��LZ�2��"���w'R ��^?!�FR�hhh0��$���Xd/B*p��B�n�z�]w�E�)���q)��z�B����;׬Y�C9��E"R����ߟ��q�e�Y�֊��M�6�����5k�H�����}�ݕ��yyy7�x�J�jkk;v��믿�t�҂��뮻����O>!e�+V$&&���L�O�Ӌ/�h2�������*r�����S��O?������|'8�޽{ׯ_O���!�D�5~?�0���)�B>����������?��O�	��>nژ�B�t�����biz�ٸk�G��x�˲���7��?y��6���/��?Ѥ����/���2(v�\}95pL�@�����e̝}Ȗ;y�GGv�m���2#Ō*춟�GV!�4�{2��[�X���ǰ�-�������!6��׵��K��כk��h��t�s��?מ�Ɗ%�>��I0c���4s�a?��!;HVf����7J.ّI�P���.olJz��[||<)K��wLl�F���m,�w�,H���Z[[��n�$���vR8III!�F��
�d��hn��'N9r$P��K֮]�&�Rp���v�\O?�49
��	�<�HYY�����#�j~��wIYjժU�����;::JKK�.]JR~衇<����F�w�I&�.�gϞ_|����?��<x���l&k|饗~�����ϟ?�L���y��g�\z饿��/���(���>{��Gɧ�aؐ�֭[���555������=�L���UQ}\�S��K���3P_�@20!���
�Y�aǶ
�?�A^�x�E�M�/��+��x����
�Ec�_
#�o�G�AV4��,M9�j7�������-..�f�n�~b��6t3"v�p^��{sssuu����*�}�\�G)l��6T R%	644�"
):#�!����u��ܠ�&����u�ֵ��������%�!���w�m��y��%%%�>�(��{��)�.���J�����`<��ߜ\�zuh��^�l�W^y�`0�}�ݏ<�Hp:Y���M&�k����sϽ��d�~�o߾���?������RוW^������B7 XV۰a�3�<c�X|�~�G2vFQў�7o�O��(_&�9,bgDSZ�7�bf!3�->>A.����#S����բ��y���]YY���C;m�,���UZZ:lKmR0�	d��G�{������H3�G��>���FJ�����L[��w���L�\��u��W����?�Y�nݢE�p/��
)��T\\�P(HQ���}��ʜ9s�{�
6��g���:�.::Z5�gd�2ӑ#G�k׮�魷��[oUUU��H*�~����xJP�s7�2�So��ƓO>i�Xn������n�DIHH�FE��8���
�~���59��2G�݃����I$��'.�|b�	�\������H�R9�G}}}]]���:��n�Z��.|	�?J�4������������t� �B*p���o�m�\._�n��ٳ/^���#����
�e��������
7�P]]�q������?�|RRI'//o����,}�z����#&&&''g见��l6���*++��qw���w�ۻw����ŁrY����=e)>>����GH���]��d�_>�����R���F#��OTH�n�5��DFFi�R9or9���#W�a��o͠煍d���&�v�O�8�q�X
���L���bŊ����g�a�wχ�*O>��o����/[��z�;�׿��{�ޖ-[F�Y&��D��3����p���"3��A���H�|,�Bf���$�=�ܓ���k׮�{njuě��bq^~�����up�s´S�m��+3���g��4����L&��9Qi���N�N'�`���tXi:///777p�:�R{�^n8���F6l�,N.녅����8pB+�)V�F&\���*�Tz�y�t:�=��K/mٲ��_^�pa�yv �A�VTTTFFFcc��ÇW�\9(��z��@f��Wl


��꫃�|��g�$R�#e���7�tS~~����7l�-zB,�h��C{:���r
A�.8�ʲs����������!g)55��ĉ����I�\���B�(**������&�#���ZO>%�a�-n��d2ߒ��Hc��F���,yM�{NN�сB*�)�P��J�L&[�h�D"ٳgOss3)�j4R
������lLL̲e˞����������OJ]d:)E]~��$M2��ꫯ~��'W_}����C�y������ΝhEL���O=�T��k׮moo��g��_����#����W�l��?������Qja���aNRD,��rd�����$���@
׻s���8�'>>y{ޑ����|��q\lllIIɰ��ݻw%�̚5k�6Ѥ���A����I"///99���B��`"����7�p���ĉ��fR���ڸqcoooAAA`d~R*���!%�͛7�<y��S^^n��D"ѝw�YXX��_|���'%���;w�s�=�mqq�<Xג%K֬Y����Cmذ��������g�y��G|�����<�������v���_{�,��㏓�q�&9����򛺥<�)0p4=����K�_���&DZz������僦h�T&	�D���y�%����F1���I������X�)p�C+��Qg�8����'��y��r������ۿdddll�T*��]]]���?��7�H1��o���v��y����t����_|q�ʕiii�=��3�<�u��;v�s������.]���O'&&�]HD����j����_��L�E^���b�j���_�E�؝@Ol���N�L��_��$�g��ȟ��g�>{$W/]������.˶��G����y����s��GfL���$��
�D%���F3t�N���<T*�ܹs�ź�����h�h����C.��d
!�I"%%��� 2228%Р#..nh���!RZ"���D"����}��;v���www������n���o�8/^��/���ohhp8K�.���|�`���_~���޽{wcc#)E-[�lɒ%7�xc��K���|���7o���4�Ldwf͚u���\`�T���i�Z݅�t:�SO=�~�z�d��'��#qN�K�>�BR)c�\�,���i�M1���v��O�B�V�&��J{[�\�TG��֓NBB�V�����'`�`R� e�� ��[�|�?�e_x�A����m�6���o���(	�4{�yk����B1윗�z\�w�r�~n���GjF���D��k�٬T*=�1##��w�vْ���?���bfշVw��u������EP� ��/6:2;,�7j�a `�O}LLLw��㸰��;,A:::�����]e�#��ٳgOH��Y�f��	0�
]��iO�T*�Tҕ���)�
d��SQ��(r�w*��o;;R��V�����S
9i�-���E��_}�5Ȑ	D~���z���8��,K��G��*���$��MĈ'����BLK111��xc&%���L��*0�p�g�̭힙��j�j�9��Ri\|\���
��^��Cz�
]60�Wh���d6����h�t���B�����12	r}�E�-�V30D�Џ��^�	��6�x��:e����F�����|	�|�
@�����ׯ����&�w{��K̢L~M�4;�vgFjo\�6C�L4�e�tq�v����I�y���c�J�Ҝ��A��(���?�ip��h����j����”3��8�!8�B�Y,����)�񔀡o�C#)�O��1�A1��_*$�24�|z#e��X"#�=z2,��i�Zq*�H�͛�q����#qe�Ѭ�r���¤.Z��O��v���֚��\�s$:Fk��BC*]t�k^�DG�����;��P~~���j��h{L&����#5�8�����l�ЏH�2X'�ػ�\�R���R�.\�|��_t�&m޴IV٩̎)U�XQ��8���Ò��S2��ƛn
���Ċ���<�c2����OA}]˲��vo2���M@�N!mmmeee�.u�_`:���ܪ$�.Z�(..�0
tL�����w��s2��Tv.밨y�C�n�4����T�����;��皕+��n�)�T�V+���;�>)��(�J����SHzz�N�a�n>��������+�ѡ�
��Q����㮻>��偃)�����j)�2h�����N��=�Ք��Zq�5�\z)��\��D�,[_W�zi�������˵���$���T�r�

zzz
? �J�������g��
��B�Pܴv휹s���}�h�J|2)�ZF�nR��^_��hVd<��Ӟ�a���.�b���e���t)i�o�����q$B��p\MMMьI�I�թE��fgg�<yrh܄��|<�	`L��n��\�:�g�9Y�#T�x;�k_k4A/;��ï�oQ�"��_D�==)4��9�����)J)��,��V�帪��/>�Z��`��]1]j�A"j���髬�?Y`η��]��r]���I0ڵF�N$�ST������s�vw���+�����?0�J�����9s� W��˵gϞ���Ш
�@���͞=�eYd�$�n��*�UZz`�t�;��L�L�׻��O����E�w��Mn��?X��C�ݡk�C���Ϗ��l5�)��s�
��ӻ0�W}��L�����P�'����q`j��=\�!�T�E����jjN՜j�h��d��&�JE�6��f��K

��,���^N��^N��*mn�ե��Y�Y��y��YYYȨ���w��*)�*�\�̜�u����r�����/�X�R!sRAHe,!t��@I$����Y�f���vuu�8ZVw��hu	.�"��"���9���لTFD3R�eZL1R����˻����P�Ѡ�v~)������������`H%==_L��CH��0��///���>n��`0�]�yM��@0.�A.#"rEdd�R�$�wM�r`� ?��g�b�P�V233�'c��
��ź�8��`(�ʂ���D.���CH�•��'��bcc�aAH���0��ٳ��`R���dxl�xైaCH l��
!��!�6�T†�
@�RB*aCH l��
!��!�6�T†�
LI.�G&L'�!�%B���f��n��5y�7͘5����Xz��K�U��a�Vk��ESTJ�Z.�y���w�u��LLzd�%,M�#�T`���X�����)�eYF�N����Re��?�r��
9O/[�5��{ި:I��w���$.q_[�O.��quv�m,N0�1BH���(
E���T��f^>�9iw:�YyJ�80��q�z{)��vؿ�-1:쵽=�H��w�IUG.�����"6>Iq��{L;��ȋ�ظy	�8�B��
L1s����nr��c��Q��i����M}�:rojf0���f�ƶc��7��52L`}���7V��b�M��DIeg\�xWǺ��'/]t�(!�fs�R"���q��4��
�����wp�P%Di*�;
V�T$I�Ґ�6����h�5lV�X���N����U�F���jU���xg��Se��x�2��P�1���/7�m���'IY�Li��v��&�-J��EDd��F�`��mw:em��Q��^S��L^�IH6�\
&��n���3�c�
P��v��G�۩��5*U�&&���nk�1r<���QH�d_��D$J��ʉ�M���`��L�V��Q�����v5Y��,m�H��V�z���<4� aX��sҨ7Z�b��?d�7���f���ZUD��/�)+�*���p�ŒB]|����c̊�&�գ}/ϛ�6%��m�8���Gv��Pn���z�N�\)WdDjTq���b�P�<�z��=F1ä�ԡG6`����Gfκ"3'/:v�D�R�0�ۭ�7m�����ZUA����DF�撥:e��;�����r�)�ɉ���%�V�����C�^oi�6J(�l�6����ۋJ<��/?��TG)U�֮+���U8�|��xW�܄�k�Y8�/G�Yq��Hq^�e�՚;��q�D2t�O�6�J9]�
g����h����C�/�EQ̣��v�mko�x�l��O.Y��7쎿V~��vvPN��=Mk#"��+|t�H��M��~��t�V8�㸍���L��U��������\���Jw�����j�8��BN�����0J*��T�곏D�o�N:��}�����%�6�e:���o՟�<�%:���9Pܿ��^��^���l$�yJ,�8&�G�^�WH�p��|˩�\M��Esެ(+�wn^}õ�я~�۵f�;U�(M�]Hh��dxz����)��o&��Δ��/]��W��mk�XR�^��z��va���X�18p#0��h�ɮ�~r��eYWe�fDD�����᫳�D"�t�ɸG�+W0bI��Y�kz�-R�i�ZSJ�X��v��o��yi�.O�kCq���O?�1�)�͋P+X��Ͳ��}o�^�0�͜�:�`kW;�qo�9�|X[u��D��Y%2�����`)َ�ju�\��t�5�/�����=d�iJ$�ļ�߼��2�)��ٲ��e)Uz�kv�J�:߳mv�.3R3tǛ͖�N%�#Ӵ��)��j}�P�R*���K�1�T$rIe���P.W�JEI$�Ng���ý�g�%�H��G%�����u��5ɽ�����1<�g���y���i���^��� P^�[�ݜ'd���]�{��	
#��:]6���(�ƮH�"���G��佺S�D�(&V&��ͻ;Zn��_b�ՙ����
����\_����H�chB�)��&G�DE{y���}���%�,���K$^��٬�����qQ^o`9ϳ����iah�w�I�Po�:y����ښwjg>0/%���	I���
L<�6����R��������ݔ |w��o̴s�������n�X>�?���r����jz�&�ݜ��-��*6��xh�n��ؾ���ݘ;��OYz�US���E���n;u�r�2�ڥ�ه��~u����򄔿^�*K�i�Y��ӏ��X����+2��5�H����R���n��(��>��:lH厙��.�7�rJt	"�����ѝ_6۬[OU�hN�2����7�x���^^���C��VS׶���R�Y��DZC�j)V�2>�.���?��خ/���O=�09mAr�'��p߶-�K�\��ryZdԠ@�]3g�R0�a�*}�$�Zq|Ez/�T�����Y�~~��X\��z�G�O��O�۽01%��^ǥH�ߞ=�X�����d_*��
}ŲK�?�v�\$��'u5)j�L���j����Ef�9kƝ�Jd,+�K�2�M�3ɿ2}�ǵ5GZ���l?Qq����ko#Y�o �ӄ�fDF>}�򬾪>��ߣxn�&��K/�G��8]�>���r����Y��XO1�E��?��Z-�u���EV��6ڭ[�k�5�ܼg�/��}��➢9'���hm$K}+-�T��./�H���y�\��Cİ���wK����6��
���x�⥾��I���CW��:�kR���ˮpq\��bv�r�1%:]s����h�[O�Txa�.�ח]����:�bG{K��R��c�x"��/�j�=q��]����guV���m�'^γ�T�72s�J�R�$� �Y�e)�1r��-_����VF�;:�ED�����������otz�꒔����y�D�͌�?=X�k:��zUz�/��`��_\�l�YX!�i��j�1�l�����ظof��J��K0�́�d�#�&��1�Y�q��?
�T��/ϓク �ӈ��"��;�PG)h�.P�r��Ռ��8���.�o�����}��d�&O	X�䫝�Ǭ%o���x�����^[��p֦�
��"+�.&MQ'��K����{�ط�/	��
����a���h�/b)�w;]� �C�Se2<p�;�5�=&�=
G$j���Oh����+�Gu��d�rE����t�d��n���o�J�2�H�.!U,��<G�Ī/�@��?�x����Uhe
�D��x^��8��m&#Ų
��6�mj_r��f+7�J�'S\��2�S��N�:j]Q�GJkL�?�O��,����y714�p�0zj�V��UW|���Ir��fFj'''FD����������t�ߪ�aN{1hX�X�"�$^��:����}��(�m�6�;)i�+�io��������/IH�81�T�}A^�D����t�.�돨Ф��z���p��R��w��K�������糖�(��'��d��8�������&J,�nDH��@3�u�#!�J"�EBS��+�v�l��C�b��ភ̲��@���7L�Bq�l�QF|��D#�q����A��??)�#�#Y&J*gHſW�_�dez������Á��[��,B*_������Q�����g���0��#�o��^��;;1�@��7
R�]F�&U��1��U�\��'a�Zs�+�G}��]�Df����Y9�.�#;��[)��m�,�Y���K��*�3���n����[��˜�<a�7(��2-��ˮ�m�@ho��k|��mȇx�H��������?����H���r���N���K�3�q���l5�)��p
g��K���hk�q���Q7��B<u��Ǚj�01ΐhθ��b$��<m�"�8,��x��w���ܻۛVe���&����6�r��������ҳnɟ�����R�q���?���/��;��Yi[c�L�FmM�AO�����ڸ&#���C��]�V�Ht	%�uN�45sYR��Ɨ*�ˌ�kRRb�͍t�����[g�����J���-NYw��Uj�lWc�?NUS��KG�̞�aSS���Ӄ{Otw����mo���d���gR��)�1G:�j]�g��\�T�Q\r�����̘�Zu��f���O?�._��d�zߪ��3�KW�*	���M�v��������sTj�a�47��a�LvT4�G�TQ)��|�\��{O�ߞY���t�9	I/\q���3�J|S`�BH�B��f�J���}}�x�NoH�A���t�?����6��#��v�o��5��)�dmf֯��>+7V�X�W���-0Hʽ�3�rE�8��W��m�6�ii��X���"��6�u�
&�A�7#�4���)��!K��`�ن�������.����C�����{ˊ$�y�ڃd#��������7΋��
�l~|��V\�؎/���oT��Q~�7:�DzQ|�_��FjD$��ʴ�xֻ
u&�eө��*��OI�V^���Y�X��1�o�v��m�\]«+��Ѯ�U&�暪͕'}�f��Z����u��>c�z�QG9�ȗWB`6�ſ;=^/��ZZZ{M�6롦��bh�L~wn�͹3�|m��?{��]~��7�-K�<�b;v���f�
���	�Bi(ehi���2
�PF�RFI %���Lgy�{�ֶ��g��=��i�dY>I��K��=���=���~�7V��u��=ݟ{�1��KJ*���Ry���|��T�W��>�b��L��[�m�R��d�ZòVT���9'��UkR�����Z�OQ>s��^���=�Z�:,�..)�h�7/_���Ex��[[$��}�.Y���eݜ�������~�ؑ�HDS�����,Y���ˆ��@���:������˦��9Mu��%��٪C���M�6W��FU��p˪9U��'�)
�޴j]H�n{ik �Lg|�JJ?2d
!]��egṶ�(drFW-]����];�o�&�`pM���֮+��[��f��z˝;_n�DlY^[�PW��`�C�O3�윎u�����W%��%e��m^�l�y�?{e��D$
����+޽洕��IY�|A]��+	��f�U��\��Ӕ��j�m�mي�X�$��u�{���l��%�,�×/[�˽4�j_��5��V�t�>fŁ@]y_"��$�����^'��9}s��"g���x/Gx.��z�s�?��n/s���3�v�O�Gw��I�k��!
�5=�-I�v���a�X>yk;��M�Ox+��0aM=�� >����;'L�3o˙�;�ʥdz��v�%ble�%@��
�圸;w�}��������}�rRn�/���3���^"@��t�]�������	��b�67#!��P8A�,'O�����	o�|
`�#��7R*y#�2	l�vF�Z�0���7�0�Ѩ�i�pX��X,�����JKK%�U"����`0P�L#�RɛeY����x�{iF2�L�RcVT3��)�/}E��b��ݹ@ᣖ�D�U\\�뺦i����T"���������h</**�`�.��2A�Cs�r0�u=�]۶��l�;ML1M�{�Mˊ�X,F�0�PKe"dY��J��xww���///ӽ�V��m�⥮����T*%������&����4UU�<K�]��S�~���TDZ,�K��'�Hī����H$b6UU�Eģ��(���4MJ��Z*� �^���>w�\�ʉ��x^VV�����Żs���]J�;��ZP�H�L&9Ͳ�������:Cn�J�WՅ`� �2�9���qt]/..�F��XL<*�"���a�ڑx)�l����R��ܬʠ1���`*�2�4M񤻻[ӴA�Ur9���QL�T&�WQ�4MM�B���8����K���"&�ٲYode��Z��邔�dJ�R^�>���t�0UU�K)=� �tuuɲ��A^���
�)�ɤ�j(J&��X�K����p8�in9�^ZZ�����ݢOO��h���BJ%o~����:;pO(
�sM�JKK�4/Q"����D��P�/�t�Y�H��mP#��/��H�N�<K�e"��>$(4Ԍ8�R�T"��^g+`����)V\\�s��GJ�T�QL;4��)���R�)���R�)���R�)���R�)���R�)���R�)��iL
�qN|��a�3�<��'~�_UUN$L�T�_D4��A!Ә��\�W2�u�gNds�?����(��3ߣ%��}���V�q��R�mO�
�s��ގ�Ϡ���:�FZa���(2�C��'R>�+I$��Gׯ_�%�T�T�,k�;��G�9�0c����o�G��z�>έ�~tcne���FO��v��:G	YGO��D�w����sb��Iٮ,�C?��ʿL����+�I��QNQ�x�GAQ���������o
�>�<y�s�e��=��]����|�#is��3���(��?摎��8[-ZĿ� �`z8���&���t��4VmX;m��;��s��~�i+S�r�×��D^N��݁l�$/�[��';g6��݉�<��&}�c�6cOJ!�s��Ř;�
�ƌ�F9(�%~�}w�hsh@5�l�Yv����L��=v���v��B�V�}k�%3�����Q��4��/\�\N|z�۝��w��~�TNM�9]�5�U��Ԡ�h��?��Q~��'�A��H��(�Gy�=]�(q��[�s�*7=X���4�﫣�<��8�zJ#��:�'8�:�S����9�[�zD�<��S�C��w<3��e���?���	�0�䆠'R>��F
k��nj����s�8�	����(���4�/�c>�3���dzѡg�H�3s�)�B��N<�1����R��5Ҏ����[d�Ɵ��gs�v���C�d� ���H��Nv�A��nv�s�g�aлC�)b�Wt�fg���ٟ�'ð��H�V�
�X���ήp��sb�G��ˑjlN�Ki`=ۡ/O�����[iH��3��
۰AԄ_�����lb�;INl�ϖ�&@J��猿��ɸ�έ
1��p)M3�E�mL1沣o4�O!��%v8
�2�1hW�	?5`��RC �0Nc�@�
E�/R*y#��7R*y#��7R*y#��7R*y#��7R*y#��7R*y#��7R*y#��7R*y#��7R*y#��7R*y#��7R*y#��7R*y#��7R*y#��7R*y#��7R*y#��7R*y#��7R*y#��7R*y#��7R*y#��7R*y#��7R*y#��7R*y#��7�"�|%m�`��X��p�ˑ��DIJ�YY���"����KV�+�
�&fNt��e�ǻ��jx���>��j�ڭ��p߳Lɱgi�Ȳ���R�R�U�R}uEs�,���l��Py����LEJư;ھ���#?i?,Y�${��)r��Jl%��������Q�1�-e�o�ZyZI͆�*�3_{�#I���ݸ�m�w�{$YQUR�]R:��I��Y(�T����.;���ێ�����*�o�Y��+�2P��8�S��I���_S�wJΝ"g�B}S��#<���陸�6���<�*��x�=�K�=�O�][fi���ymI
����F���ۏm�~󮣩���?S`ۖ��G՗�bE��|E�V���Đ�.#��V3�k{̤d��rO��e�Hs4�=U+>�h�Pg�5�Dܠ8����;'L�3o˙�;�ʥ����=鋣��-�n@��
�圸;w�r_Nm`X޿\���oRN��
��#�vƖ��K(���޳��s"}wz^@<a�T���f$��r�R�L����o=���x����y�/~S�k�,��|Ⴂ9Uz8�hez@<k��Y\ˈ�F����fG*Z�x������4�(��F�R�m}�q�;��P��ƅg�:g�;j�PK@��d�뇞�V�.ɶ�U-l˜�^\R���e�/�����x�F�{����|��q_**ɪ��']cŹ�r�gWlY,���D-��k��R!��ϋ=ͷ�{��&I��1�MH�+]�`�%s�PD�z���c[�^/�f��m[�U~y�%�V,��H��R!�`z{�����yxO2�UN�)�-��e�9g�/
�t��$m���~�ήɱ�Ċ[��~��-o�^C�R!�BJ��d;ί�w|����R�L�)v��������d���`9��-�>q�éH&��H���%�]�`�>�z�%�2R*��f�{[v_��}F�/�b�[�s~}ڕ\x��ɢ�����v�U�Wٶ/���X֍��|w�N��)���|j�c�)���-������P8�ncq���_���e�mْ㖹��o��w��p0�R0{m�m��=r�xMQ$��+���
�B��I��_�կ�|톾1�e9j��3]
�R*f�f#�ɽ��HD��XƇ�.������(���X�}~Ֆ]�1]W�ͪ�&#����X��i��
���p�oz��L��������#�L	U�?����]*ٖ�*��x��<k;��邔
�����_n�))�Sl��p忮zU�/H�L�2���.?�xnz�jIQ��7﹣i;%��Ϋ�Б�O��V��d�{TUV93�0�5${�v�/�d)�jKN����-��s(�)6�W�5�~��6��|�гg�Ԯ*��p0
Bo�`t�	��Ic
|b����M�l;%Y	ˌZF���6=F2j����Hԣ�l���/=�ӪȪw���[6�b9%N/����s|�j;�"+;=�hܞL�
)�S_Ķ����'�=�b�޻b�jK��l;f�f�+����Ib�ՁX�ZwK�?�����ի)�S��ּ���
RU�f���S���v���M�ڼGK���笸��H��D�'��X)˱��0����w�HFY��W�'�6�iJ�
���.<K�t�m&okx�bA�/�1��i�����{�q,��̭��k�x�W,ʼn�fJ���+��|��%�$z�i۟Υ��&_S��Š��)wN��W������I�����=���*J����|�|5�/��:�c�l�rlK��!K���G�,ɉچx+��>Ɗ�,�JO��X���Y1��oZ��H%,:�Y�~��_?x�H��S�[��RA�����&��M~E-�|�z�X�͑�L� �Ҋ!�=f2f�(.�l��u���v�K��^\QG��uŕo,����	gGOS� ����,"�+�k�r=P59]W��ב��mF�$��`kH�<�y4=X��	����D���
':�O/���QEQo�m=�XP�'-f��F����ds(�$�m��L�y�L�u76Yf�X=�leRP^5g�2U��u�%#����2A!#�2{��T��nu��V����m&	3�s=�v�^׶�+��.�Q&eI�lSqU_�Ey����_0�a��Yi>�V"��ɒ۵J�2��t�0C��!r\!���\\9W��j#F�fö��ڊ�@(�ݸi�loN��Ƭ(�[*O:11Q���m�)j�?P�ք��m�ho�5R��I����<(����P�m�ho�)���@H�d�zg���X�*�v�oI�镵�>����Dl���^-,._T|B��7T.���>��/F�,�VeF�@�"�)�h�&G̔�ɪ$m�1R%�O�ɪ`�hNE�Rqɻ�U���IY��-�+��I����b���w�b����Wz:�}�]���׋�/�5l���%ݟ�%SCՖ�u�����޻v���ror�4>��lo�<`ú�`h�?�����k�ZZR1���޴��_Hɤx~A��߼��^fGHZ�w�=u뾗��a��!@N���z�{Ϭ����=�$M�n�l�8��o��D�s}Q����"������TtA������?p����~-s��ʤ$+bҽ6f�n#�b�i�q�4_]pru��j���ğ6��[Y�K��*}�}��>U�ş���2�"�t��=/�����9��5͛_R�t]��h�z:���=/��_�l��pi1�#{%�P}~������#�G<�3�ַc�0uC�jfO�.���pU�=���^�q�9���E���
��V}=f*�()Y	�(:����H�0R^-�"Y��>�d�c�O/�s�4ww��y��r��z������]��2 ;�%9o��9��Vr��8����H�o:�%�����������#��w�-�Z_�$��`�޿Z�!���(@Q._��"��鞨��Ց=E)9λk�V�Wy+��e�\�����5�
ږ#9g�[x�e�*�b�wPr��u�d�S��
���X�{�c�{�ۈih��ͦӗᘙ�*N��-���$��U�c�.X.����y�o^zBR�_o����_ڿ��lY�$�YMO2�7��>��O�E�$G��[[Q��l@���ؾ3�+���Ԥ��C]m�hm�p˱��k��o^z���f�L�m�?�JJ���%�y͔�����ܹ��颓Q,!M[�&z$�PA�#T�~E��hʲ�gKR�J��6f����̔�]���-����}^��_�r�`���T�Xo���S������l��}�|ݯ��K=��?�3DN[<z��]��ޯ(��t�%5���N�}ۆ�ɏ�)'�x�6G�m��
��ԢL"[r�N],j�`���3'a�]�S�����J�Ls�-e��+z�*�}T$9���Ē��,ra���.���]��>�|�=�xv�;�o���˼���ܚEa]���;���i:����3�Ο�^�����ܕ;�t��s�d�
MXX�U���OJ���Jp�`�R��ˣ���zʶ�L�Vq��+��`����r���v��ȱ�/��24}^h\M�TY�T9O:�SRս�;ʄ�R�J&��'9�o��Z�N���+kϟ[����T�m���'Tb���5<�ޘ;��2o�p���TdS`� ��a/�JX�z-C\`G2%'a�!*�`�豌#6oj+�؃��c�y`ǼP�#9�����<v �6��R1wSe�8��ST�7Dӱ�
r�m����Y��J+.^�ו�V���
%Y����{�W�Np$i��Qc�YfҶN�����f$$o�$Y.Q|��(X�T0���%l��\�cnEU��`�
�AI�y��$3f�d�h(��5]J�%���TR��Mod�
p�¶��;���_2mK�lw�d�Y�~n�%���8�a_w�;��#-��m��m��3��pi[��%�#˲e�g�>����K�X����E��y�(��sO�<S��k��/�H�|1�.
)O�䐪w[ɾ��$m+��R���ŕU���Fn�̦D��`鉯����K��b�{:�{<{%O�_+�ˆY�4�ć�UQՅ��*�o��.��t��ᠤ��en�S]�Nܼx�񾖣b�*Iw���q���
2��ܾo���6T�y�#--)�*3N��Y�Q3%eZ$��?�FJ#�)��RR�*�$�l;�:��
�R��_��S���
�IJ椬���
�ܴ����Ȟw��T*��2,���aH������7`�!�q����
�Մ�m�뾹�b���es�����!��z6�&tJ���/^�-{��Z͔��b+������ʟ{:��s�ʍ8�[�a[��T�OI�幾 �.
)�H�d���ҝ���!ٶ{�%��i�B�j����"��ԁhז�IX�Xە�W���x�hOLJ����ן;'N��]v~y�6I�$˼~�i��]������//�続��/�5Hn+�%���rב�O�v��~L��k6�_�X����-G�]��8_Z����\���<V$�7�w���x~Ǿ�oZ�6���_Ik<���eǑºoiIʼn�g�L&S	/yT!��B��(X�T0��Fû�ڎ���B�LK���z���e�/գю�Z�UK�~���l�����w��>���n� ���ȶ^UQ���g(���{�[Qe囇^��}�����?U�>�j�ߞ~��n�y�~��H��(�������V����7�ʒ�?t��s�|+����_
����1������\s"��;��6Β5���k�K��
F�Ȋ.�^NEv��8g0M�d�:\!u7�/dyG���H��ɸm�?�yK@UzxwS*!9N4�O����/\��3.���rl�H��z�r��WnKR���[��@�Z�i������c�λl�2z<��X�7w?/٦d�W/^U2$�"����jN�ݍG,۾��7.YNWTq��4�}�-c��{b���I_hȞ�V�L�`a>�~�o���X<Wc�0�c�F�$]�R���S�ΠhcQ�$�J��*��m�B��T���5��_>ﵯ_���C��Hg2^���+�]�d�o`6����k��)���eå<r�eߺd��5����P]I��p��5᜖;���;�/G�S��.��~@�>���E���45f��5�5����֝�����l��=�,�fѲEE%�U��R+��H1O������mo�Q�y�2�R���^''��uќ���o��r��b�?T����,�x�;�o�oQ�&�e��[��R��2sHfM�k�k��?踢��ٸ��+��SUpq���a�b��T�C�Y�K^�?qEӇt@e��Jy�І�aj�l��J��#U���ij_������i���٪��3���i���x��i�u{�$B w�kEyv��g����2iꉸAq&��F�qwN�,gޖ3qw�U:zMW}�r�1��Vi�l/��ݹ[��D��I�oRN��
��#�vƖ��K(���޳��s"�t��l^@<a�T���f$��r��c�J&��{f�l+i
�K�f�Hu'n�%'�d�v*=�e�C�0�S��
\*{NZ���dk�(�"��h�T�?���%�.X~YI��)�o;�H'�|��l�n��t��Xo+�Z�C����R�e��T*i�7#�3��f��Q���8a#9���4���b���Sҙ.ӱ�n�U�L�N��;x�,�SX���I�Ǒ%��?��|�rm�J)�+��ho�V�k�}��G:�f+�V2�l2z�NR*��%��ٓ������_ X��k���)�έ�2
UQ��'���,^j�N�(򫪦��dSK�����bo��V#���X ~ݸ��D�"+"��^U��2A�#�2.�#C����Jߟ��%>�ב�#9�=޼C@ו�g���M�[�m
�v���Nq����)
�LgK��o�X,�}m~�Q�|W#�r�퍶�i���8�.�=���bA�#�2^C;CD�d��:�l:�8�d*��5��әöҹ���w�xKהS�lnGC�T0ͩ����/�ŝ�;��e�G��1ˠdN!�Y|��/������Ë�T�st�di�L�L�A����2�bF*b��t�\S�Z�Z�;|!��bcq�[�.���E�e����XN�?��u�!/��-���+N/��XP�H����c;��l���b�*�;�s�4��ɲ�tW"^����8v'=�4�f�.<��P�ף�$;�<��H�rJ�'z���3햡Ȳ�8��/<3�h�
)�q	h�:p�j���i��'��J&܁��o�9yv��*JPӲ�@2�Ҫ�p�N:a�{��t�<T��͒��TI9��Ԟ�ElO�L�^3u�F;���8�_��xZ�\J�)���T%���t��e��P2��*���[��U-�T:)SX��˙�A�%`�z]ժ�U.��q!��?��4}��Q�NU�NҶ�v�ɻ;�z��ڎ���Xx%�邔����"�؎T��h8Y��u���O�v�"˚"{�E�Ղ��q����:�%����H�oYq�P���B܃�i��>I'�S�g�^�B�6/Ұ�T�f�E!U�d0]�R�OQ�M"�묗@e�@y X��4]�q�8�̃����R��2X�J��7����s�oz��N6[rn?��M����ۅ�[��w�_��d��i����ɒ���"��G1;b$����Ď�X���I���9K�Xqq��� _��+���COv��mF��9I�����{�?&ٖ"��)��%罫f=���^���m;	�ʼr�ݼUG*�-�c�ي:�L-�$"���v���n�#��_�Ѳ�p2�ŕ��O�;��e�#w���?N�"8���-��Et���x�T�3��2'�e���H����!����j�p�E�T�vlE�E�������M�
g=�~�^����C�(c/�p�o->��	40QK%?�,�����c��}!m��=^�փf.�j+���%��I��˜0����z��Ś�}N٦���D�u{��`���ם�"<���D�'����s�l��`$���;����`�Y�+�i�9o��G�7�2�C^3O��m9����E�J�J��^S����8��DDQܬJ�2м���?Q����uK�eT��%{�l�񝦝�n�L>e��b��X�I!��n�R���^'��U����l_�}S��#<�x�ҕ$�a�oyg��-�8}���}���rז�C0kz^[��~�l>?z�d�]V�t?��0�m��}q���Y/BE�=ն�s�s.�Xt���.(�|��JR�2^�i~���c����ɔ���Ef����Vl9����SSOč�2!�<0zs�d9󶜉�3�\�;�Rߓ��K���ހh;��9qw���Dy`X.���oRN��
��#�vƖ��K(���޳��s"}wz^@<a�T���f$��r�TH���p�n+a��p���k>�h��z����M;&c��W��m��H���@\1�Eu��R=�S�"ŧ+�>[k[�r��V�2R��k&��;l?|_���T��2Et��Lq紭9��}�+?��j_�3��
)R*3��c	��~sKU�/s)f�����o�v�ɲ$����� ��t$����D�j�@��W���:�V0�͈G-��Ht���d<i��ќۭ��_bn����%7-8���]�TH��R��R��m%�ߖ��k~.g�U�\ױ}���v#��
�/��%V��c_�2�d(��Jn�(n�ے4�[��>\���҅�|'�2�R*tO�a��%f��G[
�:���&�hW,����O�x����H[�]��;�k�!l/�t�I9�B嗗՜[��ʹ+��ynjCJ�HX��x9A�bTU-�q���D���U.
������͏�4��8V���VT���Ԓ��r��T�ʲp�9%���./�f�$��S��?4�$e[=f��d�UG.�ٮ��{�.+q8�U���늋���2fgi8�V(+z]���_��hN���bR��G���˱{�T6������Or��J	W��ϖ�S��E��~���)+'%PԠJ�
��H���#9Q+�r�lM'͑�4z�`�T�r$�~Jʲ���Gk>�3��Ц^{�dʶ��5�O�1�# �2ۥl+f�,��v�,In>�A�)��˖��i&-Ò�A�Sȧ0:R*��i�ng����RI��**�,���q �2�8�����e�n*nݔtN�}�IJ��Se��`l�Tf�ql�6l;i[�l+��(�x��)�#-��rv�0*R*3�#9��ΤX����;�e������S�t�M�r
y �2��T|Z7q�䉝�|�k��}SE)Z@թ�@�H���q���7/7�K�s%99���v�|�>E�OVZ�0!�T��܌��ɏ�N�<3�;͖,ERmwtdG�tU	(�.+t��� �2�`��򺒵�wK<8�rd��ʲ�OtM�eEUT�(L
R*c(���C�&ʲ;r:�"Ӻ�IGJe>E�� ��7R*y#��7R*y#��7R*y#��7R*y#��7R*y#��7R*y#��7R*y#��7R*y#��7R*y#��7R*y#��7R*y#��7R*y#��7R*y#��7R*y#��7R*y#��7R*y#��7R*y#��7R*y�(�)�ٶ�dP&�T��E�)�1�$��hW"5)�JY�e�f6E�|���ZH����Py L�Y�TSʲ�T*e����O!�LY���YUUu]��|�W��E)j$_l=�XÞ�MǓ��xc2z�HI��R������J�V���J_���+�:�vŹ5+J|A%}1f-R*��KL�L�Y��['Eι��-���)�o��2�H����i~�_�uUUg��H��m-�<���-�v�p(�4�?)����0��m7��ɸ�\�5�)��Z貪ŗ/XsFͲ��9�L6��,�nOҿЃn���=�M�^��\�#K�'�;Q<O����ޢ��.��?)wm�9����%)�s���yi�0L�t/�$M��@9��h���[���[����K�?�տ�ӞN�(R�u��0�:�FN�-��U\0g�9�+.]�vY�\�f�5�Dܠ8����;'L�3o˙�;�ʥHn�+�t�*ble�Un@����s��ܭ{1���,�l��"ȹKt�;�>�����J��������Hߝޟ�O���g�<\
)8)�
X���Ŀ2�mK�@��Y<��HOf�v$��~����h�C�����x���[����T�x�W.�T,�XH��R!�BJ&�0�x<�L&)
`��o�@ μ�J�H�w�����v=�^&�X�1ǹ������~��9A:�%�BJ��
)����F��m�TKf�\Ӵ`ڌ9��-�����;��w�TK&%�b[�z�ʅ�x�k�l�@H��R!��i����③fvb%����^]%j$�w�3�����̇�R��M�X���_Z{�M.-�(R*35�ˆ?�I����eYTNf6�O&��i��a����iW�>{�O��dU�|�w�FSlǹe�cϴ���o8�j!E����"�T��'¶�H$⍽Ji�J(m�}��ph�?l}���[цp�Y�P��x��+7k
]M�T����9
8��$����!��N�X,��V����MO����I�ȧSA�%��<}����iS!3

�u�b�`�J$��)��#9?���_|��4�{``
ɒ�87��h�4���+�����NaY�B2�t������*b�k��}�)�R��r�,[�s�'�M���|���3)@޼|�i��SH鬊��5��}/��KJَ�jpJ�{���ΧK���_(��3)@~l����M�R�S�J��H$TU
���{<����=�mI��8�7�����m��f����Fɧ(ɲ7�z��خ�������x�
�b!�G�{�#�)���y!�I$�4M�ٟ�x�O޷-ګ�>>�P�Rs*��(�ZRRAy`Z#�/�0b��`$��D�ђ��B�6e[�n{��M*�FU�z�����o]�?�PLg����FJ�HĶm����>����S�{��=/��p�
��(߯�{殭7�;���EJ0.�X�!~�G<�4���}8�~o糒mK��?@�����y~ˢ�Ki��i��
`l�e`��
�m۱XL�S��=����D���)���?����}��0p
�%���MDGS��GN�ҍ�N�}p�܁	�L�L$�P��+-��2M~�i@տ{h�KV�_���tDJ0%��)ȧX��/�2-�%4UY�h�u�t]'���x<������?�žDLU5�z,��l=�j��w�)�b��$Dܵ{�����߯�?�)Lj��']U����������,z`&�k08�����:���C�**�#�Y����m
��[Da`�!��a�T���Mɶmo߶m׮]b��eeW^y�
�܌ʔdUTU=r���;}�P����#�<z�Wx-�8�	K&��`p*+�؎s���QU�)`ZPe�5e�}`�ƹ�TT�tCJ0�x<>5';���'|���x�S�?��O��~ݖ-[�tW�'o���4M۳w�?������/啝�HTl�V�	~�L�L�R�@`�6�����+��Y�L��T����^}�is�Q�f'/E�eYS<p��(W_}�ƍ��w�_�ʿY����-b�Iʪx?�?��s_��W�{�{�}�E��?�#�S�I!��d��O�e���#���t���b�c��4&��i��
`D�iNu"�-+�UW]��'?��W��~���o�*OzVE�x�a<�ē��ߊ��~�����okok;��b��&�JMY�/�q���vn-SE�n��7���Q1�p�F��Ǒ�68[T5��W_1o޼�~��y�-�-�\{muu�$�wD����s����<
~�ӟ��U���V�)�dK&�S3����:���L%�L7�,m��<�|t˂%��R*��9��J��S�x�n6���S������w���m�?����LӜ��4������{�Y�t�_�#�6m�m��N���0��������($T�����3��H�`ڝ�ò�S��I[�|�'>������]����|��ׯ;v"}����>|뭷>�ē]r�
�q�ҥ��
�CQD����D>���,b=t3�BʌTE�y�y��=�$vw���[�lɞ0�<b%w�����r��]y��wOd�I<��G�ޛ�GOs���"G2��V�>�Ys�K��hb+��0
^f��q�a֠ɲY��=]	Ӥ�H���I�r�D$V^^~�>P\\��?��O|��\p�#O$�����o_��֭[�q�57~�����)�/FI�RΆ����ţ��eee[�X6�tww�����͐{��n�Ǚ��Z|��~��G+**.�첢�"�*c~���d�iݩ���m��iK�VRq����|_��E���ԎD|��ZSWB��(�5�W�	ɴ$m���T�ӂ%�,+I	ǎX�DzYQP���Tk��`�;�L�e�'�~eysQ((��w���Xt��J����w�\n�$w��׾���C~E�*���Fj�ފ�������@����H�#�hM%��c�eJ����+ٖ�|����@ i[�D��|&ےF�Q�qN����co"�`�~:u>�p�'���q@,%���Ovs(\�jc^���gd��K����6�#K�˸r��
`z����cc�P��w�S���vۗ����/�X�gyű�O��?������{�]w��7�xCII��SĦ#�Hgg�x^VV6�\�����_��Xղe�>���N`%��n߾��{�ٳgOwww8��ˮ��:M�f@R���q�<�8@q�����o˖�3�pE��b��w�m�&f�F��|�;�S�dl�=,�L�3EԕL<��.�|s�H�[��ʺ��(��\K�k�~�M�ȃ�뜒�]�:y����k�����mO77����[+'����K�~zٕåc��X6��Ѷ���M�:ć�o)G��ek>��L�v�f�tu\��:,s�G^��W,**�i}����?�R<*���T2�k���ӧ���/>#����c����k�Ec~TE����~ᙈW�Ƕ��W�.�2��յ�`���O7����[��:9�|��څ�[��̪��`F�`o��M
w�g[�V�o�}��j�+1Y��+/|f׶a6m�W�_�g�oك���H6Fz�F{�Yq[C}Ķ�ſt慛�j��?�J"����n�EOq�β�L,�%�R*��OD�S�7�l��}׾�ں�E?����կ64��moBD���p����~��X"~��7_�ƫt]��|������O��<���o���|�A��RSSSOO�8�	쉪�{������,���������33`�#Q���7Z[[Gj]�L&/�������sO�yb��x+e5���^i�VTTt
���O3�4ߵ�ho�ahj��l�����-Z^���/Y���skno:6���)9>E��C�*)�������w�\�_۶��������զ,�e+G^viI�YU�ׯZ����߾�7�R�FɸA����>���w���w��?�oP��CȪ8�9�6q��1��
�R1e�X׳�[��g�fb�#d�:�W����O\,G��r圪/�y�ƹ������B��e�������w��j�6k�e���/8w�|eHa.-.o\��vz��m���d�ĿMo��肚�z��]��ޣG���*����l����8+ēw,[{���S��h�U�̰���,]V�Y�'�R.������Tӛ4�3j�c���ŗ\RVV��[���,���w̭����X0��{�=?��b�?��.�"���#�2<v����G��xr�嗯Y�fb��6�>)D�v�����c�p��www���H_�a��?.�NN"�zD�d���m�G*>�X,���|���k���_����qڔ���x�<�@(��KNIB�m���)�0��\���U؝+O�%�pOw�D������-X��(	��-�E[�Ю@DI9�#�l;i����+�/�O.�_�����_z�_����.疀�8�t���(~�/hWe傚��V��}�-�w��	,��E�k�Ź	��.]�����3d
����Yno'�}˝�N�^z�q~��!K�F2l�}[r����e�(n�V�[E�#��֖�^U������Cm�i��}�Z�n$�|�_}z�x�Ou[�6Zf�yuY�.�|i:��Ց��y�L���ߚ�b�ܳ#[WE�|��{�¥zNN����ʅK�޽}H��Ι��,#}b�i!]�:S�<l����Y6?��s�h�����`���J ӚɴmQ>�IJ]���GɟL�z$JJ�T�܉t�q��*��7l��-���O��W��ő#Gn����X>J0�����v�O{�]��_Ӈ>�a�uO�щm���������Y�f���t��g{�3����ʣ|pb�"�nnn�Λ7�n����
���r�>Ҧ��xe�u�;���ua�0{PC?2�����d�g��^�)^��eee�+Y�`��';}���^:(S:::���C��x����{�_�g����������*�A�6Rэ�o���.v/�TWW��A�ssS��JदT�T
���������X�&�bp�a��Z�b˾=vw�'�#�>�77�x��ѯP4��./뒕�I%��3΍����T=�/�r{�7�=o؎��|Q��5�o_��<�lH�o�p��H����j���U��q�
9�{��3��{w�ۛ6�q�D�A��a��9���c^^���-O?P��Tʶ�n�Ƌ�/��I����c�
��ܘ�wX�Y��/�ua6�7����LKss<��Eᢷ-]qA��ݷ.[՞J���Vi�D�(�ezP�0�O%sϡ�;������Eͫ}��Պ$����pcc�m����vKE��y�`gN�k����Gc�1 '�ۃ{�:�?}�wšo]E�5+����[�WV߲�̫���\���)�c�]Xw��ӽU<�x��۟/�|^J%f��)#�
RN�Ev��F�'@J�I�,]��on���}���[[��S�\7�0@"�<Z���C<pޅ~�c[T�h*�;�������q��g��^xa�֭\�t頴����hT�ߙVTTT^^^VV6w��lT<�V�=���,�K-_�|P5QhG�9~�xOO���.--���Ѹx����k3��Ļb1���[D�b�^���siiiill�c*..Ͻ�C]]ݰѲ��������+V.�3g����!���W^y%�J�}[�r��b)�؇�����qv�e�]�`����1%{,�xE!���^[*Q�b��<���;�eF�˽{�z�,v[�8�ttt��+V�����q����JQ8b�mmm��
Ŕ��*��X�(����)�CE!V(�����X�+M�w�9E�{s�]:|���b�D"�g��Bq
�ټfebsb�;Ҳ�4q�b��$��^�	�5M�ة�G�r�wђ�n�"R�0~sh��.�ú��e+|�/��#�F[<v{k�۹�7�(FE��Ё/�}���jɭ����v
�)�3����f)�]�֫w9��:o���G�m�S[�Xv��?����y�+*�W?ٵ�K�WCAM�r��_���SWh��f9ww�������{�uC<{�;�mi���(_�d���
o��x�3y�G
�n=Yu˧�闍G���oX��k�sͲ�w��ݝLJ/[��7W�5 ���-y�;GK��)o�n��W��ϟ��s���󀓣��}U���]iw%��*KIH"c@ 2�x
�cc��ؘ����'���g_�%�lc"c�	�
$+ 	�U����ԫ������8���淞��P]]3���9�Y�&M)���)�������񍺺�L+�"ʇ|iܤ[W�Ф.y����ٱ�^9	�y���_=�8u�G�3$Z�¾}nǟDb�7�fWk�|rb���XV4�A�nji ��w�"g�Axl6l��o�;�Ə�n���߸��c�+�4Ū�?�����G��g�����p�?�#D��…�l�£�3�8����x�����_s�5�`x`�hѢ?���+W�lii�
�Iq��\r��
���|�ͻ�{�ƍ����oM�6M�
��S��[x�PTT�z��n����{�m�͜9�?��?����_jjj����z�E�=Z����?��>����u�ֽ��K��.���+����Cq.�G�����+���lٲ����Ĝ��Ԝt�I�~qq�����˧>��O<��۴i��P
gϞ͇!�g��y�cGGG@:Ë/���3����[����3f�	'�pꩧ~�{�۽{7F�H�^{-?5�����|z��|�/���_���aǎ?��O�]8���-X�@���I���<�S���/�W�^� ����M�8���>��ӝIۺu+�1>�|���v�<�k�6]x�s��M��{�^w�u|�����w�ꫯ�#�w��[o?~��/�5>��S6lhmm39nܸ��:�F�����tM�8�V��^�K�.*>o��ۆ��k>X�TY�qŵ���j'�_���zɺU�R��h����^{�~_�?���*M*zVV?�fE�~&yaD�5<۩���4-~���N�T�t=����#G�ذ>`��ب���L�*ʎ>i�?��G"���_Ϛ0��5?_�O�|�ԣ%M���TsR��f�@��+"�'
\�1WRa���HB���K��R��]6[��nZ�!��cG%oPyA��&O{�;�шwZ&:�c"�凿޸!�s'f�4���5��ɳD�qia�Ruz�$��{;v����;zLmY�E�'߿iݖ�NwaP"OT���:g�Y���[��o��ʢ'�zr�N��39Q���eQ-HA"7���6�
�������SRR��/}������/����w��`�����"B^�d�]w��E��8�̯\y%k����Ν;_�u>H�Ϙ1�G�<�^�|��%K6o��`�4��_�j���Σ�����Ç�`����O>�d�ر<��F���|��_~������<�����|��|����
>�UN����,����O?�{��Ꮗ��`~���/����_χ�T���}�Q��A�5��.X�`�…��C��O���[�n}�G���/�ڐ�{���m��eee���|$�����Cv���z��9���߾��;E�#>o"�����?�5k_Z|��3��B��#���OF��Bpqrs������/]����C�`MMM�v��_����ڵk���I�lnn�������y������;���W�k~�E��y���[Ǎǟ��1�D���!�ࡇz���EΘ1c�l��\�~=�s���w��>][���u���U3�2�������lX?ot-kMqɅ&�����*�g?c����?�aݕ3O9|�][����zY�e�����>�nΡ�cF����
�Sw䐪�S5�>nlzc�֋�X���
.�8���6�	�R�ٸ;���'�ZV1�|�x�rߞ���<��idgg���뎪#%�UV�.*N�T[�K�!~����O��.�aP�¸x��l�#��KbK[�7^9cfN����F<�u3��peu��gSY4�/��wd���w�1=�� ��1���c�_#��e���x8��w��_n߶��sϩ��jin~����wϽ��
555<�|o�{�\p�L_��_�bEQQ��^]]����Y����n���g�}v��h��_�!7�/�䒓O>��<���…�<�H~�/�_|�Ż�����W]u�)����Sx,]XXx�u��;��ǜ4i��W_-�FF��lٲ���<��'�G�?>�iӦ��~Z�(��������2���VVV�t�I&L���W~9��~z{{��'�8cƌ#F�����曏=��{�:j�ԩ������Ot��.--]�z��?��jժ�^{�?�QR�������S�ԧ>%ү^x�>iUUU_���͛���ϻ|��?��3�(..���ǟ��[���a����i���F�IHbf��������?衇�-ߋ���}�̙�s�4>���'z�g>�`���78���E�Rmm-�~�$,Y�d�֭|����o޳g!�R~�믿^d���逸��#��~����'W�\����r�̝;�
��e_�37CĢ��s�O���֧6m$��_�l�fS㸲r~kN3~��U�jks"vK�
��2�TkvAmYi�F�+�<A醆�ҥ��<`�;���/�
R��nG��[�+���]��ήΟ<u��W�z��Q�K��HI�����j|y��ˊ=��ǻ�}�#ѥ{�ttu��VYX8��pKG��/����,��@XӰwG*U*俲���0�Vqu��?l�J"���_2mzq���'?�sG�}�R�N�\#]�����V��|��L�H��s�۹-O@S�T�>²���Η^|��knl��M�<������;�ܸq�g/���o�����n ��������k��͟��%��S��ä�����~�?��)��"
LN>�d����瞛?>�EX+�P��~8��c��q�G��������_�����zȐ!W^y�i���gW�73fLII����;VH<�'�xbǎ���?��/�Px��
<��-Z�����>�����k��v޼y�qW
�y�K�s�QGů�q'���K[ZZ}�Q�Z���Ev�C=��s���
1��3gVVV�v�mMMMk֬�[��i���E���<?š�z�NJ�����Ov�aB|�s�/���S����mll�1|�Ə/�q�/�첳�:Kd�L�>���w���|�������p�M7mܸQXҌ7.�WTT\s�5|zŕ��9����|�/�������g�
	Y|K>Bgl|�^x�~@~|�׬Y�D���G�������9��_����&�f�9&�YⴡU'Վ�.X��M�Rk]g�_>Y��9��'��<�f�6��k㞪�H�j�i��l���)�D��2|��&I���HCg�-/��R��RSg���3��?:����]���E��=��OoX'$��ť�L��K�����>�Sĩ�HH�V�V�Z��i�CY�*b��������io�H$D�B+Vb����2Z����1u�0�U<�u��1�씙GW�n�l�z������f����O_��۽8N�RfEʢ�bJ#�L,(:a��˦�fw|o׎wZ[�'w��T��y�k�,A����c槞\p��w�H���|��SO����#���~f�ܻwό3��ֵ�S�u�����_��o~S__�%_��}ƾ�=��o���ڵky�;o�<!`�ĉG}�O<���v�i�+�?�����?�?��y�]YY����x<��c�=���"h����O?��`�O�Ջ��޽{��,��8�q.��:��3/^���ZWW'�?�3g��8)IhF�by��7�'�F�"�E��N�b{q-B��Ø4iRMMMSS߸��EN��[!&L��5��ƌ#4����#F,[�l���7�|�1�3eʔ��j~�Æ
��\m�B�|_~�C9D�Xq��t�A�^��S�N�6m������7�/�����)t�*ğ߳g�s��Pӄq�m�4�[6r�Hy��Č�ohh��?��w�d����Z~��������s�V��"��_k��iE���Ƕm|&j"��	����_no�J��&O�mݦ��I:Lz;4vt���MƪKb1{����h���T}
'<�i=�"5����'��z���%V2צvƪ��g��P�H"�ؒҪHd�P2alVI�ӯ��+�����t8��t����7����
.�<E8�nki^�sgY�C��x���[�9:jY���&O}f�BcQ�μd�b%�9�[���io�s��d�|/r�N�ɯ�D#H*�a�k���<�?�y�\��>{�l��v���7��
'Mz��O=�K���c�
_��|�-���~��C[�n��UW��ۧ�d�I������񐸠���K�.u�HF���x���K/͛7�����g�u֚5k�f<���ȇWZZʷ<��<�L�:�aÆ
<f͆�3<<�^�
ߝϧh3lذ��ryZ�!�СCw�ܹy�f��!9�N�4)c�$~�֭[��c�-_�|�޽��ˆ����ϒ��DǢ��J�r��EEE<�O��--|���%?���|�;|�5
H�ӈ�袋�}�bժU�Ua82g�~#�`ѽ[�w���cp���9�~�Q�������A������>����?��*�;�C-_H��U-eɻ�����*�����[�2���dnڴiƌ� /�E�h���&gW�?z��ҫg����#��G{���u��T���T�He�����͐dw��x��UNd�R�zlG#љUÜíJ��6;�&G�W�4v��ą���7a���"��0u��O׌Z�Q��fcO�����L����$*���t�V74v%b�s�
�-(����v��;������ڲ���X�P���cgk���yʐ�S�K�5�(���L�N%��TϦ[;\|8���l���?f�UC_klH.5�()2I-k�ݲt�c{v�]��h�u�y�c�4�9,�I@XI%��x<�c�x�ɿ>>w��~��ӦMsR3����~��s�=����v���y�����_���W^ill��߯�*�����}�ʕ˖-��>��6�B
�<���#��a�#������~{ѢE7n�/�W�X�f͏~�aÆ9G�A5��y|η�[>��ӣF�:���
�P�[SB�I*D��E��<ߌ�g4�|g�����Z__���f�ҥ�'O=z4?~׮]~��q/1�.]>W555^YD,	���)S~��������͛��ڄ�
����뮓ţl�T��jCr�����\���گ�k~[�U̝;wȐ!b�𱉮�a�iII	���ÇO�>�(���7x_�H�ɚ��`䂉��ӹ$�]t؈�7r˺`�Ի�n���$�o\WחG�9c\��(���|y0��0'�5#?;y��ī��J��r�G�SR�>�~�@R��o߼)�H�KP�BoFS����y��=�����e�_�2�~��7yqv�*-;�d'���{�q�zŠ��m�v���(�F��1�w�N��X��2jE�Ŗ������E�&;����e�����SF�y��Fwuu��R7��������z�;o��o�)�%O�T��Dc�T$y/���`�暿��[o�ㄓN���M�4I�x��CYaD������#F���o]�_}��'��~�ի�6{��od#~�7�x�Ǵ<��C��|9<�
_xT?{�l��QYYyF
���m�V�^�`��5k��_�b�q�'_��㯿��e˖�s�=|�G}t���3g��*�@$P��}Æ
�7o�'Mz���N��U������c�giCcY���G�'�_�׿�u~�"�_�p�%K����7�&��Q�F�����u˖-|��q>	�/޸q#�I�-Ћ>����駟noo�7�?��0���[oݚ����E����E�Ԙ1cv��Y^^��o|��Y��zb���>�cxUAan���\Rv��1!tȰa�TV?�{w�X�݉�x��t�I�0��\5v�us�:�;Kv��}I�7��)�%�ߨ��4�vY~w����
-����!�xN��/
��m[S
����4d�`��w�u�Ԗ	fP��s�io$?C��'ׯ?��Z�e�0��ݭm�_���me��T��g4}h��iGK��o ����w[{���M'�֊*�SǍ����5��u�;YX�g�:rĈ,Y��]�.�[��9v����sشiy�I���֯��ub�/L�rvJ�V\|�����C�Q�ݎ?����/@R����#Y*b�-}��fͪ՟��K����Ç���R�}uu�eW\�c���������c��-�#�_}��H$�#۫�����@�T:;;��5kּ���g�q������ϙ3�0��ɓg̘��ظv�Z�}CC�\0RSSs�M7M�4i�ĉ�֭{���w��}�w��G?�?e�G�tЇ~�o߾�~��k��Ggy��w{�1~9UUUӧO�Xt�q��qZ�)S�"#��o5,}�2�� 
pV�^���r�F����R~us��ݔB�#;����m޼y„	}݄[d��ݻ��yII	_b���e�V�Z�%��)�#lmm��3z�h��SYYy�a�}��G|E=��C�_~�H)�_~�e~�S�N���r��>blYY�T"Wb�8K�9j�d3�$��^�l]]L��.��ye�����q�Jy'[�ULR���S�OJI$2��|bE���a������_,[��3�D�	"�ӎ.+�|<�︲�I������������kҼ�]]��3�2-.��e��XQ��Î;v䈯N?0Y��|~��ߦҩ,)�,�℉{��#ZZ�w�zy�^��tʐ!�M�Z�I�j��X�}��x<��%N��7��o�x�رG�$k�*b��z؉c�.ڱsU}}EAlVUռ��ƕ��r�ݹb���>-��h~�m�Yuu��Kv��7��ٳO;���W������Շ��UU�_��c�.�Î�g��u$��~��={-���y/�4�̔J2��꜑���_���ٽ����ڵ+�I%�mnuU�s�b��w��mZja�*��R�M�hO��8�K�b��H*�~�B����������׿����9����{Ѹ��8�sˇT�}����y��9g��������ޗ^z������N�t�mb�����n�:ؿ��<���ǟ{�9�Ϝ9sԨQ���۷o��𸷰�pʔ)rBUU��;::�7�Ν;-Z�f͚��?��?���_N<?��x��t��ŋ�x�G}�!Cx4�����:�쳧M��G�<�8ۓ&M޺,�0�&�����W� �HR������ƴ�>��Gy��؜9s���9����_�o�)�#F݉'����1�y��s߆ߵ�s��O:y�d�讻�:���]��O�Ӟ={���ė�R��>ꨣ>���N;m֬Y��~��o��r�J����#�<�����������7�馛D��y#�K�P��e��>6G�}nJ:��������=�{є��47�9n��Ԋ=w��߭^�VK�����as���a���Ɔ������vc��C��x�!~�nlj������{�YOI}��?i������֬���$�o�f���ƍ�M���v���{v�T��ٳMi'�'��r���ᨚ�G�j���4/|u�ڞ��D)��_�xɝGj�-]3��ו����.��c���[�d��������Т£�aϪJj(])LV����ƕ���z�]��q���֭[�֮ߞ�ɩc�
e��'�Q��Q���P�T�+�Z���>��#����g�A+�n\ږ�V��+�#(��T令��61�����O>yםw�������c���H��8�!y0����������_oݺ�+W^YQQ�+>z�n��o�����7���{�	'<��S;v�x�wx��a���G}ă^�a!j4
/��"f��uI;��ꫯ��ۖ/_��;nܸ�/�Xt�5^�V�7�|�7�|sӦM�<���A���>��\p���j�064|��3g~�ӟ^�`��u�n��~���Z|�|�|47\�j��ȷ���+�R]]}�Yg�
���:::-Z������6dȐ/}�K�G��⿞w�y|�ACC�ҥK������ӧ��(����]��4o=�si���~��_��߈'�x��g��k�����V>�|y�7�����pŊ|V������|Օ��L�2�������C=ć�v��իW��O$:Q�՟o�~�T�W���Hr��/���w�~����
bz���ii}v�F��2����ɓ��_T�vk����폮��O־���\=�Rg��oCg�?��՟,jm������f���2��}{ٹ3VP�=��x�����5��rm�m��{���;��I����ԧ�4�v޵h`�J�>T�b{eBb���������3ϝ8�I�������;���Ŧ�]���.?�G�_xg��q���%��k�X��6n�s������6���Ec��{zϞ���9dX2mpVu�7��t�Z��ug#fY���2�zͥӦ	��9o�b�:E�Y{�ܫ�a]K+�T��h?�hXsS�~���|�v��k����#�$��!�p�A��M7�����Ϗ���~���
>��!6�`���x������6ޟ~�鯽�?�5kn�ᆷ�z��?ܾ}{cc#ߠ��h�ԩ��r
��E��^[[��#G�a�رc���s�=���<�>��<�@�D��y���%$���w=��E���յ��WTTL�8��O�%"G
���0K��.?~�+���w�^�̴i�1'M��_��_��(����/yԨQ^�V>��R$0|̘1~7���g�?��…W�X�c�>!�Ւ��Y�f���W-��O��o\�`��M���|N�3�:ïK(�N0����hc�����_!&Lڙ�\8���?�8����|�u�Y�>�C>	��7>����|�ɭ[������E��믿���__�dɖ-[�e����{�w9������ק�.,�[\�~{ۀgإ��ÆoljL�+�M�R=p"�>Ԯ��n�7jTI�o�!U�
Z��xH�
v�4tt�jm�`�n��>y���-��8�w��ζ�%�v��}��
�<v��h��"��UU�Z[X�?�]�ʔ�"i�ȓu�O3�8�|uVU�Ԃ��657we�(\��A���e���u����ԉ��m��P]�4�EN#��}��~��u��7a�X̊$k�wmmm�����ۼ���$+cX��J#k;����GOn�tф	���+�YV���D���W�n�˦�w���F
fWU��~m�s�*Jw��l���d�9U�dæƎ�3QɆ��l0���WO�:�,��̬z���ݱ�:R��:;�u�3�ϱd��?��5%E���mw������_*?#�.���/���?���W�61��u>�
�M��X�g�ʋ�)�h�D�4�-�G��ǭ OmP��_��a��z��{��g͞]�iӟ�������5�̜5�׋x<\WW���~��s�q�W_����q��k���1c��_��n\�p�4f%h�&
R�K>��%EN�q���Ρ�Oꄵ�pZ���a<��g����%����E��"٩ʣ
�su�*@���ie����AL,B���	��"��8�s����8������V^^�h(�IpFȿ��:��|Oš�=S�����-���YZ:;�㟋�ز�Z9�w��/��?Iðe��0y�|����Ր��1!�,HEJ�[&��8�z"�-C��+'��v`v�P�Y\4���#�X��Q�s9#�۴;�Y���%#
c�]�M��%환s<w�4�9�k�N�gQ��|�+�
�wM"qZE��YR��a2[��A��ROcn�-�/�2��n��ԛ���N�Ǹ궣E��j��rR�r�W�����z�F$�@�Zg��� �e
!�rO�����'�wu�?a�@mգ%	j�.���L_�?B��+W�}�K->���/������}�uX���~��߬6��?��~�^��Q�F�h*��}��j8�c�L�{�#�ԛ���<�5�=��ӶbJ��/���(�m�N!�/***..����l��_��P�D����Fh<o�C��H$���%����d�V��

�MŻ%%��=ٷ��`:iOf��Ɯڲ-A^kj%���)���|�qF^on!M�x�-��}���1�}����+F#K��T�J<
���0�o�t�%�x��?Ys����K���E���82�UW_v�e#kj��_���'�xb�2c@�t�-�߳�B��nl��H�̬�#�7'Z���HE0mȐ��X+#1@v������!ê,��+ ��BH;;;�)78U����~���Y�u��pڧ����ڵ������e=��x�ᶶ����R|���>I��\����+){��1GU�36=;v�L�/ ��%�����]�ǎF�����k��]e�e�?���/���/�I�+YŻw��h4:e�T�s��$LPJ�j��*�V�Rss�(����SU�������T��#�����R6X�~��\z�E�dqQ��ߥC#kڴi|��9[�@~QTԯ���}��͘v�;k�hLȿo˘~PJc�X��RN$����_q����0ѕ=F�E�0���zO0��l��V�鲊�Q�@��WZv�a�
�w@RDQQQ[[[���^E�'�fl~�V*((���a���'�>��2Ba�@��H\<a����$AD"�������~��Pq��@��ȉ�G��n�K�M1���t26����1��)	�#�Td���������eF��l�"QR|���/����g��|�f���R����0��,�������!c�sc�>4.�<��m��jh§��YqDq�צO�T�<�
��G�x<�����
��w����_�:��%ˑ�@�� WM�W���@R�Jiqqqcc#���H$RZZ:�"�G��r��v�Vw�܄��YC��7
S�H*BQTT�����ֆDz@0���!�z��%�-uv�S��#� C#�oM�X]T���$Y�I�x���S0�+***,̉��7N��?頤���1��`�ؓ��T���
��D"������zL�c,��O���e�`¨���7��JP�@.�ﺴ���i��
��@R����MM�ЉD"���e��7]������kZ��� b��t$ǔ�|w���(�Q��`Ȏ���x<S�FYYY,˵Q��<gj��կ6�Y��`�IvpI�͝|PU9f ��Jiyy�kP{{;f (--�/s��y�ԫ�z����*-	6����s�SS���H*�F�*�g[[f| ����� �*���������@����E����	�S�`�
�nQ���H�����~�eY���EEE�?ԣ����~����w5�W�~��+qRY���<��>`PI@��nnnf��Z��
���,������ _�<�����'G?X���|�Q|h�/tt%έ,�m��CJ1`�I@�())�Isss"��l����rӏ6�ѥ�?;t���o�۽/�ʡ�З4������v��1%��0�����񰪩�����*nDJח���T���T�n�3~NU��ܲ����R����Ҟ`S"7M���#
,Tہ�	$�@$���hM���a�A	c,�����ls��X��3n����{Vo�w˾=	V
�Zz�f����ʈ!�<`Ԝ�2L�Ў��>��=Gꋵ��=;�����q�/!$��$���?3�7�+ ~&�N�t���foA�MS�&)-D~dAWWWKK:0�5RZRRRTTd
��6'{c[����������zH#c�;�����5'�R�`Nz�ֆ�dPl��T���Oi)L���Ԏ��ߒ�� GS�X>�>��S;��NM�����`[�$ɕ���|� �e
!�rO�����'�wu�?a�@mգ%	j�.���7�D"��充��������D+�5†������$l_-J�:����M{��i����$A��@���q&c�~����q�Ë0'`�
�ާ E{{{[[[�C�!��Q[�n0�0��)#N]��n�cu����A,ZJH��"��i��$#ͩϋ#�b玬�܄a����(�A��mH���5���D��@�
����)"��p�|�)�lo�\Y�–��4�u$꺺���BJK��MK�TE�	1��ғj*�*]�̔>�?�?�O��=��������gW
��0��f���F��������PS�?�bw[�[;��۲��}icǚ�x�4M~�.L}��&0�iO塴�$#ɔ���Xd~i��e�W��Q1�$����w]d� K��x<�H$�l)�g�������IŲ��
�Gc_G|cs����-um���;w��[���؞x"�	��aQ�"b�EhU�WR0�$6�8���px1�<�O K� Kp���-k(�S�OU�x��C���ٕ��]�u&X"Y��	��RKd�Q�?�n�k-�@.�u��O$�׃O*i�# k �d
$�����5�T��
@�@R�H*YI k �d
$�����5�T��
@�@R�H*Y��	�#���PJc��h�ԣ�r�4u���!������1� !�R\��a(c,�H�*�_
K��Y ���H��0�;�M�,)���R�y�E�*����)ॢ�,B�Q��&�V�H�.i�%wl����`��"ߌ\_:@_C��ة)"9.˱��ݟ���=� �-c��G�U�	�S�a������*��?%F��`p���l���Џ��������tB�W�ٟ$���,%�J0��_����J��T�-��|������9��V꿄�Y��ɕ�<}�:ȳT�))����am2��//��J����Y�Jtp�:
1�`��A�Z�j��^�pd��
����&��F�S�G$mb�H��
�H�۽��F�1��]��²%)��:�H��<���|5�b�9
K��8�=̳H�r+����8Բ��Bӝ�{��$���+m�
��%�&�����IO{-����Q�#�i���I�{��JHO��0�H���=��W�T�hvz�9y�B�cE�]	`CߤP"D�n��0G�N�O�`�kU���n�!/�TXw�6�S�g�\��X5�<GU�Y�H�J7"��j��]Q)�k�r���R�}��B��ȏ�6RrK6�lr�����(��9�_���q�B?��+ϲT�\��'K1_[7��n��kT��l���O�(��#+)�a��>�Cz�ZX��9LO�~��BG�,m�R�`���,+sz�h����R
��v�)``I��a"\Y�c�bFq2G�;qy��N���%�a���>�H:�v�����Aܚ���	&)�D�52H��ޜfL�F������g�}p�[�����f�"X��&���D��'\XͲ�ϱ��N�0?�%�>���)r���)IDd��6
�-Q'��M�3㡺�m3DIY.��gİ�ȥ��(�#�˄����0�<��>�iv�G���L�H]I�f�ut'��r8KEhl�y��e.�\��=]S���gj�CI:ۄ��i��h�)���2t�h��\�b�(���rcYO0����&dLql�@���I�����VO^;A&��ҝ ��kT�9�dH�JY7cb"Q
�^94�9�2�U�07���eЩ�VK��{��A;7�,#�ލ��+�Y*�;	BPR�PT㻚�_r@�v��$~�0��OLg�4ʴن��!�TtP�N�]�ޝ��pX9�Xz�B�w�e}��0t��]m����N����n�N��d�R!pMhU�vCX���.�A�²Vf ��-2,�U?v�d�#X�=�)pf�����gg�v�GF�
J3�y�F ��*�`]sY�)	t�r'���:E�JB�)>a�o���z�L�I"FF�0����L���/�^��
�)�y
��$@�`�e��I�-�a4i\��#��1զ����Ő��65�P���J���L/��y�H^�C���E
��a�M����;Yj�0��[�C}�AtP"E�>>a:��~��LD�"�o7E���<�406�h+^f[�h.�f�BP��|j��/R��[䀗J�v�	{�wb
���پ��"��F*z�/"-?��؛iB�~-�`9�����%K��J�F�}�0�����y~Q� ��<A������L��Z��^H�i�8sZ��l4�£pv@iH&c�La{�X�ق�-����c(�I�zRy>a'}0UdY-��4��7,�IKȦ��7�����,x����)��3�7�S�h�k0�M�x���~�����T������,��䖴:�P�/X�x\ؾd5%و��$��GL:�n�Sx	$-�umBr
�\��Ӫ�~��W�Q0��m� �}���t9Ӓ_��s�q�3�NB$�Eś�솚!�gY�uC��?ب	X��1-��1��k?ߓ2-��W"�NF�J�^;����D��9�X��g�������p*���k��M;޷��Bdn�%�[�"
9E���TD���x5�����xl�,�M �_`�*AH�'�� �2�J�b� �����1-1U�1EN�`�X�*M���D�)]Ez�T"���>%?�P�Cu�(�ه�}��b��
5
=�?�@�@]!A
tSƴT��e�P?�J��]��!�<��`O�u�ea�9�!��X�CY/��a]tC?��.I�����!�Cij��B)�3�Użb�h�b��0������v癀k0e�P=�N��ڮ>G�Y�}�d�0�n-��9f>�b
��IA+�$J�
�SN1%!iiWZ�KEs]ьT(���&#�������={�y�uU��?%�CO�=����e�d)�PJ�0��l�aVJQ�;~������%!�^*T~1}u$�33�bg���ؘ\u��2��e;k}M�x�x+��q�#��'�Ow�W���!T�EE�ve'3%��i�,��D1[1��:Q���5	&a�&��i���;��TBȬBX��*�~���,Z`�q\i�-�IL��f��[���:�(���S/R��O��`�]�ak��'�E��h�2`�����ʓ<(���n��/�wS6��@O�cq��E��?I�a�b��!�� T��R*Q$�t�����v!�ϰ�b�b��d��0�<�	�͂@�	?��`�e�j�LH+��
y ���)�qIx�~�*g�(�3T�����oK`]�%LX^[�����}����
��n�n��μ�g��*���v���qDdmJ��e��ޖ�~�sdWLQ^���0��E
�RT$A ���[��$���f��I!���${w;�/�Rr
Q�b���_�doV��rbK6�t�%\���7��635QvIdN'	��c(�ߒ
�+�y֣l���\�{]=E���o1�sQa�-�Q�Z��R%A�vn-����G]�ᘣu��]���Po~���I�a��o��װ��09,�h��w֢q�������#�|���y�T�xz'g��q�
�����Cr����2rq��.);1��3���'u�O�Jg�d+���-�+^P[`�9=Em�L��^s$I�O�[��Y-$�WkW��E~�<��Bi�>�@Zq���QN�i&#y_��)�%ˀ������aY0�-�y
��f�f����ABj�#,TD��d�!��'�����IqqUe�J"7�ENi�-V��%mFA��{�>��]1�׭d(� �4e����``��B$�Y��O�������
�R�#7Qv�b������R�$E���S2���a��|7�,�U����E�A��� �W&�}Ԓ&7��27�q{1��H%D���Q���B�*����z��e�nO�xڃ`���?I%��&�l�=p���!������я�$<�~�b��GJ=q���N:eCi�l��(M��䑩����FI�Q��9?%@"`�!��?�%k�/>b��[0]^��
�C횬��XRɏ\�#��z����d�D[�T��
��@=y,ƚ?#)��7I!z&�Q�<G�Yq�7��g���P���~EM!'��.\�=���(%?	��'���\GX)��G\cZ�����)-r��k�͙'��ON��8�0ɤ�1m�^���4K�A�.�#/�)?%���D��JBMQqz�8�>�㦨9��[��
�Q+��h��o�Du�M�g��_��ka~ߧII��Z��~H��^�BEo4��zK~T!�8���'y@���
���� q�K;�)�*!��%iC�Y}�(���a�����|YFN�^:���*rUl,̴��I�z�l��Hv	��T�`,��@dcZBT�Z�VI��,LW+�ZK�/'�ƕ�(ժ��G�Oa��=�7mU�`r&K�د)��8�����k���[t+ZVJt����)*�mW� iKZo�
��'fnᏛ���U�(i.��I�c��K�ט���t%x��@A�ڂWkȇŸn�-��h�5�N�?��'a*�I?�'��]KZb[�:)*�s�{�kS����(^-�*�F?>M�͡z��J�Ы�D{���U�䗫\쫖�8���G��)�߮וVl�NQ�]n��Ϙ�=��ϋ�z�S�T�kI�1��!�w�����`ayj7M�%�U0���[��B���b�)��x�q�%r5��J4�rEIbqz'�%}h�
s�-��~ �ON?P�S�7<׫~+?���)�,��3�K��`�JJB#Dr�x�X��큨�UY<p"i�U��q��Kz)���B$�F6����Uo�7E�y�tb�Y����b
�6ߗܦ�'_�Z.} R�
�,T�F*6J~�~;N���-u�-Rg0��;^*&{Z="��)�^,C���J�-M��B�d�l`�\;��݌r��\�#[Ҋ,��� ���S�t�+r��j�*��(�~�����>"ӽT��ɺ=�#����C�c���I�^Lsw�ֳKf���z��\�#[�zST�)9%�J-���+m*P�n�
�%�GB���D�Rьiҥ����!�'"C�npc�[�!���1BB���<��gf���u��9B�S�Oː) ,T$?Z�8��j�k}���}0E"��7@gZ�g[�Q�~\�G�(N�"�r�>$i�v�.�Z8�
�C��t�<�R�I���L�Q��k4@��rhz��O!��Y��t�K��ز��"9���kI�C�X�㸨�U?�\/�B�����Si��r����
z��R|���b�]'�6�av\�{	3X �0d?Z%?%-z05���v��#_����E�-�	��B�w{���bL�NQ!R�"��s�b
S�w-�g���$���B����G��`;j��c~��ŏb�b����j����j�Rcfc�
�u�����J:�Nh�Q{���!5b׃t���!������T�f~��vJ�E3S�#��1S��r�Q���JP� ��)ZZ
Q�6|-Td�)��BL�䇹�
��q�%�NmgK0T�6�iBUWDT{ZU	0�thϨ	�=B*)Z̯+5���6��Y�,�p��/8��c�j��!r�'���B����#�������Mk`z��"�TU�R��<�~|��SX��$�J�ڇ���!'@���fɖ7ld'*[P{3'KőQ�<)�����ǖ^l}�/wQ�֠x�}�ƴ�cO����Odr����{�H������u�*��K��	�m�����B&q�S츕�-~�� �����xck*�1�'���K~��n��J0���j+	[�p�~qST<�~�����'��$d�m���5����"_0
���Pi1����"�S�W-?�i~�*�����b��HUB�M�]i�RT���ʶBFIH��$������t�W�dTRh/��!9'��]��.�g���ka��9��sGr'q�}DY���H�)r��_�"����/�Vˑ��{E�J��I�U?�iq��ؐ��O��n�Oֲ��]*{Z�y^����M@�
��s�)NX�t=�*z�ɒ�:%?����.?R�'�VG�x��>j�dj�*�1�{iT>��TDKQ1� W�W~+��O��N�W��N.�+��0�a1S�K�N���:z
QZ&-iS�/$���7���n��T�Øl(Kmс&�`�I�!��"��Ȇ)>A���W֒Y[�9�H*�Aqw�R�h�8�1���ip
��aǪ�~��n���)��2�hI�w���Y�WZ%EE��5��;E%�P��Q�T�^R
鳬��>2Bx�A&�zX�ô~L�4!�����-�!Z�䴞B�zO�d�%�[�n���0��������9�'<�&�0�^�an�p��*�rER�~ފz�,S�	�A�J7�ة�p�QU4AD�'Do�l���-T��7D�d�'�&iK�t�o�
!�ɋ��Lj����$s���0���=#��T�?�_������B��;rƉ�e�����`�OO!���Պ
㤨Ȗ�J�B��d◜��a#_�Fa���r��"�Q�AH2� E��¨�L!�<N����ǯe��2=E��g�B�2J$o\�q����X�&$�|d;EF�o�kG�1h�YՏQIPԆy�`]t׭IZz�k�eة��Vv�M���8^%Ũ��}mtKZ'��OOqZ3�Q+}�⤨�>�:!�b<y4�������#|k?_���̐� '07Kf��)ʮ-~lKZ�B�tj�(�߽�BLMQ�Ң�S�C��JK�i������C��"$ͤXz���Q�,��L�D�e`@b)9�OO!R+b��C��L��Dꚬt��S���+��QKZ��8?��z��&���>�|�s�i���m�$���J�Ó���<�J�
�UzgB��o��?=��U	�%��)T������~0��G�@q�SR�qrU�s� =��k)*,D�B"�^1�
8=^d΃�(��aC3��ߐ�S�:�x�h��އ0e�yJ���$T=��A�T4$��0'E�Q�<m����G����Q7x��g��]n4��K�
������������bJ��-~�ڀǍ��Hz��8��Rr
18�z��Y�һQ����`$�$�2Jv"�.e)-�h��(X6<�)F=��JJ:���*����⇸���\��-�w�sY���Dr�eR�u�ƪ���s
%3G�
�}RD!���
��r��nL�����y�� G��S��6�13��0�?��i&~�9�,i%��QRTU%}.�q���L-��J~�_��kL��y�)��I!�4���?&��l+����-P�` �_[���LKW�ܡ���zJ���V���K$;T����S�㸨C�U�p椨�|m�,t� ϒ��[�

H<ʾ
P���'�����\	�]1��)���SL�+�Œ6uJ9-��#���8��%?N�fiw=W/Ĕ��	�èYG��*��]Xy��t	F�&�����0��S�LM�q��B��)ι=�}<]~�$L����B|j��#�b�L��}���
�A@zG V��&όx�,�t��{Z�l>br�U�S���៟b���z�mI+�[��7�D4��-T���TWx��Dmi��.��O���%��Jh)��酓e��iv2�D9��NG��[zq�a�j��)��a�)D��eޒG\���ᶔ�{�h.*n�O�RT�āl�X��@J*�N�1̟>Yak�ԓ�T��MN?�P�Ct�S�tCO�q�S�&��]~dWZB��h#L+�q�EE��N���4P.)2�a��
�N}&��<��¤@n�ƚ-q�J��S��C�
=E+��,i��>4!���
S�
E�!���|Q����Z6)*�A�T�@E"߼TBg��.��a�H�	���~��tʊS����^O�M�R�}\?Zf��1t��}t��uB�0J

��{���+����:�Z�U�W��(�%���Y�	���	~��>v�L��o�s��)*�+��G��ޞK3U�0��Y��0��7+���c�b�J+�,lmy%ԑ�A�w��Y��P�S�PV�Bl1%�Y2�==�h�"w���
a���f��D���$f0I趶�WX�d��̙)aLj�܁�֭i[99�h3vJvB��)DRRM�QR�[�~{<^/�E�'��֘�8�=ꙓ���j)|�M7j�}�������ئx���:��\P�馞B��˵�M�*	�LÜ�"g��c15Nf5�ȗ|�Aꂝ铅: ��6n��Y*Y&�ȵ?4p��c#c@.�ڦx�k�)a��u~��<"�}�%����3*E䲰bj��\�Yм;�KBV��@v��󲢲���ҩ�Ǔik�p����J�';OI���������=�����q��Զ��/��g���SE���W�\�`�,�r�c�W�0�ۍ�Oj��zސ~�l�C�/��[	b�D�%S��}��ˆ)���~"�xMnlRL�/%t�т�`O<H}"T��
%?DrQ1�������\6D�G��M)tLzlw�ΤF�u�.WE'��6E�n��j;�Δ^�JG!�,��V	]U�	�Fc\�^U��SU��)7���D�I�充$� =%Sw+�' ���0����yL:��/	U�N�
��$r#c9��S�]�↖z�3���{6c[�4TK��?�[���\��v�a>
��+���� 5����z70��-�I��n)
�,^Py0C��+��
��KePU�ꌿ�B��7�%�)�ݡ]a�4/���f�������sҊQg!�]��G$ �<�,D��(���V�Mѥ�J
q�GC����z3S$1%Lr
1��HQm?Z��Gl=z�Q�є�[�C��``���ho�q��
��uϔ��������*қ�[�䧪)]�9���5# ��(��F[醼bVX�Z����h.�
�`����S��`$
�H�k���31O��%��}��4
o��\��B%��-!��h�9���P�X�x��S��qr����Z�ff�}���y��/g��͛�Ҥ��$��u<�,������ȇ�	&n���'�;��Pǣ*)��$�x����b�7���W����/6̦����4�@?>�
��22�N̷m�SL`'��Lά��\�/Tt���*-~�5hIk*�Q+�κe�;N77JL�7������ύWmp�{�k�}�ch���G��@ԥ@�A�#�����<Q+���R�k�L]ΦUL�	+�R3�L�5�q�%��
���}+�����M����d�&T2�%�RJ0�W�~��e��b�۾;\�bO�O��B�9���i��V��M�?�.*$����G�S�iu��LQj֔^:fGs=���W
�ü�ٸ�S)���s����M�X�׺na�![��"d���v�4�U�3�v�>�O�o�9q8�(a�LфR5�#S�-�c�bk�g
��|BfgP�D#S�!$[?Zo��%-1�`�>�Y�E%������#�ދ�9KůsL/k4���BԾ?�_��U��JBM�*��*J1��-!/@O�
	Q�V��6���NZ1�`�
O��PG���0x�z5�ԒPCo%~13��}J�V�� ��3��P��f�O�3e�xS�z�;FO���%��q�5�����븟�gh�0K%L�$uw;QE�gjP���,K2�%�jI�\���\���V��*!mk=�UZX!�-�{��C�[J�W��ڃ�߇�R�ߛ"�����7R�"�l"o��NE����B�&>T�Ծ���� K��q�^1%cr��<E0�~��z9^��SH�%�,�(Qd`�O���/E�;K'�%7n���,D�`NG0.u}y(�Y���8Ĕ]�Y|v֙����O�
Ix?ɟY�kf�x[,籠V�Z?[g��)���������\o,~$�0�e�n�>A��0æT�Q�������
M=����̓��\�#E�r�e�;��:v���)^?Z-jV�+�a�Cw �y}'����0?�ƴ�7�$�,�7�֝�qd1���6ym��*�UE<N(J[e��B<	W!�Udy�Ђ�#3�V�j�����Ȟ�Ը�
+�J@/��|��+�/�� R����B�l�t��IH�\N�i�����/*���j����		4O�^=En�#��'�tCr�_��wS��G��+��fŤg�a.J*����2MA��2QŠ�y�܍��<��ST|U��U��n�D7�%���"��exN.��u��Ą'T�D4R[Y��)ޣ�
�{3h:�1��e�|�Ns.�D��i{t�)'���ME�5�xR�Q�KR��"�d+�0��"��1ņ��c]����SC-?�(�-T�h�,g=QzxWZ�sy%�^�s��[<nk�kv���ᯰ��A��8ŭ��z*S9E�_Ua���4�/�	m�B܄.b�"��
�-�k+�&�+���v��h���~g� �x�st�hCj?"w>�b9VdzWa���	�B��B�0b
q+}L!a����S�JO��x�T��O�{��Ќ�m��ס4�:�d��7�䤓�z�.z���Jc��%9�Dm�#�*���\�V�|�_�$Ij�}��'c%LW ���EOQZ�ټ�߉�8�9]���b�BQ`?�{�����
z�r��/�H�V	��lV�;%r>�OR���z�}�l����Z�yJh=�Hz
q�-6we)��Sy�����؟��d��Dx�dN`���D�1�����JA��ͪ�^:��LV�fsY��2��TB[��a�ފ.��+ޤ�nh+��\/�b=��YQ�*�*�E~k���M8��@GI-!zL��'݂����F	�>LUU�2S�ON���UN���)N4ꯧh2�Z�J��N�ٖ�0�2����'��$)�d� u�YZ���pNC��J/��
�SU1�*���V!J' {�4
G]2+���H�S���S� �’YO	lN�oh'�'�͆����oj�ڹԢ�6��6�ub.M1�)�hb�O[�-	g�B���HZ�x��(�W���%?�T�^��xI��o�&�D�q�x۳b��?�U-��_�
��O�� U%��
1���Š�����'i�e�C��+���ғ��6?�?�J�ڍ`g
�U�>李ȚL7�����\㣉)��>��ˆ�TBON!��)^=%�?E	�<-�ՠ�RMC�a�Q�|2��dy���3y�D�(Xy�LT�d��(}�u�Ь�P�Ÿ�=(�u����" ���t�%��)a��GT.�K7@a1�,�� �ᠤ��+�$w�������^I@���
�RyKtq'��bJ!!������oj�}���s~���dIkp��zL�<?��)N�O�5D�}oB�o�-g��UL��<%>Z�[fUž��$A��'ʉ��Z��E@��bٴ�w"�Z���?v[�RT7j���T>z���'��3��0xe��o��%i��Z�҃a�gt+�>6��g
�x<h
���M21���YO�܍���>Jr�6qjRK�2�7$��(2���8c%G%�'��,{����\���O����k�{�V��V�UU���(�bR
��UTw����`ū�(�5�J�V�u@�K]	!�-�-XL	���� TT-p�&��“^I|�%-$F�B�5>��u1Ŝ�B�'�-!�S������W�N���wnK��0<����<����z$�^dI�~�6�,*u���cM�͎O
LQ)
��{V������^�B��a�Y��6)m�=�u7�ǜV��*��i��r��t�D�h;`� �����VtlJO�!z�$YJWNs,D
��Y�I�����(
k��һ̵͜���Cp+Ȕ�d��Z��ɶ8EI��ۧ��*�%z����)�Qw暢���v���<���`u=�'�Ʒ�I�V��0�ϕ
���\G��q,��
��	�+�*OW1Ċ�3V��Q�h%�V�ze��W�W��O�O�+ż0uܢ�Q2���n�����>�}�32�O�8E�N���6�=�B)�]�_qw�����NZ����:r����X����O��2F���e�ޘܲ)����Oo�/Lq��uk\�w������G���m�?�M������{��ð،[)�ç�3,��	;K6���Աo�<��0���'��)��}����G�t��C����+�퓳-?��}�	i����&�?��?��޳C���/��{���('`�Ɵ��ڴ��8������*�%V��k���.`�[ѱ3({5Y�+���a�l~<�������I���j�dˡt"��3h��LyɔE������}����<���/A��l�l��2�kK��=�^�� o���MP���-TQ���܅*��V%w��k63�G�N�W�j�*_g��b�`XTnz�wY���Q��OYW+T�E��U��㋁h����*e)�+ST��ʉvq��f��OI�0�� ڽ�|�V�D%���UpV�\Q���8�Tk��*�o�dU6w�����W݊��Y��ڋn%[�b���a��zd��tJO�;G�)[*�CY�!S��"U�I��kx��S��{|�m#i�>E=-?�b�|�O�d^�>.�/�(T�~��֪,�����JCO�Ҭ�lb%���Y���}@�bK�2�^����$
�au���g�4"�"�Zh�n���<�Ʀlsb:�����S�O�O�~���D��
���.~��*LT��)���ҍ}�p��O���>�ǭ�����X��*���l_-�b%�(w�~�آ��q��J�QI�(�Os�IA�<<��� ��yv��bۓW�������	�Sϲ�%�g�5P&��h�t��U*��)u���	X,ebu��}�r>e����c���U��X�Ov2�����*@��UQR��:�`i���+ʵ��
TR-���E۸Z�&�iّĈ!���ߛ7�Zڧ��#_��6�)*NN��0��X>%���V�"�.??��k�Q�J�6Jś�}JŶ*
CUTnsL���	H��*�XQ�Hjp+����)|2�%Y�>%��V
D��'n8Rw5��z��*jR��Y�q=��)�5��2�VM[&�1B%�S�J���n�T�Bhut@EU�1TE�i��G䶞R�\E��*Y�cT�b��Vd�������q���LY��𹄒B$��M�fW�JM�=>%�������mqJ�Rk������7BE���R�Z��(��[�m�)��ÜZ�U�j�\M@�U����y?�Sa~mv���5F�d/�]�*&�p�O��[��Չ�g�0��cw��␔4�e�ʒt!m>:V���W9�V�����葴J�Һ�W�[~�pc��9*�0TE�Z����iUd��l�Nv��Ow8��@J��*�VT,]��[��aQ�F�"ϳ�qv�%4�B�+(mR�&��\�;dR�*S�R�L�l�|ħd�J�O��5n�|i�b�Ğ�*�*q��<T�p��Inse���ߓ�<]E�SԡbEI���Ua�b�geJW�2��%��
]+1)��h^�޿�*��(�`uLaY��r���Q���;}�r����Lq�di���OQo��]�J,c�������'jUT�g�^���**NW����x�o�T$Vu+n��)���kG�^�U�HO�D�s{U�4�%S��΄�r�J1�.��=DŽZ~3ޯ��Sd��T}��h��C������t�U���W�(�T:�+�
c_�Ź&�ϔ)�װTLJ�x����'x�`R�&�[I�3L-�Df��dJ)$��,�$
�8e�O�Fu�n���Rɾ��X��BêtUi�*J�؛��Cvvl*Vd��P���+�kG"YBW(�_��s��}q������kso9y5��Ŗr7MN��!1�OKnr��Zf���R���KTz,�
�J��|
��
Z��UQ:ZE�r�����+��=l����ǰ�rx��/��%|�i�'�J���s�X��CVI�e)�R��N��S�3<E�}�wS�
�-(n�T҇���fo���;n[���D_��"�b�d��mъ
�Ӗ)�^qʔ?����� em���}�I��J�b��X	i�Ԥ�E�R�Wɔ��4�^9��҆��O1�}2J�o<n�&(~?c��!w�|�����޾��
�o���:s�U�ٽx3�뿿�Z7���N�U�A*��d��˒)Z�,�daː�[�R6,�U����S�.���n�YM]�i�IkL~�+q(�R�e��$���b��RoAR����`b+e ����}4�>�VYK��S�͂K�ʫa�uV�����UIM�뿕��|K��t֗q��)�:��^������{<���%W���L}ݸln_�Sݖ,%�����?t<�_���4���|NI�U~�ˡ|�����dٵ�QL��,/���^�~�lkO��G���5���P�H��yg��6��Dx��p�O��t����U���V�&+�$�F�0�V���^����酠�]һTS-�I�h�?���=KK^�D�Cl5"O6%-������X�3b�rx�cr�*�q�>�:?��S"��T��KJ<Y��eOeŷUVP�'�j�
r�Y�I�Ր��h&�ܟ��#Y���zM�3�
w�?����܍f���l�K�h�LXs�;oeJɋ��Kl���H}�wMF��i�̱*j�U�J�[�wd���b�^0���u+�^i0,%��yLU�`O��Y�ߟ_Gb25JCv�6�M��9��V�b��+�R}�H���T�g*��k䜕��L�R+�W��>����B��b%{�rj����;�7��eJCV�i����<���V
�)�&��ǧt���C���*�GU�P�qVEM�UdOW)��HŊ�V�E�\�E�"S�<��z��ؓi#r�'��y��
E��۞3�:*S$�c��>��v�O�g���E�N���PE-�j�Z��
�W�(P�b/Z{m���|�4�⛟�.�^�����`�8cNro%R�݊�w�%}�n���┨OQ�HZ�)Q��R��J�DuUQx�����k�A��εҬc��9=e֭�,]q��,�uJ���7���y���<�(my���|?���HU�hJ��2-��|��S�;BEST�T���hU�V�q�U䨡�U��X��<qs��F���6^���|�9�UrQ܎E-��c�,E��
��)�X_���f������*�r �X�]�U��& ������G��d��=b�*Y\�ų\��d���cJ/�'���\IX���2�0�6-���Om�i�)
�PQ�T������;�O�����Q�!�y���Kɒo���d_�~��*��:���@/�sKe4,��[��U9<�u�C�qê���0�B�-M�- ���F����u�4�ze��(^�3���G#:}�>启-��k>e�v�*����i���@�J��j��ꙝ�K��6��U�o7U�P��8fK�I�/W7$��T�\�j�IM��m>���Q��G����-}ݮ�?B�rJ��^C��>o&�v��Rp���+*w՟��(e�2֡,;�����%fX��,fIz|��Ň����v�ҿ=���V*�guժ��Ey7W���f���"�5�iX�,�KXo�J�Un��h�R*�!X-�΀�I�2E�|J0�g�����(�s��H��*:]�h�[�\KںdP�6��,	4��|�3�dd���0¤�t���)�ŏSP<A�h�Ui.�X�����y�Ԇ�T�H�j��EٱN��U��G�4���Bۈ/����(F��@��2E��)u�R���[�(�����R*��=Ѫ�e�M֪�-V֮^�]��
ia��(Kis���>T�|2��C(�x2�bw	�F�V������]q��)Ŋ��md��N�)�g����dl�,sg��]�͕��_y��r���s�g?��Fɇ�K%?l��WZ��\�:UϞ>�#G�
��z,I�A���V��l��ZN9�
�y2e�O��a�O�eS������:�l�J��k^�q�잧tE1#��5ؓ���.���<�y�!�䞲��@ro=�U��(���N����"���KT�^�~JEw�*��VX��֒�I)�^���R��gx�r���ı�wި��\�-��f�E6o�m}�.�T���ᓇ�U�ȁ����0���zE�RZ��/w��+z)�5|�ę���Y��&E��N���ٿU,�Ϻ�Ri��s��.*V�'g��\jW�d�W�:f-+P�~��ڹ4p����2ݐ�"�e�N�)C�S��y_��s��4�bEş��x�2�V{�����;^���]�O�������)����H�x>�=�$���r9��h�X�`(�`�Vnm��5� |�cEE��cѬ��Vx�-�vTq����6�po�b�P����"_��H�V��},9��.�J�Y�٨�%<�ᱢ-�4��4��C["�X?�:���T��d���i�
�ah��bE�2/�a�>?2��\��.��`Z�T����}#��c�P��q��ӧ!q��薟�/�Tt�U��& ��J���n=����|�;.@=�"8!V4M�l�4u^-��4����
�O�tQ*�jU��l_�}v��c�+T�ҳ�O�B�
܎i��-�8S�ԑme)�M�N�rOE��Stk��mcf�ժTS+Fr�P�,Z9G#�k�"Ҽ�O���/��`Z�Egr�f��B�A�=�sq�t�Q>�_5<G�h�UQS+[��]ϭt^<��}~`�P�4�Й�j4�Eeʐ�03�S�x��(�n>^��*�4�<N��۾����:��'�^�\e6՜�B5�ӧpC2E��S��0�R��c�R�3�9T��{��f�|�j��P��03w\��j$�L�˄N��!��<o~��1�R*�>��ҼN�XQ���Vt�ɭmZ�� �8�_̜%S�-N��f�|��Tt�U�8��p7�Fԭ��S�z� y��zњ5�h�Lћ|��TF����54M��7�Z��YΕ������08-E���-SZ���~�}��T4z`�:�U�h���n�\B�C��
ୄ�3zm˸y(�S4�>E�W*�#2ܪhx����4�]�Rz�0,�#�Ȇ�e�%�):ŧ,���+�����>��#�稳nE#􊱞�d�-p���)y��N��� �Q*�cU4I��<�Rz��{�WW>�����I&Ee���)�@�=F��{�X��������@T/�fT,j��;�?r�Lѻ�S������U�T�T܆���+j5,��F�)����L�6=�+������꣯f=�JEװ*��FO���0���%Y|��5hEF���k��!a��(.;����2E��)z�R�q�N+
z����nB3׶�eq_wz��"�	����&�椶͒���T��s}��T&��V�oTQ��|.�U�iF��Rt�\ӟ�Z4�i�t�ؔyB��"S*��c��M��3��Y��8�ߧ��4�����N��*y�Qt錢�+N�y�G*����Ŋ�X��'�`�4Js,����,����d�Fד��qCsz�k^�Jeޑ}�X���]�U]�Di�����ƙ1�Q;�޴�y�Lѻ}���T���o���x�k�a�9Κ_i����g�X��r3��M��d�&�=^��k��rB�W�#�C<�l˻���Yf�o��<?6�M1C66�Ļ���?A�h��ur��u���p�e};�+�OJ^C��Y�N����)��r���s5�d`�kvsNb\�Ǔ��	1j`�;�b`N�>����R*�!|�0Xd����'
g���������	AÓ��v9av�)����i_��O��3����b��/I�a��	e^j�>���Ӓ{�w��JE=#˴��SJ��Ύ�q�x���gNܛ�L���9Y��������{�z��{z=�����_{o�e��o;{��
ݒy�E
A�ɼ�����A�f�4��Ȕ/~���+��VB�x@̰x�q�����dt�(<�y?�6'���[/kR�&���o��:ĊNt+ο3,���|�!�:�y�­|W+W�G�7¢�O�{������2�w+�?�o*=��J����{�%� �!/^�\�i�ݤ�@�������I�DX����Zx:�����xW|W�rJ�_8yp�����}�(��W��w���9�fX��?�{g���
Ob�O�Cl�[���#��r�X�Rq}m�g@�[I�z�G߀��c�Ei�M%�o/	Y/P�3�J�+�VԭW����}�z����|�����R20�-w�������(=}:�gu֝t_Dm�4�ψEWs(9�!P*��!�Pg��ā�5o9��z�Ѭw��2���7�TF~��N�!,���A�^-3R��dz���l�R�uB<�җu�Ͷ-o���lཀྵ��yg�yX^C��t��=)�N��9�/x%b�
�=B>&==�7o��{�nj�x�y'1�gtawpr����U�Գ|��>,6�w��ߪ?<ӡT��ɒ���?��ju���(��R:Yߵ���.�>��>���N�+/Z&�\?W��ʇ.���FBJ�ep��g�R��-l�<>��-@��6�0�8QP*aP*aP*aP*aP*aP*aP*aP*aP*aP*a�`�'
��ʛaIEND�B`�PK`x1\:tt-2�2�assets/images/landing/07.pngnu�[����PNG


IHDR�|�wtEXtSoftwareAdobe ImageReadyq�e<%iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.6-c148 79.164036, 2019/08/13-01:06:57        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop 21.0 (Macintosh)" xmpMM:InstanceID="xmp.iid:768BA6890A1711EAB39BBCF49119F7BD" xmpMM:DocumentID="xmp.did:768BA68A0A1711EAB39BBCF49119F7BD"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:768BA6870A1711EAB39BBCF49119F7BD" stRef:documentID="xmp.did:768BA6880A1711EAB39BBCF49119F7BD"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>�,���IDATx���ř��Y�g�����!,�@����6c����1��211�f����#��8��	��l��/��a�H�!����9�ٺ�ͪ��Ϊʬ�Z���3!���ʪ��ʼ���������,�,�@�0��!@*�R|�'@	Pp��faВ@>��g0�3>�F J�B��`��R��JP�߮}z�r�u���
P��S����@5gz�<L�(Aͺ���{�ÙZO���bj�G@	��Ҵ&��4*�P�=A�#��z',��
�
��N�t��z�i�Ps���ECzh:Pϔ��I�r��䖡
�(Au��eݟ}w�
��&>&�Y�4'�f�T��%�q=Hu�A��<�������6�J�Q��Y�6U�~������Z�S�
E�H���t
�2}��*ԏ@	��mY�5]��ӿ���e�S[���+|E6/q"4I�t��z�/�r5�^�TPj3ݫz���l��(W��.I�t�U�#�X�:��o�;�%k���^$���參B���JP9�J�t�#)��h�ʃ;P��!3�R��"3�Rr�BjP�
�%ޥM�~�{p��O�Ke�}����)n*�($Z��(A�\�@E����x:P�g��LX�w��F+E!*Q*�
�����!]	�'�N{�6����h����fI����d�K���1�JBЃRi/஀�Ok��T����j�s�׳�:&\�����[�'1
�"	AJ�� ��Z5���˺���S�]Q�ʃ�P����2�w�+gkHva�e��IB� IHE{!ݿu�UW>�գ=���?����3��M#���ad�rd}Χ�"TE	��d��
՟Wyqŧ'���%RO����ݚ�{���Q*]*"	A*��W�jӀ��2|���1e�*�C��6댩x��:�mf4
�S�*���[��	ڃ~�Q��p/��V���MV������g1�-��2�Km�Lj�$=(��yvvvp���ku���r����Deu�e	4`��˙Q�Dz�x���R��
��Um��T��SO遲�k(8I�z"S��\s@�HB�^䃧5A*�(놬.���)�@�����Qu�=ʚ?�4)&
��@kC��UV���fQ�Υ��/�b�UN3I��Zu��g�ŧ�!�҆J	��֩�j3�̢O	R+��A����yo/fE�#ګ@�&	C�f�=�H�jC���
T�TD��6.v�T��bt��t���N֩
�9�����ۅ�Lx��{ݗ�(A��U�U'#�'��Z������<4q�Y�$%_�a~0��0Cyu����GX�+AU�
j@�@UZ�L��2�\%v�i��'�`����PDX�c6��Z٩z�đ��EE�P��T��`]��P�[���Y7�����k�P�,�'Aa%MЊjC=MoR�]�e��4�P��Rd��V�jN����I����*�9B��B�U�4�,��ُ���xQm�W�P/ꑑfC�Ĩ�>U�J�	LJ�z-%[��4^#'�8������+���҆z���&��4I*x<�v�N	�?1P(��S��O�I�*#�t�?���;*a.VDj�0�#�i�0���Y	*�6Nʨ���Kq��Eb��k�Ή�i��ܳ�ҋ 5�.D�0�OJP�a=Ӏ��rK?�y�+��`!`8�b��o�a�<U�ԕ`��B@%�V�2|=���@Y՟b�b��P�'��&_�kCy�!؅�ѵ�B}��h*�
T\2^�\ʪ����8������J��P��B�y��>P�Jtd���»�L@��^��]	�ޒoN�#j$�dv�,͖�;�1�T�T�TD�tC��}�>�f��D=�!��Ԩ
����Ѐ(AE"�t��o2���-"eR �,d��`�B��;匳Œ��A�
�*�h%�7P%V�\���L s��z�b3���7����CM��gYժ� (A��@��_�5������`p�&Ω �`\�-����!�t��T�Y�BP�v�P%�Wn���@�ur�E��`���3���o���!5�2�S�C"��D�#�O>a(��AV����j��"��}�={�c�������Vu/��ܨ>�\j�*DzV��Q5��^�X	ʧ�re �P�(��/P��t4^��(�WN)V�"u�j�p���^�0�m���
��o�Tin���K�%��$�d���6��@�,��>�<���y*�U*�/*���=_PTOz�"v�����YI�P	�;(�	��Pї{+�&���1�>k���4	�!D4M2��Aj�ܪP�$��S��u�*�
�Ib5}5�������Ȃ15�����r5J217,XU�<ȫ`n�)A�w吁�Kt	�7��$�dՉ����+�)=��4w6��9��|�et ��L�^��AKO-T�*�;�P�F�Hk���~���N�3�e�|Pm& �.��H�y��*�`�Q
ƄPQ���3��JE��^%]�ىI-�KU�a�Ѐ(A��@yd���@��`�h@Y��HF�aJ����h�gP�l����C�vS��n)1D�'G�RN�^m�[��BUy�J+ 	3UȨ�BS�ꔁS�V�����2���b,��Ӏ��A<A伟+��G��f�˻Z��T�ʍB'�NX��b�W!�����P�> ������"�*�В�JV2��_w4haH�@	�4�|���d����jJg�6W+1�tU�P?HB}��
�I�e��pș�A�Xwc2���s��TkPh��B�	R���t�т�Q�I
m��V#-8U��ZnŊ�E��4_	�Z6>�D��3�����> ��>�LAo��P������0x3��0�.�P�@���K4u��MU��dB��R��J�u&�3��nI��O'd���TfP�@e�
(��Y���b���	��!U��(�/>+�t,�s��ڡSC���I���}���R�*1
�"	�Z�z��V�(�2t�rsB
=IP&��<��Idإ��"`��/�AO'��p0H���T|��vi�[�N�CLd��{��04H�PS$�\ƚF+AY�D�P)���V��4 �Г��K8���Ȑ1(�+�� �SIV����g��Tv;�s��D9��@������sU�R�PU�PI����Kpe�U�<4#PYꏱ�c�IeH��a@���eL ��3Y�N��x�4�O*�f	���x�R�Պ�r%�"sK?����y��(�L��ގ��^�^�v3��'����בsV�I�`�j�.F>����/f~����
+��{O��G`���3�Hvٻ�ƅ(Qq��a_| W8X��+V��S�|�K45X*s ���](5|���1�;�S����"$��JP��0V�̝�d����@��K���M���D.n�|Z$�B��<�ڠK�1-��,�[���;�}ü1J��֚v2���揉���DS���^%��c=��X�rb��(A���3)A��
�@=��k@� 3��<�Y�f�>C`�']D���|��J�
���f�Z0�(�0AK�u���G�W��U2փ�I	24��ʖ��K� �d0e��a��;�z������\�~>x��<����'��Af���C��x)�d���8Fż�S��*���̑{�����K_?��t���_�D��׀��Xjz!��K�؂�Qߔ��+>���Q0WT$p��^Z�Ŕ�6������%��]$3�R~#7���E�ȯ
1b*��$�B��̹�?�j�1�(RG�$�ERn��ґ3Tf�V����8O���i2��4)�㹁�Kų����7Հh�
a`���mA������	�y�,����;��?M��;������Lޑ^02�Μ����)�4d67"���'|��|��lV�!blj1\������@9��\��ӀHL�3���z�SH[��+%H����`����7J�lTq�+,0݀� ߭aryg/뤛�	
K�+���
���څH*QʙE(�4�JP�2�ab�Rd ��І�*�P�$�'S�B�І����}7�k��Qr,Ce� ���UX��p�-i^��L!*�J�^���
���g<�8�P�%��zP�JP��<S\X��0b�&���N2	K���'b�ʮ��ev�:�O���4��S�4C��S$'P����&)�ә��Dq�N�rD�dV��{�L�UlJ��{cҬ��� ��#Y"���j�@&ɀ�Q���*��	Jt�5h8�~�\��͚&j��G�6U���;�YZja���P�������U!�Si�Q(�S6���Uh�`�AP�X��r1
��
TJ����`�PF�R�ҟ��Y(WP����4qf��*�R���G5|t�JA�7#��J�#t�趢�}������}R�*T,CQu�P}���D�� 71O�K
>�j�#�t�`�X�t��z�,��B<A��&��S�c`A�	��?��9=G,\��z�|�j�1s�G�2ͬ�$�k�2|K���]�$U��$DJU�-B%�Az�*��LrO�pR��j@���T�'�'(����tn2
I�,@*��	~�R��J�W!�[�R/u�1:L�9�׌��IJ|��c"��
U�j�QH?��oʡ5B	2�S����W*�:�Db9��b�"��D�n�tOP��/�y� �,�&��z~�)k QD�)�ה+�4���	�����k��R��$�CyS)g��dZ^�*�`I��z�`)A闂��H��TŠ�3
�%��h�-()��T,L��dG4��2�����^�����ݻ]צ� �4��+�θ���#�Lv2�C��>�8�.Eʣ
e�+��(�kI��1��A
U��ą}��墩�d ����䭡Ԁ�&���oj��e�{
eWe"u'���!#*V�A�J���!ؤ�?�a\�~f�㖡��J+�V��j4qVŌߥ��Cy�Җ�
�j�$T�Tg���R�1�'e �O�S�H㥔e|@���gJ�A�XG�eh��@+;)�Q�:��oP�B�
oK��>V�=���T����
�-��MЏl�;�N[�&�)�rb���%�F�
2�ƂҼB%��V�
KB��A$�꼹ԯJP��@fqa	�c7P�Dd P��ن�e�3I�q��1�bt�+��Lc#��Ió[9��O�=�(]�i�(�d%�i:
j��Z���!�ٙ�i�@ɗ��U(�Q(W�ˢ�ps�AIɃd�Go� �A$Y	�k2�]zPXRD�qJ �X0m�Y�J�@,�a�u��Ց�EY��US�9e���-:�(�,զ� ��V��2n�b]M�� K���6�[2�Q�L�Jg0
�ǎ�B*/�jj�d�f�DѪ�0�Vl�,7�Qb �\�?���	�D�y(K�#"o�(>��^
P��R
e'��7�g���{R���A)�%P�՘�Bb��/f�r�Hd.��*]2G�eV��7
%��V�d,V[�"JPѸ0����
\���(0mb��"�Q�Ob,Xj2���Hh�Y�T�'A���[-�XӆULJ��7��y/ՙJ��0B��A�\�Ys�����lM��B�<T�6�\���R��V+d2���$cGJѧKV=H'
��;���@,!xK9�K�K�
1��L�sעr���(;�E�Ty�V�$�jS��[Kt%P��hx9%�%c��l��<d�
�+QcMD�Z(�-()���Q(�$dv�e����
��dH��')"��
��Hi�'��?�^�1˅�5¶��"z��ԩ�:�L�D�)kVɣȔ�Ry�\��{�fR�+��̤i�ʭ
e��BT�l�!C�P��P
�T=�Pj�TO\�Fdɜ([~�,��)�R����� F���ˋ��}R{���3�D��R���O��T�)1t�:E�>3�#P�2���H��͋#��|�"�>��J�
e��Q㐱�L��Ac�
5
IB�E賜`�zP&sP���
+�NJ���2��2��?��Bi@��'���A$Ơ�*>$w�������!��Q��RQ�O�D��[�ɘ_깲�9���%ψ�!�iy�i�\2L-B��&��
i�B�IB
ЃR���{���L� 3CP�D
�B2���%�EL@9 ۸_��?4Q��$��,м	W?ؔ20��'�Y�l~PU|�ԁ��>�����r�$�~+�6�OJP��Y���P#%�f�A:sP�(A�A*m(�l|�d ���@�<��|@Ɂ`���������zH�t����Е C��a%z,5�z�P}���o���8Gֽ�QJ1
%k@��B��BKB�-BU�A�b��R��.�CP��O��@(��+%���Q�>�{/UR��e�MRtC�d�
	����r�
롔S�|S�n0b=�d��V�7o�VM��-B:
�@J���!�j�E(��2�PI(M�1�B21U�e͞��+�d

��T�2����۴�0����׀h�'H��*�Rt�PF�/�0& ����M��@�a#Y/{Sy���D��
V���J�VS�B��Ӏ���4�҅�xYIF��c)P~�PO� ��J��NHӕ�'�������W+��h���:���) K���;���M�3[�pX	a@
*J9�U�}ʛ��
�,W���4�G)|S�M������ʭiV�,��
��b�)	e���*=^,A"5d�6W�ʌ#ڒa��/��
^�,1K�ɗK<ռ�h@�����r���)��<����,=��rLZ�%��O��R@����
eR%����hC����2W��$�Fh嗄ԁc����A��ۃ62�-�+,|����{N��h�
��K��
���t> e �2
L�SW�^y�D<JTٕD�+{�T�P�!4��0
�3ѪVNx��70(�˜�Y�vL�T51��'���
�Eٛ��!"c�
�[�rt�[Zb�
1�O�W����QHc1���
��J�3<?W
�������8(��2��3W☛�'���x}+�is�!H���
˞(�(��m�=H'��a�Sd�
d�]�t�a��Zj˴�#�21͢i��$�7TL2���T!�l���q�(�h�W�dJ<���)�9H�j��9CP��Ĵ�~����m�"��
�Ѓ�V�xZ����Ң���T6c�'�&
��5���|�`�a
����PJ׆�1e�����x����h�H/+-�P�3���U�	S|fu*A�l/y���kWc�TMI���2���9��Y��zP\5&��[*U�ѥ�af�L�,V?�@�*L�g]�0��9#���C�HPҥ�k�DJ׆�MC����P��E���4�$�n�D��D��b���O�ٷ++r��6��!���:�����X��)�"��T��d�O�J}�~��v�
/�dJ�Vda��l�Gӆt��Wgr�5��X]�����ɫ�[�NqP��1��sg�����\
>!J#�S=�C�9`⒤2��W�k��i�iD��P.!+C�S>T�S皉4IC+���2yP�Lz�A�W�Li��� j����ߪ,�L�ۇ).����uj$�X��9�U�`���Y��& �B4r/�7XAq��n���|����|����G��5�@��
��c4�c_4�TX�>�����^������"f�
%-���0�t�"U!#����KB�D��=Hj)�&�*��B(]ʒL:G&iY�qtX��ʫ��c�B�5�S���	���E�"s7PRb e�0�H�Z�lR+>Iɀ�]k��ީ
�PLd������U�ɣє;�H
h?�^l4cl�j.\�Hd�
�����bQc�!ci�Pr���I�$���s��Ƭ��1#=H�Ei��h�e����D�C�+)QtD�1��H7{P<E4S�OJ��
����Si�1�'E2N<fҿ���L%H��(�Z��S0�B%�L�	�!�Tp�d/e��Q�H���G�P;��z�2%oN6
Q�RL��f�[�,)d,�d�<��L�
U��I�bƒa
AE�$3��H�H��
փ�J��`
ݷfz�r��5�@՟�9�<��'�$+;�`�s��lE��!�]�9r��U�I(���Ut�� i�J(M$�o��;��Z5?�Ԑ1F��I��Aiǖ��%(c����c��>�3��0����$�?AaZ7P�
D¶ �(\^枷H�Lկ�ߊIK$/�F��,��C�|�D�w[RLQ��K(|�VC������.�V�r�PJ�
C���a��FJ7
�u��G��T��^�HB���b,�"Y2�a�H���MQZ��Hp�$#)�OrtX�nLWv�,���&ˬe;��XYd	�L�٭�y�Oi~L�͛���P8�>mH,�|.�"M��$�֯�lY4a��p�IyX�"d��X=���A	�c���uĂ�L���
�)�]j���4u!��`ҥ��2	�Q�qE�5��W��N��ӏ�M�X��!�,E�0A2��X��H=��b�ɘ��Hy��W�I����iX��{����{�
mHw��U!oe�jE�F!��L$��*��^/Rk,^hL>���*��d��%:�(SM�����Ʌ�1+�o��%�dːt%�րd�G�K��l@��մb>Cc����-��P�K<ڄ��X�	��g�a"GV`j�!`� C
(��gZ�EY֝(*��jC%��*çy�T��Y=ku�XVI�QR����J�u�B�X��z�RS�u��ޙ�L�ĘZAZXJPE@��4*JK]�,t%u���k͠C�g��&P���p�#�����2�Ә�0�ޝᆥkI	 3�r��`��b�hF��r5�OJ��T�z�z��0ARƔ�"��B)^!� r�rHB
�C8j�{�P?��=��i�Yz�x�Wl��/R�|%H�e�]�+ڸdX�!��H%Z���P��"F&��dD�JQ�O���f��PÓ���M��r046.�)S���ͅ!i�Zn���	�\[e�6�w���N��g�+��u���u�Kv�D&�L1�f�橿PV#�hCLu���*�T`b!1+�}i�S�c����1=�R։�,F���#Ŕ� <A�-M��hK�gրt�S��u\dcf&��qJ��q��H�;c)#
y;�_��c厊�~h�yi�+���@F�n1�	NꌆI�1I�!���ą���ՙ�2x�ҍB�Q�GH�ZV�$-�Mb�P�E��(�bfz��?�Y�yx<@L,fl2�ڸq�h�5��,�d׀T�b�~?4{׉��sh���,C��Oۛi�I'���P�1í��Û��L2
�3�L6�e �Q�*�-meu}��J��.�E��B�j���%t�4�b�P�+�r�I�|�6�P�HB�����iY��k�n(�ʨE�ADr*e1��"_֠)A��Ња�U��J�~�4 e���u�P�?dŇ8���������!�w_��B�I�������l#�@�IU�r�LW���P�����',��D�j/���"��"�Q�MYL��Ę�$��( &���(�D�!����??Mmʬy� +:Kg�2I'D�i� �!ݷJPX��T<�j�4!I���=A�d@ĸ1�>N+��0`P� �M�B�QvaƂ��1�kC���`��<>Q�Ϡ��.4�c𮬣

c��F����Ҥ:�P^�@r�!�Oy����i8*7fωdr�A^/���e}�<$�(���e�D=(RbL�O:СlO�c�YzZ&�H1Mf�H�X?(A�rUɆ V�-��@���dZ8�`G�s�$/Oh��٭�5����W`F;��5���t?,<F����
E�$�;�B�*E�e�z�p��0�i(�R�o&��B��D�ǘJ�VR�17>,$%hCr��H2уD��@�|4j�<Jn��>_�AE#���*A�DehX��K��)CԒ=Aj@q�F�IփH�H7tcYF��Nd2xK�Rb�],�ے4�`,y�����v�H���`�/5ц�h�Z2�l�*�nr�����������O�
Yn�Vl�D"!c�z
j�EcĢ�b���<I6%E�e���$uêM:�
y��h���[��a�3�w��М�I��!���vhU��G_��!�ɒjDZ�gRa�*eY:�_d�?���,�PvWDMC���T���(I&eq&R��*��E�����|��}L��A]t�P��K��*��9���41y�++��7��_*��ZX�����N�
�z�#�o!%��b[��Qe�w�BD"%����5�:���:^�%��X���Y�[�;/ױ�����ȩI�iX�Lg���ӗ�:�$Ƚ�S�2��n�_�p��VR�g�n�XtmJ�#T,�R��HȲ,"%�=][�"��BKzPS=���HBz�2X�v��Ѐt� R�$�
2�z��Q`,O1ъ��ɶ��4 bF���Ѐ"R�2",��c�����@�Ai����ݎ�Q#���O�Q
oG��}*�\���*)����9�S��Nl��!LR=чy�����]3�d ��P��(x�x�'��mYFϊ�����JI<�4���0E}1W�-BL����'����lTK�р�i��I�Š��%jF	)����D$����L<A�˪��4�D��<��R6�5aAy����4'O�2	%�3N��9|�"u� ��Q���O7�+]�t{�^�E���
T�ӟ2P<��/���%!���a�p�1"��b]U�
�r�%�$(>Ƣ���*c�_"���ѠƼE�q<X�u��A��4�P� ]i��n��n�
�_������%�f1�$E��K��B{���[��eu������5�XR�3m>�l��J�!K<!_�ء_�O�4'�����L+�݉�mG:*�䥶Y7;�M"�$��?�HU�5	M�p-7��2��l�"��%R��S+Hv�u�DȘ-�@1��v��� ��|��`��<��r=Ke�#��"����A�*Ae��4HT�3��=7���"�F�є˧EL@���	v!b��ad H������º����g��Ŗ���蓰D?Վ�ae�9x��w�2|�C��E��HGNH96KSޱ��?Z�E'�9y|��4'�Ja�j��?(���A��E����ɰ�}%�h�e���	�����N9��z�A���U�®�j@:5�#�z�Roˆ	I#9�-)�yL9�0րX�`����K���X�u����c
mHJ�Z�\�f
uPL������0��p	���>�X��{T�pZ+T�%��_\U�z��	��R����A���-��&��,_*��y�$�Ds�ض+�o#�m:��HCc�H���C��a�Fe�,��j��"A���*e��e�"�+��	@9�@�4�!�N����X-���J8;f6��Z���/���{��صGIiw(5x�v����!;�9L��)Z�f��JX� W�*u^3��b]OM�c^�ۍ��"C��Mt�'���ȝ9�CAHX�FI��<��`��yjTD/�ܭ�"�u�f��r�"�,��<QHGTNTD�%H�NS=�s����!(A��E|����iJ��D� <��q�
cy4 �ȐE'\�_S*ۦ��:��'�T����f$���aB^M��s�)���F����FM�s��&�M.r�tK
������\2P�0��}�����
Y(s�\�O���^y/�0���,.(�!�(^���'��Y��(����A��'j�`��ɱE��A�zuu{�BZPcޗ��ق�b�I�A�P���R���,�"Ғm-5�Zq�G��@��x8"Q��hƌ�=��0�BQ��d ����+��
t銘vE��YX�v� �L>���YW����"a��u\ Y���M��Hl�F҄�W~�r�~A�@O���!�I	L����!��^�I�^��b���vZp(�4�aU��*2�|Emy!�X�f$EQ���E�n�C���"�O$��H!D�J�-�٩��r�X,�A]�K)�p�Ii�d1(H&M<�LL"]1�݇�0͡
��e�1�uŠOB��B٬�e�&�i���yߵu���d`"jH5������<ZSc,Q�����I�I(��(Aөz(��J��.�d��j"�b��L�y2Q�@ʅ	�!F�}ݛ�7���]��B$�F�8��$��"U�]y�I�w8�s����$X�l��H�w/���x�F����|_R��ј�����&*���E�1u4)O��(�A����+T�h����

%���,�I��=���r��K.+P��#ᭈ*^�S9��%<KYI#��X{d���KBfZOTI�|�&�PAG5S\J�S�ߕC�����@��5����6�8��dC�_L��c'f��$�H��H��HY�Y䵔^�+	�/�H�hY"�E�ژ���W}�ۀٌZ]��	#T�7K��퐸]��z�b̗�����b���h��E�%��bP�x��!��w���a�W
��WjJ�~���}(���TI'4��f?&��S�@bo'f�fQ�ŎM��֞��q�0�I�a83������!i4 ��9��]���D����2Մ5\Ë�K�Y���0�bK����J����]��%Lg#���c�%*\�LJ�#2=���;�E,b3)P\
B�l��#�+��gT�&�Dh4���9���!In۩׭�F���� :,�@Z����ݯ�b�?k�xƪ�	J�yh��:ShC�@1s
�h�K(�1@���Rd �P��p�z��-�;#
YiL�a��2��*�3���L�P1۱ǰpfIk�"���4�D�PZ�­8���6��)��Rː��(iy�3��F�7������儒y�YR�dI�s��BJ�$%��)F��A~Aʮ9(<�j��V�̔YrO�7JP��1���Z?>8�w���!�DmH-
�N�<AD�"�`1��Ͽ
�@��dGۦ��Avd��s�˯NC�5��j�I�U��I�z�+�� ����K�b�jF�1b�l��?Kq�,ܹI�L�$�ĩ�(�u���Ru�ѻɏ/���=Q/��j�{�s�,���"���1��Q��GN�웏h����9��1b�e�g9���U��b�O�M�gB8���"DLĠ&y���1�(%�8�!�f�(T�c	?�iz��2Pj��)�N=@�Q��DS�s&2������)SӨ?�S���zDȺӐ�d��Nt�g6�
PV��|��Y�cw��0�ʩ��YEHr6i���K�"묻G��
�H)׳$j�lJ�o��@��]�$����Aj��=��,Gc�D:=��\<,R_�K�*6�u���b���3���(��)&�1(p�A
H!���W�aaaH�
~]�}�C�d��F�� �
�Z�I��&Д	3���1F��)�<y��E��1'R��1[j'��ؤ5�N�	#��k�C'e�?v��$[53�r�_�\���+�J	U�@
aH�Bt��;�������4�fź�����ۅ�NU�5V7|��N�-:��Jփ"�b�^�m�Y��C�ӘDn$?F�	Fcv8v,�9�;��{�+����>S�*S��G�J��H"��a�+��S
�9(���&�Cʱ��JL��x�V2ɘ�6�_y�%6�L6�zα�0ۛ`Z͗{��[�7��j�"�ɒ��6ۖVs�1������i'0�Dd��°$�`����TL��
�bQUH��6��UF��kˢ�rc�,��Z�{��"#�ۥĕڝJ���5�
��8�h�X��A��Di76�?-ە{��@~�/�%K6�2y���a]Q��(�f��?.�D�9�1(^W~�� �
aL0�X��~��f��]ɰ<Ǔ �DžA@&r�`�&'�IsEe ;��ȿR۾�CT&�`J��E��9!7�x��aڔ��J�)��6ŵ�_��67Τra
�'�
��{g��6UM�I�[�*A��J�ֆ��P�?���h'k����
��6!�
�,/�+���0?�QG��$����I<AWH����m��AR�SJ��AL|��w�Ƀ(��Y�а�H1[�R��d9�L�$f�ԕ�%�E*�1���3��T4&A�������鈉qa��t�#�Z��H�~�
�:�$�)&k��Yl���;��׮�D���Y�0��J�]�3Ҹ:�1P�t���f��d��-U'���~+�{�v_DgFT-������p@�	C	�14�%Z�
n�jy���D�6JIH�&��k�N�Zr=?��R~,��ݮ\ʡ����D:!�<=�j�=�Q_T�</�\1a��?_O2��V�����<p�X���0e�^	�>�X㴆�s��]��c5!X�FIZh�@h
C�z��T�Mi�"�y�~'&��@�".D�ʎ쏹�	���[?G�C2�)D
����Hi4q���jPv(�Ѱ�Ì�
������$C4��^HU�X<���H��[ts�x=���Dj�!﵈�N/��ڕ�Df�n�/Bd�
�퐥�_��?���%D���^���@s��T܁X�;m����O�Q|���/�X�g�ݯf��cQs_hY�Yv`�	�Յ�C3�A�y�l�3�X	*巎���a��%��b��M�	�2P&O@�� �`����,���SJ��DFz��۪��U�%�ƙ�D�����D���9.��J��K���>@彜*yOLta�%9S{���,2��N�+sD�il,,���H7s�-����滜|�‘sܾ��H,)[�k��{Yz�^�u��	됧�y�t�p���r�;�s	��׃��j���n�s�ݾ:F��>̋/vO,��G�� 'uQ��n�و�`��b�j�/�����S��5�R��i7�u��{4F�w�0�I��-�L
�͜N�s<��pٯnā$�E�e��1MI>��,y!�;��i4I���c��\9v��-�Xh��@?�DT�@�ZBy�XY�AI�XX�x)#�Ŧ�~���k_���u��m���N���J�p�A����:�N90GR�-����:i7�O`��ln�rH[��jZ�,V(���ڭc/,�9($)j��5�r�Ȁ�Sz>�� R�'�(Q�ɚ-Hn�oAT]3�XR�~ON�z�H�`G�gQK8����J��6�;�ͣ�6-�)�3��zs��E�s&f8���#�"�Qpj-yj��L�k�S�!'���^^�M�mf/�Ze���lj.�-�
-�%����I�ߖ^w3=� �+�)���r�5�)�z�����݃�ݢmѧ�F'��e�E�z2��;6�ф��u��Š ��mE�IE
jO�q�j�Z�� K.(F��b-7+����2{tS3F\A9rE��fSf�X"�v]n ������;	���VX��*4a/L$�F����J,�h4c�*��ԭ��yO��G���Aq���)f�e �_�O�$�5^��<�bb!q1H�8�0�Ϫ�'{�����4Ö�K#�U����,E,B��P'����z�[ѦX�$6�S��A����	?nT��|��eQ�v$� ����eŤ4�6������$kb�8��DXז�E�e�J�����LC�a��3�qan ���e�$",�+Ew�D�7��4#@��9
g}v��:(��%,ԧ��ϺɃl��HD;��h$�n�A(:�{��MB�mj1(Z�#�A����9})�n v㿁T��x�3f*d��SVobi���Rj=	���c��C9���8u�<��L����e�x�1f��Ϟ��u�� 1�P[d1��Z�uc���J2��-�CV���J��bP�	���DZ"����$j��w�W���	h�f*
���1=ї�O����%1�=�����5���|dLu��'�0�O1GSaN�0�
���t��9U�n�{)}�՞�nJ�")�4bP���bP�
+�h
�h���6�2`IJ.%�6�Cb9���6Vb���t�LUQ5���p\~�3��,�ĺ�F�AV\/���ǯ1<-X�*���Q�@�,B�~����t5��D�TDv��㆘Yb��ьFK�i�DUSE���SԼ~|gOM_Z.H�"�5YR�XO�4�lt��@,V���?�{5��h16��\�Ǣ��
��,!��	����8�
yODTYx�ͺ�ꍝA1(pucĤ�&a	b���1���G׊Z�Q9y"> �Źc�$�ԦEԟ�Α�Xч�u
�f���=ɞ �)&A^����}��5Z�P_��I-�u<���*`v��)����m=
a�_LL�A�?�+��)x\�ALJ��9����]&$	b)㉚��+-;�d*]�$1�4JH�D~Q}, ���dR���v��8�S�@Ćˑ{lWi����Øp��f�'�*aO1(��>�b�#�y{����:��S�����q+PL2��tm�D�P�Gl*����Z�4Zb�=&���0	+���g�c�K0�O����������u��O
˷ٮE(.�XT5��fbIb��� �-(�%�*}���V��!��%�|�$�!��!J(5ct��+���x��P� �~������1ć�̲�xp����A�+¸b�%�AO<b��'TYΠ�1��j�yJ������ɠ(2iB�h=�U��C���Ls�p�W�(}�"ԃ;)!
�_0�-�C#9A4ӏ���5	,l�	��@�]`�1!�O�p�b�A�Z{l�|�O�i�bPb��C?E���r�C�����2}�5�l��@��2Pr@��E¸H�wI�M䁱MPF�􀠎$�j1*yHmbSb1��H� oU��x��50Ɗ8��$
n �j�ݣO��g-5�"Ӗ�k��q���m��&���}t��{#E\Iiٺ�fa���4�ײ����V��<ș�����篇�����J�9�{������y���eʗ�Q�z�#=��f��X���p�@�V�
@B��b��nI5��*NԘ��x)�QOLxy��z�y��� �T!B���ħ���vC?���II$�� z���M��T�4,OCDS3���M$�A�;���'''��K�&�9�]���o��-Z�裏�]�ֲ������w�}�ԩS|�v�}��ر#ӾtLLL8p�7�n����x`hhh���hu�ʮ������u|�3tY@�P<3l��7>X�C�dA���TsDے� �A����8�D)�o�9
Q�v3K{Œ{X�XD����!��r���J�Q)"��w߉21�ɓ[!.i6��9	�
�v�B��?$l��;.,�v�`��m_�|���e۶mk֬IPs"\�v��_?���+�nݺz�jݶ|�5??�w��w�y���h�"�������{oϞ=���O=��}��7�J�<6��q��Í Ӄr�ǜ�S#]4O:��t:��
96�-'C�sl3mQA�yT�ʌ�ґp,'p�5����B��p��~�� �g��AIb���?cbm/�/�0I�44,��;3m%2�a��@��@���Y�����_��?��φ��:��s�=��o~s�ҥ�����^�x��O?�uI^ٶ�W��[����DY�|�W�\��.^��7��_k��(�ۡb �q�X^Q��<>?�%�
'�ku���h/'���dl�*0^�i����mf9�X])�M���ab�-H�k�Ġhkq[�7����u��V7VhXdL��1��	"�#�r�5�3�f�[��x���ׯ���;׮]����׶m�n(^�Z���������a�����
�n��]tn sy(h��W���̓吢t�4��V��U�J�2���!@h��$�ڍ�t�v���-�
��b����*���>3��]���d�� G�&�	�>١Q�h�0���:�ǐ`"��od�`�<����}��ӧO/Z���jY�u�ԩ��{o��գ��I�9�7�֭[����ŋ'� |5a�{�M�;��N��LOO�M��###CCC��v�o�����k��G���w4��7��I�3���'�W�K�i�9%c�5���|�.��ʥĻud|�Ƀ�@b����H�>6�?�z�}���lֱ����$�bYԶ9Ir�XbQ�����ಐdIi�b�cL���Ø�Ȑ�.:�آL�$b���CcF�P���*�)���-0v�ƍ��zkzzzŊ����.^���;�<��cێm�7o�<q���~��s���׋/ޱcǦM�,ˊ�;��#G�<x���›ڼy�]��2]���.\���o�:u�ҥK333ccc|��~���^�hQ��[�>��7�|���_�x��_Q�,�����]��w��>���i�����{|�A�!�ivv��W_}���_������Ο?Ϗ����w޹{�n~x###�t&&&~����6W�Z���|g�֭u~�4��}��i�A���k�!�J���t��%�=��;�QƳ㸱d#A�x�����ʊ9o�\ѪRb�Q��ň�fi���@	*Ŋl�.�@)*��R�g��Q���ֲ�3�@s���;r�ȡC����;�x���\�r���Ç��K\������o���/�9s�o(��={��
o޼)�_A˓������_|��'N����5y��;��n�GFF���;����Ǘ_~���"����|��o|��=�����|���?�S�2�M�d������|�T3_�ԩS?��8�O3����}�{����n��Λ=z�(?ߥK��C�+���m�����ǟ~�����D�g��K/]�z�7�lٲ��ۿ���}���Wj�vDp��q2�9Y��'�!b;�GR��Ň��)=Ҽ���vk�9"L�b����-�KG�ts��X� �Xr1%����ڸ�$AJό$�dԀ��O}V����
�QLNN�������###<�g>�;w9r�/��l�266&D
����o�v�����ѵk�n޼����'��<y�o.�q�����_�?���v��z����/]��ܹs�~�)�J^�׎;����7�W�뮻�m۶lٲ3g�|�|����>���|�w�y���gff����1ض}�ԩk׮��I+�t�ҥ���'�W�G�iӦE�]�z�����nݺ�����e�/�~�|�C�����'&&nܸ�O�����֭[׭[�_�oŏMiz�j��q`a
�A�M��Nl&L="1��-�I�\e�f�M$�@��^�h�Wj��An�y�Li�ʍҐ�M���-*]�RE�� �4nZ@��R�E�:����LOI�}jM1�A�(���O�<�����a��ի{�1��s��ܯ~�+����w�޽v�ڑ����ѣ���o/]�$d����۷o�C�'N��?8w���ٳg�����-����/
_�p��_��o~#���t:����y;|e��/|�=�_abb��^����k׮���+>�����_~��7o�@���˿�뮻x|����{���e����C���Q}�[�⧼x�b~R�Cx��?���7�x���v �ض=44��/�k_��ҥK�;�����fffΟ?���
6����뭷֭[���$H-�`C5+g��ܣ�E����B�A�f�����rcĘob]�N��g�E�R��i�6e�$�Uz�ǜh2�-�*��e�X�X�A��Q�v��|%(�oD��$c�Ci�֊�AT��vL�\�V "�!"@���~��\��hѢ�}�s[�l��m����曗/_޳g��w߽v�Z>�:��'�|"6|��gw��-^�X����?��?���-�\?���+W�ڵ���H�366��o}�ȑ#|�`D���ѣ"1�}�ݷn�:f�j��nݺy����={�o277�駟Z�5::��o��P��x�	!3:t(��?�Ç�F�:�?���O>�f��|����^j����?����;v�x���W�^��O��ɓSSSǏ�|��5���7�}||��r��htA
�y�h�cr"u�*C��d�봜$�v�X"O���_#�D#=^ZA	/ю�����G4�'(.Y�$'�ň]��؂���~R֣Յ�EQ�x%-���<�KT�yDΩ�:4XX��͝?w~�����o钥�P�_>nQ��j���gW�X�W��193=ßc��6m�$?86oڼl��.8?:E`ɵ�צoM�{�ؒ5��,]$��ͮ^�zㆍ'��plA��W�\���w�����E� �T��\�t��3<4��o�|��;���7	c��U�?�`��0/\��>1?7Ϗ��BpT�ŋ�%�A��K/MMN9	��cq�r�������8{���xSs�sb����;���~�)39F����	���6O%YYg�9�?�l4���r��)�� o4�k�y�b�Z�1�i�ĶH�$�M�����S�SX${tX�
�4Y�ۂ�a����<�yMPXcT	�rD���c�@�/d VtH
����1��=gϝ�C����W�jP}�cw�C�K�/����6nڸd��eQ�Clf�N���C��?�1��k�k�儆�2|[޸�I�����ݶnѢE����j	ah|�8_��̷�-DZ���/��_�7� o{<r#���-z�á6_'8�`��N���v�h�#5]h�$	I��X@WG��M�,$~>f��$��#
��TA�d����ȩG�AK��wUK�K��G�k��|@�1):LTɔ���$��ݨϺ*M��T���,m���
1#5��󈗍o��C�G�5�N����y��ؤEf�g�oMwsĸ��mǤ������~|钥�?a��u��G~�Ю�����ׯ]w���s:�-nY���������K�W�v�;�9s�_��
�;�����Ξ������ڵk�ƍ���=33Ï�Ғ%K�]��dlɍ�׮^�;]�f�:���=u���O���������=r��?y��&��m>t����k��2Ƃv�͊g��"�#~�.\�裏֬Y�}���y�b���e�xp�9��n,YH$����xU[�h�s�A�+�y���i+� B�x��xcy��R�Ba���
�E�XtXW�U詨���a���tl�PS�uU�0��.]~�<Ī>�%�Lnlbbbvn��X�x17;C��A'�f���?8z�ղV�^��s��G�\R���믽�څN�:��\�l醍��vωON����f���]�v�M<��O_���5�wǖ;��׮_����ۿ����E���gϾ��˗._�����+W<��~�����ۿ{�3?2:2>>��tN�<�o߾{�Gk���3����䥟���^˲����;p�����w��G�>�����ޞe˗�޽[T4{������.�vt�讇v

MOO�tO�CS�� �Ο��x�e˖��_��SO=U�٭|J3]��$��㿘b��0"�r��}x� x�8���-Fm�ZA"f[��,'@̲�zb�2��ΏA��ZRK�H�	�]O��̷�+���� ���,��aZ��nMT$����7
�;�Ny{d���'''oLN�vq	/Y�D��Y��:m��??z���ɇ�<��':*�!u��~83=3::z�����ӭVK���Ξ9}��q���6nظcǎG��у<q�ĥ��~��O���&/^�|�2�	��Ȭ\��G�u�ցnL�x�ͷ�=622r���s�ε[m7��2/>��������~z��߾q��ᱱ1~���K�.9|��n߾}�P{�/?Ï�/����߿�o�͚�ݱE�][P�'��G��z�-���;⯇������]�ƗX���]�z(h!�0�֯�nИ%���wN~r�75}k����?�}�'U����:�Ư���Hf���0 �԰��-�z����|̎$Ă�0׺c�Բ�����z^�h F��Ѯ'�+
���O.�gZSG�(�A� A�*A9r%��i=���2�"v��)����>&������}�ݹ�9>��T>�\�x����w��Ň�|�M�
�c�oLx�l�G���z�g�n߱�����گ_��_,[�l���%T�PvG�����ݻwfffŊ�>�(�7�<��|�K������;�s۶m��w~�_>|���ӧN��<��~��cǎ}����ÝN�oΟw�=�������\�p�?��{�u�oٶm���۰a�����_}Ϟ=W�\�G(��v��t��M�69��]���{��k��꫼ٓ.|��u�6o�<99y��	~����BW+W�|���y���Ν;'vě�GΏ���׾&�r~x7o��� �E#��+���������F���y;�3��%�N
rA��pzf���{Dx9��G	�0����r�\/PǢ~$��3Hx��S>�M�g�u=Aλ���f�,�z��M�H1m� "�@�#P�:��W��oY��JKx�f\V4:N�"�(�骉�,�;��P>��e>��SX�k>&��E>\�+<���u	b�F
�[;?� �fu���ۻ�~~�;w������+�Q�l�l��?�֯_���-�䀔��;?�'�[�v
B-[�����-�y��V�u���ϟ??3�X���{�w��gΜY�t)_Sxe��m۷�w�y���:o��n{衇Ν;7<2��툘2~<|w"R��ٳ�.]�u�V������w�ڵj�*q���F� �j߾}|5�h��{V�^�i媕|��wl�
*m|�
7<�ŧ�y}���W�\���Y�|�g>�;vlܴQ$~�ɏ��e��4�.�׬��а�@_�a=k�O<�āV�X�O�� �>�j�\C��.z��u���̭ƈ�	rY-W�a"s��Z��l@���	r
;����c;
UK��wc�HB�h�(/?d�q�8:�|%�NJP��O#�"9(�T��'�ƈ_g|dɇ�b�̇��_۶����ɋ/^�p���|p��O�����H7�L�q������P��ɇ���V��Wh��=�;
�E�
&O��0�>t�׿�����P{��'���b��e��{��M��Caɒ%^��o���}�?��È?��V-��z��'���~�:�-Z�h�ʕ���7l��������w��
�{��|�2_�?5���֭�r�
_�\�f��:ڭ¾}�v��.�#̲��.[�b�
�Qŏ��O}������v�s��ߊ�E.0�?���6m�����h��ȪU���Hl�[�O1�A�]󷆇����׬^#�B����~�a~��7o��K��Ň5,i�fglM����a(�K!��:n�S4�	DRcn!0�_��q�_�tҞ�ė[̫4�<]l"y�\9�H����jE(DH�%SF��O�x� �U���c	��U������O#GV�3M6kQx�Ç�_��W7m�$l�.]���~w���s����?ߺu�-[�H�/�#Z>�#H>�=q���~���s��T�:Ǐ�p�X�暵k6n�822I~�֭ON~r��E���ի�",�
e�d�opzz��p��w�a�؜�C�.\��_oq	"��8���Ϟ=ˏ�o(�� y��V��ի�O��v�Z{�=̆'nL�� o���judG`���K���

mظ!6r�m�}�����;�ܡlddt���r�Jy��uk�j�j�2�_����M#ǖ��߰����n�֔
._���X-k�m���-��OKo5:�S.c��ݑ;���E��e�V��b���������g�U��j5��sy˯IO��0��|�B�0(�*��[d�(��6[�7�h�T�U�;U��$	R�*?���[^�h�=�ܳ}�v��͛7���?�=u�Թs�6o�|������'O�\�f��?�dɒ7�|��ŋ����|+�‘#G�z��/ܸq��j-_�|˝[}��;�stdTd#��===}�ر߽�'NLMM��m���ۜ��v.��-%'O�|헯�W�\�G�B	N�={��۷��~��g��	%�9?�Ç<xP�r~;v�x��6n�x���W_}��?������k~��޽��>� �hT��1:ˠ���L�R�Vu+AvW���(bj��W"� �.��+�b��|r��,+���mW�����8~#�#Frق�lAݦ\=����o����$퇙�j��%�AN�E�./����ƞx�W_}uff��͛�/_�t:SSSǏ?r��!


�ܹ�o~��՟���oΟ?�/ˑ���ݙ��{������������^��LMN8p��?��O���m'0���?8��g�_�~���O?�tݺu�'��6bw�ӧN�� oᑇ���#���ۯ���ɓ''''[�op������뿾|��~����Q~�V�:�''>�+�]�vㆍ�_t��R�Id͸_�QS0v��(0���JDH���h<N4��Ρ�����H�E��n�.7o	�9��*�]aա~I2O�pړ+�iSG�Ĉ���B���Ѥ/���#MZ�Y]1�
ò������*+O͚���O�+��K�,'���ŋ;�Ι3g���ׯ_�bŚ5k��������dfzfl���M���[���굫~�a�ݚ������[8}��K/�t�С%K������˖��ʷn��ڃ�0�Z�Cã#�C�!9&14<42:�n��"���<z���^�o���2�lٲlٲ�W��<y�ʕ+�`��}����y�΋/NNN�m�W�s�i�]�vt�(An@7�{�L7��k[5�9�3�:
#fY-�)*O����>gDq1�d�S��\Ǐw�;NB!�	��I{�O�Qv��r��	�1b	k1[Px�O�
�k/��2�3\�hE�2Pq��$T�ͼu�v���{���_�t���X���n��7�U��瞯~���ׯ�|��K?yifz��n=�G�����.A/��ǎ;|�����~��|�}��G�-[�rշ���zjdt�ʕ+?��O^y�/.̏��
<A��_��k'?9�oX~T�>�,o�۵k�������{�}��G�[��_?�����֭[O>���=���訓��G�r���P���0�"l��mG�q����[��#O�-J|1�5��"w]/x�g,��b��7��t��:b:�H��,"F��e�r�}�Ѳ����2f��ࡱ?k��R����ܻw�:��͛7?���?�����sss[�nݼysP����ݾ}���>�s�N�znv�S�={���t���|�;�6m�,kxdx��O�>}�칩ɩ�W._�vu���3������w޿�?}F�/k׬��7��o��gN;h��*Gv����Ǐ�c��v�޽r���sݺu�<��#�<2>>.�%K���8f"��l�2�j[��іQ;�	�-��]E, �h� [���ܱH�-1�3���A� I��a�%tw'^c�/]�h�҃HWB�>h� �0�).5*Ɗ��iuAa̬uQ>��ի/���m�"l~~^�{�w��_�Ś5kم��dɒ
6�v�mbI���Oݜ�]�b��Ԣ�^o_��ŭv������s�s7&:vg�Z�~�\~~Ŋ��~��ӧB��#�l�D�ޱ���+W.]�4x��j�Z�J^Y�Y��=��ȗtK�$ld��T�?Z~� w�_"����A�V�	��ba�)9�
#cn�&"��
�	w8U�e)��.u41��HDR��|MJ�Ee���4c�jg�q%������dńA�ÿ�V�5>>�dɒx�+_��g?�٠@�XshhhѢE�_q�Ԣ#�#C�����9�9�s� �����y����̛��ki~n^���;�3�3N!y�
���������իWe)g؅/kFt"�Ȟ��z4�&��o<���r
N!xb[����|��d�U��M\#��	r�$���9ż|<~ԗEY�B<��TAD��*;���@1�����S2�� ��8�%���W�A�a�
h
An&v#aZ�r�SO=�iӦN�3222>>�z���n�M+���e�j�֬Y�|��K�.]�x����_xZDxMNN~p����s�K�-]>�|xdx���-��l�������g���!~��G�?>��㒾�E.�0���?��ݻw��ٶ}���S�N��bM~
��+W�ܺuK��m�6��o��ٳ��߸q��xɰgff0d�?��/<̱E�0Ƭ�ʀ՝�)��%�@aJ[�*�@^B�@���HQyx��l��TAR�W�l��htQ����,ctքA�R�}���MT+	e�7���ҥKy䑻�;��3N*�V{��;���k�Y�����ϭ[���[7o��W���ޞ��S+V�غu�m�n�뮻��nܸq�����_���W�Z}�ȑ_|��cH0>>�|�r�z��x�
~�;w�<w��O�Ӊ����ѹ�9�&_m׮]gΜ�z��~��/|�K_Z�v-_����{��Y�fͷ���g�y�����^FFF�?~�M��A@CP;��
�� ��
�T��fev�
�y�b^~!�
 ��k�öHH��$�?���LJm�-(x�I����7��b��-�
�1�J�,Saz��n�Ws�N۶�=�5-�Iż��,Z��[��['��8r������������pfgZ���O?���>/�����_��W��_�����w�y����844t��M���ŋIXݴiӎ;N�<y��~���2�266q�I��z���_��o���޽{y�|���Y޸\��C���k�-��?��?���>��c�=&���,lը���;�2�����H7it0GwʃQ��f�a�Ch;����m�<�L�1*R�b��&�	sb�<�^E��EH�>�"�È,IO�>T�2	7������4{�6�KB�Elԍ7���'''e�D	_ajrjbbbh�I	$'�,kӦM�w�ʫ������'&oL:��FF��|�]V�Z)��Z��Ͽ��#���������,Y���_��ŋ�����	����~z||��^8y�s�Z_��O�u~��_򣚝�+�X����ڵk���{��aqR��޾}�W��ޔ8�;v<�����s����1|��'�`xS����7���C$F��
H
 	��"�W�	� ��	r;N�h��H=cJD2Q�>"y�P���m���-H�@/���r�$ F��m��]uK�0��{��מ�E��j�D��@��>eI�Thc��N��P��P+�I�c�	"�i�{g������#G�|��Ƕm/_�|�ΝN�=�/_���+W�����ٻ6o�<2:"�������ѣG�_8�ʕ���U�VmX�a���K�,�Z����eSSS'N�8u�X���m۶3g�?�
�����E�	�֭['O�<v���׃���8p�_�;v�뮻D�x�2_�ҥK�Ft��M�|�ʕ|�
6�����W;|�0�o��n��mٲ��O���{��8��n��>�0�$x�:(���˒eI�ʊy]�d���Zo����ݪ�c����T}��>��ıs��"Y��/Q�x�$��`f0W�L��O�;��91A$������~��>�@ �&�T,�8���Kz�O�-���՘Q
6�F��<d5� J�~����	/�2���X
�Fi.�w%t�k�MmP�@ӌ1Z�BLg�<�r����KzM�fA��N��Av���� E���+��-e�*�g�2&��Q�����T�q*�_
�DVCڬ?
Đ��4McD�$I�Hj����F^0BQXv%���P�Nu��;"	����Tn�JX`B�r8b�ֳY���'�`G8�/�Hdf�5u��	V9CyX���� �XT%��� 󻞯/mA7�?=/�<P�	*$�ӝd�b�cxa)��YnVf, #>t�Ofjc��`�G���Xq��R͛QR��E��RLj�����Pf�+�k�	F`�p�H��7�bA�'����k$m��3��$�F��Y_æ���)�.J"|�%yE���֫��bs�k7�UY��w��@ n�ph�{#�0�,�i�O6�h�@ �
��P��`>bF"�<��W�aqa�|��
�*�ӈy))�#V�",oC�Jrqh��)
�G��R�5��	*	�ɜY��H�|�M�kHo^���tg��R���@�!3�%K�(�~$��+Q���G>nt!Ɯ��X.\����2��(���	q��l:�(��r��2U-�V�Z�hZB0g��'�2H��L�M�̭L_]\�k���RB�-#^�P���@ ����k�Nj��)�2M�P�@ D�ՅX+�nŔ�Ȝ�R΢����H�D
A�y�{��%�0J(�Ǝ��[y��B�1[�<�S�5�e\-�b���n,��ۅb��f?BU{QW��j��?B��Ί(;׃@ �JɂI�ֿ��]��T.1���PA DMM�.�A
Dh�
m� `I�-� �`���Xhb�u��lf>UG{��Ԓ�����o�{�n�k�Q�n��<Z!�X��@�d�?Zٵ��m�.��"Qy�)�U"��\�N�M�[�3Ȗ��77#tfD�CԲ�!�4���ٖ��fA�)ʋ�U2���!o��d��r-5L��9��i3[����@ D]��`IL�]�›�ES�f�@�eK �@ D�$oVc�ڢ��b�:,�5�pmh�|ޘ��NJ���¢T	]�M�i!�ز�T�hA��*č.]8�=vP�ѷ�	���������Y��Y�>�ے��Z1�@ �����h�t^,<�E����q�U�t��@ �����Q�z����P^'���U0���+�n�V1Τ�h�u`�e�'ūZ���|���_����Ņ����m��!��nv|�5pR��@ D5ɻ���7��.�U�J�D"3�X_�B�Q��]��`�¨ Z�e\X����`���@��<�BG� ��%fAy7��Ƌ�TJ�FWJ�EK��b��*bD�K�����:
��^EoA*�������(_�u��ė�Q%ז�	*����]QΡ�zQA W0��u]0�~1�Lj	͛q瘏�e�Z�h�Y��}\�k���øe��,�f;��V�A��-��:�ch������n��|C��Uk�}��3�Q���o�!��
�3�0]/���Lأy���˛��r3"��	_(1�d��t�d{��
���B �O�����s�]��D�U��5_By3�P~	b�����X3�|>�W�w.����@�<Bq��j�BqE��Ka���}˒ůJ����=�{n�m(���Tzq����%��u�=)/�ځT+_�4W��zZ�ݡ��˘�ʾ���
�4�>��5%h���S�놘g�� t3��k��|U:;�zCͿ���f�h]gg��/P^��	��x/���Z.��E
+ዝ��|k�.eр�CG�\!�=��X�a�FSs�¢6����.)�<W��U㋸����2��Z]�oJ���l�`@��Fp���� v�꬧p��k�U�ڼ���{U����Q����j��=�g�����A��8�#�5؉��]�1��3Y^��Jjܗ��F�[2�j�S���<�Y[q���o�'�Z��=�<ϗ	��rN�YBH��F�N��g�5�50I�&�RӒh9���/�4�6��s�2���k6�s�]�[ቃ�!Ħ�(�͜���
�lv8+c����	�+o��*�B(���R���e(�@��5��A�+a
*���E���&�<����k�� �H]\�ic]$X���\�8��WU`Y2����:wh���T�j�{
�fEE�F=k�~��Wޙj�^5�������I�ڿl����X�H��܊oE�b�jgk��:3�u�Z�K�Z���W^OCg�G�[��h�_S�A�n�v�JnJ���3!%����]C��g����ר��h�W�I�c��k�@
T��:[p˯@+؏�/��^~ay�K�������`T�KJ./�|��ʻ]�X��|�^��aX�d������*�U�����s�2z�V�طe	32O���I���^�����.�a,��n�
�@ �=�y
b�i�ʳ����7�\f�hkg’a̵,-(�Ƣ���k\�#F�VCR\zY䫵S�Mf�y�E6t�=��:hqqqbbB�4R�e�Y2-q�b�\u]�=DLbY��ʐ0af���j�-�e�NzM����^�.-���#hY_��\�ԍ�~Ż�p�eh�&*͎�����֢˫���)sWԈ�#l�F��W�h��T;URI	�P^�����yE�~�},%��x����L�1�YCm-q����\=������U�i�����][˭���]�F�x�ks
Y���V�����<�F��_ٚ�:oq���~5k�-���U]U��U�ӆ��%5;Y-b4_yye�z��X;N-0Bw0�h��қO�՛ Tk�٬���|KH2���r0Y�g&���8E��
��˲�(
[�<�b�#�$��xw���"�[�Ժ��!LcfA�hB�ڏ(�F*���V%3�������� V�,�d;��������|�o%�O�>
���ls�¬�-*d9�T��Q;ha����T��6���Z��F�x�F�
�5��$���@�g^b#�Vܡ��WT�^���PŰZ�t͊�JZ�P��Q\�LĬ8�+\���6WC��Y��Sw���}�#zu�?�8uw�jx"K�.ݲ�1;�?�1A,>-���ڂYbAA��d�|P��@6�(�N�UU�F����T:�_H�i��C�P"��4
�F"(��o
��+���6����z�;ܮ��6]�%Ijljr�\>����t:��m��I�g��Y`9-�)2F��Y/͈�d�ή��BT�V��X��H����(S����y���~�����ҒM�8aZ%&�(��r�����L���p��	Z�>eIZ��3�L����в���S��G�VY��AQ�b�hMY����pI�8��/d��	Ֆ�k$�]_5��k�-j��nt�M2��Ah��L�}��n:k��&��3A��6����+�[��M�m��!#w�^(g���y�t���υ��t*���ۜ1ç�7#rR#���E�Jc[�ḯ}7���_q8�@www___{{{SS�`�0��Y���X�p�1����+�y�B�=O��7��`� s"�\��dfAD���,j]�/)�i�6�������GQ���D*P
-b�mS(Y�Dz,K�Q���8hY0)�I5%(R�gk�n�[8��0A7o�m
ۏ�@ 6
Q٭�h�%�5~��'J��������������e�et=-�)�W%)#��#n9-� ަy~I�5g����Uu�f����Y�p��)ٜ3����T"�.^�(�bCCC[[۶m�:;;���O�1%��i(o�:��	��˪0o�U,'[�X�ٽ�l,-
	]����X��z��◻�=_Nmh&�ܒ�}}��J7�o{^ס.;׳1�Z��
�@ �p^AZ-]XcK�J��HN!��eh�688811155��'�h4I�RYY�z��q
qQ��$-9�	��x��U��Qy�C"��{!R"ʺ�S	�kt��Ќ���i�N=��Ss�TΗ�+-�EBsScN�;�Դ��w߾}�,߱��,kX>�f���9�R,�"x��dː=</+l��򖫓e5R�m���������˖��㪆
�E;(����6Ats��w]&v��2�!����NE�OK���\�k�#E��Lfdddttthppav6��9.�b^)�-IbDc��IR�EJs���z�!��{�#��'i�R�Y�‰T�㊮��zC&נ:�ͣ�ٌgv�9��%ylxdrrr�֭���,���TQވ*g�x�#�<b�ϫ�,��VXql
=M�n���G!�T�B[���Pw��#�Tp���UO�t�x��;��eD�Z��Uv��$�.���@ wJ_�e,A���j��������\�|e|d8Y��Z�)�d1�Q�N%��)�̋|�'��G5�T@�
���.�
�!1YX��&EsP��P��kN��d֛Ւ����R4I&�]]����z���6��x#��p��#.������$�]��w�m�e��\�	)
滂�l�pI��R�����P�G��@lz	h�E��z),�� qa"��,--���\<��е�R|)���E�kޫ$$!�!����X�(2jb�-�#3U�ULJA�D���U<��O�Z���…CW��صk�}m��>���p�Qk�M
H�1�8�NQT�"��w��G��.�@�7�%Ӫ^ɞ5�(�VE1Z�@)���X@�;�N��:�F��{խ0:�����@�A�F��+�0MkdCԍx<>::z��������R���n�ϻ�YE���'�
�rf��\��@�^9�;Y�	�QqH�N)��4/&#��s_�OLtww�ܱ�o۶@ pGd略]
�#Ʊ�a:�ϗ�i�c&Y��e�e_d�
ϒ.!�-Qf��b��)u�"����ɝgtGo� +��3Y�<���	N8�@ w���}�Fi:�:���+WB��Q���<�dI3	Fz �B ��A0�
��*O.zd�!�'�6��/�##����D"��{��q���'���N�@�΢������H��C5�by�-_K�>�B �e
�*\�6��U�y�BPBqw�w.��6��5�@ �21tU��~���o��,�p��'}49=�V�x[`��љ�d8���?b}aPBUy��&�F�#.�;��K����3���ܱ#
��1�;���
���c�DXr1R�̗d3��'��t�,�~%5�@��^�R��N�m����̰U;�<�C Q,8�[���J+��(c� �4����o��L&3.e,�4�J��1q:E�@�<���9��<�_Pz��7�x#��c�
9���;����I]7�{�K��T>��L͕����/�pU~��y�U�%_!TPE�
*,
��!�qs#0�;Yp���@ b�II�dP=�<;�oJ�AӴ���O�=v�D&���ċ��~&C3��IB �N�x��fWL��D����	����۷+������	v%�@��""��+�.{��ʗ��;����y}�;Pم�<ht�QQQ�0fʄL��˩dr�X��pX�8���@ �o����7��X&�	�B�����瓩�|���=�Q@(�@�B(��9�WR��ޙxC8~�̙��\2�ܱcG ذd��f�тX6JJX��w��8613S|��!�h��A��E���K�$�����[;h���m�L���u@�/�@ 5ńu�*�CԒ�i*�8���Q-7�<ר����@ ��x�h�zY�ls;����Ȱ��G����ذdW�df�{�Y:�*}��C���<\�G���a��V�^L�b�bRg�.�	�a�7U����l�&
�@ ���(�*�wS!]�v��ѱ��qE��m�}P�d��C ���\l��R�DҺ�S�K��U=|�ȶm�6`�K���X�&TH"V����8[�0J��X�-N�B��B�y����d奰B]���c#�(��
�R"7"��<���"�@ b�vI`��b�S�N}~�����qw�?lq~H!�
������9ŝ����ŵ���˝���úi�c�طyy-���-�@z!�t1����K�
=*h����0����Qe%Y7��8At��9���T�f����)���@ܽ/M$�/�?{担��R�=�����te ��`:X
��L���%o	-M�����{/��Bcc#!nO�/�
<G4���k�DȦq.�@Ŋ(1�(���"�@�z,H�ɝ
�Ie�:��yl���y�WB�@ �;G���EQ�D"q�ر.�BsI�j\np�8�C#��	��!W\rF���
�/x<���z*�է��Y��UX��	�c��R"pF��|)��[a��ӂ>v樴�U�h���#��m|ފ#�ld��,�&7C q;DZ�g|�d��d2ׯ_?{�lhf6�G��K^9�a�0���b؏���8n[(q�̙���x��tn����0��<Kf#il	�4�KeT�·�
�QR�(J��*f
��>�c�(�Ǝ�Cޅ��cY��1���͒"ׄ@ �)���-�NNN~��G���D�7���	�G�@��n�)�orM�x���?���,�ű,S?�VLƱ�B�N�D��<:���lV%�4c[%;Lk��LJo��A�
O3)&�J���xw�@ܕ��������
?���w�$eq!!�3N��o�)�LO���
n�N��?<���G��2�×,F�v>y����n=Q�Z�(T\��>�b�j�0�@ bÁ �Qsss'O��r�J��cA�p@��<�OE wʥyrKך�I�4<<|��&''���b���n�[�*�T�ޕ��ȣg9)�eCD셭j�>Z^��t�E�l�m&l��a�@ �V�J^�A�I&�_|��3g��T�{��5锘N�@ w"jr��xS����/�;�F7Z'��Ѵ���%������A�&<<Gx����jʻ4�OU�� �*A�#!�@�&�2!�~���k	�w0���F�_�$Kny��XP�
f�NƂ��58�xF���'�x�1��R�t���Tk��RMW���zQ��֐�H�	B�hYHk�FG(�@ �@;:�����KkrOx�Z!�;9J���fO��MM�={6����T�V�Cդ�jN؂FW����Y�����C&q�F��jQ��@ �V,..NNN.%�	�2�gx�����1��;�jzjj
�u�1ZWf�c���l
_�,�P��j#�mѥWR��wq���i�l��ÂS�@ ��Y�u�ĉ3�	�8�Q"�(P@��x�eDa�#/y�x$�t:}tz��X̅�a��5�������*��Rku��Z��F �@ w"��ŋ��y��j�c�yq!G�i�2��M&gϜ	�÷+ZPm�%4z%ƨf�F��Țh����q�@ �@ �d2�'N,.,D�Ǒ�%L�@ �&�(�dq��8�X,o�h4J7��#c��h Z�[
�L�?+�@�=Iŧ�	B �@ ��.���p���\J�
z}"�L9�C wJ�{�����ܙӧ���oc��+���u�KTN$_�h��zW1��-d��@ �;3j��’�]op�e)�����r�p�A�8���3g���5M�e�۳ȯ��5K3Z�J%M��
i�����Bd��@ �
�����ώI�t��?�D1�@ܵ(7�W[=��q�̙��qUUoq겳�+Gʟ�I�0H�3h��,2O*���@ b�CӴ����b8'
�JB� �@ܵ�)��68TE�D�����%�X宙����U+Pi�ʸozJ)2A�@ Ć�46:*(�[�<�F w;��a�D��|dq1��m�����_�aV<[3?���\V">_�@ �F(�Xlnn��bȫd���]
��\.[�$����@�:������9��#�	��V��,�k��[a��U\����5O���r7?E���TJ
3�(��Ԡ8w9\����$�I�W��$�e9cb��35)R�B��3�v�������'d.�U�餐�i<�(�NbT�tc8%�^8A�!���kpg�ɡ+p{�gF��)e�
�<����|0��>��禦����!�����W~�,3�ږ>��^��!�@ [�4_�λg���E��6�U�^�ׇ�t{�֑T6�~��KQ��B
&M�}n�m�`[OMʀ��쌚�I.Mŗ&���D�lt��yA�*V.h�}N��`�˽�\�\��x6VS��(T;�J\�/^L&�\ZE�[
#��;$�}{^�ݵ��tz|v�cW�ƣ
Y�-4��r�no����z����Ȃ A \��t.��dc_�f�e��b6ʼnR=L\��4�7��ぶ�w���7�.� �h6���\2��
����(4~.6�H���������a�����ȯǯ��G��5h�.���m�í=nY���	T���J-ͥ������fU-���FH��|�}˳]�=�����Q:�X���5='��^3�9�c����ٽg��鼵�^��]=iS����׾,2A�@ Ć������T:�<I��7+
D5�k�g:z����w,�:�/�M��/��I�#��GѹFY����H���
�:�ӵH&ͤ�u1���0���kg�s9BEA.mB�}D��<�٧�4[���4-�Sc��R63�N�$�N��{h�ˤUQH]|�H���m����R��X&�t��P�Q}n߷�z��ܺ��y���i�[q��&J)����pkσm]����d2���5�Fӹ�O����/��8����PS ��&���:G�7�?��TW�ç���c��a\�I?�e�l���m�×���#��q��j�
�DBv74n��QR��r�D6�ȪS���鏧Ǐ�OM�Y�Kp	b����>��Z�,Q�m�+R��)�D���$�Q�����ᦿh����b+��\�A7�l���L�@ �q�i�����$�r���f62�_��ˎ��v��lS�A�Fߞg'&҉�:�A_��qT^���D�,�S(N��wn�������[�����	�{��H����ʕ�K�ۜ��U��}�]��;>�~s>�j*'HBZ 4	-�k�-�r��>����/��=ӽ��ξ^o�"Ib�
L���铕~S������'��.-�Tϭ�8���{|��tl�Jk׃m[��"�<)a;
Ɋ���
M�ZN�N5_z?Jh���^Rm���B�
����Ɏ��s�E��1���P��|M�����}��Cm�_i�~c��k��.�	�iS
��$��@����H��W�r8��P(�v�}>���:z{�z_�7� �@ w����	�E ���2�;�	�c3O�JH����=�-%&��m4��7�_���iB� ��l�#FB@kR��έ{�Z�F�<|�LlQ���2�s��W��&��?��qock�ǻ����L
k,�N=:�-���	�JS
���:������;nG��"Kg_�)�p����y���j{�ӯ[���{�{{���~��iA�{}MM7<
�?��ȠiT{��s����5kwy�kn��k<[\a��v�!ƔO4woS�K�2T�L��H�͓����&�*��q�-G4���inn�eL�A��w���[tC�a��"�X525���h!�gE=���7{hC~��;�@�q�N�Ǟ����V����[�*��$I�ei�^�� �˩�
�E��y�߇�����˗/'�ɭ[��ڵB������z+|��_
��!�]���.,��~�5���EJ5�vz�/��%g�:���;����r�KQo��\6�QU]�˘�kK�(�C�b^8�)����ܢ�_���QWdJ��R&c-�Fa�K<5C�� �=h�C�ە6�������J,0C��Lj4���a��hP\˅5-��F2��e	��R���1�J���۾�6�y$�F��dVM�r)-̀�{d�G�����Ԥ[���K[�*��t�L"�������p���ڶt���MB�v��L
�QN��$�O�EA��
+���8�[�S��̎����Q���[|�L�6f��'����t.%�zb0�Lf!��4���%
/8Ec6�q�$�񷾲u�����+�\n!��E%���4:\>���ڼ�RAy��bD��Xd��ʍ���e1͆�}qФ6��[o�6F�d�k`��D"��fx�䩟� R�'c����A�����̣��?X:Ms�c��F�N��p�l�U���x�D�ѱ�����H$�t������������zQo����91�.������/..J��"411q��	x�8V$4�i2�!���'�XLU3Yœ���<AN���;�K�b!���;��#��E-W�F�d2���|<fH��U�!Ir@q4���]�fŤl��t����d�;:9���5�_4���|�:gq�/%�/+A���1���79\� �%�����-'CW�Tm+X�vzz2���tY&T�������>+��R.saa���R*M
�Ǜ#�[�*�٭(_������.�@�-n.��raj(^H��fI�(78];�j�b7�	:=;�ih�QGǵ�$�&�ɖ���;�\^�����Zn(:v~zl)O�3z�-*�w��s�}K��/�<L�\:qfn��ܴ���y�4B������`5|��N
~^NI�h������_?�h��b��j�&l2EI:�P�}�nYa#�a���֞�Й���x:�v��M��y�jˎ�]����>�[Hg3y�.Ϛ�L�pU�6����g4mii)�L�{B���K�Lb
LP$��JIIM&�~��mq�'_z�(���iZd1	�#Ѩ��I��@х�9]'���L����Q{���#Q��ޯ
�544t�ԩ�g�&	�444�۷o���;v�p��tݹ��r�.]��b{��
�B�������9X�V,��zzz�r8��
�.^�������w��q"�� ��j2�HszZ4�6S��bĊ�w:4�l�71��X8�U�	v�#[����-��t<�RZgj��D���'�5ͼ�j�k�vEiu8w{���vn��h�bրb�J������b�	������������"e��%�]�sg ���}�z�ʲq��C���ճ�5���t�������N@x���}��W(Ԑ�e"s�2|�B,�IJ	���H,�6���u�O^��Ϩח�L^�dj�\<2��4� 0�|�$���3]�[}M�I�]��o�fߞ�xdni1m�2+�3כ𭦶o���b�77�J|23��������%�6��-����^�^޺{GCk(�dr��ޏ�s\Q�53[������^_�T�jz*kp��]^b[{�Z7���P�����tm8�/��,����;��[��/>߻��`���p��Ҿg��ͅ��Ź�\	��1�ǣ��lu�k>��~<3���Ƞ�4]ޖiA��a������,��K���T�0�\�	B�0��S��Yel�J������r��C�.O��/�t���ʭ�8Z��������	�ah^H
՚-GhY+�D�v��2�b	�Y�&-���l]
�U566��{�:u*�J������*�����������fd��l	U�N�87n���_�G�fW��N__�s�=���Y��ٙ��|��7~�ᮮ.d�bC3A�tNUu�d�M�TNu���.Ͼ�V�@h�~fnz6�����X�nOC�O�`|��O]�i�L�Z�yf���tm1�J��F������.K�w�Ҿ��C�3�P:Y�r���ꭌfi]������чCj.�T�{�;�����=��w��/S	�H��B˛#��	"1���B5�w"�͕xH�h��v��tn�5.{'Q:��}65����%��`
�0?S�lhaz48Ҹ�tzX�(��ܶ7�ʤS��J�U�i�">ӹ����$�G�z92��k�
O�r9FC��\6��2uKR"k��gb蝥�Ȃ���[{�R� ��x�����v���Av���]�c��k��T���snV0�~5��N����>�aqdQ�)�[�F��@�Ftvs����py��)��ބ,�*��k4��s�,��L��@y�Ԧ�*�.�o=js�Z6�1�st`���G�^��l��N��x;^�r�¹�;v�޿����^\��q"%VIf=��g���DgoWV���������������~v�ĉ����|�;;w�lll�;�N�B�K�.�<y2�R)�UU5Ms�\��gL��}ֲ�,d�K�����-���d��>7">�*\��F�	�Y�5���:�q+a 08^�_���5.�6X�(TX2V�B1�z�B,Y�vj:��b�٤� MPf��!c�~��rf�^(�٨���B�h4z�ʕ�/.,,�A���֜F֮5�P�dhvJZ��LA�0!%�t:���{/��v-r
F
WAa�?��=-p�&''������N�9��F ���������8,���@���ĺ��@득}��7���=5J&�տ���e�t^�^��\T����|%�r�r��\��h8r�W��ѷ�#+L�
�<���	_S�*��iPt[�4�Xd�ʼnD�W�>?#�^����m�.�?����f��*tLV;������w�|r��W��$f�mųIar��r�T��t�v�y-A��-;Һ601��P��M3���3=�;�~��R�܅��?]9�I�߫�i��)����k~3>�Դ�lZ0s��Y,���>���)Hs���όJ�h�PLb�-+��-����_�bT����b�B�.����%����x/ė8�.�.�ɬ�-.��$�j6������!�;�A� ���67�
�1��XϜ�"��#q�7~���ix��D�S�X��:51�0;��z��'{��3<�Y�e��\�
B��8E����[���G����{�w�9~���}������ر�b:<O0ܺu��ÇAE����/���_,,,<��Cp���ˑH4�����L&
�fgg'&&�ɤ$I���PI[[������-922255�A�onn�2���{�� YNOO�<yr���ׯC�Ж�(����н�����P��O?mjj:r�=M:�>q�H���?�hg����=����U��

�p��N�����mhhp��H��?v�T�w��������h4
` [�l���$������@=0"���a��Y0iP\e���`r�^/�	�!X|
�,�!T��#�@o�\�277�d37��[9�/��r``e�h:s�}�m߾����������r��
�ϸ$���0���a��l��5a&<30WP�<�934{����4�a&a�>��#�|�ד���>T������C�@l�Y]�tB2�&U5J݂������R`|4]?5;~ln&F�c��/m�nj/����=�����
zИSN4ʝI���v6�o�`�Ps���������m5!+�e*�^J�ř�>��?�y��p��MN�c�}��aS�,�F�A�ע$�	4�9}�6�'C��\�h)l�n�$(�A�p���O>��7�jha�@�����P��i#	_C\n��C�m�N�T(�Q}AM|25���k��2�d$�I'��P��r�'˯l�	C
���G#��v.�M$����� �x���{c��wC!x32����HR�8�M�ý����>q����r*4�״\V��r����z��
4� ĪQ3�݅��?-��+8�ZU��Nŏ�����<ЍL���c��
�	������+�u=��K/���h�Z~I��oд�4��י�w����|z��������r��p��މD�����\u��Տ?�8�͂z���	�bg/_�<77�� I�����o~s׮]�L&�=
%ggg�۔BC���O?�4nnnf4����O~�G}����סNf������?��3]]]ma��k���t:w�����b��/911���y455�ӟ�*��?бw�y�O>Y\\d�80F�Ɓ����������.���w���L�R��x��'��0o��6��Ǚ��'�x��g�{�uh��7�<u�T4ea��Flٲ�СC0!���f�(
��&���gΜI��iEQ�����+��`���ʜ>}����b�60�0��9��Fh1��$������P�-


/�����j�!@�0]KKK���7�k_����&<'�(c�`,ǎ�G襗^�2P��������_��pg�Zx�`�a���
B� ��h`K��3�惢�N�������&Һ�yh�b|��'G���-��@ӽ�X����z�1�Qʟ��\
�v7�X��DA��e>�M��f�q�L:�mf�}�,&H�.����M���:�J�N�����)K��ŹLo.+�r-JK~=?���p (������)��\��í��`�d����d,z!<+dӜ�9{B5�/�p	��)���rX;�����|b1����C]n� ~YI����hX1S���r�H�S�6�GAkM(5<u#��No��M�/]#�Q�Y�ȍ'�7�Xk%��"�Xw����8�O��C�3�ijc�~���җg��n�j�Ȼ�同�Doo�?~ߎ�G�.ž?q��t~�?t8�,�<o��f����x�ʰ8AԲ"2]���
�ŋ'''y�C���Zw:� �ۿ���_��Wz{{w��������~����!P��}�ٖ��d2y��P�'&&~��ݻ.�f����ڿ��vww����p���gϞ�΀����W_}��1|�a��n�����?�r���}��/��\.��+�455�L��ȑ#o��\��SOYr�S�bFru``����b�������O>�p8����A�ݻw�@����*��ѣG�����c�=�� �4�����ZQ���ѷ�~�W���^(	3�}�vx
���>����T�z�f(�o�>�4fic|�7`^|�Ef_�f����<��spN����)�pyN.��k_�ڮ]�~�ߌ����߆�B+�Y#�4�駟��?�C���ٟ�$d2�%)ky�O��B�O>����ðu�V8����������V�$t�n�ĈB�|OŶm۠����744��_���s��.���կ~����H!���Lo�tV"��Bޭ�~��s��}{�)/eQ�����9!����Gg�c�;�$Ӌt�[��b����:v#'���VS�BL_Xl;]ހ�S�Ěu3�	��L���K=�F��Q$i�;0��p79F�B��.O��k�&���d<���똚�X2��f�x�<���Uq+��J���S�{\Ei�c������RF��Ty*ѻE�#M;���#K�3��\��k$|n~�Pk��M����n���}���P5�� Q�r*��Fµf���o�ʲ��Sɨ�jR�E~�".�9��fs�D�m��ݴ��"92A�AV4�^�P���*r#~��Е#(/du��.�G�5M�h
޿����~8�g���k!9�G}��;h����A|���i��:aK��ߦe�'`T777�]]]�f��"�XT����G��
��%�ɼ��CCC�=��c�=�u�VV�E���O���fǎ�,_�|�?��?�����B1f�Ŏ;���O?ݻw�#G,Z'�|��_������ֻ�����o�����>��;]=t��o�۳g�BgXPϥK��{KK���GGGw���2/�ӧO766�߿��{�=z��˿����V�\@=��/���g�}��'^���'��z0��{��l4Ms����q���ݻw���۷;�!x��A��Çzz�!��{��o��o�l�bY���;4�����J$�%���;w��P'\�700�Y>pd۶m���~����ؽ��7�����]�>��~��E��_}�U�;��ϳ�Dօ�t�����+O=��������죏>:p�@��>,?4�F��_|Ѫ����PI.�kkk�0Z9�@ld&��t*�yī�H��f@�u�,oml�i�rϯ°��;v�\"ʉr�'Cj�wcW��%ŘI�����m-�s�u�R,i�O,ų��]�7BG�N"j7`�%�����>��sY�$s��Ӡ�5qq��e��l*��N%	�Y���ũd<�I#>`��fyD�p��iՉ N�Gv�625�-��k�d-��i ��s���K[vڏ�C�C�C�63I����X<��)�kr�����W3"�u�QE�c�n��µ:\/�v����kVUM�K��%�e�+��(7�;�OǢQ+��M�b�*},��9:�p�i�
�
e�Ư,č�F�8Rr��8s�x=f�f����PhZ��/����g@��Ҷ��-]�T�uA��������IV���4M��*uS�,8�F��C[!��|P�B�xs�֍2�M����I��}-��T���o�����ҥK%�>�䓏<��whh��/���]]]j0�#G��߿�����9h��>�lgg'L&+:�޽{��>F@d�YK�loo����m5���}}}P�W�U��|��m۾��(���k׮
õ_��W���|2�c����ҒH$��}���Ÿ����>?�333P-˿���?��7��p�`<��mmmpf����9RAϡZh���z������]�vɲ�B&���۷��b�H$b�����}�k
hmm�A�}������:��]�MS
�#b4�"sC���իW����*���v��+A���w0d�]����zggg��xm�j��{�{$�׀}��@ 6:(%��7M{��{��{���:S��F�S1M4��f2o�^�SS�u���t?�k��u3��fTU���E�i��_cH�J��5��%f�8D�'7]_sQ*
�,��3���)�.������9�օ�s�$�"�F��8D�T-���rk��k�������;���^����^8[8�yi
�����:w�yA]�������v{�{ܾ���ֽ��}��z,����M'c���D*!�赦w�iL@ȭ����H�w�r�d9/v��ɍ
�ph�Xϟ	�e3�;_��t��+Txԩ���4Gs�f�����$����Ԃ//f8޿}KOw���)PfA�6*��B*M��h��[]td�h�K����	���{��(G4���ϯ\���ݽ�~KEU˖-���,��o����b���<ΦR���񮮮�����ŋ,���h(�L��β�7����`�XdY�PO<g)�Cs8��я~t�…'�x�/�\��='N���������2�/�$.\XX�	���vK'�$���>}z~~>�HX�TR�C�X������**�S


p9tފa�D�{###�p:)|��y��L&c'G�r�Ò�B�0�P�ŠU$�*��o~sθ��;��o~Fz��'O��?�3<;v�v�T___cc#�va�a��f;�т9��β����E�-ϰ�:�4�@lx��¢���\�W]}���Mq��v�w4����Z�H,5}=�dZH��LE/�gZ�n�iS�s8�7�����u��.��-*֪w#�ͨM��m1.vB��m�Q7�҈��T�ٓ�$$��$��}A��YRD�h�:bS��v��E|@U�\.���@�I���s�ʅb� �g��q-�X����ܾ���$������/gb�`u�t<��B�`kw�;��F���?��^q5c;Ȃ����+_c���R��v��cd=.�dr�xh��Ң&�h���σʧ�ZN��~�¯L�S[>�Z���Ñ	B���n��,%���큥��_���3�\VD�Q�S��t�|BQZ����[	�fB\.�������Υ�K��(>O��nٻ��G�-[$3�1���CWlOtc�	�^����x<�{��Λ`�\Jx��k/��d�� ��Xo@�S*߻w�,���OOO��a{1�+�}����6��B5�D5�
��I
�(����G�>��#�h���������P�Ν;/^�844�gϞ���.��X��Y^�r����[I���Yb�ײ���gSǎ3b���я~t��������F�KeJժ}��HE)'MXsk[u� S���J�����wށ�pp�֭��w<Ȇ�<+F���P-�k��Z��@ܡ�%��L:�	
�h:�l.*H��u_KG��m-��l��ܤH�����
q"Ii� �Mv�%���~ٱ?��x�s*�n|�O����I�%��]�f2l-^k�52��	��+v���t:u�uE�pQ-��f��&mno��头.=����e�rK&�MdU�R��R#4]�dᕗ蜼�$;��k���fU�h�N
�?ѵ�~�r$4�Jx�n�f�K�6�I_��{����$���O������j�6���%�ۮ�FͥD3�w�7<p.:��gܘ�"&U5��h��Nj����7�<�������[�,����V�� ĺ����z�(g�knSbIY.1ùKղ��#���ah�si#����R�i��r��ֈ����o��T293�HuAρ��	��s:��)�:D��7�|8�+፵����T��bFCtm�@�߹s'(�������<�Ly�F[�H�q�Y�(��'���Y��0�'P���`0��f�z�)hZ�,~�1Gv����\�����v��:u*_�rezz�駟N�s������p|~~~||��^`�
���&�I�nf4ee~��6yag�*�e�|�a���k.\x饗�{�9���a&����g���2;��ͭM��[rC�o����N�A�ltp�v�������b333G����~�_tuu���};�a��rCD#��G.k��d�u���͝�Z��4I~e�g���e��U&X�<�����Q�,h�XT���g��ZnoC�_q�+�G�2��!l��~��B���({lUХ\���b�ȥ{s�$��ģ�f���v�|�.��'ܵ�,��eW��o��O'T=+԰�!$�Ն�"�hWpO�)��@�.w���q�Q��J˃Q�e徦�-�"���:��%p7s�#H�N����$�+��N��'�1N���Ht�RN��x��˿:>S1B��5+BM��z�Aoz_�d%uv��@�fğ����r�!n�*h��3]f_��Ѷ(O�$�����x&#bJ�Tz]D�b�̖���)�����`}�fR�Ss��XF�I�5M4�
�P-�
!��A�ʓR,�%�����۩�K���MP{{�������ۿ�����>X��q�����]]]������`����^���R `�Ν;�z뭳g�>��v����
��k�|l�տ>��Ç�?���B���}��1�c��탃�׮]��ϠQ5��
A?��{��|�;߱OȩS�Ν;�r��m۶^f,�x��=��v48�Vۯj�"IR&�I��%$�<b�!ٛdL��(���}}}0K�Xlhh([�m7	������h�UCq(���5����6�_s[�?`���;��˗AdyY���kj;�m<
*=�F��r*�+T���=�;Dߑ��D�j��k�kt��{�xu۾��*Y�r�"s����.T7KY(I$��b��mN�t�����d$41���X�Rտ�upws�����3����#�lf�����Ϫ'f�^�v�u�)J=�����O���_Ucմ,�k��˶6:m�tK�W��%8}��^_Ci8��؞��{��C
&��pbf��ѫoN^�G�|d��ܵjfeYJ��C�=�=4��Ut�	MȊE��k�|��|q���e�@��!��ؿPR��%�,a�,�3���%�a7D�B���!�$�Tݩ�.%b�-
��I�UC��(ͦ�*�t�������z,��O>.���|ö�Fk�h�y�� �=�����ï������]�zu������KU���ɋ/^�v�ܐ�


�=�����_��Wccc�<����j}i⥗^:x� �<t��C=t��ѿ����駻��A�F��:4^}�Ւ�;kT�k׮�����~�s�����Vf��m�v�ҥ'N@�;v�Z�ы/�~��ס�����˗a����x�|PE�j�F�r�`�FFF�'0��xD"����7�x�&g����mmm��d�YkB��x<��o.,,�3����͹L�͕��I�z��]�p���z�t:�`�� �@ n;��d�S�jf��b˩�n��j��h�K�2
���� m�7}�s��ΩZV\]�5#�!<j�[�m��ރ�e	*��ǧG�c�E-�WVW14#F��q��lhy������Q�D����k�/+������1AP�H���3��34wZ�M{��w����u.��DޞQޘ]��=��yO�ӷY�>��bav��]j	�����/�G\R����-����/���zfQMs<19�<�T4�tc�p.���?��s�<4�sO�o�aK����4:���u���eT��MP`B񥫱9��hF� �����������L"�B�<�4�
�rrV�%�E��]�5w�W~�X~�*�(sL1=�*�Mk�n��*�,B�����{ѓ�����;3���1j�P4\�.��<2�HxAH�VB4-�P~��r������R2�Hy�����!52|5���P�p6}���Q;1�_m�������d����vtt�����������r���Dt]����D�LY~�+!��}�Q8��k�}��'N��zA��b�h*�މ /���1�:y���� �P&�777����mR��=d��f��2�W3zڿ?t	FC��ٰ����4z�+�tf���?�����;��D8��z�Ǿ������X=L�R�z�L�Jߡ��;��e*���w�
�׻���*��q��L�̳���5x�#G�;v��߾z�*ijj��?�s��r��I&��Ν;{��g�}�:�OOOC����owvv��Ip2F���Ä�Vo�ݴ���3c.r�޺u�C����w����<�/�����@ �	�%�r�i��k��I��҃����@��t=��$��鄺�%ɂ���<���>־�ɡ3K��l�ZF��T��S�M�^tK��}����{4wZA:կE��ف�bm�
X��\F�����p𢠈{���w��.��J:��ߝ��o�Wr,��Ϳ��\}��>��OC��m�1Ot�zD�MჅ�)���5RA{\�'������il�f�ˑ�7F�|�0��z�}�j:���g�g�}
���}��������`j�d"7�g�͂�8���ʬ�޻�g�g�0�w;H��N���D�6%���P0d���_o8�O~�}s\�ҵ�_2ӤHJ���A� v�2�f_{z��2�ʪ��eC�������ʪ�<竳����~,��
��z��΁L��s�S��$ E��]��x �6�V���o�%)���=+>���~E�MfA�L��݆%z!J�X�Ίu�|�[Ϧ��o������h�x� AW�~�N�f��܀���M��e�b��?6�y��Qd���ة��Y+8�q��*;�����.��
bb|t��_1`��A����"�8�#MEX�/��)��(��p]TyQ�Vm��V��a�<Ŝ/e6M�
�uy��
8�������}��
�r9vp���mmmk׮����6U�eyѢE��W�� �b�?���/�AHg^c[�l��m���w��l�2(�L&ߔH$֯_�:^A����u����T�Dc8}hnn�pg��?6o�<44UA�f,---,i}SS��ի�M�8�i�&�����ʕ+Y�z�<����TUA��(-]�.
Tt��E7���5k~��ٳgjjjvvNٶm�y��Y����Q���}�g4�����Ï>�(�NßP�f�p���o{Ŋ0z�L����۰a�˩E"��8�aE
�UxB�k"�B'a$م�=��]�����3��^�p�0���dA�1�^�2��k^Z���נd4�::9:�MͥiY�_�h�
�$�bw4����?�K�jM[��$����:���PAF�Q򷇣����D�����`��6�˼=x�����V�
����@o�އ%�9�U4"=�ئ���ű����9<5���D,�(����~U�����#}ֻڵͩ�v��4��ˇ�N�
��9MU��x{k��Kֵ��~ǁбB��O���]\@��,��`�oM<��6�B̥ˇq{��+7�ohyw��hjjFU4J"��8�ƿٻz}cs�?X�Fd�N���/��g׈��Z�D�n�a��0�M�o�h�ܠ��6��ƻ[�]ˬ�u����45��a�ksEC?\�
��B��t~u�eWG�l]��ݭ=�Sə|��Z�ڕSÔ"3,���G�aku2� ���6�)3>�srL��]d��i��؉ʙ �'�0f!,&K�Ua>d��-�Li��i4'19�7ߔ��,�*zQV�#��D �Ƞ�?�s�{��v�f�'t4�sV�$���� J�%�<h�===�B�X,2Z��@ ��<{����|T��b�Գ|�r���LWiURWW�u�����w߭�*�&��ױ���mQje�6��}
�
�V'Ҫ����ڂn466z�w�ڵq�Fh�����D��ڵk�Df�-€@sPحV�������Py�(T��3���z7��������%��	\ c�`T��Z�b�!�+�F�N��U��%K���'?�>��]͡��v����(
���ι�d�m��Ջ-�^1��p�;p�kZ�\&Wu[����{�P��_���1aG���x�͛7��X�����g�es�Vx�1�[
����p+�*9�3�K�Q��G:uD⢳�*�qtr�9�R�K4����Պ���G���`���%�N
�SŚ��Vƛ��-����kE�!�����r9� �����W&|�e�"c��vu,��h"F>,%��8Q�L5.eg�0pf�̨�E����4!Iħ���:stMc��X��"�@����Ӫ�Ӕ�Z9<�3ǤN4��D��R<8~�sJ�O�� �鈞��}�DW�nksW"h�H������͝M�U�����u�@P���Q�%4�dߪx�w������������Ka1'��_�:2��1Pm
�Ɛi�����O���(��ܵwb���\�aig��Z�������_o���9-�؃�'����9=nt4V��������
�WѼ�v�pї��5o�f��A_6�t�g�8�jv�����@��1�-ȡ^��>�}���lrVE�pQ�1e�H���ZiP�RUE�T��9���/�1�ɫɂ�ԙ��;��N�xJ�R�!��jQњ	�1�
��똔TtF�F59(Vm��@|�@?Py��<"j
�5y��[�����AT�<=�5C���mmm5O	ެ[��V�ڿ0���u�s�5;��ٹ��c�r�!
Z�k�*�+��j��,�^spppp�a��\�O��$��;�
�j] ����)a��4�N͌}6=.�9�3A��ޞh�վ�e�"�]S��H�t�_Kq����;�e1��<��3G� 4�o�?��c�1�12�������
�Oc,�ؘP:†@������~��
����%��rv���@��R_���P���؟O����q���p�)My�sY�I͎L'5?�,�0h�/J���L����b,�N�-�%|�C���OF�f�/�y�z�&�O��L`{k�=c��O\2DY��iƣ9W*	(I�&��?����UpW5����U����� ��aW�I���%����ו����2w�}j��v���Fk�HW�W�3AWZ��yӁ!���j=ĥ�1K)��P_V)b,#�NǀI�U�LA	�e݀MQW
��F�Zq:��&C>9i ��zТY�2Z9�\��cA�R���Be�s�D:�qpppppp,\r@��;�	2
�$��Dsk$�sȈ�����RI�2���`&=�O�|`T�zpMC�kfx$��r����3cG���<(=���%��	ͥO�L|:~���ł�o���4��'�>ߌRX����z	)d9m�|sڗ�:6=��Kg����\AD_�҃�	�e����ey<�:j1�f�MO�gS����I���M����{t}�HF����Y�$J�G)^H'3j1�-��%��x04�j���+ŏ�/=�1�����iaٷ>�2�K�LM��g�sA_���@�����TES�z�)K!_>�Y�d��=t2'UsF��[���D��
�eU׊�Nr&��j� oJxJ��c�D�z� 3�d�sg�h�dL
v�����16����s��?�H�D����T�U�}��\�.���F��A�h o��ٱ3��l�"�:���8888888��4P ��		��
4����g%�Z�<ݻ�-X2m�6
�&�M�ϣF�R$�Pj���h�\�
cC����^ͤd*��)A�Ҝ�f��W��Vʤ�8xn���B�(����i>#��� $��9�X��Z�)�M��8���W5#�9&9�倕ZK��>���E>7q��ģm�[[���ú�<y�c*���I�?xv�إ��t�~*�_^W:Q��
�w5�>޵ti<���d�\M��s����������[�wu��/PzG���3D�6��)I�ٙ�3��[{l��{�z�}s��5�"v3����b�Y�o���S�>{�q}�;Ǧ҃�����,�)挡s'�9��� �DяKOp�|_6������D)����N'�Mr�è��Z;�t5�QlYD�r��K�11�q\�l�gA��E�z��L(�D�4���S�&��%,��L��q�g��kZ2����t��e�@�
�:���ő��D��	ٖxs��a;T��g�M�w�񥖃�������8���A��!�گ�nk�5ȡ�p$�*i��<��93;yԴ����"�G�ٓScݡX��J���)�P��2�I�&�A
�6]�M�S��X>����'��B�X?+h����t}Zɋ�|��@
�1S�N����p6=�KJN�fr�&���H�YM�g$dS9]ɪ����T����Y�8V�mJ��kl��@>�L[�@���$�����?
_�dr�h!mԏ�~�EN�>�&G�bNU�4wlm�l
E|X�LJ��P�&6��LM��t�R_.ӯk]>_C0,!<�ϱ�4��(��skH�����71�-yև$߲XCФ�hFѦ������=��5'�0�`��7�$�i�D�'���-�k�M�,�R��^���'�Fy�y3NP����˒�nD��,��ZE+h;�ezjs�h2h.߯j2��[�۲(D�?C�9�q%4BB�����'+X�0��Rw�B��/?r�h���I>T'�A��	3��1�L�X�T�0�u�X�C�KeS����n�oH8�
W��vk��1���AXp��PA�K2O�.������`k$����nw�dH�P!�����#���Ԍ��+�`F��hlp<������L+F��L�r`��{��ġ��@���hʌ��m�(�Sż�Ң���j,^��ݣ��żo^��M�U�UI�ʨR��� p��$�ay$}0xn"3�Z�4�/�64�rmX�m$��%'O�3kdžV���H����aI1^Ѵ�V����l�@j2"6��&ʵ�4B�糃ž�ɱ���P"��!YB�U5g���h.}.�>�M���QJR�pbf�_®��<�O����?���\(d��œc��{\B�Tzzc?�o
�>��9�4J��)�R��*@�8��'/�]�1��Sc���7�����K��'��G�����������4B��W
Y���i��#�?���^���0_�Y��1�R(��X� ��lZ�F���%2h!���2-���LǕ��1�x�E�zy���o��]�O�3>3s�V��$�a�� ��I��$3i��S���X�!�gN��"�K�����iti���?�|�
e1��/Ȟ;��C�������� IR(
b�0D�6���`t87���	��h�� �������a�x	P�
�5����TSg3�y�CHT̘H���?14��я&�y;�
V͖�g�H�V��c(�=5����#x����B��L�.�)]�=;���*J���u�_Ħ#�xQѵ%�PJpkD|��J��ԇO�S��3~B�P���&�$�FU}V-ZM�W�B��S����F/���.A�d���q�
����O'F���9h�O�ƛ��H���~H�V嵪�B|{rP�`x#�
nt��#�����FK��>�#��b~BM��`�̦r�"F_.ϛM�P��q���aT��6*�"O,e�Y�!:���ʺ�%�Z�ܒ*�3AW>A(܈��~���yql�JS�
�)�d�cC�K2%�`&p'��h]T��4����\<�ě���r�rM�����G�u�����c�2u�>�S��Ùv�[>����9
��Jk^���$! U�Z,0��@W4�E�@�+~��P<���5	$����Q��_/H>Q���υ�Q�DC�~B��P���M���s!f&ɂOV��6��Nj9��:D+�XE�:B��3�e�l��$!(�V�%?ӞŅU���>��3�-3���I��P^���MMM�Xc|�m��
d�>e�[������y����
�l�H�{
�t�r��hq?B��KEU>�5����L��qPA��Y���*9��_��8y�Trl�
�1�(�bj�����N�hwn�Gۚ�u
m��š�M7R����k[�:)%B��*k�R�7;K�Ӏ���������=	@SV�%�Ǎ�( �?QĒ�O|Â*�5m��p���в�**j���P(t]��
��@f��d�
�>��l�U��b�\����i$����D6���
�qmf�eTaDZ����#�<צ!�R$��K�5��e
ƬB҄��~=Z�ׇ"�`8�E$bh�l]�N������B�{�q�y�m!�[X	���DK�;f�|@888�($r��W�����h��wS�1 0�wuLm�xZ[�l�f
T���*�� *�r�
S��s��D��q�(�g�nj��P����%;7����D�n�!_ o�����
	��Xʉ!5��i�|$����I�9n�����h$���
�c>�|E�Fs�cǍ�������E�1��b-mmF�U4.�ppp�Q*gD�i�X������d�BP�S�?���8A�TD�nZ�q�9�� '�
r.�����`��a�(�v�g�8�|N^>���IZ����bR�$����2�� ����hL��x} �9:�U2"�!���b��
�F������c>�ѷ�� 6�jx���O�KW�$IjnnniiI)�Ҭz&��Ad988noӲ$�IE����@ �n���(jq*B)Pt�^)X�dYl7N��Xk�,2���`v� AN���p�գR#��Cq�0����GR�!OpY�xl�EȤZ�%?������Ȅ$a���%��4��h�:7��%�0��M��`�~�����?�����k^�AL���^V�4�Cv�v�[K�B�������jڲT1F�Y��o.K+RQ���nok�e��w{�Ð�yg� �V�	��e�u&�S��
�����Pe�wT�J������?*J2
�3AW(��R�fDi٣U����X��(_ȟ;}&��aA�(Q)�IX�E�C՚40�R2��0m�(H�8�����
�Vx�l�5�V�[S�jhhh��$���(��rpp��BcV!�bkKK����3A.T� S;�cv*O��ϲ�,s�� AȎD=���?�[�U�m
��r&�㊦�	R�8R�P���*�c*I��p���QЩ!P�� �ª����X�0�i��)f�anIP� "E'Ú�/=��5��O2��)�Q.Vqppppppܒ�F�]��>I��&Qb�X�)`})Y�W�
z�-��7+�`��ͱLz�m�;sGMA�ا܀�S���R�|��H�]�V��
��3�	�"8��l	�@����ܽT�MQęt��#z�ݱ�I�DJ�|�(Ҁ?��( K����9�D�ŵ2c�KISQ�(S	�r��3��i��`֯�-���%���qpppppp�r�jnj�]��d&Su?7h���M!"dƪ�ҍήΖ����F���:6;�	O%����B%;�*"��qufT��t�BBYi��N�•y;�� ���I�i�D�fN��ƨXȝ:z`�{�;�I��.�Y��!��H�H��*�aĸ�G�Ȳ�!,c�E���ZշY�qٟ��
a{"#�(������q�I]�.�k�.�ڧs+���Pn��q�V6��9�5��p��m���>���e�0v4��q��ʅ�>�
M�|
��7Qy�ڪ�ah� AU�Ū��(�nsg�8��mn�4Ts
��r�t:�$b�@+Y�>3;���X�Y�F��0��f| ӆ�6�YJ�\���s)4W�'�/�Rn�����q�ᶑwA����T1Q�Eąy��o��1��MdJ�:;{zz����F�8A���,.���a���񦈯�q��նJ\�߱��U�	B����Й���� �<8�rzP�O��9����\XR��p��s�OOOO��(Z�u�y	�����b���&{�� c$R�(��Q�0'�
�:g�\N�U����B�G	������ฅ��F�ܹS�әά���m�ԉTX�7�g���m۶�����x�;a}�A�ξ^Z�-��F0���V��vX��e�*�P�+u�����&�G�	��P�s�1qXZ1�z�
�|��'�4�WUw�XK���I� Z��˜w�!%���c$H�o�"6�!��M����e�.7Oxy�[�$-^�8����9�&-̥��i�CB\3�R��A��x�`�h�ȉ$x�_F�8�}ʼü�1�Ta����жwk�"��8�j�.�
���(��H�V��	��C�w�?jW���R�=��P�X�>yh߹s�LZ'n�u$"�X%$J��Y��ǕP�R#,l�D�FB���n�z��`OJ������5`���ek�f�&�x#�ơ��N�J�ӭ��W��Q�@�扅	�4ʮ�f�وA%�$��P�@Ɋ��3��ݩ��g/?Y�/��u�oC�����-[�d���d�+"�9�E���d���L4ھcGKK�M�D�Z&"f�#f� �A��ml��ل�����q�zܸҴĜƼۀ'B��E;&M��<��	�Nb�����%���*���%�A����"��yT�<�SL�0L6�i�tP$�l�D�D3�3FVwT��rմ�̘�&�����sb��s�[M"���������099��f#�H"��_���r����hJ�|�F�~�.lݺ�����2Ap��()p��#����x<
�*��ƙ�����p��`����)�^VO&�I&�Т(�0hPOCC�,��
(%����bP>ٽ��

�O�y�������m��i8�NӴ���K�b`��/_~���T2ٜQ�"�T�W�O988n�
u�єS"�nm[�r��A��M����X+n�T�8���e��i2u�2p���j\s��=�
��b����N�n؜Qy�N{nt���
�ޛ���wi���"�����l��q׃�)�v�T~��"
������L.��c�(HĢ9	L>��|E��a�������b) -:�y�a+�i��

�ʬ��˲�$)s&��<s��墥�]��8f�N�9888n
B���{��ᶶ�?��?��윇�����x�u��Aɖ���ɡ���g�.Z���,�B����;r����(�	�������۷�ر����%�<x�رt:�Z�� 777�]����S.+�X��f'&&:t�ԩ��qEQ@�����|�5kքB!��I�RP�����C���bK�.����{zz�~?y��7Ϝ9�N�N�ڵ�GI$�g>���ڳgω'�]�G�H$�o�P__#%��xk��}������x6ݖ�'�b�Y_y�1�V��s�Pd�e���7>P���`ל���P�"����N��
� �C�)�v�R!f惙Q��Rעn��GN����O
�T�J�͂8t]�d3 �a���z1AP�$I7%�V%%�س�2�6	b�p$��966��d��!�EbI�yC��s�E*0�/f�)*�"�aF��icR�ش��&/-%m@S�|�A٬Bęx�u�;-���y��".$p:�����Ĕ����/�����P�@ P�����[o�u���&EQnp?a�̴�_Z����~w��\.���������>���cǎ�&��#��j���+��r�`0��ٹt�R]ק����_|�N��~����)�O������c������
_`xO�<������d���L�(
�}��믿>11Q__����/]�%GGG�{�9����K�,��,_�\�4&��;w��?�ӟ�������(t�ĉ�a��|���������8SV�\92<<}�H�Ln*$NG�:O���GC^_<���e=�֬�7��F�#x����l���|a�>�J̎`��x��HUJx�D�k-��q� �_X��6�P���]�<i�w�aA~����3��k���d�AҺyL�Pz2�m�SMYd%
�cѺ�h4�EEA�,���`h�"��f�x� ����B�nТ"��"���V�N$������GY^yτ"�0b�9�Y��1t�#s"R²�Q'�����ր,�~�xxx�޽�Xl�����l"}�љ3g|*�E��X`��^fP���́�ܒ�&� |
�?�<�+�JV�UEQ
�l��=��֭[#��㳳����K/����/o޼���J�ٳ��O?���}���/_%�m�g�}��+���\�t��w�}Y�b���硆�}�kk֬ane###������{VTcr��W_}z���Cᶶ6�(�p:g���]4��w����5�_���|}^�~�/����C��m����_��W]]]�6m��8G^tww�Z�zltMM��",��P����jB�B��oI7$�

�֯[�d��c�LfƴP�8 �f�4�IլKI��%�0�\��\ɰU�خa����
�'8��˨�'5'����E���L�uxj�	$����Dc¾mך	�Y����	v,����CaO���u��c�`(_T��j�(��a�ar<~I��@XB�NtC0�a�5���|ӻL��NNJ�?�_��Esb���DLg~a�1�AD�M����[Yn6����q���gϞ
K�.e�G^\�x��,���i�PH�R�.]��L&5���dɒX,�.��b����[�v�������h4�i�&�(�8�il�PCss���G�̇�����e���:m�%�.[���_�F�6�t򩧞�.
����B��';w�\�b􍕬���NB�����Ν�,$IҶm�֬Y���㽽���7���#9;;
�`�>�����o~��{����a%������-�ڵ+��*�@
�G}���[�z�������x��wW�\	��',��I����?TS��C�p�_1+�����I#�����v�m���H�^��E����Ŏӗ� �:���b���a�"pɠ���.�'��S���ܩd�lΨ��	)c�L�"�X�S�n�a78OJ�G��U�p����(�����5��e�4����M�HAؾ0� ��A0,V���$6��[t�5M�0kFP�C�07�)n�|�$r} MG2�^v���Hڕ!�P@%���$�gﮓ�$�� ����
���IYt��'O<x��G�+�f���ccck׮={������ɏ>��}}}��1��h4�cǎg�}������L�7��M.����N�:~�8|߼y3�ְ&3����~*1CUU�sW�\��SO�ܹ�9d��~zz��O>���/^���������s�_��_@�k^�,�MMM��}>_$��*��Jx�v�%SsC��h3��o��x0�k�>C��g?&�m�ƍ�y�E"����/~q��a�:w�b'�(
PT�:��d�a����q�$�Ya��Y�'��w�y���@K���!�@H��_�]�Q�f�������ysE3{f�`*����s��P<.
�Y�f�;)�"����fkv�}��d�8As	*#�<����L\��2Q��e�Rg~��}�Y��%eL����*������S�A)`��"��n��8i2A�i�g3�ThY�fy(m��#XQ�%�1���ն��Mg+0j֙�5��Fi=p��Ҋٮd�'�\�āK�2"�
�	�+����_477�{�9�&�^����L�<%Ǎ]��/_K��?��e˖-^���ĉ��w�ر}����~���C����?��S]]]�Xlrr��?|��7E�ۿ�[������/��&T�n�:����<T��_�
|��_���3�O�e��?�9T��`U���O>9|�pOOϏ~�h4
��޽������,�ÂDNJGFF.]�TWW�f/\�cǠ¦��իW3��L&G��۷hѢ-[�\���z�����Q�Z����n���B*�`�V�Z;��Ą��s���B~�zz�e��q�.D�L���kh�Lk�As�t{�O�؆��{��>4�Y	K"t>��d�W�X5�ƒ��j$)+ں����Q��lm��P0b)�J��[�t��<�JA�K1�!��������\ê�TfW���'��tA�z�G��&�w�"'��Z�a����l9��̈�%1
�P8��٥i����I�H�E7] �c�BbY̏x��&Gd "�Ȗ^�
D4�1!Bl+��=iPI,��dƇ�m�k�w��/����fAU�����@ `�L��ɓ��x�N�A��f1/,!΅@܇;�D:;;AɁ>s�5���B!X���+�����?f�<l��_�_������b�ҥ?��O`	�5֭j�ڵ��O��gϞg�y�_��Am�&�����G?��Q�U˙3g~��������Ճ>���599������ {[�l��~��`�?�V�����{����-[�l�+��(o��&,��?��kL�k�.�\�/~����p-�MLMM%	�Lh�wn�����0���Tǫi 6V~�:�g2���T755���~��[o577ý����Ç_z�%��C
�3����;�{&��t�"�΂\�i���d�P�&��q+s@���ڛQW�eby���w������

�נ�Z��`{��1-eI	���8ANz/��bdq@��h%�S��0?�r�0�I?G�0�,�����e�	�r *x���Lؐ�Y1Vt-��º�M����L&�����x@f��l[�r��mƓ�,�tI�	6<�&	K0n��,��m�g�Js�u�D%+>�B�9�UN�k̪����g��4�—�V*
�� ��c!���rr��9��׬Ys�h���qЯv��
��^�q��6l��7��jV�]F4����`0x��w�}w�֭7n�4�>ڷo��O?�lٲÇ3�)���o=�����/]�tppprr����eC|>�C=�z�jF`�;~�x&�y�g�!x`��׿^���:�~��Gy�u��e�vX0������%K�,�	J�R/���;Sm�6�.�x.�K��p����}��,QZ2��m�
��������g0z�>��}���d5Ø��T��pi�Hz����6��F�����ǎ����ّ��4�8^,9t��1�`�x���#G�����#9��� �[��BD3:r&
Ԓ*ַ�>��c˗/�%�96A�P$�D�-J��'H�q�E[\��\�d���\�	�U��;��D��a�'�Z���A}X��8�y���E)��"Q��O�J1=G~Q,lP�a�����V8.d�2i���-�X��tB$����8��%���!%'J�-���X1wO��2��(u��mID�� Yo\A�>r�� d3�UUA������n8��[��o��o�������J����_���?^�bŽ������u��ŋG�={����g�888n��*���"
������qff��_omm}ꩧ|>_E��X9u��Z�lVpl3%I��	���u-\X�����@ p٥��akhh�ղ�x��^Q��e)(k�K/���olذ�?�)s�f���/���k�-z��g;;;Yz/�U������/����Q������?���������p]]���u������utt�fsvf
��&Ȭ��x����������p��p�`��3��£�9�~�
ﷄ�d @����V���ψn��-v���j$Ѱu�V�yo�
�I�n9�Y�9f�d
���ʔ�����z�y�v9%�7TJJ?Wְ�"FBe�#��q\������̾ɢlƏ�񦶶����B*����h��5(!�3����|c���E��DI
� �J �cJ@�EP��t3�e�'��X�,���N,"�	��m~�K�Rt�%��?��#G����5�k׮��� �OLL���k֬a�3�L[[�*�"tt����=��`0�}m2:�:R<��*�S��<h8 �W�tq�Сݻw�*������˭z2==
�z�rppp\�-�\�#���͛���>����{/�N�;w��_���t�')u���ï�����L���0W����p�kVK7,wPs �l���l��'�~eI�篁���l?��O{zzܥ.��O>I$�>�,�l�zᬎ��A~��_€l۶�:��<4������>��?���4^,,4|�}�����L&ALw���\;�����ܹ���ƫ�����כ"�#�j�M�%K�ӫ�=�<�Ꟶ��\������+��T}�lq�x6��
�k֮}�n�H�h��!�@K̍��s��Y��o�."8i¬l�0�,�t
ﰲX�^�9\Ð7H�c=�MV�H��
W(�W|�e��3����3e��
�,��TE��|`�d�2*����t�bta�r�g���@E��_�A��|Lj%��}�(E��7���T��e���.��\��a�\�p2�"��O>�G�# �Vj^����꫗.]�#O?���;��_���v
�oܸq׮]�-,��C���099���`}}�}�ݷc����������������ַ��^LLL@I7M�W��z��<��͐�PSS�c�=v�ԩ�^{MӴu��=��#5�ha
<x� ,w��~��߅�-\����W�z��\�ќ�`	M$������R�pƪfm�2���/����ݻaI����+X��5==�N�W�Z���k��TW�lٲx<>33e���
�򗿄�����*��744�B!�)�is/r��q����Z�|U_8��np�'N��x�"l[^
�ZI$��vŊ�`��c_|�4�����END|�,����������Lc*Յ�榝�ܳi��[K�`��L; T�B:y�܅�M�䃧��Q��1o/��X�f�m{'+'wlj�:�w�����=u��yS��T<�,r\��e�^g��l^�̚y'��X[�iz:�N����2����Gt�:D�cf�0J,�;l𘫄h�3
�tL&ȶ?"�"Ю�DT'H�
����H����.[��ٔ�c���_V�1+���%k���<hCCC˗/g�� L{��^Ο?\&�ao_Ϟ=KM�Ld�B,�{����~��߂z���| �×�'O��������'&&���G�����E�I�h4
B���^I[�O>�M���/~衇�������[��֧�����Xo�l��r�2�d2�S�`0�dɒ����͛7{ӽ��X(z{{��U^,԰/����ѣG���|�;�rCC,�p9333,�����f�mmm�B�E����%I�)�N�z�W����~��o|���Tl
6lطo\;����N�'�|��ظ}����E���p�����(�>�(T½î�	��q�d�n}bf�AZ�J����!���i0�������l,�p׆5k�,[�l~kӛ��R'�2�����"Ye~��C�<�eAy���0$XTJ�:�TĊv서xBn!'�s�.Jk����UP'H�]�p&��ʀJ�����0cC�㵂Q��'�v�,�^��SS}gO���@�/)���Ca���Պ� H%� �j��Vy�"S�����o�E&ED��W�d<�)�%����l`��eC����R5��Ad����t�RPfZZZ���A����$�'�x��%A�?v�(9 I�xUA%��޽{
�����911q�����>��Н�����	�@?��0h8�*����;�\�Xq�׿�wӱLu�o�~��qX�֯_�
A�P ����ҥK��B�zx��酼o��׬Y�v�Zh�7���#�<�6��P����t:��/��WI�z�g�X�a�f���د�a��D"�0,˟����k8���bn��>���u����q���g��2�.���k��/_�|Æ
�k���-F"�D`���h�X,�Y0�P`pp���<]���fgg�d�P�z���FFF�oشil.��RQ�+�����u�] ��߿�p�� ��Ơ(K����)0D,��ӅE�y�l��1ʖ�[aw�+��<�_��� �j	B,9�kjC�K�X��*���"��u��l[�� ȱ����u0�gn�0�<kXŵxb+�g�8��r�R���Оh;�,���
L��D�M	j0�jo��&}BA���D#����XtAD�L1�K1�%�.I	�pN�}�ɚuW��f
+�\;G�;��i� vA�e���~��E��A���>�jXZ�r�8�{OO�_��_���w�9t��,x*��ʹs���}��H�(j�/~���IP6n�z�C=TWW�9T�aM2�����7��(G����.]�r�Jh�{�qpp����i�an@hXaEz��}>�7b1(��FR��
�]�V0X�����+��訮�---pЛhVK8�":2,�P�g�����U��g������M�6��ȸ{hNgf��\�:�=���,�{�쁦��7�|��������������F.�;q���l����P,�Ɍ��A�<�SO=e��S���?��lݺv�
�.��w߅ˁ�����7�q�n����s��b1����OC�`ǁ���0'�I�Ճ>��
�X(�Wj;wӳg���|��7�YcAw���o~�Y�.��qĎ�	0����;���E���w�������N���B>#��|�
!��p�X��=��I��S��һ�v�%K����U�6�EPJ��<]<*"���k���N"�KA��	u�Q�+�jŊvH('��C���\�����@nmO�h�q\���9
.�T�D{�2�'ï!�H�PW_LgU�jX�CA\T(�%8�+1�TC�F�Q�T�:E@�J�)A&�dB��֭~�WS0�W�?���B����U ����c��������Y�A�������̈́)�����s؟�O�>s����l��@��z@9�%
��B+,�)��-�AP'V�^�dz�,�����0T��jY4(݆/�B\�ti�ʕ�֭�z���.��juww�*������K(�����Z2�[X��]�v�������������D��Pj��*Rγ7K�.}��ǡ�����
v���(#�[[[a���Vp�PC}}}M�Y��R�3���F1/`�J`ѢEO>��#G`V�tV{{;��m�6"���E�ٜ�zm%����v�E݌�G+Zd�a7���P(������2hF�����	�F�aKr_�xŸ0��屾A'�t����@U��\�Ts�X��
���._����311�:��;%d�'�dQG�"��ב���F�hQ���Қ��4���q׆�@�����EV�l��(d�we	��
��b�E�8��,���H�|T��ϕA�Ey�S7Vt�d�󸆕����k�3AW69���sjY�!���I��y �|�0��p]}}�ȸ �Ƞ>�Q(HU͜&؎�N�j1]o�6�5��V�AY���"(C���6��o�4,�1���y�W�'��'8<ѵ�-�7o��a333�J�'''���@P�a�J���_��cǎ�L��{�1�^`�Ij�OPB@y�w�I��1�XD8�CGGh,�)1�b��@��{׬YB<�*�~�…��{:`�֭[�e��`7m�����F+h���=��suu��Ի��Ν;W�Z522���a�#�l��Z�e�X%P�O>	2K�X!���۷o_�d	��_$�J\��x����\A�C�-[�455����4�d�w��QSD#����$��P�A�a)�n�E����t7�<��a�(�	\o��(���pE��"\���!�H<��P�8 �}��B���_�F��x��������`ܠW����g_^^/�p�<��Ҡ��.�c��х������B�٦tq"�\�PB����e����Z�@�O�D�n�t����|]Q�I��ގ{v�\�x1ls�r�8j'<�V�!���$����#���N�h�_��6�YP��a�/� 0���pu�xo�y�w�+��k�r
s���ь���U���J&?W���'M7�����
��H�u�/��1��'��ј���U�S�m��R	5�q�'�e꓄aJ�5ft� fa\�w6�#�ݙ��*bw���3�����K����ς����wwwϵ���<xP�uP-�x�	���^�4Ҷ��,�4[�-Z%ٛgW"\Ȃ�$,�h��gϾ��;�ϟ߽{�ʕ+]u�����:���BJ644l۶��`�,�ރ�h�{�S�17����uŊs1Y�?��Y�f�H������i��իW��ت����.[�����vO��[�&q_��1`�ڵpSN�:}�ԩ��T�>�tF#�`@Nc$���J;�FO�ДQ��ZT����+W������̜�Lc���#ѲT^�u���M�ြ�������*K�A�q靊�a̰�,y�S�\ABY,kۆ��F)�XiP$��	�z&���w��6ϩ�(��f�g��5BU	A�Y�	j�`�zPUۈ�L}�!Tӈ,	��&�C�(e�@�b{X'��HXZ"D�L��,��6�0��b*���갅���%K���z�ܹL&�",�^sZ�O�ڷo��(��ڵ�ui XC�f!��7����������|�|��vY����c����������ǡK�	���ล��wvv�.p��y��8 ��'��_��[�T,]������L�4Ќ@�N��1�h�A�u��\�;�jK���7��]��-Z�zuOO�P�t&Ȧy*�@��h���c'��ߖ�cG%��oiXv� ����Oe~zgw�A��5
�O��Ky|�=a[܈ќ	�r�ڑ�,3��V\�Z��e���`Н�pO] 䣹�:ih$_�� �gP�2�������6S�Zu]�u��P�eI
����a�X�Tv�SF�O�#��R�/���怼3�^�hA�m��宻�Z�|y8�kiLUUEQش�|5�sA?5Mۿ�����N����?�b�
]�gff�1A�$�����N�>������^f�ϟ?������G��C�9rdrr������g�6*022'�"�U�����ů�����q�ViX�A�N$wB��+�S->�R�;̀d��=L&�㹦�2�7��>1+
iILcn ���!Q!�I#C�+�3��tѴmm]�n��ڡ��v�f�c�Bv(g��b�A�\� �Z��M)s���x隒��C�B�^ս�t
�Dr)*7P4r#q&���f�iv��e9ތ%�O����,�)�U�+J4��yah�1�/P���`X/��	���Ts���TQI��E�>���)��^'���9���a&|����r����b�(�f+��ix��wA�Z�reKKK<Eqbb�ĉ�L�����ʲ��t?���^y���q�BQ�O?������ŋ����}���t��7�f�###{��]�z�����������>�$�T*�r��Z\M�|��ǧO�~衇V�Z�6[n��������n���sppp�Z�$�w�}�����8���ظs����ރ�=sVH%CE�%]���H`$&G|�"cM��|�����) �($��U=��b]A
)�Ϡ�@`�U�7o�$h��j��eaC�Mı	��F���.̕�Ň�"p�!�fEe��5�C�X-���t�
��A�P�5L�#<P�Eq&���fu�*+ʢ,�=�B5mY{�C�H0���|��h��
���I]F"
�tN���C�YM�QTj�M�H���`_���.
�׵��b��O����wQ��Z��+!ӎω��fa���
�eԓL&#�H&�����`9��8H�8�Y�桇Z�l+�Na�}��ǏginR��k��Ƽ�د7n��׾�k׮G}tjjj���P��s��Y}}}���mmmPm�X���"�VNQU�ĉgΜiii����b����l?��dy�����q�����b&�g,�<��B_0ơPh��ō���6m:|�Ѕ����y�.�,�º��y"��ŀ�KU0�~�H���V�z���88n�Ef���0�5�:|��6h��w��L1��
*i:2H,Y�j��m����ً��S��P�)�����F�҄ �
DX['6rBL3ݔ�36��^Sf$��"'��<{_)˘�<-�X�D�=��q\�̠�x�&y)�����Y%���ѵij��Ȓ��XZ�&4��"��N&�iX�`���H�@~�H�EA7���5����xN�=L�"�J~a�j���q��S�QG�p�b�<���,Yr�ԩ���\.ǜ�|>_]]�ƍ~�ᶶ�@ @�$	��Z�F���j�D��c�vǓ��2,A���/@+�~����p6�5)�H������_�f
����Ҟ�� ���_��zE�#�=�Գw�����8p��pzGGǓO>	�s������q+��h�Y�K�;���Rĺ���������������t���ҁn����\@*HBN
�:��YYT�*�O�w%��Ma !H���kB�bF#�,��N�E=��>E�
R�p �ؘ���J��6Y�j�������l�,U�N+�	!�F&86AV0]�If:Ը�M��f!j��]� ȣx��8A��@�x��rx�C�MG�*��KG���ф�#����.=���ͨV�'eW����YG�-	؟��@-W:�N�:�z+L�DSYȧ��Y�
^�܎�ƍ�x�"��4�+�������B!O
C��9�en�i�*x�Ѱ�w�wk�G�?};9�Neϥ���+��
���L�!E��z�(�zw4𗋛��C�O�~�i�?����%nx���E��m�c>����;��\D؝�����54_�Zs�\:�����Y��b��@PFQ����d����)p�f�O(��h(r�
�d2	gA�Y�~�߽�铓���	��y:����t*���@�H��֭�������6��-�pF��N�G$*����v$B�]�vZj��O�)G
�v[��b�\:�;Q�3�"������@�������LNNf�y�R�/i�D$�Ŕꗩ��-V|�."Nqp��
�&�A���k!�U]V4��"�@��-�DSS<okk��o�����LA�KwL2�b�ii��+��pdy�P,YG���S}��*,\�E�xr�	��qx���e��WC�P9�T+��5�
$��W	d�ϳXN�;̎!]N:UK���?$�HH�Ϸ,�FR�hi�,H�>����DQ�Z���g�M� 
�!Y�����N�6陓�\K�ޡLi)x���x�v7�D���z�~�,��e�@{{��`������Ε����-$�`ś�'q2�ur�^�헽��cv�5$�	��j�L�d�%K�B���Y�P�R&+F!���0���P5�D3UQ�J~��q;���_��[H���S�
��`P��P(����EWWWCC�mA�NݎXbx�u�u.��"��%ȶ	�, ���L'���ۆ>��>^n���T9l�A��r�êȠ�.�p&�����2��4�������������SS����J؜3� ��H�2B�(	�LE5�}�LWX�@c�1���(��{���F4(bl�@^�EJ���KQ?kG82�C�o-�(�0���7���&7n�?�Q��䤦i��v'�(�2;;[,9�q[���x<���O ���"Z466F�Ѻ���x���
�W�f6"���y���d$�/̲	����z�`��p5f!���[
.����'�ƞU;y���\��A��q\��`?wV�h��y���
�'eYPؤ�|�H��?x.��D�g�M�%)���|������0�`@ $B�ٲ�W��!G8���A��9��(��9B�a�-Ka+�cl�O�xi��f_�ҷ�+�ͽ��ʪ��sfy�PO�ꪬ���3O��!x�'{}u��L�J#�+
��A��N^_߼�9�1�Me_
�� ����ko���z����.V�3W��̓ʟ�@�v�������Q��IP3� P
�n��f;������q!qgµ
'yAo���y
X��	\T���Z!�	
�J`\�N3�tu^� F�lk�����y����L� ��A��Lp�Vk%&�0���y5wj6W�(=�����'8{~�Kea߭{n꯽9Y�R
(e����-��s��jp�/'���V7n�1ߛ�^���J1������m�ꑍ��9P7'!Y"o��!Z��7f��S��@ �+�af���W�6�!"c�� �@ \7?:����&���k�tyI���c!�(��f)�G�6�� I{�w�&��8/�aÖ ~vmwM_3aVh�wz�h]v�s�H�S+�\=J*A�-�Z��&>���EY�ሕ���~_Z������?�1�����L&c1Qo�}��{����3�t�Z����]�|02K ���\d{/F�_�C�@ �Q���Xq#}��� .�J?�ya�OHB���bӟƟ�j4[s����W��D�D ��ǒs�U��D�7��uYI�-�k�m���5^��t�u�hN��6���^����&���S�#fS�JQ
!K��A6���81�sbfG�V֙k��!�p�tK�=ġ�.�@ ������p<Uސ1��4P� 2�
��%M����t���u�Z��ZW��Q�W��&AP5��!�)١$��Ν�@�B�˕%��^\�N���؟�t��.e���}'W����WM�S��?-
V�z��|�/,������#gV�jM���&���`�����_�'�5'��f�b>���@ ���K����;<�@ ��6'��B��I�@6G�ySh�Id'8)��)1���il���ϱ7PT��W���!���p:���h����u�$sXN�f-���.q=�
-�W��K����4[#�ŏ��jL�_�'�
����b�{�wjc}��AR�e)D9�ro�9�!mޅ]���w�a�b���j6
UD�a�@ \����g�7���@ ;ୂ�t�w�`�
��Ƽ��&H-�-��ȠP�f����T�Յy��A��r�/]bv�D��O��F����Ue�el����_�=u��y]E)�٬��d�.����a=����\oe��X~cu�W'/꺰�z��TW�<+n��s�񦾮x,>�ֲ/kt���PE�
��@������5�~�C;D�!3�_�U仭��H[��y�-`�CA��X:)��Qj��ϬY�Z	��Ȱ�dGa]ѯ'xk_b�[�Y�	����*�#�p�22j�ߞ=3���*9aOY����%&�Y�ꯢ��byi,{��[ۘL�a�I��僛Yyvs8d�Z��N�C •��V�&i4�@ �PC���@!	*h�/��G��Ց�(m��8MP��@��p^��@�d�� ����¤ı�QQ�.OG�idu�b2�n/(MGn�ǿ>{Ɯ�`�-�ihRg����(��`�n�s��֎�Y�>])�b̊� ������R�k�G�Յ#�˼-O ���b�]�n�UM-����B!�@ 0G�h�G�2��G!��TW�1	�M��Ōa��e����	?D�=gU���٪��s�}�Y�E�� ^&�'�]:�.'����g�pg�Q�I[`Ų�Kڱ(��X;��
�B�Z���?�kL�%��s^� �s�Y�^;��)4�5+���&�'���T�A���dS�*�@ ����Ә��dM���B�@��@~D*45$ee���J�xn��=��1'��.�`T��1�
$��.�J��g�� �� �-�����|�0/\�P�"�rJ=R6f��ҫ��B��t/%*�w;)l�^~�b�h��9~�����s���&�gu�JQ���lX!>�7�Í�N]�����,��E���U�6Ǜ����"�� ���G��tuM�
D ���[��˽m���
3�Lg>���PR�+
+t�4�Ҝ�(1�]��a�ffx\�FY$�z���-d�n����h�L���(
5cHT��*���ÎH���������y�k'��L���'�IQ:n�=���@x��%ZP;P����Ɔ��g�N��R���jn��y����qϙ��'�ܻ�/�QgB�!�<7�(���ՆQ�@ �����ZM]� ���{����� B�tN0�"��}��L���m�b�ۜx�)�Sc�ł�B�����䍢e� (��5���	�d�IL��8o��}�����u��l� ͝E��n��Wq�d�n����3:P�&���
gɥ��	c�,L�Xi�ĄZ�saL�T;���ŕ�M�<{�폜�p��|9a��f=w21n�_��-���t�7���Lx�#R�p%���zwگ:XB��I$�c�|��L�	��B����>�={��y��`�5H2��$��OGd����A��qD��#UU�A��
�IdX�A���˄e��eG/\N&�
�J�	��W�U�[G獲|c���$z��B
!J.��ր];m	w�
s�&���7�:�v��7Nؽ�?��+ł�����u�g��	��:
Ē�}U�\�ʿ��6�@ lڽ	��yOAb�@ ��
C?.{�rz6�\~V��r/W���p���C]�O&���s]��3�� H�;%?tR�c4�/�<}��MF��U
E�u����s玜<[��x�Чf��H�t��	�3lf)�6�OZ�I�^17��{z��k'OOƥmU5p��\�_�LJ	W� M�Y�e�o��p8<���S�N�>=�ޓ�94픚���v�ĉ�jk	�p�u��s˟�r�@��n{��+&B�q�X�x�@�� #b�(�f��as+�14Pe��p^�m4P��b�:��Z"�쫝�4A�K�N�a�=3�y�d��Q��-�x������.,�R_%Ҷ.f�������[ꈮ���=�{���;��p�������[�/ʥ=�^�ߍ	����v���ey����'O�W�~qqq�޽+++�MQ3�V��������y�ر���?��?{�����}<���[jG�
�s>����a�����~���?��_��_��[K ���k�l}�t�-m^�bk�@ \1�D�56�4P�1�Ffd�����2�/�:�23f�e�	�RגX
U
[�*�n�ǎ|�[�5���'�p�6G�ʨ�%��:����LYY�ᅵrs�}�%�9��J�͌,8���KPLJ�I�`|�o�����;'��pcnab	�-��B�ZZ�9�v���]v����O~�'�|�ĉkkk�X����ܹ��n{����={��r���=���/..^�x�]?�ٳg�������V
d�+>77�{��~����w����"eY�E�����D �m�x?����"�I��*e.�dA�@p���)�zVj n�`��p!���4�W�T*��@1�
����?]���|�W�M�-D����M`g��:�t�K�l�����*�U�>�6Gw�ujR6A�1vN���<�ln�e��&�J-
����HM��>!x�_2����\�[Z��<2u��F���B��Y�|���n��,���[�֋/�h�,w{��ŷ�~[}�_����W����]d�7�~_��'�q���ѣ���c����}�*�8������{�����裏���۽V����@ `F���;wO�h����ʒ7�u)A�@ ̍�LUW#K�Ȁ�0�͸+
�ލ���W�3�H���Q�R�9�c4Aq]�7ٍ��<yqf|l�z���z�	"l	8>���0�fuA�[e�o�{V�W3�F�3gΩVz�eƖ66v��3��������"�w�����k�[�hI/��x��xzT�l}\����������������}M��@`�^�mT��W^��׿~��1u�����۷o���gΜ9~���Ξ=���/��W���{p9��h4RKY��]V�9]ΖzY^i2��׬���7�p�׾���o�9׫]��o�O��Oj��kee�G�+�@ �~W%�����”���)o��}���&��cc�%E�y�!�&��ʯi�@����":���A�:�QDL�:X�����v��vA��&��F��B��gϝx�^�죸��E[b�����	�+��n�B�eZwz::�)���d~0`�,@��Jm�%W�������ʎ~��c�PG��J��<D�ܹs�����o���������ԧn��Ƣ(&��/�˧�zJ}��|������R����<�̱c�N�<iٖC�=���.�=��s�=w���S�N���ٳ�;�x���������;O<���ӧw����~��ٳO?��Z����`����W_U+��'>��ޮ9�z�.��{�U��8q�ڋ��P��V��|�޽������_~��7�P�}�]w᥎?����R+ݿ��wީ�0a��pM"	�������X*$�z��"�
#B�;"t�w~�#��d�8w�\�n(��k�[�	�
T��G
q�e�%�Ĝ�t�.�
O��E�^���%��o�����,�"ݗ��]|>O�rumu}sXpK�h����h4B��eQ��qK���B1���-�o+
&E��O+�����-��7����\���\�[�[?-Y�@.�l۠v��_~饗���ʲ��?��/yee��j�<p�m�mnn�0��Z�{���Ç����Rj��׮]������k��J�o�ۿ��//^�h����ܹ�����?��x0���ԩSO<��ѣGo��ƳgϾ��j��~�3�y�����YM|�疖�z衽{���
u�HM�B��G�jg����9rD��oZ]]}��'�z�)���	R{�������;Cڷ��C�}�_��{f2Z"µ�9��D�R0C�W2)�"tN��%�@ ����.I��G -��7Ò9���`�i S�b��������HF�i ��ՅA�'�gA�Dض�7�w�I�流\I1����N���ObS�/\����D]r�,Le�!q�l��,S\�S��=1�E��.�]�5-��͊��N$�5Z��~��’�d��+�lnn�z�[o��s��܎;0���o��@��e��k������j��8�9q�ę3g~�����+_���ۛ��_�����7�=��\\\T��F�S�N�={��?����n=��^Ej-����Gj#�ƨ5�)j����[ǟӧOoll��jDm��Ȱ_6S�?��j���{[�
e�Y���҇f�v����-���G�Gw�q����K/=�����7?��|���'�@ \ۘ�����1i5��Q����*�4e�� '��#\7l�^�&,^&�M�{�Ɔ�T�A(
�~\�L槭)6�
5�1$���^�oKE��7}̈́�V�G�q}][��6 ^�䇛�A_���zұaF/�>.,��B}R�R
Vr^���I��3%b�R��(uR�ꪜ��:��LL�,����-���mN�U�v�ĉ��R�����޽�Nye5���ƓO>�������۷�_���w߭y�����:u��{�ާ��R���?��o����[���/��ժ�_<��SjK^��g�yf׮]w�q�ζC���?��7�|�j\��СC��[o�����R�7�8j;�6�ۿ���ʊ��'���������|��;��S���چv"��0�Ò\ǎ��w��gϞ�~����w��⢚�6Um�뿪}��{>��5�@ P�]N'�X�k�6��-K�a�@pCymƮU%�)�2Ea�7\`<��]5�D�JY㍼K�YGC]X���ׅ%���Ђ� ��Xu�#|`�[�\�?�� �#�6�z�]`�w�l_s?�������KK�P��RHa���~ψP@
�0-q���d4�s�uQ٤W�U�b�,�y`�L�2��Ԗ���w�]�v�z���'�}���՛��9�(����.��o�}mm���?w��+���裏.//'M��Μ9������?��?XZZR����я~���z�ȑX&�b<?��C��g��Dv����������߯洍d�9�F�>����
��Z�z3��:��@m��Ç_{�?��?��G>����ި��>z��7ծ:tH1�D	�@K�X���
UoM��y�I/"��rco�����Kb��4����j +ر�SS������yZi ;�0F���VR�Y׺0� 1A���0�(�*��d0�}3[h���;V��6�7��//m1�#�V�7&&��&[�^�Кf>�e®D����7�d
(�ͻ�������
�Dԏ@,&���n[��l���HVWWC�S���…�O�.�B�?�������ݻ��N����ƹs�TS6�+�JΞ=�����///�}��jq{H���s���y�ŋ�l�?��Gj5�m��ʻԜj������l�XA�6��GQs��Q���_�u����~Z������[�?�;���c�l��O�S���վZ�:&�Щ�D �HO<8o�-oފ�k��pE�S�dA�@ ŇYP�Qtb��K�H[Dkkh�0Ϝ��܍�dr���6���\�Ӽ0>���� �%�AY���+��k*.
��uEo��7��;���s�.ںq	m:�m�Ǜ����^�����e���\�6e��=g��-�JQ�ׇe���������-�i9Z��-(�M
���=L���*��&y-,,4+B��p���i�o�����ݻ-�2��<u&�&��Fԛ��ŝ;w�VVV�����	R3�u8p ٪E�)_��񙟟���>�v3�NMW�8r��O<���_�x�СC���oi';Ѻe�?U;jS�z뭍�������ݻWm0^�@ �X�#��:v�ޡ�/ٕOv���<X���i��`(3�uƳ���+�sD	4����tT�54qo�2�?T���c�f�MyaA�D�:��^�҄��dVf����'��{�s�Kn��^n�����ǥ���F�?������!���/%p���ب�͑�}NȢ�6��7�`N.�&�B�Q5TV�a��7�5�v�Eq�}�=�����w��O~�/}i��݁v�n�/^ܵk������������o��ƍ7�x���zk82S�P�d��^��;l�jA5�o�>R���S�666T;�`.--{ �`]�s�̙����ܹӶ�B�肾�`~~sIj/>򑏜;w����ǎ;y�d�	�꧱�Ԯ�F#���Q�jK�l��GyP�޺Y2(���p�NP-:TOjp�A���,�@ �ą�$$c�c�(
f�
��� �/5O���i ��X@򳕡�̐�%6�!h*
T1A�-Aʐ�����}$8-抭ҳO���ܠ�����1r�c�C�/��z#�,777��	�"��%/�0dG��ե���_W	Iv~��c~n0�?G=]S�w�X
oou�w�q�#G��e��������s���r�׳�^/����o���������ʾ}�Ν;����^���ۭ�ٳg��_���n��.^_��h׮]���kkk���j��O�~��666,[d��1��4�Zx���=����عsg;�$�u�j��⊢XZZR����3Ϝ9�N�<���KR[r�}����mi#�g�]4�@ \��$��`��U�KF�#��%&�@ ��J�#���h cn[�01�����~8x��+�A�~1ud�g�'kI*lT;jL����˜�����b��H	U'�D���1��8y}�k����X�O�������|~�楔e9�nl���\0��q9�c>�0�O�R0�^H(8��huc���RJ��d<��H�6�xs�`N��%{ �+�.M�[n���?��o}��G���7�y���:th0�;w^z���՛�ر�|�G^{�����|<��L&�>��3�<��ܻw�<���/j]�w�~�Ǿ��o�E����F�{�W5��ԟ�v�C�]u�������w�y禛n��׾�ָgϞ�[��Z�5�P�:v��+�����߿�ΝM�<xpnn�?��]wݥVW���#G���U<��ީ�x����O�?��///�2@#�z��7o��fՂj��H�@��;
�����Ǯ��pr[�l�#���@ <ybt9F~ �i������7��7eU��8�4P���pf|�	ھ�0b�[�i��'qp��I���VW�1��"�b�zl�BHm7��
>�D�/��~477\[�G��͹�I�?�m
�?}��"/Ρ�aT��g�͕%MxJm�Æ9\�,�v��qY�|�c4GS.Ǔ��(>�O�;w������S��x�����'!&�	�����=���Ç�}��.|�;����u�����}�cKKK�ȾVH���O~��_~����?��J����>��s��?���R�h;#����_����j�jk�?~�w41A��w��n��� ���gΜy��~���ڵ����}�3Y�C=��SO=��󋋋6^%��o�1�Q
�ڗ���o|�������������ɓ'ղG�}��G�Z�	"�k��T=�c�X_Z�G��A��mw�DA�@�#5<�l���P0���U�i�GS/f����e4A�&�d�4P]
[�����D�:�1����0˙J���J.�YZH�v���bucCM�ss�ccd��\�W/�?z=]��i�9�Ǜj^��VW�����698��ճZ?4�\ⴚ{�~ˮ1���w�@�U���?������饗VWW��I^^^޵k׃>�я~�R3�t�M��y���g?;{��p8�-������O:XA��
=�ͭ�������~�_�����c��U:t(�2��IdAw�y�����޺��8Ф�a�VK};��(�R�WVV��?��?�Ї>r�պ+����_��˿��}��U�꫿�{>��Ϟ<y�����>��'?�^��?��'����Oˠ�c�裏~�#��0�@�ƀ]�:�캼ҧ�J�&�{Q�� � ��diwd�L���	�ݽ1�R\/��(&ݻ��J��.e�#^��T�y 4D
�r�2-��ua�Rc1[���8��7��W���ZDϪ�V$�Ǹ��h4����@��jJ>.�?�{;'��)�޿i�镈�|2��Sfr0{�5k��І��N����%�ݽ�X�^N[l��k��e9a=m�l"۫
TW�6Z��f��Aq��;��w�|�@��s��蕓��x<�L�ht�…Ջ���o�喹�`s���++;z�sj}ޛ�_��ܸ��~î�|�ž��7�v�1����7��}���c��O��^�����/���ŋ>��o�����}���v�mLX��կ�?~��	�#v� ���m}������D�������ǎ;u���oT��ɌZ�̙3/��Z���?��CA�c�g�9r�w|��^^^�^����O=��p8Ll������M7ݴw�^l�3���_���k��G���E�~��W_}��ɓ��={��s�=j��G�����>p�w�O�>��M���M�k��z�������U
1��)��e�!�2�n�XI�٤�a&H?�2���6�E�5�^���^AT5(�K��7&�N9�?ʳ^$T"�V)�#&週a��LF�՛x�	���Y3�z&�����K��+�֋ǰ ��-�^�JӲ�N���@%�ɵ����s&Vb�$�r`��*c ̆m�#w���i �h��}4L�)+cQ=T�^�!XJ��a?^��gaw�KI1b��	�
����� �F)�+�BI{q�?�A�=S��.��hX�����=��)2g3/z��X�A��p���v��u%�ݻwiee2�,x���<��hNq���8��������v�m��uӭ��={N5~�
{���w�R*w�D�H^;y�.T��g�@ �Y� L��0�����@40Avd�rd86ǎ�lH`2oaTu~D��vV��"�;��@Ű.cI�j��Wc���Tȿ��QlU=�����$˨�B�A���M��-����R�H�hd�O���fE
PU�%4P5/�4��EE|�e�������&)�=��@�������i�����Pua�t�{Z%�\b�ai�-��W[-���ih��~��+�m��l0?�ƃ9���xmc}ccC�E�M�I)DY�=n3�d�����XYZ��(��>	^�j��������4�{���	�@ t����FO�,:<�v#��)�1�+p����6O��P�ZB8CDߥ���h���
	cMm	&���˱B�=4"1K"kTL�>Q���c�&L�H�4�@��!�W6�nj�W
�l��O���f�v�d�`P�,��[��_�N�Dp�9 ����Y���hz
pj|(��ي07j�l�d�a�SBe��7�gL��4A��[��օ��L �t�qw t���w٭�r y�j��1�.��h,E)eO_?�nUp
�g�G���p���d4*����=�j�y��2�^�/
ok-�bb��p[`��I��@ ���h�
�����=\��B�<s#G٩�<8
d���=�η��聃iv�R���:�b8�-`V?B�ɮI��4M��i���yf�fkiJ��4R�m�t8�f�\�We2�˟M���&C!ꧢ�x�",X����� �zӲ2�(}���ˠ�$���ݰ�M���5�R�ʒ@�0�ʽ��cɬ�9�����,���J=��d�"^d�aH��bi ���=����'4PHs!��
бrb��X�h�����@	�ׅ%ԛ^�� �l��;1ՙj�KpV]^��;=�*���]}��#����RV�����9�a~~�?7�����:�{�ԁ𢜔�R��y��ǣ�|1�>���@͗b2YX�4���<o'>�@ ���9�܂d�ut�R�o�� YOz�a�U�B,/bު�e]/Ѱ'%T΢�����0Jƃ���^j�9	�d3��D���u�.Kui�@ho8��y��O�/:�uJ�OhuH�2OId�"*}���$*�No(��P{��eB�Q��դυv��O/u��A�K�,�Sゕƀ�@w'Y����w��4N<�A���I�n䧷J�%Y)P`��i j�牀؀W��5��i99�
�����'U�M�J���=PJQ�<a� �x'�3̅��J��.N�}�|��,'�b��ՋL�䆞-��C���s�����1�:�,E��d�E*��6�]]ϓ�X����V�i���?��W�g;4�8 �@ �ہ���|K�X�,��:�~ ���{�AV]c8տ-%C� �U�z$��;��P�2�c!�=2�
�cE���
ĦڸM��r�y�&�/QN#w:�2���%D���O��4o�A�+:M	��]}�'Ts�{��j�.�|4U��@U��������&l]
�ₒ&�*ǁD.29�ܤp�I�У�˝�g�I8�{- Ե�P�en��ėAH�eD�!ac�1��6Hå����l?��i o��8`���O�`���ƣ/7xEgh�v{ L$%�1A�ِʔ%�M��v��>���,Z�B'��H�4����ԝxoNaaa2��F�^�g���NP4Rn���&�tkҹd�zSj��䮨���xu"�1�@ W��.�'� �Q{�M��/�<�a��g{3�Ñ�zJ��5�A5��5��)1T
���[:f,�#�N{��q^G�!s���X�8]�dS��Է#�x����-i��g z֍m|�S��	m5���0�V���`���C�,�s5�_��Q->==8�0��q�›{�[ҧ�qhq���l<%\�4�5j�O�P�`,�ʰ�(�
i��Y��Z�&m�Y� �˵�Vݧ}Ŝs���@,��$�Q����(�)�@�M�� ��7ј�U�\��&��Pl���x��|Y2�K@>�����Z �^�ȴ,�(���3������>h Q����o/�B��ti�f^����5�pE�;b� [�NS���&�������x������P%�x��,d)!f/qf.4��d-Fq�Ok�����C�.= h#��g����}����e��-�����4�����M�,��N��d����A�݉B�H�SP�ոF�A���Z6Z�B9�5Df@�|���;G���0��ωג#u�-�ҩv�tWXSE�Â�!t�˒����r�m�^(�\����4�@,���W:�;q)�,�㚲��O���#��X66��eAa9b�3B�֍V(M�H����	�B��Jy}6��E�S-NĤ�{��.�O_a�����������pccaaANʲW�9Jm4�Ŝ� ��d2��2L�I�r:��m{kV��@ ����#�
����}�;UT�V5e�m�T$)�� &��ϛ*J���D�#k"�f##�4��̓��qӂЭC[�1u���*��Ot�h��]O�%�bCڒ�5�Ul�����������ƸKT�����6��X�[��k�-�1�X���B�[�I*�hz����D.���0R`�n�-	�+�(�f�0s��&�Xz�r�}8�l���]���k��X��@�yP�R
�XDH���&��
TO
��ALa�&�t6����uTL�H�)�u��ԟ��>����V�������Ao��w�w:t����x<??/K��#)'��Ӝ��G��_�iS��e�$"᪥�r�a�<	���e���3�Ɨ�w��A��ù�sN:\���k�'����.G�B��;fy���̈́Y�-b5u��!-$t�mK������^]��~;0�,�.�4�갺(�ʵX����@̱?�-�|7R ��^
Cdޘ5�$E�-�q���'��N�v���KQ�3��i��]a��!�c�"1�8V���������Z��K�UaH>�o{"GU�n.&@b�QP��bp0
Tݹk4P�=�/�\�����e�1��&]�	_�.^gop;�SaKG1��9=&J^��S=5o	P0w����x�(��ť���������>��dR��R�(K6h��ꚈR�Ǜm(���A�L �]Gb&]�.�fȑA˓��C��B�����J�l&惘}ָU�T"���fvJ��[�%���@Z�
0K�V�z�zOЁ��l�{�"��/K���Z���^#6KQ�\��Z���G7�7N�(<�c�KZ�)���
�< )ê|�n���+�B٬��Z§��X,�e��[sp��&�|a�n���d���U��{�Ll����Dj��wi�f�lPDJy��&�K�4F4�V�4PSf|���J,�S">�� Œ7M�^Qp^�����J��u��������h�Bw�R�$,'��3w
s������:"(x�sy��;��[��_9����{��WRN&�a���@DQ��B���_�����v���~�	�@x�̒���G��e+à��1���.����-�	�
�V� z7�r��/�M���Dh���ìY(�c ֬�N�l��4�;jFtj�-Ed���Nuu�j���I��Жh ۲U7�$�nh ��x����Vo$sUW�
��<�x�J�ê��]so�WND-��El�X���J�"3��YZ��֪ٱ?�B����7�n�,�<	����İ:�0�%�!fL����5�?r�N�]�c��3Ԣ���QU'WB�C�ݎr4P�(�A�f���2�b<�=V	���.��|�і�'-����h�z}^�`Dk����O�Q��ǃA�޻�޹s���ps|��`�I)�^oqqqaa���u�K[ٹscc}�9��ع����cnnN�d�v�����A�@ \Y�N1T�^�7 ��>1���&��wm��#��Oӏ]�|E�ĔP�K�?j�͎�Z$Ǡ��f���a�F�lMĺ�v.��E�4�e:U`֙�4h��W�=�Ú��P(�V ��L��M�[�/
�4��6�=Zk�	���:-/�1d��ʯ�Ȅ����-w���8�p��������vK
�U�3‚�>YW~��G�O�JK؛���!�m�a�Xt���9 �
7�"w�*%���Jw�l]���s$g�!4����#d�Ǔ��@If<"�d��V-�ʂ`4m�*eB�e'VS��_C�aU��4 G%�R_��߶��s�IN~�FNѵ�Z�������4yi��RH)Y�ع0���a8I��ߒ4PW���BQ��p�N]���.��@ھ�R s���>�̗�����9L �݄���d,� &�ϺdQO3�чj�L�5��"���$TA��D�y�~aYt}7�􎓄&(�������C�.dPGˆJ�	��T����|��锛��g��)�mh,��I1�JHR���HC���w�5�2������󒂦�C[��ِ9�e�1	���l�(�Q4X$���|4^�c�ɂ��~���q�L_�cx��c����(L���"�S(c9Ī:�@�Hb��	�j+��tf&�e%7d�@ ��c�جd��F�c92H�V�6H�̑v���X�0�il$�~0��95���ɧ����i2��$�VHN�L��xJ�e�31A�7Fp��'�13�@xY鋭���a6�Y8�*�j4<f�6Xlu���>L=�!ic�*�GXCd�v�Wr�H4f�'K�+��Aj�.�.M4�!��W@B��6�RA`�PE�e��.�b�D �@��|}0�݂���'��6��Ģţ��D(XR�\�-�0�����M�i��NF�*�X�?�e��So��_�V�ze���	���S]�Q=xb}
�$��%��9����Fa�{�72r�`..�b����3�qVh��Cz+ pac`ma�GL
�,���j�P�f%��")�}
q@�bņe�?.�ݯ��if-"�M� \ET�^��5�(������Q
s��,�������������H,K���1A�@ �+8���2|�Lg� �Hە��N�:�����7e�
 �X"�a��3
*��{f���aR�XrT�`�EdY��Y=�ۍv�"\ݷt��-F�xAXG�JA��V�Z�y
s|ö�@�*�n��g��<y�O��YfH���.z�b4"(T��Ȓ����d�����UE��Y�h�ҏ�ё��� ����I}�����C4��<�#$��ex8�D��4P�,���1A�@ �kv��NAe���B�(�����,	�e�-H��1���M���c�ꣲ�$��"�x���X��7�9[�g�9	����:���J�B�K����md��f���B���o����⥘L#�s�W�����VjMR��U{Z��(B���W3,�ȱ�G-۫��O�A�Q��+r2�6%2�H��lG�r&Ӝy%� o�����u;�l�ʺDc�1A�@ �+���SuYsOm�dP�]�3�G�����I�w<-T�%��M����P*[&.�]G���xĺ����2�5��v9�����3M����݀;��Z-��UZ��޽dcU��E@�5,����gq��Ae��Ղm4pT��~@��p0�`��j'\�-�@f�8�����D#Y�DJh� ��z�:��0
�pjX��%�@�J�ĉ	"�@ \��2�yj��V{o ���Q�	�KI]p��D!2��Y�u�����-N .�����K ���1pA�����&*>��Ou�4M�Wʸ -�����4P�َ�{e�ʐ�,‘����2Kp����R���g����o���Z,ok�d`���x΃���&�P���"V�Ga��LY]��"aSE��eC
��
U�t��U�
D �@�:�b�3�2(�@�d[e����.֭�׀%�PB��=�L�tO
�м��x:��)QB¶�@���۵�4-��7j�A#
�"�|���,	&n�-
�c5P���֗y��D��*WRŪh���S���K`2�R�8�VI���K��9�,K��1D�ik}��	O�֟�
m��m4Pt�D �@��FS�N:�+:�=N�W�G>�0*[YOh;F	�A=K�9�M�
*�@�G�����́�u�f�Sֆ���C l/
$|`�Ķ�V	jX�1��>F=�<sw�J�c���R"�%��\Wz�-�+c��%��X�E� ��EѲ!�����1GBxD���;�S�9�����Y�9�U�1j�^<uh�i�_�'i�^#��R����	"�@ \���AXԑb�8ȱ>ȽGz꧖/��c,���P��P�ee�B\���/=���.(��7��_���(��2V2�4��;&���2�-a_C�9*q*�r%*
K�������՚�����^����@��-bƹ1�v���'B����8HTs��,�#�߷`�=#��$������8m3
���B��@ �&�dA]� �h�Ȧ=��Yk3@��wX��|�;�h���wL \�8s�o,
iċ�|8|�Ԙ�QYG{�l^��b�����f�}800N��o����Xc��i�
�oԋJ�<�e��+��6�|E�~o��jvӱG���4��/�5��
ī��Z���D��@�y�N� �C�����4PE�f�	"�@ \q୏ЛȠ\;�D�$��
Ѻw��?emXT_]�j���IA�&|��	G�`g��4P��o��ҩ�ױ�<���	wI�٘0�Z�P�V��3�z%'�Aw9Q�IBX�U5���5c�$��V`��8��6�{����J�T
TY1L��x�<��Kt��I���(+_���1��?�h ����Q'&�@ �p� kd������]�A�C������L�`�3�ʲEᚧ���`3�=�>�7"����X�b�B
�@�5�i [B��\im�T�Q��'v

��}|�^W�`�q��uE�{��@�A���<.��5#���cUF����
#D��h���K��BEX�?tCE��h ���|��@ ��!�tC�Py<tIFUM�b�2���)��t�TWA��l�t	���±�@���Q�lG�YM4�ged�
:�� 
�����ՂI���DŽ�v���S��h��5�'��ۤ�((�!
wcl��k�r�]�ÞL�3m�A<���0
Ġ��m�`�1�bQ�VGL�@ �J�ౚ�G6�Ai�Xs��L��0����=�ZQz��	K���cn�d?�@ͷ�p+�� A��@�m0K1ƚ�螙�K����@�h*
�yu�6��TH�A�p@e��e*�
P�=�.��'HFa�9�!���p�a��+(�@5��@I��PS�f��Ï�4�-#&�@ �pU�v�g%�ԧmD�8H2��,N_�]H�̓�'��X�M�
#�3J����}���x�?��7��Ktp�'�N7�+y
�4�z%��@��m'��2j nߥm��Nc�����Ac��VZ
̩�O03�M�.݄���QN�oJ��S���:�zE�w�f8#����R�P�k��4��� �@ �����ʾ'�Kdν�E=��)�Ү�
u^���y
�ӑ�!&�@�؟� �ғ�7B3	»�X�b��Is7�밤c�-� L�;ze2�QUĶˣon'ʉ7�����q�X(��Z롈�P�q���#�l�H��fd�>m�������J�B�)��B�1�͆*�#}���@mA�J���h F� �@ �UM��(�`zZ"q7p��?I�XL��j\�23�b8�%1䙝&��b��k�	J�!��
,7uL�B�ӥ�8��<�-�U���+�
q<{��Ӧ�^
�ЎS�*�-��H"�2�z6%�]ri^\.+K6��d?4��Q�
�*F�9�u�8{xe=��W3�4P^��?���M6
D>A�@ �k�b��444�{��X��ʫ�[#Q�|ݶX��k��"�/(�Ԍ�9`'�����x�j��Q�uaZ�cʭܫ�o�a��u���"���_�9q혲3�۱�^F�TY�	*]Ƭ��_�<v�4�^�
���d.'��@S?�q�D�jʀ!sh�o!v�K�D�
�Xe�],�.�IE����Q
�Z+�X�-U�^m4#M�@ �P��AɠƑA��A2�a>S<�\4ȨKx�[$>2##"�*�-����I��)w���x�!�ha����W5%чq]XR$&�i��'���ґ�2�K�J?��qV&
�jy���9�@F��.+�,�qļK�G9����Ցb�R�l$
{;�"����m;
D>A�@ �k��,U�X~0&r\MJ�4Y��TS�d8�$ٰẁ�ݻ 6��@�
X��t'��ƍ�z����ai���.�iԗ�Щ5��ԲEò^��_��͌���´PTG�x4��.Ӑ�9��j|���N$:�
�`�Շ��̡Y���@��S�c�h���W�E4P��Τ,
�HD �@��ѥ@��5����Z)f�!��A�(�,�a�:���[4�p�bzr|�"
����0H��4/����-����0�*�L&)��`6�+Zo��1a�H���ͼ�fS+!�(���H���#�n�
�చ�	d�ƒ��^fg��̡�Tc L�N>A�@ ��r�4f���P��vl;�u_�'�e&����I�&�{�lAb�w].a]�Xti�ü2Ū]Jd�����>d=j���Ξ�b��q�J�^�}�?����u��T`�B!ӽ�PW�]�b��tͳ�!ϣT
�"�͡�Z��2�3�x�	b�2�h�ZmY
�HD �@��� ֍
�
M�Ll���k��OF ��!�Moj�M��H>�֊�Q��z�l�IB�7�DAf�:'v�A�Ιe#�L��i��@��@M7�ܾxs�\N|�U�TD�w$�M�Ќu���@iiXV
�:V��N4#&�@ �pua[�A�c�բ��Y�c��Yt�8$^+}�a9i#�k�/�����:O�is

qPw�mѵ6�@2G1���cu��5vŜ�0_�Ƞ��D�ײI
�2�Ь�"�),l�+c�B1b��@ Wf"�X�8�u�.��:�jٞ�#�k�3����ݓ�c&�x��	�&�����B�tY�,%�kI'J��]��e�Z�tf�92�Y�ǬVf�'^�]at�IY�{[�E���@��2�]ŇHH��[�L�
�U�>VA�da�%Z�5�i~Kd�Jiy=�"Ц�G�o)>	�ל[*4U;na�	���2�
�2�k�~��ɂ���'�A,�C4�o����@��P#
�TN����-Ia
T�y
Ea���8f�Z�6c n��<���1b�H� JX-��n���2Y^YshS�rU`��"&�@ !?Ĕ�/�Y�LK%-d+]���0��.�6u�RʖƳ�4}�2��Hx��mU�!�~)���1�0��و�T6����p��tx)d�J��a��W!��a�.Tca<�ɡ���%�ˀG�~�W�X��h�~����?���o?%�A�dEG�[gca�V�0���Q���Ӂ?��N���H�x�j��K�ݲ~��K�]#G�3@�,���ht�ۂl`e�7L
3卲�P�;7��%��
V�ʊ�i�3spc�+}2��Se���bjQO<Xz9d;��0p��C�VS���ӒT�̆�
�����W�~�q������v�
C�'h**�p�a���,7T�?j�B2�Vmm鏠yi�K\��$��I	U F\NY��k���"��x
��X�o6��S�A�ѐ��^�Hɲ�����V?_�!���zEX$��5c�m���@�a��q�Qe۳��бK���tl�>�$/e�:u�+�o��q���=9M�)-G#ټF/�ٿ��o����lMв�Ox��8u�m�Sϥ&����Ӭ�y���TJ(��ù�����H}M�fD�0�P�{�R�$�#F�.`�u]��L�P	A�X<H�Ai�ȇ�mfV<Tq�+�V��zb1���)�G8�Cn�p��)��ƾ	���:�W�t��%wT����7��ȿw&��6��YU�a��뀧�q�#;�o3��큩�Whf�UahY1'~�S�".�3��m@:���ۼ���r�E[Ú�L�l�F՚�����mv�}����

|N6����v�����[��c����x�qu4i9���pb�-ՅM�b��j�H
$3����@�$�A84v}��O?�^@Uh�����`U�V,q�7JH2ޡ&bs�YG��F7�m���@�f����=�J/�4�n�f��j|+������n�ֵ�O���0��>"�i��q��#�+�Ge�Ac�x��&����#��1L��e9�+n��n�[ly�~Y/���ku�H�ָ�Ց*�v}3m����-\�M�zǦp)n��!�N�̤�`
��A5D�W[�ϳ�m<R�܀9��̙]o@8�M�%kOfk��6�i��G�Ϧ�Ӳ��݀���`��-��S����G��'o�v��{a$������擴���9;��L����<��Af���Hp�j�������9��g^���C����C�X�E��~È�}
��]k���+m&��t�����q|:��2��qڻ�I��Ns�v��G�ьzB]�r�e�S`o�Q�XE�y./l�r@A㗵b�+�z!θ��pCy�x�*g˥���r6��t�Ȫ+���d�Ar@ra9R�u͉gN��M1�4PD�$�O'��PƚK��	�N�;w��o���.�5�N�Rb���j�[�O3�D��:ŦB���-��3>��4�
��M!�3Fݸ��2P׌!��D��LUr��w�7Q$]X����9���.����r֑O�F6-�3�X���۩�X�u_շ���#�':n|��%9���YS�3�0��z���c�l��'a�F���~��I�j�h����Kei��4����m:���h���X���5�
�<[ǻA�K`���x���^�-�6ŕ��=�ڬ�R���!��!l���ҏ�a�}�D�lE��){��-�gq�fY��FAKr�����X]��~��]gS��Ҭ�
V�u���Q�)'���7�d~����C���o��DU�A
�:ty��Ç��#�M�da�6�Чg�y��!�r�U�`�]��#���ڨ�˳ǘ����ղ���/:/g�/�.X�*<P����Y<�
�j-���qW�!s�s�dG�[�OCv$8ڟ�v�vE��w<��4Y�����;��
{.��{���m�o�J�|-_�
���e����#�í�ܑ��$�/x�(�#�����C:���(C����W�S��·��u�.���w�`��@���J!d�v4�@��R���2�dz�4P�5�@�j1��?�X��]�;�C{hJFX�r0�uc��F�m8k�a"��e]��\�!t^+�;�c�4�͋.�����|��_�qX]]=u�5��_=Xg��h�y�)�J���vy��B�˹+cR�ɖ�%�P+ԥG�T��źuM������z���omkg:���ٶ}�h�H W�%,h�Y��vaV&Ȏg��`i
yns��٢C���f?�t$?a�]�q�7�A
����4�Ղ�V�e���s��Ьfx�Xʰ;)�f7J@��������BMCN��P��!&F.�o!��F��=���J�	��d�-�i �]>A�@ ��K�*� \YߩÒo��o"��J� Lh\"j^��'��L]X2��O����&>��K�y6�7P
�j<��2��C�̼��C��XK�Bj`��&b3t����(�LP�&�]f���ٗ�C�i��@ �]ǥ�A	���L��N�B��^y SП�1�e��k��8��p"���<��H���FyU�Σh-�
�%�!2�N�O�w�=��Ȭ��X	��vg�7k��5��b:)�h�J*�R)t2����=o�8 �)3c1
��M
DL�@ �E2j�D�P��>�#M�@����r�m���	�!��T�5z�!����O��T쁘�H2� ��o�f�<�&A�ͤ]V5�c������mD۠���F�{^�3�8���ACLs�zj�,a�r0��R�p�	"�@ \�HT[C���FQ!�@�d��]�)uw��ς&���(����.��xO�0��j�Yi�T�ԗT��K��1P�$S=��55)�Y��+����3���-I�B���@ �#\b�ˎ�b�-�͉9"���r���9��)FѲVr���	���ՅU���쁒T�Z��-�j�����ƄqS\^CXB��P�9�LyK��zr}sh�㖒����D\�o"1A�@ �vbn@���:�û�y0+���v�Š�Z�48)L3A��3v��ե.�5ci�$^ӈ��Ȋr���%�r�@�n�0
�+�C��
�b='�%au:'��m���ڌ� �@ �u�m1�F�I?\s��=�B�p������y�h���l�S�#�j7�,��(�;�h(,dJ��1
↤���}�b"�K�/�rs;[k��ٛb]~�E2�i��˺�O�"�E��̼j�es���R)P��q35҇]���"��	"�@ \�҈!�@`��[Z6�@�I���U��p�V��@�}+�Ib��ԅ��=��j8߂W��@A��l�G�[<��mˌR �Pv�9 y1A�@ B:����!��.�|��j z�?2�ܩ�Ո�dR�w�:,1�f���-��{�x]Si��E�u�f����}�|x��U�AcEX^
�7�n
k��v��&�@ �@�8B�
b�»s���P|T�-�D*� ��
����� (KAD��ˠ��ݞ&s� ��$+�+��a��b��u����T��߈����B�/�j4#&�@ �@x7�o��2z�](̔"����_�v����Er�@�*��UՓ���3�����'2x\Q�WZ��p�\17_�͛i���oh �:!��U��`�E@u(����0�Rׂ�) ���>g
��lKk��M%&�@ �@ �+]B��P+
�5S5�	+b /��bA�H�ZX��Һ��f-j�ю�R;
q���@��"�W���f�y�m�X�
D1A�@ �@ �ǀγ!���%�5{Ec�<*/�8�\�V��e`ɂ;=O�b�AaMP(�c�\�zEk1�f)����K�XN
�r49F�@ �p�.q�F�M���S�-��.ю;�Lp� HfA����f�7S����Ia����5��6�9t6��9 �\�'D �@ �{Y�?�2��M�ɨ4����I��+Q��{fI�W�Q��$0]�Ơ�K�V��X�j�	k��*"'��XV
T�{��yt���m�@��	�@ �@�2хJ��c����ZiX��
�	��:,5�I� I���"c�ضxM�	˲?]2�X��u0���Rϓ��Z�@a"��@ �p�rS�XE戞ZiX$b9�IK)��:,m/粌6�P�n��.,���CSi��NG�k�B#�sr{$�%o�?̇a;��MI��o-$K����M4#M�@ �@ W=��+�D�%G�$����v� Ƣ�0���(:.^C�d��HY�(M��%��wH�otJ���W�O�K��}�M��5K��{��@ ��^b�.1y{ �^V-��rLK��`������:fIT3hS��([����vbf�c/�&o �F�.4P%tJdQ��iE.C۲1 �	�:J��q#M�@ �@ �1$z�6�5�;F��@��0X�<���'�,
�m� ���
����?�օ�;�M
c�"�A
��_f����iɉGێg�����@-���&�@ �@ ���-�좫�*�$G�����dP��?�OP\�b�����LTK��$9﷭{f|V
��;���
{�Q9�x�J��,lK�@S-�X7P=1A�@ �@ ����k�<����`��`SiX$
[�\bA��'��v�MEya���7�u����#�!h(
s��z:XT�>2v��B��V��p@M�`��FRu�@ �@ W��A�UP�IP�J�odV���@�@�j�N�I��t #Y��w<�0eT����@��D
�w��r��B�6I�V���T��ú~��74]�jR�����4A�@ �@ \���Eײ�Dni�����b$�
�SS
U�a���օ�ל=P�FL�����V���(*s�'��V����aS���J?J�قN�� �@ �@ �:d�5M����2�LZ5+Sփ�JÐ|��A����ª-k��f(>Dmѹ�xT�	0��F��٤@�`�r@��!�#�@ �=�<?�;����E���VA8��j&AQiX`T��2�#YP���Sd$������"��.ѐ�xd]
ԍ
G��(*��X&m% Lf�e�Q�Z0�P�li��@ �@�

��Z�U�$�}�ي����U���"�MCs:�%�Ԥ@��D
T��`��5���@�#�Xb�]�c��C����k��]
6�4A�@ ��.@�!��P�F�uP|:z�|'��|�b%�͂���)�eAP�Uն�Sb����ŢEM�i 7[b��eiEc3W�զ�
��%�j�D� �@ �@ �N�4��Dm��l�,‹G+��W��5:E��Ӎ�3uaa���\�\�
A��vX�Q
�@3�C�Ve{���K���@� �@ �@؆9��⨒h��й��k���$�1Kl�\1#��h�<�*���5	��o1�Ռ��L�@�"۽�2j ���–����Vf6�t@,o	���4A�@ �@ \�hO�bX>#�7IKX
�Ar\PUR���oU�CP.3^���YL�$�
�=eu5�4�#PS�uWA�
�[b4���Yeg M�@ �@ �0�Cp5|ׁVH�ң��z��v�!}|�;̐����B5�5lb�I�8 DU��AގF{�FFI�|P�(�I�@r���g-���v���ib��@ �]�1m����R�¹B���Jdd���O��_���/i
�_0�v�nd��PuX��X��yU�ާ��Ibq�<��lf�c��oVl��&�ﷶ7[����@ �p�A�m�j��Ĉ�(bX{iXg�42�1����aV`��ua�5ՅE⠚�E��24.��(��
Sf+c�k�곑&�0�G��h,Ai.	�]!���Nhݦ�?��9��X�T�l2��(�W0��v(K��X�0.�:Q�y�e�����ѻ�ѻp�	)�'�K�>�0�,'K��y�+d���]K�ݖH��9/����@ \�#�@�������:8^��0M��$�IM}S�$�I��R��_ޕe�"{jU��8�4�nͦԅ�\
Y�:LF4V����h3�M)�[,U�cf@�!w�Γ��� �,箔����r�8Q�%�.1{6�ӷ�R	��
���s���x�0�RQ�����*���d�ȹ�qY����R�_���ɤ|���7����ݲ���f���{���+���ra���z�=B��b�4�z�o�@ �@ \��L�0ԫ�3ɇ
*��4��7f�	�v!�b� �zr�[�߾��K��Ҽ�f�K��x��޷6���� �,�)�
�qB�8�'C,\0���X�R�7G��͑����"_\��a��y���[&J��������z�\���,E)77'�Ϯ������;�cn����p|�bo���9V���wpWz/�q"0r""0� )���@�U\��]{�zZy]�~.׳�}�ݺU��u��c�u=�m�J�Ra%�EJ$ŜI��	D����}�FOw�`&P�~�bg�O�������d�cY���4�HzF��)��!I!��6�
/7�@ �E�A��{�d��5ZD�+%i4E�B~L������E��#F[�/�(kmp
��,9>��ޮ��5�3Ǜ)+�0�4ʴ1���:����i7��H��!5����q@�	B�s��1;ӷ.��ˌ+�hm�gJ��6�(D�,R����)�giF�����If8�Ʋ��h�V((���E�f�16#�^\�!�3=�����(��h����3�D�l�dP
G�gf�PQmp��e�/E ����E �E	�)$�(�~^Ěƒ7����8�D�K?��
�u���LHKM;�Xr@�T��$ˑ�/�bt:�H%���%CD��B2�Q�=�,�����}K%�c�h��Yq��]�9?�N)�Y���9��A�pL`d��%��A�H�+�5�\F�%I&�2�2+���p��sNgIIq]U��W���H
���e�4�s��CCaQ`���!�@ ��}�fP����qi�h�^� �Œ���&3�Xц^��eʰdSe�/,~��sƛ|�R�=۱���Ѧ�J��S�hЖ�`IcB'/�6A��}�Z��l�ZMK�(GU��Ó!
Z��Mq���i�W}p�t�4�L?&�b�4�>ْ��r �N�^R�����E�&*
3N���`sy���;���cc�Ȅ :�(+��Utz�@ ��ڃ��DYX�����:�9an��X�	cE�¦�kA����
=+m�ݓ!<�.j�cR��,��,=Œ���J�B'�x~��&1?����`�)�8(IS�(<Т��J�g�%�ch�S���NdZ�
��8)��DY�ZC�-Il��<'�(3��v{m)Q���\��F�D���F��9�EQ6�XH!�@ ��~as�wf�"�V�N�9����)�l�1��IS�i�.���(Z��6�F��(u5Q��X��I` ��jI-��^~F�E&1�uŊ߱d��XI��FZ#�,ʂH)%�/��9�C">���>���Y�fՐ@j{I(��0p\I9�-�+(���t��f��r�3"�MM	шh�C?4C�<֗��8�5���	�@ �@ �桊�B�SZ�4ؑ�l�Zβ��R:�#���ѭ�bOLJ��bf�$��U����-b�¬��Vq��
%�S��H�m�E�"��T�`@�9�y����_�Ի7ynx��l�r�O
(�ў� K2�����Д Z��G�e��{���&*�b��J��,J�yY�Z���p8x��HK+��sڋ
�H�H�Ms�4�x���&�s�
?� C�@ �@ ���D�I�ؓK��*��Zq^V��7qV6�	����YŊ���H�0���`���YZ}�#��	$I�5��mn>��3�Lb��4��sZ�;�~aTD'�z)�f����e�z��B1b���
bY%2U"C���H�p����YI
2ƈ�(J�i���Y��r�Ц����а��p<Ͱ `�3���3���@ �@�3�붶��捤���6qA�tt���'ِ5,Q� �\�A&����e�����1��ɦ8As^��i´#	%9H-��G�E&���P�r���>bC=đS��.P��IR��m�3��-�EA1�Q����"����DA�YZ�&�iQy��cL��(K��
Q���JtiZ�U&����c�r�隧�~�A>�@ �@�5ȷ���;��[��Qq�t�J��=��I0��5�Gb�)В�3�X��$q�x���~a�b�+Y��o� �@�^-�Z_�y�^0��A���g�O�P�:(�x.#=M�Dũ)I�E36�Lh ��9��cX�R�ŪQ� $�%+�x��h�Q�-�I��Y���j�k����y�c9NF����b��͞L��S|T�@ �N�6�(m�'u�.:���� 5	۴t
�ug���ʚ����f��/l����WM��˧�p���ǁ�WO!��N�Lb�kS��L"�)B!nP�)��X>�0�s8i����4�P<���s�Mey8V�8��)����L1���I�,J3=��$ɂĪiƚ�CWLJ��9F�E�h�Q��r,�rΧ|�n�T�WC�@ �Xl�=�H���Ӊ���(}TXc���(��PI�{]�3�AE�!HڬAP�0��?$h3.Dt"�Gs
�	���)�	�99 �+z�!B�(�{��$1J��N!��LRlt����9{���>�L��������
��y�c(��F�u@�ʂD�����4
g%*F�cd���Ρ�޾~����� 
K�6;�2�/�,���@ ���R�\��
t�)�H�q�Ώ�"wXrY
�d&JH&Y�]��S���"f�0}<�T��%��8C$:�(?I��/z2X���!���������G�|M~��T;Ô8�/Q,�v@3b8&�D�qdX�ShZI�%P�H�bB$"NL
��)���|^>7��I�m6	�p�b�5[��u؝yR,&
2���Oi�����}y�
�e$��$$,�@ �@,�l�����~ŧ�3�%$_L�u��	������
�mZ� :~Z��TI|ʰx��*_X��`�*>M�E�$4穔��6b�!�p�2D�f�F����H`���l����P,+��b4;ó� �18�

���T���X!FEcC��O�*?0,��
:����Ͱ��P+A�am6V�;�dF�W/I�;mM�7B�3˔�a��À��@ b��fw�ls`}N�D�D�Jm�HZF��t��(*.���0�c��K%Jtr�0�l)���)E0?Ad��Y4� i�)eF��Y[�i��6��X�������HL�
Ң(�b��1���'�H�%�(R��ei��R�)����LNISS���Y:-�u;�]bh)&B,��2�t����Y9��Ez�Y�Ƞ9��@ �X�#w>A��z�GODhёi}�Y�HzXZ�5G�ìFF\�$��z����Jw����0�� (Y�0+;��o#���LbA7z��^�byD����,RY�4Ɲ�b1ar2�;H��s1��(��<TDz4I9?݄b�&��Q��l��R8"+y�9�$:�%J�S�y�g��+B
)�X	�)�@ ��Fky��X.3ć�KJjNct�ґA�Y\�i�0��5C�7%dA��h�AP�i��Na�\�A���i4[�v@��	B���G��y�.`��Ѭ���ENw���Kb$J�����UB��A*8ĨY�a5P�)Y��b�B�8�(߱���D��$c�s7m�e�cTF��eQ����"�K��AFO0�@ �5�\��M���JF�$<7��[TC�k��Z��
�,�}�
������X�H���E-�ҀY��Y�2�5��T��`�~���1щ��;��O01%�3�0���e�$��%�}���n;K�˖�s������`PL�Q�NIH/Ӝ�����96�М��@ b�"�IN\>x�B$'��S�'QI5]�"��:��ʆѷ��� �2&����g}�4]2E�f&7|*J��C
�M�آM����Ĩ��A�C*�,�b�$S�AZ%���Q��<DJ8"	�"7��K%�۶��D�E�=���l�fc�h���R($C}���<C1�ܗ�++WV墬��k�@ �@ ���bܘ}Ē���5�I�/�`G�m�?�؈�F[6�<^NH�8�(z!��Lz��l꿦�\�zS�j�	B��]��@�{��y;J�b,��,#�G3����e�Z&^g2I]�4H����uK
씔><>1��x�e(��*Qb�"x�s8�ks�
��(t@+�͒x����@ ���4��0:�*����>7�鈢r'��M�Dcq20:1��fp
K��(y�ݽ0�뿦�;D���U�M�R�U��")�H1�$r��ܖ���!&��,��ċf8�g%��8+lC;���ٙ�}H
�BA�)��r�,-�bT4*�8Y^�[�'3��|M����	�@ �@ '�j�� Eǔ��%J�D��7�5g�7�sNJ�t��i)��E�qЬ_،�5�Ȓ����<�����m�Mb~w��k\�?����XX�*)��uI�(QI�Z�h�eՒ�=-J�H+���x�Қ�v���$G�w�msȗ�.��Q������P�6�蹬H�GT��T��Z��@ �@ �G�.'�T�v�JLH�����U +�0�5�l�B��Zŕ�NJ�����LB��Θ��#@�W�G&1���/J˒�$�6T��T�@��`�_V��3���lx�i���c9��X%+<|��,s�$J���?�қj1�.&�D�b��d8��e��t�
E�ž�=��7�,_�}�V_����Yii6���"�ԑӜ��@ �@ �fj����h�Ƞx��l$Nϙ+�0$��e�0ڢ��5,y���d�`�
~a�)���y+��%DŽ�a�[��R<+I������������XTI�h����Ͳ�A��ITiI�(���ۗa&���`P�q,M�c�%i�z�Թz�w0������y3y��I�^T���l
Վ6A�@ ⛪�i�ZRz���̨{�bF����6dӇ���l�����D	Kɩ�K����FӳFR��c��X����� �nG��e�J���V
Q���9'���p8��(��M�}��6�S��+�$ˢb|$��%*�#��$�j�8�]iq���*,�h4,�Q4<N�!�����@ ��`q�m"�$�S�Iݘ<~V�L����F��6�A��E�T�I��/H��k��~�v*f
����
�{~hJ�EYV2|͘�sd
�Gk�,ǯ�����>Y%�e��d03Ͱ��G&�ͦEP�V�Kzd2$H���"���k��A�e�$HuI3��6糿��
�@ �@ n�=c���HX�ٯ)�;s�^��s�H4&�R�)ЂI�W�-{�S}O]��F�~j�RoQIO�!�}�n;��g|����_z_0�_���a&	]8u*0:��9�eZ�����E5�y�gHC
&C����<��}��&Ͱ�,�|�YY6�Mߣ��;�@ �X�S�BZx�&+�BdaD/��K���YX&��73�ѼbE/�/��@��ඨ��!n	��v�qCP��iW,�jll���OY	�����#�#�2CI�D�yˆ9����e���H�jjl*�O�w����ӒD��������I�Foi�����e�@ ⛣��
?���
=mG����$�kX��e� 6����f)l*�a3�S��zi1�o�ҝ�R�	B��MI+̋DI�hf��˼���ҝ%�J����q��))&*y�E��g�hj�0�}�i�&Q��X�@���@8&�</
"ϱ>_�;�E<%)+# -<P�Kv��@ �@ܿ ����s6Ù�܈'fT}j�>����e��Mxf� �k��;=
�%J3�@wFžs��&3F�F,��1<ÄқoI�̷8�
��74624��H,766>1O�,a�����?I�ND1˱L0&]�
�J�y�aDAp9]�EE^��JH/����#�@ ��%�T�
�Z4뇉�%���ד>H�eʰ���$��+��^�⩷Q�4�e j�	B,����L����$b�>&4)#I�!u˲W���ބp��iA"y⥙�j��U
V}H!�8�e�S͇dY�)F�G-)-MOO7pOIF�
�5�@ �@P	��@f���E'd_�Cf�f�O�
��C6�<)�iA�8m���r
F	w誥�22A�y-��&#Oq3�d�6gg�U/Y��5��o�5�"%C���!5$z��L�,SZV����t��������;s�BT�Š#�^RZ�����|,�|0�� �@�@ ⛫�Y����7�W�ek2HazH� f�~�$:hCh��k*i��x����`�2A�[X&d}��;-��OC��3ò���7:;�C�)y��/������>1�q���>����<ϱ<˲7ovw�w���,{5Ks��l"����J���H!�@ ��*h�����7ֱb�ZZ��g.-H�I!�4d�GJ��wd����	E�g�4�l3CR�S�t]� \��r���aY���g�T����
e2<�v�Z�j
#�g�bYĊ������a�[~f��Ѭ�K~VHSH s�0���@ B¥�m�3m`�M��V�$��k�/�TO$(e�G6�-�ذw�rB&q���F���/[�#�|�D½=��p��;�:e��S��A�C�q����61�F#RCQ�,W���=)Ƣ�@�C�"�W��J1��@ �S�r��(�� �i@����@ 77����Mk^=�X$gU$/)����$/9����Ϙ�B�,�F��1�w�y�����!�*qs2'�Q+�C)���{D�$��y4?� A�\�E�q>�Hg���p�.� �mد�R�@����#�7nܘ=�L����Ly��JC++�
���_�2b,�F3��ʪr��^��c��:C��P�d*(����B3�ٜW�@ �����1<<�z���m6[��###׮]��̄�N���X�ȑ#mmm[�l�|iii�.���TOOs||�@999K�,�x<���(�o޼&&&�q�\P�����W�~����z�v`�`z����2x��
��bP��$	:���+**"\���zhM�^���%%%0���

uwwC�(��33�(`�@ ��,#�`q��$�@���]�h=�P��Ȝz$�[���TbE��
d�{�q��{@&q���ٌw:�IC�x�O����z{Ooñ4�F+�h,5	$KJ8"�Q��t0:p��d1��kW�.�,s�|F:˰�1�q�����4�ϗY�����-�➿Y.]�t�ܹ���g�}���"QIQ�;�駟���effjL��rpp�ƍ555� ̫���ĵkך������r�ݫV�z�G���5�����gΜ��� �C�%���w�ޝdr�wvv�={����SSS�:##c�֭>�����^����G�mii �V��ڵk�����i��U���Ν;�������W_}�C:bYZ����KJJ��z#
�=�"�0ܴ�P8*Ģ��L�
q'�b
V�a�E�nw�l6��n7,G�X-�Zs1p@
k3o%nN
&U��$c���H��F3�SjD��R�Լ��D���"�y�Љ���m�	B��e+>Ԏ��4�8����뛜��ly�/L�^\H� y��4�qJ�j��}�7����$S�9�p��8��%�T@���
᭠�3'����J��	�@ w�d	===���+W����w�\�%���N�<��޾dɒ��1����G�����'N�?^ż����Lh�@n޼�����#�뛑��Ç_�x1--
J�|>x���\�~���������A���n��ԩS�,�'��|��U�Chd�ڵDe�…���]VV8{�,�pFFFuu5�1�k��U��ytt��?h� ۱cǠ/Hii)(f�fGG���4x7M�w홍F��P0


���]:F���@8	L�h� ���l�r�`�q�\N��e�e�gx3��99�L�
�P#��5����3ޚm
�*5�@&q��J6s@�e��G#�!�5r</�j2��..I&ɲ�Oyn��Y�V�Jj0����$u�4�(ӽ�H�����RX�c����%%Jj���@ `��m}oo��ӧ���7m�d�����СCMMM����$	�P(C�zh�n�
��
g�N'4.1������`7��Dz�d$!4<��2��T�rss�m۶z����Lhvxx�����w�۰aCVVtz�ԩ�G�������555PNLL;v죏>�����l�2��#
��UUU�#��z�xww���~��'�8p������?	�nݺk׮��<(��յ���ǏCS���/�@���?����(�9r���e˖���+���dn����|��7�x���h�ƍ0Ex�=�U(���������FGF�SA�9F`�����Hgd��wE3b�&��Q��yIbc�C3���S��SR������̈́�p��eadg�	��^ѭ�-[�F񪙱1b���?�U�E>� ĭ/$m�FI�W�T"2H��������؝N�fc���ˢ��Ќ,����if�I�3XXb�>�YfwLQ�`$��c9��^��XJ��K�A�@,&�Ź����v/_�<##�P�81	����(�H$255Eb뀦
o������r�˥1J�h����������ᑑ�k�ʕ��X,666���EQLOO��������k=B#�Slbb���Ά��W��:A�W^y�\�d�	�w:��Ν�SAH����ƍA*m������'�����q�ڵk���`DУ6iii�ԩS������0v�4����ѽ{��ر���J����/]���ظy�fMhD?̡�!(Gv�ܹl�2M����P(�w�w�>����!�;(���\��ֆk��S��Ф��N�s�rL�Q,�4��!��cT�3Ie�.ɹ���7o�45��򲲇ܚ_��deFܩ����%�=�]a[��S��[z������!����7#��Ms���Ӕ���sd�(�sG����WZg$K�h,��u����a�������H�(A����&Q�w��h�U��T[B7����P�'��lC"3(yQA��t�!��M�@ ��	��ͅw\CC�ٳgw�ڥ���O>���\�rekk�~=9~���K��f��v�7n����b�@�7��B�?�|[[[SSS0\�z54�'''Ϝ9��_tuu�b1h�f�UTT<��<�q�"�}FGGO�>}��	(�D����ٲe�1���*JFFFOO�C�$P#�P�Ƌ��%�E)�k2�*�3�������E�4W�kll�|�6mZ�d�V�-,,ܺu��~�3�6lТo$����������ǡ��r%�����g���h_o�s�/]k�N�z��9�^/ű�l�T�O��Y����
q'�Ir�)�#�g���uS�����@�0jn����\�vݦ6���~�}TQ�����|&�	�#O � '&'�c(�1&���Î�V��.x���
CRߙ��ܲ(���HL�2'N�I*�5�͕(����L�di:t��JF�'��>�3f?��_�[�
��bQ�L���322.^�x�ȑ�˗jg;::>��S8�m�6�XCOO�e֮][RR���622r���?�^7?�я4�x}�w�}W�׻q����Z�Ku�С_��Pf���UUUP�����ٳ����g͚5���
�<y�ҥK�.޺u+4���C_��믿���5$�3�r�����+tt���S�N���/]��d(�=��˗�(�jժ[��aꆆ�V�XA�~?��1�l�����qX�L����ڇ6���.�����x��:s�t[{{G`�;��]�����7V�
���d!�XY�OM�a��}s����rc�F��Oion^�f��=���W���I> �B����
;���
O����*�cm޼��p��l43Dcs�<5�5�hk�)��X�cdyzp%�"���$	1�a5��$�����Ғ�L�aDI�Gc16����p�fٌIf�YOc�]ƨ��!�����۶m�x<|�~���_	��
o���(�/���9�[ee�~�B$��>4�e˖�������/���[QQ��d�P-���.����ڵk�K8noo���ɟ�ܹ��9��A��^s.��<ϯ^�����rss)�����|�С�~�IE�i��������nTqq19�{��O>��_��_���AB�YKKK{���A�O������I�T�.J�3�@�5s:�>��$�O��-//������w����NYY4
������?�&�	��>E4;��W'N�h�:Z�s:�6��XI�D�-
�8�%2K�'w�8Þ����o;�Ess��?�����F��C:䞚�܆��d��=Ȗ4WE�/K�2`�V&�d$a�=�N���d_Zi}�.J���V��$Q�g� Cӣ$i��?��a�/P"l�E�g�v��b��I�M�?���������������Vc&�@f>H�%�70�@,�ݰ,�K����D�9x��-[�/_.�"��z��'�-[v��e�٤ULOO���5�555_~����Hyy���q;w�\�~}ff&9899y��%(��3��޽{v��q�xҘ⮵bŊ={��R�b֮]�r��#G�ܸq�J�	
�B}��g�}|饗��04��N�g�H$�3	tM\�<��@���ũS�`�o����&&sf��e)3�� ���D-����ر���+++322������������>L��;��\��8|�Pg��rM�
��4+˨�!�>�y~Un�x$�qs��|�	xYd�|_��'V�L�lz_,�6��_�2A_�T&ʯjw�&h����I��4���a��2L4���Y��V�$jڲH1���a��FF�h�eT� � H�p8*�b,��˿���X�3�N��INN`i�������qG�@ ���)((عs�~�������zdd����|�<��ᰌ�*����իW'&&HS]]]�R���ԯ�Ђ�uEͤ������W�64k`^�0���Ӈ�!���h'E7�������o��VUU�_��_�t]�j��o߾w�yf���ψ�!qΜ9s����|��W���3�W6L�����?�|���?�яH�;==>�<����`2�筇	!ѩ�J9r���fgg?���O<�q�[�?�#�Ĩ���}����8�%�}�S���2!�/�L%.������S�[�|��G�����HQ���K-�e�^���bzј�d(�i�]2A��Q��.�>maI�"ɦ�4�>1j���@8�d����=�J�DJ�=d�9Q�`�!�$�e5��[�322`C���W7��������Iץ��>	=�@,BM���T_���fr���~qq1hb�y ��nw]]]cc��˗�9��������04�򃃃��ɓ''''���Y�	%dTX6--��:
���5�[��`/�9�LIl �v߾}��������^�~�رc���/��ҦM������999p�W��Ձ֭[���5/���߿�ꫝ;w����Z�f�K����ƢѨ�b8��EO�%"�|>ߓO>���G"���U��ĩ
��w������S��}�<���b� ��}��R���Ȋ�����ph���VTT,�u�:����N"X��d���g�FD��ôd��-�ɦ���Ԗ4�=��PO@���u��֠Y�I6�+z�0�D�����$I`�ݳ��V\Ô�a�R`�%A� O�q�dQ�h��‹/<���(s�b{��<�ڎ���~��鵌d�L�?ز߅G���vTCCCSSS6�
��EEE���}lSh�<t����_}��$?�:;;�ӟvtt����|G�,@ �k��7�SO=����[o�b���ڧ�~ZO�k?��#s���#G�8����v5��(�o��<M��k�bvv6���חb<�Do����500�o߾����X���^i��������������\�?rx<�
^ ���X�L� �#�'N�صk�h e�A��	m�����\}��H$r���f�"d5��y�q��UE��{���0��彷߾8�w�*���O��!�{��!���B�;��)�E0����ŭ���
�,
���4P
D�"�AA&q�A�䑖�e�h4�?8���-�$QM)9��0@*��J�hA�)UV�02��p�(��v�ҥU���X8±�D�Vd������������e8}�������0	dZ@T����;w����4b1�cв:;;������o��C����s��Ȩ�����s����nTTT`Rg�b��n///߾}��o�
������i�>���,lٲ��	#>_s�@a��YZZ
UΜ9�hQjV2X���ܑ���w�=q���ի_}�Uh�����̄Ǚ�r���'�axxT����_� ��������/_޻w����|>��$�X��…�O��y���Ҥ���=v���I���
��޽d���~A(���
���M��)�����~V�-��}=
��E�"��W`@-�#��ч��@�`)�w��tjd����d�p�쿦��
aC900��ܴe�bDZH�~B$h�Q+b��mU�ތ���B,:6�e�fw���aԧ�f8�����M�s2S��֖O�m��7߄?l�A?Y�d	l�A��->��.]joo���_���(����?����:�&���)6zhw��
��r899��_�� "x��-���ݻ�]�����y�f}���7���D"===}}}��J��?��.(�Xzz��
N�>}��)����s�A��HWW�o�M���k$�Ђ7p��իW>��W_UUU=������в���y��񔖖�Yxq|��WII	y�����˗?��#�������Ǐ8p�h۶m�0��P����7��
�v��'�|V����G���I޳gL45::�w����B���{0pv͚5�������a	�B/p-n޼	C8z���w�ڕܤ�x��>�����
+�z�]H!�f`e*��W}.� I#���G`�M��qO��
�ﲄ��	B,��&����
�8X71�3@N)ڬ,����t���4ˑ
���z�Rk&�6�q�(ˢ0��$���Cmom���'���c�x���,�D�V���֖���47�X~�<���
mF��7�|�СCK�.�?l�AW!Q$`x���MMMmmmZ�`�1��氡	a�g��	uI�Y&����)(f�D%�v�R#q���I�N�z�bJ��	4bd1�*(�gh� !�!$��HH~�ח��g�v�0�dM�kHt�`�X�P�H -|���{�e*„LLL�r���T�E>�ب ��0M�N��t�A�)$I�3�Yh#"͒�P�8>>:4@`�T��""*�֬x�.**����+x�����p���GJ���W�666��?�CEE�]]]�.������-�*w$���/�����/^����O���ٴi|�2 ��AN���$k���_�����;vʴ����?տ��/�O��Osss_z�%�������͠�dgg�@�a���]��y�xl�����
���͎�)�	���OO�:�x��5��w�GK]]�������u����9s��$��y����]�_)�����f~����Kaa!,;�*�Ν;_|�E�!bq�Ç>v�j����D�5%��)�:���Xw{���/�������M���*N2A�{�`�a�MU�h�!M8A����Β$�7M� A���hRO�DQ��ܵ��V�Y
�22<#�C��mc�~%��C���Cs,C~�3�`P�-�Rw�v�'U���;�NMM
(*�����@�]8l�5�t�#G�<��c���.\U�x:���t��
P@g�΂�c0뀮`;>00��[UUݕ��O�qI4��G���{z��D�i�/_�l�2-F�� ���EE��'. ii�C=�w��m%�åK��~�i�LLL�~���688HB����b�
���@ ��CI�������$UJ�x$CsOO��PTD�6l��%M�P�/�4(�A_Ђs���䇙�A�={�����������0-���0���@��
j����	����L�������A_�>Aw ��8�<p�a��+�7n\�d�����

��[�~=(lpʃ�
n۶
�_A�ݻw�o�[��H6�?����l� L�b��瀧nc���w#�qf�"Xd`���E�]YY	���������\���n�:xp��Z������ګ'�`���w�{�ܹ��Vj�x�XrI�ꊊ
8�ᑁS�@A���X��$63�F�M�ga���C1��{�ޕ+WZZZ@����<k׮%?_CaX��=
��p�u:���\�r%| ���G�?��v`�`q&��`� �M��a,���^����D�X'��C:�^�:K�.��&�i����c'�wf��r���!�֘b�>��Z$Ʒ���:�}۶�1��?F ��Kk�>b����[	����D���Foo;Q�n�R-�ȖT	
-O�;��Ԗe���f�
eK�z�z��^�f��V��pvv��A�,�(�6%htNv�(KLsAs�vây��Ph6�B��_~6Ǡ����2����4P�>[�h4z��E����N�666�>}Tz8*�
�رcuuu�?�<l�I#����㏏9�.��耊�߻w/	��Yh
�¶���p$$�'N<��S�̘�����<h}��R[�n�^����_}��ɓ'AK-Nc��A�#�
J�EB"V���n7��D�]t�W���oܸ@�NABЈ�����ݻw��Q__�ԅ*P&
�|���ւ����_��pĆ�P��<��0FB��$�,}������hAp�$N>~�8hG/��B�X�p9�$��}�fI�Dy�$L�H��]PF
3
�+��B� R��������A&�3�j*(���~
N��I�
#�����OšC���;��!P>�E!!�azq'����(rn3�t���^{��ri�(|��UUU��G"X��Q���7x�5>�X%�7��갲�N�CO7<J�lFF�C�;x^�x�	�8�^(��C�����e�N�����cO˕}��,�ZZTT
;)8]�0Яfkjj@�e˖�]à
���rZZ�¸4K+�
‚F�D�T���PƊ�
��C5�Ŗ���q�F �00h.IQ���}�P0x�����D}eN/K��Z@|���3���rN������^g���m���V�|^22A�{���$�X�P�����dYF�)?XK�nh�G�R��D��t�X�|Ii)��\vg^nl%a��8vI%����)���PT�4SJ�����e< �k�f�t�kll��ͅ
:���\�|PR|��+W���j@NN��Ck'N�m�֫V�*//5����…gϞ-..~��'�F��ի��C;0Wp4x�@�P���㥥��%G~9���热?��I����3g����f#��wh���aӦM����F�Qh>�����300p��
Ў�"��b@���ڵk���A���ht���BP��债 <HjՆ
@߃y�!wvv9r�x?����@߀7%�����ԩS��3�y�~m�d�bWu��% T�ft-8��E��������`�C��={�@E5Hu)���$�50���h��ݻw��������B.(������\H����Ν#� �a�y���jȈ`>a��|�a��֭[��'�|Ag-.�9f-qO�av��E<rA�Y��K�NrWk�d����,vH�UA�\b��_sss�e���P�2�=���$�}-#Cy/�
=�e���#�V��G}�v�)yGƮ�̪�.�V���p������z�<&�G|C0`�={O�DKS���q�[S�	����2�0/�'��@&q�x"=I���@]U�fO� ��*T�� Q�)�7��T9"���j��
��B�˹���z�e�j3}>1�.��(B)�j�DE5�|a�9�
��p�'v���þ߲}B=��\��e`xx���߽{7�!.]�����yꩧV�^���E8����7�|��>[�reEE���|m���+��Î�g�pxٲegΜ9q��ɓ'��O��p
v��uA	�y뭷���ASZ�b�9�=�]�|yMM�ٳg���o�+W��p�.]
m��������C��֭[A:�<H^x��דL��A򆆆�Ǐ���ߨA$ؘ�j��o�����%�����Iؼy�޽{AT��ۿ�۩S�`�JJJ(��(��I$�4LZcc�o����Vx�C���Y����g�}v۶m�GlD����/^��v�Zh�p)IP��_~	��ڵ�P`In*A`�������K�́�

�e�|X�����#�-2�?��9�裏'>���o_Ȉ`�0?�<�����)��/��Zuuup5����]F�b����$�P2�.IZ���X���$x<��7oބ�Z�.j���x+�?�W �]391q����`sY.N⛃C��ٻ\�s�ϯX����"~�O��---
����e�V�m�S�������ٮ^�~�Y�LLz{z���#�i�2y��V��|M���hw8@;U�*xIX�M����X^Ř(�#��x ����?��j&2U�H@!�w�
�z������ϟoll��F���v��;{aZ����P(TVV�t�R��>99955�Rf�˖-���noo�����MMMPqժU��C(&�bII��ի�ȵk�H���۰a̶��P�Ny�����bllL+i����Kb�%��ڼ^/	�������I�7���@J644�]�v������xW� !*�kMɁ�+W�$�"�D����x͚5$���T���k�qH���j�K�I�l����`������ -T߾};����A�2���&Q�4�K�ihh�X�@0h��E�,	��Q���E�"�]}>�
ĩp�\0{���Ц��Or�S�{x衇`�%6<���	�@�}�j�e
�q�B�"�mo���C{��� �+�,ӛ�9:��Қd�w��8���N��?�{�k
��j�hʬjvv^���MM��)ʊ)�L@ͪQ%���(�.Sb$�ڧ�Ŋ��(���])�Vnii���̃"-K�h4�������N��$�o �n��
�Æ�4��`kk�o~�bY�嫪���SSS7o�$�������L��PjL������$j����q��GGGIX8��x����^�,�����M���ß~��ɓ'���NgCCt�f͚;v8�cǎ]�vmӦM�#H~�ʕ͛7����� ��o�uSSSoo/I�_H����CI��-������;�x^���iL @��Z�
�_8%����[�D6''';;��l@�D��[R�p��=���C*���p�����?�����a\�;�\zB����k��9)((8���L //�X�$�@ܯ�9�۾};a�q6����1� (8Q_���qϞh��,��oqW�ͼ����B�����t�ɓ'��/�]�	� "�ƨ�~�1�
�aDQ�C���'J�beA{ Y1L�f}ʈ)�(Kiii�7>P\�D��c�,E#1A��@C���K��{��rCy!*�#��L�”��d��bg��	�0j�wZ��9<<�e�\�3�$A��H�^�W_>�@�p8�����ݭ�@ڈ�<I�N|ͺ���_�5"�A; 1?�fb�ji�4&�ĝ��-++[�dIss����X__�F�pX��탃��ڵk��5k����$��yB'��5�A�!d�f��JC$r��ԩS�~5f�Dq"������-���>���4� 	�f������1\�+W���p�Ô>��#���$ �
��r�\#�R&T7O ��z�,�8�[��F�G�]��v98e{�XY���W6��MT7w���3�M��oń�FR�Dk�P6J�(hAI�bW>�گ�X�`��g�#Dfƞ���3��78�T����FllS���e����^1Aw�� Ad��a�I%MťeӢi��F�#�`h62��@�eh�"��eB��,�r��u�ց꫄�E�L�����(,�$���hLp�NERC��b$$��ZK�k�M��z��A�ZNN��'O�<z�hQQ�9)���Fr1���q�P�*V�^����_���
�d������b�ΝP^c.��bL,�V'��s���}��


555���>�BƑ�����p�\�ϟ'y�	M��x��������!�����Ι3hN�R#}�^���:}�����H�H$r��!�� ��DCN~��#�S���s�=�g����nJu[۾}��
Z[[������:;;Ϟ=������'��2Z�%|U�)tF ���FW�p8�[�ij�q
9B�(ʭ*�1��R�H�,�;FSP%*�~J�P�]6��[���ě�eI�c��l��dD��@ٸΩs�S5D+Uz����4��J�HJ	~)
�!藦L�&��2A.�h%6Nj�5*L�bP�&d�lDjq��G�d�C5E�D6eS���*Y&VPk�)ʤ�4%���Sq���}�25�t�l{k�>���#��2ADj�4G@�+��-�Q��Y��O9�jP�D3��H
%m�b&�rt,*y�[ښ��O�0���v�*�-I� �8�vZ5bXZ�|�v�Q*
yo�Y	���O\�re������uuu��0�I�k.���f���4??_{?��2Z�Β�����Id}�t�Ċ�;�-0"ڵkע����Ў;H6��������ׯ����l����-[����$GՑ#G��ʕ+y�׸���I����S\\���cf=�d��Ǵ_�~��s�(Q��/rE�e����nv���$"Ap����'�455�X�œzaHb͗���@ �(�C���~����SҢO��\�}gNImf6|���?��G��N�)��rO�Ufd�k`��PO(�o��(��!A�
�=���J=3q�f��2l.BS��
����D�B�і�E�����G�+���9�˔|d��)��� ���ðE��G�J*�}>e�H��Ý�CC�WG�FTs��t	9+RR�L/����]R���1Y��������h,��&Dz,���BN���f���!�#��+������$�c��@$x-0���M�Y�k|�=�2
�q�q A����2Ӯ���B!��<��b���,�#�	B�*��W,��?���8�E�$�˕���v;''�i%�����L?��:$l�(��,�X�����n��Y�鞢‚X�J4TDA�DV���"�h4�9�̙�]#��i�n�3�q7n�ַ��o߾���'�>��={�^/�l@	okk�|�2�l�bXƵe�(|���˵cǎ��R�7�������������|QVV�|��?��O_~�傂�-544���100�s�N³�z��+W��֞={����n��[���%�g��===�ϟ�q�����N#�@�S�N�߿���=��#Z�0h��/���0��|�
6_�C_��M����2�arr�d�F���	7I� bff&��������HEY�	W�����իp��<�'��I�:�ԯQ��|G��������URRB��C�h%�@ �4����'G�+.:*(:Mo��/v�z��¢0����k�4{YJ�g+�?\R�`9�B��Xh�}|�_Ξ��m�J�P��1+6�3,�G���?������褠�HF^F����?��[�]0爘K�:Ƈ���βUδoW�|�rEY��?���m�]o�����d���\hs��f�+J�3�����l=��qx��A��nۺ�"Fݱd;]���W7!�;���ym��jo�Y��?�ٴ�����P%�|vI���W�io�78�ݲx�� M�����H��+V����k��� �X��!zܐ�*U�eW�\90�?48�F�E]�%ź�����/�mv8�������Ts�������)y�����6o��������p���WiI���5Ca��
D$����|��o>|�d��D"~���������u��i8�Gc��Y�b�޽{<��G;v�����F���n޼���Ooڴ������pʴ��TUU�����������������	��03pYc�� ���e7l�p��Yh���/,,��X����#/t�y�f^��dɒW^y�'?�ɯ��ӧOWWWCG��� ���ڶm�֭[I�k���,T!Q{�.fP���#$����?>>�!lv/]����?22b��
�����}%�
�y��������*//x���=�F�&�7�(WS���d+--]�|9��DbH��6pJO��WÝC$���"y�`��z�-�K�a����p�C �o�Mfi�Do��]����T��ccn!��6�}���t6����b�b"�MnP����toQ�wSA�o�/���Ǻ�����M;��W<Mg9���Z���ҥ{�З#=�Y�e%hA�<�>E�~����U;�+-�{2�s�έ��u����Q;E'�VYZ���͏m�-��K�w��t�ւ��G�����Lq��X�5���N���_�喀߮�1f��mPH�Z���O�k�7��*��ӟ�I��%�b��\���~d�˶�mk�ڀL� �HYT�j6��_U�^RZZS]���226���Iu
�X��DŘ0�3lQqIqa�d�2��	Y�^]��[�����>8���Ih3/~Q2X�h�Y�Y�
ǝ���$����}o���_|���˗A�nnn�T����K��ڵ>h�y�OOO7G!�|�ɕ+WB;W�^�r�J(�Ƌ�������k,L^^����<x��ɓMMM.\�S999=��c�=FH��t��c��A�$�O>�������M�6y<���>����F���UWWg��ݶm���g��(>��s�C?��e�H� r��v;�5�Ab	��,�*�l�����;�?~�f��M������*B/�M3�S�r��c]"&.�믿�o�>\h�%�V��0^��p3466�;wZ��3W���� 9�k�k�	��YA�&#����|�[�
��0	0-�Ά
�m��&�V����b�J�^0�0H�H���G�T�ٙU��W+~q���햵:'�{N�w1JlJ�НV������cX;�`������zj��s$$�#0���K1A�):�n/�d<�_V��P����=�}�nKh�.3q:�����O�;�D��T���Vn�v)��c��]o�d�
^�.�
v�b��.�n���(���fp����ֱ���=ޗ��.rg@[�f����M�����f.f���v�F�������2]���xiuYz&�&���h��;����n�JN7yi�oU��W�F����zn��W-�a��2T�3m��e��������Ǎg~�r��`4+J"�ЏV<^Vu���rj(8�04K3�H�;���2�3~'��3��.?}�bRfqT��l�-���/Y����<�����tRq�����M|]��%�ISN��
գ�t�鿶����.MךQ�������$�dIXs�<�;B������~���u��A��w@/4(�(�c����I:	zz��WY���?3�&H<f�σvz��uP�/]���v�5wn��ZѮcј(	e�?|����Y
j��K
@�
�N�<������~��t	ш�f�����;��o��b�*��I�-���e�k�_�à6�!x�NNN����ځ��Z$����PVV�e�1J��njj*�xEedd��]�����	���x���4R����Õ-**2�Pkddj��gI�	�Fh���駎dj�B�8X�Z��>C	��\.�7��AH�@k��$����)(��K=;;:�#����,|%&H���0�>1H](	���*`VA6�!ya�
P$�1*��F{��B�왛�i���`��:o``�5|���x�Q�`��Np�a�p/�w�@,N�,s�엇����w�|R��G.I��{Kk��nC3��摁���DY�����#P3��DY��]�V����j7o;;�Nk�?4��hF�-�rϿ�[�w<\����
��W���`W0{�r�_�m/N�E�Tߍ=_�C�֔�\4�*w��l�|#��7������Ѩ=>A;'KA�����K�+��'��B������;���Z�if{f���_Z��g٩X���t��+c��,���{�ߍ{�,�bieG��O���z,jb������u���ȁ�����~A�Ԧ�M^�S%K�6Ǒ��w�X�u*���'g��w=�s�ƣ�/�[�)_�1L���}��G�`�O2�A�G3�n��k��I��v�;_~@�����]��<�Ė�2�^���?�x�GP]Hy��5[�ˆ�?{�$�u�	����|W�wcz�`�g`	�t�(�(�ɬ..b��̿���P���ظ����bWҚ�ծv��K��HP�@ h�3���=�M�.���]���,o�������Q]����e:߷�=k=K�̵�����M��`�c�uȊ4H�v���g�$��e����P�L�]5��=�ҫ���.U(�L�S���9
�ʪ�.�bk�����i�!��h􏩨�~���Du��jV�������,(N5rwS�幦���O�ڵ�Z�n��J4@j�hYlȷ�^�P%h]jQu��k�<�ٕ}��?9��OPM� �K|lt��ܙ�lmnA�8��eݾ�T�ѻ��JXS������ȟ��7s���ۿ51>�M�pv��V�?��^ZY1�˞j6�fȘ����	�}����Ԕ������;�՘oQIZQk����ن��HݬX֯�z�I����FC�P�ٲܼ�Mꗴ�?99�b�*�)wh�@��#�p壣�###�kv�U[����D���܃�j-o���P�8�nQ'�Z�[,��Z������]>G�&��`�#�m�tk���?^UU���!�?
p���J�b&�-i�40�xnx⵩�2���y��Oז^�9U�W���Qr�a�����Hj��[l�^���-=`?~�_�����Zk����?�\�[�-�QS�-*i����|������c#��=c���ӗ����G+�uSq1M�Kq7[�U���&�"����kL�k'�<;1�H�ռ��\�?��ǩ�&�^;ma;���х��SC#�_�_?�ԍ���F�n��~��qc�����q?�&�"WVus;u��dBs\H;�h��_;y&���{w��?����gf"��CïL���Z�Y*��C�vuS��Z7gr�7�\�UU)"��ht(�(�dJ
�eƂ^fA����x���+L!
�TL�R��P<�������!�%|�{�~��f(�t��勗t��I(��� �{���7K�vv+���ۮn3����/}�5��?��?|�w%jW������_�|��L��p{hE���/��/9��YY�f�~�7�]U��{�#6���ڮ�X�K֧Z��޿
k��ޚ�T���r��)�pk[�����9jvdj�fao[t��?:b ��y�ƹ0��>�&7�R���u�0g���zo��kK�)O��]�:���p���.{���MQ�[~��ڒ[����X<uj�����x��],�����Z�btx���Dz;��Uw�)R��c��cz�T|ou��E"�����%���o.?.�vTr&>:������ypLЋ�\��Y|��'�қnC�[U��'[\diU�4���駜�|��.ܻ���{��$�3Ss��C����ΐ��EaO��h*�C�ɾC��ՇkpЂ�_��bI`(����p$A�Hyj:��|V���q�zM��^~�J,.�J&�g�����3<��`0�����c+�um�Z����૟��o��o��;����o����#�4��cW�~ZUԮ>���H���L.WT�~§�F��LƵ@�T|we����n|k���/Ϝ;?4lP.�;�B�"緶VMg�Ԑ���D�ߋP�0�J�c���sv�Ŕ�
���)�5���l]�����Ԇ��I�F�J��QG!B����V����j�9��IXj2Y�9"��칉��w�~z�K�)A���`�h����3#Sg��E�u������z����c_�:���Pi����^��vXXO�fK��TIP_���]&��@�$AЅ�^6����!�aC񡧞���姜�֦��K����������&o�r��<�^qf��������Go�mr��E��B��t�h=&�Y�!�#�g�_�RQ�R�&	5��ĉ��qJ�J!���s�'��7�w��qR��ȯ��8a7�8�3DyVM��Q"T��.�=1�N���]�}+�h����ӎ��3]�߯�w��^S\k��E*����.�S������"��/=��ʓ�ie�K3g^�OJ�~������՗���W��K_��W��7{{e~>�,p��'��0��u�H����7�?p�s5}|��쟴��5u�8�$��K�/ݼ�q��fwF�{9ŧ�?+
��[�fg�2�;�7���Y)�K��EaU��T��\.��g��fҤ�O}����G�O�J�|��M;�� ����ijÓ1U��n��i�r�)&1���ܙ�%��3��·����ٶK���F�*���4:��J�j��Z�Y6yn�z�(��L���v\���H��~B����:G:��–�5��� ���v����5.ćC��n_�	�ܘ��'��J�v�e�`�=���kώN}�\��x�D��FF��%B��TeRD�4I��D[[���>)����l!�S�QJg�ht�~��f�����9t���*+q��1��6Y�x��s?�y�B�?�N��#�2*e����%�˪���8CŬ��a
��럺��/~q��	�ȏn�}�����d��붭fw�3<�p��c�s,.
ҹ��,|m����1����H�|��sw67��\m��Û+�l�B�P�Ff��N3'^y��J�2N/���%LA�dL���%ɹWV/��$3������JV���Lrk$?GT�����b�o�։$K������OO�Ԝ�͋��f6m�v����F��w2��\�= �0{����\˥dR����q�ք(:�~�Ĺ�3��Z�/\-�֞�jH
hΤ�c�����<�ˍ���{HVB�R}����������3Mm��@w�>hֳM��~�˲7�T\�q�Y�� ��C�KEw�_��*��wwxd���s�o�&n9>�{���+G����Z�Ppgzڙ��UV�D�=�ӗ���g�^={���(���Ç���T�j��)���iF%Y
(�4h�yL������h�.�l���L�V���%�$�sS��v�b>Ws���d��=��S&�����+�@�:���;�i]/֞��-Ӑ�T#TflFվ:q�ʼnYw�חe��]�0�����r)11V�t:6��'/���}\�W
Bә@��O_<�K�q��Y�_�gI���Ϊ�Za��k�n��X�N_�7�?x\̛�М	����e�Nz���FLR�E��$&�k�|"�:tDH�J������G[kY�6��a:�ӕy��+���Ԝ}<)���[��n4��NS�4e�i���lde��$A�5��N�+�?5��;�P�F�����o����%˕���a���WWW3��;y�Nd�z�*F�Zlrrrfj&�H�b���~�S'�Ȳ�
ّw�k7��$UU��`�d�bP�q�Ď0�<qr.6Rԭb~>����n�����&����s�����~��B�A�w�V���_��kQRт��g�N}f��۵�����y����;�1U��#�%�(��j"�8:���3'������}��7�ib���$�peaB�>;42��օ��@��Gk�mk'G��3�~��Z}���n�+�jVcm�&�^��ݏ����i����F���,>^)de"���'��N[G�%v�ݬ�e��L4f��l�ٝ�+� <�����C��c�WV�8��ɉ�����{?��u�P�ы�y�Y����g�_YX(f���]�w��5Y	�B�|$A�c;�q�{@�kH]�EQ���O�:���&;�	�����t:���j�薔�'�WMQ�F/�++�?|�;�|r�eg&�r��X��
H��c�Y�OAEef���E���	-���Ԑ�N��S?X���;�x~�ڙH���T"	���O���p��|i9_��*�\�Á�t8��Ȥ�"	��K�Ճ�si���I��žq�a��IF.'Ƭ��nM�
o-�oya���.�?X�^���ړ�OZp8�����3'��|�s2�|f�T��U���Rk)���X��G�+�/�F�Z�d4�g�9M,e���;�<76em�Ĥ����ң�����M��?_{�/o�D���28ׂ���!-���C��ÉgҾSe��K�eS�ɲ�ov괵���c�͜{ce-��:�݂"��HR �>An��pI�B}\bw��f���Q^�-�Ө�4�'�W�^}��
!$w���6��%I��frk�4M���2B�K�K�'Ō"����͏o����}��G֭�pH�X��w��FLJu��(���ն�T'��ύL]�+j�4>�X���7�\_5�����7�=���3e�p���Z*��DZc����ɓ���9��륻��?���=��E%w
yF��LJ�NGb�y���I/%�o���|������?����:I��C
b#I�^fk��{���8�&��/���_$g�K���>����}�PZ�����[?���+'�UE���_<y���d��ԝ�ZNן�<�L���o޻���ERU�Gh�\N�����"��c/N̼�Z'����
�#L2%ɤ��=z����Õ�����n���}p�P��#���$ "Z2�
G(�EȲo���*]�״�� bW�A�r�}���Ф�����	j2{�Pd�K33�>���S�͙PSpFh:����3W�F�Qo2k��R���xm�̥K���?��C�׭��"K!��:�?������[��	p,��hʦ�\�D�I�F'�y?���Ͼ���f:e��?D�Dz���p*���AY97<����B�qzK����Tb
s3�[+��$���?̦M{Ԙ�Q���t�d�VK2��Fn{%��7���G���1P�T3'��t)m�sK��h|u��^����nr�'닿t�ҳcSI��~O�$̂�����~g�ɪ�%��A�1b��g�?�<���KO
O�E���C�l�8�N~���+��t��ra��ēl�߯<&Z�&�)��O^�\�Ӈ�W�d(v->��ͬ��3bp�,��tv�c��u��ӱ�q{"��L����}�0M�R���t�hݑ8Ŷ�b�kI��
�Hr F�H����f'���Rm���.�_8H�N���������291qzn��\�_��ʁT�z���|6�����,r�=|��[�0;{bmmuss��i֟c��P��v�F�M�m�8�g���%�Q�d��)�� �rR�Õ�w����%K��5S�Ruo�S����c*�=�:%7�i��Û�<��>�I���/<*f�涭�5km�	�$������n�z>,�~�\-�WJ��粦^�$�ڶN�k[7����;g�wөufo�ͼ؊i�����]]zud�|dh,�lr2�l���5*��f
kL"~���/
���&�a��½���l��T����_ܿ�w�L��&7���C�����x{\[G2U*>�g�K��㟍��`>ΦL��χ�����滗�Y�Y/��b6H�V�D{���-=Z�f���q�B�d�|�MC%#��"�0=�����s����!hH���?����r���^)�6�g��
)|�	;a��`�1Քd�b!����ɋu�s�����z���7��
���O;w�%A87�����\v��5��5�a����j*����,i��rљh,:��=��N鷺I��4�Ǔ��c�cCD:�3F�A��Q�/W$a�(5%Yj4�H"4k��գ�eg��։!����,���N�"������hT�G�Y.�~fKnp�H�
��2I��3���΢$iTnة��8C�|)���լM�%���j?Y��o�o�Seg{v^bg|��Iz\,<^��t�'�2��0�2��+�sߢ=�i�=X�/;��Y�c���,O�7S��n��MC�L�܀��;N~�\��Ʋ��)+�w�a�9�]�:sN�ޛ�<�|�؎�-���$z~w	a}0nnnnmm��d�� ]�eY>���0ƅ��
U�s/[ Nϝ[][��
�wb��B��X�\���8u����*��4����*v�fGG�P8�6+�S��7���|k�RApl��6511��O�rc{����.�Q	&Ze��-f�w��+�n�ʈ�M�v�SY�DZ��f�ì$�q����r�{5��P�ʪ�SE���(J�b�_1����-��fψ�d�5>bv%j�*��`�S��ɜ1���^:�fn�׼e������T���C�!��){�91���k���ocDR��P�C���/5���
�195u�ԩ��%E*�"�����j�g� ��]�)D�ޤܹ�Z�ZG�v_�H8l�l���W'�a%�&�c�$�山������".�@��H�s�%�-1\УD�|�ʡk�6�2�Y�c�`/ބaKĞf���=	:X�
%nT��&�s�O-��I�b-
�O�<���N(��v��4-�/���M�+�ۗ���J�4H��do�i��Ñh,�(����=�?�-�T�����G ����.<��K�!�p��q$�b"]�;sfhh��ەM����p�5q���u_���{LӼv�X<.8���X+Td�P(ܼq#�J��sbW*��2�œ�13��9W�3g�j�V���f#��z���3�Ap܄B�S'g�&=��M��q%��P2w��Yg�!���$zѰ�
�M3￾��.�����/�.ʳ�Qb��aX����%�I]7�S�ǺF�IbDT�����b����;�^m�O}�h�B�X0w��T�8Pejz�ܩ�3+ib�&� 8~F����=�^�t�xJ�ܴQ���ے�<(�� ��3���~�הg�ߝ8���K�`�s��B0*K��bv|C���S����VQ/Y��w/��|�P�sarn��.&-�p"�F�Ü�쀈֗��o@�:���S"�x�3��5�+kY��L�c��	�gֲׯ_?=7w(�c����+#'7�:|&z�Z4�P�h�#z԰P��B��n/�򥧞z��狥��N�hg�Ja��t����[[[̉��X\�_^Y�e;C�'�?����x<�_��g��w�	�x��m��:��Ϟ9s�œ�[�0�-��	Ο]/̆"/}敃�n������-���ۼc�	}�$�|�
aXg��
�r/��0�ջ��x�qou�D��D~��߸p�|�Љ3��]��J�Gn���w�$)
��Z*��t*LSIa2�,1<
����l��>���9�Y%����D>��OɁ/.o�[B��K��ŗ^ye||d@P|G�g�ݱ�bտE��x5w�<�8ɺ|�ԩ���/��$�%J�d�Ȕ<z���ݻ�L�}�陙3g����3��%A���L�wz��ܻl
������7PM�p�H�4u��勗&V3��%S��cp8�L����ȕ��f�@���zT?A�ۡ�T���G-�Wi�K�LS���+sg�
aڷ;����L.>YL��֯��|�T(�0u�K[�蔑���$��*d]�����ǿ15ݚP1��h4���>{!�x�V2�0�^�*���sg���W?;99y��·�	�6ê�/��j���h+G�c��I�$A��+�!9܁T���� �蚩��W�o2M#�L��r	 ��,tS/�[w4suuuaq��Íy��'O�={��4��5��Hu� d@p�Y�x'O���_���\�ң��T�*�=W4�n��^~�Sׯɲ|�m|�ak!�]�C�}NTO��D�f�XM�Һ�t�W�SS��N���j�z�P0t�����t�'�Tr�؅���H���ujnBPOQ�s��]�v}6Szv�ƉE2��&�J�OoWN�~�ڵP(��Ҏp���E`
�N 	���Wn1S{��&y�~5����ׯ_N�Iy�u�0L{�xk�|�������)vZO�qe֏���������P<��/���K�W3�y��#Ƥ$d�3[�K���+���'Gs���xv���U?���+��@=����b�T��Y�S_��0�����_��k�#����rR��"�v9 ^,����Y�1�Y����X\\h�I��(o�����|ott�_::���X�e���	2�3N��b#O_�r��ɣ��5a�����qk��5�d�W�yc����_%&	.����x?9�^
�M�n])I�u�uM>�����O=73s:�����EU6�N�d�E�(d������L*C�u��dL�͝׬�0q���E5����իy�����T`"� ���tp�M�T27�.]
%>��W��rEU��*�m��~>t�q�:;�� �]��
�r�bvx� ^T_�K�ܵY����iK%M
��Kz@�g��@Pe����������ԗ������ƺ�i�$	����^�x�RkUf��J��w�W�;4s/}��L��F]L���,�$%�*���tj�M�.�f/O|�s�����`�P�3�NM���(���)ݫ�;N�_�$A��֍~���L_n��t*��#����Q�8}���\�K�J�����ͭ�^z�tjf{�^1�[Yۼ�Əf�R�~��kC/Xw����+k����j���/�411ɹ�=��S?j�f���[�O���=�/��E���o.ܜ����Pnv&�G�
��瞤�d��<{��.�da^�>��S��~FN���x�>Bݼ�;˸������U9�a����҄T��J"���E}xt�1y;����y�ڳ�����_�?��Jj[	�#�H���fj����ǿ���}��-������ן��fأÄ�AG��'8���O.@3�.]N$��O�,8�0^4�ぅH %Q'Qp(���9�K/�fNɫ�~�_�Blh�4�ܖLMS�Ö]%�`��H���ݾ��l����w�v�v��P���N��$I�;�Jkoiw�&w��[��nE��b�hrs��������-W��l����n�L]h�!Ip��V�yV*�6�j00t�t�_xꙋ�JgRES�����
#=(��`�ŗ^�ƢՕ����󢨚�H��E�O�Š(�TD���� ��#��/��ί�Wӱ\��RI�LF9Z�0�dJ#�Nn^z�����tb�k��+/��r$����D3�ہk�Eì�fiMs�A|
gQ��m�`��mNZS乶�N��i�64޵��(�o��)Z��6>mش�7�k�u����艠���-���+�סּO����G#|�i�e���x���cv/�LP�ZS��0J�l����G���F$��q�08�;q�S/]����*Z@%fBӂZ ��LY��_�w�������啵ٓ�Bp���Cv��Rw�2�Df5���ž�կ>s��[7n���[cwV�"����=ϫ��*�
�I�d7	�i��E㹕����l|��_���ׯE��C]ԭ��C�h� ݿA� ��z� 	��T��n}9�����y���1m�lp�P����-�myq1�J��Rv8�Ħ��#3���'K�}d.<����>PTY���f&��מ�T<k�[w����IP΅�C�&�񆪵�~j��@���	��姯��;7oܘ�p�zHM�B+1�'� Qw�&N�`�Z)�2�CH��*��c�|8���
��~��W�� ��]��]T_>@�
�z����Q-�J}x�
Q�4�r�/T�ʑW_.�!���I�>q���dKv^"�;��	�QQ.�U��*ʞ��}�Ur5=���Bv_^t;7a�4�[I�4��h���3S����pQ�������V��Wx�4i=i=K������br;0�^YZQ��ŧΏ���\!���c���S�	㍢����qB֖��ᨬH%�,?�u��vƌ��
��0� EQ"��V��c��%���/�uf��d�{���[7nnl�6OKd;�5��HYUN�Ҋ&�Q{�
�$d�2D�dj�a��dKa��)�hg.\<���s�FFF���c�)��0Z�Xk�����bվT͍S{?�څ��K	���ʔ>���&w�X(�!ꪠ4�=D�q����o�w�����ns������v��^Ӟ_����]�[I�'�:(Z�ZT]�}.:
I�!	:IP*�*�%����a�da��v!�V��@m��L�nFv;�����F6�7�!+��x����p<.+r6�����?�8�iΟ=w��$��2U�~���ɂӅEis�h���'Nꡀ�Uv�h�
��	TyK����ef�TU5#	$A��Zg��Rq~~��[�������B�P2�L>k�F._�S����-��,�Y	Y����(�pdld��sgϞ
�BL���L�{�zO�H�.:UI����yĈ?�i�U�S�|o�UMټIP��IP��օ�>������rm w���/7��,I�����&�L�,:�\�����Z��z��������D|(.k�=_<a
�R2Eo�g1uKQ��9���m��9�*LPQr�l��<P�QSh�:fϻ"Y�/^�p��9��.��
�T���Eί`�'L����"+VB�4EU��0s�sF�}ؕ����P/H������Y��<�Ԗ����w���	t]7
C�BQU&1k!�J�"9�X��܎)�e�4�T*R(͜<9qB�4B%�s��f��H��zD[�����)f
�e��!JDMG$���W��!���x�h��9�(����3@�'��6O�s�������R�3M����x�t:b/����A�~ڈ�׸�����Y�|�ü��a��T:h�X"����IL�T0S���[����	S
s�l&��]'ł�3���K��2��QN�H�L2{�\8�p�)5�ӥп�5������(Ʊ�q��$����m89�aV-v�/?���`B�bg(�*X�W��w��4ͽ����S��k��uz�ȊE��pF�Y�-�b�,���Ù\ �%=�IgJ�m!Ԑ��s�x�T(޽� ��kNK�س�U��{��T������l��֧Ĥ�qa��_g�1B��^u�a�e�ؼ�AO��xj���b^�����*�=��I�Z@��^�"������Μ9S(3���v�粜
k�������D<�Z+
k�SW.p�h�)��Ϊ���6�:!"u�¬��18(�9ݷY�h�vo�ޚ�G���P�It��>#�ا��ԚOI��^�iZ]]�4�\��ph�d(-�t�Mb�Q�e(4I��bB�e"�}���df�����rM�!�A���C���� V�b���>��AOU�a�7�`}y��؅4�<M�)H��Ҧ�I��:4u�|���
����i�=/�(uʘ��yj����S�~���0�%��Pt���"�?��#�9It���O[���ݽ�U�6M�0�w�>۹�{�P��R&��2�D�)����p3qg1o~
�P/q��G�>"z�z��Io:j�����ms���=�d*�$���j��4H�U��&J���J��&٤!K@�AUլ��ć� 
�?����S�+�S9���m�g:
g����C���d
]��q'���kw
y*�ۦ&(ۃ����$�Py#�j��66u�UU)���d2���SU�4�`0h�TYR{Q&1�t���0��ʽ�jF�a�x8��:�tU!���J�}I�`� 	�n>]�t�)')�4|9�6�\�R���^�Q���	�ɓ��$�=�<�vw!Y�dYf6jrg�0�Yu��>PM�g���?*��U=}=NS������
�]G/^çוr���� 	��>ph8���&�ϐr/Ŗ�N���F=w:�0F+ٓ鮎Wf������^$ڷ3${ cx�`��Z�A�������.0�ˢ�nk�Wa�	�hˉ��튑i- 	�.0�4M���i�+��V5�t9��v��OLRw%���iN�.�����Ի�;����u�}0):/�ݠm	5M{�C��r�mUM�%vF{�^����"�~��I������?qX�@��"�7�͡:���U�>ΐ6,�`�d1��|��mX�����~���W5E����h����h�o���`@p�4�bS.�6�wƅ�����P環GbՆ;8�G�8������-��"u���@W�烵A5
O��M
[��.@:�v[�a��}:`@��h�+�YH4��V_/:�,Ķ0Ȑ�ް=ݴ���(���\%��*:X�{�"A��"A�\Z�;�ª�s�/3gt���O�廗�܍�L$_u&_?�P'ʄ/�P�����mNV�ZE]��I�>�\�t	_G�J��-T�넔h� 	�?{��x�|A��Ս&�0����;��j��>C��h��~ѝ)���zc�F�e�!��h���Y��5$A�dO3^����o[�R҇� �A��8���@�}�?����4�V�Y�I�~���]��lU;��7��nA������nҽ:~Ȅ�I�>�1"U�E�d��*-$��W�[�5H���|PW��	g�1�.=tr�w���5�I���6u14�z�����[�vϠ���p�u�ع����$A��� O���>�
���n����!	�'=V<n7<��B�:C��֍�0Fه����:�ֈ ��$A{�Ǚ„�w]�w:�U)Ծ�� .�p�2@��U�iQ��?߻��{W6�W���}8/]nq�t��:�r���
the7�Ug� 	��jc�4t���o67YIÛZ/��f�_h�/��i���7u򈭏g����w���G����=;m�����kx�Z�1P�
��w7�q��ɩ��(E�O�Ͻ�ڛۥ9nr԰CP�0�w�6��ߜ�ͨ`O!	�I#��y�I�u�7u7�k��4��B�Zq-�L-�{���-�-�Ec�E��f���Ͷ�up�z޷��o�Go��k��j��tu���%�6i�j_Z�H'���W^�&
i���G��k�E�P?�Ջ$�_��1VsGR7��>ר�;�Q���
���la�
�[�0a�\7�a��d*�m5�=����;:LV�VϾ�TPw�KyHX�L��F��|�Y�0�I��hd��z�:��况=�n�Z�׹r'��5<�n�����~�ں9���m7�t�-n�o�;9z-�!o�Bnx�u�ɝ��
�g�B��Z;�r��w���;i�7lo�M�.��f
��-�����I+½K�VS�z�͚Xmk[���a���6wx���c�mkvk۽k��-����vG�Y����$V��Y+�a��Y��7ܩ�
rҨ9�0\h�X���?J����v��և-⌚�[� ͎s����i}���|g/�%l:|�fk�j�]�i��X�����&��7}h��Z%���|��fg�m�-�v͝ �AOZ�D���h 	��h��0��D��H�����^}�5��Y�/M��|���w_=?\��S��>��w��.P�Xnk���5k�u��"=���6i��s�C���]�V{����؋.��f��E�c�!7�i֮n�7�����f�~��n�wެm�H�o��4/;���w�a�=��c��6�la�^�m��49�������o��m@��,-b����a���6t��jv;o�u� o�t�u4tʹx�wҼl�\l�����e[z�[��m=<�nh`7�%F�������=zMDZ'1uI���D�
���Y�so�Q� ��>RB��I�!�N����E9%��*ʅ���|�ۅྷ���=�����j�6������چ����Y���[$A
�O��f�F�"�����i�����N�nv�n�W͗����W�)�����ى`���}%ذ��l
�w��!�e���N�ج�����]Z4?v�Է[lO'�-w~�:i��n����f
�֍��[�-�
���4����6V[ly�]��}�ܢ'i��r�żD��Z���[�~�!������mw�����5��*���}�K7������/y�{��(�ZK��}HҠ[�
��x�S7��U����G��At�e2�;w���(�O��>|
��v�=Z�� w�)'!�m3��Bo`���m�j7h�����ލ�7��Th��d��׺�1w[2�-/���f�/	��M��m[m[�-��n��C���-V��h�U��VJ��!;i!������C~���׿�-v���t筚��]&A=om'Q�.�����ߞn��'�w|�ͯ�ܑ�l�55wy�G����Ά����O�/�+�NU��/T�A]SSS�ix���N��zo�r����9M]�,	�M��_�Lt�h���g�Z�$���f�l8�}�����o˽O����m]�;l>��<k�ǡ�fFo��=j�u�������M��Z8��.+�4,,T�+cͧ��eWw8z�����p|(^�F�N�Z��ե�Iu�"��!���O/�XѤ�Y͇��>gj:L��m['�`ю�촡T�*���fe\�Σ8�~�ɀ�՞k��nn6�5�aAi�֗�h]�ލ�xe�Z�E����}N�$I��Hu���IP]B��Q�
�{����@=�6����.4p��p�B�ym�"A/Tߪ��۝m:*��v!B���
I@���CO�~D�Y��"���Ӂl�I�ޢ{\����z�F��qU�vJ����J�P5ۃ$`O�5�C�TTn8@�v|��Mub�L��'�3�����U��iOO�N]o J��Hw"�]f+�P^��G�o���]�iw���ŝ��.3���;��7I���k��+c���C�CI�VtO�<<�[t�$`O��;�4���J5SȻc�Z=J��܎�PB�?}�$��z��U���z���
㕽�\��E=w�y�H���Y�GoҪ�N?�>v���s�紜����$A{��K�7]�[+�y�!�+P��{!FbyH����~ S����T�h��I�nѾ@m*����� ����B)J�pt8Z�b��C0hO7�l�;��m��˳ܪD���=�"Ĝ
's���c�s�Q#�9����}��~L��,�v���C���t0�$A��*�!�]��֥��H�5CI�A�(Cj�	�v
�v�O���󝵁$���Tg`2	��I�Ş,�pKQڿY�� �2�nxɃ?��C�|��W+�u�i����x��=i����0��A��O@�(!b��+���� ��퇾$�@TI@/��0�~fK�O�xG1*�P@�O]"�N�f	��N�H��P��ѽMu��J*���GH�veW��#o��o9�<q���#0@j 	��ގ��l�bם�v���cI@w�Պ���E-Cw\�b�톌u�3��Kl�\۫*��!$A��qeݴ�X�>��P]�� 	���%DIוx��Rjw��dբ�y�� 
!s���$A=��H���n� �yߞ}�P�������4K`�YG�t�V�����cLgS��%��xڂ��@0`��kD�g촨��cxu$!	8P5S�u��0g�0���ރP�KO�zz�����3x��H�~�X���2��6���|����D�o�t����
ݓ��m쾲o�!�-$A���n����k�ɀ�-n�l��#$A���<��>̝l7QRv�!	�o��n��3 �t��r�wovx8>�t�V_�C�"v�"Aw�͝=��K�!h�K#���yWk�5��N��^Nw�n,�
��O@+�{�J����N�C���A�y�����[�#PU�C�+t�7���n͞=��r�%���� �.�g
���D�Ӈ�U�,�]o�h��}9�y�^AІ����+���'Rrc������H��>�h��Q�bڷ�?.w1ҿ>;��B�T��IР'H�ec�\U��Y
jB��f<߃����O��w�m_BЋ�ϴ��~�	��0b\�>�qZ��k����R"�{��>�p�T�"��N|h����V=�~�X�"�Ô;���y���A`��#c�� ��B�?�|K�� ��{���0�#H���NGL�ԭ���jTQB%�I�I���[=��I��a΅Ѕ0��3u��ir�J�A]h���")a�dI
PE��5L>�ȃ��Q� ���3�AH�=]��a,���ɕBn���4Y��6u��#	�WH�W~徛�Rnj%-&kC�2��g��YmhJ��TR$�Pi6R���p�
�0��1��q�$�3�0��XJ���Vri���F��$('��m�%72��,�ȑ\��eB>�D�S�#J�Jp������d�@�ώ1�ˡ�aZ�CI��#�0�����m>�0�"x�m�3BeB�T�=E�A��!���a�8�;T��O��q��*#�q�۫�����mܿ{e�ĥ�HB	*�H2ڗm���~bH��7ng7��~�v���u�$Fݬ@��d�SI"L�T��uIR��P�~�Ք"�jE�W��MS��D/	�dRjj�S���S�o��##�82��٨�v�bP�p�&s
��r�!	8LJ�\.e�j��o�#O�,1UpSSP¨4=4u-<:�F���Ƥ��jT�$;	B���� �G��EQʚ�z1�DO��޼��ƶ��L��̬�Qv���KC'��&����Q� ����mr� A�;��R����_�&�ܹ�{ݸ׸��.�K:�9{��{�r��mY�%;Ie���Q�@^Q��OUQ�sD��H�.�{_�oo8��n?����B�VG�6S�h�)���o7���?L>z;����Ή��G�
��3���&.�GǔH�ɔ1��t�-��ށ�B��5���pC5���N��$/-�3?�z�qzY7��jiZρ�LQ��ˉS�$N\
�d6��	���T��TS1ڝ;���Y��5]^�k��4�+���&cբ�f��'��E�+FW�^�a;���NU��:�o���ŝ��P9�U�5�V���9\;�D]jQu�wd�
I
�m�����o=6��)���S��_9�ld\��k�օּ�Ī�a���
y�Te���2)(�q%�tt�n.�����[�y=#젂�����ˬ����^�Nс|6�ф���o�`��I�!���o�瓆=<�3"̈́G�6|���DB�&�(폆A�ԙ,���=�~c���|��9�\��_=�`c���S�4(OV��2��ц$`��`�ћkw
I�|���'N~q�ܨ���p�v��$iP!�}F�P���Rd�d`���6�.��4
B��,��2J_?b�����#*�0ر�$`��<����'+Ōi�۝F�p �����ǧ��L��V}A��S(�)ڵ�TD��N.�49o%C�iS����aE���Yy�cw$�W�zet�C0�>Ȭ��ʍ�\��
D9�������gb�]�M�U�����j($+?K-%KiB�f)���mS�����}�U��\5�O��2@�c�����˥[��[��'YbR����O^�>4��P�4����oL\�818�+��Vn�,���j�y�\u���$`�L�ͭ����R�Q鹡��ӳ�h@���D�tL
^����Q$͝�kCϿ��xM�uՀ���x��@W�!�O�K?�x���Է�]�N|u�ܕȨ�9�!��Q%���ӯ�ʸ���O��~��M�-�<��8��'H�N�(��\(�9�d#Z����l �����t\	��81L8}y�ao%�������>{�R�!(��ol=��zbR‰���WG/>�K�
t�Q�Q�T(�����Z���2�����I�(���$AD�2���x�&�~!:��lL�pp���pFkѺ˻�0���gF�S�YH�ͅ��-��3�>@0@t��L>��2������O�esB����5�x��$�����0'�Q���7湎g�� �A���2��߸O���z|�L(!S�ݎT;<�~utN��cn&�Yy�K�C�`�^�0L!�O-�r[�R!H@�~qd.�*�G����ӓC�v� ¸�{3�P0�-�� �Aa���&�&�k�ˣ�f1	�Ž�
��/���$'���]M�u�Q-�� ��`
�\�8�*$��H���q�I82G�D�\8
�	�I�B�^n�� {I�@D��o�z�n�qs4;�
I�tDQJG�Јܺ�M��zI�82���0�w���eJ�S��*�h��9���#��vG &�-�K���{M�!En��'��J�gcS��B��y��/
�1�Ԉ��,`�W�(e�"%���$ )&+���Yk�Q��.LL�V��M#g�9S�	�jD�yhS��¶v��ȵ��Mk��ⶡK��-V��{� ���Ʃ!�m�ו|:e��HP"�{����f
��Ť^tg
�j`<:D��OW�|��|V��OO���	-�_@�{?y}��e�b��k����BWc�Ff"C2�C��i����"v�ф	����_����=Ho����'+����͜���ރr!���W�MB>=}���<��A%n�g����K�d$�'��c�y��bR`T
����
�j��^Cp�8�b��:#�TR�j$F4AGT4�7�<Ln�u���|)1^�Y6K��\�2�r�M� � d��������P���.]�I�dK/n�v�(!�Qrk�l0�����?�X���s�a���il�k�)�y�T�?������o.>(�sߟ�w9>~91T�a�|&����[��Q�:9s:��C'QzJ��o�9s���R�\Aq(�KH��"e���%��$�)t8����l<InM�%F8_�f$7OGCj�����0N��P�l4!Qj��*����K���?�ʄ=?1kɞR˺��]N���R�nr3��>\Y����\p,�Κ%jw��/�}~h��'~��v��������	y�Z2��77W�]]��F㟙�S��������WB"�j�''��u��E���k���(��^?�O��D�� ��g�볦A�aZ-yA��&��Q.��'+O��mIV�F��TN/�I�M��/���/o�㥑�_9qQav*T��K���p/�۾�\�όN���"���8{�
��!f�;ˏ���v�Txw����1U�V�p���o&�VR[�<�M$f�ֽe6�����F??}�\l�Q/W�Y�h���Q�Q}� 	5�� ���^Dt�q� gD�p:�>u�SN��3�|�o졈Ȏ�t98xV��`M;����Y�I}�����0Ms4�6>=�H�.e���%����T��F���Pd<�
Ǯ�M�Ê$m��|6��5Y�,<zf|&2J�z!U����mM�bWG'�bw&�\�,�R�½���vJ!�Ll��U:�~Q�
�Dl�%!���V��e@�ab��I���D��a�|�T�X����ե�̖)�š��'g�%F���Z~����l�a;ԬJ;�	(
a�)h�4�����Hu42��u�n��m72 ˯͜���(���\���w��?X[�,懃�'O����)Z�e.Ķit�'h/x#�hm&8"�<{T���Te�P���
���JQ�UE9M��\,1
&��m?Hm�FI
���p��Lc5��+鄛�IV����uTxea�4W�ٜ^v�Ic�;�X[�����	k#
C�`m�V�ooE$u&�<<!h��`y��Y�`�4�.C��D�"DG�<�x�؜7�3��nz㣭Ւ0���/$FC�zix�I6}7��*�>�\~vtz$��#[�̦҃lw�R�'��-�0�#C����+݂�ۅ���&�+F�^xgi~=�m=�X$<����:OI�~a�썭�Ǜ뷶֝"�����S�'Cу=�i�ĝ$�z�`�_éF��B�� ���
�a�FI�,
~d
��b��#T��%e�b�	:���Z`5�^Hn���ipTי�߷��}G���}�f1���v��d���253���Te��L�T��I%����;�{����B����@���Z�}߾�\�[B���~������9�9�<O���5as
�դX+���F�&u���u��0��0.�41�f6�'HQ�b������4p�stx��@�!��ə�a��){N��#֥�|3<|sdȤz"B�%��$�=q1��N1��mV��z�#�� B!dv�jx<���
.-��j���0�6O0uv�ݒ�~�b��j��ׄ�?��>��y%�%�#(9n�u=���G���R6��P�����""=5���l�vƪ�?���bcH��AW��H��ӥz�&�L.s�c���YE!ͦ��[�=�V�p�a�X�7곥�9r���4)#L�UE5+�p�p�셳��А��Ш��)�f�eG��-ӈ��0<��n��E�=���.-��{�*%�rOk���Ǔ� !9������r�;����o�'�B��

uuuuww�������8#�nw}}����x:���v����uuu�����k�DE��Ɔ���~��Ѕ�:;;�ߎgk�Jrrrzz��b�E�˅\ZZZPr|�������\�.��C�zzzP���T�����qw��鬭�.**����I���}}wb����H�x�������ᶬ�,H�
Iy`�y�V�ɦ���g��q{,��Wc����A�*0v
zzoe�:�m�������\�z�I�;):�0&u�*f�	��	II���wo��n��Q1EqI�¼7[��7��GF����i��%�j��z�3{L
^i��L�d���Yi�6�,]��]Of>�B!���kjj���{���U�V��?
		�����^��v�e��xl6[TTTbbbYYي+�A��f���'�TVV�;F�Gv�=&&fΜ9+W�\�`�w�\��������V�UR�=�z%�cǎW_}בKEEŞ={���FGGq?�HIIY�n�������&__366v��%Ժ��z``Y�����W�.---((@�OKK���ܺu���ׯ_o�����߿�…&m���0�=III7nD�P���6����/n&Y�$��L�,55��?�1=A�����(	�0Ŧx��b�s��j����7�,ooS�6��49314Ԥ�ǻ6)}�#M�}�=�#�#�:n�&���x\%	)o�+
��kœ��Mޛ��l*Ery�.�H�@��0V�L��16������=���(A�s�c���%�a��k�n]"L��
=A�B�,�������pEEŕ+WJJJ|����ۺukBB&�.�kpp�Y�w�9r��[o�U\\,�̉�^xA���\���Ο??o޼W_}uѢE>� �Ųf͚9s�7�9s&;;���0%%��bNN�Ej_~��g�}�G֯_�����ڊ�<�N�z��������t��x��?D��/_�;###{zz*++?��c$��@�#	�;v���	W���SZZ�z�LN�s`` &&B@�=���|���k�_��_���^~�eqZ�[�+((�#v�����@5��������������bQ=��[�����ũ��ցn�ǝ��E���C��������0{��eӜܔ��;�߇��N��o2���.羦k[��L��=nUUT׏�m��g�_DƟ�	GtyL���jp��U-��GI
�ݞ�;�4��'�B��455]�z522r�ƍ�5�=A�'::z۶m�3K��ttt|���_}�������KKK3�oz���y����t�	��}�ѹs��nwbb"R�kJa��i�?#""jjj


6l�0o�<�����cǎ�������?��O�ϟ������޽��/�ܹs���d}��y��㥥��^�]�v�ݻ�	
�u���X�����{�WUU�j�*��Wh�^����iӦE��vvv��7�ٷo�ҥK7oތ�EB����n�B���n���D8z�!�Ug�pwnX�e���`;0���R�q��m����v��b�{XVL\AD액��=nֿ�W��nר��.�K���Ļ;7����=�)�hn.�kL[���z\ƢbL�-����1��q��1ϓvU�׆{G�fE��`
3+�F�����́��G٫=�QǨjRm �TA�X�6m��� f�7ޤ�b�����6:�0��Ĵժ�~	Jʸ�'���@�X����m�i:��$�8�"A<�ݳ��T���Q=!��{����Q����?X�K%�W2{�h�WBBB|~d�Q��B��H>P��4��-�]"`s�f��#���P��r}��
h2d�{P^$����	�\���=>����|럩�96����=(�$e�g}."SOZ',,̿9���4L�0�>R�X�'+II��ur�0*-����w��D�:����ɝ���&� �F O|���S0)�G�%�v=�= d*�>Ҕx
��#vIs��J�ik�Aٺ���S�����M��H���W�>��9J�Aԓ��A��G�B��OK�:�_4hʪ���������{����ԩS۶m������:��)d������/GEE���{}���~�3�[�	�3���"͟?�������_��駟��?�D��Y�?��tss�g�}�����|�ܹ�G������@%�5|Z�����w�Ea�xQQ�q؉��~��W�5����7�X�p!J�o߾e˖��Wn͆0��v��y�����ʍ7�� ��=~�1!�L�3H1D�]�����}�[�sL3�/��xJS�&F�Bʒ3m�o�D{��yEsc�mfKRh�٤,I��wL�E񩓯|	�XJ�1#������<-;!2ʪX'��)�O�����%eĄ��-���E�x��;LnZ���1��ӥ�<N����r�;wn����#�999/��R�_쀺���?����/�T6&�qq���9s�d���K�.}����[�111iii�������ӧ��ߏy�[o�����爼���{�

��m߾3lc�D����Q���ڲ���^{�� ��eP0DY�� �*wٲ�W^}��������'X.�h9q�&���̓E!^�={�9rdΜ9x3oY,���~��d���+ΩȈ���d<������O���…ǏojjB1^z饉A�/_�����k� "	f��-Z�x�b�XSS��'�Ȧ��R(..~�gp�_��*03`_�8w�j��ܮNd$�@�6�)��j��?�9..����	�oѾ����V�ڲeK@K��ի~���>�/$mY�t�;�]]]G�Eʲ+5EC��0�����ڽ{7*�;��`xx8$�����to�����ﷴ�����M%>V.l6i�>4Jɨ��k�d`�mذa*Y�S�����F���*ǎ��(%h�+���&��]^^�+>7����ɶ���v��֭[ѡ ��R_�5�������'O��~�z[[��#�u�%K���L������r�
�����h�*(Z��{�*�=�?�8�322^|�E�|dde�
>?�����A�Ƙ
�� "��{����A�oݺ%�8�,�|Ŋ͐��~�;y9eκu� 
���
Y�K"M$��ظw�ކ���2��hdff����R���:11Qv<�\�����-�O�Y�*]QQ����5���`4C#b\E��d6��k�_�UYY	��h�N��ףe�^POT��=>n��ʀ����F7�2�A��}aa�����Յ���=��<AJAX<�zwQ)��.G���2����b�,fs��Ym�I��4��f�,IL/IHS��N~�{�ٲ8)�8!U�2yyRâ�C#W�dM(����沔9K������@N��n�w��[unx��l~�[*ȗ)=AO?��°<|��c�[.?/�u>������e��S0����v�zf����3bn��v��ڲ�;L�իW�����Ѱ`�=A��º۳{��˗��7LD�O}�駰Ea���W�^żO�׻��y�S����r��㼮�Qe޾};,|�!��Z[[k\�t��
�F ,O��>��#�4���&�h^�
���
�G?�1��	d;��ݻ����ܹ3���W_}�����b����
�yNN�w��]|���G�@��e�&�5��_�x֋ןe���/�9�R�I�hG���\�`�w��X5�@:;;����p���?���7��(�`���E�����?��a:�v5��O.]�$�oD(!�f�m�P5���aD��Pe��ɲL����+˗/7�)��L2T*����j�<��D7���e�I@��J��`܁29H-��`B7� Z
醥0E�###7m���N胸0|�DP\G������?a�B2�-!{U��e��\�<�B��(�,��_�*���`\�`Lm�޽��9�ؔ�����_��G!W�B>”.ht���L�7�_%D�O�>m<S�(h�^/$x������j�Jb�ʲt(Ö-[0.A&�(���4�Z
��j�����x���`�/Y������c���q �=<<�'���yVͽPGԫ��o������/F-hx)��L�,t@4���'2����7o�D'�������(m47���U�q�cl5而�hܩ,B�ZB� ���~[����@	��ك����1�>u��-��{&!�y�r�qqq]����<6��0؝fQf\� �����{�&�j��v?�Z�b6M��̗�<P[
�>Y��k-Ρ�Ý�� �j�(Oy=A����]�\}}=�ذXY�^�ti�݋d��n��g��/4�-ccN�8oTUUa�
c��+W�����e׮]���.$L��2Lͯ��
�,U��e���&9�Ъ�r���;V\\[61ab�����7��3,1=P���_|�ŕ+W*�m֎��̍7���<����ǝ�-bB.0����?u�Z��;��?��

}��gϞ���B}�
`~cB���imm���q��u�(@ll,lN��~�z���������C��cvv�ҥK!@�mhh�������������+.�;6++�d.�6����-]��x���?��(n+---))III��
�A^WWW^^���曺3r���/\�������F�Eߊ5��9%�þE�|Vf�EB�~��ߣ��ŦM�,X)��5	�xr�4�'Krd����رCr��N�>��?��$;mrg�)'$$�3��e˖�<"�%9�z�Y�h�k�n�K�mSr�
�m�k��C:�f��� q	h"��#�7o���u�Ju @�q�:艐ɹs�P�\K~��ݐ6�_/|oo�8�Q����Z��͸u�������6l@iQ���~<Q�)]�d�T^^��ۡú?H>���D��]�\��
��}v��������´F��5���@�Pεk��?D��]r�
����ֳNOO��������snn�typ��s�΅&C�"�`�Q�
�hll���G�d-B�1Fa��J�A}QA��3g�`$�b_�
z>{�&�_(q��o�e��śpjb������Ȟ>O��'
&��.� ��dݺu�>��0�c�􌫊d�Sی,}/��QY���~%�̜��i�S&��8<A&%�f]�p��]�X=��p_�D�9�M���R=�{[��a��=Wvhl�=�i
D�	
.d�A[[�ȨHL%/j�Z����0o֬Yb��s�o�x-�����b�H`La�k	����|��.r\�x�n"���)�ڵkWMm-�U��el�\�reѢE0�},j�s�…^3ػLU��x�S�FXV+V�����e��[e�]}ѡ$���v0���Qߢ0��w��ah�˗/�̓�4�O�F�.\XgX��i`���3�l۶
��f``��@�����
kV� e�ܲ�B��/��/��_|���^{�[��Y��z�j�����Ǒ�g�}��d�膜Py����X��5�Sz�5I?���s������ۿŝ�z��`G��j<x�o߮�B(?lx4�؟��	���GP-<M��ϟ��h�K�.�BC"{�쩮��͏�|��IQ'
k��H�v�=77B�\����M�����VH��:;;eq��LY�j�qY��K�'$�t>�&HJJ�7�H��H_�{�͛7�")��gdd��Âݰa��gřd��܌\���gX�(3����W�AW!�U(����Iq���螒D1J`��OK8|�����_������/�:��h�	}È�&�5)z� 4
:)����]F<���%m��˗/�9�I�6F��g�A4�G�B��Coe�~�#tv\���̙�qu*N��D���-//�Ǡ'��x�x�@u�Xr��,њ�r?T—�}O;�Vts�qGG�D��Q��PA����}�1x�3/��!�>�נ�""�&��N�<�އ^�{�q/뾾�ݻwˀ6<<���7�NDO!��*�ϟ?/KA'�0i��$�V��m�)�����]
�F���[�1�kb3�fDO��e��`w��kG�g]�n	���4[�A��9�4����	�MV]�”}ii�-PaYţ�"񚔘���lnn:t��[�z{{��<��2%���	�>,jخ��뻫&�9��H����Cֵ��xAbNS3�9��C�j[�%���wV�(��+�ߵ�ݸ�ٚ��1�G^�Q�h!K���R@u`ס���]�b<s�̅���tSv�s�������|�(��BF˖-�lccc}��Y.2ϑ^l����	v&���0�SSSus͇Lׯ_�t��꫋/�2�=�������333Q���y������R�ȝ;wB]�� 
�	j�����-����m}
̟�T�2���?�%�;��k֬ٴi��˗/C0����b���.W����t��|5y��c����;wn���:�!�����@�)AvD
�>�F�eh��x��Z�S)#N�l���
����f��z�9۶m��6z�U���rQ�J��/�
�|��.?�D�)����/��XYY�1��͛�}�F���\	�5_4������(*�z�>&Cy��E�V�^=��-
ٓ5����
���1�
hF �('���-[.���`�A�			>ڎ��QQQUUU�����t.�)����O�B��1�

UTTl޼�f^���&����А{vB�LFfnx߸q#�	�xa68C����sCc�"S.�5���4�w5E%'���#x�px܇��F�C&�b�E��G���G�	��`���%f�0�
cbc:::.V^�p����&]�F0��.������T~5ŝrT�=�G��>�,�x#�<y2??�C����`ɯ[�n�#&z_�+�BSS��r6i�u���ugJ@`+�&��b��Ŝ_P�B�$�Ў<��L��T�����F$�hѢ���ŋ_��m���Z|�ۮ_�~��U$�v�Z�H@.�c!KpS�L�[6nܘ����lrA�I$i�,�!y��9{�lCC�G}�v�n]��LBC�L�ETTT���+�p�Bؓ(ʀ�Ӝ9s��|�G5%����|�$�6�˖-�=YVV���@����?��?茿T�i4��C�kct��#��Iy��5�r||�8v��'N��x^111� \��mx��ѣ}�3�_�V��R�6��cǎA��HGB/��ȑg�P\����M��h@�$7
D�ʌ�10�A�,))A��l�3����IF����00��Po�/��0$��F(�U��Πz�D��8(*�qhׂ�f�Ң�s��=~��޽{��c���/���������fr����ܷ�~��l�2Q��I@�,Ԁ�/Y��g��)F�o����)���Y���{��ٵk�q�@��(0v�N$�fŻr@�3��r"z��OAn��Q��{v��,!�)O0j�S�}�3�y�=q�W�\��B�w?y�FK[ȳI��Z�KU͍�m�on�ˡ���z�z���P1I�5���H��[���4K�A����lXt��K������f^� �>;_0������z���>��V���$6�DK�g!a�CyZ[[1���3��8-kb%��,�
�������0DQ���^�rݵkx'''�IOO��4
l���FX�xJ~���(R��ob��]�oa������1&����G�)(s__��{d`�������v�EŝHVb��E�=2#�F"X�Yt(����+�Go}�&W��ě�z]�t	����CAiaz��PT(Lww�Dqpf�F��9�p��>����Pc���@�uuu0,a��]�֤��D׃��/_�}Oh\��Ο?�.�U~
HF\BK��=44�.p��X�x�����l�@�R��-˅t	J���|����N>`���}���&n����0�w�^�Wm�p��͛7Oц���P�5k�@n�ϙ���d0���K(+��(�vss3n�_4�~Z�
z�ˉ�t���,X�d�=��~��3��%��,rD?�����>@L%�Q�^�cZ
o.d��CR��{���hrQQ��{Zv��_��…��PW�8��ʉ{,:4"�@�q3Dd�M��{�A���Iڤ�L�n"�e�ŋ+**�wŊ՞sBfy0tH|:��Mw�[�x�w%�%�+gN�8�I�
��c�M1).��|o���T[���g?x���go
:�azTODhDQtJ���9�'hv���S�0��3�1ߵX-���%%%{��;w���5k�{��t؄��Z�6U�`����q�����ZLO1E�	Ā��\�_��^�
{�{L^adNq;滘�Vk`Z�S�u����4Nma-`B����\��aÆ�(H)ܺu�Ύ���U�c�ڵ�J��ҥKh�{r��wժU}�Z�!�&mQd����^O�U�M(sA��o��W(�z�֭��a�|��
��b��O��3.�	�]��/�>ч�,s	�*g3�&�4���H���������W`%�����D�֮]c[�0�
��	��J'&&>�>��<���d���ZC��/��3#���av>|877�		������z��gccce��@F��mzz��e�0[�*z.����._�\YY��KHH���ލ���@�
�VҔ�2�~=A�P����������^�J�[9m
*=��l�rf�q�!�C��й��Yp�.}Mn۶���?""B�
�(�L�1�A
��D�\?�Z?��������O�h��v{zz��s�=�/���W_���5�O���5��…1�G@�O�ё�q���€�;t��|������#w�۷o��m%h�k������?�:�~��C�x�K~~��炽���_�oa�D`�a�9s��&)��HӃ��u�k׮���ӟ��N���I�K��@\Bf�3�P�^1J�U�O���e�E�|~|}�x���B�M�{o���PTs�`����g�r�C��ldv��Tu��:��|���{z��̦����X3[��4K�4t��憆��)5%%o�k׮UTT��ЭD�a^�V�E�wcR��Ӌ�pH�
se٫%?f���|�,��7�ރA{wޗ�
&(��ϟ�?e�t�<b֢�x��Sg�Fnܸk����3L�1}������a���7j�y����������0Z�Ν++b�$�N��	� [��{�z෸��C�����ZL,4���|*���Q���r��ȯ�S\U�G\�M��ȱ\��ܑQ@�\�]m�1�J���~��!!!r�]oo/Wv�N��U��P4"��AR�C'22�QUU��GY?Y�jb͢���ȎBc+C�p}����4�]yy9L߃B�;v�Xΐ�"��4�>:�Dk���	��o/�[PP�vuu�~4D�g���*))��e%L��>5�b��9
T}��ՙ��zoW����DG��V�\F�زe�2f
��n �Zz����4f���q�$���C��e˖/_M�|�5�K�Nތ�h#4
tY�s�Zz�\DO�����P�{FPFG����>Ú���<y�M(�~$��1��&�aC�œC�O�>�J��Ԡ��<��[����?.++x�$to@�VzzzPS<�ˆL�{�_|qϞ=�����ZP�K��1�4!�Y��I�G}������h�f�̢eW�L+��ԫ�YG:�;�=�cݍ�˖��xK�A��!��Ł�}5��o�h�:/*uK��p���!��J�:�����9���~�~Eբ(����"��K�.mڴI�8#6�����٬h!f��w��r�Z�g���T����#њ�� MY!?����!�F���\�i4�@iiiqq�Ϗ��N���L���I�ct�#�ٕ.�q�gϞ
������I�ԡ��.�B+��e,��ƍ�7�v�
��8�+�� �j47r�M���;
�*(�>|�H���k��'�*S���`€A�hz\�`ϰ�d�0R8���t:!.�A&頴��+**d�	�kJ~�GQ%y�"��
4��+W�\�vM�Q�QHD���*3�������d�ʕF7"D!KK|�v��S�#t�ܹs8�t�…� iZY�3+**���?4�w�-[&��)�
� ����z�jeeeyy9���˗Qf�҆����1�� �Op��!��T�(Y�&;z������`EO����8FK9��8��24� �=D{E�w`������x:�l�|�� j�}E-((�,2@QQY�,�1>�-_�o�B^7�9�~<5�H^l����S���7����#��R4v��K�"q��Q:�`zz:�-;$��1�N�
ٶmґ�A(2�qa����t���Q{I!�D�L{zz�p�U�V�
�X��mmlfm_[�h�bR��S�7s���h��
:�[�'�o�;,�s�Hk���D��.�2SBO�lF�4�G1w���q{L��Ѭ��)�r0}����2��3����T9V&Mll,�9s���%x��[�x���R��07�<X~�
hxOnkaڍ�ҁ�W�4�{r��ܧ`��
�<�rz�d``�f�ʲ������̹�ٸ�������s��0<<�
�7=n8y�n�ʙe�#�����%K�@ȅ���O�>v�ZD"
CFFF �`�LѸ�m`�<x�a9�t:���P���4+L4�1��n5mذ��ݻ��D֤L�bDM�3<���oܸ�����x.DIB\r��+c�V�]II������%G^��&�%�Y[[�^ K�N�8as+?�777#�e˖=��V�q�NS���}���0P/_��FGG�
E�u8>w���5����h4��~���
���A]ї�׈�HDa4qUU�,�ӥ��Ѳ��E7M9�8}&rA1***��gΜ���l��Fv��A���&H���}��ʶ)HCʢE����o�H"ə�B�֬Ys_��\����aq�L����!������!w�gу�l�"�%[@�G'ݵk���0\s�CȬCB��+�#1lܸQf_3���#����ͪޱE1w9z���%d���a�q���ust`g��f�b��T�]��>6��!��V$�Ċ�흕�]ѠzT��3�
�>u���V��b��Y��<������q?��;�|�h<��K/M��t9��)�$�&�f3k�ˮ�!5�2	x���?�e5<<|���ĄXrf����8b��6�Lܹt�RY��o�2i˂��D�...NHHذa�����/�n�*.	�!�]�~]�?�)(��7o����TYY�׿���g�MKK�£:---��J@m/^\ZZ:QR�a���<(�=M�s'B��qa�"G��N���o`/[�L~�G3A\���$�I,Cc��U��(K���~��_�<y���Ӹ9"""`���]]]999�W��H���ոz�jcc�~ʛ�)�w�7k���#�ł/����T�����P��)h 
S�#��=
�fk�OqbB���������7oB��m��$^$��U4���ɿ
rh�>�Ȓ��cWDL
�EV�Zu������8p@��z둑����#G����8�4��_B��d�z�I�����;�nQ`ܐe��؍7::: I�e�w!�<ཀy�ƍ1Ìz�ڵS����}}��L�5�$�l�ls�BM���([�A��1�sm��tOsy�M�7<���M)�	���y$�'hKf3,������w��󼖧zǫ384�v�o܀�S'##C�rN=ؤ���&F�����a��^�?�	Z�bE�x��}��Æ&*�$�?k��ڵk���E/��ˋ�Ly���Ԝ>}��5��L0�`?�	`o�����

A2���S��o�oӦM


{��E�]�~}ѢEH�rgg'�˗/K!X��Y�$gZ��ش;w�D�h�������F`4�3��P*�����q���a<K� L�蚤զҬ���x㍾�������7��������
�VUU	̙3�z�j����Cn��wP��/B��HRR��������<��3����8w�ܼy��\��{�쉌�4��]�l����K��~�Czz��+&��ݗ��_�NógϢ!�O	V�ie||�8G�)��Q຺:H{ǎ�_F��=��.]���(����/��~���?Z����? 7����>��-̓�BaPN(z�6B�1J� ���XF��>/�ZO��^!���V��588�⵷��Ϩ�ʕ+�L�===PT0++k��2@As�v�&��>�D&Qf�H?�:�ט�8+ѩ����6��۷E�p�7��:B�1tKá<��Nuu5��믿.>;B!Ox��_�/�x��sì�7ҊF=����1��6���:Z=��\RArH�M�;h�3����꺡N��*&o����保�8%$���=A���;���
�&|u��A�~��~����*�L_~��d}���H�����?�c2�4��l�		�))b0�4L���L�Cv��39L�,���F�M��$BPmM�
}M������y�M(555�̑,I	���_�|��={`�;v,55��̃�{�n9{^��
�0a�$%�(1Ye -+Wd!Ə�c���a[��E��>��սk�.���7��xa�Ö��l�S�&�M�
:P����@�>�㢴$P\\�s�NY+dt e�Cs`-?�쳟|�	ʖ��SVV��C�N�8��ЀZ�!���A�����V�������?�ɧdg2�h@ 'O�,//�q�b����{���ɒ���M�jpp�o����*77��4��t!�f��x�g��Q�P)T\
yJ���f�ʕ�E���4(3�X����*�-�{�9}��\lnn��llDY{�t~򓟠�D�������1/�&�LLL���믿��M%�
��]����…�+�Hȳ�[�����L�'�
Y���{>_!kt^9�^*2<<�����U����nٲeǎ��, �����������g�RG!d��!o%L&gQ��X����N���@�Ku[M�n��1���+)�s��,f�l�j&�6����o���77
�j�L�ejjh�[s��v�'hv���;���h����y���SSS#�
,(f�T��o���$�;�'n�?�xa��^�Z�G�'��EĔ�`(�L�M��<]e"PT�j�������HHH@���Td��ŰW��'//O��]!������/���BV---��0Q���D<c22P�ԡ�������R�0�*�HVtUU�~�1�|�W�,Y���ի0�!
T
�/))Y�h��S�#�C��'���@]�l���|�����(۩S�`������%##cŊ����O$2ņ
"""��Os�f�($6�>A��r:���	f�_�����ygg��#�Q`T���d�a�(��;w�Dk^�r&4z��I/�4�…}�c֑�trp5R�drss��㿈�K�%<�ʢH�!�����C�hk�}sqqq�ݧ��lmwa�R���2H�g]P�7Q�(h�ڵk���$/(޿����htuuA�PW䋁u)++)��⋨ѥK�n޼���&�aAU %��ޡ�a����ǽ"n>�"��5䏺���d��Da�֭[��5�㮻�p�>j��%Aw���mnn���T�sH��?	���z�ӎ�	4Y�/>��A���
@Ǒ�ELx\"�"�D�`X@	q2��B�B+h��{O���sV���:���Ǽ����������I�Ŧ�[lV.�IxTեz���>k����Q��ɆۤX���I�^���@�I���^���>�G��\�g�rE�i�|;���ؖ���y��m��%�&������UCF���ߐ�
g��t��]>w[���}Q�������/9ů���.�E����Q�7�����C��Z(	��b�.###�]%�L���4�O�
du�~��ԕY�N=���z����B!����֪ʾ��A�٢�̊�m6[rbӟ��)�N�3hJ6p B�ו��]�s`�3=����!ţ��Z��f��{�]Ɣ��7����pJ�֬I3n���wl3�?�kZ��K��l2������7nڛ�Rvw�tW�^B���Lf����]��ǟ2���v��v�]�&(����֝�����Wp�L�IBOP�y���b�'����{�!�B�Ɍz��[�j��1��5��V��q�n��:?:㙄�aq�V;�>)O�K��
��n��kq����-f���¢K�3^I]m	�5��	�'����a�B!�2;��-�b�m�o~�ym�5l6�-�գz.�޸�+<,6�]�\����-���0�7�P�!���H�PG���}�����`�X4��K5�F��H�������l�ġ'�B!�Bf
6Ŝ�Y�x��zEO��4fV�f���q;�:z��/�6��"�B’�aV[��j�F�C�&X>=k��&u�46�r���7GG�F�ǜ�.Ϙ��֜nU�Mn4JND����8[�����̀� B!�B�MX%�d]��w1.�@gC�@���T�v��yLu;G�GZ�;rT9YLۀCO��K��wq�+"0i��A�n��=h���M�dE����(�MO��z�t�wf�'�B!�Bf���za
)�J���6�s���j�g���1y,դ�<&��1i�Z<�xd���(��ʼn��N�8�*��
��F���Mf�b_��"vNnDB�5$�l5+
�=A�B�lbxxx``�Ĉ�2�x<����ΐ}���9<:�^���v�v7��^s�7;�]�8�c��@sդ��tiLך ��G[��Z,�594�(,6;46942=$:�j�y�ut��=A�B�l�ƍ�Ν3�D!ӊ��n�;--���$))i֕?D���,aVk�վPMq�z�#�ng�kx���z\.��7�i�<AE�+�p�-�f3'X"��[��f7�mf+EMf2�B!�����E����J!d��>��;�m�G��UM�G�U�S�x�G��n��rM��t�	2�^�{1��f3>��Lf�XAB!�������Pz�!��f��T��o2��Q��c���g�2��'�B�M�4(B!��`�)B!�B!�� �� B!�B!��`�� B!�B!��`�� B!�B!��`�� B!�B!��`�� B!�B!��`�� B!�B!��`�� B!�B!��`�� B!�B!��`�� B!�B!��`�� B!�B!��`�� B!�B!��`�� B!�B!��`�� B!�B!��`�� B!�B!��`�� B!�B!��`�� B!�B!��`�� B!�B!��`�� B!�B!��`�� B!�B!��`�� B!�B!��`�� B!�B!��`�� B!�B!��`�� B!�B!��`�� B!�B!��`�� B!�B!��`�� B!�B!��`�� B!�B!��`�� B!�B!��`�� B!�B!��`�� B!�B!��`�� B!�B!��`�� B!�B!��`�� B!�B!��`�� B!�B!��`�� B!�B!��`�� B!�B!��`�� B!�B!��`�� B!�B!��`�� B!�B!��`�� B!�B!��`�� B!�B!��`�� B!�B!��`�� B!�B!��`�� B!�B!��`�� B!�B!��`�� B!�B!��`�� B!�B!��`�� B!�B!��`�� B!�B!��`�� B!�B!��`�� B!�B!��`�� B!�B!��`�� B!�B!��`�� B!�B!��`�� B!�B!��`�� B!�B!��`�� B!�B!��`�� B!�B!��`�� B!�B!��`�� B!�B!��`�� B!�B!��`�� B!�B!��`�� B!�B!��`�� B!�B!��`���G��A9L��dA!�B!��d������������{xh�b�DFF�����ɉ��UU����ԩS��f��ݮ(�<�t:/]�x�֭�Դ���GD��	⩑�������JKK�����;^<��u��$�{�ԐrTTTnnnrr�~gmmmMm-�P�4��x*))���$44T��?y�����R4��=�I1�]�����'&$��
����/2
��������e�ʕ����x�"
����R��Ǜ4�Lgg�K�zzzҌ��+((HMKÃ>R�

ׯ_�v-%%�t�R�Z[[ϝ;Q\\�t���I}}�����]tttjj*��;v�tD�"�f�A �-�B!�B!�<�4��={v��}5�5��b�xT��^�d��|3<"������sZZZii��n�t8'4�ʖϙ3��	B
�/_~�w���oܸ�$<�ηcccgΜA����!!!����7W�՚����3Ϭ_�^�x�⧟}���m6��;���ŋ�͛�;>p�����O?A:w�F�I1+�1WBBBh���O�>��;v�x����>��<[XX�Ң�Ǐ?�|QQQddd||<�TTT|����Rld�t:Q����جw�'��q��+�/��555��/Iֈ���
ׯ_�d<800�,Pd�"�Y�f׮]{��0�Z.z�aaa(g~~>=A�B!�B�&�	�fzzz�=Z]]����s����t�������r�JDD���1>��������
�TVVvww��檪�[�n����˂p3���Ǖ���8���p8:::�\��P���|��LA"�II^?˸3���,\�sT%�?���D����jjj,������]\�g;;;QQ���Ɋٓ�����Ç�,ʌ���v$u��
�pK����p[@�`���$G��?~�~JJ�I[�t��͑����P\���D�!��/�qH5>>eFa233�VvB!�B!O4t��k׮�:u*,4��/,,���r�]���]�]�5<<��v��f��f�Z��\w��j����v777#٬����̓'O���gdd�!M�ło7n�XTT�����hKK����9s�̝;�}^���+�DDDȳ��4�q%%%��_Ƿ�~�q�rܱcG��lգ��1�1C�C�Ӭ�S��q�>[��066��?~<..�������W����mhh�_�p�'M��"=$u�����Ƶk׾���uA[�:���ٵk��Ժ��Q;�nݺDFF�q�B!�B!O�M3����#>.>---%%�bW�Jrr��칮���w�W�F�Nguuu[[ۖ-��,Yr������;v$$$��_��’��222����:�ڵk���a�EU���p/::z���v�]O���]�0�.*&���ihp(`]|*����


ffffgg���K]RSS].��b�J��߀���Jqqq�/��� ���,	~$��@HH�E��111�dB!�B!O%�M3���qqq���ꚛ=72*24�OǸ��l6�J���^��(���!`��١�jOOOyy9.�Z����8??������r�ڵ>Ql$<��O�Œ��288822��B:�����ie����d	����D砉h``�����j����6�q�
V([lllRRRKK���z�������H�6���3��������Ujj�y�"4nga��tz4\.�#�B!��CO�4���WVVV~�|߾}'N���ʞ�`~VVVnNnbRRظ�&$$d``�O���YQLn��֭��GO��r������Ν;w޼yaaaH��ŋ�Ν���kd�<v��tFGG�>#������{�Y,ݹ����s�N��,�������������!d-+q����̙�f͚o���/�8~�xAA��rrrP����f�*URR���	��HOO/,,�%f�щ�L��B!�B���4�DDD�����
O�9}��͆��ʋ�f�W6l�̖-6�+EQ�n�D�6z��N�q��ĵ9q�����ƍ���FGG7lذo߾.���/Y�ĸ�f``���IB&���TWW�ݻEZ�|ydd���G�I�>^�{��#���N�dV�(�$�k�{LL�믿���}��WVgΜA����֯_��罡���nݺ����G�^�|�޽{�_|����u��m۶�B!�B!O1�M?����7o.[^������r��ruu��K��[ZR��K�.U��p$''���?������400�駟�?��r�E�����\YYi���nwyy��zC5���544�9sf����X�6����~� �������^x�m۶����ŋ���#""�5A6�
i>X}e_UYY٫�}ո&���o;�A`R���{n�ڵ�������)����CC����E��?��u�7o^NNNWW��������� ������≂OB!�B!O%�M3^���QLJdddTTTƜ��+�766��������k׮�'HUՐ������;�ud�m\���w�ԩ������>����!�#�Μ9�e��.d����r����-Z��[oOs��H-==]wB=$�NB�YYY^/���xWM�g��d+\�*�iӦ���?��UUU�����,��T
&�� �T��n۶�?��?�;V]]]TTDO!�B!������i����칳��g�͖�IJL<4Z��x<���Qc�f��i�N�nݺu�ԩ���͛7��Ż�.�3r��骪������L�x���]�v-[��TWW��W����b�
=Y�CM�N�@��:&�n�GpGGǙ3g�,Y�u!i@Jv���&�<��V����ʕ+�jYY���%�ʭa�B!�B�
z����Ǐ��w�M�O(�_�������
�\S���[ZZ:�����Ϝ9��Դa������X�&��Mjjjss�7mڤ��t׆�b���{����_���;s4�+��VWW���.D�X$�!..n۶m���������Ϟ=��_�*++k�…�NXXjt��Qlݺu���� TUC���K�m+�S	���7}<;���w߽~�:����ILLĝUUUȷ��`ٲe\D!�B!$ؠ'h�Y�lYo_�s�O�8�t:M�I1{C#oٲe�m����S���1
��qQ-�\��7��?n��V�^�ﳐ��O�>}�ȑu���
#9
]n

]�~}}}�g�}������E�I455�]�fLMUլ������<AHeC1��@�+	��]ʣ��\����P�7�|Uؿ�w���+k֮5�h�	P����k���#mkB���|�p�㟒ZNN�Ν;+**.]�TYY��e�ƍ/������S�y�<!�B!�����xh�KB�an|.޹��ݐ+�O��q#_�<�x��v�%�&���Jؚ�UCF����m����q{\nWO��#�#��qqq)�)a��V�ţ��~��u�ݞ��g�Z�8A.���͖����ظ��$�s����Ν����Q����ZZZ:;;5������CCC���u_R�q��fC^���Ύ�ֶ��kxP���L�n5#H����l6gge�F�����ζ�6�eH��n�444���(�A�Q���H܌�Ļ���ݣ�r����SRR .���N_�#��fo���N��6�G*8�p��!!!���R<�p8��*�6d���ft����׻�n<��٦I!�B!3�6ڏ~'��LK����S�4~;����pʾ	ݚ5iƭ��{'u�?�k�k$r7�e>��<uG������6�N�{��
�K�ST�c2�Mw��veܺ�.!�}�v��FQ�um�b����G��k�+8�|��$�'�)��
�Q=ZHdU1{�ژ�^��������ֺ�Yt%Վx��8�O�e��4G�泣J�}]����Azj�F�<����B��.�
�ǭU�b6vO=�^$�+�EAd���g�`�W!��ɣ�HH���O����D!�B=A���z��;�Qq��a໒`7�=5ރ��B��<�&�R��L�J�p���Q}������p	�y��oߩ=����ӟ丱���B!�B�՘)B!�B!�� �� B!�B!��`�� B!�B!��`�� B!�B!��`�� B!�B!��`�� B!�B!��`�� B!�B!��`�� B!�B!��`�JL3
E0m�~B�䊏�U��B!�2��0EC�LO+(�&W��j6)
�	AOy�����4><�H��B!��dQ�%	���o=+f�ɣ�UM*�U<.�	"4��UC!�B!�ea���s�wQ���b�z�v^����G=AA7�(�>B!�B�,G�)�����W���7�Y[G�gO��	"�B!�B�B�6�;��wLm����	��+Ȍ��I#��&�m�(B!�B��Л�P�fh<�"��-��}"
��$h=A�Bu|6�ΒM]�š�!n��~B!�Bȓ0k��8��V�;k&4��:s
�q��&�d� ��6���k��<8�]d�H��B!�B�2H'0�f�
%���hF�L
sP��v�B!�B�,���loyB~�������{�	���J0�s�a�_�	!�B!AB�,Q���spؓ��L��r5Ȅ<�����ʸ��<İb�WD7%��~B!�B��
��,��'���ߎ�{�0�qUn&m�R�
�S�	�-���g����#�B!�!GOp��xI��FV*ɇ'�% F��8A3h�lK��G�x!�B!�!-�'j���������p�.ұR3����z�����юg�B!���jG��R�uf�1\���ʴ��Ξ�G�R�&�,'X�D�	�������	��~@�g�B!�2���}�EO�հ�l�Ո3�C�{��4�Ɵ���P��u���!�B!�;����#��苇��0
��m�#(�B{�b��=���f�ߡ�B!�B��P��Qo����ly�����}� u67Ԛ��:���B!�<Lb���L�F_�m��tl�R��N�����<�M� =r���48~�3�ϣuHMt�<�_�B!�����b
�?HV��=l�=V�ä!^w�ޮ���.X��O�ê��iBfCՙ���B!�2㬧G���x��CX�������X�ӰMy�֦�##F?����[��(,C�
|�DO!�B!�j&�f��������2?X�5g��t�>�lz�< �Y����p�=�~��M<D�B!�L�ܣ\��V�<�1^��>�����y� >Ӳ��q�z귉�hO�~�ݣn���f���C�64M~��cxǕg¯!�B!O73�����OX[�3����Ļ�:�OHf��yh_�cp�<��Q�<:<)�9r��5�B!�B��$H}�G1?�?bVF�Xg�����(3y�V�.��3����1=Z�B!���eRh�ќ�c��	R�6b�* ��
/�1����|dm�<�Φ��=Mg�ݟf*p���U���=�Z�'��a�hB!�B�e���?��ä��0ߏ�3�޹�x|�!�{�Oy�e�z���g�y�����M5���T�G�Qf�s�+�!�B!O3Ů��+���r�A��7\�䑇�H���H�ا�v�Q�Tg{vO4��qf��ͣ�B!���au<JSh��f�PA��
IՏ���;�#�)?B���2�"F{w>�FSg���G�G����Ħm�#�B!��h�&��0m���]��ְ�9Y����m�j����f���y-/O��a�:ÚI��N��{�����G�)~�	!�B!d�Y:�8�c��q�W��,繿 A�2��]�����y��ݿP;hbf�'�{V��7������T�G�!��eA*��'�B!���
ɂ���ޛx�q���o�@b!A�$���U�j�$/��|�O�w�朜�:�s�\[R[2%�I��
�w�>uhLOum]����<?�=�V�<�.q�L�"��b,� �Kb�0��A<V��&Sw�	*��t����y�^_\Z\\X\��+�U�վ�����J��#��r� {<2U�F�h@���5��<Aﰆދ�&�F,���k'�@,l!�D`���L:Ae�kLI1����ggf�3�����r�R��j�۷�ڽ;�	���2iЭ�G
�����{���Ljji��¼�Us��d<�@f��Q������}0�p>=3=99��o�|��m�ziqieee��=��w��/Y�VM�#6R'7��G��Zp�׏J��%�U�R�0�:��1t2��֊�黆%��]��A>�K�/7��f���J0:��Z�Od�{�<����~�᫯����3ӫu�+b.�J�.&ԁ������L���d)����暨��:�_�ח����?�e������m�0\C�+���.q�+k�Lj�+q��k��NZ����ZNU�0a��.�m��=�Ya$�S%V��c�r�J�)T�w=����!�o߾�?��?�ra~a����5�.+�Uj5�ߢ�–�+�� ��S~���ӧO'&&&''���ggg���6lذq�ƭ[��޽{�Ν�v��~�e�$k���(qi/^���������,.p�����������dQ�\\�͛7�]XX�k��JE�.1��Ƿo�3��hw4Pp0�W�r���Љ)��B�(�߫j
#>�r��`F�4�I��÷]r(A߼����\�t��KKKB6�Z�����:�͍�z��,6��%7ߦ��0ɿZ�إ��e�Z��GԚ��1&�f���/_^�~��o��s�������xsee%ؠZ]�ҁ���;w�9s�7�سgOg9&�r�0�{��իW<xp��=q�A����
6���>|�ĉǎ�.^j���/^���_���Ç�.9�wL�ӧO��?ݲe������"/�YM��%�V7���I'�T���NWq�Au��a~w����;�uO��j�L���ŋB��g�ݻv����}�С�@!ƒ��w<�^_Kp/�!�WVV����^����C!�6���:th�Ν��V������-#�5�����w���~��qu�G�h�(;\����/_޸q��ŋ?���N�>=88�|{0�qA㋋�ׯ_��Ο?��0�1<sqi�?�|��7�|��������Z�s^�U���|��׷o��-,,ܼyS�Ճ�{���:D?�Y��V�8j�ȵ��9S<�B/wV�v���ݚ5?�%�=
E{�A��s�Z�$������>��u�С�ЉժA�1o@I��///߹sG(�;v���9��_�����_~�啫WfgfWͣZu``�董gΜ����u��{�Јyͥ�YB��������|��x�	���j5�\k&�ҥKO�<y��O~򓑑�X���ȋ/Ο?��_�477'�(Hm�������˿�ˍ7����6l���s1��>}Z�׃8�<gcb<̭�{�K�q�偸d��|= Ȥ �(ϒf��p�pÅ��Y7�N��<�Z82ggg�:#�΅�ܷo��Ç�b1��*���������߽{�ԩS?��Om�_,R׮]�������
/|~n�⥋7o��п�Z�~�����W7h[�mn߾�����W�^
Va!�+��x�۶mۺu��ƍ������>|����W�^�-���=z���v}�[�l)m�8��>����?��q�[�����F�^\01����9��8��=<<�ۜ�_��1044$��{:w4PK"����\��ٺ�c	�i���R����}�V�E[?�}nO}��ؼ{h��ԅi��eهU2�����.D��͛��h3MYA���‚fff����Z*�����������VY�_�J��Q�����܁�>}z�…��|�YPYYO���_���W�\	"��#ؿ�����I�ŏ�򷸸(nԽ{������իW�_�|�駟��������+:���~�;�\��`��#�v׮];w�ܱcdž
����߿/��G�����;��_�"�Թ��Xq�o���իW�̱�w6::*n�-��
��j҃%�l1偂B�R@�~�Fz�-��n	I�a\�;�|d��?�n�[�ū�l�4cg���Ԙ ��Ւ���q�����͑�cOcԴntܳj����/�G�~��ܾ}��?|�����ɓ���fl��W�R��zC��	a|`������w�_^^>����&��ٳ��?qℸ�z����+qO*�����;FFF�6G����~w���������/��2+�or���/�����A��Fq!�O�>}��ɠ�������������˗/���{FU�OD\�xF�~����L.f�j��z}ll��w�}��Gt���D1�B47�O�=bϮZ?�F�"�墙��e����'2z0��� wW�t������Z�שQmwii)�1���z�����.Z�f��֕��ٺu���2�={��_޻wO���Ǐ8p@�6������>��Ɋ"�p����'�w�^}��ґ�4�A�ӟfff��&N�o��o�z뭁�q����=
�����_]��}����g?�������w�ܹx��;��Cjvv��/��{�n0h�OS\�G}$�64z�,���A�[q������|l��$��;��T��Y���U<�_���/^���u�"�
c�w��-�ʩ3c����SL@�䚣b��X��v�1��±78�)�C ��'���ܕT�!��LLL������u��hiy�ロ��Y��XZ�T�o�={��Q!8]9��@ε��ƍ����޽{A�C�\�p��{���bqq�ك)��n��p�ࡽ������rKX^^�t�҃�K޼y�~x��iqu/^����ʕ��9��t��O���255���{��}��޽��_�Z��o�����`��h�	�k	lq!�6m:y��| �_�k�Fi�>��<�q�Ĩ�կ~%n���|��yy*L�ӛ��#Y�aqnb����)*|)����㏏9"��pq����[�6�b?e���S�q��3|o��RjS���}���y��R��}�K�2?]�QF�ӝ ި��߬�9mlff����K��P��J=,�.4�M�����e!2w��u�����=ѳu�u��q�������E�zrrR\�P�����^�rD@�mڼ�Z����R����k�x��|�z����������7�|�?�A�j���B�oذ�Ν;O�<���͉!1::�����o����7��>���زe���Z+YZZ�z��˗/i-��Z����[o�g�0zu[�Q%��������p���	����v�޽?^C\�g�}v���O�iq��Z^^��m۶s�Ή�o�>1r��'N�	(��l��爘�Z$ (��Q�k	�1e�%��&����
�0/,/?(���gź3&h�(M��A�h���IaMy̛�a����F���Rآ(n�S �|�YBA��[�n	�,��Z����k������{��Y`(����s������+�	b�ź����=�>r�ȦM��@��ׯ!Bǎ�T*�.]���?33#.�իW7n���׮]���w��	���)���8A��������6l�p���ݻw�Ō��a�9��r��G'(���A�ظib�޽{W<A�h>��C��!:>>��?��ɓ'�lc+�@�r����G�>}Z�����������X�O�e�>�h�{(.;�f����=�zۯ���x̌�2Q#]����v_����i���mp�B�a�<�9[�<̄��Q�k&�sj\����
�ӽ���9,�}�B�޻w�������oC1�q�x_�ot�(�0�5ԝV�+$�(����8�~ǎ}}}wט��{�7Ξ=�w�� �ロ��n�˗/�={�m۶�����1��5�A����W��c���c����ŕʧ'�vvv�ڵkA�8��200�k׮�A!��#b���qㆸb���?~|�֭)��r��v͟'�駟NNN�;w��^��O��|���W�\	b�l�PA�01�O�:��<xP<�o��櫯�
Rů8BT��P����i9\J@��ص/3X&QO��k�d���ߺ�m덐�$~���m�z*KR���_��o?���:6L!�
��DI��
ѫ�tppphp�0���v� �+�����A���������
���CC��
�Kx����|__�֭[�l��T@���-���AI�����,�'#�3��шk�C`�i_�~��ŋ�� qN�<9>>>00\�k�._�,^��ͅv��ݛ���o۶Ml<::Z�[Akɞ��}P���ѣ����x���7�97J���z�8q-'N�8w�܁Ė.\���͛��W���=a�$����{��E�.P��&�(d��]���–a�'b�Ǝ�����s"�t��[y��G���G�	��	�?���B9k
p���
[Z\r�#;L?o}Z�B]!�ŕ;v���B���B�	V����2b�tʔ&X\\S��T���� c(4Mď�k��Qb�(r��Dl�X�#��pL�+P�-�����7n(NP�A���͛�n�t�>299y����_���z���'O�qggg��64R�^�|y��q�gΜy��Ř�}��k׮ݺu+(r�~A>����}�ݓ'Oi���/]���ٳՎ�	k*��M"��0�~����,�Հ q��4#�PLh�sfRM&S�ɺ)/,0���AL�PNz���JL�;�0�*�B��;wN�F1�����>r10D�����~�Ï>�qeyE�F�����7dX���^��o߾��hh��{��y�����Ç7!�˞:;��pG6l\�q�����/gfg�>�i�C�����W�+�b�XZ^z������ƌ�7m޴�./�O�͂�TkU��jr\9́�������	�k��^��9}�_F����O\�����+7jtl������`�������etK���[���i��r�/_L=�:{��k�����>r�믿�y���䤸��9;y��;�s�ȑW�^}�����?�E Ƞwc��ҺtP���$�am��${)n��NS�|�I^L����3ZA�Ǎh ��F�ȬҖ%���㝠0�"�"S:7?���o||<x�����ŋf{l�*�nݺo߾� �A<��a�mr6��8p`ee%�阙�I�Dx�VݵkW3�(]vX���
�ix�������̾|�R���Lϼ�}���,ޙ{57�hJ�>Xa���#�C�b�s�⿰�܆�
��i%�����ַ��ƪ�C�E�,�D�'<80(�Z^�01V�\uQ*�j-�4���VwE��ٳ UJL����{��	
�l���1H�1Z�y�ş���x��?~��CA��.<�\̂M�6;v��;t�������.���)n�zP���(�l�m�yaz8�A�)�-Έf!i����X�`�\eL���vk�2�	��#'�3Ww�ɇ��u��#e����'	���;/����V,H63���hhhÆ
A�_9�(���a��w��e^N�e�9���w�U���h��~��,.-޾s��g��o?p���L�R_y���ă�:_�?�l9q�����ɽ����xD�T�����׃kJ�8�M�7"����O�>�3�G���d�i�߶}[�8-��ܾ}[�qյ���@d$v(n�_����o���ʕ+�'W���<u��?CHܫ���j�Z�� �Lĉ-,.\�|i����G_���ۿ��_�w�����Ν;>,.D�������o�?|кP<�f�{�&��X��T��jMC-�������2嬂��p��c��,�Z��	����'�y�26��/��|զ�{�$�@E��W�!5?m��؋/���6PP4w׮]'N�XM
�e]����x���\�xVV._�8�Zm���ccc7nBcfff����S{��=u�x�����?<y�$p͂>b1w��N�ƍ�w��%�N�����ݻw���#�3��:}��ɓ'�FI�:11q�ƍp؋]
1qAq����kŤ�l�"�_^^�Ql#~7��k�8gq�<���Oŕ��G?:z��#G�;T����x���.���‚(	P��Òv+�4�y&Wz^2esX�1��	���>�;�F?=�P��Ti�
�-��<vo��<�1M��!=�ɷ �d�c�[�]�7���τ��h�I���߳�������B�
���g��ܹSi��c&�#,�bt1�agN��s����j�:�h���޿�������;vl�T*c�c|�x��������;�+�kW�]����j����۶�ݳW�<�B�}�ǎ��Հ���%qƒ�[Ƕn۶-\˂l/��KKKׯ]��?$�ժ����۶n�пA�b���	��˕*�L�ZMv#z5���x<�x�޽'N�wF<����+W�\�t�ɓ'�E�����婐�ǬM��E����;���M���'�qb�����a�;��墽�vΏ��v����=k�k�cQ�3z�*F3�M���zĥI><<��l߾������{������4\YY-�cǎ��z��ٳ�"J�k�c�nY�h1[�jg�<��W_NLLT�Uq��'�&���N��^����g��رc�/>|���Nl�o��`����6�'Q�R�<tP����>{��yl�عs�6mڤw@7Aly����>�����#A���cGw�ڹ�h�BܟO���U��R�g�Luy�b�K�֪u^4�H�w��g��1�� W�xd��R.�(�[��Oh%,Ƞ�$CSf�J�C���P�&�嘀�l�"H
��J/�ao�����!}�a�;��	
#؊[X[�#g�,�i�,7Fy.I���s��O�:�cǎ/�����^���@�jUl������[������.{�t���ݳ��gO=:F�^������ֱ�C�C�O�>}���C�����>�ͻw�����x��
[^Z޽k���g6
oj��(�B~��=|���� �o��o��o_�xy��ɃIO���p�|��g�}v��R�������۶�&�w|���O�K�������忚}5;3$<
��!W�;�W� ��p��@dʈ��>����az�v�^��#?)��⻆qC�3�,��]�j;�O���!B��Q�b��q=�}��>�z@�5Vּ�����~��7/^�u[YY���{����|��s�΍��d��I��r��}�}o��敫Wnܸ��H1�2�m������W�׮_�������
ғ'O�߿���[�n�{U��֚�4|�3���_�ؐ�'��}�
�d�	�Ӟ|8������Ǐ�رc|||�ƍϞ=�޽{�}��ӧO����6o�ԓ^
��ĿE���w1V��R�1A�&KvX���T��9���7֊&)���9����	B{�ύ���7I�u�"A�K�>��������5���:���ķ����.v~k�HrD[��a��~�����<~|�ƍ��n={���ӧ���ϟ?_ZZ�V�r��z����\������}����G����lavX��#G~��_��?����D322�}�����;w�ܿ�֭[ׯ_?�|__����W�VVV�Pq�ě�V|��G[�l)g1q!�|�ɋ/���۹�9�L�:8��7o��700 �\XX���p�Փ���o���[o


��
�Z�p ����cȄ�'��h3,H��
d�Ĕ:A,j��u
��6%���V��)��T�ya�ec��n�P����K�&�*�v�d�u��nbF5����jÛ6

���MNN>z�(�B�[����j�:<<�y��C��9s�ĉ�u��G�*F7�L��ƙ7f�g~��ܽ{��R�4�ixh��*/��x8�pey���/�հR�������Š��_��;w�ۗ6Eh����������W_}5==d?�Z*���iqiAA���V���Ғx��Ν�����m�V��7�����t��-~+�~���M�V�b����P,��Kp��Tֶ9׋FkJҔ����6u��)ꡢG��[��2�3���r������er�
�f���/zM��k�o��9��6��7
�>uj߾}S�ݸy�ɓ'333���B�nXchhHlp�С]�v
��B�X��	�����^_�g�}v�޽���zn~n��䣩Gb��j�b�R_��u����G?���ݻ[q72P�V����������/_�|��5�|��@A�*Uë[58�����{|���hɯ�}�Û��}�ݧϞ޿ii)�	�9���߿��S�:��0���e�r G����k3(��2�h������c�X�ᑔ��J�h��|d�jps�v�_��&@��E��I1AjB���2ל*�	6�鬬�E��K���Q}<��`�@�� qOk}}[�ƶl�r�С�Ufgggff�5�!t�
j�Z�:�jk��������w�~g玝�.]�|0y�굧O�����}xx8��t�̙M�6ժ�"N)gO�U�F�~�񏏿~��ŋW�^���z�����4ť�ڵk���o����ÇŭX��:4 ��d�<��x�7n�.6/Ĥػ��Q��T���U:�f����fd�g��Fd�n��a�m�[��DB�qܭ�Q�|L��)��u�<�����x�C�j���߿q��%���[o-�O��1�>:7����@3h=B�RY������M��:]�/����������徾��7o�
�<���WJ�����ٳg߾}ǎۺu����b�dT������Ͼy���Ǔ�����A壍k�ܹs�]���uŢ��7
�>s������Y�0�c��]�\0���*P���L�f^��wL���ˤu����;L������F����Ƞ.��|�m�K,�m(�Í�j�^��1A�P��Ź��{�~���t���������󉉉��V�Zݻg��];W� �H,�����󆅥��c����+++�AOMM��s*���߿y��-[�
��A�N�&��X��b
@���w$��Q�|vqI�/�4�
�a��"�iR�fM��ܩa��K.����X�r�a^X��0QM:a��eRM��ƒ�/)<J��M�*Y&�O
�9��	���#�菞�I�Δ���E�����XB9�����N0��9�'n�`�&b�5�Lx��G-%Ay�7�������与��*kQ?���r�
���E!ײ�),�EZ�I��
j����5���<�\(:.5,�z
�U?��+:�<'�O����Wڛ���d=Rl���LY\����2�E	��������@�Ǥs-;��9�PC�����*�����]�R���~���XLJ�����Y: T�(���4&�e�3�&�qS�1f/$T��h�'tF�Jʤ��_���j���h��
�چZ��HU\��X��R]N��d{��h�hy ����<7����r!JC����[���� q�W-ZL˯t��a��P�"�.E�wU���a���o��{�l C�x��n�ӱ6�7h�h<�QiW$3H�8�Iu�����Q.��i�wr74�K	b�
�w� az�h���/�4��?��0feق�Xk�9ŔBp�7�5Q>����@��Ô6c	
�z�G�Z]NsSp�:rp��;,*ǕB(�Q
"R.8V�w��Q(���LJ�7��8���c�Wgvotw�c�ԺŎ#8Г(R��5��8�\wMj�TUM�껦:�r�lIa����偢�X��@v9�ڙ��vG�ө`���WK��o2߽(��X:���J��z$-v��ZA�|��?�ښ�t^���(���9�y�f�!��9 H�/�pI���&��J�+C"�ϼ2����֭dvN��y�f���a��ߢ�Ӎp&���S@�(j9��7t%w�*�0׊����v
S��ַ�V+�hqgj�E�3�||�.��N�\=b�F3fH��G��dM������8G��+`&�SPV#�2�y^w4���\��ݗ�Ԝ���Ak�Wdvl@o�
b&1���Y�Fk9b9gt��N���8A�A.{��O���m�㉾��Z�;;�ڕ�e�	��\t]St�T������K?C���u�_!�kB:�lR�� 7v
= {�0���z�r�y��|͍��I�ak�^����
�V�����.cv�ީ����g�ד�� t-��-��"6��<кTڌIV�O�x&�u����U��s^a�f)8-�k���z�Jm��O�tgd��I�U�W�W}��n���'���ɵɸ%n�
+�~�djt���!�k�bd�
$kd$T)[K�}�;"�E}.�����+���u
���^����R�qD,�L��j"�11A٣�bJ�fZ�f�m"�]-H��}&�jsN���(!@��hi�8��@aT�K&{&�Bё�aZ���d��r� �6��|S�kY<;���|(?�E^�bɞ.�F��+tQ!���"���� n�&���$�Ƒ[��h�V��VZ|J�!㰁° Cy�H,�5�Ɛ��U2�	Z߼.y
�� ��k�7*�Hy�\O
��\���+�8��cK�V�f�Ӫ���(���Vb�E6�=JH_� _I�X�6��J)nv="6P��4��|�
��0��K���І�VtE�E�4UnP��AcN
�	��N_��O� �u�3\uĨ{Q���TU�3R(Qrf��z���Z4����~1<���$�rS� =^)�`���bTdQ��ie% ϳ��`
�D��8W�6w�q���I�
A����¸���9c����0��n,3�6��iwx:'��S�s�,�"-�H2p�Ղ��~���b��J�"+��JL�.DшMp+��(}
Sj\��@�bB
ȧ<�UZ�LX!H�[��^+�5���h3�P�  n4{,��#L��ZW�j�5��Y������4-Lo{�N�2&��r�m�Jmb��Ú@�����(�e����+7�q��@j��az@PD7;���pG�kVL=����v�L�b<:��L�Ss�9=�:%��J�/ezy���m<�'��r�A��ݶ���g�vaT�
4m �6��J4ŕ2(cV
j�&�\�"3�
A���h�x�	�O�Q��0��z��3��n��3<�X���P\��֚����ÚfK�GL�6d�}��A�a����|1zn��å���&�
[��P(Z�U�
w��԰��
�žHM1έi�Kk��]�y:6z㰞� �p�L5�MOwm�gN���PK�u	T��
H|ט�v�>d	�
�a��֝����M%��(�ϱya�#E�H�`�k����u;����R
kfÜ9�@�k��!ʩH�oE�ίHT릙,�d�E�2�<�y��Z�7�v�h�Ĵ++{� �K�IԌ0j��Xm����)Ѽ�X��ߪ1��C��ت+����I1F������`iS�"�xj�D��e�,K��D�c�e�����h(�J	y�̴;��R6�ym�)��6P ���<����F�D�aA�	S9 �-ø�8̢���r��>)��8�n�Xڧw<܉��E1A9$v9�oc�4b��}�D	b-����KS0��A@d1��2���Q����H��5���4��
做;���B(���3��L�����=A��{��0��1~A6�tjv7'&�O�[um��09�kN1�D7�,�#�bPz��#��E��r��g�l s�oV�aR�0j�E�T*�Z�E�˘�j�|bр �԰��B���6g�Ak9>6��a��C$�>�ݒFѮyI"��f�(%��E��"�jB]�ɡ@RRX�b
�m U*KšI��hP���Z�EJ믬[?���J��f���������f����	b�Zr7��C}�Z3�)�`%nr�/%��4{@�j���<��7^4~�
D��Z�y�5M�ug�I���a�,%�6o��Ay�2I��p*ZC'd�E;~)%�d�ДU�g�X���I����`O���f2��@� (D�FU�I���v��nCȳ6��酁c�U��H��5�l��t�y��A�(�t��4E^3�եԺ{Y7Ц�ۡl���p�w~7�Aʬ�^\�u��/��_ɞ��x���>4yDQ�`MU�Y?р �����^!�q9�L>1C���CᏑBH�KJ����J/_<O�&���Z� pS�EfM¾�S�@�dW}~*���3�����@֞�
a�
]�"�M`ɵ�����	�1���,9 �LqBNHEG��a<����gT�?��U�@��A� A���}^1A��tb�&��c�䄦�V��iM*�2za�hy���E�"$�@z�i�FD����0D�Dℒy	����y�=@�b�²�w�O,�o��WP����4k5F�i�D��	"�5C1�Pa�T���~�\�
�4��4>,��y#
���@�������nS˰�ʱ\) ��R�4j�EyhOL���<���n:�C�������͖��%����;���I���>Y�хR�DƘ ��yt@2V���i�@�T'SO���P�-/L+M��'�Ჺ��=S�_��0[��\̍΢S��-$�^Z)‚Z�H^9*���ib�������"��6��B`\�^����Wc��P ��@��s�@Z�0]�����*^���"[�[f�m
JZ+Z�A{�+�:A�&y��S{�'NkOi=��T(y71��m[7m�~M��@���v3�,Yc��ø(YJîk`j&���YXDV��€�@�S���L��K5���H�1EQ��V�W
QC:AZ\Y�)�<����7!X�9�:��
�L�d'is|l�i�VF	��w�@��}�e�1A^f���G�l s�x�慭@a� k�h]�FZ?5u�|m�
Ae�oa�T�Pɳ�j�7�L_� �_*�#��8bԚ[�[R��>H��~���2����2ZBW�-�[�GMr�>��}�g(J���@di���D����@r�h��a�3j*�P�35ۅ�V�I,��
A=֎�NP�2��$��k��5uX�� C�?WkyJyz>~9�!���3Q��3����HP���.���
�Ɠ�Fj�h
k�n5��° �-�l�8a�Z���@�� SJM����P�����?ғ�b}�aAz#���6ܙ&&mfls��,m�Na��l��t��4�M�0���߇��'89���p6&���Y�\���09/,�S��@�kB��{$ �s����FW��('���F�Y�&Y�Z<9->dJ�T|n�8���D&����=)��lh��%����~X~�Ԥ޻9�fS�^�r.��f���*ю�0�0/�Z(:& (x�#7�ԏ��0���V���)��6�L�<��G����FEo*�%�|.�:��RE1�@vb�g4Y��J4�{@�����HM�0�
慱h�/�<�
E��XF�S��<L��D�㍢�����UH��NP8 r(�m���"A,�R��i�Je�#���)Аg:���y��Ndۉc�9U�Qh(�&i4i%�����T����]�]!=lGN
#�g|�k�kX$����S	�`z�x�wX�
���$���tV�Y���<b��qlz�I��e[Hڐ#&;6_���IV�(��ɝ�?̾��_d9�@���фO�S5u�C�$�"�$���ѧˉ��+YGK����P�I:��@rXE��5&S��H+�k(��W�&��<7��%�0��n�s�9��E�ʴ�
^QXs��
d1{l=9�^|ܦ�1����K[��ؔBl(�Q�8��Ȕ��ߝ����_�ka��5l C�@h���"U�X�J4E���Z5Ż�s��ȉ��@�^O��Ę�N�� ))�Ի����C�&��3G��k
R�\!�,�vU5�)�� 2gz�OvB����hT���t-��D��JV�e�
��Qs��h 5�KN
_�F�	�f�)U{���5�Nے�( ��2�U$(y��dè��S;��t��t(]�ۆ��Ŷ˶.��D�d��e��X=��q�ʤ���d�ˤ�M��2�L��II0�%��F�9(�,R��&a��v��ˆ������C�M%)��>�׊&i���J6�a��1AJ[�� r�Q�� J��=�+a��d����9z椼nk2�x@��FZLEڄ�B���@$%�Y��Q�]"�(
s�e�"K�0g����'��C:ע(kLP��m�PAˌ^��m˝_L��,F9�Ad��}"��d�9�D���Cd�cq�&}��Qޑ��t4 ��`�����l Қ���f(�Lu��U,���J;�5����E'd��C �(hT2�E,6��$��;&�x?�,+�c&d��PIUC��0��Ξ[^Gdr�"Sqh2d�Q�&��  �"=)Lm�45LJy j@\�ޚmړ��
�i��	ú\Nvl����^�̲���e��kY�drJ�Ƀ[�.cfm�F���k/�#T�)����H
]�W�0Be�3zC�1�
��h�>J}��c�rd��;FPBi�8t�}��ȉ< kqh�X���847և6�@̤I!niuyL��
�š�E.ٙ�9�$-�#��N�ˮ'�bB�1�1"�h��'QF������$�Sr�\�{�T��h�&^`�����-�S�(kIް�r��<�j,��,����oc&-�z�W�FY�?�x�^�V2\�*g���b@���H�x��I/�jQ�/� jք6��H4�
�D����I��J��O@���Q=�[��\��l�4����o�G�\�bƐ���V�3�A�:�c��a��Y�I1��A�!J��32����M��+C���پo��=dJY�}Y0�0���== ��#WF�+���@LɕQ�I�Vfjy �������G�s�� NPN�O������^�Y�ۊD�&��
tgl�<�֏q�H�Q���,C�b]�ݛ��t�>K&
L�êV�9CMdQBȨ�Ț&����[RXD�����T.DJ�hum�Y\\,h�>q�T n�(c}3j�*�_r`��y�maij�e���~P���B7��T�K���[� K� �a�	򳄔Y^�+�~(>+2��M�&����������
��d��
���6�"w�jf�ņ�虚
a�6�o���X��� l~�2���,��9�h���#I܌n�<�41f-��6����� �Vk�K5�)�l�!��iY5�B�(���<o���lA�
{r��dP��D�y@��5P���98�Q�E%'g�.�hv�1Ȗ���@ڥ�Š�ۜ��i�0_��͡)���]�͊@��c�,�����	W��H�&FR�`B�m�A�$��=����t���"�>f4���@AJ�P�e�ȐF���
Dr��KD���9�´"@�Ԭ��>�1M@��N=�p<�&M��Β�Z菻�X�ttD[��\!5��'�v[7�₃(���.f���R��%d3��ǃ�-@w�(�o�
"KV��J-�f����
��Mcx��sc��pc-h�Pt4A.��Oc����{��HG9A��"##D���}G�l�*oZ��Iib�v��cɑA�4aR
i�d��58��Ɨ!_LM�!B��y6z=p�]�M�(-�I��{�(_�G���T7UR��HZFX�6�%�,�a�nڪ
D�=ES��)��ih�Nn�L�PI������C]�84�Xa�aA���#�i��}�mf)�A+J2�l
�AI#c���t�+D��
i�c6c��
:���/X�}fDf%�8���i�a�X���@�
��W�!�
�z1j�W���Mz4����(��&4���LJ�����` �4��u_&�zt��<E���9o��;92�]6�'8�"�b��� D��(!e�h�v��A>�"@+O���YU�RQzS�W�A@69J�ua�x@
"r�	�l �z%g4*Eo��J��"A�Oo�*���>�}~J�h}J'*͹ɡ4V����G�̠����������,F�|1��k4��7}��p�D�t^������b}]�8�)_���0J��AͲ�d�M�P ��� �6��@r"����;W�DS����J�Z�	�<	��#�ϸX`ZZv�����}�c��hqi���ib�1��Ί	�/�A$C�/F�!Bd��q��	��
�V[�d}� ��i/�Eh�>���YBL
�uV�  2�QT��06�d�0K��Y�ŒQF��k�K�ey�>̧2t������0w�����5r�����_� n�+�~bL�!ZO;G�'� }���&k��-��"d���1}jÅ�!��� \�ށ��N��be��	+W/��&Y1��q؃����e��T�R��	U�ȍ�(6����"�}M�R\!�1�h%Vj'�+b����UFoH=)r��G�]���I�$-��փ�(�VL��d���.���%F	�t����Xo��U�c@���oE�����	��3%�ك��?�q@��#K?f
�!{(�t�]��?�h E�G�-,u^X|@PrLJuo-��:AF� %�.so����գ��D�41q���0��s�l�#8H)/"i�P�I��2VjN_Gj����ސ{9�l��0@b�ǖ�d�}t�#��5����W�
 f�tM��LM����@d�#-��
D�xS[��.mU��m Y�T��������B��	J\7�i)aA�5�%<ϸ�����2�P���S�L�A�9"K+A�,!��12��@d�*��o�'~s	���Q���������z�/��}S�Rm��b@6Mg+	�֕l�U<�
5�L�F�h!o�E��뮐�XHk���R��E�6@�1mK�!-P�{׍Vzև��#�l5��fE[�Sӹ�|^���(Dd�'M��!B�%Dr-!O��M@�@��@l�
�&����%���r�ȑfn��L+��v��)���	9�ƷSX�R������@�Bц��1���Fj|��*�qaA�%�E�r23�ژ&���!;,��fk(��B��|�E_��ZB1��}��[�G���X}��6\ӕd�w�~H�
5s��g�)_�kB�e�����?���Bd�d��'���ȥ�MQ�#y��N,�����|8�=‚��Ar� C+1=M,�Hf��
��!Rz�+�$_�	G_+~�ʌ��5f��\������`��
_�����Y?F��q�@�2M�D�8 2w�b�J oȢX�ז�
��J4��e����Qt��� c��3��$�C\���A�yZ"�Le����L���Y:�?�,!BK(�+���g���@��B�Sq�9
�Rȴ7n1z\oV�wtfL�`��=&�#�4�I�P �0�lǘo%*����zL?�Z3ْ��u��&b�;ZXP8J�9b<UϩđAͳRk����l�Aj[1�%�g��)�5&,����(ds��_��)Àa~���ht7�L��>���g�i��.y\����c1RM2�%�b^����li��_�0��1��𼀨�nv��E��Z2q�������ގWd������k5�H�#)��~y���1���@!�߱C�
l��a�,:�3;Lۃ����u��8 2U�E���DZ
C�H�	m��(Q^X�*�uzAWvl�h�风/�=�Ӣ����2̠�FJv����-8�)�y�N�f�!�W�x�a	�3P��1�t�~�,�xJ6��M��}�oyT1��r|��4�,����)>�<C��Z�\6PTu�e�^�}�#��5��9���ֶt0e��aA��d���|hQLp�m�F:͓�fM^l�	yXBƵL{�I+w�k���}lq��{t�G5H2�!L|��dY��}�G��n�P����DqZ���0�M;3v�oZP�]����[�����ӡ!%�	J�#�m�P��Tw�Z�Q�Jl�C+�j�5c�y�p�ryCJC9��,)c�a	qi%u��_56�q��+x�݃!zOi�P"�/.I��G叿VZ�~B��g����L�@����f�x��ϙm�,
��\�.���aJ�h�*�ǔ_:�exJGS4��oL�<�2~&���&Ք������%e�s�!���m�#��ks<�C�Dz��0x}0��h��,!��*@SH�t	���Q��@���vK�O������k.�2\_3z���H�˧�DR���#fJKP=Z>���g��42ڱђF��A�y�Xi�1Jh	EҺ��8cH߀��Cэ����q�q@��`:%F�8��l5�:��@&M� �%�
D	�C+כ�SX�
d* ���R'H	j�D�g٠��	"s|��&G�%���k��&צ���c�n�͎�M{@�����2#��p=�
DZԏ|l�#"+���	rH6gy���W(y�	�T6��`Ŵ�����MH�������!h���4�O�J��N��e��<��H+$d)䲄�!B��Ioro[_r�ܺ��Vd��ݟr,����!
*N}a�*q��ٿJw��f�8�|���V�b�ȿU<Y��hYB"bI
라���9Ay֍�9,�����Z�S��5bp�T��E��9�S$8�,���H9�"D甙�uc��n~��i�S��%w���;���{k
%��4����+#���m�"G��[�O#�
D�
�uH|t���͢R=�����S�5��	R�}R�%YX��J��G,G3H��\6(R�G�Ț,F�@>�2G��s�H��� ��93�(v��\����|H���.̬�>3),c���"�d�]m�� �
��PW���Y��😼0�D��u67�C��:AzD���aA��D+1��R�A�EY���r�%Y��Ť��\,�[1�܁Bd7�\�b�UҼ�}��	�/B����u9��+X��C����D���C�U���"��!��m��mŒZ/�
dӨ~r��^ai���ز�ټ��s�k�Ml�p��I���%^��߅&���u�r˥Yg��Bb�b�6�7uK�}��Id[U�|r�*�9�>��P��ԙ�MW�,-�G:�׶�¢W��ڜ����kN�O��t�Ei)iL�O� �6�4�m6�o���
�#5Ed�
d�f�1O�d�H|�#_��B��k�s��J��#���k:�g���2���8
�|ԙ9�*���/��B��AŇQ�h�6�����O�Ǹ�ʈ���"k�(#�^0�d���K�41��
��Y9ȑ,FgYJJ�αq��s�"���1d��<���� >��t�=��Q�(&Lqp�@dK#{�ӥ_�P ��s<�;�L��Q��)��$;�4���n��Y�K3�5U���2�!rF��/w���QL������x���|&�q����Imf�wz����f��vܑ:�N��@K.e��R�T����WkyZ���6.'�����s��#�Hʽ��+KD�&bd
�![��R�"�b��!B��rv��5Iҭ��%%��^�	M��hV�ͺæk�!?�Ps��xX*Y����S�(?H:�߅d��c�kM�2�9>e�oe��Il�Hu����>w#:�bb}�c�����j�H_2������)y~
��D��M�O9�,1A��m�tȒ��a��g\:K�P �֎��|�A{%*����R$��؆�V0��
HS�f9;�.(J�h�ֆn���I��"�-D�6ǼW"��k_���:�e�+.<2���'N�t�cz!�X��9��A
�h cA�U��Ks�v@u[��k��z49H�orSW�S�J#cY�@���[<neq�Dq�"o(v*r?��A��7q�y�)�Obae�hq�..�U�}Tf>�@	��Oy � Z��#�F�K�x���g��2�x��(>Y�2��g��L��e�~�}t�O%c��ҽ	��tz�S�$HK�Ԙ�EJ�Qa�@��@�n�_qۮ��� 9ML)m���-2(�z�P���Y�;YL9���E&Kdw�ҭn��eX�;u
���D��<1�)�"�1���"��`��)�mu�@��Ld9k��v��F�j� �Hj�G�{�����O�)F�J#[�O�D^��<��c�f�1A�t���鰄�	��c���W~%����Q�Ѻxv��UtǷ��:�	�qyl�ٚ��5�A�ݑA���D�2Ж���Zc�B�%��u���,Oc�����%t1���ܭ��q�����D<����⊨$��|���?jx�]?=JW'�q�����\=wx�����<%���rr���o\�,
d�B�^}�W.�6~K-�^R �H�&@�MO��_	s��< ʻ,�C�)D�jQ|�0O�!��QZ:);LN�ro��-M��m�zwy�vKi��1���)c$e��=qL�01A�b��!�u����Qnf ��'���~p�y�&�IJ\�a ��t�@&3��s��ޖ� ����P<qX%��w���{�E��"�(!���f��k�2~H�d�Ey���4����P��%�"��Ϲ{@��@��\�7���ˆ��5�J�9��	G"3�g4�fee�M�L�5F�U�,���Q�����#8�Ҷ�Gw$R=��!��֢�R)nj����ꆖ��k	��X�H���s�=�df�_�]"3��r�Z�@�v�]!�$Y`y�1��	�����Ԃ�������7�A�P �DE�����b?Xfj�=�
�Ĕ�"�R�Y~%�S�f,$���Ǽ>ڍ����;��
)�R&�2��
1A�����d_��\��'-�\D��M�owQ6X�3e�	r?��aA�#�;/68�VM9�d��ӛ��Ȇߚ&�y��:,&Xgӭ�P���6M�%�ސSH��%�kyT"���,��㑶�1 (�_Qr����ߤO��a�N�|2Ũ�~P�����e����kXʵ��#����R�H�Z?q-��+�"K����ivJ�Fi���8�`'�Y�"O���� ���<�g��㣁���+��cVȤ��THZEc���W�=���Io"XN-�&�h��͠�m��n��gKN8A��wl8��4JD�d1*�����C�hxZ=� �2�O��"��TQ9-�o��4]^�O(P��kOyG�?��ӝ ʘ&FN��Rf�Q�d1��S�x�<]���f	�2ǕZ&F�ʢ��m�ɺLƁ�d��S�~a�/?�p�<�u.f�J�[[pP�Y᷀䲾��>^ƐcQ��� O��-NR���<s���ēf�P�P *�
�-�j=9���h��}~+
J�Ǽ<
m������߼c���� ��,������VO�5�@��K��$M�ɿ�t��~e��J$e	
�3?��	r�!A�_��w��AԾ����M좓g����e�ޡ�
��bi��d��t��QQ�@I-�����INP�M�Z�ǕMkQ� �y�^��-v9,��/���%�"��W[-�r��Da�[�0*�<�	*���[� j�D-4:-@y5KY�?���Jj�e���n��.�r�bm �h���8'(�����R]�� *�%�X�����I7�PB�R�Aҩ�VZ
��Q�6��R@4P�B��	���A�g�e�}�P��R�9(h��)H�K��j�<= J
D��@�ky�S(��R�y	FL1}���Q�-�D+)"��S���2I
 *����@�k4Pv��#�y�:A��#�8�9�m�Љ� �
b&vin��0@����*7l�-:!���Y)sa �#)���j���<�2�(�y����.,�YB�9�����M���J)?�(��%�
���O�QR'(�Si�D-��(y�u�%��Эt�wƞi"�@T�d�v�O
����/������A�&_�|��YJ��>�K{����%���񶁒z@�h �E��	�B+�'�1�,SE�	򜴔�"CPr
�D�y�ĔA@�>�+�D�l ��*ёK�'��9���-�~y[B��r/(
W�����y�j��0�����k�d�c�:%�XB��"C�.��J�%�}	�d�>�
���@���v����'n/�d(g�H3ZB�Ձ�C���ܥV
q���l隱�S���"8A�"�ǖ��pXa	QBW��C>V�=B.*�IB
H�J�q1��D=`	j�;�����[?%��?��o��lo�8�Q�8<7�L�,�v��2�����s��eX��c�e����㬍�_��`Q%K3�_��M렘���b@��.s}���a�>Q��������!ݲ�z��ܤr�TLv�2\�底����I�'�[��.v��d�~P�y���r{��!����"�Z(\����9I��ʎ�:s��z@��0ەv�T��l]pP�fZ�Ee3��e)�콘@*]���.Le��Q��҄Q菱u�D-7�(K�����^6W(�"�e�xD�Y3�\��/�ֿ햮,�tE(P.��G� ��5�����NZW��J�׻,~
kULL%zH�v���Qsū�r�,
��n� ���x�yه��o�iFq�N��z���!P��l�~���b��.3����پc�������,��OxW��9-�B�kX�KHiQ1a����	�"�����V\���m��)nr^Kd.�'�_�$p(2�͂�fv�\�D�mQ�8A���*�(o���yN��Q+Wa�Gx��mt23�_ve����(N�
Y�qh�&t�Dm
�mз`�&]J(�=����nyҪ��L�C��O�B�3���J�mN���u�e�sJ��Q�[��Dj�a�Ut�nB�,/�تZά��%������� *�D��y�B�ܻ�hдi��W��h���Q���sqq@H�!]��"��9y��+U�W�n&'��f)tP���Pj�O������� ����[A�2�GE,��\O]�;[�������`�nKw;A�-K���YԈ/��k	+���������������d�GO�)��n{,y�؝��62�c�ٸ��]ro�n��5?�(Z�>ڥYҝ��T���b,��ר��dg��Q"?�y7�6�������j{(��E�L�v@�)�;�VUt-ԣIa�*�Z�\j"��1�n	��t�<���,��̖d�.�]���V�Q.�D�P�kΒ/|0�KtDe3�c%r�I'O�-�H�^|�G�ƚIm� ���zxJf��t�%��ѶL.��m��Z�g�@�����C��GZ٩�g�Lx@��t��n����m����(]�uZI�_~g4DZ�d9b�����p(�D,!J[�H�8u�R�1�1c�GK2�; m,����d���)����Jw)
%�Q<�u-����$We��U��s^ZP^�	2���#5]&��#ٍ���&��-�(*
:Mr��Jw�˔��Ō�\�o�@!�3�.hR��M �A9��rZ-0�:8A�#/_K(����x�s�e�=��:�BUL��(��T4p��żFy^��^�9�~:b�b)���}]]�*���Z���3ǡ��س�,*b�f�'�:�s)[�Aq
��+�*l=p����Ί"�!�]�~C���:E���i/p��ǹO���9>��wE��V����<�	*p|:�ro_��y�YaX6Z,�`�8A��E�7��;�� PN�֭�K�����mJ�rf��O<h�ʃ
��k´e2':(�9�]��GƂ�NP̫R-�Ok���jn]��Ξ���֠��\l�.NP7�[x.��� L�&p���T:p�@�k
�$(Hp�8A��+Tpz8A�� �^�	0��4�Շ�IEND�B`�PK`x1\�|�K�$�$assets/images/landing/09.pngnu�[����PNG


IHDR��4�,�tEXtSoftwareAdobe ImageReadyq�e<%iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.6-c148 79.164036, 2019/08/13-01:06:57        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop 21.0 (Macintosh)" xmpMM:InstanceID="xmp.iid:AD8C66F20A1711EAB39BBCF49119F7BD" xmpMM:DocumentID="xmp.did:AD8C66F30A1711EAB39BBCF49119F7BD"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:768BA68F0A1711EAB39BBCF49119F7BD" stRef:documentID="xmp.did:768BA6900A1711EAB39BBCF49119F7BD"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>	�$!	IDATx��|׹��v�%$UB���؀cl�ı}�8��Ľ��8�����Mnn�M��f;��\�-n�ި�鈎�	�!�W�{����9s�̙-�Vz�q�-�������y��x�^-���*.I�m=o�K��yI��DK�?�h��QM�6�%;�|q
@��i���BUP�wIU�X�|I]!F]�ђ���%��T8'�j>_'�����u�o�~T�Z*\MQ�I�j�T���O1�ծ�oQ9x��r�EMQ]|��@��R�V�){c�cb.�c�
Loq��NTG��w%��n�$[Q������O�������./�D�'-�V��6RƲ/G^2/)��%|�[+s{P���2��S�P�υE�"U1�_/��$*L�$;����&��\'=��{�H����%�Kc��b��SR��_��	�%�'͡�����=%��l2��%�uPOPjlK�8��d�1�H�	.�;���F��D��Y.�4��UӇw�����w �J�$�?q�f��n��(�����*#0˧���I`;R�F���`(��pװ��U�51���I*|b�ȺR��.c�*����D���&�$W��߿G#RO�_�^��e��`���B7�Z'9F�n�fbVd�jVJP����2BL��(ya׋��ו�K�99*׭��Õk�'��2'�L��K�.cQ��^>'�S)_L�b����yH��,�!M�n���#tl�v����
��U�&��I���c�HM�o���#9�y���ȐBL��0�a�*E	�{-0I˓��_��nT7z�d��W=)7%$S%{H����JVr�S�KL�COL�b���$��t�TL�'���#1�2��
M�M
���Mp�[͕���d�2��8�;��k��711�*ya�¨�(�`h�.�xNB��L�\�*� �O�2^�� Өt��.b�a�m��܎�S�RP��BL2����$�)��E8�3�(\��]#�a�6�
=�V.wb�����*��.?Q��SwL:��Ť��*L��0�"�(�/���k�a�6��sI�]W��!~��#Fu�])��pE&QrL¬1
ZL
1�J�M���s$�Y�*�؍q���'-�W�	wQ�n^�ê��>ʿW���ޜ+/�Ud�.�$T��BLxa4�t޸ۑl�z�$�纪�b����O"No7*�
\0��A�Q�a�Z	��S���ci�q"&�!��0*)A̓֗���&�.���Eo���faq��_��m�?ɫYb(��Jާ3�}]i��$[��T⒲=�ZLob���$�ɶ�Ƶ�lN�٢h~q�"ï�|�'v��aл�b�a�{M�X|�4P�v#y�E����)2D�QNJ�ڔԴw=��:lvql*L�$��S��2���Q�+_x���\�D"��m�wp���B�*T1��)��_F�b!ʈjU"2�L����j�d�����?~q�2?���"[�?��2�ľ�YaOt�Ĝ㘤؜Ev*L�"Q5MQ�$~2�_Y�����Ƅ9���AB��D�b,�<��v��� fwL�J	��5�bz��Fq�*K0ZҌ0j����"w��+/jv�NDt��F<��Rye[�)�2���Z��@�^�c��h��X{�R�5�8��Jê��yu��%���/�}�_��g�mJ3��c�qtiB�$������u��
T��z�'|>T�L����O؝iM2?��d;��_$�I�N%i�W��&�˷2�1�^���z4zҼ0�Rab�`�/��˯U�6�Ɂ&!�(zP훈BF������/�N�'eol�kLr}1��У��D5%)ya�4g^ΨV	��:	�:���0�I&���/r'7�[��I݈Z�G:�e1�b�8M�1ה]%Ǩ�L��%�8��Tb�z�����f��0�矊F��.*��6{�v[!N���!T@�I`�"WmK*�>�Kʵ��G�� c[w�5�ġ'����I��h�^�3��P��d眃.$���~�PMe�5�)��̯���g*<��T)7M��>U�	��
�X�H�qꋱ��4���f����B��b�L4�����;ʄ�rí�t�+��]��Z[r��)�I�$�\G^Ǖ);���HDS{�!�H岱|�U->���#'�&Ƿ9�b�kK'uF�c�ʯ��z���u*��vY�R,�� ��bb�W�
�#Itz��n�� ��F$;	�Bm�mf)�^�e(?>=�;���B�.?���R7A剣�Ⱥ�2U�N�;i��RlU}���
�r�Z�,�=Jy��1v����U�����v$�^$k	FޅD��f'���?�HvQ�r��_��
E;��HH�B,��(�]ri�Z��e#Q�FyEƉ;&Q�1*�16���E�Tb��8	�Q��ĩ�X���`��5 �
T��}��&���w��JER��Г���Q)���/Y�f,��s-�� *�9&�N�شb�1?�Ӆ�x�%ј⋹�cPab���E��ZJ0�͖�9)^lB�Eq ���A��-�B^����I8��;�e��}F!7��/���(dD�
7Y)��J��1�k1))���a⊆q��<�J�q₡���"q*���o��(���I֪��@�!`-8lMrZO'�����/��h�L,���Z�f��[���$��U*�̳�"�Oq/������H������Ty��#<A\���T�]���\���$��ˑ.c)��Xl�2ց;F��V�cD�V��b��S��Y���֒�0����N��K�q�W�E��BԼ0�2/���.�JĽ������(��[X��RfD�XjOb��a���g�B;���/F<YI-�����8���F����ĩˆa�{�]0�TI�NP�䄗��m-�b�ݨ�Ԙ5 $�l�EIpZ���M2�����'m�C�G�_U�1��Jv���& /&XhC��Y�ќ{a�ۑ,�"�3��R�Q�!��/*��fw�������`l5��@��6*�Q@Y�!��>We�=2����c��H�Ѻئov��w�:�c�W-Qa,���0�!�jGR�E�pm�$ݑ����|��Uӟ�\�ĸL�[h��'̕0�\�;B�t�p�D����B$w7
u�s4aUPx�Y���h����DE~*F�Wd��{d�
2\mK;>�ܸD�Fʔ��K�O��R�ږ�j1Ѳ9�zJ�H����8[�3r@
;bl�UkN&���a兑�#�&ˆe;	F�#��g(5]�"aE��i��\B�b�>�Jb�\l*#����^���2Dڦ���
UͲ�%6�^�IH��b^��)&�Z��5%��U'B����ԎdN�1�"�%-��q�Phd,0B{��ef!��*/.�U�U�nuQ�@@\��jů^�8(�Xu&���؊22��2+Wֺa.Z��@�Jj�1�k1�$/Ƒ���&%Y	1���I��I;�ՙG-�Z�c������(G��
7�.$�������c=�V�\l+#�Š��Iզ*�Fb�kv�Xy��/A��P-&����gz���c��$�#�^���I .�$jw	E���/�+V��(�̷�J1���Gi.1�6�%c���tY��)2B���AF$��
�X;��P��$��ZL*
1��(e�:iJJ�
c3 Ip��a���8��h������/j�Py��c���Tt!z1�/���q{	���(�T�1dD�12G�@���T�[cL�1�RR�b�M1�&�XT�ϭ7%Yw$9b�V5�v$�D[�0�����#�_��:������`vp�ojPd=PQ/p�%�4c_�EQ�'(͊�� cv-��1Ҟ���6%s��H���z�,���b��aLҌbS�#�J:��0³�Z�_O�.��lc��"�C&��eGS]���#Y_Le�W_�V%�%��#/���&�--��X+2��i�lp�ؔ��b9j�q���lb�b��z�#�U�����a�˜u�PQ;�e"��yq��W/�%�%1�X��p�leg�	#�V�98�\�J�
�\�I�2V�k����=��=��j������#,�Z��j��#�1�=]��]�^���-b⌆�$��i(��X����H�F$��� �$��Q!*W���"�e��4�ЦrS���JicY	�*�����کP���1l�)�cD]B\S��5FI�	���n�h���b�BL����)Isl��gX�0{Y�QhG2�0�9C/�PP�p�8�_d݃�`&�|����q�Ug�0�A�K�J�B%e-�Ȟ1�/Y�>^Q��p��Z:D�Jbk��4%K-F3�Zr���X�bz���*�՘j�PI./U�Eⶁ;�m���/���k[�)�.��M
���/NKUiF�;ɮ��b��vN���W�pǘr|m
D^VK#c,|3I�b�}��QM�WG��q��0�ڑlT�d�hD�p�(X`�[	�?���_;���k�l�<����dd�L��ߌ�!>T~�"e=C|q���"ۉ%Fi��TTaD���`�A��Ԛ�f%�%TW�`j|@�%*SJ��5	.Ɩ�
��a���1��7����S�����1G�8H�]��O�a�0*�Hj]H�aL���%IC�%>*��P�&Hu�ƺ�*��]]f]ى��Qد�Ҭd��(��8����Q�b��
���'�\!��k!FM�1* ��0�rd�#Ral�W�D�#��d'�H��gu�Z$��;���*r�M��Z*R]ƲdSWdL}C�ck9��;9��"�6��J�Q��-/Ƭ��2�BOb��h�!#BiF�c1�:fF1�J��[�{AF�#���e�&aG��\
�U�|i|#�� �S@pG�L���7�
j�0R$��AF�#��L��i"!߃b^L�Z���@H�g�X��Ƹ�H�����#*ҘUy(ߎ�b�a%b�`V.j�{
=6�p�wZ��-t�av5{�G>���l_�pU�f��X��P�"�`���|�;&*���ǒ�V3Zc��͔�	#cH�*�CMC�5>/�&Cb������О35)�yIf���5%i���0�:�$�0��0�D��
c�#q0�HB�@�4_W�B��/�W�r�9z
�t��)Wj�O�d�a.�&�c�1��T#��4/FX��f��]툡1U�D�[��vn�U��zN7��Un��D��#��F�_D."r�n�g��_8/��G>���0ɖZ̧s'�$�.���V��[.)�2V6�G�<;"���1��$�ƈ�t��M��-I�� #��D�C�^�!J�	J��mp��k�$MB�3���	jqy;�x/�&΅1�'�}�J�aOJk#�H�1L���3��`�vʞ��c��%�P�:�E,n|e�(�ȫ�J�(��z�Xe"<	[�Bax�o���C
����۔̓��� \kR�����ZS�����u�#F�ئ1����H�MI¨�
c��nL*�X/�0ֹ�s������s�f�Q���\�f�%��Y����c����s���`QfJ�[�I5�� �Ȇ���`VdDY�)r�Ds|�b�h������i1�mg�͐�b�bj1�V�b̦V�p�����>#�È;�X~L�f�d�,d�0��&6�W�°��D��M�/<��fтD�!��c�a����ʸ[5�h�5�O��3�B�@�z]<�Z���P��zĊ��eI�ˆ���9��b���p!�^��n�-F3e���x�b4������N`�S�����Uq�
���EꅱSa��h^�v$6�y@��*/ю$�cВ�Us�ml��D�.�d�˘r{ܐ�#�Ә�a�t;��+Q3�9�Ah��_����92�;9��#�c�mJ����7+��
�Y�u��[��I=]�!��xJv�8qg*/pj��y`J���ӶTBa�v$��Kr�Ez��$������C��"�]d�ѫ�3� ��K\J��UkiF��� �X�ݍV�
r�u��y`nS�p$>2�(�H���(qZS�Ö�朚�bH�)C��%�ep��磩a����c�m�0�ȶ#�z��ND���l.�P��F �����3(U�����l�q��.$j>�
r���2L�D�65���5����.��)c��$���1���O���_n�צ�F�ȵQ�m��0��~'�%��e�`ʴ&���J���$������$9Sa4V�1w$�Ca��&#�r�9
�R��J8�:���O,���n���'ٻ��Z���f��@w�5TU�I0��M��8]�;��&#4Ȩ�1��l�l��|͓�Y�����i1�F�1l�i�e���j�����-��,w�iDb���4%i�hcx/�P��:����Z�1��hG��$3� i\x���9O�1�X(+�D?�S^���.���@m��@���1��#UL��FY�1�2�
c0�(�>87���$8��dc���63������F�ݠd�Գ�gө���+4�2�6%����F5^��$Y��k��s�dux4��h�ؑc���]0х"&��{d� ����{N]�1�32iFփd�<m���j���貐c"�1j��@%���(���j\31W��p��q7(�N���q�c�������7%��'Qa���h^�P��C�H�tzjqȑ2�_�G��fL��]̷��,r�P���n�b�^�+��[�u�
W&�<������f�<�f�rm�˷)�Fư���{y-F��V���(�%w�:��U;kQ�V�7%�>W�,>
Ԝ�+Sa�Ba8Y�pB�"�(�v)�=��	�k-Ơ���>�M��B�����5T��4c����Q��j��P���}mEM��ƶa�*�NT"c�QJr-����C��2ֲA��q
�bRC��1�>�4r�Q���q%T$�0
�yX5�%]�ؑ����C��/A/��P�7��r>-�<H��c�b�G��e"[G���ҽ��o	�=un�	ߦA-�~�Rnb��2/"���)0�1|�,�T�)�DƸ��1\������0���h�+.|���S�\n�{�9ks�FOA΂��!��M:�ͭ�-9��5��$�����b�I�!|^�xm���3b��A��¨to��j:>ŕ�����%$��6HPY;�7b}1�0��Q�\�N-��Q
m������F��Q2��0�M�v��z�9>f�&;�Ӧ/���Μ�Z�ԛcI���U�hΩ��Ȭ��p@�ݫqZ��	f�0OhF��i��&�,'�IQW�>olw�5WMGg��pދM�M��Ѹbv��j��P^�a7ɤ�6�Kz���
jxZQ:�>���)��D�*��8�W�~&�k;��Z^�@��Ɖם�c��U���M)�XD��bٽ�rD����æ��4��v���p\��z�JQ.�<p�@��D��2���6%*X#��?��Ř�"�edhM"ZbDgF��;@)��fNd��J���6%S^�΋!Ԑ�i��^��
�5��#a4>)&6
�w
1�I�Z�}I�ƙ�p�VesD�Q���Z�MvohMC�4M3��ۢ�_"Z�UR��T�HsV�1���������P"嵵C��
mJ�Z��}1�%fK#
��D�b�lf5�tl�B�
1t�0\
0bzI��-��V=�l;�XE$�*-&*�M1lj����(���2
?�Z�fZs
J"}�v�u�b�Iʖ�/��)��0�vP������T��M�k��k��5(Ǹ��;К	��% v�5;�Z0����9L5�U1��Y�‰J:��s��G�jё���`��.՝k1� j�%Yk��h�Ș�#hPb�b�K
=z|5�D� �ߕ�K�]�fN<Fj���"3i�	�ae��'H�Ʒ���S����6(i�p�ÊM��"I1T�!�j1=K�	�W>��6���%e��_a�����c�.㌢��T��4!Z�f�b4-��W�NPҌ.>#�j�(���֮��lM��52�Eqj5�����Z��;	�4�����p-Fc�,.��D����Fu��dV�!я`�&�Ի�&���R�;Fq��#��SDk�p�-��Cy�IDI��⌰�w��0��A��)�b�b�YS1gĄ`�b$�4KE���Y0B��1*1���.u
�g0i(|��c��a�b,&[[k1Z�ˉh�y��UX�&��ļW3Ԏj�������8z�#�.�Wt���H�!����bݤ�f?3�<����#�-ڔ,�� �:�7ۦd.�w5
	�Q��H�� ��j�2�Pe)E����Q�1�����������C#Q���dk��_D�i1ZP�јi��	J��^͜�+���@"&XXJ\��077w��o��)�/���f&#��4e�ڔ$Z��)�b�ϓ���57(i��$� ��?�ڰX��W�<����J*K�2�aj5bz�l��&����E�_-F�G�7C]N�{;�:���ࣰc4�h挘��`L�1x:��|%�B*;bD�u�c>�t~ \5�p]nL�5��%C_5.r�����{;7��{
���t�4���0�C�/�c�%̊�����B	��m
)-1T��t�h~�s�AI����	���"��#�nP���%����n�:E��ʴ�"#�`$;!Jj:b,u�PA�fš������Q1X��i�P_OH��Z$v��bd%8���bb4�Ϣ1�G�7�ڸ��
mVb۬�a����I��R>��ڈ2�+�X�1���&�$�E!2���3j1�%M�kTa����̩���$���f�kѠ�����_�%��R�a1b��Z�3�/C;]�&�M�B�	+2$�+a�۰��
�%i�9JL�K4�W�4(1#�����O�(v�S����Iv�8�$9=�/�_#�Ó���#�Z�I��'[���(%���6��r���GFT����'F�,A�Q֚f�N�4Yw�p:��d$�C�&q��8�Uy�I������r�}�hZ
k�1�)i��ּ/&ԣ����D��^cg�VR��M6�:�'���b�����='�~N ��"�g�AD��Zc�Ud���%vQ�!J����
�f�2F�b4��Ƅ�0T(H��4� �c)*�z��!I(SQ�ˊq3@_�(���1�da�b('�(Q��+L�nT��­I�)&���bUfpR�O�fd�D��@m`�E�	1L{56���*	�ÿ�k`+ev�D�t�mJ4:h�r�RT�	G�D1*C�"ӢiD+`L1#�p��kB�!<ǚp��)�$��_m�I�C��!�(�5.�%$�0�J��K���ZHO���P��7D̰�~���t'�_��+k\@������v%�#5��^�Ve������D�
�����Z�y��q&4Q�\jox����4�Pj�֩�D��Jd�I�0N]�SR>#&N�Į/	1���j1��ވ�EgM�xy_��%B�Hb	#�pC��f��
#�x�\ ���;;��]-�Ex���:�:��q����	�l���ZLg�K�SF[�sC��K���0]ʕ�SLx��5Ű�Ah����"��B[n�֚q�w�8b,c���1�:6'շ�>L��6E��Dc��ho����k�
��3LdӬ5�)�oM����$V`3b�a7,�`w�E�q�C/_m�c%˜^?@@`��
C��B��#�k1��-F�qS��]"
����#�����W
�f>J�
>\��IO��t��ꙇ�vr7�o���/�{
��<2���΄e�
FT��{��<l~���)��S�v#f�~n|RH�	�/��
1��֙��x�!�J�qİ���w�b�S`*�I��!�ń�&�ô��FT��:�xj̋��c����j&�	�(E�
".�Kqj��^�)&* �ya��S�8�{:6}�J�5f �����b�Q�a��z��ˮ�j��_>��S�3��h�R�{�4n|��D���0��&ژ��S��R�e
���7�
NSu�&(�%�8	��ƑτH���\ �������+'�����,yd�n4CwR$#��40���t�kM,�p�BX��E����">^��^�b�p���E'
u�
��;��J�H�ۈyQ��o�����"kP2O����0�6�����D��˛88�@�K�rDr1*��D:~�J�ڰ�
��
�!�tA�$�<זC%|�,��H�n����Z[�(۠}�7ň6��c��'bt�0KE�X�H:�Y�a7��4&�$���!��з1��2�~�"�c�bH���$��1QҘ�#�%	�բ���^b��N2α��ɋ#\Xo�
ębԚiL#�4�Wd�pZ����RS����-L�崘	�ń[��55'Rt�j�����L�䙰�"3�hl^o�5CG�!�7�ø"n��b�D$nX��NIG�JǓi/�z�pD��/FI��B�-�"��b���П�%�Q��ӄ�N2α����@����I|����c%z�#Fy��z��T�	�������+Dd�/�r
�/a{�!,F���M<A�5�hNL1��<A)�ac�	E�2Q��h�I��#��6nH��&��U���xA!"���r�bS{C&�hl��jY�ʴ����Ոk�1�St'3bB��ސ�F4;�.�DAF`bb���)BL<�F�^�~��D��٩5@߃uĄ*hU.4c�	3D):)h��&(i���RBX��y��1�(�0"1�e�c,g'Qaw�X��ĤHFM�‹d��^S_x��<��.�b"���(Eg!	'(c^W�GM1��� R̖
cF�i�� &���dz����^�~KU�S��}m�.����A�HY�$���b�U���D�F�������!-�F�|-�����e�4��%a�O��$SFLx�Ѓ�I�!r9��9"1A>ʅSǰ?"
���)�;�8b��ې/&��h��ahP�Ʉ1�#c�֤H.��H�e�
բ�(��Wp�^&�Y^�u"�ˆp����!���.�K*���755՜�����[Uu��Ѧ��'�������Ǎ7m��!C����z<�.@����9��!C;0���ؘpv/����4\�S*.�;�E
K������f��.�w��$���I�(��V��CⲥH�zM��/	X���v`��uk׽����v�hji���n�'#3C�����nWZVVָ	,\8w��1c�ddd`�zl`-���z�XQ�q�QT���e�4^��QևbV�Ǥ%UvIN�$�-9���DS{yk��4�z�xd�^2����*M�����2��d�	�{��D�������2�q���G�>��ӫW�>r���CiYy��i�GW�X����/��m;[{��++�߯?SRZ�p��O���Qee؁N	������}�����}���>Y]WW��ڜ���_دtxi��1�'O...�_X���C~�
@ҩml�
'&̳�\�b&S��()��H�Nx�� ;�7��$�"�r��(uv'�(��;�ώL"̟Q!&b�1�a�!ń��"�D���OQî���,��ϳo�o}��o��͚5��{�2yRVN���IKK��X�}>_ss��]���׿����'}���?��O�L��ݨNuu��U�׮[W�g��S�Z�mi��������v����ojhkl!.��d��O�4��9s�Ν3h�`��`�<N741^����B'�M1�Z�P�3���&Pa"�MdVh�0�h�n�:R{��QǷ ���(ǰ�=�vb�݅Dԅ�&�p�A(�PVW�b��*!��eZZZ�~���G���cƌ���w,�jIVf�u��[[[W�X��c�UUUeee}�[���>����]jMCC��?�����TW{��rrs/Y�`ѢE'O���s�%��E����ݵc��ի�l�t�BCffzY�����K/���~ Y�66%>,&TN3B�K#�V ���L1��h��s	�N���U��)F��Ji��$jjf
?�e�ա"1���#�i3��w�A�賴�����?������^w�
��q{EE�z���;x����/��b^^޿}�뮿>++;V���m���_�v���<u�UW_=o޼���Σ�N��۫��W�Z�r�򪪪�/p��+n��M��LA:��h1�(�V��)Í6ft�I�.�q�캓�'�Mǂ�i�Đw��;��$��*���w�*3ZWf�~�\����,�D�2N��V[�HQ��f��FO)1@g�޽?��W�Ԙ_ri$'/g��y���-ÇG>E�c�ڵ��9|��[o}��4x���r�Sq��ڿ<���=VZZ���ץ�^�t%}�.ta�z��ɚ9���o�:uj����������;[{v�u���7bĈ��k��s�r�oH��T�-F3�0\�#����0>�?��Y�!�7p�-$:�� �p11\X��7y���mʤ6��7J��w��5�I�`L��P�1dK&�BLK��w"��-�@���\ݺ�k�[Z�Lh.�p����/44̜5�~�e466�ۗ�r��>}�w�������A@����ɾx��
�
����={���_rРd��������?q���w��|yҤI���\�������cǎ���;�� ����˭S���K/46l�ܺz����#F��@bin�iь�̦�H8=%R^w�5B	��Pwa,�UC�(�L.��Ԛ�~�c�~�����Ӡ-��kj\P3h�e;�7E1T3�(9O�
�X��ގwbj��	z���)|�����C�
����ߛ6mvW�����C=�׿Θ5������\��ӧ���o�_��ƛn��_���G8{�죏<��/0���[�dq~~�pɽ{�~��_?�������o�貱c�N�6}��)C�	�6z�p�̙e˖=�O�W護}�o,,,�~ Q[��*�,,F3��h�%և��I1!ł��D�n�p�����(+�U��Cؘ�@�;)��Ά�,i^/�#F�ßѿ���p�}�'�Ǔ."###;;����?,((�1cZNz
�׭��/~����|y����٬�����-�7o���:}ڈ#��u�����<��3�����?x�W��J���N�4�h`cCÞ���*�����7m�x���%�%�/���]QQQؿP�՛�l)))>�D=�`sٶ���
C�&-�1��2*��{,B�3�<&U �=��8�Aa��h\L��At�b�H?���8��,,��9�=X�a��H�������I"Ę���i!@������{}�F��|Ksm[K���=��d	h$b�U_�__[ ��m�kk9��r�����?d:�B�I"��u�֭]w����Ε�&��6���͛.Zt�=�dff&�G�!C���`�]�^��W\�v���M���W<��_��ۿ��o,Z��z�QFFƄ	.\��+o�����a���Ξ=x��+�;6d�������K�WT�\�۶mش�lTYqq1�Z�!��0����ZK��=4,�h�~�!lO4��X̱��1��Dj�
"�|4"!�2}IL@��<���ӷ�5A>�y@����=�|��s;Ξ�QW��������|4-M/��2s'��?�hؤ�F��Iϰ����im�{�v�ٚmgOW5՝����.B�ܞ�����E�WP42�� #�
G�ސ!CfΞ�����>��n@��طo_�m����OZ4����}��׿�曻w�ܽk���S���r���'����K���K�T� lKט1c��ʮ��'���>��{�S]]��/~a�����W�_NTW���K��\RR<���5S]����YH��A�0����H�mg�-
�4�@b�c�
k���i6�df;���~�STBҘ-ӌ�a�c�&�z�#F��χ	���`�X^"د���<}�7�J�߷�\�+G���o�c�w��9�����_������w�����ig��N�s��lKcv�;ϓ�.��4P�T����w�cw�u�ض��sm��>o�__��B��@K�3kj�m<s���������t{��x����|���}�E	qO�nD����5��+C�
��7���0��.���ǎW�3aℾ,Ĵ�����p��/���
��e���VTT̙3��ٳ�6lؼ�r�財Æ�/egg:dۖ�=���*5b�HD�?AGL��65(E���11�	�ez����s�E�Il�LT��#&� ���z�vj��%�Z��)Y ���"���\T�â�*��_�T!@9�p�{+�w˫�lm8_���D��ӟi����nmZ�f[�ɦ֖!9����?��~��SG��kÓ��><���VO��{ۘU�:~*�Xۅ����uO���gN�;�?=�(;֘���6�wk��s��N�
�>Ii���_Y��u�>��O]~��]���9w�n���C��g͚՗�TVV>����99w�}Ϙ�cc֤�rL��~S�Mkim�^Yy��G�#F80��.((p��mݶ��S�N�A��B��=Zl�Sz��tD��́�ƒr\�����B������x�F�~)l	�,-1[k�#�
ܰB
�L��8Aڝ�E��z�OZDav��Y�z�i���r��̷7���=�>8[s��m�~�}�hଯ}K]�ϫ6���}u�~����yh�6�~�����
�V���(����65>y����Yzxw���%\.�����ν���-[*�CR��{�ĉ�F/�7/�{�\}���'Z[[)�?s���}���gkj��_0i�t��hРA�~��_2oվW�-;US�uꤋ�,�1s��m���܌3���pb$��;ohԜz
u'i������h�Z�/�ꞽ_v�͜ԫY�鉔^��:_�i%�8��tۦ��^�ч�D}9�1O�*k��e͆s�j~�o�����'Nh�y�0�E�������+�/8�RZ5���h��ߝZ�ۯ5�f6��S���7����x�͵~8���ܼ.����\Dߌ���8�jO���d�?�ZHii���ڳ-}X�p��ƍ=�%W]YPP���@߷����ꓫV�\�`�A��+B�..���6����ӦN]>'9��P��SM4�눮a��Z:��4b�}�$K���
#�K:����~�&��bb���4�ws>�X��¶ړ?����s5g��0���WN�w������û6�4�b][�F�5�i4��#�楣�w���UV6k�̗_~q�u���a��)������C hik�de�%gVnnnzvfs[���;yo���G�͘=���"�ӣ\.�رc������W_YV^Q>j�(�К0~aC�U�=z�����H� �BI�#���1���"C��D��E�)HDV��g�Quo�|����I��6�b(�u!��S��(>�G�T���@r9v���U���՜
��\U�/�=~����QK�/��V��j���=�s�3.+)�r{p�ѯ_�)3����;�vc32���h���e�Ν��կ���p�Yd�?�������6Msu���zÆ
�-��/Y�����5���ͻd��ٴiӞ={�
���9d������;��ᙳfB� �;(7Fb��g!�{�\�54jTa�X���!BMC3�6���Ij'���F�QH&G�cL?�����UC���ɡ��{��5�O��	Ya��a�Y7�ZQ��+��p���rr'
M#��u@VVVEEE��i�߾��I�&u�ԝ;�_����{��X$�����mm�Xy����nw_N��ڳ'+3st���a�2d��)۷n߱}��Y�233s�rG���<�ǎ755�'��@�"�D0������p�IlR��`7T�lw�H�`��3�)���!�F����m�\^~�@�q���D򼦜�����g�:�mI�:}����V�.�?=�����r��	G���!C�L��b�ʃ̞=�+?=���?|���q,�?����jjj�1�tMMccc~~^F�<}�T�~����`;���.�(���=|�й����=O�5&=��LmKK��W�UH���^JLR����Nr1�Fh=��'��K4�a��х����İ����=��O���B�A���J��MH�Fix�,r�D⧁��������sR���:�QC����QsĀ��9s�|��o���,zm�j���E�]�'���%%%�n�ܚ��oݺM_��!C���������
223��\.�~���Μ;w��>�2x�����Ɔƶ��>;�
��@���q�S�`..AkR���	E��V�gc�9&�4���)ޅ�bz�o����=E�\}p��S���GH��Ϯ�������[JW՟�[w��ߎ�戌���1�&M޿w߶�ۺ�QZ{����+�
�3wD�x<�Qe�<i�˗'c�+���q�G�����gw���u��'0��#�_������������IK�z�}>Nr�/��re�KwΎ6�1&-�4ǚ�$
Υf3b8����
s��k$N�I��5F� J�:�6!����xǭ�q�E4�$����MI)��׵�o9[��m�Qs���s��=�^��[ZZ��C�����F�9��G!N\.ט�c�iÆC�%v�G�Y�n]a��	'�=}7;ٿ��������0Ԅ�?��7��]RG.(��#Z:�}�"�;�^�N)��/^��p#1J0旍%�����.�7�D� �[�����{�ָ�$�V�o뙓R�هn�;]�ւ���c��ٵ�ĉ]�mmm�o�}����C
i"�0a��ѣ��ʲe	4P���7^��ґ#'O�����g���ݩ�jJ ������o�dyyypF
�Eqᗯ�#�����[�4F��\x9��	v'q
J��~��\�(��w���_�a��|�TE|HU!F1)&��:n�ϙ��c-
����as㹶?
��9-/���Ǐ��zǎ]�1��Ξ[�z���/��r���@���/Y��x�y��}�Du�С��}��-���A��������d�?������w�9r���Eq��|��=+3�Ӈ�H$쟞��) "$t�c�v'QC1g�p��0&�Q^od�Mk���5��&2�H�b��1�鶆z��:BL��W��І�^�?~�Ef̜��Ҳ}�.H�hkk۴q������V\�C�����]Qq`߾�^|)!��^�w�ҥ;�m+--��S7�q�,7?����$}���`q�kNմx�

�effB� a��
)F�		��pe���1!T3	7���8�J�>��\�K�34`nc�2��i�R>��bIj��d�1��m������4�mm�B�qNvv���KK��ر�����ҳgϾ��+��y��,�˭.	'//�����K�.]�bE�z���5�׼��?�ss����ݯ_�>�{�7�_��9����=~�x{[������pz?��l��S�9u%�D�3b8�&�	cN���.�W%�����`�DX�pȈ�b��l��-4)@�h�}�k��Q?b-c�ك���,���S��~���5_h�1��WU5bԨ�r��r���u�=���_���o��F�ZL x��~��555�v��-¾�1cF�߿s�v��+����=zT?�Çgggc�?4���:��.f��X�?~А�"�
�oq%Oɴ�s���ǧ�b�t�w���Y����
���͝<yJVvΦMkjj��Ammm[6o�M�>-//{>����>��k���xu����/��r�f�o����رcK���3�ޚ���};}��~�֬ZUw�<M����ѣ'OT�/9r1$�pdqa�R��cΈ	���t�	B`8�%�=��iG�<8I�x�I�n"6Ө���CE�P��H鮴�TK%pi.{_RR\1vL���];w&��֯[���w��#�4}��_��Ο;�ӟ������c�%w���ɓ'y���O����������SZZ:n옃nݺ%٦�@�ض�d��9s�9|$��N�1���"��˫T��k����=A4uχ���D��<)F�K��dBI�@d�yܩ���q#�2��8:"{��ϘQ_~���I�����ݻv<xp��Ycƌ�nO���}�swܮ_�>�����n�p��G}�ҋ/~�?�������o�����6���������/���v����555I5Ŝ<yr݇�gd^���`��@h�fB��:�W�1�(&F�zm��J�y�{,g�~'��������B�%�	 �����py�D��O����47�]�u�ĉ��ڽK�3�b>�Q__�ڲW���?~�5�����IB/$
��/}i���O<���w��9|����Ϙ9c��	%�K���%�?^�{ϖ-[�v��766N�<���`A^^T����_~��͕�7l�p��a������ڵ��ŋǎ�_/�$�����fN~��6�2��L1T^�s�R��-��7H�~*�Os�Že�����A��{N�N2 =;/͝�_�t��x<�9�48bb$--mTY٥�-z�ͷ�{��O����N��|�ްa���ѓ'O�O6yys��̝��k��᷿۵g���U��������O�N�9p@ѷ��;�^w]nn��
M�g�����x����_xq�ieee	�*����]����Ʀ�,L� 9�uH��Ր�AF���;]���,�
K��wL�T*�5/(Q� �Hʆ��6dE>!���/+{Xfvf�>|VVn^F��������9s�i��X���ٳ�]y[[��
���gΜYPP������y<�y�\��k>�I󴵴�457546^h���՟t���������/�4==�$B�y��_2~��ݏ<�ș�ڄđ#G^x��G���4/{y��O=u��)�y⮔%ϳ�����5x%��g'�к�� ��8,����D[�h��Uy�I����J��{5���)���r<���E0������ѣ{��Y00�)�mmm�7m��ȸ��9��M6~����[�l��S��ǎ9}�tK[��G����ᄋk�����#G�;n���ƍ�"Ñ���w�<Q��믗���[����u�̙'���׭�=��IS�.�<��^��r˧��61WY��j�z��¾�]A��E�Wɭ0�N��LMD��c�
~�.�I�d��0!��4�II��K�>y`����o�?-mb��<7���E0�wʔ�۷T��λYYY$A�����z�?v„��&bW'�vo��-��y���{����655���ܼ�3f�3�xx��!C


ܝ
���?WWS{�ı�U��U�ڵ~���7fgg8p̘17���ٳgc|5˸q��������>��^�~��;����رc���/o��fY��>��رcG��~��_~�4wڧo�Y?p����T�F���ru�oa�bS�0����9(jVQ��d�6~S�VdΏ��q���� �L,R�Wx����z��^��[�o@R-�&//oҤ�in�s�>�ҋ/$pͮ��#��>�#�����$mjj�[U��?�q˦M^�7=+k��,����c�x�:F�w��D�G���PR������ٵg��W�>y��ѣGW�\9mƌ{���)���0e褧�/Z�����?O<�������
��9|��~��niI���5yʔ�������a��z��O<���|��6����3%ꆱ�G�~!!u�QYou��3�X�ծi���N
I02��EI�^ܗ�<�n��<f��L82'(&�_�B���s�XV��OѨS��G���>7;���0�س���ho���'���N�;�pPZ��g�y�O�S]]��b�/���?_QQ���رc���o����ܹ�L�0!!��z���^�`��Q���p|>_�-K_^��믷��-.�9s楗^:s���ۭ���@{{��6oڴz��7�<q���\���]{�uS�M�������z��Gٿ�܋��v�3f����qZ���ׯ�p����c���Ϲ8���c�b��?��'����S������@qb�ԅ&�&Xs�� |X//׸DBLxy�����0�~�7/�W9�/"͈��\�@�s	5�=�,��`��Ƙ�h�t�$�>���.����K�yt��3�=�S��y��Cs�Ӓ_�L�>�_�Bkk�l��k׮_�^/���l��A��\u��
�r�>sۭ	,��z>�5���hCCCF'}�"�+�'��W^=~�x~~�mw�1�Š�򬬬&�\.}O8p�%�,8p�|��SO-}�M6,���;�K?Cpo�������ƍ�<tѼ���䍓&OV<���6mڴl�ҵk>��P������	&�o�/�����ŗ����~V�Ph1$����IH�'��NRq�ۈB}K������`ct����v���Ͱ����X%A��)�W�g�|bXEU��&o�5�\�������+**���d�nذ��7�\�hэ7ޘ����]��F�
9�����GG�L��7���u���+W�ܱcGuu����Ǐ�9s��?��ѣG��+�Ç��}�V�Ϸ�+�����Uzff���n��2eʘ1c����_�򗯿������k�N�8����n�i��W�x�I��eK����s�Ͽ�7N��a�adR���6
N
���u��=��3;�noim�l
�744�{�ݦ묬��.�,//���⩿?���|��wC� �*[v݄bb,5��لZ�VmD��|�ة&�4�<>RUFH��w��UljX�հ�dmJZT�b؜�w�P��$��#}I:��HnWZ�'}ǹS��M�=S�w��1v�%CGf��b��SA��cǎ��o�K�;�sҤI)]&h���S[�V�U��I{Z3Q]]��������N�9s��^;~��s�έZ���^+--5jT��6�z~͚5?���l۲����_���@?^���	<��Uy<������敎q�ر�UU[�T����W.�K��>c����ܺ��n��믿��[�6nڵs�޽{���ٹs�m�ׯ[��o<����O�^z�ԩS#����n��S^o��mێ?^\<�h�@��?eРA��޸qc[k[��2��@�@�&o����l����C���!�A�jP2*Ęm��&��M �1�Fd���`��Q��B��X�'�PGBLt)1K�']/���=u���i��'�ұ7UL��׽I}}��O>YYY���|��.Ku��^675�\�"��3wnω���<y���ڵk��կ~�;�Y�p��ɓ�O�~�W^~��۷o��;�
S�������_��W��d�����K���$�2�W���1cƌ?���Q?�����>v�87~��t
2d�Y.�>cz�;�C�v��U�u뺵k?X�f��5�֬��ؾ�#Gr�s._���̭�Y�p���+�T�:Y�~���G����qZ���aÊ�����S�q���������bP���]�V�-?����ub!��T�H4��D68�Y����cX����7	1�ck��Z<�»�l��?1\c��F�8W{�����,S�5�~y�q]�Z�������˖-���?~�7���w�[����Cǎ7n�^���
knn~��'W�X���k�	Ơ�\.�L�x<���_|����_y啅��߿��0�?��/���S5�r�5��7&N���}'2d�ԩmm��͛7WV�{<&L����Ceee�]��OݴxɒiS�u\>#GV�3k�̅�-��'?��>�}�-^�xtyyAaazz�~0@�C��l�R}�d�����8=W��%%ţF����U�Z[ZF����-E!F&p��u���V���I|�o
(�HmRy���$�N�
1�s�_�J��|�
B�a%B�1���B��=�߀ʚǼ-=&��������s��vMS�k֬��?��÷�z�^P����cFoKK����͹xΜ���VWW?��Cs�̹��;͂��3[NNNIIɫ���o���^�.�@ �޻��W������c{�k�߷�z��=���;f�ئ��];v�޳������ZLd��W��7����[��g�L�:w���\rќ�gL��?3h� s|�����pTYY���۷l;r�H�⢁E�%}���<�k�ֶ�ѣG����P,�I�ٝ�J�fB�yƚ�vA����t.�I���6$�ip�x���@$=J��&�C!&�P��z�@!�F<��R�����Y'Ο�������!��M����3s��ٽ{�������;����TDA��ƍ����Θ5K��}�����{�M�6}�[�*))�����y�̙w�y�W�bv����~v�С˗\���}?t�F�bƎWWW�c붏��O�aÆ!��#��������%���p����������c�7l<y��ѣ�L�}����۱c׺uk[ZZ�ѣ�M�v���,��H��L�1%��
�@�5�^�1142��X�Ĕ�k5�I�q"!�e��1�����/
�W�WT2o����m{�lh8��%?!i�G��n+-�~����mJ:}��/���y�wN�]sd��^4
�uK�#~���/v{�aL���_~�	'�ljnn^�j�ԩS'M�d�Xnn�u�]�t�ҕ+W��	J�����{��bɒ��t���C����|E����?����%��áĉ~ō;���VV���G��^���β��f͚��x�G_[����o���#F��i���H���Kj��`�U\R};5�M
JE��ܩs,���PTQ����%�c(�g�{�����ŤQ�OK�A����'��/rw��f͚��~������4iҔ)Sz�y$���zf���555���e�,{��\q����*Pt�UW}�S7�,-�|�'N̛7�:%8bF磏>�M`{{�C?�źu��O�p��;����s��w�g��u�'?����_�~�O�{���&N��7�����[������1sfzz:�Xz�g�ܹiii���o_{�߇��X���8[s_��nv�*mX���hɼRI@iεX�
)戡I��,���)��Dلlw��w����B�c�����&~v܌��Pr�=��o>{�l]]�ʕ+�}�ٲ���|�3,���J�C���~���vn�6|x�M7ޔ���~���W���H_t����]��*�׻nÆW�.���^|�U͜u���[���ԓO8p�{����:�1����---z�o�����W~�ĉ^s���/���o����u�]&L�[��l��ۏ}tdժ���[?{kff&�q�v��+*����M6<�ȣ_�r��)S� ���7o^NNί��W�.�w�ug��b�I��CO�T}*�:+�9�;5 �Ws��K��H=�>�-@ג�,Q�������ϝ��w�G����q7�O����3���'VTT�;immݾ}���?��������O�N�s�ν�λ�w�Xr�U��w��].�K�3��=�����Ӈ��B�r���?�d����K�_q�^7�|�+���݆
^|����[}֏����j}c�b���狊�v���k���G���666�r�u�^������y���W��y�e/��?�4y�b�cnj��/~�/��mx����{�M�f�ŤO�6���{�/}뭷\D���1=J�j"�"���np�	֊*L�~C��6���
)35�Ҕ���$n�9m(���^���r
���W��m�njh�]0I���W�@��=qD^aZ����G��222������JKK����߿s�N��a�R�gSz����\�j_��Ǎ�5�ǣ����_��c���K'L��p[��V�Z�Λo]�
�~�������*((�ׯ��U+��[.��
uE{{��͛ׯ_�-�4�v�;v�޽��o�j�T����_|uٲ������EN�D�F߽#G�ض�r��}9yy�'O�)&!�{Ǎ_[{z�
UU�JJ�
�ipii���/^�{ϦM��Se��q�y�؁�4z۵�DŽM�5����͝�F�I԰���@��$�
@��!7
��F2��-d5n�a�1A3�
+�*���۶)E��.%��1��ߧͿ��|H��G�	��h跧����{�FV�N�8q�…���{��M�#���\{�̀����k��[AA����@����#~��
���;v�xG���l���̨�QC
9Ww����Q]ZXX�}k�pp�������^p��?���_�z�_�ڃÊ�{��
6�o|#--��_?~����q�L��2r�Ȼ�g����V=��_�o��mo���YY3g��{yy�[o�u��I�:�����N�뎷uzR:�rG�y����h�.R���?0
'��#3�]֯�3�(����GZ[��)����
,���i���S�ڠ�N�����ԩS����7=�'��&Ҵ4���ԯ�?ͥԶN4}9�&�&�Tg#�/Ms�s��c���������Ϟ=�/�;�2^}����7�h@�z���厛0��r��o�]QQ�\H=�����/~�Y�YkW���?��{�9kVfF��g�>����ό4�[�U,ٲl��wc�!�$v�@ 	����<����K��)l�a)!�@�
K�!n��^A6��-�V�]���_ϕ��G��
��G�r��sϽ֜�����q�c�f�;w��%R�u߹�!
�[�}���_�XPN�Ga�A?���V�h'A���hLv����S_5���ցF�C#F=�1eBd���{+�"en��b\�������g��Gul3a��������;vL�;�H%�=�l�:xh��%ҍT^�^bnnnqi�ĉ���{T���H%�u��R����C���Ykm�])����`�ICK�EEs�O>���G �?��׋��~�7�ܱ�O/�𓧟�1c��&c�Zw��u��!o�����	?�{�cQ�gz3�Ϧ�~���(��.$��'܌b��I��o�y97�t}mK?��!�/`U��GO�kL̀��*���{�_��Ȩ�iӦq���5k���Ə/m���5�W>ph�-ӧN��N>ז�2y��ɟ�yTT���y$""�����ѣ���l������h4JV.\�Q{����PZZ�p�¡�O,!)���^o��VUߴ�5�}}�b�
���o^^^�#G>���Z[M�������ʞ:��sill�|��y�����x 1!�zM��:��+���l:}�6��_�6}�O�C ���4��W����W�U�y��1A?H��"53)(��Y�W��999S�N�YVUUu��Q��2r��8/&$$d��%��[�ny��?IKK�
�|�rYiYָq<�`xX�{-H}|B“O��?��{oϮ�)�R�k��瞕��ַV�X�ӽ]���gΜ�}��K�.���v������>����?���w��d���h�����Czz�S?�Q`P���^�ӋO<���[n�
߾m�_���+E������������^�dt}X�U��{��֛Џ��S}����ց�z�r5�(\���W:VQv�ؾ��^����A@:�U���j��չ������l�+��ͭԉ^~��C|-L���?߳��j�������G��;S2��7��/^���k�����w�}˗/��yMyy��~�nݺ�K�>��aaa��:Z,����ݻvoذ���f�5>!a�m�����z4��d2�9}�͟�ر�����7`��s�-�̌���q��j=u������+W>���%�r���?>v��?���kj�ο�W^~y��mi�)��+++���W����#�ַ�Fı}8�UI}��[����ُ�������~D����c�F^й�@I������r��m�B�Z~�_�F�>�,���5���訌�tb�n�~�͚WS���/��J^���ӿ�X��V��~?c���P_��m<��l>s���ի���2y��q�����yyyIw��ŋ��nҢE�y�����R��-ZZZ��
İټ��?���aQ����͍���@��>Fc`PP�'m��־��۶m���0cƌ�	���^~��O>���W_����$���z�…��xc��]z���d��߼��U�JHH�3/�@�&�^��K F�T�v�>b:��&s�@�C6bC S�а�ʙw�NQ_��4�D���ҳ&F�ެ������O�8�{����"e�__߈���c��~��ӦM		�������{��jkk�~��o|��wKKK����ٳ����p�߱Kqq�϶�ݳ[o�Z�l�ܹs��0��1������&}�t
��S �v]D�@L�1jT�@`����z��`i�+���]UZg���#I��?5qEJFrH���;0��lniiinn������/
		���
��?н�.�����<y�I�����*?~�رc���?�я�/_ܓ-����j��\��"]������X��@��wv��@�&��l��>bb���u���R-�����j���+�.c1S�B��0{A¨P_��֝��ξ�&W�c��SRR�y��/���󕕕F�1%%%33s�ҥS�L���큘��������@�vg"�K?b:���@Lgm�b�����G7_<Z_�bu����so�ȇ2&O��2����Z욛�kkk���}}}�#���u�8��E���,%C Ɠ�m|�@`�v�u����C�W>�pr[ya����|R`�2V�d��F�{{SW�u+�y���2s}|@�o�q�"s]�E�ub:���FT�a:}�_��	����Ot9�TK������؇3&��`Գ�$�p���S���S�:���7���CG�g���ks�u^"F�
����f>TZ��˹#C�'���m�
NI]�v������ь7q������׏v��Ñ~D�6����#b\w	��`�y��&z���2��ȦF_l7��Mml�� 1�\_�&\T`P�����Р̂1\7N��w�
�B��>;��,П�m�ü$��?�M7(Et�ī���7���L�Vʵ����_Ovi_)���M����{!���kq�}��>ǎ���U�0O�O��w!�@�9=�#�)g�&��%X(1���	n�ojB3@?"�tc�osB3@��x����w=A�G���A�g��pCb���
�.��࢑@Pp@ Ч��
�
�c�@��R���M� ���m<ݴ���q�p���k,�����ژ��)�4�j�_�����%�a�@�����m��&�c\|�:����_���<��\���M�~A ��տyҀ`Pp��=��z�l�ʀ�ap
��cd�>"pҮ�{V�������w���
���o|";�����dz��� cd�!4�l}ϡ��_��ps6	�f/cd��`8 ��F�}�k������}��0�p�@��g��~�,|A+�2��p�/�M�^r�]ջcv�cm�^|���H��!��!�@��M�����5n���̿��]����;��>G����uG/b�Cx�1��l�{ƝĴ���;U�jq?C���P���iz���[��(Y7������)w^}<n�d���
��W�@�_ Ɲ�Mw����@�C���G
)m#���u�
�/�|�:|ۺ�����4�FX�0D �
;���yd)��
��]��=]/�񔾇c�a�@��q7|�/�{z��wqW=�b�51����mw�O��׭K���_�=���p���\ܙ1b}mɹ���w���!���Rw��^rq�!����PՋ�.�$��)E��{}���N�m��7���̝Q0}	�t��R��0��|��¾�_��I
����Ѓ�󀜆Q��1�Zln����`���͝��g��ܝ.��]J7�1LSz�@�����{��?�M��ւq��q�~	������"Lw{!�1Xӿ�`�|};]�E�J��,ݽؗ���'�mb=h�:��"ӵ������oa�oX�S�Sqs؋�e�܀A�@�s���^�ahL�����!':��p.!���@m�`0�h�}]!B-�2>"_���k��b��"p�H�]���jZѤ�3-�1�^�qsGm`(!÷!лV��&�h0T���ph!(!�bn�Y`2P�R�Rr���d�l?�K0$9��Z��2�a2>�\���i3�t��[LMܘv��^cD����t]ƿ�S�\���A`8cD��0"1�U��M�}���bƿw!z;�օ�12N*�F��#N[2�5o\�[}�����i�V�ÐvR��0��$@ot�|/K�.�ܘ�f�Z�=���05	�V�Jچ����(��)`"�9m��$��i��u[�!^C��S�=kQ�+�y3@�,I�*p�H�	���a��&�0m�{J0LZʬ"���Ÿ�R�;��+a�aD�Ɯ�s�o6@O1"��a��6pht�;�C��Ŋ��y��Ĉ�������V���{�a�@��f���1�6�]�
S��Fm �VD/&u�о�|%Ub=���.��@�O>�1�7��m�%x�Z�H�u`�`�aDM=ɢ�I��#�M�s�n�>�:��u��E�GGnb:��@Dd����H�n�Y�V7�)C����$�����Z^�Z��pC��8iHQ	��y��< ׋�3ψ�1V��F�p�1�n�VTp�Np1
�����ab`x5�z�Fp't��&�����n6N��h�``j�-.�"1M	p#bn���࢝��X�#:F�z�?��@ г�M.�6hB=��$��Ѓ����\o�ԋ�1�	C�@?#zt��I��d�٬V+#p�`��=e�:F��D�����ZÙ҄�FO�ި`�kyb7�0�@�F���U\4t����B�b�`D�y�kA����!���0Ĉ!p�A�����A#�J�޺`.�-1wL}oQ��0��$!����^�hB*�&��v�LD0"�?���@_��D �3j��j�z�5b7�
��z�z�1B �C�x�!�!b<�@����1B �C�x�!�!b4ZZZ���l6Uᠭ�Mj�l6�ӔK_WW'';H�Qmm-�*�T�¡C�8`2�&O��`�???�D����o߾+W�$$$̙3'55uH�f]]݆
.\�'7��ѣ��gss�-[l6���OFFFZZZ��Z�g��z�����w�����ӧw��Y]]=~��o|�F���0l�`{���u�V@@@PP��Z����7�ܳg��d;vljjjzz����V�T����?��ƶ���������4��999/��biiiXX���/~��r_���K�%88����u Frؿ�{�'������Fo�������,RRR�֝8q"�.`�"�@ٲe���ǝN$�1cƲe�܏��ן8q����f��>}����j���٧k�������₂��@̹s�JJJ���رc���ܜR{�344������mYSSs��e�^/Yu=���(�(//�@`8#�@����[ZZ�v\.\�~� 888++���J:䙙�111^^^��������S����h�͠��痔�4bĈ��Ҹ����ԡ�F�1===66���,$$dڴi�(���=}����򶶶��Č��~�V�UTT(���6����w`p|3R\����W��nkkk�ڕ��w��ݬ�,e�����8KUU՚5k�^�*�W�\)��a�����…�Fcaa�t�gϞ-��Ӕ�k�ӟ��…#F��S\����OKK����8qbb�f������������{��9���D�
 ˖-�Χ:5�b������8f�̙�'O��l~~~]G����m߾��ɓ�x„	�r��曜���� �roo�!�
lpp�<����0�&g0���233CBB�+[���{����u���&,�0PکO[[[׮]ۗ|�)���ݐ?M�^<H���ՏQq��*`P0�L6;鍫��b6��Ey�j�*/�+���j`B����^2F�766����pq������G]�����������h4�8h[[[���

��0my�Fd��ʁԱ$�RZy+88�w+��g%s�J2�z��p�X.��`��t=J��g$O��P���IY__/GTN���jkk��BBB�>�K��d�<v]�r\)�܍r�wwo(���O�y�nv(�2��5��D ��a˖-���ҡMHH���{�ųg��ڵ���������LI�s�΢�"5(�wt]�T:��Ν�t�RIIIEEE]]��))���G����3g��ٳGz��w�1B29u�T^^���b������������n�#�/..���/_�#655Iʰ�����L;�zJʳw�^�9мy�&L���])�ܹs�ԤrN�<y�����r%�!OJJ����њ����ɑڐ>ZZ��Fw���f�\�
6�l6)��캻���ի���?�~���V�X������W^Q�͟?�ԩ]/haa��G*Y���	

�c�m#�.��:(#�:z��R9r�Z[[�EDD���L�>�wCZ�ͭ��ۧ���z�g���!E�
�RR���I)�����G�%7�rt����f;eQ$9M���ӟ��������� ziǎ�6m������%f����v���|m�}v��ɓ'Ϝ9�!�PUU�gϞ�[��;w���T�����FFFJ�w�]LLL�a�ϟ_�fMAA���%碢�����r�2�Cg�'��,]�455����ȑ#r�ϗ�����mo��������z�.���t���g���R������X�@���ĉ��㛛�����ݻW*M-��6  `�ȑs��]�x�)S\�mQIQKJJ�~��6�.3f̐28MY[[�q���^{M����5j���NS�%���y��W�V�����"��_��l5���w�8x�T�\�BH	������F����1{�l��i�H'u�nݺ]�v�IUVV��w䮐�"Hn	��z��K���+�[;b�r�_�^J~��I�O��%���xx�TWVV��w�=f̘���7�xC=A%�˗/K��+R`�����~&�Ԙ���,����je���u�u5�"	���;wnÆ
7n��|DR��566�����I��w�}��n�|v�Ν�N����Ԑ�*S��o\dw��EyKz���^�f͙3g�=��YBJɥϿ{�����WUU�Z�j�ȑQW---(//߻w��u�qRy]���� e+((���ߝ={���������&�-..>t�Pw�����={�(�+**��ܹs�Ν�Jؿ��J.����#""nX����O>���_�r�:	��r^���vrA孕+Wv�A��2 e˖-uuuz��� �vr)�'N\�pArx�gF��_�f�I�_~���>��d2)���V���IIɛ��F:~���E�ٍ1BـL�y�|*22R�V>�f(
1�222}�Q�l����Y����P^\�`��i�ԉE�A���R?R]]�v�������F�qƌ���ҳ
nnn.--=v�XNN�t�W�^-��'�|2!!��ѥ��������/Y�$99Y$�v9�ѣGO�>-]蒒��?��ܹs������;iҤ	&����c�A���\����O?�4>>��{��e���6l� g-�Ϛ5K�NjF+��2���666<xP�"==]J�N�������;s�@��7��5 +5p��y��N�8!�����z8p�^������oX����S�N���R�rA���fϞ-�B
���x��W_}e6��/_�4�c2����SYY���%7���#""�������R'R9;w�R=��s�[R�+���6��"��\�E�eff�u���������˥���L�:U	I���'?���Ͼ���r�(�¾��t6p��ݼ|�=�d��rټy����ξ�n�#��m۶mݺU:��׽뮻V�X1e�uq��J�~�ƍ�֭�>�<�<y��ޝ�ޢ,����*�,Y�D(k�J�_��k׮��ɑ"]�r���H҇��-X�@O�81<<\����|��M�>��K�.]�zU���&M?~|�ו�_Urr�e�/^���$e�X,����gϞ���#G�l߾��p'[9�3f�Y�F�:�nܸqi*++���''�e'�,r��ᮃS$��'OJ���3f�;cOZZZ$s�=e���O?=k�,�4r���cǤ��9r��B�^��r
��d(�-++���z��'N����n�n^UO�J��Q�F����O���kgNI�vR$)��>��{�����y��������o�@ �\Ο?�nݺ��Ry,��'�x"55U;D���gʔ)ҟ�^�뫪�>��C�gff:]������[�j�vЍt��̙�����+�
�Qf̘��c�eee�G�UV󭫫�R�Asssϝ;7��}��ҥK}�Q��!�폍����ۥ�ҫ/**���ػw����j5F�1%%e�ĉ���+++�����z��Ue��Ԓ����ە��w��0|F��$�1{�lw�+��=s��>dԨQr�c^���L&��孅>��R��*KK9���������;w�K �f�)E+ոb�
��Ƚ4k֬[n�E����]�F8p�����VePRR�Ӊ*qqq�V�JLL��G�=��vmT�)S�,Z�H�<�*+++;;[�!���p뭷fffv=��%�2���J��	&,[����~~~�Ǐ���>,��������l������� q}}��]e"Rqq�b����{oXXXSS�ٳg/]��M���VPP�����m�9sf��NY�E*��.�0J��;��6
���9s�;V)��늨��J�\��]�E*�v�"bF���0��)SRSS�Fcw)Ǐ���.=p�ٜ������4�̙3���t�����Վ�Nz�N��L-QL�UWWw��9ʸq�h�S������Jt@�Q\\�f��'���)3�N�:�}���b׮]�gTTԭ��*�ʗ����{��զ�����ɩ���'L����<�J��R�#���p���!+%%eҤI�%����u�A����+"]���m��G�^�����Rj�����-0\H繰����Eg_�dݺuʢݩ��P",MMMN��ILLt�n����8**��5�����j���olltgVN�H9�N�Q���;&�IN̘1��l0�f̘�駟*s�n�����/^�x��qe�ϬY��L�ϟ�k׮���Ç�Z�J�
���w�V�J�8�ԕ����ٳ���*T���{999���qqqr:���r܄�y�b���h��8��Z!o)�2�@�NL.����r|���~�7���Μ9��/N�0a�ȑ���R	�SJ.�U`h �pQc'=^y|��ѓ'O�^��N677;M#�{�]mP�iD�)IJ���ݿ��8eooo5Lc�Z����"##�̙�q�ƺ���ǏWTTH�(u~��ay1,,LY|G
0q����Ă��K�.�UP� �L������\�ј��<y�dws�ޒ���իW�>}Z�ɱ3rШ��������q��eggwZR�D.�"���?�l�U�r�<��RK��yIIIyy��;����@LJJ�ԩS������0\���ҧU�-r�111NW�ι������#J׺�Ξ�cw�*�]�����F�:w��իWsrr�-[��?R�DGG/X�@��#F̙3���@;|F����YRfgg����te,��_|q�����’�����*;)�\hyw����/�2u�T����X�>V��<�zꩉ'=z4??�������d2�;vL�q��-Y���v�`� �pn'�ڶ�����;�S���A�*�;�Bll�9sΝ;�l��x�b��t�̙�/����5j„	JJeG�u�����;vL�GEE�;+-X���G���_�hь3._�\XX(�UVV����ce_𒒒
6455�1B�dt��S9r��/g�b�;\�r%77�������r
���=�w`�#�����NLL��KK��ɓG�M�����3g~�ᇍ���O�.,,����c6�����-uj�����|fffNN�$;r����O�:UPP oedd�e�����VVV�?~���[�l1�L�>z��M�Qhl


eee�آ�>�HTWW�]���`�$�`ǮI�;Ug�H��Mg����N�>-��;4w��0����5j����JJJ���{���Ç����y��i���(;^WTT�۷OIo�X"##g͚�.��F�Q����}�}�=������V��7eIeJ=���˖-��������T��
�eb�-�����0u������R�N~FF������֮]����.,,���O�:5��Uꬢ���-[�>|X�E```VVVJJ�6eHH�ԩS%������B|��J�F�Q�j��*++:�ݥT�U7���v��X,G��t�Rw��MJJrZr�^�̘�Z�����6��N�e�]��h6����p�B%4#}ׂ�y+88X:�����ַ����+��7�|���˳g�NNN

�қ������۶m��ۧL���`̘1n.�;̅��L�4)::���"''��ի����&��ӑ#GN�6m���r�>����||„				=:hss�d�aÆ�ӧggg���ɥTFHY��+W�lٲEK"wHff��Sc���/��ܟS�N�������K!�S;y��֭[u���Ԍv�l�� '��h����v]�d�R�r��׫n*b
����W��񲲲ӧO����҃���tGϜ9s�]PP���?��s�֮][ZZz�С.>|8999**J:�uuu�7��˓L�'|��5�@��WA	�lڴ��N�4))��FEJ�f�֭��ԩS�+����QU[�֢����{��ٳ999���iiir����BCC����"�Քm2�|||&L����}�T��l޲e�Ν;�z��={�@�>""���W�*�����/	���{��,y<}�t9���Z9�W_}�ҥK111�8??_���?���-����`�X�lٱc�v��%=�m۶>|800���������bܸqJ F^�mHHȦM���+oIb�}��hlii�޻��t�%O�0=�S�l�b�Xt��JӧO׎�PɅ�����������UINN�<yrO�(�����`0ȵ;j���%7���\���Vy���';;����鈛�c�٤�R9r���+��s���d2��+i䕰�0�iW�\�����T������˙�8q��r�WWW��ĬZ�*==�{p�!�!]��zH:�{��-..������S�9r��lՔ�������1c�o�.�ג����*�*+�*��fff.Y�dѢE���0n(  @�.))�ҥKRo111��E-�ʥ�;w��	

��Ζ�����\���LJ���-**������mmm����CH���ȴ�4�|���r�����N[�|����܄�Ν��PJ.7m�����/::z�ĉRxIյ�y���;w����=\XX(�2e
w#��D ���z�Ǥ�)����z�3βeˤ;���&�w�:M3g��O�6M�����:��3�Ԙ��XmJ�Jb�0//���T:�J,���W>"�dff�5�i!ǎ�裏J�Yg��(��W�X!���յ?�
		Y�t���T�2x�MjyBCC�.��]������O?���E���ڋ����SRR~��([2�؋Z��r�ʰ�0%3{�l9KI�6�M.ʤI��ץ�-Z4cƌ���+�!�YSS��'����zz�Ԫ��f�N�&&LP*'���ޞ5k��T��t��+OG���������J F-�I!�-Ǖ��,�A.�SO=%��
�{�d2�I���L�2�wW����测�+LS_Q�������F���t�^���@���q�?*���>���%mn)t�%����t���"�����'�x��;<v��<p�^H��*7?�����(�K����vw�Hzi���;�x��fhnnV1����k@S[[[}}��`r�sJ�ᖖ���� �����Рv�ԟJCB�U��␲�mJ婶A�����c�
�뺻��0�u
�:�]l�����K���;��w^e5ɵ���/�^k��9��zM@{t%�p��]n
}���4!��e�̾
���4������5{�&�p�u{8�1A^^^]�?��,�A�

r5�cώ����{��@;n�M���<�@����1B �C�x�!�!b<�@����1B �C�x�!�!b<�@����1B �C�x�!�!b<�@����1B �C�x�!�!b<�@����1B �C�x�!�!b<�@����1B �C�x�!�!b<�@����1B �C�x�!�!b<�@����1B �C�x��
 ---6��k:���JY��Q���0�I�K�)��k���j4��i������������_���8�z8M����6Kk��������q6��8�]��z%G�A
���z`�gۓ��Ȉ��;�AkkkKK�Z�~~~F��;�d2I�ǃ��ܸ�`��`����n�+�5�MI����H����u�{�u��(��_o/�&(c�xb�����诽�	f����U~��������u�^����������+O����ϟ�������L8p���i``�ʕ+����7�ׅ@���5V�5"�FQ�w�6��Mo����l:F��9�]��3�t���Myn�X�Ξm�0�k���r�C�������/))��+--��������QQQ�3,,,:::((�f��f����ÿ��������qqq�b���׭[��'�(O���.]J ���P�Ȕ~�'\�@
|�]DdT��b��6{r)���D�k#Q�|�J(�=�n�x�85}wo�
j���065,dSG�؇�(O���T$���)??����7o>y�<վk0��²��-Z4u����d???n]0@�0P����B�%a�|�����깽b3�[�j���kZ[��>00(4,����> Š�D3�H���Q:N�1H�����Lg�����}�����[_~���T���j���ڶm۞={�̙��fĈܽ`��`�t���P���:������pc���ǎ���VK]]���g����Ͽ�����뛜�:a���Q��BC�-���mi_IF�9g��-���:�u��_�Xuz��T���V{���EY,��Ǐ���P���������֦��k6����V�@��u![����D_f6�͖�W���7o)-)1�;>F__߫��G�w�EK�EEE���h�s㨈��V�իS�:��i�Du��k�tF����#3�TSS�iӦ�*O������RSS���������
��ʂ��.\(��]nV����������[�rg�m�Ţz|||$�~\X�mjj��lr..��:9)���LL&��XY޸ۻ�f��H�H������~I���[�9-�U�I%�L$+�T��k$WD�)�J!]�?�=w�J�v�i�[���f�)����Ҹy���s�l]Ԟ�R����q�7</��YH�e��HEgP��I~�ʅ5�>v옟A���5�mf_������T�s�g1ѱ�̞�e���J��vȏ�X��|�j��;���M:M8��>5��C1/^T{����O=���ŋ}||���3g�lٲ���a���N��������򳨨���<,,,>>>222666::�klE�ĥ�����555eeeUUU�T��g%�^���f��\�t���������5999..."""11Q{j�����)��Tz�K�.uH���$5���G�9iҤ��3�����^�zU�GjFJ"�R��ĸsFR�R�F�-Z��aEa�
�Ν���U҄��ϟ?�k8�R%
#Eծj,�B�'WY�u���_NG.GHH�$��iiiټy��4;;[.��Nr_�i���R�Q�F)q���˗���%�B�JHH1bDjj�T��x�Fn�:����%�&u(�w�O�#۷oWo�'JU��T�yɁ������H�}b���P��mQ��6M��쳐�l�oزaS��c�V�(�_C����b�i6W�[�w~�cdJrZz��A1z]��w��#a4ӑ��cs��o�5��DL���tܸq�'OvUH\^��tn��ƛ��ϟ?/]�O?�T��j���;..��n[�reZZ�t���$;z��-[<(lmnF�Q�G-Z$z1:�b�HW?77��wߕ~� �6m�C=4a��ɻ�U}}�k���{�n���b���~�i5Rs��w;b.]��~���7��k��ϊ+��Q�F9
Cho��g�}VY�'00�wޙ>}�C���_��㏕̥����?CCC�ijjj�����|���� I�b�Ri;v�裏�]�"
I���%�6eʔ#FhC�R?깋����r�W^y������r^r�H2�����|����.=z��'�xb�…��������:uJ��ȑ#r�8,�����jժ[o�u̘1��1R��=��Ky�o��o�����_����ɤf����~��R��� ��e��[1Mg�!Fc���W_��v�ܩܓǽm�̤�9Y�3S�B�}�z}M]�Ţ�/�^9^P�)���GBBâc�
/'Q��96[�Е��+���e�u9��N�>sIo�x_�s(�@�z��ٳg��.�g�ީ�u�Fa�ӻgϞw�y�СCo���In���Ç{�;�S�5��ԬY�F>�������������;�����Shll��^�|�!�QWW�s���Ǐ?lח7=*̦M���׿�<y��-��ZTT��oJ��G?Z�l��:R�cǎ��8q�RK7nt�TVV�	��WTT<xP�Ն�������Tbb�iӔ�R��_]�T�C�%�|rrr���<==��Bnٲ��������������/g����˻���JKK��ϟ?/��?��O~�팡�^{�>��p�.]������۷��w�KII�.��k�.�d��q�������r]~��_�3(	@ �!O�����`��E���uȉ����sg�Z�R"��N3vTjP����O��y������:����m�?��u��Јp�͠.ޢ	��c=�S�:W�6���	�LG�w=�����[�zŶ�xNg��gw��)��_~)?���Ǎ����'�⬗k6����^xA:�J� 888::ZқL����������3gμ��.�4ʄoooy���W>��"�������F�}2���o�۳�>+	ztFR�˗/K�%s)�t웚�$g��I��R�x���$��������"I�FEE)�#%����X,����F�d�ĉ.r�����;�@�T��ݻ��հ׾}�����G߸q�ҥK�k'��_�^y,ղl�2�S�D.���su��rJ�R���:e�Jkk�ڵk%���w�lT�ͣ��"u+�S��+���O744(O�%{�����\���_����V3��Ȑ��-�>�l�>�������*��#G����[����T�A�r��A�M�6͞=����g� �p��؜�����z�a�,�۾G���)�˖���g4�xy�46[��tm�ԑ���z�T���g��H��������Q��}싚_{��бh�ޱĶ�����$�M߾���^�1�����			����V�rH7u����1b���孤����������m_W�����|����w||�m�ݶx�bI\SS#yJ�_ޕ�W�^}��w�_���(=�Y�fM�>���h̘1YYYr�����������{����J�uuu�W,X�ӓ��DGGK�~ҤIR悂鮟9sF�!g��;�̘1C�>p���j�r��+���Da�T����-Z$e����3��O�lR?���/���/��]�C	�,\��^jjj�̕%c��immݸq�6}[[��+++�yXrQ�!3r��ݔ����P�0r�ѣGϝ;W.�T��ӧ�:ʉ(�~��g3g��w������q��I������;vL�z�Da���%I#��@���EJ9�[o��
�|�[���-�رc�#R�aaaUUUr^�v�:T�y�]�����ܮ�-�+�IOO�����JU�I�m��X����u�].j@ ����w3�ž⊭}�k��BN:�I�
��k�
),��j	�	4x����^FIYYQ�ok
���MOI�L���<���̩������v��ZB����\����Aוb��m��+�.ޝ�x���g˗/�.������G�j'o//�����ӧϛ7oƌ�V&(�L��Ǐ�k�����w�}O=��:�`�����կ~UZZ���z��٭[�>���V||��O>Y__/yjW�����������KJ'Yʓ����@��N���V2�����~���o۶M	�K����;X�g�Ν��R��}�{=��nZZ�ԩS��/~�e�ȁ>�d�畔�����w�^�}x˦M��ʑ�&WP�J��I�޽��{�Q�2���W��5cƌ;v��(������O�?�����q�:��X֭[��_�Zk��/�\����R�ŋ�)K�444��7�Y�f�6MFF���*c��r~��_������+mⰰ����Rus���N����|��7�5R'N����.#��s�=����$��~��g�z�>���
		a��y�*�b�1�w��ʦ���:7N�6<E-7�+�]�&)��ؤS�c�j��j�Z�MM�4z���)(�Z��j��x��~K֘���6����h��:���	�)�t�S
����F���g�"�?����`ڧ��c1�k/������Zh z��~�Ǥ�.�d�`;�T"]񲲲
6�������~��em�f���*k�J����̙3GRv�>��8u�T%�����g�*�g͚�d��`MMMyy��Cvss��A�n#O���3����G����Wzz�~���l���ҢN��ӌ���?~�FiiiVVVZZ�Z�9997<�+V(�����ݫ�7�+�m�6%��l*��Q�5J�ANY.��ϝw�))%�0r��]��(Uw�j���u��i�����~�.������vzꩧ�XR-��w��ѣ�w�6�.�+�|o��699S�>)))Y�`�6�/jwג��g�Q�0B�=�y\|�`D��az��}e\��cv�u;F��6 R�8;����}ck[IM�1����>&��،������D������S�*�j����ꤷf��쑔��x�����{�3����˼؇�蕅~ۃ,���v[G��f?����5j����w��)�첲���:�677����FyW���/'L� O/]���P]]����J�_�����(;I���X,�����W�^�|���T���+�|�;L&�v�7I�{�…~~~����RSS�4��߯D1�K�]c�ߙ�f5�ܲ���C�ui[y�L�rA�b޼y����BRo����;�n7mڤ����>���gyQ���/������KJJ8�������j�*���\�r�ڵ�ӓ'OΙ3�k���̄��+��������U��޷�z��ɽ�,|��G��Rj%�r��Ee�su�$I�]�Y������e&N��]!H��@� �MA
��l6���yE��^����w�1\�@�tH� d�Y��ƺFS��ZSkEq�����<"62 ��`��E�l->���P?CyMSCC�t�������2aH
�8Y
�c�#}G��ם��=�tm����A��9fbkt�o ̴���N�Ƀ��
�	+�e��իW�����~���պ��|�"����z�KGEE]�|��?޴i�t�]|D���b����Mp��8���seeeO1���ڧN�~R1Ro�ع>Ym`��,���,���O�Cl޼yٲeR�J,C$$$<��C{����ɑ�555�ر���ϕ�&RS�L9r�rQ�_t�����ueߥ&SH��@Lhhh�
�ڧ�=��@k׮����������A]�EDDh_��m �P�ȴ�������h�6���n;��K�t�{�k�*�KlV��d�5��'&�'�D��4���댾�~6oo��l�Y��^���l����������V���zg�\�\�^�
)qM���,R��/�{�ܔ⷟ĵ�L]6U0�[ζS�=}��~�m�6e�t�/\�P__�����(   ))��E:��ɒgii�;��MױjlTT�����Y�u��G�e륮�u�9����vy���I��YrО��bQ�]�>AAAJ�CY#&%%���I=.��;�c���r:�r����6lP����ŋ���V�X�Lt�4�7o����&�����E���ӑ���esZ��[Bٿ�E-��?��J�I�����ƪ��8{����r��20X�������K���7\�q�y�[���A������SV�YSY^SU�������%齍�A�6}���b2�l�$�A�dL���0���0��12�2Y�f�֤שs�Եxۃ/��9Mׂ/6u��^o��0��mmm�������刱���:w�\^^�R{���eee�>55u���J��g�y&11�Ł���~uS``�ܹsW�X������ŋ�ӟ.\����1�L'N���7��ݐX�]]]-g���#""ԵT��,T�>5�͗.]�n2-��N��1���P�V)k���n�e�v=ZE�>}z\\\QQ��T}}��M��nݪ�{��Ne�/����:v��޽{姮cL�Թ�۸q㊋���W�\),,�z:�}�����G�Q�0b�…rjr�H�*�RV�Z��بNd�=f�)��!��nR�Ww!RW���Ծ@��=���f
��!)z���U^VZ\]���Rh�7�m��f/_���t�[m�Ke����Ø몫��V?�@���Q/6u<̵�z;b)��ۮ����?k��u���7QR�1�S�X�W߾��M����z���'OJ�|�ر���>>>��b�0y���/44T�������okk��M�;wn���������eee


���ʢ-�,??_�	2bĈGyd֬Y�������BKK˶m�V�X�����6��.�شi��˗�4r�7!g'%W�655mٲE^Q���Y�={��?�.�2iҤ={�(�\^^.G_�|��`��իW唥��_�$((h�����	Z�z�r^�A�Z�K*v�̙Rr�R!/��r���͛�b&O��c�%�!��������͑kq��E9�zt���Ǐ��o��~������������Zl�(�}u�*+�ֶ�4[<�t]F�(�K��&Ezuΐ��K�E���B�C�"**��^ȏ�Mai�T��|#Œzc��ZVY��h^MC��l�t�BMUuP`���mЫӉ:�i��8���ј��:	D�gL�-Hl�Ԃ�#<3***�o߾f�e[��s�J^��~~~R��3���ںu��ǐ���� ��<a„�cǞ<yR^/++{������CBBCsssII���O~�3g���8,�"��Xr�� q?�$��o��O$%%��������J)[XX�ê�N�g������?�P�.;;[2)..^�vmw[IEIe���Wƛ��������0m�4e��2�H����7��<y���e�T˗/�Kf6�-�����~�]w)e��\Y�Lje)�;�SiZ�`�|p��U�9#�?00P�x����E�� �e�ò/R���&���_{�5v1��AC�?q�]�k���������~�e�S�ȑ'��2 4�|aq����>��ީ��`�^������q�w3�''	$�")�uؒ|��G��ʱR�;��;UI*~��/)�I�'R�[I���W�Ȗ,Zi��$R�M�A���b���~��]�H���Gh5;���=;�����'�'�=61�l4<�;y���G�64�*Wv�F�XõN`!&%5��sl��^�F$�JK�����yx�嗏9"���7���o~V����J��QP^X�wuu��������
�����P^�b������O�]��𴿿���Η��ehv����tz͚5��7�l(�_��_��������/�����7sp]���^��?��������K�.EBѶ*��w��?��c���7n4j�9K_�����dҌ��3H�ڶm��?�q8'ƃf||���K��ݎ�@�z{{�������?��?�y[��c[�n�v�Y���hjj��&:��w����
g5^f�ʕ{��7��?���~��&�N�R��W���oڇ��ܹs�;��/��/nNv�;vD�|���/_�7�k_��	Z� ��� � �/.�#�nR�5Wfd�؜O��1�	T�e��Z[���#������{V4�fS)�K��Z^qtr���K�i�OQ:z��}�$��{�lji�<�0���ؑt���
GҪO��ө:[i%FPI�E�@I
�b��/��F0A&�)�\e����}�{�{����Dx��G?��Oš�u�~M]�����v�rg���w�u��~�38"���9���/��f��R���(�S7�jkk��z�X<~�x͵@i6�ݶm�'?�ɺ�8��W�X�?���F��1���ؼY{�����>}��_4!]��9M����8�H!�hs��{�_�b|�w�ygGGG���2�TV�m?���u��a�?��W^y��g��7Ѩ`Úx18]===���㹥o({���;��0]zE'�!�ill��e�FAP�AA���cR-�T:Gn	��B�Jj�?W��4)YGd��\sk.;bY�������m�j߳�c}��U�Z-���;33�b��~��|~�X*���7��rĪ����&��q��p����01:�Ku|F���
� ��6칮61��}�fff~�ӟ^�xqjj�X,V*������inn^�n݃>��}(������,ο��o�;wZ(�JF�a���?��tuu=��cPѼk��ݟ�ԧ�ؙ3g�<6J�TjŊ�v�|��߽�Ae�ُ}�c?�яΟ?_(�}c�=imm���?��_�~��%	uoo���h
FZ�v������ɓ�V�#��_�5��7�y�…YMs��N�W�^���|��~�׮Jlz���/��/F���y��W����=��7�a����G��2��g>=��}}}0Fxw�5/A�\.w��?���p�n�����������?'rr��/08ip5��Ͼ}�"�A�AA�	��2Z��5U"�BP+��	e�+''�VO�T|�!�9>8���Ba�1�hkl�9iiN��&�˧���Wv�ё�<����ޙ�6r��,�ɲm�$��&�5�	������m�F��xbZ�Z�_��իV���'>�ڃ;vl`` ����Ζ�eR$�L����رV�]]]s[hll��?x�]w���ߩS�������`���dV�X�n�:xi����e��={��/|�{�;t������l�����;�|��������oڴ�
���E,�?����x�'�N\CCCww7t��G�KNdY������J�Qv����|���7.<MMM0�_��_Y�v��˗����j3�`J~�#�������?ޜ�4�r�ʞ��w��][�l��w
�}�w$Jx��墘Ǒ��}������W:�7�7������]�t�P�k�Û�z��[�~����NT\���X�;��ϛ�ڏ7Oq
��?��?}�k_;z�(��pQ9��w����_��_�*52�m����6Xd�o����%�آ,�p�a6kA�%���u�8�D��{'WؖR�������|��aU��B�Ȓ��w�[�[}W��0��,"�"� �-X�_�j]���+\�]��?��<l�2���Px����A{n֤��Ќ��J%�0Wz��
"�׏�80<6z�ԩ�\n�?�x1��>���X���43�?����S����L� ظ����ڵ+�ܖZё�dzr���-ۚɤ�_���,��,��Is���*w�I��a�--m---7�M��������Vΰd�1.�:,��<��[[[�`�-<55k~T|~�B�@`.gB��
��

��+��cn��@��uKp]wpp�>���Ba���R��6WB��|���q��G3��>Mў��s7�%���$���������7�����w� ~]|5��Neh0��ռA��!���:�b]v�y��x����)��/Ϲ(蜾��d���E���:L#L�ꡫbB�<�)��D�A�Ik�k+_3_�d1�;�� �[��%3��l���]=k:/\��*��gf��67�ڜ۽m]�ف}����L��r��H:5����JER�z�2�7��nO�mp��䶦5�P]'��CF�i|���Mx#`��Zsm�9�mmm�/ܬ�Aca��k�q�X����vi���K��h���O�
���h�{A�bA� ��������=�|�-K�+:f�
�˗�m�_?ֳ����š�KRTd�R)�2�J3��cy���y;{�h]�X�0N��n�Py~z�K��۱z���a��44�Q�xM�9��A� uR5Я��oi�`hRAA��� � K�3�Js3I��NA�HE%�����Զ,ui�P�H�3�G��7nZ����,Jf'g�)s��N�%���E玭�j�$|�{�u^���+���D:�̝G1�/� �&�u�L74���P�a,`TaAy�B� ���<:�\7�����t5�Q�zh+��\c+cDҵv����ޣ�֖s��YZ�g��u�����X)�9��O%I.-JlF��sfY܃V-I-������0�)�Lsn������䉥U�	8llvX�#�H��2AA�-
1� r�1��\D�>.�|�e�r��}@�RI/��x?:��lIg�s��3�}�g��2o��&�I�Y��8�$�e˂�<���'g�~�Ҽ2�8���εْd�\�f�:��ْ2�/z��J"� ���A!AAn�����fmF��܄�4jT_������#��p�R"[6�;D�C�_�D���m1K0F6��X��l(�s�-ݘ�b� ��g|���\A�BI�|��i�?&���`�8��I�tS[ � ��
1� r09�R�W��T��$��[K�MN�?�t���L�b�I'A8u�ve"L�Rj��4��O�Va`�TI��rJHR��8y�w�-�A��N1)�dI�
�A7)�U9&�v�g�&�j3K!� ��	AglA���%ɐ+��@��%�e�&'�Ԗ��F��ǎV-6��q�/E�%�e�e)]�R�0�e�<˲`���-��B+eB�}�F-�{m�4�����5=�DY��0Z5bPM	a
�$�B�0�I� � o}P�AA�%�ɏT����-H�)\�d�8039)�mY�Jj��ڶ�2�vdY�r>�
�a8���qK�#q==`��*�w�LY�z����n\1�;I����x>j〤�$��I�D���U���AA��k� ��`��ߦ��9pV�>Ԩ�lI�5c�e���3F�$,B��B��y��r:ע�cܣ&d#��Qf�����EZI3���I��[��$��h{� 	R�+4�K�RIwA�F�O:��rCi5�� � �[��AA�H��5DA	�� ����:��&'ќkhLd�,��~I��ST�$��T�=�A�L]�X#͟��N2�MO��	R*_$���%}��&�JE�&W�O��L�JZ����%�R�W
xƌU�#IIP�AA�
1� r���c��u�1�%&iQͫ��mhjKp�t<۶�Оg�}��R��S�PB�z���.U�i �Δ�疩%J�X�?"\W�GAM&��D�o��c*/6�黌�� w��չ��}�3	AA��>蚄 � 7�P{�ET��AIV�E.KjCnj��7iU&۔L��	�I�D��PrlqO�*X/Sa��RZ��2��L�
�56�B��_q���YV�r����@���|��A$�@!"a�^�����JN%Tb��b�(�H$�dO� ��IA!AAnq����[��D�ŕċ��T�R&�2���{����.HB9%�8-�;�����/TA�/��c�X�ҩ�뗙O|�j����d�Pdb�W�Xv'R�M넢@��:u�����k���[�bp]7�c�m/������/������X,�ر�lii��� ��A!AAn�:����"j�
�U
K�B*��(�}�#��p3ė�⹜R�R�B�`W�TU>J�kON���e�i/���P)NalZd���n��a�C'����Hf���k�FF��p�Vbrr�������9���صk�"뺮��/~�ӟ.��������#G>���1�>�� ���A����4����(��$eT��\V�y)'�TI&J��qI*J��>��/<���Z��b$���֘�9ىI߫T<�"	��U�L��I:�^�+�٥�*4���t�$&����ȁ-������)!�Uղm;�˥R��_�p�o��o/]���{���1���?�я�
��g�}F���� ���@!AAn%�Z�ȘRMIe6B�~J�q��J&�Ϙ�,m����p_�R�0,�rA�`Lňa\��*k�N��2Xk=IJ�GȻ��56���|o�\I�cJ��"/܊��#�kRu[�J���E�7I���=�ug�N|�k_�җ�4==}U�֬Y����<��ҹH�b�d2�wc����WI�\������H$�3� � 7bA�s%���~9�KZ[�q?a&.��i��U��a�����e��ᡊ[��E	�|�)c�%�,�Z�y��G�U8�z��hjm��/��#��Uv=DZ<��4�
���"��0No��d��/&Q
=���)�[�L&��c�=���pa455��o�F:���F\������|�<mhh������xzA�&�B� ��0�"���
F0�%i���	��HJX�Ӓ�(�����3g^+�����Y�
C��gAU�#�hF%Qbң̢�#��H�����/|�c'��J�t�AW;'�~�Pn����Zc��
�u��А+�v�&�8�;w����g�y�T*���w�}��!FFF���o�677?��EA��
1� r���Q�Y��Z�	~:�h/���
d�Ѓɼj�Y��F�!R΅��n���q�gԈ2P*A�ϔ�����<��Y�tؙ�dj��hL���-W��X�Օ��N�T#y��	�V��j*�P.R��qU}���0������S(�=�������`dY�L���5^kժU��j�eh��<��h�1�x��u]�U�f�2�jgg��>��HU�G���ѡM��AA�(� � ȭ$�'�'�(/�	I}�g�L�[x,�`��rC˱J�M&Ts�D��E	e�����rM��H�<�*�ģ�Ws��I؉�˗�1��RV&Zl�6��e5�������9$њݤ��@��˳t}��&�g||�K_�������W�~�{�����IY�T�����˗/��ζ��,_�������)�J%��+)2��C�|>����A(������1o���cǎ�m��+��ܗl����CONN
����x衇�@&tq�]bzzzdd�\g�l���GA�	�� � �-��0�J�L�&Joh��G��ꉧ���>�J[��L�a��$�6��6�Ѫo�������IK���l�9D��ׯ���.Yؼ���IY{-�@����]d �̫F�г�+���"�!����{���ۤ�lv��ݏ>��>Xgqc��b������駟�T*f?�|ݺu�?��#�<���?�ٳg?�D���o����ٟ�}�������֯_��/����Ri�ƍ{������Ǐ��
��~����?�Ct�����}衇�#� � 7bA�&#�G�;�p���B�Ϊ�3�:Y�2@ט�0S�܋S�þ <ܥ��(E��S�(�����™*DI+#�;�(e���}Ԧ���Rk3������F6���VE汄����=LM�()�|S��B�.��?��O<1o����}��]�x������{���:t��D���ԩ�}�s/������\Cvj�u_x�/~�D�)�Ý={�ĉu}�vSS���~2A��B� ��<d�~!c[JQ�>��[1)�h�UI��Q64L
e�"X՘D�8������/��sNl����t&}ʔ]����Wb���=�&%��lK���:7S2����l��-H:��(��	�,eP�xWA��E	c�Ъd�
u�?���aH>���'#Ʋ�l6�8��J�R*�`{�ƍ�%�<Z a@�9�r]׼:33�������G?�����LS�4�(�m!"˝�U����@� �\3(� � ��P`"��X�RF� Z�	_���a�@��a(R�\RF�Ĵ.B�/��������`���D�QJ�=���&�a��E�Ǩ%��oojlV�͊�r���e�r�47�9��ɡM�1�v�*9���%&���8&�v��7�R���Y����<���f�s�~���|��͖e����?~߾}����}�{�xň#˖-���ikk>}�t>�B�qCCCO>���?��o&QT.��d2�n�:۶�m�O�ۑ]^joo'���� � ȵ�B� ��hdL2��+�1"T%b1n��%���Mx���c�C[�S�7t�i��ۖ�,K2����H4p��C<Ɖmyٜȴ&R�6	7�����\6M��§�RWh�હ�C�H[Ȩ�J�R�2$I��A�� ԍ�:��RxÄ�Jen�+���B��fgSS��?��~�q����G?�����a�Ν;��O�d�޽�X,��'?���?��%Ӂ��I8�5�#��իW����c�=���lv~�3�)����������쁾���t?�� �B� ��ŠQ��'p�1/�L���5����J5	�X��"�Ī�c"}G�o�b�Ԅ�M}8���1}�<JY���M3fq�,���;�)��@����?ӔM&i�JY�>K�i}�$�rII=aJ'ib�B%�n%MƧ(ٶ�_��`�m�\1cccO?��IG'�Noݺu�ƍ��ľ���~۶m[�lq��$	clr%V�Z���H�Rw�}������6{fggM����(mnn��?��_��_�� �,MP�AA��F�‚��b���b���'������>LX��X�u�ڣT����Ƀ��+.���‚�3��/��|]PgJ�p���
�����]�t��A'�?��9A��Ǥ��r͒'j����(�2�
����G��`$C��O���as�…�|�3�b�nGGǧ>���7�r��o�}hh�d�>|��'?�Iع~���k�nڴi�Ν===&p̼r������Ά��͛7GO��2��=�www?��aCA�%
1� r����DG&�m�5���0�
�',�8X`�bܒ��"�����O"���8r�K����(G%������8<a^,��Ee�!�¬�N2�y؞(g����4K;I)Dū��ȶRnU%�@;�ݠѨ��o*R��1Y�T�m���6T�7S��U�V}�#9u����I>-����8�!�v��;���{�g�cYVSSS&���b�3zj��^m�l�^�f
�?}� �dA!AAn4&4�u#���UϨ-ڬ%L���
"�N�dTӐJ}d�M3h�	{�1|����w|b�Iڄ�"L$���{�E݀����U�X���ds"�e<�u���f[�R)Ι�{%O��+����-L\]#Fƴc��К��Ը$�dI�B�U
��,8�MMM�D�n.�3;�y�����}�?��?_y啊��<�uM�����}��
|�3���8ɲ�:��.��c�]AY�� � 7�03
�D�h#9�'*{�Jl�a���eǸ*�H�4�K�e5�5�
F<���Pvx���\j��i���W��e��|��{&A�:�eR)q��Q�`��v+��hz ܱK9�r�)���s]+#3�Բua�%^�0��2��9	%�pD�X�d��&uvv������1b6m�d������������_>s����/\�022255eb�����������{3�C/p���TF3BA�&�B� ��8j�;d��:��,J�3��2�Ĵ��֥ym0e=#��J33?����;O�\]�Y5<6�J�55��I�,aQ��E�?�WY�(O�1isG��ݎ�V�1�\�43�r�r)�����r�:��DC���I���r:�G�s�m}���l��aikk{�tB��
�t:�Ncv���C�}�_4J�������Ӎ����Z�4�K����1��"� ���A�q�22	��-��C���	j���aȘ��$��&{_=����\:���V2c����d
��#�b1�Iض�	Qp�,�R��l"�I�2�f�l&����&��eRp(��K�"�����X�$Z�{;ԛ��������F!}�T*�������7}���۷;�cY�ƻbŊ-[�!�-عDO���W��a��R���s�}��Η��T*����� � 7㦌�AAnQ�^���{߄Ql�*�0Qx��"�E#�PcSC$
���J��w�ҙ����;?啅e�R�u��QB3�����ظ[qe�d�qN��DŽ���x�'�����
X�[�L�'�RI�r*n�%6i_G�Y
�(I�w���cBǤH�1�z��K.Fy^-!ǤEp�����O>��~��͛7�Z�����X,;v�g�1����5k����B�c˖-�N����%������6n�x���z����� � 7bA�F!e�Cl�䌪7� Ѯ@p1�a�J4H�f��Rξ25|�˳ܴ��W�r��-���~�\��g&�j*�9�1�SB-N(��mے�D
hK�=55
�ؖ,�m�H*��Ô}Qi[/9��4U�zj�󒨟�Hi����XX����ySX�����ӟ��h磓��2�fÆ
����Nϳ��?����s]�h��*t������4~lA�F�� � �
#�%d����&w�FRa�.pm���
B&z���řё�gO�ɗK���kQN�U.�����B�R���D�1K	;�cٜY�Bƹ����?��ᡡ�b��&�H%�L@���y��k��3wt�]@E�Փ����#ab�Ɍ�o�֕JezzzٲeMMM�dҲj~ւ��8Ncc�;>��O�{�K���l��~��ٓ���1}���z��W�� � 7��AA��Bwnl۶�0���y��_C���
�G%=h��0]5
Ma��H`�5�Z�DR�7���+�cC�Ţ������W**o5��"�J��e�3���ŹT	�}�e�b�o�f�_�R^�4035�.f-׶�M����Dv�!��[:�pM��ЉIG#�C�������իW��+V����(�T��޶m۳�>{������Qsњ��====��ikk�j9��3�"���_)�HD}�


���K�t:��^�˪U���|��_��w������]�Z�x�;�/_�_>� r�0o�����4�R�%P��,���S���0�����AU3��q��خxk1��XQ]��5gEYr�	��R]��x���aV�/ٶ�9�q�2��B�nWW�ʕ+�G���;22�9t���{ٲeT�q�<ONG"L�$�$�D�0A�xTWfDZ
��NS���0=:������_��Պzff&�Lf�}h��|!���s�`;�N����c�%��܂�\�*1!d�4�UJ��rwgSc��u�7�Y�5��v��r�����X��j�}ue�F����ی�{�~�hKK+���>�0�����������7ŷ���$|^��t[[[�:�����]����D"��F{�J�݈�4O�����J��Nxj����w����Ӕ`�MkW�շ 6�/�b��,���p#xs)a���}siL��Z�򜋂���I�����B�Ee�0�������Ҙ��,%%Z� � KX�vww�9s��/f2����yX������[8d
*�}[JRQEݚYFF�͞�I����a�Ո�)��?B��'D2���Dbvv�u]F��h N��?�{p��~��9���Q<�A�D2qwWn{��0����U9���_9�n�W�
�Y�3�І=�J&�6�ᄳ�7�lNcGGǛ��pU5i�;AAn2#AYr�r������B�.� �s)�J}}}uy�S�Tgg�-�K"U�$�&<Aç�&&���Y����W�`2���ﵙ-�t�a
�L�ɑ�Ke�EU|"��s�\*�TI�<��2V�]
uK���qE��4��l���_f��)�;�(0Q^>�X{I[�(��r�,`X��J�<� � �T�� �,EV�\��d�4���ً/֩-$�h�,h,����r疎#f�J�aS��b2 �kM�Z��62�����4�������2��|��|���[�x�/ZL'�]߇�陙 �/��A��ã��R��=�	W����Gf��P�3��YQN�(�W�[��;����VMw���PFR٪��$��A�TeAy�B� �$�O����̍�q���|>_dxxxrr2���X�b?��Dm'�?�?3�M�$	�m\�f�D���r�!��aT_��x8�R)۲*�[�T�	�v,�U���x���X��U�l�R	�Td!|Ք/���
�뫐2:���T��g&����qZ��S������1���`���E�:c��2Ie5��qgR�<�ʏ � �[���AY�Ǣ:%����T*EOgff�f2��\.�pdߛ�
�B�*�	�B��Z��7b����Zj�"�?��I��:��Z�w�J)|�<;[q+̶���:RZ	�.�r!�'=ecø�ZR�l�ү�����0��%�'�'GJ��^�ۙ l��70���M�a��P�.ڒG�;j��k�h��S��Q>�)!� �K
1� �ҥ�������A�\.���{�Gt�.���q���nhj�E&�Q�}x�HI�i��u�o0b4�jE�p��Hʹe�VůH�
����H}�|!���r>��R���i�v|B}��ƅ�{젖�]�&��9)�x�ST &���ӏA�f�$�D��W41�D��±q3��-Ay�B� ��Y�zu*���m�}pp�P(�����*KiA��9ɟ���>�M zh�F��+��2�i�j�q��ZB��Tb�8;16�
?�8���m;e;��d�:�:�'��2R�y�
!C<��.�kqe�eEaE���挔��T5��f{�Q_�-L���Lf$�p2��<�x�#� ���AdIc�Y�
���?::z�ҥ:��������T��2�%��"$a,v��<s�#�0B9	��0bb��e�T�[*���ZZf��ظ+E2�3�T:�l�� -��(<«�pNm莤TEɅ�	�K�J�i^ٙH���
��6�QĚH4����!�ld"�Pe�~L&(�:� � �4�� �,u��f�����T�L&���I��e�R �r���)cV0Q��(c��ݝYltƈ���0��qR*�c�3�KN�ꎕ�Ri2�w}���0�<��$ϗ�%�Z����L�F]�g�q�T��dI�Cj�
S��K�W�[�6�o��9�����S�1bAy˃B� �&���#������s���=7��� �c-��R%�b��ׁn�+�D�baJ�P!dL�L.m�n��̲������ԔI��K��w�|�W�:��mn�>O
#Q��\��:P�j��j�`Q�W������$W��-
e&^L�fMBA�bA�7��y�YW�g��Z�*��.��+���,��n���"�/t� ��z��1}�(���n15���
YDZ��B���0�x{{����ĄW)OLO���H�\�Q5��<W�1j�Vף���1111Qq]�7Q�DT�X�i���1b��0�yL�Ti��Z� h� � �[bA�7�dr�lֆ�����v��½������0"�ٯ��[��ġ�D�Q)���y��C� ��ؐL%���D&8��`R��֦���Lߥ���
e�B	�,�t�$Q����qpZm��y�*�k3699�V*4p'b4�����2.����0X8Z�HcF3QB���E�[�u���� 2bA�7
mmm�Lf^�eٲe;.�R����%ii�P���S�jBkb�����P,�oM�\�JemK�ER�D*�����rt�f���f�q�rE�)$�9����r���_�T�����,��-���,�M|`�aD��Z[�ēi�b
�d<��'SQiMQ6ߛ�*�[��=z�B��gAA�@!Ay�0333;;;�o�.]R�C;��-*�KLg�Re��&����K�3�"&�ͨ&�m��e��m;�Q��_��+�1A�e�l*��ԜJ$���{�$�,��mǁ:��Y�w%%�eJK�U*e8S�hSM�]Ո����E4*&Qi�e�+�H�;w.$<� 2��	AA�8����㼯NOO

œ(-="�"��X�h����j�$���P�Ӟ(�Qfh۶	%�p�EK>�1fS���InQ�*Œ��󄔶�Y��R�/��X���m�|x�\Qj���kW#	�%����[�0�M��0
�C<�o��[��j�f)�䨼����E�ֵ��]� R���AY��rn``�P(,����l���y)�_���	���
Q*t~"��H��"n�R�%c>@�*-FI-j�/|.�/��U��*�/s����x�Ra�e	�Y�m;���Rt������\ι�H�����l��D	��?�~*�r&��_���|�a�(I��Pt�`3�����y�)q4��@�ﻚR����N�	{Ǟ�4'�(��)Lj�ŏz��y�AE�zs��ɼ��0�!|��D�(��b�`�����9ccc��,�� �B� �,	��˗�W�S��}ooo2�L�RKH�	RQ�Rea�jCBU8^Z#hhĨ2,���4�s��~΂m����b1U,as�L��t��KeX������)��+p��$b�|�$өJ��U*ڪC�j1��^����)#���S���zM�n�2+Q�W;T��u͛t�ܹÇ����w2�v�ڵs���r8��Bapp�=�DK�Rt}�u��ѱq��e˖��>cccO=����d�ُ~�����ɓ����|�s������֯_��޾@���Y�k��6::j�`


������===p�-p�J�211q��q����B��x�O��� � (� � HX����i.������x|�\�x��5k���D��*!TIQ� a�Z���QX����<D�v&�vl�HJZ
�]q���KІ�{	�)�K.�̥t9s���d�f�K��m'T�j)��<�MXv2��ux�XBε`���Ѧb
"K�$�!L
�WS$=)�I^׈��1c����_���K�.���+������Qj���3g�ܴiӎ;���.p�z�g������FFF^x���QhF�L&�"trff&��Çh۶m�7o�WO���>p�@oo�Js�5�;����������C7���cǎ=z���9'Z�4�������8w�\GG�;�Nh��AbAd��HX�2/��y���MMM��qK���1X+.�T�UG�X�jZMEI%҇1>;��k8�+��c
�јk�f�f��_��9�.�+�R�e��p�`����l3N����8�R��LV�N�ӲO¶+�J"�.�K��Y8���c�D40�1,�(�ʒ~�E�3anH��'�I�&r/
�c����u~�7l�`.������˗��{�<p�@>�g��R)c<�������Ixujj�T*�9s&�Noݺu�5	�׭[7o��F

MLL���|��7������,��£m۰>gϞ���}饗�����\0�ɗ_~�����C�ڵk�0�b��.��ɓ0�w��0̹��ӧ�q��H$Z[[��MOOo۶��<�822���f5� �B� ��RCJX9�j��)�E����NX��ef����Y/	-I�����>
���Pdњ׉�D�V91��4B!�ă��Q`�����H��R�3�ra[ť����n�\�m�V��9婄]�q33V��)�*=s��ba:��x�'���,��+c�we��ů�5�IԌ���ZC�@�L�jiuI�r__W�i�k饗^��B�C�d����X,���n߾}ժU�pݾ��'N�(
gϞ]�f��8/p��ٳ�N1_�t�h׳�7.��?~�@SЍx �;���׮]�~��^xapp>.\�=��S��<y�|���w�c�jww��
>|�ԩ��q8ʝw�W������:t�h;5x���n�6���`�===�����p���F�KBA�� �,]�OD�S�0W�^m�5`��:�X�Rs)d��B��B)"Tc��)4X�i
��{t<{�ʯDLi��@�\c�>R�����c�07���ܲ(�m1�$��k�I�Td�bI���js'�H��7<z�Tv�C��H0�{Z�pg��D�!2���NRuz�����u����-
�bq^�%8i�R	
@�(uWss�=��s����u*��87o�lD
8Ǔ����O�\����mZ���X�<t��ŋ��L&���[gu�tuϞ=��x:~�x<��>e0@�q�m�Wa�tzǎMMM0�s��A��N��)I�`�J-F�s�e��ZCAb��${F��[<02u�!2���D��3U�����בA��${{{뾋8�]]]�p+W��d2uA4�֥K!��D�| |���#5]T9�S�C5�ւ���(�����i�x�E�9Q�ʖeK*%'�R�XcC���~WG�JJ��PjٔS۞.κ.���"�J��F��ʥb�%i�*jՖ�N(�~ʪ��	3�Ȇ&�Q-���0&Rd%��1���џ��'�ַ~����.M����~���6���֭�f��jSS�J�1��rM$�d�Jɛ����M�7n|C+hrr�AysĹRH����������aò����yۇ���h'�'N�	1F�1j~q!� ���I�(�b�'������w��]�Z_i�w�����G���X���ѣG�;U`J�|`��,�z�)�u�lZ�l��z�g`
�|0��A�&�B�V��غ�d[[�3��c�5���}��ɺ82�/_��r�2���R��v�ah�ƨ-��B��2U�C�Ёp�bpa���y��O&F;�&{���K��9w]��%:����۷Tʕ����r���X�b	j�˕R��pl_��N��
;�:1Q���Td�dZ�:��[�}��Z����.nC�䖼U�`d�ƍ���; ܝ��x$�����Ǐ��i���5~Y�vO���f�{��<��ĭ���&б���7<�Y�+�.����-�Y4�f͚�z�A[ ��鿩��7:��
�R�� � K
\c_�,ja�5�osll�̙3WeuR*�Ξ=k~�)��ӧ���^���s��Y#�,MFGG�{���7�J�+�򸣣c���…uR�-���:���D[����LJ�����G>M,�O}Jh`a���ai!F%�1��:|%����T&�w���ֶ���D2A���
���4�L��
�&(c�%)T()**k��1�m�B�_5^�PY�u)��t�qI�T��kG�j6%e5�ŭ�O�m���˸Ռ������Q�!8-p!�<y�tvvnٲe������8�bYccc�?�H@Sk֬Y�r���
�Bd��ݽ�8	IPa�S��,�X�?���b�f���뺮y�ԍ0���e���/��:q�|�b�N� �BrE�,�
9|�p]��+��#G�6~�ٳg��*/��ӧy������.�e	� ������i�&Sҕ����MMMu
|I�����a�|�|B��J��e�%��`���0�ʂDj�(���\�?��j##�8	�2
7��q���(��{�͝՝�S����rp�\�B)9���-*�lA���#��:b4�z�7"�i*̟Di0ɵuӉ���CCӖ(>�*�kc��pla�����J�6m��ܝ�9y�1	��l�5�}���MN��.c��4F�tہ#¬j��9L��0��`���ϝLOO���kf�/<��5ֲP�B�:
��D&�
*�
��lOO�/�߿����:~���<��3� ��s-�۷�J�/ř���Y�b~�p�����Uٳ���ԩS�)i�ڵ0��Y�s�`r	��ZA�_w���u�	,�`�9o�XB�͌��!?nZ7aT2!�c����R%6�J[!�L�*C�S�x*֊��#�^��
�(����JT�V˶�)���Gj��A]�<�JQ)������ږ%�b~��es��%m����*���Qh�C���r�ҁc�IEUn%�%���$վ2s�1��1�	b�|��n�
E.�۶m\f���'N�}�WJ�Rss�w��jY8�/^|����҅o��E�����{*��K���Բm{ӦM�Dž9r$��CS�b�P(

<x��ɓ�ה�}���9Z�fMCC�1���=�|dL�bc�s�����s��q��n��s�vuu�ڿ|���Ç�"4S�3g���Qh#� � ��O�b���Bv����((�aÆ+�������@���i�Ĭ]�v�ƍ}}}�©S��(��F��:�����Ӄ)$Y��*�lu�l��[�j���Z��\�V��N��7,4
�K��$����7kS�?8%��
B9�c5�k� 5��/s#\z�P`e,�*�gK[��6�BT�ej�\)K�I�Wwv�:u�X,��w]�8�r�@�Ljj��J�T~%%�HO(���aiD�=4ĹQdh(��Kn�)*tk�<��Ci�L)z?�Vߔ�Cpܹs��~�������777���d2���ׯ^�z��
zpp�СC�J.<�S�X�bQʝ�SSS�����d��0F
�����n3�`��B2�4��ex
S�cǎ�*2��Na���ݵk���?uϟ?������=�O"�=L,>l���s�+��|�ٳg�}�9�qN–-[�|b�9AA!f�=z����J��f90Y���<��j�(&�%T�9�b~ �2���:��̢ZZZ`��$�”�
'Pqbb�^0ق9V[[���,5Vi��n�f�EK��FW���H��6N<*���7aڔ�H)��{�7�N:��
�J�O:N٭�*�4�K�w�g2aYn"��8��uk����i�8��p�
�!|�d��ɉ�Ʀ�\��\2&�	���IJX���P�2��*�&�JR�FV3^��<צuƪ���F1�e��w�w���˓�q`�u��ū0���/��b�PH&�p׆�Y�X,���U*�D"S����f���ps��WK��ݦ�0s�m��s�=П#G��5��d��`{ݺupPcJcl^��y6�ݱcGww��C���̛+Jnܸ�;66g��^��T�U�ʉ'Ξ={�B�AA!Y�dZʃ>��cW*���S�˗/�;wnӦM&��\���a�S����\.3��1��ã��P�AfZs��/��͊+��`�޽�����}�y�E�]BA���Ah�I���4�a��Ae �� �6�ѵX��D�W�_�����d��U&�R)�|߳���ʲ�J%��W���[:::&'���r�\&�Jؖ�b�DB�5��O��$b�zQx,��J�1�u_uVya	R�3
D��h]���UD��/ѓ������Y�Pi�Ν�̊�~__�/�P,�Ć
v�ڵx�(ku6���-۶�nݺn�:���$�f�.����#L���	e��]]]�V��2�|~jj
���N�����GY`��6�v\�ݳg�x
g�q����n@AP�A���322R*���
e���}�{0qٿ������6h�СC��tg��ݽ��Չ��?~��Z�6m2��&U0M���	Ӳe��~[�}���SOMOOOLL�������"� W����Tp�����"�(#T8]%K�:~
�F��"�,ah�V\���&吒1�
i�[pNY�I’�q�O�<�A��腆�R�nذ�B_��y���cq��g��H$gfgs��$�Jp��Y��.��b�2�hܐ��͘
|��JJk��cOCi迥Ŧ%�bB��p�&3�����N�8{.\�{��-�v�m�Wp���;00P(l�nmm]�w1BҼ�3���D.���.�K3�9q��ɪi�Ōy�����w��%�̜<y�A�t�]f���}%`ڴi�&�v��'N�-044t��y(���
S�E�D�/
!���W�X�~�X���dvX�X��.������ѣ�6�� �[]�Q���l�&1�CDy���lE�K4`Eߦ�	S���*U�)�ɤm��g�m'�r�1��g�Ry�t�����d�Qf�����U]m�{���N�R�lF�n�朮*)�H�����h8$�H���HΡ��K+�����+��b�z�>G�1>��.����R��n˖-W��ms��Y��d2�`�@M���+a�G���̞��������dfnZzAA!�_a1�����YL�`&mu�as��mz�jrv��	�K)ݼys\����I&���̙3oر8���۷o7)`_}��.�A�F�04H8mD.&�m�����J**o�t}�P�`JN�?Q���5Z>t�$�R�&p� �E�Jd��U���tG��\ӊ�6DZ`���빾	Li�-7�R����I'A��*���>Q�G�I,�Qd�3��0綖��1̡��H�,�$}�?u�T___"�X�nݮ]��>;22��K/-�p^:���/�h��nݺuǎW�¸�{���|>o��k�t%�0���^x�
���G�%:(�,o��\�ơ�.�5� ����Od���Y�a��{�n�EA�Ç��؍���h���%�X,�={֤����1�emڴ��tUF1���)`��矇�j1� ��d$M�[m���?'$�FS	�QK�0���ń�Uv4U�B�$a;�m�-F��Q9�(S����8�9��v��[ݲ���l�Vb�8BEf%�S�X.	!�����?�s>	���OJw�d�6�������4Rl$�ٽ���)��A��&�,��/_�w��u��mذ�ǎ��-��
Ν;��/�F&�1�8W�(�-��J����o�����^z	��D��Y_����Y;<���"uQ𠖉W*��R�7���A��
0��=�
�_��Dl9}����H���6����lٲ��٩S�`^H�#��a�;��g�P�
E�:��.�'L�`2�����G�F#�\g"�A�@��^,���6�.#ud�A��8�( p�P"��2]�12�2�\�#�P��q��=Qv,R�����^L����&�T�Rv4��8�
�K��J%����i��z���M*�b3��f�FL��$�#��4�n�$�>|���޹sg:��f�[�nmkk+�Jp[?�|��P.�Ϝ9��/��:�J�~��p�7ɡ�r%�^��"��-��J�;w�?���}��\!	�QY�}�d��
�a__��C���iÆ
�||Z�ׅ�pN�y�'NS��۷�=�믿��;�Noo/�t�ځ��+�0�tvv�� �K�]0�00'{��uQ{{�1�s����0������*���ԩSB�J���c&F���t
��0A<{��UI<�m��mo3�{'''��<��E��Pc��C�aV$�@J�`����#��@���ؿ��x�wOx��dD�yB:ڰF��J��D�DL�D��4���d��G�&,ˆus�T�e�bʉ��y�R1��J~m��x�X���<�'��5LQ(�z2�U��ZL>�7n�


p?�b�677�ڵk߾}��1J�^�TN�>}��A���N
����Q(9o��Tj�ڵ˗/��R�P8w��*�f�^�:�H\��0�x饗&&&`f��z
x����:�bŊe˖%�Ix���Ų����={��
��

��?��r���P�2555>>u���w��؄��6a.���:���
*�]�
(������	N&~3 � (� o̐�N%0�i.&j/L>`BS4���<y�����^8�L�`��#�l��k�‘%b�ƍW���l�{�y��gab����+��ܹ�nA�녘b7T/�`ĸ,=E���Y��	�K��p��$��h\��5|!|�Sr	�-�!��qe����ʬ�Y�4�5���cxxl|b�R&�W*�r�#�s&\�X*��g2?1�/Չ����w�PG���T�\�(����
�o�!��
c�����믿>88�L&{zz�~Z�c+V�رcǁ�C�x��\3;;���gb��y�FΜ9s�C�r�e˖͝H@ʼn����cr�v�څ�(!�MBo��K�J��
h�3
��aÆ�۷ϫ�@]'z7�1u�JGG�޽{�u���y䑃���B�\ׅ�h"���4�v�u�O>� �B�U�~��c�Ν0#�)��Ça�bĔ={�,�pQ:$���$����򓓓0\�n�"�JV�ZӲ#G��$��ѣ���WkAY%D
2&�hk�_`��ܔ%A2$e7#�JA�k�{���I��KI}!<��
gJ��F�������F�k�m[P6�N��]�R(�U?Ώ���4[A�����呤����Kzҏ��L"k��]G��iU����0�s�qcu�����]��+W���bݝj���}�̙3�|n�w�y����He���8��*L.]��wpv\���眙�}�j�j���J�.[�{���qz
&�OHy�ɛ�7	y��� ���
�b�0�E�,Y]+����z��9�)s��]K���ȿ���{��̝{�;��9��x(��Ԝ�O�XfӦM�w�/Aσ�}hǎb���leY��4������t��ӭV����׋�� �R/�������jnn>��E(���k�n����311199977��8�u��ZQQ!v@���g��s9R�uN1��ګ�X
��e����������'��ɐxVaa�N��g<mmm�D��R2g�aÆ��鎎����~Z<�{^L�bތ�ಶ��q�$�#�õcS�
�Eu�9��$���*Ù�_�pX\�LLDg���Md=Bbێ�RB�� �IQ��e	��/�d$C-��JƜ�ܼ϶"�1�ˎ�����(-.Q�rOUZN���B���uK(¸�#�E�F:�Q�Aw}b��έ�o<�8[�����*gxz$�Rɽ���覛nz�;&޻˔�<ijjڻw���$X���)��L�'D��>�9���)�^zi:��F��
�=�3
q4ĩN6]z��i�
7�p��Āwr#NݲM��Rsss{{��Ȉ>;ٸq��<9�������0۷o_�j�����?999666::ZSSsN�b�;v��͉]Ս���d��2��d�Z.��G2w�7CGOr!����Q�~��Jaz6�Y��S�������I�	%�D2:��|���T^Z�T/j�KoY9uM˚��x:���R鹙9q��Ď������=���Wޅ�a.j?�h�L��;_I�%�g7U�T�(�PzNK�}��

���N�؋�Ld�vqq��O���%C��)��Kp�FEEŦM��Y�j��l߾��k�
��㣣��|K���՝9X��]�VlE����y�u]y啑H�\x�߲\e
ܔA�נ�qy�UɃ�kDY���n���-�d��l�a���ٟ��~�WWWCA�2m0�+�h4�J�1ָ�1�vHz��E]6n\_XX�R��eےEdf��SN�#�N��̤�tn��d�[��^�ƽPfX�6�ْIJ��~
�~Q3�0�,�_�###�7~}}�9�W�~5��>E�t�מߙDYY�5�\s�嗟��)e�ì]��lδV�^퓭.H__����y�jAA�W\p��Rar؇?T�z=+1�TW�rvU×�oζ�V�`T#sv�
�q�d����>˒}��Pb���P(�H�]�I&S���)Dto���H�0
���n���x
�-�q'&'�e)651�J99b����2/�ƍh�&\�^�$os�19G
��9���0|J΅nt-~Y���PJřϹ�x�@sV���y?wժUk֬9��������w���g3�[,)�"��G�=������[�n=�3pZ��L�(L�g��É�e�B���]��)�I=��.�V�Ԍ$|�f-���`8�L�2deK֑��C�u,�dx4�H��`����$V�*�*�!��0�&5�P(2wzj�I�����Q��4o�?E�QS}�J3Y�F�óɍ�Dr�����3˲V�^}�E�a^�+�ҍ7^z�/�
�B�󟗀O�3��tJw[X�tvv�F��֭;��JZ�fM ���'�%�;���]Z[[����z�&�3�9_խ�q%2֐}�\ƙ.⛭����E��Uә�(�l��h+�`�0񓾬��g[�R�fqU�W����~�ZU���7�F<�iӦ‚���8i�L���Pa�e��tjjv:6�mN�9ϖ9s
�.�X�1I���C��l�s%5B��]a�G�2wM��_���}KK~G��"���r���Ԡ�@��l"�ݣ�=�mY�P��ro��ꌹ��v�v�����$ӫ��pW��2K�Uˊ���Yw���u��{�ej��z�%�����7N���a�+�8�+G��#�T2X�*OQ�r���c-~�P�ۙd~G�.G�*C���jԩ
���-a�N�yf�Χ����T<#ռ�0ηn�p�5W��p�X�x�Teh�=�^GG�IM��%�]�{)������[��U�ͭ�{���w#;��/Ԍ/���H$�v����_6)++/--�'��u����\�k��}�B/{j�����Kz�rNHrOcNw��'<�.wQua���]N�Ɛ�W�oA�e;1��g���"��endNT���w��o.��r�Nr��ec��
rҾ9�EΧK�:���‰�LЅM�l��$����#��)˅g��Q8���7�E�QcC��8d��K�)^Q�L�g=5i�)Nv�J$��@�v"kˑ,�2U�_�����anIi�eQ�3Be��URqZA|��϶'��t��B���Q/P�
f���U�x�TG�W1�(SrW�?�6G�釮`ˉ
'd������)�T�I�ҩIj�S��L�t���f�P5���YPPh�,�x�T�X]g�66�
���2�&�j>�!�������hΌW�o�،�enpojQ.f��E�k��+]4SKV��$1��.pb����ddJݪp%ӣڠ��,���cT[hY7F"a�[�{��;\W}��Fc�e�m�%'��s�R˴L�Ƣ�yՌoQ�A�7�vժ���"9ו�Vd�Fc�
J҉��*Q�j���kE�2+d�^L4g(�Cy��W�r=M)���N����!�X.��)L��Q}�U�_�ބx�M�Vev3��If�t&�Ȯ����K�A?��q\�I��1X�e������NMZXc0*//�-�p԰�L3'�2��j;���3#��PN3	�ײt���D
�>y-��mB��:\W�э���0+��  d��<�a/�q�z]�8�*��F�LM���4��‹�F�,*S����%�,��ʠD���1M�,��0M�`UUU���,�Ke!9��{�������r�d��YX���,*�G���Y3X�����`d��,�B��Ip�C�\2u�y�9�,�B�.�B���1�n5��YS�6������ߒ#bd�Bui^�Z�#9X�ԋ-n?����
e���H�pWNN߹����b⡜mS�q5���CN���&�  ���7��3��7�~K/D|�R��/ߧ�a�9MCw��a�,���&��$餂q50�A��D�ȡ1r�B��-9����pAj,$9��>Y�W�/�qӲM�YSwN,,(�m�X(�"׭2�u������p|rJ>We#QcX��z499����m+w�rn��^�$fх��ÛW���T�.����{b���\��q�pyL	�/�,%�&�S��&!�i��٢5�\W�i�MM�����r~`bh�����������GL|z�+�~�c�ϼ_3�ģ}�����5��)�A��^}��2*���9˄(�DC�j!�~q���������E�%:��I:��N̝�CLS땕v9�����8�/�m�EE��m� �/�H�ej��i��k��㉄�)a�_p�0wnf&��ףqt��y9��.�
�dޢ{E���x�{��'3���A@�]�K�K�q�d2)��eY>���|9�ѩ���!��%e����f���L%�w�Qϱ�s3��smi՟�߱��n�v;�N�}l�پ�^tK�ڗ����񙱋���|�/��׽�*Rx�O��3�7��k��_p�}���#��啵��q������č�Z��/�	?�A�+����M#��N�C?�CQ1
�bU��Twy�^y�G��&L��^1�jR�$�2��R��P�"�2��MM��Ze�CV��"�'5u�����G-*��p�"�>�܏��i'�6�La5�f^�1ě`ŌS&�|Fe:di9��<�}m``���?�nݺ���w�M�����y�9�L�a�#wv�K�rpbx:_��f��f�[�L-ސ����E���e�$��kf�� S�4�@l�����S�U�7�M���tJ/_�d�l��w�gn�\�?χ���r-0��0Ft��L��k���yU&��%��NCD�1��/�iD��z2�b�h$�.�s���z7�@��a L�vad�]�l�dd��TW���቉�t�a>�Gd�#�ĸ�qҌgzl{�l��n>Mr���®�41I��R�D͌Z�warr�ȑ#]]]


�D�w��b��c�*�!�~��W���s�WT5�gbN����M��k�\\Q��[4	�����kxs]�E˿œ}l��{�
�O7^z��A����č��ݶ��?!^��,�UR�m�\y�U�a2���F��%8ט�{UT��]��32Qwf⎅�#�H�aԠ�����:����d�c�l�
�%tI��
V�5�>�‚��Ң��|"i�����0M�x"����z����ťyU�&3�.B�%�
�0��#U�XFO,S:�d�ߠ^\w����h�Ҳ�O�\���̞��m�7�jV�g���k� 3ŗiDɵ���i$�|6�o|D.q��&�g�W/1���#D����\�#S\56Ĥ����D%4S}W��Va5\�`�ڊl�$[�;]�B�b���W�UVU�[�oR"cY8�Z�r\9(��c[h��.79��d,seC}w�@�q��T:�4Aʸ�Y:������B�`9�'�Ũ�t!FQI���zvW���V頉��9�����$��t:M)���8������]>���~��k�S=�ee��/��\q�]9LJ��Q��ܸ!��T�{nV�S���*�u�]JVl.��%i���egZ���[�I����%����!?�b��y��;#��2̓R���OS�8[+7d�'�v��,��R�.�h\�m��q��&-YOJUf� 3�;U3�NA,�RՎu��w�l>|�Y�e�oq�b���UG?�T�/%_�\F�/��l����b�<�NI*� �����ʋ>*gqWE!V&��f�M��x|2Ӊ��g*I!L^�3�zd�Y�!˴Ԣ�9�Ci8R`[�Z�R�ot�wɈ��yee�e���Զy�I&�ȍ���:���\�봁��5�!-��*\͓��/ڐת^+(��~I���w�y�/~񋊊�w��]�\r�w���{���3lݺ���o���[C��^~rr�{��7m���|���gXy�M�������l�߿���u+[�i^�x�'㱝#���w�M�[#%�����y}I�NC�R�;�����g'ķ��Կ|�[Ǟ�	�RV���WͧSmS#�wm�����;����u��oi\QE]n���D�O���P"Z�|��חB�Y��ǾԶ+L}�7�|���S�𒝙q�k�î���
E��~�)S�O�z�鉡B����X��Q���:?��	�>д����>1�N}䉟�㗔V��寝N�����G�����gs���wzr��3O�ׄ"��E�T��\�R[P�dg���w|���g�wGg�
����c�����	uo���N�7>ں���M�N���3�}��Gcsq�7#
��[�n�_S��ہ'�M�>�*�_i���n94����ӗވ�b�%BLj:r�	S5`d��&���/İ9wU�"��d�"�+�SO�S�T�n�pFUW��jԔ'i���>���A�*/+�|b_�L'5|��(
�
���K"���̶]׍'��E�|rb���ڶhf�J����%!�˽��G�>�!3rg!��(S���3�I&����,))a�}���=q�eY\u�noo�����_�Dd�֮��/~�]Juu�g>�ӭy,�����i�3�J$d,{bj��K+O�{�rvdr�+w~���X�����GC���������mk���/��Cc���b=��}zj�g�5�ĜJ�?��#_�k79PC`�J�?4=�Þ���^�w���ˌ4q�7;���4�J3wQ$�L:���D�e��N[�e��|��ԑ�i�'�a�>�$tmi�?w�1�G�N����ه�.���بx�f����ݒ�8?45|�`�x��7�K�-�(G,��`�-O�欄Bq����Gf��OO�7�}]���;�|��~��sC�;)�x,9���ؿ���қ߸zÙ?�c�y��LƳ;���7�8���d_j��o������O�����#�q�g�q`v��쌌��)��@/��.��v9��`,Y:��ś���M��3����5��,��-r��Œ����m��TMz������ɘ˹\�eZ���>�ON�RS��6grR�d�uu2h P�bEYt~.-�Xrt�J~\ם�����B3����D�g"�"�z��0Uo�5~2sBN��z/��055��c�����аn�:۶�9���?77��l۶�#���Lj8��RS9����ɇ����0���:\����$����Ծ�����9;��}�w������o�i,�ڧ&~6�s8�����Sɿ�v�ߴ���/��:4?'����>�	m))���Ͽ����%Ee+�]���5=:�:?�i�RZ��5�^���dg„�X^�)���E%�>���=��a����ٜ}�G��L��'��Oo*��2�K��2�k�O�&�o���,�֕����*WCC�������n;����z�j�n.Z1�J>79ܗJ&\��ݏ^^��*TpNG���Na*�yS�ʍ�a���=8�;�����b��Uue��o���������>R���b�#�����U�Z�s�I�LM7�T�W�
�3�t�[�2�[���F�&�U^���-=y�%���,�b��;�/,,P�N.H	a�+�Ae�\��bY������3�L��9_I��1S���쬣Ju���L(�k�^4#�P�0�z]U�#�Dd��@�ECl򩰰��o��?][[+�=q��'?��{�w``���;��kll���?~�]wmڴ�]�z�)�#v����=��j�7�����������F7N�N����ݡ�*�~k}��]|}I@.�2�����~���Ύ���7�5m����+����C�Ǫm�k�������ц�5���7o*y������?���v��S��y�%b"�/wgJ����-�6���Y�����������t]a���<�{�t݀A|b�����ls���?VB�UU++"��G�?252�H��2%?��mf�W�x����Ʋ���UB��^t�;[��7����=�?G�s3���8����8����`��qǚ�����=s�L�*��ԇ7�K���_� �k6��i~@�z�q����K
Bm�P��,��
��vD��7e���r،K
f��\-��z�L�k�l��؆�vCvb�^Wl�.jY~Ӵ�}b�IJ|�i���z���@�g�&��}���аZ���h\θ-�ʺ2�x�U5\�!<2B�󙘷Uʆ�T�$�Uӡ��M�23X����_�q1������S������pYY���3338(��������3�<�o|����뉥Sǧ���R����O6]�Sy��~���^U�%��w��#%�zq��K1W�5�ڒ�^$Ș�~���%~dUA�G7_^��M��6�76m,��(g�h,�~y�w�)}��րAb���3��u��;�#E�KJg�Q��$��{��9�3OD����ZN�ZU0X~|�����N:�:�%����ds�\o_��e'@�.,�������s}]n��;��M%�bҪj���[W��� �#b�/���7�,�b���iC�
2dǢL�@8��zT�C�YQ�VT�^YD7���Vք&�P�'	�ID�E�)�瘖i
-+�׽�D'T[ۖ�VRZTP����6#��p�`��y�ڕ׷��.1��MD�*�Q=����zE���T�&J�~{e�i�Xo�����J�V\\�jժ���x<������p6�W�����F�?xyEm�ϟ�hY0tmU�??��)��褸1�&��yz�'���פs�=�t@|f��d��x���X|.��E��-k��ӌ����җ���˫���D�'�'�X�C�ybz���Jj�aӺ�=9�۩x|�`�uu��.�q�рA���O�[|זT�����#�C�~v��˪6�Tl.����!��yr��뚖��Z�B�蘞:��uYE]�i
�ο���Hύ��JW\\^}I�J�i�) ��g�s��*�7��Jdxf����(ySLU�WwDR��Nh�I�J\'7*R���z�<پ�⡞����*�V�n���.]�%�NT���6�TUUuw�RSv�v�ڶ��9����@��R�F]�^s�'��%����d�'1u��2LM
�.==���BYƒ1�J�m9�sFb��-]/y�G͒`�Pew���|:5O��{�fNx��u��s5:��y�)����O>0>&�83�1�lfs�⺼�~�g�`�\B��ޕk?۾���D��hsQ��z���K,�U���?5벟���n�h2���]����%xR���ȷv��/�<:��'{x��G#}�r��ݵ�h�x���������S���.�ι������9�+�:�dꇃ�=�%�_��ڏl�T�!~�����G�@u�OT�#5|D���V
��½�;�r���ȩ?��	A�y��e�e�A�W��������+
B	7mT�2�A���|��LD(��U#ZdYa��_�z��}br���2}\���<�3�&�m���r�KY�(���,������\EW��^��
k2��S�'&QJ�:~jUe�g�x"zrV2��91��p�m���N%6�޸j�MN]��8�v�;3�g�<0?Wo�����ZV�}�*�ՎC��ؒ�Dt�h��tnJ�26�[��mS�u
-_h�e�=�>��軽�%�^Z^���8�8o�n�k��C��=�/kǔZ�[ZΰN���W6?^Y�h_�����]��1�N�������/n~G��\�>}����
;^�j�:v�
������S���L�s�[	~���\�˾�d!o�ɉ�tC����I9\�R�C�.�˽!%��-g���kd��
ױ�kh��&&it��r��c#L50��M�a)CW��8z��ڵ-����s�(L*mRSN�0�)��u�]ݛ:7�S�TB��obs�W�f�j��I� ���t6�I�R�i�|>r��(h�+��N%��z{:Vi�6���[���QXv��@�廱�i[emnoq(�[�A�u��
��+��k*j�u��ه���?�9�k,
b,J�BE���$��9;�TT�}h>��5>tևd�(�Nns��\V}qqɞ�{����8�֛�7�^'���W��5�O�~�s��=����oy�J+.g��[�7�?��#�{��?��=3S���[���
�j�E�Yw��#��I%��z��&��?ý_M�JU����>�]�px�� ��%��1<TRɆi�f�wRK}�,j˻,���_����d�Ѝ��&D����o�q�eͭ��&^���Ԫ.ղ��,�����r=/�e��MvP6�]r��۷_�rec�ﳹ�P�vU�>lږ�pō�3Z2Q7���4ȩN;xΣF��+����O~�~����N�LȲ�����\��с�:�g>�J�n�9��o;>�qp�SJ����„��g�f'ry���d♡����O'ϼo���T\܈R�����G�{zf���%���\��L��Sw�'�-�:b���tx`|�,��IH��l��x�s�����?hhM����?|R��%~�u�Mj��Uu����y|��džJM�[�GJ������	���|��yE��%��5�$���!^�;L&bz\�–�5u�#rFR� ��w�&��j���Y.� aD��ңL�6>Z�(Tq]��~��FZ0]Җ3"����ղ>g9��*�"fތ5��19��q���cַ�?��"�;bTχ"��g^}�L�#�#�/v���~��MV54�z�Μ�NZA?�2��fK��^�Q2����{N��d:X�Wh�����O~�ȑ#����m��8yq`��V��ڋ�z�����|�����V�Z�31����2�ey"�NY ��;dž~9��P���~pK�U�	'�wb�ޱ�͖od~�o�_w�}����������s���W���ɡ�O��|I��[��g��Q��h_�C߿���r�{j���B��Y���M���4L�s��sIJhU rpr�s�ݒ;��}���;�V��Έݾ��%�|Ȳ߷���EsM떕k�B�{�S�S뭵����"E�yhz��z��)��m+�����~����kn,(�
%��]�ge���H��`-����+��{�">�.\��p�����9Y4�d��"�YTBWf�
I2cD�fq�k��y&�Q��LU+F\>[>�i�LJY"��/Xٲ�e�-�ժ\�LZ�U���U��ؚ�d*�o�V�o�P�?2M�ȿ�g�R�$jse�W��2r��d�g^?��GL�-���Q�<7^���L&gf�Вt:===}�Ŋ��׮Z����ζq�ydl��cr�O�A��u����S�Ԣ.�*���^I�?�sl�;���Nj

RFi��
ˎԧl���Q�����Z����;�|�s��C���iax��Ԓ巔W|�E_j~�e�g'�q	1��K*�7�s6�$`Z��5]y�О��T�Sm�˗c��0�u����9�
__Q���^�m)�^�jmnL�U-_n�7k�0��˪V�a��;��4c.������v�����t��������c��=�J}��p6eȷ�,�|߼��%��o�������	��ѽz�7tܲr�xS��A�X��B�7Ā�y�݌T�V5��o\ʉ+[V˒/����Y$��5~&�N�|���� 
C��x$)#��Z����F1r��Ө���+��f�7PZ��ł�M�iY�M�qY���u��>Z����BxN-cq���#�=�Xr@tjC��i���D"EEE�p���[/2�;ō%O��B!�hAA�.����x�w|���ްa�[��3l�:\��]�����j�whz<�N�L��hś�6����Ƹ�|�����w^}���w;67%��fu���77olUSl2		��Z�/��s/��������һN��ϧ�Ql��(�}ﺭ��?��os'�Dl�G�\����?��96?��lkkI��nu�;1\d�̱"*s-�|K�	W#_��u_?��N�!M�Ņv���Mͷ�ZwhrD|���疀;����Ҫ���0�޴�����=�	�E"ԟo�jGE�;��q�m��ʕ�i޴��>�����=y�Sv�E�B�q�P}g8�g�8,�N�ŷ�󯺏��}���d4wU��o�m~�ڭ�1�I�7������p��j

�|A�Z���Sijo�xrgz���ޓ�r�ݣ�=�mUǐd��tÉ� �Sn�{�����d�D,ܕ�����9��eũb���g^��PP�k�s����^�#ڛ&s���
۶͗��ȅ����qt7\5�%�;����&�!K��0�2��:���W�z�TbR�g�ӓ#E��@��jy榜��05�I�D�P��ĺU���F͔ҕyeRA8wc���8��������r�Zբ_²ތ�z�kt�%�g�//�D"�\�s�{IM��w��ڴ�l����|7�qL$�r�Oq�K%����)�-�M'mB#��9�=�N�R��p�Y^ݧ�;��B�d�<��OD�|����
��[����\��\�wғ�Xi0<�;.~�E�/��8��]w~~>��)�U�Hdge�Y���7r�42�ʲ��r	��)OxN��^ZC��Dx����ܫ��� 猁�e��3"��A�*,)��O�撜 w�^e=�8&X�� '훑Y�|�T�='|�\�&�¦�qR�@r�=
],�1y@s~��ը�%�d�����d���q�e�a.��A|V0H)�|��M2Dq�{)B
�p&0�Z�븲����C"��a1b&�Ń��gِ�����T2�#�CLՑYrJd�r�唹�a�WZhq��+eRo�a��⠄B�sz�EiI�ܞb����罓��m�9��Q�"T�"�IHE��e�|��D�^�ZvmA��8�|.x� �ȟ3��9�����Pjp�'��,��PX�`��d�B�09���nJ43���LF>�ɿ��l�M�����R�O�lV-��W@4�L&��eY,�2��d��\��5U`b���ݠ\
�Qd�l)��W鵬Vw�F�* �X.�C�Ov�t�sZ�xz*��P���-s�9q��0�9���G8�/'���C�ʕ3�Lq���E��%��K3j�D*��l+T\�����mQ��uR5.�.�)����r��٨�KD�ё]�X�N/}��x� �xy����r�	w��C�ǵT�"Y�W�/{P3�PWJ�.7M=E[�x�gL�ϵ�x��8n�H�Ү˜�*c��6�H�C]B��젘�^�xċ����3�%n�\�`Lϙ�.�i�d`&?\���,r����y�,��x*K�b��=g��

�W�8��s]�����3%xֳ�T�zUm�Z&5�CS<�J%���mhL���� C}�P9��wDi�j���^�H��>9[bԫtc���M�^Ok�0�j� `��ajRnr�Ccʹ �u��H&]':FF-j׭�_Q]W\\�}�mAS5�U��2��T豸'��M�"/^�m�P�P9�fr~ζ���d�[���2�!�-�uSo%<w��B��2���ﵼG�a^?C��������ݤ�k��=f�vE9
�eT�&�
��+.��F9I
f1-Ӷ,B���L+�̦T�I����'�B#'y�+K��u��H&�9����v�4렪�5ͼ��W�"o��&�$3�h��c�5)�s�2�k00.pb���BO�,d����&.ލ�D��O�:�!�Įl_�91M�B�i���D�T>�d�IS�$ə�DT�\�S!jZ~j�fIzr|bb�g��Q"+�

Jl_�P5�f�9��zlK�t���	�|�l�$6g�c61��[
�|��&�&�����Éj �\xm��,"�d]j0�䭷BoH�X�霴Q��B��.�k�L���v�+VT�t���훛���74���uRD����s2�qϒH��$1\ώ�N�Ce���Ip�C�̲3�T�T�����%YZ
e#UvE���7��e�p��[1N�<�Tmb�^/��/S����>mxUe&*nQ��Y��i�f�%ɲ�����S݆��6��/u2r�s�24g������y1��~' �X.*��z�.�b��@��%;Ѕ�Ff,��*r˦��D�9��!4��Т�KzH
]���?9_��9�gTz���kzE|�fy�
хmHn�j�Y��<3G�[p� �̕������!�X.�n�7�g�@�7���$,zn��=^t���}%�l���I�g��5�]����ܝ[��d�}�y4s�NIT�hr�š��2;�큔Cf.� �V��!C81˅袺^V"�F,:��$;���̜�L\�(� ^-^=A���Nb�#��h8�	��`�,#��,4,Z�½�4F&��cqi�y$�ĉ/�����5޽��v�9]�Q+�<S��UA�r����A�\� ?��	��<A�'b�A@� ��1y�  O��	��<A�'b�A@� ��1y�  O��	��<A�'b�A@� ��1y�  O��	��<A�'b�A@� ��1y�  O��	��<A�'b�A@� ��1y�  O��	��<A�'b�A@� ��1y�  O��	��<A�'b�A@� ��1y�  O��	��<A�'b�A@� ��1y�  O��	��<A�'b�A@� ��1y�  O��	��<A�'b�A@� ��1y�  O��	��<A�'b�A@� ����l�|��g^���m��v�/��?�p"�8�5��?�Ӗ-[,9x��U�Y9q�ę���������HGGG<?�5�b1|��UA�Ya��ʏW^�qO�	^�P# O��	�8-L-xi�F�+W,�����k�f����l��e���q~bz�k���`��P���nx�u�i��-�N����Gc��[��}h���H�2�A�+�7�s�3G���W''�&����G���??��ݻ�q�P�e'���lز~�y�g:��̳O���޴���M[�扱t��c��>~L�6	�\R��ko�����|�7c.38�{n8��u7�-x��,��d�+�vM&S��H��6n=s��s��='biW^�c��71ڗN��܄���J1��1�N�O:�=uw4�蘛>���]�sl��q{�mo(.=�'r�=3��@�<)$$�$�+<:96�v�C���Q�_/	1ˢ���;>�x_wܕ��AB����ZUkr����]����������������t��\_SS���Q�\�����mU p��Zg�0��k�sy&�Ot(�>�g�U��%b*-����-��F���VK�͍M�U��W3��,q	�������SrPL�0�w�hS�b����??2�964�$uq��]�}�\��2�^�1��776���%d�8���P�Ϸ_�������"���Y{iu�+a��y]C�/���8>�L��y����c=���3�{�!��
�wQU5�x�C�\nY�/϶'������d��E~�)���u��p�Ka�
K�\�J~������F� �Im�v�BHmA�m��M[LB-J�W�[�,�������6M���1���$����w�oz���u������A�2^ʾum���TwR�ޘM�~�y�����Z��f���s�ۏ��P�g\�c�4S�L�5
|��]��%�f��P�<^2*�	�u��yb�4h�t�b�T�Q�L3 ��/�Ԟ��5y�Z��%[N��cI�I���~�-۷�"_���xl8����H��4]��z��i5�A|��dɔ�P�UW�bO�i��=	GV�DjqgPe^�5N%�dCa�ɛk�J��fTnN��G���%�?j�\qs�+�{�k�Oq`Ŏ�Ţ���i�T�+�������fz,k�VD
ȹ|z��gS��1��]�Oz9ގE�Sn�2\X
��S璮󩧟��s�l�mx��u774a^ ������ם�|��ᷴ�?9����D\���5��mY���_��g}��~�{ox˶�EUf�Z��f�����T\\xۄ���k�?�풍���8�L���G���:f����~��Z$�
|��L���%E%ߺ�6�W�.�D��w>�65)n��e�_\rY]d�8����O>�Оq���{��7�n^YP�d��v���]óS�U�u�~��Ur>����ၻ�|fp0�WC'��o7��{�[�Z���zb����w�����~�{�o�]�W]'��{g״��ʢ�?�x�׬�w޹g�S��va ���M�ݰ��}����I$n\��k7���r.����C�����d�Ը���o�]`*��~����)n۶���[�p�
���cw�սω�
����[W������?��^�������6�8�F�{��o:;S,-�+>b릹������nkl�/<�h�������{��R,��2;��߻y���e�127�=�Է+�����2��;upb��<�d�ć-T\��5-ojZW)����tv�'b�t�;~�p���
����.A�,P=�:���O�t��ColZ�-붬��@�V�\���yh~L���{n�_\�玕�������S:����u���\QO���d�[g/^307���y��Ǻq=0D��H�:�����֋�պ�,�PV�:�����]S\�Ƀ~�۳f�Sm�뚜XSR�;��>�@�Z���@��������txt8�^�:���#K���D�����#�1�()�P�B��;3�G����#�XLw�ү%�:�|���]rYu]6�/y.��S!��,�P�f�df�H:��,�p6�r��bۏ�>���p߬��ƝS��*�[W��1����䆱��٩Յ%�F�џwu{oV*�~thp~�&���~��-��ĺ���<���9������C�iϮ	�b��]"F�����ġ����K�s��������}����Sz���g��eO�=�}��
���!{~��D�:��'>������;�'�12���=#�߸�uG�&��p�Bn��쉁>�m��0|����'��x�O
ͤ��=��C�*J��X��͍-e�~���"L5XF��ݭ��]�9���m>��]�]'F�f
�vyg놂3v�֦�ɿ���l;|"���y&�P�q\�g>��g�z�ı�TҢ�u
���•���?w��؟�����!9w��3��'�C�}����\T�TV:ը
��755o�D�
\�b��
�V)�a\^Z�ZU�F����ܝ{�����k�ů�`l(�������|J5Z~	�������@��_���ʊp�;��N�ţO�gu9��yph ���'���8�
LO��}v}Ye}䴥O�A{���s�w���K�Qq^H�;׭?œ�����-�0�S��t��/>��y�������H�N�c>�p�&�#<ɘ��E0&�Lr�e/P,���~��z��׋cΉx��bw*�kd�o������#�]c�9�[0"`ym*�X]U{��C_�����wf�8P���C���K��ll*-=������o��˒���oZ-�����y`�}�����|��g��V\Z]{�ʆ_=pp~^<����ƶfǪ<3�?8?g�TQ����=��f'=1���շooh�EN�W�ԯ���Ę�Q���s#���G���φG�������&��w��xۄ�胰��䆆�J+f�_�t=<:$����=-Ņ��E��E/��#�&3'�ք���6��8ݲ��-+��8*n?�>>�ލ��8�?5�������b���m�F/��~3��l�P�����������z'5R��m�e���5k������GG�����@�́]��Ŀ��E�n��
[�Α�=��sc$�x�X�{Z75���ъ:�:�҉%;&>�}��c��n?l����w6�ob�~�����U�X~�1�Q)x׆-oY�a :w��?��;5&>�<=�;�y������7݊�J� <����n<2���CN����cM%�jzȳ���ٿ�C9慧������ݱ9qi�7�/]qś[6��B� ��E�*����G��h4����y����bq�]Y��?1�t��h���ڒr=���ñh�p��ٙc�#-%e���#�=��Q��V֗�~JHȲ�ol9<>�nN�yt���+��tڣ������6mM�`]EUmA��C��w�����A���n�lGu�E���[7~m�s�;��q�$c���l����
[_�w�W��+ojXM9C{���[���$\4�1\wdr����:܌ģ?���]�qң3�ME2��E���ћ�E���?�ͧ��OL�����7\����䦦�h{u�7lv87O�Z��Z����}~N��x��w�ˁ�u3�N�M��_�r�]�(��;V]X������7�]W�!omi���e�@_6�����^y���2#;��OU)�|�5���_|��l�����ڏ�{G[2s\��R���Ht�@�C'�8�M\��Ի����#SIo�]�$:�X]�bG]}�4M�r=?><�N9�YWV\V��<����lT��u���+?019�N����W���
C������I��	U��Omû����ӳ��f�LJ�ջ��������Gϴ���jZ)����d���Љ�I�ОёFF��ꋪk�R�����f��׮i��ne�����4k
_�f��u^l1����M8�K��\TP���.~CSK��۶��ǿ"yw�7;�7>��^C��q{''�������è��?�/�;N��i�@�?����8<�V|��2�v��S_?t��{w��N��G�����y!Fk���W\�{M�2�Ж����~<�X�*`|ħkef�Yv�v
�O%TeX�.	�JȲ��g�L+h�?����n_f��Iu�6o��5�-b�,G4�uKl�W��Xv�|����鉞��;��_u�x�-�ޞ��L��g����p����\�Bǡ����I|�d�vF�~jjJW�}M��ܻ{F����?��k,,~|��7:�s���q�o�z������C�m
�E����G��_��2�3J*"�-+�wO�w�@����F�[J����G��j����\]���\ܜ�͵�	S2T*.]SR�;Ѓ�\\�Z\j�t����X,��NZ��n՚3�ɵ"�����G��Gc�g�{?�q�X<�X�.�ryQѵ
�?�Ý���S�=�ot,�Ho����__����AJ����j~ѧ_2o����3�{(��P(ryU��V�vq��s;JKKK�sj$Y�&����и�Re�k~���Uвn�k���Qj�"�UV��ʆۚ��"L<W���OO��u��ldZ��q���i�e����ۓԵ`���ycs���	���?{��Vu����^�i
��w���v��M��8!@K Z�2J�_[�����?���i�C-�e�F� ;�N��v��m˲���Xז���W#��_~�u%�s����G�<g]�$.�9�ܪ�:�kP��۬�>���&�1�;<��|ARd�\�VYmz��BOW�T~�������`�IN&���
c�٬1�ʻ��$�#m�K̃'��*�#N� �
)��=B�R����T'$��tvu��x
"��E� ��tZ,V�x�-f���0�Ŏ��k6�Y-�+�O����:�n��f�\��ɑ�,^�6A$J�3$�%}ʺuڋ��߿�D�I��u���Hg����h*��]�HU�������#_E��ޝ�U���j��I��b�Ҫw�Wg�.��te�G��O�'D��w�E��
�vRl�\��I�+T�7�ʮ.��Z����P�Zɹ�+֌jgL�C��[[}������8���,:�\��P��Ede!_�zIJjSyI�m@4���:�v���K��A
����Ro��3҄�t�ʳ-�a�K�>{Q_��q�G=A���P�ڨ�lK�����ˆ���AS�+�¦:r2ˡ�_�����8�cb�:v�2fJ�	�
��3��.����Z��>��%���ъ��_�YlA0�9;}V��v����Y�>[/I����.�c1ո�wدNh��[�7)+�љ86���sx땉%}=47��d��X���z�M�p���%�k�7��d���6�����s8�b�87[��ʓ��e+6N���~GG��_�QPh�-�ܝ.�����~]��UϠa,�:7��c����G�徸x��I�ޯ���`�.[wo�Ç���~ލ��h0;�s��:�Ţr9}���O�g� mrO���Q�fb�6³�u���JR�q�����V��taY4|sF�hv�&�*���q�}@q`���̊���l|�?7N�Ҵt�}mL�qh��e��ˋ��"����r�ik�ӱ���rΨf��vgJZyG�)�@t���Q�%������-��G+�C�\$~:�W����j5u}�ܘx_!�^�W������m�Dl�th���f�7�Lv�W��Z-�Z��jE͌Q��p��enG�ټ��63BJ�c��\���̋�#,��Za6}QS3IA��8�_R��&�pפ�-OJy��4Zm
���jgc����(3d�.���O5s��"&k�2i~��,X�^s������M��ب���{�"�ڴ���bu:�W�
o��фΦԔ��Y�8��qF � DL��2��X�`��V�a`�hRIJR�"pl�~eNT4H[����/�t��\��t����l�ױ	�K0��X�,VVlL�g���n�����8���	�D+�����Y�9�b�6�7M�u&�	޴��5�n�⸄q�(��a���x�������1�#���8�0S &�ی�{�+��h����h�SW��}�)�+�H]I��Fr����km>��D����ۆ�/��iA�J��q"�b��s]W�V�U�g�$����eI���Q|��8�Gx@'��$.�\,�2��}�f��V��C&+Z ��|d�̷��D�E޲��l�2�ǁ����-�ܘ���L�`�Z��M��]ͺe
�0�ϲ/��u��k��ܴA�N_����u<��%����L&T l�1"�������f�|@�u�����L�G�g�kʫ�sj�j�?��{J�4Y����k65\Ԩ�H"�Xr�Ty��˺T�x��\|DsM7x4!)z(
����ɜ�O�Q\������&�eɩz�m�GUq8]��J
?=*&npG�r�b%����6�"��;�Zk���YR��j9��|��K?ۚ��21�L(��#ȸ��{{��QY��pu���ޮ�������OH8�n�Ms�o(�l.w�2�Լ"9�u�	;��|O���.�M��f��6�>}�h�@�ߔY��D�X�檭�o����\�$���
�\�S������f��bs5vۮ�j��H�����H�g����'l�} N���|��P���x���E+FXU��0�P��I�?�4Y)L��%H1��%�D�XJ���\�35�e���cƴ��={~s������p�]N����b�N�hF���t:h��]�/}��¥�b�7���(���Q��au|�7`�d�\.�
����2!�%]���Ԯ��}�m�i)QQ9QWC��7NJ�Ъ_-/CgZ]��:M}�N�aV7��vZ��
����Oό��8\�X������O\���fԫ�
Ns�]�н���8�͞�\|�0��[?(	Y���h�'p��'$�xw�H#�n�oMu�����s�O͡�j�fw�m�R��
iTzDH��~����v[���Pr�[0��m*�@@biT�d0X/A�7'%�_[E�+�}�gOE��t|c�e�D�b5ܷ�EL5j��L�,(=+��X0OdN�Xc�
��^�l��Yi\.����n���n�;�x/�?9;�/�M�hP��G'H��828�-����#�(E���K�-�j$��3K2��bZtL�,�3c���Κ���s��x��n�C�tX]�Nܟ�����*1�%9Q1�2&g#߻���ŃR1��r�,�4(�O���<(X���Hrm���?�s����F)›f�r�{�����i�4�Ӊ��fk�Zѫ��٥�N��޲��_��?�4V����+��-�eH��X��[06A<3ok�f*W�p����G�U#_��$Pa�	̈���z�N��V���D"�J�2��r�\0pkq#_�d���C��j�Z�	j��U,�x<��cw���Wr�qpk��[��̡����/��܅�'���|og[�����B0XY"�����DH�]��q����.˔I�V\,��ɷ?P&F�H��3���cΨ��'k��Ӣז�$�����LH�ou���޳*
���f��?J�X��"�p�ڳ����O�Ί��s��ߍ
���Hn���-�?�95��{���y�:�8���C��2>ѷpQ�f����� �f�x��F��:gn��l�};jw�6߯c���4'iSΜ���i+SEc��=Y$�����k���pD��-AgL���==?%�wr�*E,��{��n��u8md��8ܩr)�mf��2^��3��'^�m���
��9�!��dl |��L�u���u ����G��
�A��TϹ.-+=}�;}���|�y�EEE�N�*++���v8�C��=i�g�/�f�IQf�ԩyyy3g�d�ٷ��������믑ON9�>� 77� Ƭ�Y����b��B��|>?;;�?vb�455�����R�!&&&%%��G�@�����̙3gϞE���۫�jQ��\���U��6)����RSS�ϟ�Z�\.�x%�wd���Jj�q�6m��wR@p�Y������#�.��QK�3�.]z���{��0|,�h�k1ڬ���0�y#�}IXl6�\�~��t�ݳ����h3�3鸜�c�a��A�V�ݻ
:��2�)�h��	Lg� ���2���S�TF���g=17/���.���r�]���jb3�6���	�H�AP9m.���И�f�]���Yl���=�U��P�f(��}�����Υ$��\.���}�a#+^YHt	��	�H�5}�7��a2��yh64.�.���m�7�m�\��æ�}Ş����#t��_�W���t��&��InON�74]��i���*��*��\E*:
L��/֍7�Fdw:��&��(��e\�&>��o0�����|��>Ex?���k|��>dz�:|cnt|��+�]��0ht�
_XC.6v�7?\>n;6�ol������q
V.F���}���|t߫N�Į�	�l�5e��H>���)���6|��0A�����Q>��0#&����8q�ԩSUUU��2�_D�̗A�p]]���ٳg/\�0//9�Ϙb4�mۆ�`�9������K�+�C�>��C�������s�������[b�/��YTTT__o��<kp:�#$D�}��njjB����?�r���������������x�j4���z��Ì	����?��#!('rB��ߢq������srr`�
�Q��őc|3����_�g�L�����Q�[ec7;�F�
;j�q�Ry���Iu廍���"���G���N��Z����3�FL�06N���M��I�SX��S��tL:�9b�{�߬�n�	�Y�F����M�9���u�FYK���U�M¿ACe�:�T�MvŅ��Yl�(���!&�������E>�WSr���j�"oy����}�A��ݴi���9΄�!z��X,�L�Aɩ�ϣ�n��YH���v�CiXԢΜ9�cǎ���NG�O���4/��٬�hP���X,^�`����;cƌpަ�鑑��'O...���߽{��@�!��\�t���Goyt��ݻA���ouw����ݲ�/�>�d��N���P��W��/�Q��MҮ�M-h��l���;ւa�5p�BL�hhh���v��a䃍ɹ�۷{f/���!w���O~�n�:&�-���J�w��C����x�$gr
ek2����k�rss|�Y�f���7��[�j5!��r����2333��D��Yʲ�~���x�C��p���B�l�
�̥�6+�+�&Gܺ5���5)��t�g�yfÆ
���3��Ra����fsUU��=�܃\�`\�x�~�?��_~����B�>����8��&�ͦV�QGx��G�x≢��`OM
g�����4��8x�`�IN��y�>}�	�F�����"G:�9)��9�9Q
0̈	0mmm�=�Xmmm��۫�;��T^^��_�:33�駟��Ɂ���|�}��}�����]� �Z)�}}}�:s�̼y�y�iӦ��1�J�.D7B!92����_����N�ٳg����ؽ{��%K���IK�_��������F��ӰH.wAL܌�h�M�) �����'�x���m��`�y�&��…?��O��_�w�}�@ &eee���?N�8�p9��+�<x�����۸qc؉���$jB�JJJf͚��!�ٳ�O�����F�q"EYB�x�����8�����4��0��&Ǐ�я~���J��z�K/���ϓ����9��g���݈�VA�1�����Zlx��b͙3��.����x:�ղ�����رc�q?��t��q�C,:*�/ ��}����g?S�շ��5�͟~��c�=����-x�q�V�}��w���?����a�����T�����O?�t}}}x�T$-[��ZZ��q�� U�ĉ����g�k�.�;<@�	���&�i<h��+,,|衇JJJ�70*�?�ē�����%��b4�9��SO}��wadU.��j�*�w�R�Μ9���k׮�A'O��h4Ѓ H����8�N�?��#/^-��ܹs�?���_~���?>�F�R�^SUU��+��ٳ'\�`0�����2�7����
ԆG���	n[@��� Ǭ���駟�s ���ھ}��S��G=�[���lhhx��ϟ?.���+V����n�9r�l6�H(�0:�Ν;�@�!f"S__���b��V���}�ᇇr8aQ`��U]]�������),
��r)14O�'O�H�/ɗ���wtt@o�`B�D9f�N�z��׭V+X�v@��|��'�v�?�yG���p��k�����7�K��xbb���өuɀ�Nr�\uuu���t�ݻ:b&8ȡ�������p�P�b�|�嗟}�Y@��	%n��j���h���(O�A=ݩN�Ta�v�޽{
*��@xB���f����M�&6N�s�Ν}�Z����n�^���{o�����,]���`PK������@�j�C4���
��� , ����{�7�y�.�֘��={����jmm
`���������P(D�t�V��h4����ϟojj
�E�ݝ��߿dɒ����lmd������\
z
�:i߾}�ׯ��$N�3H�\\.�޽{�|�I�\X@��(�J�D"��"""x<�N�Cnmoo/򦐋�y+gΜ9w�\^^��P���ߗ����*úu�V�\�b�A���]����f��L������ٳ����翥��o��B�3)fٲe�&� ���j�T�g1�v;2~�v(?p�1p@�	ț��a���
�9��!��p8��|������¢�����nFK�,P��?�����b&�Ν;u��"���y��U�V��r�T�+ۡ�U9��X5y�����o��O��c�z=����Ԣ�6����+
Q�)$7�G���{�,��=H���؈���,�b@@�	:�eݸq�~�#�r8�!w�F'#�7''�?�iYYٿ������0��ٳg���d��3�P��'N����8sss�x≌�t�a�(��$���bbbfϞ�����ѣ���r��������)S��熊�#�ɖ-[��7ߌ5�wu��B�W���ɽ�@����z��w��駟����GέT*�r�#�04�j�|Z�\�hѢ��z��^KII9���lo��6le=�8s��ɓ'�ܯZ"�lٲ套^�:u*j��Wa��:5�9s�l۶�'� �"��h<w���qnyd��k�RK�t:KJJ���)��={�i]ɾ}�;5b�rG_}���ӧ�!Nǔ��d�d������_����ǭ��������YM�'�ĉ��&2�����{~��GFF���pOHHؼy�c�=Fy>)櫯��!�Ś5kVLL��n��d2�3u��m|�ԩ��cgg�s砣@!&X��/����K$�W�|���^���7R�+����¤�	Caa!r�Y�&�


~�������)t�B����n�J9��|�ҥ�'O�s��x�U�VQ�l;�*��ѣ&�)�7H�
1Aᥗ^���;�|��Ya��3ϬY�& Z̹s�����
j����ܟ�Adgg?��b�8�C�V�PlܸqѢE�r@���ڞD�uIʫ�\.WUUUcc#��v�}�Ν!�ǃ�t����u�V䛱���)�~��ߦ�����f���	@sss}}�?U�T*��+���,tzJJʃ>(�H����Ο??�%t��&M��Ƞ���v[,��RH�r����.^��{�h4�O����#��eΜ9O>�$��
x�QQQ/��BDD�@�W��b`���rr�@����p��@E��
&�9mڴ{wZr�өV�+++�y-���|ji�v����)LOC�%�3B�(A�۽{7t7 �Ƿm��U^0�2e�C=��[?�:}�th\8 x����ƞ��9DGG���C4�"�J/^,�˩��f����h�W��X�f
��j��
b��f�'��X9~���`�N��@���ɓ'/� 6mڄ�[?'�tww���"'�,|�|�rCC�uIB�0---'''����T*�-[F-��l.,,�Aę3g���V'�J/++C
 d������1�tG	L@�G�?����d�����I1.����:)�ill�g�����u:�\._�t)��O����loo�u�̸f�ji�v���$�!��ٳ'�a�`u
b�6�:�ð�￟��9)�Ą5�{olllii���R��:uj��`0bbb(�u��F����x�WA���x<j����^RR2�$��Z�_Dff&���O���텮�BL�X�b��Bp���h�B�9�����&�/��ݭ��6��Zr�xbccSRRBSZ�HDm_!�'Jyy�8�äR)����n��j���p8����j5�k�ꩧ��#*�w�}]�������y}s���sm�V������FC�'
�v����&4���t��ZZ��[[[��0��k��۷��=:t�W���hV���۵k����֭[�`AtttWW��w�޴i�>�bCBBB\\\�.�����o��r�Zm@6�B����z����>ڱcGhJ�r��f3���c�Lj�yV'͛7O&�QX��:�J�*..^�`�M�T��'O��PB:��q�Fr�����r(++kkk�@b�#���ɓ�B��d���8	��A�	G4�V�����t�{�w�r�Н��R�S2�|�ʕ+?���&D��f��ݻ��B���8z��h�6F��ǣ�
6Pb�v�����@�1�!111��c2����~J?j��������NQu8���
e�\�v-��v���ɓ7UX�i�w/�뮻�#33�rȞ={�@�?!&0�d�_Q"��9�����)V���	�Z��d
���N���NNN��\�V���#��v����/\�@!s�P�|�r� ���j����Yh!���$I��3b�����fQ+
!��pV�^M�Ʌ?#W����ʕ+E"���ڵk�ͧs8#��BL`������BL�����gFj��c��r�$jiǩS�F��j��ʠ���m\\�ܹs�e��3��@�	��$��r�b1�9ɡ�N�N����Vj�X¢��K&$$̚5�Z�cǎ]�_��/]����D!ۤ�����+�}:��ꤶ����2��@bC�7��_F
��eR�0�L�#d��x�Ml�Z)���ҲX���|
	G^����w�^��I!炂�qՇ�W��r�rs�\�$���2 ������j�b�R�m"� '6�s5'�<����V��7\JKĊ+�)G�	www_��8p����t�ƍ���H$Z�t)�{<t��Nʀ4M������̄�%�*	�C9#���v���0�Yԧ�r��(�%�9r��Q�={��J�k�8�ϝ;W�T^���ׯ�v�===#IJ�&>�  �����1�vN	;B�n(�B�˽���XFf2�k֬���\�tՇ6�m����;��ظq㍺y^^�\.�PHT���.����&�������bioo�su��`��k�[����1���z��&k�
7!� �E�Q+3jE���---����?~|�Y�ލʰr���@y�mڭX�	L����nw�t��/�F?3��da!��|䊣�R�d��,���
��������PnA���Y��a����J�a�X(.[�쫯�kBr��C�mݺ���n�;v�`0�5+��t�RT��ٰaÇ~H�Q�`�j����RSSCs���b����O�ZB�N�1(aKK�̙3������:��fq=��CBB�ڵk'O�
 ��QPP@A��y4�}���
1�v�V���׏�dz��Ѩ�	}p�BL`p:����!bе�\AaS�"�y�,�jll4�AbjjjB,� ��<�ᦴ�����Ν;:o0�q|�����񭭭cM��y]]jT��餆x�…�f��Kbb�3F>��`�]��o�TYX���g0�j5zE���b��l���^�
��E"�������l6�ɔ�d��TJmC�@BL�صk�<�]�|����O!&+++,����B?�E444 %222�ekoo���5�L�4�\.W*���[�
R\\�y���$`s��r�+W�|�ƚ��v�j=t�Pzz��nG|i����?���
6����\X
ԋ�������Ӄ����;_2���!z���^UU�y�{@����iiia����1������h޼y���G}d4�t�����K�񳴕��A�b����~N+�)))			555�r���G.\qq1L�	�d
Bͳi���?���(�Kb2��93..n���gϞ�*�����������l6�l6��a�hf&��b�	������8fg�v:Fඅiw	��	�-�ؘ7�E�X�\�Sg4tww�����K�4������,�J�h�8�7=����b���w����̼���[��O���%%%���(�����ȑ#�߼�쁲�r�Z[[w��1s�L�����X�޲�����ǚ��v_�|= �Q���a��:A̞=;..n4'�8^PPB�G�R=z����l6���6�lF���!��9i�ˣ��q��C��1��~'<�\�L��&Ns�\4��k�E��"��PQ��V���hѢ��X�@((0A),,,..F.P�.���?�C�T&$$�њ����u���ŋV�9t��o�T��Yyє��L����S�N-]�:o0`����Ԅ�f�ڵ�[
�KN�Amc���V�Z��/B0�q�^�G_.�ϟ�j�V�C�c��٭��f�q������+�L��C�$l��c��j���PW��֖���`����X�@P�!&�X��m۶}��������_~���n�s]����K���/�BnLEEE\\\����~��'����$���JNNF
---�r@�nnn~������F9{cժU���:�u�{�R�(�a"�hŊ�O"�H�,Yr��A��q��RTTTXX8 �X�m2^�4�Ȥp���T8@~;h���
=[2hZ&�A�f:�izSJ�������f�̙yyyR�B�$`p	0�9��g�1��/��b__��n���K�2e��ʑ�f{��w������w�y����Ϩ��������O��?w�ܛo��n'F��|��ɓ'o���0�BAm�"j�===���cM���ҥK��ʹ~�z��V���������Q3hgc'S�E
A��������/Z��͠�r�2	�h��.��6�������ٳG�R�8 �	 �������s`����=�\ss��"�ɜ5kVx	1iiib��%���?����N?�1�Lo����'�-�n&999%%şP�F��ÇQ�
��O��ȑ#O<��+���o߾�d@@�-??�Zՠ'?
�]q�����,X�@"��>N@���w߾���n��d��R\.d�8�/AB�까���ÓdM<�[�������-����p@�	�É��^z���$mmm���/
����Cnnn�VN�����d������w���ꢜIoo/��O?�T�V��M�|��Y���������>��T�k�Z�(���VUUUWW�2��00�%K���
рN�'$$�V1ք<oժU0z�T*�|p��%��R':�Q.d�H9�T��(I��ƚ��>���.A$5��&���}��/�K�^�gVeee�?�xaa��j
�����c4��3g�X,��1�L�}�ٟ��熆
�,--}�g���۾��[���a����,t#�v�M=����Ձ-��鬫�C�����ݍ�:���J���h �J/^�k1�իWS��6l��������ۛ��Tl���Y)��I�b��B��xQ����i���'N�f7�	�7X�ƃ655mݺ�����������ر�����"�kY�lٌ3�|z%ĐU�w�ފ����k�ƍr�|4�8������<y����f��ڹ0^"""�,YRZZz���A
�����ѣ


�!���{e2��eCy������{��Am�l6{��p8.]���g���̜�C��X�n2B�E�K��vڴiIIIhȂ�Vq�C___��S�4��5@��%�ᷛE���&��^�#G��bŊ��W���� b�Z������O?�t�֭�/�������_���}%�������?��x�h���T�D�,�y(������7��ofΜ9g��P(|�2dsd����s�Ν={���}���j�0�Ӝ���VWW���/�����w�y��C��ҥK)d�t:��ۿ��۝;w�6l4�j���n?��k�����"��8��E!���Fs�@�8>>�Zrr�k�)`�%_DC�^����H��L$�[N7�~J!��12��蹥������vS��Gw0APA�F�Aw}}�P(�5k���ѫD"Ao��!�^�ն����ӧOWUU�{�H�!Y�jUvvv�~s0�̜�����@Ŕ%����^�|y�޽,|>_,#��`0����l6�j�X��5<Hp��E����$�
j��,/^lll|����L��d��pS�����C]]zk4o�[!c"�����<�LLL�P�Z�b�G}ԫ0���滭[����|�F�/��
���\��Y�TtPa�	Z+q�8>�C묮F�I7n���-!&8�Z=0Ἣ����ȡE��Ɍ����x:�����l6��GWܺuk�N�!��<��}�N�Ƀ�J�dr_�pJ�L��hѢ��r��ύ�w�,ѣFgg�S�P[���J�R(�= �_�ד��Zx{{;�^��h.�Z��'^{���w�/������*ĠF��f���d���4}���C	֪���.��$i��a��
0���i�)^<���loG�w�)��2P���A����2Z[[����l�????333�����E��ٳ�׆��_�&��lٲK�.�ܹ3��5KRUA�T�R���AjU蕼���:���H�}������w��D��ɓ'������k('��K��D"2A�ZPPBL(9~���s���di���0Pa�!hpn�2]
~n�������ëV��x1Pw��rLw8�X���]H�P<��\.7�ͅ\�͛7h9ג���e˖�#s�8].��f3�L���z�^�ѐa�G��rc�J���߿��7���v��p8����˟�d�&��Ȭ^�:PQ���RYYy��	ԡ�'H@�����2�Y��������b�G	ʀ3�a��/��bZZ��N�-';;{޼y莠Z����ӧ?��C3g��»�n�F�k׮���Y��0���� �A:��T*gϞ�VR�4//:TP�T�ͣ�_#l @u��Y��h�ӧO���M���
1���7��������-[`R̍��p��x`ҤIaWx�˅��;vl߾=L���a���999A��U�V1��|%��6l��l�z�g�}����%�TJ�� \@�u���!��
�v�jiiW�i.�3�ٲe�]w���p&�M�>}�����*H W9�7o����£瘮��O>���?����b�֬Y�z_�~}�r[�x�X,��<�V�Ν;ѳ{�Q��w�N�a��N;%��{��]�v�����X!f"���������Pk��/~1s�̰�*xp��;�sӦM�$�
O΅�����X�bE�֡l�O�����&��	])x�������q�y���� ����I�@%d�tt�;wN�׃M �LX��Ҟ{���wkr�|۶m�d0P��"�6m��裏��Ɔ�`D�O�4�w���w�1!��0�D�ʨ�_����V'��ZXXh2����m<����Zii�J��I1���Ovv�x���dɒ���響� @�uIIIyꩧ�Ob�\���7~&�H��-[�l۶m���a�p�2e�s�=���DZIwL&sݺu�U�@ X�|y`�9c��R	c{0(**B��:6qY�4A�^�p�����X:���ŋ0)�1BLX�z�/�0~��>���/��rJJ
�>a��$�G����光��{��g�.]:~��x<T�?��?���yH&�9{�lԉ�̙3��NF�Dnnn�^�Q-<��4���p�c��ӧ�fsi�Pŀ�0�
���<#?{�lkk����0J@�	����_y�[�C"����O>=�Ur������4i�-�ٴ��?��˗/�m�	r�322~��_=��S�A��Q�Y�x�/����u;�5�d����`4�F���t�^���p` ��=-�J�68�ϟ�j�`F	1s&׭[��������~뭷��Ή��f��;^{�E�<�h�>}�s�=�p��q;��q�\�e�T����F	��C����<��c������Uق)�ʀJ�rΜ9�(grr�ԩSal *��ܹsV��<R�K��$����Kyf^YY���l��&��IL(X,�����|�M�B�K�x��zh����Ӿ�Bf���ӟ��iӦP*PA�]���矟;w�8_M�a��]�h�k����+��3��[^$�T������{[�n����MT�G�:uj@69b0+W�Rm��p6��c�t:]����!`:������Hy�4WQQQ__�Q=l�	�,X���`0�@��뮻�~�R)
����y�
�◿�eFF2{}}��n�srr~���W�L.
j��JȵFM�ܹs;v�p�rC_�X������055����>���z��w�y��|���WNTM���j�{�m�^�������R����t���	;Ngijn���A��'p$�&r��J��?^PP�}�����*H��Hl˖-III"���_E�/
7lذhѢcǎ}��g���V�5�B�~��-[vae���l6*��+�Ν��ںk׮ݻw�T��@ ,^�x��͓'OFǷ���k֬�S�Ay3f�@
2x������?q��SWWg6�5\��	_�
=�������ޞ�����&��aL�;iҤ���w�}�{�w��)������ӑ�~�z4Ћ��	�w�p<lܸ�;�(**����/\����sFFNMME�s~~�R�d��a�|�X,�cK�RtS�6m:s����KKK/_��k!�I$��3gΛ7�x<���wd���;mڴ��2ʙ �[��q���r�q�������p8T�a& ]�\oF�=z�!��BL}-�H��������������¢����F
�	�Unn�9s���9�A��.��z�����#_��COO�Xg'�X�)S��y���G���r'��э�BtSJ���F�����d4t�O��Ps�Ν5k:@o�l6��m;�ڦ���OY��0�+V�v9/^��^��*���Z���$� �L@J������X��?�5���O���'�	���oop��h�������׿�`Rt@��|��7��3hW��9�E�iF\�!�o�|[�V�����3g�455i�ھ�>��ht:���$M!�@H�Ҭ����lt	�q8�["�r��~{���_��p8PGfG�omm�t�ReeeOO����~�j0Hu�T%��I��d����3fDEE�"�Md�'�h<O$�Z�5B�\�,mmmUUU*�J�5Q���crz���&��b��J����5666##�ٍ����6dR�ɑ񣣣Q-��+F�+�n��|��UC4y�r�:;;�c��Q����CCC�����z8U���aF�	6
K�	S�\)�mw�{,�K���%�߀�'+X\����:��B���p����sO�6Rc�XP0w��q����ϊdL�J>Hx�:��\u��g�o}H|cnt|��+�]�4:��'}��Ʈ�懫��mdž��
ײ�����\C����c���׭\�G�:�!\��kvM�h>��O�r{
6p�
�&)LЇ/=,&x��|����=r1�bx�S��]�#��҇G�,��@.r��+�A����V��n�#;��%͎쏾N��*��q�����m�/A�_��m�^�!3�L&d%>�O�ʷŒD�fl���
1�=����ݻ�ĉU̳�|�����-%���Y<������pD�{�$����3sV�O�~�n��bj��v�
����Z�W}]��l.����+��F�J�m6j���
��&0���K�_��\����6�+%'?�h��R:~WLҶ��ȷ&������T�|j��K2��r�=r���eX]����~������dڌ9�q�\�����������M��_�Q�������M�+b��%Ѕ�%��Å�����Z��쇨�r��6�}�k�p|�$��ѿLN[G��ݬ���}��P��X|xߚ�`MB:��m�����Ň[�L���^czG���̂��\B1 Ā3�K�B
�^��K����A��u�p��X�*7�/
FOss��no���Y���9Q�)b�׈�����#1h��`p<�NP�DQN���lt:Ww�W]�Ew˵g20���!�>�*��v۝�~��dgӻ�%'t~md��b�)����Pˑrx?H�A�Ag�p�[N��.`�o��H)�m�aQl~ԍ
u}!���2�WiC[�3����	~M߉d��b�ߋ���N��"&󥬹��L����3��_�|ڔWJO�U�p�n
�{�'�'w�N�C���HQ�FhN�i=�/��\�qn�4�`k����k
��#b�\1Ư��CP�G{;�alkkH�B&6�G�0����`0���YtxA~�+��.���p��+3�'���G���C�bGs��b�_���?�����85�e���Ŏ��J���‚?e͎a�)/��_?�W�`����Ւ�	\�l�P,�|����8I(�1���:A�Y�ّ�o�{7g��9��[bN�ش%}���c_O�A�:�8s��Y�����e�H�*B�d?��M���s���3�Q<�ݩSw,���	�cȸ���[�D�^����5L
LA�d2
�He�6:�a(3�˛��剮x���i�1yҘ���B�U'.�,ԫ�ˤ�|�]�Y/�X�ιI$�OV�+�B��&���ጜ�̣ѩ��K S�1��W7�Y�R���r[�.���g�r92��',&'zӢ��W笘������ڍz���0�8�ɹ�{R��ejޘJ9G��t��K0�*[�A��2
A�+x�_O_��Lߔ6�ڏ7�Ow�z	'j@��f�*d�0�O9wDzt=R�4��tמ�t�\nK�����v��fr�0����I,:;;�N����a:��GfFDч�=*:��3�Qq]�m6�M3i��|[_^�� ��q\����	|��(���P��TY�OR����,+�a�Py������\�@�����L�@%����?��{K�XoY��-�N �D�˅{�!�	bv�2�ǯ6�aM��_��ͦ?^b'���ܕ^��\O뛥�}S!ǵ�8�<��?���%�fݸ����~^�A����(7G0U*�a��P$>��R9��O:�GUJ:��Ss��|�>y��uWsu�Ag�Y�t��'ʌ��0m�ȳJ�����"�y���hLJ4�7t#.��S�<�H�W[�hJ�2�?[t��{,��pf4��46yI\2'Ȗ9E��I��Օm�.9�T{U؋?/\��fq:�:��ɓ�p���:|�h�cZ��f���l0 �@��Z�.��„o[�D2�3d1��2�m����teK����Ɖ2�Bq�'=�7��h�������2��̃��w&g.�Kex�0H�ܵ��jt���_7+��Q�U}:�r�8.'�2&{���ޔ율8R�Q
"6�M��W�ԪG�B:=M$��0��9lZ�W+�8�a
.���I۪/���Ҹ]_����6��w��j��cU۵iy=W�x`�L��,��y��/�.^4j��v��$�sV�v��������&����2�H��d6ݴ��K��4.�+cX���ˋ]��6�.��}=����=O��c�ijg��n��M��_����,Im`�����b,.���z��b�d8�n�Š}h�,R�BfY��^å�Z���\�P<J��}����n��#�Xt���f�����EBm(�>@��b�4��t�m.gqw[�^+d�RER���ȩ�1;՝Ʊ����t����Z�9�+�I%A �'9koO[�(�I�8�N��L�����$`��#V!:K�@����`�l�ҸD�g
r�{��W�JX�Ş0%\suB�_�u+��˚���t�Ow6�YQt�ʹ?�Sc15w�l�7��X����,i��)S�����W�f�͞�"�����e�W�hfGSgc�ـ��u��z+M6���޷�]��8���{�,���1�v��]GW�V_s~}�䨡@H�������q�J\.��
+�	��B�V;�N�a�ai��|�<&KM�k�ז�v�j.�v!`�f��E2����^�ECy��D�'�$��Qcͪ�a?�j����44�A�dM�Eg�zGg��KbRȷ:�����^�MS�	�aIˆb�'R=�iX,����~����r�jƋ��<��~�bXvAU�:!�y�5�k��b}�+�����\�
�7һ\�����[n��G����5ی��퍟]��XsC�z }�?f)5�LZo"1���A����p�J��`���LA=���nA�Grj�F̔ƈ���Pw���6�+�]�Cq[�J��
�둦��ѩKz����)�(
Yu�mU]M��{Wc4,�͝&��2y&��T���
7*���*��Q���
��-`��NΤx|�賤��EI.��Z�sX�=B�˵���oh-�s<O8�/�B�|�����D�q�`j�\�diܰ�����n����
�Z�2_ ��2l����=�!�Ƃ�\�F~X��Ȁ��hDޢ�@���Tpb�l�b�LAڮ�l,WwU������J�C�&as���7�oJ��V���e��f{']���bn�k|���G�<�+\�JF#69�U�='�:-4w�ͼ��`��NOGn���0u�X6\����OeQt@6��m^��cYo�)W�M~���r����g�Zmv�]_A�_s�9�Y�d=��E�wD�cy"lh
jF��B�5/�x��|+��K�b Xh�Z��eg��-r��d��!՚�Ru��㜟թ*z��]f�6]3O�*�v�;��>^=�7�f��~���g�����$Lc�fG�%
͡P[�G:U���{��Z�C1kD,��)S&L]�M��x�"'��5�h��~�i�Iٜ��HX\߷U>:ΘH`s�L��=��\f,�]���0w&e�ݬT��Qq�f.2�aqW��;�kt���i4X���@�^ǀ���0L�;���1����^��}F;�6��a���j���Q\�TY̴��e~l���p>cX.q��v7��L���DY�F�U2��B�Jx6or�]����]-俌nw�Y�}G�ڤ�������R�wj�Ĩn�K90!��*���K���4��&ޯ�yE�[_�gL�(1S����Q]�w����Ҝ�x��ߚ8��q�+���􅶡F"d0�~_���C��.�G����e|cA���v̈`d@��`���Z-�tn��1���N���
-8�1Tfc,�;t��nm7�H!��ӧ���2c�+F��?����riG�e�u�X��Bg�(��%��h�;�6[�^#g��C��/�v�B�Y�uoB�w�����n�z(���8ͳ+��0iX��in���d9��d�}�!�V�:��:qbs�To�n7�ڬ�9��EO5z��j�`qȚ�/mڶ�2�����\�V�gkv��zF��ne���V
����ÅjK$1|�X�k!��X,����\�
ab�ļ��i2s(���(c�])��O0&�ي(Y(��H�im�QTO�X�i2��C3:��Z*�Vx�`<~�X��`��j57M������
X�g0�'�͌��=���ݡ3�&O��P波*L���%��p-8�>E-c2{o��CHk�}�@2ج��#_�b_ך���e1��-ki��MI��yo�˿��Ϻ�$aē��o��Q�t��s=��֗}\_�6�1���Ew��\.��`
F��Y�0~�#1�4yL�xxSj.�P
"FH���鲘���Ʈ����⬌O˖Fz?鳘O�uP�jW�)9[��Ebs9;���B:�*��U��C��
���(	F�Eq�?L�(�,�7�]��}�]�g��8��3f��bэ�D���=�1��:ݮU{��>�7���w���G���i��D*:�M�-�+�} c�q�;���FGIFbF��v�\z⻎�F+��
�1�SGt:��&�0�B"��'r���g�^���ϟӸ_� ^R"ͻ$R�I�u�I�Z�ĉ�RT����u��ĕ��<�[I=�f��'yv�d��d]�:)'��*�8�b;��Ȳ,�2u�$K�L��H���;0sv0=�s���==��!0�X=������?���q���}C��ڐ�v��sp]_k�d���k�o{l�ݭ�1W�'�w�؛7�ʺ�V)�X�ɝ��nn	��>;y㟎�q�Tk�]��lJ(�p�=�G7n[���o���ٿ}��������޷糷�ȸJɆ�:��m�>��V�g���#/�|��7�|��[�?{����{?6<���ή�������V2��w�^[���$�Qr.OM������7�����?�V��o�-7��Ia��ճ��Lvpp��!~*�1�Joo��y�ٶ�AS�ҝ����9�~WPb0>7����n\wn���}�ߐ%7��7���١o\>[�a��]];������{��&:Mg��?�壯����#�[������30�І-��V+�\��z�đ={��K���U����l6sr����++�H>Un��aŪ�yߟ���r�'�ٯ�{��5ڸU�Z���ܝ�\3�7o��ԍ�+r}Gǡ��Olۻh$��r{�o���l��}:���W��ch�-���.[�V��w?|�ݷ�ۉ7���wr������ßر/�����/�����<�v~%���vgGK�9��>y�͸E��[Z>L�����v�W/�vn997���??��<��֕�����;o�ą�}���Y:�.u홬̊���b�ps���m�Y/�P��4~a��}�k��ڐ#W/��[/��Jt��r睏�owK~W߱z��߸z^d��񦾁߻�O���SJ�����ڞ̯�����J�w�_��[/�2�xe}O�����!hF�Uo[�PgwK0��d~z����z|��R>�:���8�������?}��Nsn,=��o�z`��l��r�H�l�E�w��xv �|�����~z�|z)ourz���PǦ&��g/�\]H֤W����ã7fg.N�w�ց�������R?:{�o���t+
=w��y��}���;yRn�_�z��<17{~�Ɗ��ܣ�wl��oͿ����j��~�������~r��y��'�r���[�nA�l�����CJ��L�B��4��������Yݹ�X������~���]�.f�k�,�A���1b�9֬Y�;#kc�NFʻ��^��/��f~z�ܿ�;yrv&�&w�?s������SWuv�94���dm��ڦ7�qg���.����^~�ʹ��:[Z��J���3O�:��?����%_���}�n���J������<zd*6	�_�ٹw��"�Jf����\��+��6���ƞ���9?9��ySݪ�P?�r�O^����gs_a9��;���Lf^J�oS��=�_����S������?�� ��}rr����6�g��Z��х�-��ol٭�q��?���k_}�e�!�rغ���Ϥy��\�}_������־U��{�o�����R�=�iɪ�����v�����ʊ+<��ʹѯ7��z�v��.Ԇ��q�gW�'�09/\9����e)�C��?Xv����ڥ���s���w��ɔ�N�������?_��w�\,�����kFo]Q�)s}v��3Ǧ�nrqv�'��N��;�ؼ+�TOʸ�Z�T���Z��J�әc��o��ۯL��:-�z
���zo|�O^~���w�\(�Q���?o�����y���li�R�wo\�����c�m��emť3���;��'޼�}z��]��/�.g3s���=������{��?m�c�Geݒ��mߒU]]]�� 1����P�ؙ�ιlk{�<]bJ�{��;�ׇ����\,�tѫ�co\>��u�t.,T��{����7�V��OO�79vij�č��W_8����#3e�~�*_��<;y��dq���{cb��\��o���
[[�a�ũ�o�:6���]�d~|��Wn]1�O(ZnZ���u��]\���oO^>rj����uמ�5�:�"?}��ص.�������/���H䍙��ϝ8;~��N<z����fs�L捫�t��S��W���o;�i����:Z�>����N�<\v}����u�z�p�g���?y��[58��N�jm���~r��w.��PY~W,A�糝3�ޮ��o~*b$����5<�j�2R^#�s��5�?c.綑��J����p0v>nᦹ�ׅ[����-�B����z�|`iY�Gk�9��F��֯h��s�܅��6�֗�?��?��⋯��~iuϵ���w�l��k�
(:5y��ɱ�l�a�ޮ���������c�J�ѽr}����"�s5�����M��_�̾;7�ki�WBdg�ى����Xf��쩹2N�6���ٿ�������|��%9������z�
���οr��ə�uv�
&��4����ՋS�l�JY4�)�����3��{az⩱+in��k���7��=��7ؙ{���U���̅��c�g�^����}G����#��+;:{������L���29uff�ՠ����h3���z8�p�w_O��=�[�����k��������ܿ_�p5��H��s����3�N1[�6�,�Է.�w�������M�y��m�7>���k׮m�ט�d���á\��?��:�k�-��-��'$�iL�e�	�1ܕyk���� =bKs4_|�a��-��r���l�lp�����ei�]o��r����v�C!#�Mh�����/N��*+�/�&��CÄ�<,\��#bb�����/�������[2߻u�t;3�����Z�[���Y9�F6s1���V?eim�vϛ�f'��3��θ(�/��<���>t�С��>������ ��I�������W�]�l����|v^Ծ�#�T2��P(�7=ےQ�6m���e�HƟ������7�{-�L�uӲ�m���s��֭Z�����į	jk��ͭ��#ק�21Ѐ6�϶�er��{zz�J"����nݺ0;ib�-�m%��ƒQb��lkF���vww�C�D@m
���tgԶ�S�Y�h(�^�]38�v�ڶ�6v��b��������}�'f�)���
�Q�^���ؿpp�5z�A@�mٲe�Ν+�w����Yv4�{�M�N�nڰ1�K�1R"�����������W&z�2�@X=��2�>�ٿ����0R"��FGGw���#[����(���S}����عu����Nv��b��SL��ɵS�t���l�Lf��ٲw��իWS =��dxxx���ݭ�;/�X1�R��\e��sy�wj~�֭7nloog�H� �zt=���^�n������`�,S�\��:5س��V�b�(]@�~����_{mr�ʼn�U1���{uz��Ċ�|��m�F9�r�P���m޼��~�:�7\��>����}rnӅ�y�C�Z��d5�
N��Skk�]�>�����~����9����~&���X�����{8����>P�ꭽ����޷o__F���f�i�K���s�o�ܾc�}��;88�JI*C�M����n߾}�t���XKK�B
s~|��������hKK�@eb�9y������C�^�%X���d�;=v�����7o�����nP1�n������Gwm�><�9x��nz���}r����_��8��#�>z�m�utt�[,A7�0�y7n��_�����߻~߹qִ�%�ޫ�N_�>}���_f�$UAM7��yCCC?���O?�rq�s.����y�@�M�Q⑋.M�eľ��?�lذ�I��_%�|��s��ի��o�\��p&���cݭ�a���2՗'F�N��x<t����t�P-1,	�����~{gg�뿶�w�w���ގ
�\�h�4�c�|v��5קz��{V<��Cw�qG__+U�"������m۶uww���K/��rו�G&fϯ�|y��r;3���㢌z����˓+�f{E˶m;8���LS���.`	�[[7nܸr��;���W_}�:/���6��P�Wvηx�1P]%�1���x��l�|�;���7:::00����P��=vK��y+W����ڶm��Ç�|���c�N^��8��ZO{n#X���MΎN�
L��N�wN�mڰq���[�l$�P;1,E~��ۻnݺݻw?���'O�의���n�nt�^��<��z����P����M�koL�OͶ�e��T�|fhh��;v�X�fMGGa�AK�8��:88���722r�…3g��띚Z91�>)g:Z��Z�;ZfZ[�W�[�[�'��y4����9�"���l{&ۚ���f��2�3s��َ�LKF�_�n��ͣ��k֬���&�P�<vK\{{�ڵks��������<y�w�9w�ܕk�f�tVz����Of�TB(��&4�l�S�ߒU�R2+<�mɈޮ����l���kkk#�P71,�cvkko����ڵko������K�.���_�zujj*���9333;;{�ڵ��9v��������#�����
�c�իW����.�~�z�ǎpN��,;��ps֮]��dfggs_�R333�l6w!wM�+;
@�jkk�<OJ����嵷�����R���"�`y�4r:;;���xuBP'1uBP'1uªI��d27nܘ��������mkkc���bRy��_�����g׮]��k����߱cǮ]����evH@����_�~}lllvvV��������}}}���O<��#�<B��C�ʱcǜ����]�;}��S��z�O|����g��(��ꘟ�?y�����z뭏}�c�����cդj���>r�ȗ��|�+�
`!���.|�_��Oʮ:���x����<�ɰ+@� �V^~��'N�@� �V�\���|��B15��3ϰ@� ���9�N!�����e?AL
e2���bj��������|15422"�d?AL
�߿��B15����@� �Vn��}���@��]P�����O}����9_�R��_��7*���+W>��c===|��� �&>�я6�$��_��_�9s��{شi�#�<Bh01�����Nooo3��T6����L����TSww���>��O|b����
`!������={��w�}�=�؆
�! � &��z�T���~}ww��
6nܸs�λ�k���]]]�.�D�����O��q�������LGGGWW׊+6�mٲ%w
;
$ �I嶼܅l6;�י�y;�DS�����\t�	A@���	A@���	A@��|5�lvzzz*orr���k���---�� &��G������Pe�5;;{���l6[�ͻ��׭['�L���˗�?�{ı�����ɼ��޽{���������ҏ2$ �I���������*{�+W���_����te7ߵkק>������m���Ϝ9��;�?~�ĉ���N��q�_��@)�o���677���P�AL*O>�dY��u�]1������s_+��'?�ɸ�^�x�^8v�����X����o�9sf~~>n�l6�:���x�g*�*ڹsgww7Z���D(AL����|��~����'O����+7	}���ַ������-��^�~��_�bkkٟ����k׮%�jMJ�S�AL�'��Ɨ�f_��g�y�駟~��r��8��?��ߞ����s���-�/�ott4w[�t������ ���>}�{��_355��D��W����Fv�ر/}�K��w.]�T�2L�<�(y��9p��b։'��/��?��<	4KALcz��w��/���)�E���ů���

d��b��ӧ���/�k_���e���A�h�\���/~��_����)���U��
��b͉'�x�L&C
��������AL�c'��i�F �T�Z�E1hB1�L�D�g���c��x�@J*��T��hv�
T�\b������Q��Lo�<�^�9	�1��q����	����2^�sZ�q��ivmmm���]y���lv~~~vvvfff�ڵ~St��s�s$�������U__�/��/vww�{�;v�n��
�9��ΖR���#A� AL�ژ7��v�Z?�������իW箷n���}��	#�l6���~w1AL�o��o


�{ö�����_�F�)H��\1����۷�۷o�޽��r������pKKKYwҝ��A6�-��'�=��+W��r��|�����?�,1Me�ƍ>���w߽����A~	X<B�,1����?��C=�j�*���'I�r���GTp��<�(7�!�A�!�i|��=�裏?��>��V�q�B"@�J�jR�d�h�I����w�С�~��۶m[d��ӑ�yJʅ���D��v��ۿ�ۤ0*>��U ����̅�M� ��
|�3�ٻw/)�
N��`�~z���%�p��&���=��#>� }aԚ��?i0DoX����?�xWW�hړ�et�`y�c$�8�ř	"�iX�Їv��A&
4�yR��E�f�[�g9�W�9�<�9_)}F�WTv���TXRb��y��k�������b����'z�������N�6�2EӘFFFv��I9�Z���Kh8�4�={�tvv�T��JP�s}2Q8E(a��~.A@�&GӘ<����~��tJ����N$*���ޅ�̀ �1�۷� ��ϫ8=�i�~2��].�@� �y��n�:��фE���e$9p��H"a�4���n�K�ȓ-���d2�5��l6�_�y�~}��k����=����WD�h�#uG=��EĴn�c�h��uW%�aJ��kМbP?����/Zc]��&�l�y�s�m?��ALY�
A�Q�em��+* "�J6��B��P���0�wALZ�r%���uNVrK�6z�b5�K(l��I�d.�lD-��IGx�LX�(��g!�O���Z�e� �����;��9LeD��P%�w�D��G�8��l�	w�sD��bPOO���\0ZSn]L�?S�V�_���g�i��E�IF	�0����C3o� {v�M\�������P�@�����yELuL��I�|3�	h`1�2���Kܺ	�S7g����t-zY��*
&��$OAJ8��-��<#8��(hE�"�TS\�L�,K6�Iy��<+����O��1��O�J����8�޺�OQ��S@@���xۄYB�$�/��J+���*�z�����84��	�aG6�f�Ǖu:�A ���:���u����Sv�����+S�K�;[�'/��#��i�4����D?d�u�I�̶3�����5N�(�D�멡��+g$�o(w�@�R+޸�����b�1d���^B;��_��6�����)o�Rt� <&.&Rя�%󚒽`R���
Aj{�����d1@���'�1%�t��Y3���_)��;��<�_�{�</��.fK�	Ġ�r��;::�\�|yvv�=	,�3���,�53\$�ĝ�Y��EU���t�T��r�;�=����x1l��Ġ&���<��f���|zz�…###---�L`���9��J��	E˪�Ph�ñu۸�
�<b�'|1����~g5cz�N���;b��rVW�����¤�c�؎��?@��7ˊ`��\�I�v9X�yx���⃘#G�0;	X"'s	�ГɎ��:]K8咁��E�Rx
y���O��ћ�9�'����$��͌���ʕ+�<�쳏=�XOO�"�@�	�~���{��C�G5y��rEr>Ք���9���AU��	�a�u�	�6U�e�C\��⃘7�x��_����;�)�w)WX�癧�����1��J>���w��S@#)먗�DT�̺7�5�d���T����
Ajbtt��u��V�ww������4OLL=z�ҥK�L��T]e'ILMJ�@�����<.W� �pPNsL_̹Є����سgOgg�bV�ιr�ʟ��~�S��뮻֭[Wb399y���_|�k_��?������@=��OD�nm�o�[���(yLt~��iPv�d1��M�6


]�xq��)?���������G>�U�Vuwwwuu������L�MMM����O>��/�811����OT�D͹tQ�+�WP�+����^^�j� �=�&��͚t,^�k�Aj�����;�<v�XʉE	�����|��ܸq�
FFF���.^�x�…�gϞ9s�ʕ+sss�Ư���ѣG7o������?9KS�R�i_�8�y��o�6��;|W�]V�"�������ʾ}��|���1�+y���J�fsss�=�\�GFFx�Z������8�W�ͣ��V8�4�Q��-�T�<
Ga�B�^��޽{�vR����g�f�Y��Zgo	�\ɍ���/٬7����wL,y0�k�k]�����̀��ʭ��z�=��;wnjj���{�ԩ�^{m���+V��]n�Y`ru�u�X2[I�,�p鬂�[��
�� 5��O��?8u�T��S�y�x� �iY�$ַ�AI\\""�&�<o�>V�>5ɧzt�@,.��_�:�H�AB��~����ڽ{����[���/���'���y��pΗ�z�?KY�!��񎼋<���v1�uA��1��'�x�?��ɓ'�Y3>>���x���CCC�@��D�_��/r䜅�'2��P��w��9R/�Q��EEjk�����W�\Y�߼�=�ܹs瘪T|�V���,�6iJi��	�Ȅv��*o�bm,���A�}�3�9w�ܷ�����%#o��֑#G�l�����[ܔS@���nt	$k��1���p<Ms0���2�9Q�������>w������"�f��>��K���b���W��*_?��1��:FW� X�R�y@C�"�0::���}�����:77W�����G�O��<G���)+_RޛuM���8*8tVv|L��FqbP'{��������z饗����л�…����Ν;W�\�Db��rO鬳���*x�4S�h@�G��I�wY��:h8T
�~��?��?��_���׷����_}��k׮�灪�~Uq�ʪ�"35	�q����9.���������nٲ�_��������jT��ۛ{�m۶uww�ہ:����մ��s>jw��8�� ��������w��7������̙3�.]�f�U����������������ñρ���U0��*epS��l,k
An�=yǏꩧ�}��3g�\�~}||��V����CCC�v�_����a?iN�*�>������z�bN�{���rux��G������_�fMŏ���y������a����e��M�6}�ӟ���?�����7�8r�ȥK��_�>111===77��dr_�z��@w���w˖-w�u��wߝ�,�������*�z+�7��0}s�$p�h������:c�?��k��\�m#E��X�2w9w���r?nᦹ�ׅ[����-�B���
������s��=z�ȑ#�ϟ���ϛ���}Ps�m�������Z�r����-��r뭷nذ����_��WW|���F���T����� =bKs4_|�a��-���_<!����I�.�w箴�Z�?��!ߎ|�d�	-��>�*��.gE�e���W|�b�޽Ԓ����qAA�2��d���r_��ۻ���!��LdY�L.�r_�5�� �y��&ahii���\N�*�S깈�;��A�&'s��jw2GR@U�K�΁FE�ϥ��q�w�rq�������]g	�'��� �>�֩U���p�Źe��!�c4�A�~*^���c7�� �$�x�..)ٝ�3?j*�(/��s�4!�@铤:T�Ds��ʙ�1t1�ຝ]M� P�	S����j�����ڴO�Ybe�?-��39��)A��\�:��@� ���*��p��B��9� |J"�T�ċP��<PA��'d�24��@Yb�;Q#��1��*F��'pD3,��6�� �,�<�n�!@���4�4���A�l��]P1uBP'1uBP'1uBP'1uBP'1uBP'1uBP'1uBP'1uBP'1uBP'1uBP'1uBP'1uBP'1uBP'1uBP'1uBP'1uBP'1uBP'1uBP'1uBP'1uBP'1uBP'1uBP'1uBP'1uBP'�����O����B)��?�p}�R��F�������U���*+�~n#�9�����Zv���bT�ը��#�I���|�ǎ����B6�Ol��&~�!�|J�g12�
*=bܻT�����2��|XS�k��j}�lLELq��l���4��YOb	�l���7R�'%]y��'�sJ�ߩ7��<�Kft84s�$�/�b�]�ɇu�F��~���Ka'i�C���JA�8VORZK���z��M|�~�L�z�P�X���wU�%��Ҙ�1���!P�a�B��R�8�ڧ&7+'hm�φ$��6����I\�W$UՃ=W��T��b���D0�4MsÑyC~)��vDžn2�v%9P7��C�AJ�
w^�b=K��.��	eP�&.�L�ENI���D�)G��׫�Y�,���\f�^�UMdb@5���\HT*�B�^-�]�:{Y��F�|�l5�db@MȠ��YI�0�N?�VمlI.�fg��������6NVʏ6*����4��TB�ſ鯱]�m�qELP�Tˇ`�%�;�[�f1~�IY�S�YL#�j-�]A�\+bd�Ka$��ك1~HS�z�f��.��J���t]�QV��,+b�>=�&U�9O,�ay��m��If��r�m-�T���e@�gXY �6L�X�&v�-f^R6�_��*��I��|uM�s���R��[f1~��j�T������qF��?akO�4�Ix�)�q*�	*�.�4��[>QPB@��Y<e�K��R��/*�+}q�čk�Z�Wi뒸�*�>5��ꍲ��-�T����
bT�U�*���S�R�{[j����t��\%'-�&~�L~��A����Q��K��VRJ�T�eT�d+��1�W+�P.?iI9��g��F�`���≠Τģ�,�ȿ���~f�*H�GX�1~~V�;,;�R��PJ�F��cy��IR*[d��\��^�*�)n��?�����t�2w)��:� J������$nvR�L&i1�����Jd*
�%��Vw�P�{GI�/�ft��K�%�db ����H&���7�IHR��I���2[�6EE���d�JbG�	dP#�kQ۲Am��u%n`���z���$17O�J=!�ikX���}K�7#������Ici��%&q	VMrF6�嫓��I5)%b�|�<!&u��4�k��A�y�#�I'���J�?��Y�k �bS)&��Z�����U�T�]"X��������@��j?�H�VD�&fX�dR�\�RS�┒���d1�4*����"��'F*���BBСJ�{S�Vt���
Y�w�'.����#�|&�C���$SU��=��&����M��) nd�Ei�r�M�,&f���.��*|��N�1!N�A}R9H�E�Ӭ�F�|bJ|��\�
�F)�\��!�r�hw����i&�HY�7��*�_o6����g���JIi��"����:�k�&�bIA���V-L�q��E�и�!L� cC��IU�YL�ŗ�ʙf��)Y?D�^�=D��r{���a��hQ8��
w�	��j<bL�J7�O�S�Mo�!x^S~,���KrL,��_i\�
L��]�4��2ut�S\Q�l�����7rqaB��^ü�el]b�P@���5n~ZPd��zI� \���U+~�e���1�+�)d:)8�j��+��ٔ�K����I��Q�6�I������(������M��^Rq4�`��ok�j*L8RV����U[
��kܫ1���0��䮳��B�LM*����%��9��i�+�֦��Eb��-���3�(+ڃIg�a�n�`�$m���gˏBo9��R���I~�����O�Ѳ�R�n���
E�\C/��1��ߪU�&-�fV?�(�/K�,��o(gj��&�Z�:a��bk���զW���^����#2�(f��Oc�o�&1��II�1I��0��L;x��N��,�"�'���b��
��mz��(�0�����m>�1�QT�_�r4��Ui�|�^4�IR-6Fhm�N��C!���2���0Rʸ6��]�h����N0�H�߬��E�.P�kpU�H;
��z���ܳL>ܴ���-_�
�*f��PjH��_�bLRAy��d�D�У��cu���Hmc��u}��G��2ۑ��"�A|����A�bSVĔ�H)�1@X��j�0����U�C*��9�.7~�Q�#�o�|&2:�WJō��\����ǰv�*..P��e�#&:C�����gWj��n�f$�\������a��"�]V�z�F�����h"�hc��>1��m7YWbߩ׺*~uf������"�>C2�a�^D0B�`����k<�ӊ?/I;���qz��R[/�|&�dZ�?m+��T�؛8Ĥ�ڪ,� &�u��Jy��IaH���hL0'Ȯ.)�Jk
#Ż�ھ��`�iM��H�)1m�T��Z�I����|��
��3��{�D��S����yIF[�W�S{��7� �NkDܖ"����6�t���iR�~�*M�P� &w�S�2�oy�b@0v�T�&�3�	>^�_a[霗��{.F0�w����ݤF��riDI
z����g��������n@3�Z!�0"���0q�VG+h�� �	�QE�(�
e��ر���k��l���Bm�FbT�떩��FR+�L :~.�0��$Q���X,�p#iw�	B�V�IK�v�A��#Ƙ��E5��q��Kn�O�����s�B*1^0��%�D��T���!d.�3Z"���Ş�^�DV�.=/)\��8��R�)�yJ�A���G�{���q#e����)
PSn���W�ή��f�������H�˜KP/|��/�d��ܚ�+)}^�>A%n�Q1���������%����� F�m�笫xF6Y�Ǜ��;��0$����Ȓ���!�-�䷆�KF��0�n^�2�V��Ǖ��WK�|&v:�4��"�������Œ�����pr�W��`
���0Z�a��Œ����55I����A��GL\�cƔ�6$��T|H}��Q����k�N����hZ�ӑ�IIJ_,�+�XRq}%�MM�$'g���D�V*#��0��,F��dT���Ɂ�L>,� ���0�H,���@�!���$OJ�bI~�Y,)��NM��\Œ�\��P5c,\���a�7П�����xv��U�����I�,T\�5�GD8އ�-���5�`�l�WmOJ�II��$�� �)��(=[�"�MM
G���3q��D�hy��I������@�n�b����>)�.�(�du\k��-���ɳ�Ha�F��"cRR֜�T��Q��ZM1R)��U�冢S����f&���
T$�,\]��.��(�e�R�m#+p��]�\T�Z���tlk��Y���H
�b9���I���HC_�GY�yI�\ |&f���0���+vP
ĨT����%�Ek
c�HZ���$3�a�Vj��j+%)mj�6�/v����pD*��}��5��x�����._�*�Y#�W�w}w�K*a;��Y�R2g��~!L�(ƞ��D0��X�Z�ÄS��1{q{m^Rг�1�7b��/�.�l�����Ժ��iR	��*,� ƹ2U�O���%޷1��l�,�K�hz�J9�rkR��aDq�h��EL9�4��pl��S��3a�7/ə�D�K��	V�喝��
�0�ZcI��|*b*�h"{�Ϥ61�N�d[����II����B���"h�Ԧ�C307�����L���
�$�h�\,)f�jwt�� &���{Ĩ��T.W±���P�ń�y��_C9ڣ�߰P�
��6�R�3q�a�Ą��peD01��"LPv������q���
���?�5�_��g��b9�6��X�,�x�¦Z-�p7�
����е#����ՅF-������x�r~��aJ���
WJD
�͋4�a�a�s�%�Go�F�0�B�v[_��oܢ>a��)�v��b6]/�X����p�*Z��
%�IS���b���tE /�U��5L�AL�Ĥ��w��0�0=�O��[\1)�"8�I6zĸ���	A4�1o�J�ź�,� �*�R��O�-�"��@���7�֫F��KZ!�B��VF/�1[���0F/߸$AZ�%���1�
�H�^}��H��Xg9vb����vj�Z܌!U*cQ�H�E���7荖��]�B� [[�:l
�ћ��b9���;�BKV�G�զ7�����E�t��"]fZ��۫���&ߘ�[ʘ�ZJE�Jƭ@S�k:�F�bu���?�/v�aǘ��6T�V|Vzb��`ŏz������bs^R1$�×p�'��H�)iO:
�\�q�X�1�����xt�R�d����X)�_#
�*�j
#
3�T�&C�� �Ї�~�!�^����93)�S��T|J�1Zk)\
b��s���@��$��(���i����&cO��*r�)�
��z-��N�e���0�G2�"�����!{�����[\�:v_��,�$KVmz=��M��b�9J��V��5�gE��mb���p��D�I2Z�8WJ
��f9Lq}%i��Ֆ�v��m���juL��?kݏ�^�?��L��@ƄvQ� �����.6%]3�"���-�zb��f'���1�01�$kVJR�JI�2Iʘ�R�죢�|�!���p����,Y�hӛ�^�~[gt�M�:�?1�N���7�8�?\���B�T�ĵ���#��]�Z+oI(�Ѯ*V���:��1� )���.�^Rl��q���#*�)71q�NRLD��<�L�g��H-��a��B��o`���+b��y1�)NJ��a�J\,^�¬���Hr��U�f�a^�}Ir�'����	bݓU
\�s!-מv�c�0T�Õ�/L0���2I�&s
�b
�K-��_��TŹd��uq�_n�Pƞ����r��zIF��'M��r��Sc-�T2>IJd���ӯ}@���	�Z�0���,F����t�������u�ir�޸rmEmc[?|�j/�*�)��4��N�����$��HG^ǻ.�"���N �p�"��J8#ɟxd�0Z-�ՠ�9)I�ц�i�6v�0_ٻz�h[���$����yDBk�ȼ$��Ԁ�zU�OL�m���(��C�ka�З��Ss�$W�^NJ
��y�1�(2�7�A�SF��d�Z-�,�ئ��Ҥ~чV9��Mo��o���	�珕+��F�3��1@7+�+�רἤ0��Fw�ްي3Q��>�=z��0��$��M<!�f8�3���a�F01�A��‡��hM�+y�c�VH�(y��$Y#z�u�-�T-�Eo�)�p,V�l�k���U΄�z��0f�^g9��a��j��1f�`_iF��DLMZ��!e�<-�k,^�$���)�f$E�v6�-NJ2�6��88�a
���X��� Z�����F���$K+���F��2��I�x��j�ʜ���,V�bt�[��X��A��&��tN�duL9L8����%���0B�k��Ѳ�X�:���%K�"&R�TE�3�b���p��Ha��W0ҫ[��U;�F���Ka����|#�	�a���bIB�/ �%��B���
��FkUF҈Ѥu!�R��(��)ˠD[m:�zH�Iq�U���˜�Uǵ��D#)�N���A9��p��_� cp~�c����(g�Pj^�h�嫣o��[f\e��}�61hcm��n>��,+�_�)L�Вݠ7,l�Ka�E�̹Hf9��a�I��Lڋ�����|��6���$��r^���V��0�M�I
�a\�K��ѩL�,�ѧ&	�g1~w���r6�-,��5�Oc5V�.�`�,k_��Qb�b�o=��#�R�-W�X&�T�^��Wm��d����a
=z��%l��0��4mz�%�-y]9�i	1�%�*Srv��~�T̢�4+{u$!���Sr�RQ�2�U<���HkFR�RR����&Y�]�B��6/I�u1*�ˤ�"X�0�D��T��w�Y�G!�����rvБ�]
�nY,J�tJ����IB[��$�0a�"͇���Mk��aTX#�6�ZM����G�yIz��=3Y��	,�w?1.)wv��.(��5�ViHz
#�8�X�(�2I�\Ĩ8�7���0���a�^��G?�h
��C��W�<���KyщS�[ɒ@s��H;g
#���0�E
I�&n�$Q\;��쫂�u3�%��֣WiK&���9/�\"*|�
��b�,_�e�ǥ��h���TJ���P
�{](��v0��FU�#쒖��@Z
z��'�_�,��X��՞0(s:�6)I�e	�mzUb�`Z�S�\�|S���v�p|H�-���6j���<f�j6���+�X]d�&�5�5)����Κ��
�З��Z�ᘝ$�\@��0�z�*U���P�T�RJi�V��"�rI����µF�p7�q��I��
z������%鷈[�Z���…���ۉ��B\�0�`!.���`7�<3�K�o����&朔���k���F�t)L�ؑ5�"+%-Ⱥz����E��C�86���`������{��J�{JѬ{�O.)�ƒE�æ02�1���q���)LРW[��Ja��,�bIzk}�ji�B�����^��V�kx�„��<�2x{˜�
_Jޞ���G��v*Zl6�6��|�Ե0adD0�hЫ�����#:5I�k�l�1Vw�⼤J�a�Rb�:¤|�㾓zvR�c)h�!s�Ɵ�$ӑ���%�+*Ha��	a����+%�=z�(��#QQ�t�������Q\�Z���I��>G��n��IID���9�6��0��"�)�*!*Ha��HZ��p�$ֿD[�(s�&a�8������F?^�{)�a�r���
F��2M$c7���($F_�ByL�i$�I��&Z#�I�gNG*v�U��I�ՙ��Hvw���rDi&�,� &\�;�;[#�R�D)VQ���5���\�p0n����e0�M
�^��d9�֣���f���w�W'�1K�"���1���L�{�w���47�Չ�a����L�2բz)��5��R�v��1*�d��;�6���J��x
�Q���`Ҵ��g��m�]�^�K�Q���-	��0ч��3��$x>�1fw��|�d� �M�-*%R/�T���m�VC4�6�.�����'�uIӑD�)��ja�b�ޅ,&k�q���U0���Z�ZE�	����hY�1e�賓v�UGDu1�lm�#�K�Y�&�e��U�IY�A�kRR�H-!��ג��t�V���i]�o��0k�W-��t�3��O��®�M�嬂�%c��k�܊��p���z����DZd�����+��P��B�]	� �Ϣ>!P{z���l�Ӻ��B�WZ﵌���}7a3�AfQz0�0�)v3q���T�aW�rLb��F0f0�
}R"�G}I���RR�H�`7�5Ld|*cF�ŗ옔$��0���2\5�Z��Y��b�Ʈ/2����.[�l]�|����%�þ�B":���g|2���8*;�s�w�dOaiV����2���8�����n���Na�@2ͯ3Yh���ᄆ��-��C��QSU
�p�q��thጙ�8#WjF0ƊHf/��Y
a-P]�t$QV_�
z�XE�FSg.$�a��cm��9���ͭ�H8�	�O���|�v>��?���&��h�7��u12��Jee1~{�HEM������d��43�:F8�+ ��k�2�t��a7�MpF�P)re-�d��Y�6Q��$�3>%(i�R��x�U0��@�t!�p6��F�)���e���z��DH3{���$�k�B2����>�*��'�>��X�<��X�NL��HD�J�e1��*Ԓ���|G�Q�Z5a�INJd*eܹL4a��_������~��,#����ȈJK^��P4m	�p*��OB�"����R[A�0���c�0"���H:Jt�5����D�-�5L�NQVu���p�~S��5Ã�tA���5�d��N�;���I΢c&�y�t�ϫQ4���Q�BY�<G�p�F�b�k�I4*ٱ��Ꮣ����_���L��Tɇ�CU;�d���H�.jN�
aD�>�2�@Q��5�[�;�L���Ml�k���j����V8��Y���T��^���9�O��#�*&Q,�r>Y��;?.���Hk�RR˘�3m}�D�8&��J��� D���~��##K��p�QJ���k���R�ZJ��J��S�@IZ�_Dl��ߧF��C�	�>N,�W�B���LG��H�%�¸����l�k��]S���Èr\��1�&��\�G��l�K�̭�o�zD�N1�ye�
��V*���/F��N�$,y�����Rq�>����"Æ�Z���$W_ow�6/s�*�#!Ie�9t��w��H��%����Ƙ�N>r���.0�f3Ab���D��� Қ�Rj:�pt�-ѝ7�L��F�5���H��fw��*�ءk,�����w���hb'(	at�Ƅ��ƽ�E��~1�u1�t'�W��DJcD��J�8����r,����������W���*�Qt�и��R��1�r���p�
����"�4wG��t$媈�4DS��s�L1�i�kw���'NJ������I�6��Q��(F���4Ϝs��y�BB��Q�.&�WW]Lܽ9
d��1)��F��B#�n�"&���o�>�F(�g��؀��*��P���5f�FT�\�#�Bً�W��B�F� ���?�k�>kE��O2��,��4������I��]���
z�8��&NJJ?�TZ
ֺL>��h?}�O�q��u�ҥ���&�ZFF?�U���uhf�OP��ňl4��zJ[-���ŭE�c�9�A:Ma"7֗����F��r֯.'v��@�—
�,��$3GP�M��h���Yt �,F�/���0�y��H��W_�Z�}�9D���Ha��y�Q�9�s�mQٝ^�ıKV��'�ء��>ݥ>f2���	���A�q�Y���/Ƃ��,FDJ�R���C�bc�p*e#�1�d(��$u�rd�ꘄ&a�J~!�M��
p�"m��]�"�ʗ��'R�Y�za���:R�\�Vک�>KJZAOt���&:��0�2Ia������q�1��ƭ��}-�GK7�QѢ���$qH���,�q$j�	Jōdt��r���f1"R����v�^���1�}:_X�bV���o�Ef��/�d."��D菱�ȸ����8�hT��b�%5P˜��H�� �,o�n��EO^�ƷZ��K�dD4�F0*��K#�ƪR:�����;�p-wc��8cgkmt�
x#�A����/� �8�%�ֱT��&�L=4w4�)�7�V��z9L|��,FY^�:J"u�Q,���J�n#"?<�==�C��H�\|T%�>������X�1�շ!�{CL�"��Js�cWe���?
�)��:�ni"Q�����h
#�H�L�H��D�&E{�ؓ�R�ϊ��zv�<WMJHj�L�[e��Oy�O����8��I�A�^�b.=�e1�'�,Z-c��Z�ō��[2R�fe��;�0F
c,��o��̈́
�����(oZ�*�)9��7��h`�-���E��	7*i
�֯�n.��MR;"���8����"f@��$�0Vk^�l
�:�Z
#���
�a��V��;H��G�����F(�ҩ�s׷���X�G�ؼ��]��\6vrr�c��5�S)�}��b�;��WѦ�Ŋ�b(�n#��,Riw� �8�������,7^�=���S&፶>�*)���:�H���K9���c�c���K��(�o�sxhW�h��/��H�&ǧ0��Ğ�"�����0�J�J�=)I_,)|��?5��^0����Y3��|�0㔔�阠���b�ު:���1��Hy�2g�%���jJ��MSᜩ]�H[V�cVV=Q̯W.�>�q��ҝ���)dr�b
��kD��ԍ�y��LD�v$�ŏ*�_�v�HBs��4��/�H�F;�	_�Hn���;�Y�;^��WM�$���Rev�ѓ��r�Qz�se��d5�z\�"J*fa��,&M���c�1��c��O��c��J�Y �
sK�2�h��/~3�zS�)jB;��w�y}\�'9<ueݳ��&�.��Ũh��h!��o
Ma�����b�� QJ+yZ�$)�KajRt,�0}I�����j�(1�KWв7v���8�(E�7�G����?��=Y>k��H7S).�I�c�ϓ����φ3�q�5q��ݑ�X�R�YR��0�U�RC?{�誂���;�%G�
������ޞqUR��0�3��`�1qҒ���H/�J�HRa�$}�/����(
�-LM=���UC������O8}
�r:_�n�z�c��t2�bR��Rv~���(o�۷)���u�,<4�G�$k���E���o�L�l>��aa
�H�н`Eh���?�3a�؛3�_��6�]û5���)SH���*�#}�߲��_�;�VG:�-9�cM�|)F���׿���)j.bݶ�u~J�b�
JUsjP�?x��:ϒ)|��y1E��\��O)��6%�����Ҙ������B�
s�O]K�2��ѩ�W0~_��\7��i\�i��`�����#��H�.��O�gS.�Qa��?oUmG��S�,��	|���;����1�g�f!t{rE�f��Ъ�^���d����>�&��{.&_�tRKc^Sc2����:/;m�H���œO�z�'}�l�Q��W��H�Y�Qh�|)��~Ȁ��}�K`NA�P0�9�����y��}!��v���9O�U>��<��`a�C;B��h^NR��1V���3D&��Z\ܫ4)F�������d+���,{^���6ן>�]^��O�1t���cT-�)���,�2����L�V�x��g%�S����}U�(P�l��c(N�w9<R���2IF���QVS�O1�gm�R|�8�w���q��a�,��Ș�{~뭤��ziŘ�٩"����#����/��֛S�����3a�ro�k1��By�H^p.Z�U�:��Xe�=X�H��S����$���?�)Λ��e�I�ٽyU�y|�4�����<���|�o�2�{�����/�I����Ǿ�[�q��_]H��K�O���
��^��r!�JM!�v${J�����:���X=�]�<��.1�T_� �z��v�[�l�$5�f�x����Դ���ڔT+��:u�1'/#�YIN��x�kW$���<��A��i��7�wt'�UJ`�W���ʭ~!��v����{P�l�q:|�r�Ws9�JKV���"��1
"Fm
J�.�����0od���?��^"�O���W��12�B�*-|������A�����H���@.���X��S	��`t#U��7z�ЎT�0��¨w@o�˜��S�"��
�xo�jNQ���b4�.&7mv1���'��0�'S�*��9 ��J)sz0fg���`m�-n�#�l��
+�-�6;0j�(u�:U�ϭ�\^�L��9�:^��t�F�0#�Q�'�쫆�u�ؘ�ӵ���^����W�>/��e;������,����uL��u�z���	
Z�JA��fT^!�ۿ _��$�F�b@q�f��+U�-�w����o"�>���������J�x��"�1�D���)V6$O�x]0q���ٻ��w�7H`E����ӌվ��V�Q�a^��*�-����1��cTjVR�_�4fw��Z����}�g�'I�����m��fȢJ�b�H�U�Ȝ#�Y$/��,L�#��F���������,��1㻘�a1����{nSRpj���cd4+IFF���AR3US�D6�<�����|��1^�k�/��K�֝��v$U��k�jF�,�#DLq�6��
�Q��^c��"[�KcT�SCNu��c##�-�x�V��:W�jU0)qc��Д\Z����j?���^�_�B�����Z/���0yjN����+uO�Ul4�J�0�[k��cF��J���^�ܫj��BmJ��������y��@�4��u|�%S��C+aU�����'�Q8�iO%���D���B�Q1��_�HX�1)�p�t���W�˕�0�:�4{@����3��.b�f)k�b�^�Y]��Ҙ��)������s���i�j022�d$��e�bv[Ϣ�^��LOT�JF�K(��_��*S)x�2�U0��+##���o�0E#�aaT[)�"�9�"�b��b�]L���ӹU2-�e�unS�q]'{j�2_�Su���/�ub'#�_u*��T����[Qck�dd4c};py��*~���|*EH�I�p�C��^$Ɏ��P���1W��&���X��z��iK���"���Z]��u��1%#sj�_�-iT�0V�X�Ȅ�LH��O5���vI���co<��BPG�~�*_:���A0ٿ�ծ�1q�@:'f��D�ʈ��ݔ�N�(b4�AI��+\�����G��BQ���d��q.�-;~����^��_Jǻ�����3nr�&�����K0�%#!�%0���B�yHMrgwx�0+-LU�(����)�|MC�:�b38,���(�+�/�T>k��ts#�@FF�LP�XWx�f��#r��4r��"��p<�4Ĩ_�g�\�/N6Lv�OI������Ni"���gVYK��-̓DL�q}n��XҠ�Ѽ��#c�V�P���O��c��Ϳ�|)�2��v�?����?Ӟ\*���q'v�1-١��1N	��`̠�֋$�F�Ca��#���<[�䛅��/��<oA��`�M��T���Zr��@F����#e�
�wv�~e���)~ٺ�}ӂ�@*)�+���S�$_r���:�ҫѤ`���Y眆�E�5\�t$D��B|���q1�b�[�`��*�12�T2t�Zd"FF�=mfyժc���&kp.�;��N.�_��
~q9�q�M�QC	��`TXI�B�ڑ4�F��0_5������jlz��)�65Ff������~�LP�X���WՌe^~��W�M�,�W�W�րS�M�U�������h�K[M�xk���,��X;�jsa��"f\�\�b4o^�\'�yUZ�N%yU[�Q�R��52�R���v�TU���_�75���LO~�D�S�v"X1�����Z�K[�tbl:���ʴ�fS��ja~��QO����b4�MI֤�������d���*�LNy��p��WxD�M��{ƽ`��x򻜗K��*�{���M._
�16�U0�M)�=MlG:�IK-�*%� b�-���5.F]u12Z���1���O��G�_�tx˿D���X�����`<O�@�s�KG��)β�;��V�ʍ��ι05�ߦO1
�9o_A�{]LEǨ^��H��E�ns<D�Ǹx��T��)�]�������������n1�b��6���ꨂ�7�=&f�.bB��ج5�a���1���]SI!�����^l�c(B�lȖ�7��sI��1ݹ&���e7C���>҂�&�@�ڶ����[ݿ5�hX�]�b�3�W+]��Z�:F
2���_��w<��1�uyl��IA粱�5��)��/r	Ʈ��J��h5@�_dX�h�F�F����"b,�b�Ŵ&��b4��u�	u*��1j.�Q���-�	>ަf���-EA�B�,����IS>
k��|g&�X�Bɩ��`��I�2����1��NR��Q��^��@UU[u�����U:3#�t��cJ�w��-	�&t�`t*U6�1�'	�J��U�hR/���cy�&���;Ʒ���S����6%�;�T��F�ST$����Ԍ"v&rQ�K�5	�{'��E�E-��W_�����9��-E�j���v$u[��~‰��1:���:
������륶���2}��_M��f6J�.&?'_�٬��xߏT�ӎ�f����Ŝ6xo�ٺoX}7A��L�X�B��Z��;��G���`;����I�?��kZmDҌ^$�,�)�ᅡ�H�m�����l��c�Xl�^GIUaV�&ZeA��+�S
��n�ZE���[�����1K�'�I!�Б�CY=��;6%�/�6"i�Iv;��0�4�K�T�s|j���{m��{��82FW��J�=C�Ŗ2�j^�-)�"�f�A&�ڼLȆ�JQC��)��Q�#I�:�O1�^Cu1����Z�bԭc�ad�v��z�L�F3Z �{��fzT�M�8�����_t���,Ө�&b�m�i�(i�.F���42R���.���dD��V์�P��&5'�%g$�����V���sE����.M����h��QtLm�L�	^��T*5�4&~xs��n���6/*W�8��H���
F�0uS��n9̿�P��v�p(׹��)��u�6t�����zd���楨]��@��^$*e�>L�3My*�ђ��Lk%M�5����C�1�WAӢ�^�z�;Z�]�z�TiYkW�ޭc]|�ϙ1���~���Zק�<DƔ2=�/ew����Y���Q#�b+�
3��j�٦��dK\���ک+\�N�h��)�s+/�‡U�(\�Yu1*��X�]�:���#d�"e2j�}�E�sٺ�o�H��e]f�Q�]�&��=[ϕU�1˿���x�ॽ�Ͽ*b����?�u�z��xy`\)S=�$��(M��_�)�'�_���
�"dk]�`Բ���[�Y���s���v�,h���{��z�i=���zT�(�e�+i��u�Ŵްn���e��s	�8?6��T����Ѡ��%�`S�{���u1�����B��'ծ눚�m�t^�c�Y�����9�-pU�K-�e̔��򇚦`4���D��q1�Ц��M�z��B�6�|�����j5|*�ӝ��C��ϱiRV��`4�I!�m��E�냺g`j�w��QOi�S��F�h��S���V=���n:^�L�9M�i��G���{�BE-��_����S75��3�w싉t*��꘾?K����岯���̺�\�x'ǜ��Օ�.�/~.��s��;���>_�hpvo���ک$[�HK�t��]+I�g�/�u75��詈KO[􃌷��9B��w��p/R�؆g�]�b��MIaS{���=�+*�P�}�n#*1p븻&�tM��[w]��|;���B��d�(��.f�+�u*��./�q.H5�Œ���t�х`�l�s�"X0�-�W��8��D,�)�Lj�����ݧ��T��5C����\#���R�^(������uA�7�%���v��M?���Ɯ�7�#^��i"F�]��Z�j�b\��~Ff�r��J��gQ��KdW�z��_Ԫ`�̼�����D���� �{i�fv*M8��O��/k�.��t�w����`4[A5���bM�E2�c����3E�s8�Wh[{�D���ޙ}�K��Zx.Ks�~��F��t�X���!���"F3\����e��t�j.P#�ϱ�)T��g�a�(�F�c�*�h!L�3|���.F�t����4�Fƺ>���,���s0x�ֿ��I3��,��+b4�Ŵ΋�v�^]=�N����� /�"-�Y�q
�z�JX��)b4{|�Kc�i��_��ȸ'�q���@o~�Ҩ��7�e]!��˃EL������ݩ>-"-K
��X[
/�	qzPMs�ʰ��	�1��bt}���e�L
��h��q�:�f>���"��K�^��?J�h���"�댌����eV�Ox;#��#H^�_�P�h���3DL�(�����-12�)~��2�˸z1�DfŴޟ�[��X�LP8|��х�1�M2��O�7I�z�꾭W~�]�(j���ԙ.�˚8��Q2|���=\Le�֓���i��Qͭ��ž5��4�L�f��]ihJ���QjW$J`�S�yF�'b4���b�F��q��l�+{I�è-I�|�i��Ժ�c��mg��
&�1Z�b�bp���jq�����+p�}J�&.��Y㩰G�\�W���^�3EL�u���[���e�^��qMG��d�'���D�Yq������`4p�,b��b�v�%n���l�q̒#��$��+CE�f�Q��<�b��<o��"Fk\�ިcj��о����C:�J�g�O�
E��,�^�`B���"F�.f��������eF���W��r���3��08!Z�,8M�S�~������n�׶�A��QJK�{�S7
�SiN��nrf\�oҌYs���9"F+Kc&~��j��*�.�������`��.	Nɪ�g����W�Q"�;�O�f�3�\�Wi�1I�&_(�#Hkb��nb���a�8��O1��=-�2�\�_��q�Oq"��#�θ��P6=i^���3R��?TČ��o1w����+��.�q�5�>#1�K�S���<>�$�h�����lZ�"���W\�o�
<��ı5�s��ܫV�9��??�\M}G�k���ڲ�^�
���?[y�ӳ��.>9DSÞ+A�����;��L�f�t�ݙ[��'��u�����?m��e"���l��]�u���:��ܝ�V�����/���a��CĜS߁���ߥ��8I�ϙ�����������O�G���^������]od�oo_����u�fM�r�y���D�|n��m��[�������"�r���#�.
�Z,�l��j2���8�/p��y�O5)7����Eu߮�}1�:����3���7������:� �f䬋���DL�����L�K��(n���'���n
��nSџ����O��Ꮑ��9г����L��bgZw�.���|05�MI������?����]NIEND�B`�PK`x1\�(	=�=�assets/images/landing/10.pngnu�[����PNG


IHDRV�b�tEXtSoftwareAdobe ImageReadyq�e<%iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.6-c148 79.164036, 2019/08/13-01:06:57        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop 21.0 (Macintosh)" xmpMM:InstanceID="xmp.iid:AD8C66F60A1711EAB39BBCF49119F7BD" xmpMM:DocumentID="xmp.did:AD8C66F70A1711EAB39BBCF49119F7BD"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:AD8C66F40A1711EAB39BBCF49119F7BD" stRef:documentID="xmp.did:AD8C66F50A1711EAB39BBCF49119F7BD"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>{D����IDATx��w��D���g�cc�I{���|��q�w�m��
��`���]���*��a4��\��T*��
�~�����վb�i�Sk�NQ�ËfY�ܞ�:h��Y�4��Qݱm�L̍���惖�z=	BM!���Y�l9�^��O	����l�͊_P��=�#_�u_i�c�:���vY@oK��V�P�J;��&�_�R�����yK�¸�&��z+j�P!l;*ؾK`S�_S5��5�������7�d�z|rY@O�p5k �0��6���d�_�j�
�W���<�ބa�l�A��V��AOP�Z��a���
���6������Xq���Q�m��м����|�2�#2���Xa�t��q��Gئ�7b�5�qiqx��qs;��*{�A��I�ֹm�� 4hQM�~T�CU��<"���q�k*���)l��߇���ǥ�V�Ҳ�__d�Å��B�NT�}���׿6e��y�k}�/st��q
�a��U�>hd������
����JGF�6���ʻ����h_}�&'���Z�;�ga;Yl����*�:�����Vs�
�߽�$�M�8�k�_�_fz������#��-/3ǭ����E���c��a6�S���6��o�����)_C_�]��)�`��򆌿v(�����r���/r*�.%�-�j�����q�κM�kt<��w�U��`^T�[�6��7��U���bŴ~���;����5oO��c�y��}�
6{�[�*���o���o3[6����d\���#��AB�p�ȍ�`;�����1�r�ůݚ}m,{C_�a&�zZ�nj11��[�6�:N;k�*W��;�&�
��e6�
v$%���6f�5B@ݨ�ךa�9ԣ�=����`�L���"���尒
1F�ؤ9�$�`GFجI#�N�j	��h�e6���@_l3�h��
	��|Q9B k[>O��o�BLj��F9E��b�Cv �m�rz�kR��M�_�T�d/��n��=ȸ���
��E��Uj1
d�u"������a�E�B�w	l����_;���a�W�{;0��Y�OR��1��b�}Y+h��6#��-|�
^�kaS	a���mR�/	lS��W�G�*=�W]�j��H�S�&��#���t+�f�&/��Zy��5��q!l+*�ꓕNl�A�:��n���
=��׆į��}��իy���C��a˖����כ�Jh�K��Uyy��ʖ�����������D���k1��.)�n�J���f�C�+��_������z�ĴU+��!�ۍ��hs���%2��1�l�j�L�+_5El�8�����鬯��+��[!�X��(�Ì��W�v0�e�P�=
"�$���戬�KG@ۈ�5��c��Y��z����h�5 ZX\h��!&`��}/)̕a��uV��K]�c�չ���5�Ł��0���ad�S�U��y	�2�4�8�ks���k��U����4S���E��铷t�u���8V4-MÚq��eE��h	U��rʀ.o�["��a�Dxf���?�q�,&֬yD�{b�c6:����,��-x>�6e7���8&H~)ʝZ���I�i{:8L���������o��h73Z;�9q��>[�vC����&п��Y�R3���\̾��W�ګ]�j3��{%=Q�ǙuV�M���uq�"VP3�ZX��F3�����
�	a�yD6�G���E�o����v�k���t�װ����r���_#^P�2�91��p��g�;bY�{�߯��mY��
j2_��CGF+��<@���k*�k��5X�&{U5�^���k�/<"�'�,ۗ��,B�+񚠥�Z�慰iT05��O�jё6.�M����W�]�+mh��_�P_U����%�K�~�t��S�CDŽ���?\�4@�C#~�+�m	a��B��Cm�&�ۥ��I&�^9��m�?�-f_m6_�l�������C����$����pIX����Rů�������t�$>l�L����SUM��}������>�����=,=|��W�+d����~UJ_�ߦ;�v6�[QɈ�rK���0K�*Q�+��$���`���jY�����X:\�w��TyX��E6݈�twB)�VB��&�4��7�v��wTv(���T��fS@V�
��2k���'��U��J��B5����
����3�}4Z�^�`�Ud�B�Ak����b¢ۃ~�^��6%%��1�`CûnPI\ڙ��'�Y��5�1����F�T���O���\�'/��%�f�'od/��-�*j2�1�bp�j���M4�����z�ei�[����
��h̻�&Ӝ~�ȱ*�$���NSD��Փ?N���X��>��O��V���x� ��QP��e�z����0�"QW��5.rˢX�F���������
��*@XKh��4�k�`�q�H[�lH���5���U�:�i~2R�W����k�6�l_��}�=W�������lY��W��er(e4*_�ʽ��E��[C��q~��T0ݫv�
�����/���Ҭ�"k�_��x>f�Wůr��N��/^V�jNK�#�4uOaː�2L����/Z�&c
�ȇ��i6
˩YQ��M�E��ې
�d�'X�	�Z!��ڜ�U��X~��Pa��^-Ϟ�5�'G=���g0K��ꁎ�CW�z�V3P�1jѹ�xc,�rB��U0U�> (ؑ���
؆<bi9�7�d��wəg���l�U�^���U���j^#,������8r��<̫���a���6ri��D�a
jF����ܘ
��PĂ?�ب������T#�*�H��W����k��-�W)��n��2��Cz��)�A��V�-R�l�]#���5�acV���u��oeĊ��1"4X�,�5r\h�fAi#ؚ.��ѿz��Կ�=-�i�A#��~�W��=�K]������+�``��@5I/C����Ԓ4�k��ػO����j����i���[O�������Ώ���9#1��,����&��٫�z��_�)��5�Φ��cE~�X��Z֡���aA�HW�-rX�]X��Z�%&WM+W��N��F�?&�`�K��d`�VM�0�˿5���NJ�bN����M6_����4�R�ֿ��k2��k;��3Ǧ2Ye�ZŲ���ܮka�]X�Q���
��6�Ȃ�Nh0��*��/Q�f�Tei�$�����_�	�T�_E����_�G�O�j5��{e�e��}�[���[��I��=>�Ǔ�Ğuh$���_ٍ�r�.�_��1@�a���+l'3�Sdc\�&C0��#YЗv)�
s�,���B�m���F�J<+�Zi�=�o�����}�*�W��n��]���a���QD�j-���V_+����hݼ���K�a�DP�3�E�E[_S��`�U0]�ǗJL[��Fd�T	l�`S�
q~�=���'�3�W�*��]�d���
^z\�R��O�~fŨub�:���5�rXW���-����ʽj{�Z��lht���lRl��C���O��������_��?��_�z>��J+Sy�ܟ��u��f5���"�b��Vcظ�1�Y�-9G�gk�XiAiaY���QXN+�c�"������`���O2�#	l�(�C\ 'ѿz�?f��4MC9�W ��z;Z��6�+�y�aÌ��]��~fƈ�b�:4ܡ_�J7��aC���(,&�d���"��`Ih�u�D��`k�C���XE���M�Y�T%��I���7�W�j���RR���+�|��@oKE�����,n}s�p�0�,-�b��d+���ڙ�y�����R뜜EXѫ�?:X�Sd�H��T�G�&�!�Qf�\p�� ��|q�_�'�������WZ���d��|��f����l�� ����0'���-�WY�H�/��U_4
�ka��FEi"������l�
�
[�s?����jFQ�#�n��%��@�*��[���M��D����s~�F��yF��WZ|�N2��oW��gp�z�af_���j��x2h�8dYZZϦ�߂�XmY훆U�Ttu��s�
,�Ն�9XV�Kʊ$�؂}�
�
���'v�m�SW���f�x��V��?E��_:��h�Kn��k ��|�P��gt'���p�{��_[��<���j���&j�H�;4��[����bQaק�o��WI/++b5-�ےja��ИLg}��>�&�I*;�4L�U-��<z��UC|s/w�,��o�T0�έ*�s���Hw��{��[������eC����R���G�_Y���1+�V,�z�/�:��������mOne�}�vL���c����"�!�T�r8ZA�|��`=ޣ�u��X����r~�ys�Z��X��TS�B�(9�E�%	l�W�����1�y%��M��cT��q�y,+_J����5n�[D�#x��Z�q`�°�e�Ak��[GgM�2!�
�U����.�}~���,bC���H�
��O'���P��<5P$�ݳ��5��G��ܒۣ��<6�}-��|��99f}ݖ����/ѼL�c�k3�.L��zpT���{�!�Eho�P[1��F�+'�e}$!��Yr�L�(���] #oF�<��9Ez��D��wd�#�o?�c�-6qn���N���e�����L�T!���M��~�����7�jq{l�y,%��+��YL�Px
M�'2�)���һ���+֢������V[�g�#[\#Ss0�)R�q�L�=��jTt�D,�:�CnU��.���_*О��_*vp��ӿz����|�l��>�|e���۞�Ѓ��8���&�_�.�۵��K1�\�t�WL�� �U�@QS��q��*�X,�ٯ��VL���^@.
X���Կ�e��'�Z��������/פ�:���0oc��uQ�H]�o��JVU"�T��r�-ɕ���(�#� ���MM�{キ���䝁z�/_�e,�z۔M�¶�k�?�Oy[��<��_��_��c��/~�P�:�Y~���r�ٺ���U��8 �ɾ����(_������Y�f�T׌*ja
Fa��ab����sACP�9�L%�T64�^�\v1�b[���(h�Ȱ]J��`�S���QǼ�X�dYҋ\ U/m�	�0��B����_i�/��_����~��=fM(3s����H[�����:)�5�c���=]�8��.؅e���A��*ai�0�C!c�n
64.XVWg�r"Ϫ�*�`9i+03.��WJO�C
��-v&����I�e�ۧS7k��Ь���r�_:g�������W��+��
/ݝ�䌿6AIMz�0��S���u��oLco�Ņ�.,q�\�b%���ԕ�V)#��`�p�&t��SF����ͽVhy����ivH�9��ؘ��wbߞ垍Q�8"U�@��ʫ��Y��T>�W��@��k����֍�r�W��t�2�yR0�?��炅�&d���u���+� r�����րz��s�26w��A�K��G��l���"!,P�
Ubd�<e*t��ů@�H!W�G$t�G�_zZY�au�Fzn��MבX�Lu�NvْVQ%�����@fó��dKGH�jk��z�J��0�}��H�R�]��>��k�J]�^�����^�x��ٲ�+lӻ�]�B����0�n���e�T�����9��U��X:�V�RƢ
�������+T��Ϊ`~��`�!�/��%�����nɚ��>>m�R�) ����e�'��Y�˷�D�:쉬[~�F��ã	����ڷ1Tc3�Ҿ	h殥)N+��C�r��}�Z4�u,.J�T��\0��(��!�l���t�E>gK��Շ��
���Z%�mNS�
֢|E��5��SYC0��ľ=���&`���͛u�\o��_}�W�!~�����>���)����12�R*rxԅσ_���p^]���6Q��r�N�s0�cEj�]�\��8;Y���1S�3����'���T*���"��ښ�]#ͪ��1���I���W�!X�4L�H`z���d�!ֿb&ҁr�_�C�^�YE[��Ώ;�ƒ�<�į��K����aI��^�{0���0'��S�C��oO#M���9,kw��V��~�~t0�!u�|my���`*�؊��9"#�S��4��tӪ\�F$0�nd��� �K�������G�܍O;�\�Y��_��c��1#�9�KuJ��>+~E��(oG�%��q^��
^N-�&��<��EP*�x���YPw��V��{O�D+)bC���ܑ�$���
��a&&?ʧ9E����*XN�M�<M*���'�lo����RC���?~�mzA��W�����I��/�?���€���_�vp�S04�e:�cc�9;I�|e4�(פ��F��0�=X�\U��{U�	p�|�r+�d�_H��*b&4d�5
k²�^*5�b�GZD��-��%��`A͓�]+�����i�!�/J��ˣZ��R�����q�Ta�����T+�K�����r����"�)��磊�ڌ�k9��+��Md�
���<Sl�@}w5X(zK�x�z���b�p,�4����=/Y�V���sQL�/�U0��$_M0�"�²Ώ
Ċ����&�"|���,�7\M�R�

q���Q�H�
w<�����L�܍[�3�ˮ'�d�56d�R���#�wJ.���%��:̔��
>���R�/5���{FW~���W���.2��{A�aWK���Y�I��ӷ�]skLmE��
Q�x�"v��@d��mj�,q+a.@X�9X�,�74�
U��,2���*p��$�(4���Y�],�Z�պ�ܪ#�a}{fM���D���.��N��
�W1�}6�}_𯬠��`x&yTUX-5D�
�u-ů���7[,�0����h������96��;���:c�T<�"�-���Q���q�U��׋l�L��T���N�����4�
��cL�B�댯����;UR�be��}N�ݯ���zS��dr�Lʃ�1i������+Ԃ�;�|L��JΙ--��C�%��
h^~�srt��{2�S��z��c��(>�8E,Կ����T.|~�ܣTAn���*�V-���4�eLE]>Ad$t��9侶�^eimg��>�;�b֨�L��8�y�֕6��~��r���տ�	%Snj�cxf��%v4��b�I2+ؙzec�%=���i��M���K`�4��K��2��k�?��L��"�0�G2�2�$��BE�/2��S�e�K9��B�*0ˆ�_i&���C�!~�uqc�?��⇜�����]=���Q�IN�:E�[����9s��b�74��3�
��`���◉c��;dd���+�$[�n�-¸��}|KB^�-)M��+L�E[
7&t2sN��G�J��Zh�
�<)*��{�%�!�����磻��������Ы�x��]��P�ZEO�S�t����*R�b�J���mP�}W�.R�UU���4ԩF��6&e�;�z���U�����`9+�P3=*��U0�J�
T-��n���!�	6G*�?	k�3_c���V�tw�߲�0�l�U9U0�S�Xe�a�^!����Q��H����Q��9X���c��bh|㧁\��U.���u��E��!�r�Q�,-���l�J��-:��D������U��D�
���8BT�-����pk-�"�QA�źI�	��Z�"��`�L� "�R��*��gf��_*�V��!��f
��X/H5ľ`�$"����b[�*XOt�e��JE�Q��N�E������l/%�0u�Y[�B���Aw��^��IW�>=B�	?ǡ�zT�X=�ڂE	"��:m+�–���,sQk8A8���}��ƨo4���@��[�RN�
�}�J��E�ZԪ�l%DYC0��2J��Ó��Aͩ`EwH�H��_�

����$0_�kV��P��/ϾN!��.pʒ5�	��bs0�Y.� �':~� �;�O�p*�WvF|s�!�'Q��nG�I
9���}��LZ��Z���N���T�")(4�0J��q*MYr�.EeB�9,��GK[�-"X�aK��*��m���_���[�J�v���!/�� ��^o�NQ��[S�$���!��f��C��2_l��"�E�XɪB�/d�,m\�����S��^��x��Q�.�J��[Ml��I:eLם"�R�T��)�R��"��*�6�c���<[�o��Ģ"�iM{�Y��J�Wo �|ۡ��^��Z-�1gĔѰ&W��o�u���+_H��
���̾��W��˥�l���Mé�J`}��M�"����]�6��0.�|�9hb�+�a�N˪&CU0��q�`��L)?.��>������`�Ԑ���$e��H`b~ei�k	����[�l�D���"��`����Z��P��ʧ���*A�T.;�w����!���T�R�|%��S�啵+��P��k�o�nx�r׋�;&�^-�T�<؅�r,U�)���Y��U�o�"�K�
6�iUWm�_N�u."XA�鵭ҙ��s�G�?wq��g�E�b�遡�&��R*5[j^.��qvU9�H��e)�`����S��U�Tg�
�!���*����\M)؀Ċ������Ӑ�R�[����VC��]�G�
�"�ӡ2N�L�f[0�|���}SwH�9B�W���/$��z�`�/d�%���nm9:�p�Ȗ�}1�����'�g}�w�c䷨`��aX1�T��?u�tBXh��X`���`����� V~��3H��3+��f�n�6�<k�GwQ�u��g�?h:���0)���;8vQ
���8�=�!���<� �~�k��¢���˟equH`�c`�L�#Q��L��(`�%��<wȬw�
��-�1.X&Ad�����ej��C���q�JW� XX
O+�_�F�_�_l�d���+����ڕ���7�3�`r|++O?�’��^�K-�(�>R�J��)��O�ȆKy�`
�T����׿V���S�����R�]����>��7=rXc!�"0����_
��L�_����!U)4~���!mj�4.~�]^oD�$(~H��R]��%�
J`c�#ӺzI4����B3��6�YH3��`�YQ�:-L�l�<�7(��B�w^�*��ԭ��+�饫��ݝ!�o��ү�gf�h�F%�h�V`Ó?.��U��?hC��X�@VK�"�zBG����֣#����&��N��/�ٝ���S��!�����(,��U�|/�`[PgSi���2Rļ�֟�}V�v(4�	?����$��X�9X���a�-��#�S�zD�(4~�G�:
+4S��	I~RH�o�U�bP|��m#|!}5)
���l�'�k����q2����B������}	"W1����{;��`Jy�`K��P��Ti��,(g2��SR�*+���Fa; ���`�X���/ق�H6kH�d-/��J�R�#�g�����_^RH�o���ê����������=��<�Vޜ�Hf%t�+���
v�6�%��+�:E�`]=i"W*Xle֒ �n[��w�%=GH�L9C0+$-��gK�<2Ud۶<ad�~ۆ�eu$�5�B��M���IQ�`0&4[��t��H/@��
,tl,6ǡ�|C0�iソ�B�P�d�(�L�y��[Z��k�c�c�eL�O��rN�[b�+eT0�)҆�R�
���0Ad=4����w�!}�Kk�.k_-�Ü��ߡ�D�aQ�?#t�R2���c,�5��>/H���=��NS�9E���c[�Z�H���yiʓʢ����R�ʞ~u���b���L
[b����W�ζ2VY>Q&lH��`��W��Z)?+l�k�E��Q����z�c��DBI��K.�G�Z��Z�2Ee`ו�b:�5o�_��R%_��*V���;+����e4�����2l����!:G�"�zDvB���B㫥�ҿT����2d�bGH�{L�Ԑ���X`&H��ҏL�b��P�qW��tp4���3�c�D��ݡ�� ab��c,�YJ�	
�"���2Q
V�Ubfk��<"���_��Jj�b�'�M&�U�V�{�v{{�7�z��^��w;�Ϻ�`�������`~�|W����iU��Y�Z�*yY(?�0��ʆ+J
��ڬ�F�C���$��a���m��V`���Q�����`Fa����R�lic�`�C�	C����z)�%��]��_���\�k�U&(~�L9�f
��H5��>;���L�ji��G�/cibG 0��X�E�;�f_�Q�{?tXh)+~@���HZEwH�a:���\jH�yD*g�e����GWߝq��ߞ�W���ڝ�tb���r��F�	{��ZJ�?H�xD*�l)gY-�,E2'3y�`�d�T���k���f*�t��́҇�:Tq��E:�V-��
� sWa��
l:�.����l�IE.�b�L��`KS&��rh��p������^%w�ر�ޯ;�0?n�a�y��}uu^���X�ճ�;�	[��i�XK�z]L�iZ� ҧtk�r��F�/�=���U�<���{��:-|�X��S.;�rҒ/���r�n�� _ZY�9�*+��(`��W�?[�i���ı	,�.�-Ž��	,�{�1��`��*���YZ-������t�f�4.��Z�����05��҅�#u)
����"C�6w�\:H3ִiOc�E*U�������v���`�z�s<t��i�^�a�Ur�U��N����zU��*�s���]���D�����L*��h��<3�]��v_����Xl��2�&��������1��W�^�r���p��,[���SK�)�iՌRP��!�R����2s���`�L�u��	a���A�ܼ(�&�y!c���3
�N8�]X�5׷=nW���]��L �����޽{<�U�L�z�7n�8qb���ŋ��������ׯ_�K�1�c��.���?�l��n���YfB����ڂ��ѭ�ՙtA��*(�V��&0�`Y���!]Ŕg����PiFH�Vi���r�9X�j��hk�g���XV���_~�ɴ?T�L��ɓ�J{���W�ܟo�����Wx���S�Nq��{��ܹ��QF�O?�t�� Y�}���n\{��|���//^�ȓ�K�8<�u��O?�d�C�o߾-��^�J�@#n�j5�?.�r� ӟ�}�F��)�F��+C0ϱ��+�|!�X`�~P��Y./��Q�*�t�7�:6�R�%�I�Au�)
�|Z��dP�}���?z�HVN�����o'�ɱ?��ógϜq��ӧ/_��[	L.Pj��o�J~��WH`���3~�%������%+��/_�9sf~���ӧϟ?w��\�W�d�C8X�?��C�.y�O.����Fy��œ'O�����Ç�}�]��u�}H=";�"� r��њ�E�!�*��D.5(ߪ+~nM�+�̼.�9��j^H����o��\8��9�.�>���&򗎯y[-�|�|�2w�u�����^�pa�s�+�I�J��3�+�?~��mo�`Ν;�駟֏��?~��\�|yS����d�c�F.6ш���}��䃼��ײT�*ϟ?�ҥ�/�={���z�,�9?�!�� ��}�D,?����:s0�U��r��C���=YpF/`�
���V.�^^�.Z�T��/(ԴF����էz���}�E���=z��&H/���MH`Y���O�`K&5^�|���3'����O<m=8���{��a��N�Ȉ������o��3gΌ���!o���\������Y�O��ʆ
�k/{T�م��N�z��]�6K�A�ŋ��H��D��={��_�q��0�d�_�ϝ;�['�7C�ȃ.x�
֥��~�Ȫk�R�$�#�$:�ӐV�`�y��Hb���>�C.�=�Y�\5sq�džK�������1�t�X����Q�,S�'O���8���e��X��e��>�@�76��y�…�?�8C=zdcĸ)�͛7�{�#w;Ο?/W��w�YUQ�r�l�A�C~����ފ_%���bҏݽ{����}��;�s<[�ŋ���?�m�|�~��'�|��ԩS���/_��m(�&��+Q#�Çm�˟'O��ꫯ0���D���(��N�ȹC��kQ�f^nN�r����&;�*�XV6��,K����`:٫��0#d&�U�kR�Q_�F^�Ñ��o����dh|��~H�UЗ_~���?�*H>_�p�Y�����)��:�_�z��ŋϟ?�����ϝ;�3�o����޻wO-�U������i����7�|#���<�xD����ҥK_}��/����ի�g�f�e�3N���K~F�/(��KL��C.կ�!X&>��`�M�G�/�i,��ײ<Bg3BFgX-y[M!��H߲��n��u�.��O�+�U�ܐ���ì��ly���{�G4w|<V΀gp��kyt���T���}'O��^K�,H9\>����4f/ҘX��:﫯Nz*��-��RS����4zn��D̏w���W��U�8���r�ӿ��BXd��Tq`����Y6/��ҹ͵2���L�� ���ɞ����d�|�����׮]Z�W�\��7�3���l�N�8��;�_7)j\Z�	/p��l#��H�~�����v�|K#�:l�b&'�a���2i�dUZg���C�����4��"���[Fab�e�4vۛb���q��r��}?ߺ{�.\�p�������n�J`���˃d���~���gΜIŝJ�9���v�v.��-Ŵ�az�z_�{��I�2�_m���x�U��)ϑpe���@��,�ŏ��+?h}��4���%i(q,�U������T���|���D��4�Ɨ�|jʒo�{Gȉg��VIJ�#2/d���;�����ٳg�=x����3W�=z����/^�AH<uꔌ�vT���]�.C�o��f��24�>}��ŋR�P�4��n?���-��M�Ƴg�J�W�\i��*����֛i9�k{:i��ȹd�R�, w֏D Ww��MY�H�v��4��<�:G�y{Av(��djeC���^]��G���G{y��y���/}쯿�jWbv��u�t�%�'"�����R�~��"�+���2���n
d#(��U���Ow����\���3��O�՟;w���˥�\N��ߺկ�i�}�.1��z�-9�=���&�~�iiĔjH!v�����������m}�&�Bj"-���K7��8%�K�����"o�LҢ�\^؏>�(���WIz?9�~�^��^���-��v�h��Ρd,&ʻ�ۗIߒ�Ter+����2��϶��t����(J�+g��]�$=�'�|"��<VǗ)�-M��A��?�G?	H	2�v-)��WF�M�[U�n�Q�K�R�^������ [�JR�{��Y\�fɸS��v*�.\�Nzi~8��o�~JE&T~P�@�)����0"X$<������P�V&f��Uп���Z�
b�[[��ڃ3��N-��)�������ɋ<�ȤV��;X~���H �Y:x��n�*�ɼ\�M�d(�qNf�7n�h@e��\�I[��&[��#C� �OJ�1)��\��(������52�*��̵�:����/;�0�Y5P.V*l�FYe� E��n*c��sI#��-_�@�5���)�L8��r�[�n�Crl#��Q�q�`g�����_�t�N���
���ϔ�4N�tv�3K���h-p�����%0YVI�Kv�&ݲt�.W� dO��D2��(���Ivp�����Qw�ܑQ���9��h"cDi(�d�&�_+�D����,��b��od|�å��CtS��R�.�%�5))��ݓ!��?���ʯ��:������6���ɛ+����e�t\r��7Z�3�om�J)ПK����]��NUz��V
�{$��l��P��H}����W�\�n���+���l�n\�\a�P��%����cG����ÿV[t�I/_�,}�
��b�W�Y�9���s⚭��Q�$U�!�N�3��)2ә��.�~Wv�#���y�&��Ҽ�J���U���-BP�`:g�tb�NM�i6L( c��7��	�)�c-Û��ʌ�n�u��]YKخ<
l��C��"Ò�tUٺX�o��F5���޾}�.<Ju���(��������߶\��TFZ��������g�8}�����k��)��e�Ζiw�Ջ�_~��?�-r/"�!i
��)�Ф�uY�%J�&����Y��.3ꥹ�v����"d\�ô_�����,��yZZy��.W���[Vn�g/]�]�ɐ��#�|+��KeؒyE�x��Vÿ.�d����QL�	092˕w*z��h�����eZ�<,�#��iߒNѥ�_���g�l!Yoqg�*+��_|�.��om�i�h���?�|\�Jo<�Z䭷ޒ剻�٤q.^��=����2f�<y�$}�%���R�r���_�.�����
�����B�t<���Վ����q�*�s�ǘ("�hgƒ5_��w^*X�c)�i}zj�XY��z�I}S^y��/�.U���Kv��td,!=������:���:R��U��f��KsAFZ�4�4w�_����ݻw��Iߖ��S]`�}�Ո��?m�4��2���^���,*0��F������z� ��8{
�#��Q`�t�#�?��]w2��mJ��U�d4���)�t�*�m�*���sR1��Q>�@f�/��%��dD�y�1�u�{�S�N]�~�qYw��5����t2��DU�D�.]J'�~�@���K����}D:��?��o�<y���w�}7��Jݚ
��y��E��i�_�
l�Ҽ�F��ſ�)V�0�{�u�>�m�^f�~�J6���DɆ�e�O�I�0S�hb'^t���&$��>+i�]�#��EKx�����|�7�oő!��K���v��&�R��~�����Ki�.�2Dݿ�?�Kg#�[o�u��Yݽ��ܽ{Wƌ�Gr��G}t��M��Fq�ɞrvi��]`o�h}-��?m�/�ךt�㺌��o��դ�v"bM��U����0��ۈ�5]\h��ӧO�n<

#��{���\L��1U��H$�C4���ی�#*#3?��YΜ9#��[��2l}��wnB/��q�MN���ի���|�\c�D�J_D8�Xg:�ջx�b����`#�d�4�={����Km=�mTA�ؿ��{��l�|�rԃ����C��Ԃt~+�X�ߍ�Ճʴ2��c�ӧO��ڳ�y�G}��-?u$Sv�9�����䳅�e�*��^�2��9����C�9����ʚ�&�_9����3t��G��f��b��$��fZrȄ�����o&2�t�t6謋�(��$�r6x��������޸q��ɓ�݆V�ɮ
<Y����?D���)��;�c����l���&��� �����֭[6E��e'�� �J�d�t���X��BB�Ҙ�.���oE�,��Gk1��Q�ڵkְ\���%?�d���"�Ȟr����JN��GGYzrY�؟d�!=��g�v��UF�F��]et��<x�ّs}��2�����f4R��v$��[]���

�;:ب����X#uk��C�+
�mV*fGR��4����~�~x�9�[��U���$��o� W'c��(�?���d8�?f+/�U�j\�~�)!*sB�g�^K��UJ ]�^��߾}۟�ˋ/sԖx�r�M�d�V���TY:�3�qm�G�����r�(Y������3��>��s{ԝ;w���R��>�L�VW��digsg�590�6 -��.�9Ox���ܣ$�C�Ru�`�Ve����8��yp��zS�u��aM��E���aΊMebx��wիE��)e���s��Γ�#�_��5��=�2D��v�*�4���0����ͦ�r��t�20��?��l�"��_��|��M?C��Clɿ���Q��TN���?��@�1CF�?���FS�k�T�F�t�RHRah�x��}?6�|��QJ��Μ>}Z�rR_�+�Ȧ:-_u?f��e�_�,�?P��oe����ͤ�KGz*�ȗ_~�KH*+���_����#2\Vғ��ԇ�C���D��7�������#ѭ[�d8�c�K��I[C:v��Gʑ!ҟN��_|�XR��er��������ׯ˰�և�';D���:9��^.&���m<�p�%�h�<�H�%��bCȋlm��b��i���?}�(����5I7"�r_跽��緹z�f���˗	�����N��\�2e:�g3�ݵ��~	����o
'+�'�GY��|P0
I�����iq���o^��c����Z� �s�����
wo��YC�i�`�����5�Y��C���?mx,��� ҆.]�t��y�}�'-2�<�eQ�M�,��L�eL��cO�>�̹�^��)c���2��y���$�ٝe���O�uA��7�#R�@�Rʑ˴){ҝ�rEQ��J�����i/&�(�-6S�?�����������1��?�7n�H݅d����d�\?��ؑ(��XFk�6�e��7�|�>(:5��S���o���8"c��d�>�\�R�q#���oSs�0�q&�phg�[��+��_�|�@�|Vj+�v�_:�T�O2�_l���YdY$=^�]G�˙�I��;�Qi���u�<��!U�:�jw�JT1����7�pj���i��1�y�("}�wRG�`�Sf���㹏��R���[�e�M�R_�*2e􍭬��}�x�
�a}���~�Mz�HC���ߢ�qK?@ɔ]ƶ��`:G�?�W�}�]ie"�e�))u�^��#��ѩt�r	������G�C�J�<oe���5eȗ%���[g�l�mJ�5d��|r��`�(���a�t�~�a�y�T�Z;�Vҟ��Zҕ�	�8�ei�(r���۹��D�:g��>;XG<e���p��p�cP	��ך�1O*3���]&�Qƌ(S��#�Ji�m���'�}��W�\������|����_���!���2:�C/ϣ*�C/.�2�!��&vN�F9!̄��f�o<�d��ʊ��t�2��$��j�����$�{N��r%��A�2Wn�"��⸁�����ŋ�h�77u�v�2��"��$K��N�2nUJ��#�S�h^�yVժ三X�ֈ����C����M
:�uة4o�49�ԩS~K����Lo�?���%_����P��Rw�}�+���ܹs��1�>C6i��*j�ȸ�z�~,����W>ؘ����\�r�F=����u��6
�;��v�tw������HtvB�ɨso�8�/ٷ;(ݵ�¤�s.�ֻ�h���S�E�k��	Gz)�<�(t�����NK��h����GL���2(�	��}!��ص��Qq��Wa�u��0�[��s��1���e��͝���w+�U/Ϟ=��^��Ν;�٭?ɸ%}����V�
�e����~�tE�k��;B�EW:X�WV�t6�1u�5�^�Ҝf��d�v�.���e��z}��0�C��l��HT��^��75�H��݂Hq�C��mYVڬ��^4Ɗ���ߣ���N�5�}e�2P�Yn:��Vz�Pb�S�^���/��>�裏��Q ��/��;�Gt“K��2q���`
�T'(�
"�~��{h|'E?�}b��:�٤�����d�=�d>��z����R7<'i��ʉ,�#�������+W��ãe��HUk+�T4k��T�/��S?�T�9�,��U}�^G���!��閇
��Ɖ:�Hc�ɻ�'64��IKF�(b��I?Wlh��~��+
�sK�~E'�{W�,{>����X���c���!����1E� �z?�u���p�b���s`�ح[��5�b�Pm�X�}�<<�ʅ����g�2����ߗ�4J�UOlGe_�L�u`�JB�oB���V��2�WE_��l(��X^"[M�O���^G�?������clw�q�T���0�hE���^c�y����T�Fd6[��96�WweZ��#R3%9�ŋ�;?��7R���\��Ɍ��O?�.���H����ܯ�OyQ�F���CG�`��D�KO�>�(2�YYl�=���K#�������_��^��nn��.��:[��ق��-7o�l^J��c���o���/\�P
���ݻw��/_���]�����������Ç����W�^�~=���믝W�1A���ߖ����<y"+�Q���u��?�^/(X"Y,SC���IjȮ�UMʅ�ϫN�=�ѴUq	תْ��\���5m�B�$wnL����̌8:̈́��	���Q�������t�~�G����h$vܿ?�8�#v���MI�(|=���Q���A�K�cX�̙32���,	��}d~ �c��]�tg��ַ�~+��~K7���!�?�H/w�޽R$G�S�F�	wn�CcT���R)`���Hd��7d-%g�Z{�?��C�be-g"���}� +C�M��2X#�\�v-�U�i�|�M=(��f��D�����BMI_�VN�I����f��Q&.y�?��c��)z��t_�FiY5_�r��	��H��Zi�28��D�R0��wݽ�QD�Rj����%�t�x�Wq�=?X��
��g��$'mbw�T��?ޝJ?a6$��b��YQ�L:��"ғ^�z�Z��An��nX���Ql�o��6����Mf�Q*whoݺ��-����VϪ���[oEöe��ӁYF��󟩸c���\���{�ul"�(7���:�٥��K�.m�w~Yh�������G������`��H7�j���Kz�(��,���Uv�ڇ���B%��]{Fd�8m�VJ5�˗/7w��I���/w�܉~o�?e4�����O�\6(�dM.�wg�#_I���z"�QG��W�\�r@=�\�G��Y�E�C���w�}���[>D��e���'O���!d79\:4W���r����ק�iΫt��K�[HIU#��y� �~�/J�U����Yn��d��n�U'�ah�	�o+�h/�B6
��Ĝ��|-'
���@H2��`�^|i��J�g1"�Jt��D��I�ǜ(��՟q�w)����=��!��B�?���yg���L[e��ta�C/㥯�_������~[Fe��^��N�=����n7��Ɉ(ùs�l�RT���r��E�����2?���T^J�s����}d�n�����}����A
z�����{�B�z�b@�9V���\���w�jfc܇�X#g�nuI���_�N��={V�&YM��X����H6ʷ6�,�3����c�g�UH%#��ƥ�t���2dȈ&#�ӡ�P+#�K�,Y4�ߺ6w�rv�%�ݑ�gΜ��CF
ڬm�]��ݔF���dg�m@"�Hv�ջ.�es��H���[��>��cL��+���.��xm����W&��%�7���W�E���nׯ_O˗�O�>�_p)D�P�.�JQr^y1{���yͥW��m�N���S�M`�N�����ܹ��;��v�r>t��Q����e]���t���޽��H������Q�#��K��D�H�Z��U�tی.�B�4#C�*ٹX�9_�YqFȊ9�JrA�r�9y�d�#&�M�����ǒȁQ
I�+�ɼ����k׮Y�#����Z�Xܕ��/pوm�eT��M��2(����2�>}�ѯ��d�y��
�i�I��4�������*�����ʁ�.���W�,�)S{��s���6�)���D�t6<���
�8s�ƍ��^WVn?���������Rp�%de(}��,��?����We����8�2Xo�G�"Pz�d���o��Ͳ�����K�'��?��Y��[�ٰ.r�,e��d�5�Α���O?�٣�w�k�V�>����,Z^�.��^�r%rr�2	�Ū��ⲃ/������x��y�cȷ[ֿ�0'�%���κ����\��A�%��Iʗ.�n|�ꕔ����wiմ[���٠;�b�{�,��ZzAx�Ҳ�T�G��^+UD�I�n�^�
�|�,�mJ|�����ILV��9����x��4�*�/EC{���sq��|���� �����䢐X�Iz��1�Y8�-FR2*ܼyS�1�E�����ɸ��g��={6-M�������VN{�����[��o��=���2`C&`�,*�����!dH�{�1i�Y]|��'��{�J�ݲ�rln�R.�F�Q�@/�����ojeF��U򳍵��u��YV�r�Ѣ���|Yu��n�8��/��x��Fob���e�cKFF�=ۍDѻ쌺RC�	�U�=zt�Ν۷o?x�N���kKwu>���+_�|)�͠�3�ɼ�Mi��R�m��~�)�}������!6e$�<��P\G�85d��S�+�[a�{]ŕ	V_f'$Q��L�1�į�t4$����3��̽{���]�v#��߿�h������~4��ˣ��Y�������+{�܀�>��f<���-l"*������իW���l�M��� _ɼD7n���ZT��ȭ�<����]��˗+ݠ?"H�+ݦ�S�s����/I�g@�H�2FT�#k�駟n����H�[���Pk+f}?��h��c�]�^��|��D��9s挼D�r�<y�2�ߦS�N}��'��CV$��l�7���t�ׯ_�t�r��7oJ%��9�Nu	a��-��*'�Nɷ�ruS]8�eJs�(���Ku�L����UCJ����鄞��������Bv���E��"��7Xݞ#��`��/ά��L9]X�m4�[f�W�!X�uqO�����o��p���ӧO����K���#�+���]ƿ����WQ\��t��jDA���;{��,~.x��E�ò|+������s~�|+V'���aR�4���m4)���'(#w�e��q�4u��4�_��W�h��.C*i�^�Z
�en�	�{F����6փ������"]��_~���c��0�X:(Y�H�~�ʕ� R���gIfr�KKM�G�4?��n �V�.]�-�ɘ%#�M�G����^�v���)���o]��P+�E6��
,P2g�
��/���t���u�S��'%Ȁ˂ E�2C�y�̟�<y"�v���,d"-{F��R���ׯK�u��=;э�jy�ϑ7�M˳3O��~��WR�T/r���K��U]�HG]tK����I�"C���h��I�cc8�ˍ޳���e���7�2TI��F��\�d 6DZ��lp�i]\|��4�|��`*4�J#������Q���J\M*ne���^���b�ɾƋ�k���i�;�+���̞��:
?/C�yN��{����;E�۴SWMo�̨sg�oA�GF���oP!҃�
$ʳ����=eЕ'͎���
`���i�"_UBJ�p��4{F��b�:�/�
���X��@j"�K9�L�^�O�^`/RI)P�(7Q
����t�b��魉\��pd[���e��Ę��֐N����E�YIdG1Y�0Ͻ%�yl�	%JN��$�?��Z��t�
;���ǚ]�R�TV��o�Cܼy�%eʥْ��R��J�v�k�o {�V�:�@j՘��&�s�Z�
%-�{i�Y����ѣ�~�)�(]�g�}�{��?���/��%����v�>�N��Q�hձlGg+&;[�P�ng'�i!��-g��Z�u_���uw6���\�������-���Cv;��R���Ͽ�7n|�<ϳ��/ϝ�a��	&I���eρ�I`��@EA�,���}�*֤�u��(H\Y	,	̯:���ۮ�ՈE�J�?W��7��-�Ԛ�G�A�΢�J.�y�o	�ꌹ,�ԑ�֭[>�T�'N���.��gϬ���Ώ�[�իW���7�|����>y��W_}5�j�z@�e�봟@Q)�,�(.��ʄ�Z�,�¢��c�۶��|� ������}�U2��\v�D� ��BزHSG4#do���W���c���'�|"�޿_y�^�zu��]��t(��Ǐ���?�w�������_�/_~뭷N�>-��F��M��[��������r��
����*t�Ԧ���'M��1	Ux���C���1�ٗ�m.�4v�Sr���)����~����[0s�x�O>��̙3?����a-���޾�"�e�Mc��x��޽{6%e�by�ԩk׮�P�DG�OިI�ѵ���̩�k��XL�l�g�#S�vjy��Sޯ�u��f�~���N�2ح��#�=��:+��8�%��ׯ_�x���~��/��Y�k��l�����g�i~��7k�e�l�����k�9��S�Bt��V�v��^ܪU��dy�)�ͬ��d���`��Ʃ�6
���lD3k6ـ��K��+�ϟ��_���/����OO�>��?�+�M5~���Nl�)�e�J�H��c�v��8\%�N�
���*X�^y
�Oboƅ�k.����ـ�}��b�n���.}O��̔{�3���J�spppi��l�Փ'O���������˗/�<yb��zչs�^���5��=U���(煴�y���gL���/�
z�q��Ĺ�a�z�U���i��2ɵ���S�'�`Ϲx��͛7�I��-4��N�:ESl�s��}��ϟ?��ً/���{/Ο?��%g��Sj���aP�~,���$���˂³���\��e*��
�z6N'f�Ԙ��
!��b��03���tn��b=?u-\�f&I՘+>p�x��+5���7%�(~�Ժ��Y3����޶�<(z|�l�|P�r�-���7���&*�lߕӥʒNIŲμٯ�lgz�xJ3&�}�q��&d슒,aq>_�=����N�J�+.le�-��֡h'6P6���E�rA��n��O��I�K���B�}��[�V�E�O%&�.�z�Q��RU�e`L�9 ��?��.���a�؎�&CH�?����"�?��*/d|��d�l����qE\h���J���=���iG�
l����V�����`>�1,X|-�If���(5��@�zh�[������m��=G��A�1�}�"�[eʅ�O�D(�-]��֚&W��`���0L�i��-	l���}+5B�-墒ryl1� ﴸ�&�,��fV�/�Q�{��� �4�Y�j8�Q�0�`�8M�hfÁU�%�+���vW�:�/j�7u*s�j\6F�$
mW�<4�`�2mH	{����뵧��XTC��Q4�v�J5��V�&��JZ��k�pb��@FY�L�s�����̴��`E-�7���*4��<�IZc$���w!��S4�e�,��Oxy!u��qX��ו��A<y���MEiw�33�����qd�ϓ��GͪE�M��vPF/#�{^�9�?v�V�U��t��"�fm�����f#�1�`��s�	;oɺ�q���ou����_��6fs��_��7�\��ԏN��IR����c�]�a[��5�������Zσ�
2��sb��uSZ�B�D���y5��6yn���uc�m��hd)}86|�^:M�B[�����/��Yq��j��2B6�,��S-�7=P)��qy5��6�'`��ը���eG[�vc!�__�/���q�%؆��9r씥H�ۓ&!U��aS�C�X�Aޗ��nX�٣p�f��IC	0�ӡJr؁�^���Mڕ�≍֛nR�_��z�fZk��Ɉ�����a��he��S�Ӟ�D�Zƿ�Ʈ�'���oA�B�ݰ~�xhu�ᘳw�w�6� _�;������\p��!��*���}*[���;2KB�#��4:f�ڑ�W)kH�vi�Z�`+�%����"�����iך�Bc:�B^�6b����^_�8�ͩ9�8*,�3��&(�}�0>�ީ�W�G�/�O����u�,ӥy���9���gbl��v��R�~ڣ���|��!Up�8�'>��8���)5hs���Q&:�����i�N�qx��&�^����G.���HuN?�Fꈇ�G�c�K�����1��-O���f���cx�`�t~�����-�G����pb^��~���0�?ڣeun������.N�<�~�+�Գ�埘��h�0
�lA����������ʬ�+�jD	�G�_��WB��io�u�x�Q#�/r��%��Үk�����]t�=Ꝧ�wf(���r����Z�]g�^(�,n���F�ڂ(0n%?�-[�V��e���+�\C�~c�U���z���|��Z�iIf�܌��L���[��[�i�Zs٩Vzk��Bh�7���=d'��F���B�����g��N�{~����=^m�5{�n-�i�pi���]�D��g�m��%�zT������w�?6��.�{ ��/�徙�#����u�2��E��-�gP��Wt�_�d�����`l�2e�g��I���[�F�ت�9d�zr;+�A�lb�BC�}�N�Մ����i+�']�n���;|ŶY���c�ݟ��?�d�����Gd^�tq|��m��O��ҏm��Y���i�I�����ó_��>�*��KP����=*���y�&�[;�'�|�f�\�O��d;�w�L���"]ߨdk%��%�h��;}�,��л:[��9^�tfgѪ���������aCŮ����@���;���J�=���jO���+�i�+ysK�m.�6��^���~��N�7Q�iߦ}P�f��L��ry�2.WF��Nm)���+s7_	��ӧ�uGn�Βc����l�M`�n�����9ۄ}k�M/Vw^�ּ`?9�؅�K���켝����u���H
j�=/ms��8��{���8�0o��`� ���A���3	f�$0�9H`0s��`� ���A���3	f�$0�9H`0s��`� ���A���3	f�$0�9H`0s��`� ���A���3	f�$0�9H`0s��`� ���A���3	f�$0�9H`0s��`� ���A���3	f�$0�9H`0s��`� ���A���3	f�$0�9H`0s��`� ���A���3	f�$0�9H`0s��`� ���A���3	f�$0�9H`0s��`� ���A���3	f�$0�9H`0s��`� ���A���3	f�$0�9H`0s��`� ���A���3	f�$0�9H`0s��`� ���A���3	f�$0�9H`0s��`� ���A���3	f���<���xU�ξ�I�7�i��qEG��qt��E�����3*�;���(����,� 4
��RI��z�o�TU�*�T���~��P����so����s��8B`�8B`�8B`�8B`�8B`�8B`�8B`�8B`�8B`�8B`�8B`�.`�~�?�999ii���B`��������1j�+==}۶m���\%I X)�����L؛6(Lq}$�`�HKK���HOOwޙ��&��6333>>>66���ȹ��k֬�k�)�I��+EYYYQQ���tww��cfffhh���)��`NNNCCCVV!0�*��0������]�����`�!�w�#�`����|dd���O��
�YYYeee���\I�6��0SSS����w��j��HOO_�n]VV�|w������\C�B��8ʤ���_�>'''�333EEEuuu����DH�h������z���YZZJI
&//������S���}�`0XPPPVV���å��Dl�p"���,bR�~M������m�nII�Ҝ��̌���m%�$VP
�}jjJ?�C�����#=b���$m��:�%c	�ط�����e�\�"�	`����SE�G1ʢ�V �^��yUL�\�.�I$333-$�Z�Y}��J%���,T�fgg�-�Ú��X���jM�۷ottT����+**�N�������z�ǦM�������cMNN


�z��f}^^^qH"��B����p��������D?Sq:�
�sq-�2���$�������9���KBt5��uss�\���7F��.��+��-��jQQ��B�RM%�
���၁�ܳ:HE���*��
�w��"�V\���&��e���We�ݐ�\�@V��B�Ǡݕ��R��T�J���=�t�U�����:;;333U����+W����IQ�bY����6���T\sѰj[)�������I$211���b3�8u`:Ct霈����<�������P����lɊLDՒ*���u6��+$�\筯����]�ڋ<��C�JTVV����̥j�ȡ�ʿ���������&�^�Nپ�Q{Msu������u�E�S����-�:�����Pkk���`좻��\Ewff�����=�J�D���MMMQ�+��+u{T��H�QqY;8��ѩžG�J���M�©%��L�j%�j�n�TWW3���
d5�U��ٳg�鐶�ڵkUP3�!�Tr���	��7lؐD"�HKK��AT��{��Uî��c�Yx6��
zG�V[�+��}d:���sf��l���t�b�O��>u�9���…�_)766�㡬:�v��X������LNN��5��$eW�v�I����Թ(��ƍ���9����-!�[%n�z��Bf��Sn�����T��
�P��z�*p��U���n��߼y�;
��wR��T��W1�{�n�N���
d�S�>oo�j����ID[nڴi�ZI����dW��T����ϡ���.�~��8t8���ƚ������(�ſ����x]�G���������9q��]]]�8�ejjJ݃��!����v��j�OLL������MNNZ�H����������������6ڽ��BUE����H�������;�ݕJ��%�oX�F��y(999�ҁT�{��Y�G�.e���22)���9v
�U�B��s�ȬMƱ.P����J�*��׻S���ʶ>jiiqz�!ʶ.��<kw������x|�,"�*��� �T���@ ��O������*�Up��uV��d�؇S��ڊ����[�T��)�Ruu��w!�\�#������w�ޭ[��ul�}'�\�%�,
X��g�%9zK���*��Q��Moj/˘�K�iKTg���L��S��Y�ѩ�T���.O"���{�c�=6��_*��.��9�������
5����.ԥ&��}���G���5�U!v޺�s�1���!eee�cXctt������f�����zA��dgg+���"�:JsssGG������U��Bff�u���iQ*]�Pi{�imm�}��NP�����k�o���ڦM�ܽAe,?���\��>^��$G�J^^��zuuu*s"G������ljjr������8���z?Ʊ�@kk�m�r;�(`ѹ7�\mذ��T��U^ʌ
IK���1�٠2�n�(���ׯ���J����BA1%�e�w"ֺp�������n��S��J�o,C�>#C����d��M�����$�x0�%X�q���A�J�E�`�ta�V�d"����V�u�yP�$j�&;;[ۨ�osdl�I���6kR��]�v���,�d],�Z�)���y�fUl귨΋U���Р�ϢN�����Mot&���TVVy)�]ܴi����iooW�i���85u�l���Q�r��:�r�N�%��֖IJ�0���|��*�T��,�:�ZE�>R�j�^ �Aa��x�
LVYYc��
:�`�TzG�h媪��2�lP%e�pm�W�DT��m�W�{���;���YM�9_����V�*�y��\�\W�Z��|VU���g��6����ښ�#�����Z�K�]k׎��٣���*"�.�oMd{.{mm��f@؃��D���T�tul�Q�qQQQⅲ�W���墔
��H"�**�{�P�%�ؓ��&��d��Zy��ȱ��.�-=f��\�l����F�}����lݖ��q��gtt�־���]MMMSS�-ԥ.V�l�~[�K]�[�z�Oc3��g}��Y�p�XT&o޼9�f*��;�<,��#TZ:Q��S&m���%%%��6��]]]vWF�pn�(g����ؓ�U�*����]X������<Բ$���Z�6LX�ºu�X8�P��4j�-k�!���744������&blla5嵋��a
w��JD�f�#������������:5�8���g��������ͳ
;�Ű�@WR1 e3憆�ZZZ�32]���*:uSA�q���f��1qw�E�j9',�===��-�F���rֹ�9A���hY�e���S}+�A����%���T!�,%cw�]6��&6��X%���}܂]y�5_T9�F���V��}���B�X�<22��:��ն�G@V8[�Q�9u�֮]�z�p[Yl‚��---j"wvv��������ell����کUUU�x������ojj��>�hq_(Ffa���^�7�Ń��ӝ�M9���C+���F��5cj�www�[�.F�Þ��^��I�yt�=�*EQ0��B�B���9'���O�
��e+�/ٷ��g�R�y�W¾~q{\��Ŷp����q%�%w�x�A�HN����,X��sO~w�� ݺu�k1�>��d����q|%��q7v���r�D�bن9�`wB`㳇#��X!lL�JuU:��Xl%�����͵������[ÑZ[[mؗv�5Ab7�WVV��Ć��M�6mܸ���Ιg����sQ"�#�,(fs����
5�w���^���@�ڰa���a��nk��۷O-��R����ힶv�Qjkk��N�R���<gp�?CCCv_��(��o���ts�U��h���^���6��,�HTΉ�錢.���c8{���?��W�N�l"�"�s�nTm�Ę��Ê��gJZ���"�}{�����3�1l{ux��qK���ޘ�XVio���)(mmm�&a@�d6_������+�����۽{������3��4�G��󜦸�c�...VK���Veb� /�h�����kP�+���)��������2��U�����Z���k�����hmmU�Z�������"�eC�t�555ʕ�@�C{{���V�wvv���-��w%���D]U���[g:00��/(�zS��]tj���J�+����b)����ڣmq��Zeߢ��vשٰ��1�HN�M��_?F�M_��ηe��"��
IU�V�����C�U�[�Lunܙ��ص�9�"�.s��JV��3�Q�:7	rrr���Tm)��O�t'bqJZ��[�����겦�&�V^^�d�X�L*��N�V!B`+TIIIqq�=�ImS����833��l�BYYY"�[�RE~jce����R�xpp0�4L_(��iӦ�w�B,�t6o���v����O��kjj*++�:���~���Y�2k׮�������d�3,nL]���v���EDf��f��݇߷o_�aS�9�Ŕ���=�>��t���bmaQH��L���/��3&�*,,�7�B���ݺ��E^������S��{P$,.;�X�^G-�b
�z���(�i�J_u����bpÆ
�;�lT�p7�RZ�[�S����Ε��R{���fe��c+��pV&u,{İI��X^��V(5����l�w���]�6l���N��`�����]QQa�n��B?�Y�FvCCC��r�:�S�c,|�NE��^��3kkk�@�����E����={�g>���Gͧ.�z)����e Ľ����t"�rɆ%�O�o�>�����̄
ap�v���bpa=������޽{�477���鋧/�.�=�r``@W��v���C�f�R---6Ն�&2��M��+��1��і������90;w�T�g�k���RVm%���V �bU�:66f������M��+���CU,s�1�*��I��.�ttt�(*����0��[������nkk�u�ոtȚ����j��������LW[V�ۭ��$5�u�bj�ך��L'uz�[��Q���#��ldgg[�G��Ae���Þ={����u?-��yZ����S,Tdc������_z��zg���q���o�7��YWW�Mܕ�cKn���r]���V��
���/l�|]p]�}���H2K�%Ċqճ6�:��GGGm��%>�233s�ƍ����b�R�;�՚5k�+���
�;{�H��
�!l��B�J��t�֜�X��������z{{�Ϭ����קZXe�6#V&B`+Zmm��Z�jn��e��U�V�E��(���N.}%k���5l�P���6קʶ��ƅ/z5��M75�-���sa�/gKEEE}}}�������wV=��Ȳ��l"�=R}![9kppP�s�1)��)ύ������\Tu�"G���IpH����Ʌuu1�'�7Y�ĉ�:�*��2VUU��
Odn uZ[[������VCa���U���� �
��z=��c��������meI���/� U��Y����@�8p n"999���]�j������:UyJ����]eؤHջiӦy=)`iЙ\�l�؞={l����^�	�֧�֘���j�%,Z0�Lq�H�&��Fg�Z�q��r�➦��pa-���*�޽��UYY�~�zg�`������F��]4u����v!���:;;����۶m[����:��;�s�1Q�^�.S�{�4��=�yQ����d D}'��u��++..���KQ���T���� R�we��J���+{\�|���������uf��S}ml��D�N(*�@���q�Og���T���~Z�d� �i�;
�Q�R�*�N�
X�Q�j�{챌��%��� i��V���2����T�������PmS��-X{y����۵��l��"a��#'AD�������f���H�e�ȩ��X]]���0W�Eg�XUUU�u���U�淪����93q�t���kpl���@s�����Β3�/F4�2(#�,ę.���\��R�SHu/����fڨ^��I<T���ۆ� ����C~�/4Jז�KJ��ZeԱW�D�Fd"6�^'2�͂n�E�VVV�j���b�ކ��ST�X��Tg|���|��K�©��u��lU�2++˞i�R�W��Z�����b5�#+���.1��Ũ�l��z���Ȉ����Z�k׮�q�6�җ��e���F{����o��޽{�Y��ڴiS��њ5k���m5���U���bO���W=j�Ӿ���R�g�#
 �3����_*?�XmsjjJ5�%��k�E$�%2n��Y���.76�${���@��Z�LU��6�&{��t��v,��!\D�(`�X[[[Քloo�e��U�ݭ����e�:�_�\`\�	U�ccc�/��,�e��Z�;��=2ҙ,��%u0tq즽����B	����oC���cǿ|�Xvv�Ӌ�a&e���#�ҿ���v������������a�g^^�*��8�Vp)�����
_U������A�
˝��p��Ku�i[[������Ga�+M��CMMMnn�=��BI��?66611a����


RMPZmq��tww����v�ڥe݉�����/��p��ws�^�[��껱{�n'�UVVc��;��H�=LS���۫�422�t�R�>������MOO_��ɞ��Ŀ���7oޜ\0�
.{����"u����Y-))I.֦bxx�n���]�
����+!����ΜǤW��[��{��>�����g��-644���;oj�/o�L�t��_�W�\]Lk�gRd�������c�UZ������[yyy��?FUVV�<L���}||<�_���ʼnI�w)��jkk���p�zw<b@*����s���6o�<��?:Tj9�	����N'.���`������$S"��O�Q��To�$���m{e���+
!��Fiiiaa����I�q?M�W�+�OetRuu�V|����5�H}�����^zɞ��,�w``@G�Ȕ��ڵkkjj�W=':��D�k+:Y���S�?Ut����o˽%N��ٳgpp��7nL�N��=��RJJ]A�!�a������a'&5�G�%N�ѥ�t&��/�,H�N%۾}��*mT����ˮ��.+�U�T���q��FRu�k�.��VH��M�&��s%�ܕ���
ةZQ��m�"�.��{�:� �J�
���ڔ���6�Q/�hY��D�tvv�y��v5��C+Ϲ��uuu�������ݻ�����VN,�SSSjķ��Z즧�'33sÆ
K|m�������<�P=����#��3����P۫�_�RWA�XZZ�������k--��E�wl{�mٲ%�4eU�֙Ƣ�jjj�ư���Y[[�l����Ν;��rhϋT���_��_��4}r�u%��DAAAFF��ȝ������a��شu��%�"5Ħ���UO���Cb쥍�Z3Q��3WUC�}7�z��ݭ"���kӦM�A�Q�Tk[m⌨R�U���.Vmٜt��sB�('���ю��T���6<����QTg�#��*��lP�����Am�
B�iK�yc7-T��+
!���Z��w�ϵ�Ƽ��&���j�[@���(77W�����ڸv��k_�<눓��mmm�kgg�z���ʌ��uD�q��]PP���Prǿ�S9�{C^�ݼy��m�KCC��Ąz>��:#[P�V�W�E��L�����d��Z�~�{���訅�l�!����-q���K/ž]oC�]&�dÆ
�v�r��z_&�)X��bR�\���Y��e��u��U�k�K�хb0��n<�
+s�"��O�޸q�ƨ�RU��2�;��n``�j�����G===z_��*eǭ�Y�Y��_*��fFivuuYy5;q���������v5�+��vH��gG��Ūr��N��O��;��+������
�S�ھj^;�k��Z]]�����ظ(S,<��pKK���P�yxx�:�={�F��u뒋�-��������QH�t��+���l���ܬ�i�]�[źa'[RR��
�!(�W����yV�~'��F�;��i_��'?z�"���@����"_��(6��8'b��X���1�Q@�T���V��q׽�^sm�����8��e��ɜ`�;������B�����ݍP�]SS��V:;;�3F"�T�nuHd"6Wg�f��А�n����3b�Z����������γ������v�Z�M���P/[�V-������r}<lQ��dՆ���P�i��q

JKKu�Ƞϼ���5tG�b͚5�6m҉أ��q(������+++�f�'�����Lkk���cJ"�Qw�Ylٲ�;ddd�g�y弪�*�U�b�9t��*��8::��M���m,a5��+)Us*���R���Ry[[[���b7$�s�U�#ՏCCCJ�}CK�Uggg�V�\��MG�'�D&b��V"��c��*))Q��?D��*�g�8M���"���S)��?�#s��ba�7|���6�|�����_/l�`���U/���<�;��[�fm�Vm��dW�M���jG�Y@�&&&,�`�۸[�ڲ6�Aǵ�z �/���z3,X��,v��m�D���9�J�b+:�y��ӱ�ĝ�)K�8�QTv�κ-�5W$�O����[��Bb��s�΁�m�m۶D&�(}g2��o��Ɋ.�m�?��Q�/��\��JG�/�3�L��*�'��H)�N*�Tͷ����vOQT��H��v����Q�*�#W<fE���&$���)f�N҉8��gtt���E���X���68|0$r8��;9uqI��?��C�lr�Y�3�_j���ڝܬX��P�.�[�f�dz�;jq���
�z��P�B�8������Ҏ�H��I���|�HT��F�v�R,֪֨M|˼��ȏ2C��1�8�\���
Y��I:c�xp��$����؊*�7�W�#��[�I9�k�J��Xj�%��E��m!N_h�mԜĮ��U%-JMa{NH{{{ ((((**��
ܯV���q�DS\\�(�|�o�Oue�3`���!0`�y��%�744de��8���BE�	� ����-��1Klhh(.�|�%���VZZ:55u���f����bff&777##������/�srr�����ʎ��着֭[�em.�B���ѣ��S����s���%��1
������� �Dz���HKcXVB`�<&''	�aY�[W^^�u��B�GVVVQQ�K��u��B�Gn���~�q���q���q���q���q���q���q���q���q���q���q���q���q���q���q���q���q���q���q���q���q���q���q���q���q���q���q���q���q���q���q���q���q���q���q���q���q���q���q���q���q���q���q���q���q���q���q���q���q���q���q���q���q���q���q���q���q���q���q���q���q���q���q���q���q���q���q���q���q���q���q���q���q���q���q���q���q���q���q���q���q���q���q���q���q���q���q���q���q���q���q���q���q���q���q���q���q���q���q���q���q���q���q���q���q���q���q���q���q���q���q���q���q���q���q���q���q���q���q���q\�%�˅�!_I-nt ��+��
�(��k�yK"3ɥ��_'�뿐�x�{%��\���)|�!0�(�/̷��tG1�����'�-AP ���b����T��Rt:��Q�.��Xnx;K��m�߿��#��@�|��Z�{�)�-z�~^;���w�e�M�4а4Q��N�)����B�\�'��S[��7���Hf��\�%~�<���g��E����U��=v�qw�I�y/B`��iO��h�m�=���.K?v�R^�/F�G�����r�%��KV�`�F�f�$��K���.��x�������S$��"&�~?��J�]`�R�W^�bK��E�7�Bm��\��Gl��Wm���]�[ӾT��_�1�K6�߷L��WTRw
�T���=ZNsYڑ��x]��.���<,���}�E�.n�wq�(���H>�d�RXɧ@�<`��������Ͽ�
R��B�'�.Mo�KGY�(@�#�M�U������v<R�r��K�aKu�z!�,����*2����VB���/8����������.G�c�S7&	VX���J��nl�J� ��.{
K6+�ʴzC`��:�r�yi��.${K��B���
O-u=<`���������i\x!0x!0x!0x!0x!0x!0x!0x!0x!0x!0x!0x!0x!0x!0x!0x!0x!0x!0x!0x!0x!0x!0x!0x!0x!0x!0x\��� ��d�����懰�^��T#�G}RCx�߿�(VX�HD!0@��x��	lVyՙpU�H��b����7����V���b����`!��[��j���V���5�� Q0XB`����E�|=x�Bsj��0ۂ@$��v���	��?(�0�G�]!��Ua����0��@����(���x�2�R����3�XQ0X,��`57��lp'�(O��c�#`u�G��,4�c��b,F��R����1�a�c|
��g�Չ~���3,#6W �($���v����D����{�a/�c�U"f$k�fN}ꎅ�����5�7�5�3��9Vď�
T�:k��}?1-HB`��,d�W�����Ӿ`�UpVt,r�#�bh�0g8�\Q��3"-
�f!0X�bĿ	~9�̰.`Uק�ߟ��J�D�‚\��
���Ǟ�I������:�ֆ�ݔ�+�5�5��`�Y�#�O�͋t�ʹ`x,�	{�a�G�Xb#�ڰ��k��W԰/�w�ʈw��*��p��a�hZD���ci0X,��`�ݣF�bN~�F�
x�?�n����9oؠ���i��Q0_�uĘ	�@V�`D�9����_3���"j(,����"�������#��+�W,�Y,,��rO���=�1,
�\H���ݒ��׹_ϊE����*���2ڛaa.�����g���rOu���3"`A���l��=2�Ǚ��/�#_�fG�8Q0��g�n~����z���0����g[,�1�q�C2�B�jFǜ�x$��:�iX�+F�+��8�Q���pW��pؑXX�@�M���^�I#�B�WsMr�Ō9#�†}�~�{����Pڡ�-�y��6�p�+xh
�-Չ�C�"}�ǎZ#?���k9�����EV���F����_Yiiq�?Ǚ�8k�H";�R����)������3,�yRddMu ���D��n%G���>4�14�#^{��`��"���#\ά��c�����(ج���^ �4.�1��9���� �HaEl����=��m�6 A�����A�,_mv�)�^{v3`^��*onG�n;���  u���+�����1�����^�?�1|���/������g�y
������`�U6Wb �����½���#����	E���:�_d�Lu�!�S��,Q�;�)�Կ����כ�s6����	�<HR\_��a�]����eC�
����osϞ9k
d�ͨ���E����+߰ʚ���@��QDN���
@��\l�
�����
�BV�$�q����fR[M�}>w�+�T"��0'B`��[۳��3�(�_?t��@�j�Cu��(��GC�US��ަv�g!|�mߑ�x�\7RU5�雽
~آ�s������r#�)F0��k�E�=r�7ò���6�͞��X&�B`�jڱZ��b�Y�̅ %�rh£��
��+�x��T#�$B�4㛽�k]��Mj�_���~�)t-v�MV����e�Z�z��s4�}���ڪ� �չ�#�	��� ����M��P'�\��+Fpda��<�Z�`)D]�Y��� 9���v���^��k2@*�bߑ��Wp�_T��B`������Pk�т �� �l-� 5/�!0X��oǘ	RUSGT��jg@������A��,_��u3$���Vu0^���z;�:p!0X��i�P���A�m��"����*� �/�N��j�G{3�?�	��X�����.���#�b��$�(��!0x!0@�����<�<�<�<�<�<�<.�K�E788���WVV�s�9999\���`���\��/���)��r��ˋ��H����.Xv������a\
��-.]FF������k.X��	��CCC���������}}}�������YTTd�&&&��`�m�����饥�I��R����-�ʌr��������֬Y�\~�d8���@�";;���X/r���2�w�^B';22������)�:�r�W,=B`�������??�쳏=��~

�U����ߺu��_��׾���x�+���z��}�s�@`!!0���n�W�����|��G�~�����`��.,//?��N?��W��


�������?��#J���I�¢{J�����O>��3O=��m۶��'''�x�	]��|��ݽ���b999��͗_~yff�2�4O8�Crss�r�%�Wce^;��td�P+�y�iz�~����/��w�M���?���v��yp�C?���N���Y������e
G�`D�<XDyC/f�z�|�Ep&�E���P�[��ff�3�G���������~���>��ݝ�������γ��33�@����-oy�>���t�����}j5-dY+bÆ
��w_aaa"��pw�u�w��ݧ�~Z�T�ute��U�s��-�?���/���K.���E���#��p�
�����333�4�
tѦ�����.���|gEEE"��ӟ�t��7?��C����U�*`�u�Q�'�x��_|������.$�x�������X�߃~,��A{�v��J;T|�Ҏ����gt���+X��p���v���?gW{��c�ᶽ�ߺjܙ�/U���"�[��]}�Y%�}��	+m"��s�\�烡�|=�;r�J;r�#�'y�+�s�#Q!_��.`�e$������˶�/}�K?�����׬Y���nQ���)g,��t"5��N8�_��+_�JwR<�>�'6==�7�~lz�khh���{����������}������v��C+:��,�:>>��\p�v����S��7�y�
7�h]
�o⬝ji�6ֱN;����'�tR��*��n�M)���*�v������Z9���E��m|�9�\{�555|]A�@�X�C`L����O~�կrrr��򦧧����LEEEmmmAAAfffoooWWWww���dFFFVV��|��?��O�|��7n���s����2n�bL����B��M�t�����k~�dgg���N�{�۷o���*,,looonnޱc�Œtjw�u����u�]5
�����򗿬\)M]���	my��'WWW����"���vtt<��3ʧ���?~�Wh�W��Q����q�W_}�r��l�����^RReee'�xb[[��(ʡE��󇇇��Ƙ	�!0�5SSS_����_�"�gy�k_{�����%%%��ٶL��ٳ��n{��'�@FFF^^޳�>{�-�\}�Ց������g>����q�Y?�яn��FKG?/��Ҹs宻���;mD���Dee���߽�mo���w����{��n�ᆝ;wZ`���뮽���@�N�k_����>�Q:o�ە��͛� ������;���~�;m���W%�w���"��C+YK�&9���/�{޳}�����}�C�����պ�ڸ������{�Q⽽�J��o~s"c���\�&#��}occ�#�<����}�����sN�:�eee�y�qǽ�5���x�5����L�~�}����\ަOs�1[�n������g�}vrr277wtt���Oի^w�����n�ijj*;;[������Ԏaf�Ӛ���/���3���h!�������'��vڥ�^��xhh�[�Voo�����VR���g/��2��{3��k��q�I'}���җ��7���}��[n�����"c���w���mX���?�ӿ�˿؅mjjr�]ӕ/--mhh8�S�=�ܧ�z�;����9������.���o�����o~�駟~�
7\t�E1��XXXx�嗿�mo�E��������y晨;�������'�Tj8;���-6�C=�����̙�����~�g�yf�㫪����SO=զs����z��mv����Ά�MMM�����?��^h��*��}�{/��R�f---O<�-�5>>��׿��+�p�ѽb����+//�կ~������|�+���|W�� �������w��e˖��Y��MozSaa�
����9p�@�k�G5<<����L?mi����7��
q�����?���k�֭oy�[9���}:������E���|��G'&&laڢ��K.�$F��h�w��ݥ�������{¶�����
�;"�����Z�~�B��	0/4;�gUTT$���͛

l�������wF{��	�DBcO?���os�s�=w���q����1_���


QW�m۶��|{�v��O�|:�߳g�=�Qg�aÆ�\�v���v���N���˽�.�E�tD]꺺:�r`�"pPnn��G����IOO��***�:묳�>��s�y��^W\\;�@ ��`ppЂG���.�1�ѡ]왉ʀ2S__��^���_]]m�;��SO����Gz����>��������SVV�ت�����eY����a�oX�X� ��*--uB`'�p��7��lw��ݻy䑌��
-�y�y�mڴ)��YF�j�����zzz̼�����,??::�gϞ�����pZZZ__�>u���@gg�]�Ԏ{��uo�K�t��Ɣ���У�>��7�9��X�8�����MOO�i}�UZZZ�KܑY?��;::222���JKK/��BgFdl����dL_h�����Dvܿ�
:�܎���ر��|ee����,�۷� [[[ۋ/�h�<�<99���'�nٲ���ܦ�����u�]7�t���ǯ@��*��氐U�r��|CCCw�}�:]���[�n=�䓓Kj�����{�?drr��3�<��S�7''g���6�p͚5�?���?w����[o�5X�˞����t����v�)�آ�:����_���qӜ���qF�پ�D�6eeeo|�m�����/�}�{߯~�+����`�����{�Ѽ���B�0_��|w�u��~������u�Y����7��ͮ]�������sss/��y�
<��3���������---1�ז��r���oõ�=22�zꩧڳ}��
7������/~�[o�՝s�4'''ݛ��]�:�S�Xe{衇�������u�ѝ7�M%�t��ø>�����|&��Ʒ�ww���w�M{�DW�~�qR�I����h���֜��J���wr3��Ҙ�z��?��ύ��ddd����t�I���g���H����ꫯ���NOO۷o��G?����x
����>��Ν;333�����g�y���H�ͦ���|���?����u,g-|5�&&&�=��.���,,,��o�4������\�UWW����T"�����կ~U$b��l]�7���+��O8�;v455���[Ԭ��񩧞R������ʘ��0 R`zfbjFu�?ԧҏ��+{}x�?��W>������/;z+l�*�TV��|d3�����'&�GBG���U�^�����?;�����űO���@����D��O��q�o�ᡛٟ;����v�(��哲�j�ӟ���������쩩����~����ɥv��رÉ�\v�e����J!//����inn���Y�f��?���O��կ>��S+**JJJ���:::v���_����%++K;n޼yzzz߾}l�%�5�22.����{������쪫�������g�d�I������������K�eff������hϞ=�B���N���7�|�w�q�=��ڵˢl�i��sy�7�r�-:�+_��s�=��3�,((� ������B�;*�zzzܱ0H!0�z=���W^yeccc^^���Tzz�~=�쳓Kmxx�G?���Y�fM ؼy��^��$�پ}���~�#�������~��^_(F6��fee�X���:�5�\��|��_����a�$jkk���/���;l����?���O>��6���կ�lG'͊������mH�6SN������ꪫ.��ҟ���w�uמ={lT��l�~mnn�Gw�}�i��v��_t�E:_Ba2C���X8��`�z�箸⊝;wZ�K.���w���IO���o�4-Z4==}��g�_�>����7�x�g*���!�������UV-��6mS�j�o|����PH�|��ە�[�V�-��R���QR6�K/t���񉉉���e��_���7�A[����S�Zmذ�C����~�w��I'�d��YpM?�k~~��塇��'>q�UW����=O��(V���c���ݻm�����{��O|�I�K������~600PXX8>>�nݺ��ۿ]H�8�m۶���?��{���Ve�"\�Z�v�)���׼�.���?p��ؘ޷!`aӈ̖-[��կ>��CJ����jnn�����W�Rb'�t�}��WVVꝾ�>�H?

"#kajB^��W]r�%�~��u����7m���������)o6��{�^ww���_��G�:�?���?��{������������sss�Nsǎ����홒6l�֭�gqq�;��/����������u``@�-���^�~�3f����bL�Ф!m5�5k֜w�y�������٩���2\VVV�n�:g����1�Z�V�URR7v��ʘRV>���/�����y�:nF�N���[���
���F�.?��UW]��ؘ��?99������ă;����~�ASVPP�7�7�������!�7;p�@KKKff��̌vپ}{�����7��Ns߾}===�X'���֭K|9j;f���u�����z�[�z�u��y�k֬�w�u������Z�� �X�"��{�G>���Ɯ�[K�.0�%�v�����~����Yg��m۶�<�`0�s����Q�UXX�(رcGgggZZ���tyyy�i:ᰆ�����]t���/�knn޽{7�L�j���j��_���+�lmm��Ξ����O|��������'J6##cff&//��/\Ȝ�$����W���̔��[����,0����Gydhh(==}zz���jQ�j6�Si��f�`p���|9@�1�
?���>��������NLL���|�����Dž�B������Z0k||���O?��3���}��;v،E���7�q�q�g�y�T:��Ϋ��jQr[]]]YY���n���	�2���B��XU��~�ӟ�����z{{���-���O�]�zע���>�쳹��:�ҿ袋>k^������o�虙����'�x�Yg�eώL��А�����yMMM���L���_ͷ5>>������@��@wwwkk�ݢ�/핕�UWWWZZJ�
_w�q���?��OZ�k||�����k�y�{��<Kq!�����ϺSSS�7o�袋�h��z/n===W_}����g�g�����K.����f!i�*}�k_{�l(���ą^��Km��O}���^�+}�l!���e��c��[
�S�URR����Jdf�TS�����<�@�����+�����333UF/�6`�Q���o���k���׬Y399YUUe˱/�!~����ر#++�
���mo+--���O<q�m����644��?���^���m��Ɣ�����ݻ����x@!���λ����%X�#o����_��C:==}ttt۶m���#G���������{��.;�3,��\]�������ӛ��	'��~�z���8��� T��ڵKU�|{I���uuu�28�[Am�6�JHjٯIgggww�N$??���xi��Q����FO�zP"j�/�Dԅ�D�,�2��C;�A/�Y��H����.�~f�pK
�©Wp��7�+_�!������}�3�8p�@"Š���������ƾ���+�������
6�������/����|D?m��g�}���֮]�ަ����+��������9�Ճ�ԽQ�������?lmm�G*i�m��O}���l�r�5״��_z��w\II�{�0�����'����ە7��:���qm��OZ)��688x�m�
(�{�G�y�+^�7�i۶m��������e��:�.��CFGG���}���	�تjjj������3[T��u��6B`+�J�����9��J1��N���[ML�P��q�ƣ=
�wI�����А�iq{_���!�o��^�~�/�,Qi7j


ԑ��}��B�Q-h�0_h�K}
m�t"I)�:���>�NZ��{,	���3t���RP�P�p�ˮ�p###v��ϭ��p�.$njjꦛn���,���HeKvv����;�3��*�*++����������o��?��j��s�U�7�_��{��U��f�ر㩧�
�=���L�2|��'������j�3<<��򗿨���Ȱ����ƶnݪ�FNWt���:����{���N���UI��mzzZi��gԊP�t�li]����*j\O�*3�L��6��<��Cj�w�q:]�*�u�/|�����@oo��l�/��{����?��+$���B-vU*��^Żj�%^�X9��*���5@

�����ҢF�/��Q������٩Kg}��N���j���䨷#@�΀�j���Ȯ��А��o�75���YU�E���#���z2:��sjt��.EX:ʿ���������&ld�u���i+D����Ǿ���]yV]��֦�UWW3(�|�P��~����rf``�'�H�VUqc�+}�_�B�*Uꇼ�MoJ�����VYgdd(c�
T*�ʀ�j!<��C�.v���Hvc�r���;8)���O���ٝ�ٜ�]X�dPsVNO}M穘�<τ�=�;ә���1��NQ@I�A���<a'w���4���0�KX���g�驮z���~��z��c�}�G��:���onn�<��_~�%,O�)O�.JL�>�6gΜ3fD̐�)�>���}�]RsƩB
Z�l���[�e�*Y�T:U��_q�w�q�~| ��
�d\0[r�/�4��fz
�����W��:ыlmmmAAA2a���a�b����ӻ;�?�<E:d
��S&[`RVVFFNFFF�|:::JJJ��ٵ�@bQT����(���VzD
4h�L�̫��يKV�,[�H�t�����j�j�\��أ���*4wL�P·����	U���p�s�]uE��S/��iL������C��D+t�$�-K�b�+�	�֭���/)Dc�q�7nܸXr>��c�ϟO�A��hf��m6	O�-[�(�*0���3��#�9看.�(---J�!�����Y�4��TT�O?���/�<�Izz��9sN=���X����T
4�<t�i�Fx�^/�L3f̥�^z�b�/���l2���(� ��6 X	�d��s����Ғ���]���655���-�-�����`��LLLdzB�#��%lj1�6�𨮮���kz��������B���JY�����Ș�bi�kyy�СCcYY���*�h��G�%$$��̬���� �٬.�d��dD3������@_���,��`��H��M��t@�8P6鹛���̍��J���Vy�$�O�4Fb��DEPq�(���t@E477�'�a���na�㑖p��+/
V_}���4��1}^v�e1�5}����'���Mr$�-����^����������p����I��رc�>��iӦ��3�x�J�|��իWӀ/�S�R�Q�F�?��N���^%5�	!6n��o��[�n�ڵ������*@b�hOO�8q�ԩYYY��{��Z���O/�4�FLC�1��� ch�+�Iݺ@�WV��P�������qp�*t�
ERqt���"���R:`���w}�9��mw
�^ICi�]/�/�Ց�>�n��t:�G�e���Pe{B����sv���:���e@�(--���:t�O�%U�������ABBBvv6}vV���)//������7����MMMeee�	E�)���F�l6�g��'�u���֊�
ʙ~999��<��M�"k�IH���d�u!�v�g�JNNSi��@�`�S���̮�g0%f)�
F�U�C��r1�~#7S��jd�1���>�ty+u����������,VI����rBȎ�3�&�F�����f�Q��᧦�F��V���铆�؟S4^��_�5_|��?�p�������iH�8��4�ӘIR���̢�,#�6�󋲥j�XcYYY��U��3��	L9�[���g�������ӳ�Ŕ��d:��'@�X7�694��l���g�ͪ���]�R?��U����xE��#�}O�HK���O4𦧧�o}�:�3t��rhp{�N��Ί�yn����w{�N� ��]M+:��0���I�/��N��Ѧ�l*��H�:-�:�JT�&s�{��㺑��~��=^!U��H
S#f��Ehp��]zٍ��wb�oވ������Z-)|��]�EOY�u�֭�fO�8�����l	9�|nnnWOez����oٲ���&�GQ/ݔd������999]-$*I��(�ؖ,�O���EU��F�I�%EEE۷ogs����X_Qz )��J�4d�u�s��$!iYx���zJ����G���!
4�����KKK�97iҤ�l"D�����!h���j��SB�?�̟?����ӧOOLLD���T"���2L:�Ć}h	���.uuu��_Ji���1f.�"���xA`��k��dJHH�^(��l�F����d�R>t�%��ʊ�a1M�v��U"�k�Xb�#�2�H"1���(���M=
Y ���---T���W��X��R]�?�SM)+抢*엨m$����!+))�ڈ-�R���AI�l�Z]��T�X��UUUL���Q&�uu<�씄���)铞֕�����v��Qd�È��2�h@...?~|��#[��������"���{�T�}k{�=p��9���DA��ohh�"="���)�h4,�T��~����������1���ĖWt5%�n����Pq4�feeQq���mmm,�Z��Wq���8�P&6
ʔU�Ќlv��餢�FZa��0�!�&�?�w��$G͏�Ғ̫v6>�]K.:L~�L~j�}z�{PS�nF�@��	�����Pz�fp���[�n��5bĈ��sX ��zUfK(䁗��f�;�	���ܛ"
Oz�����������$����)c�����.���j�������1;�\Z�cРA�`r ^�ZMY����F�����ʖ�U����&�ݞ��o�Z��)Us�ΝaQ]�r�^/U��Tx��`�q�ڽ��Ry�i����([�
���L���f�)�%/K4��ǨrY��t!i�[��(m!6p���,6�������9W�^M�
�S�N��o5�Ԧ�#���!.�}B/�iiil/�1}AAA||<6�`�1�A233��ژ�_SSS\\e̪��e�x�5:##��G��*��ؒ=B�ղ��N���P�\<6����*l����m�(5g;������ر�m�ȞXf��Fa*����Tl�?�I"e�\�'�E��dl—�h�w*����*���L��2u��PeI9l� )-�c�ZY�~�dEEE��t-=�X{��A��D�f�m���B���R��Q-H��r�����CR?��W)�_v����=l�8�ihhظq#�oYYY�'O�մX,�\rISSSNN�>��Q�woz��C������`!D���i(�jqG ��lu��m6[kkkW���W�]�KX��(�[�Vi@���HII	��%�"��VWW��V�3
�Q���y��F#�ΆW�3��ٹs��ⲳ�SSS�i�~]]��-���S�
D����QY�IL>�����$W��*���T���%����:�$s�Qݓ��X[P��ر�4/?oHWd�P5��T�&���+��I��E+��A`S�b�]NUcs�X��nA�J���+�
 R�-�jD4@?��#G���ϟ2eJ?Oo/7�|3��{rC�c�����``s��!�PX�}klii��lt\SS����y�E�~b����|$�<O/��q�):���N�UUU1w	��u���^XXqlmkkknnf�/��4hР��҅yyy:����.###J *�ڀ:oeB����b1ڳ���cs�\���ZUȩg4;I�l�G��������	؍�iJJJ���~�ʥ6e�M�E���(�J1nTϢα��=�I�
�Գ��F��utt���+c�Qq����>�СC�z�)U�O0N`����-�:>>��؁6�˒�
�찕���6�s�\


�5,MSS%P��HYYY1>��!55�����B���[j4���܈��l�������j�w"###)))Jdt��j�F�=0;;�f�	��
�x�/;-2Heee~��M��"�IJ(,,,//g�F�B��Y�~��T������I*ygfff�<;�+�0[�)�L�݂�X���e�Νmmm��F#��mXI�I�dn;J/b�,0@?�zp���z��=�
�,f�955������OLLTY�z����
��^�f�(=8�E���ʧƶ�%�)Ud�Cp�I**+�W�Es:�Ll*t�M��JKK)[V���̮�R���e�,��2x'}e+%srr���t/�B+**�x�
��Dž�ك"z u	�S����ö�LJJ"����eO"�s���.�>Mfff{{����aq��D-9
~��lA�8�B^��SX�(�7��-���@',�X�4�"��b���Xf�gJJJNNND���,))��b�&�^���LMC"���l#���V9�f�Q⢢����$sUUUcc#��������3��t)��陫�Ԙ��k0jkkI���-�di�Z-�Fz�(-#0&�4,~|ii)ۢ����j��B���&�2�
��c��:{����}z�(M��Qr'��Ko��g5�.��^*��TRR"�JKK��Ϗ�������k�%��Ȉ(-�ohh���������|ذa(
�\QQ��	���Fle�b\f�tT�f�]jjjbb�-)��F�P��X,��-��WA�O�s�X_�j�677���X\|�FS[[�&X%%%u�.�+����1�;6��-ߋ�sUDq���D,Y���2�g?.�s��%%%�B���t��@���:�C��u5S��";;�ڮ����S)MMMYYY��ې������m�Uci�ZY��w��#O���JO	Ar�>ӹ�0�b�Lr���#����r566�t:��Z���m�Hsssee���j����u�.Ɂ��I�H�,[ky鼣�������G������Q&� V���,cdee�����M�7r?#�����������(�J�^O��Y{T�X�p��,�Z�Ű݂����d;B�vo�㞕����q�٧jw�}n�D��z�~M�����wي�u���� *��v�����������222������՗̗��N��dl�I�ܿ.�@ PZZ����f�Y,��/Uh��``.0��E�ӓ�,֑�f��9�����@@T�Ã��,���V�1W��h�n|���z�qzzzBB��&�	;̿��Ҳ_��hǎ;d�Wvv�>�_��S�b��&��������e�Z���3
�|bb"k)�!�����ll!mRR��OOR544�ΣV�����e�B�Z�6++Kv��BN��� ��Y����������9V�v{ccc��Th[[ۡu�9���՞����ƸΔ��$����, ��X,6��q�w�<I���v�JNN.,,�1r��j�������'JK���4�T]][�K5JLL<�3��W�;lHNNNHHC�A\���Xp����׳9>��rHOO�j��]RSS���1%ը��j���%%%Q;���v*�y�����أ�[,�;IՌQ��Re�d1JO�*���uuu���6��[�䥥�t�����RTT��,�^��3	����
=���/�N��2���EHR�S^d����U�zb�6�񟝝ͦ�����`�`��t�A�����R___WW��d�����ʪ��bA�JJJRRR���I& p�\���6���477k4�����������2������%''ˋF#���������ȖR�ر�ꘔ�6M��H�l��(��V�UN@gX{Uh����b�6��Pҭ��d�/jVR;�E~M��.�n�S&�m۶��L��G&�G�S#����'EYQg�.a6�I9ȝ�磲H�W��iyyy�+�>�#��'���
�f��5������r��}>ߎ;M&�N���v��vw�k�/2gddPY�����q�Z[[�F�Z���T
�[���3�����Y�����4�3��BD_�I�80!!A������z�&�T#R2Ք�I�Ւ�)s�)%`�G�2P:��W�m�I	HQ����G�b�S>۷oߧ��4ʙn�"�+�Z�ZHH�F�3o}�I>�r�X�^���B��|d�v���,&??Q����3����V����^����AEA����R�����5MUU�~�Q��������08�Q�n�Z)ew����Z��%�>���V��_�Fcqq�Ν;���آN�Ǒ+ˎ����"[1�Ru��O��&�gb��C�<����hoog��B)�T������tR),O6�Q��)Ee���MW�\`}�R:D>l�Rbbb]]����Uj��d2��������׋�(�nz)*
f�Xm6��%�94��l�Z������>�*�7:�}$~��0p���[��5�t:]\\U699�se�.��4̹֭u���z�������������Cn)��9I{�Tٜ����6��Ŝqʂ�Z-%H!{'���2a�+�Y9YC�����}�x�)�
�BdT�����g��]�{N)s۝B�W�PZQ����Z����f��Fӛ�e��9�x�7�LQ���RJJ�ֵ�t:9D[��
-���a�_��F��[���z:��-<�B���Et�I���e�H$J�,*V��ƴ"���eu$�M�2OJ��M�n�j��H3Æ
��'P��U�,ʜ;��$�L�a=�$�*�b_Vl]Q)��mG��.A�!���B�4zK�!r�	:ww�.�P
)�+'��t&٤ը��
��q��W�g,z�u�Hb��m�]�;T�⯇\Ȭ�k�uvg���������(���?s���wB����]/�����Y�
s�p
AY:����^��q�(eS)D
+U
	ZW��SM����u#g�)�<��{�B����F��+�ӿ#1�Ϩ#��w�ӆ���讓谐O��o�7�g�E�l�`��,d� )�]b���V�D�x���B�8�X˜���p��v���4j^vr����]��>\`{LսLV8�>M����������C��[��X,�p����>]`�`���L��@�>�ܞ�#���CЫ�(�:�.�� @�@�����a8�p�?��#
���C�l6A�},V8p�L��]�b����x;{���\`�DQ���Z���
m9H�����3�"�u����r{)Cd�
\`�x���χ��otC����9p��~���HE����;KJ���IG��X,����Z���t`5�8���\`8B���m�y�UY��3f�q����Z����m�o��?���Rs\ˆ�G=p�e�4%�>��I���ۣ⸈	8���:�����Do}C��j4V�T�(}�	i����U��GM?��$�qju�
��������7:���K��WmR��h�g+�������eu�)���X�\.oC����&X��i�N�Q�^_sK��I�>-��Wz�?���Gp�˟{��ו�.<\�V�6t����̄�C�&M�&&��D�Gp�8�Z%J�}�@������$q\(�+ω�D_�0��[�?�t��T�Iy�~�ͳ���B���ou_~e۰�YQ�9��g.�K=2}����&p|䐵b ��7u��r��{[�L��������w%'ɳ�j>_$	���/��z���#���WUU��M�.�
q� 	"��Z-�
\��ԓg�
��h��Θ>žm����y.u�1�c��z�<��_W��wrjޘ��:m*��*a�m�6_����JIm�6�6{�::�^{����Uu�^�k5j]�
��۶qk��u՟}�?뼂�IH�V��>[����&���3ٷloY��e���ݘy޹Kl[�b��x��r�N�����
���>�]!q6L����+�q�Z�s�Z�-�=��j����ڳ^�F����
��7ꓓ3�:Ӑ����2m�(���Ť�ԩ'X���B�8AT��k!95�fWQ�
��Ӹ�6[���|���k��BM)���+'�i�pFC��.yi��f+��_������w(�u���7��ڶn�\�aG�Β�_�6�<dpX����s��;;��Ɓ�^m7wpd���OK�/�k�C���ih�;���W�9�^���?�
���g�4qqY͢��r8.i�$��d�Y�ҦN::8���yo[�s�� vٰ�T�����StAW�ϯR�	Ņ���y�o߼ձ�\��j����䂛o�wG:\������
�)C����t�:�m|��G�t�(�[�y�"^M��o�վ�7N�2N;)�ܳq{G,p��o!�)G�rϝ���C��� z�����O>���~���hT}Ż�L��2����c2d���l#��8ζf톻�Zm*>rt2���e���k��vԚƬ�7�N�<Y�O9G�+�>�����Wkx��t�;��F&�8�]���,+��'LN�p��mƙ�W��m��5�����Y�-?/+�:�8�h��j�����>���@u�Ґ��0vl��Q���(�F#�\5*��$Irl��ml
�“$�С��,:���6{jj�&Sک�����ʎ�RU(\�֚d=:,��e�oiql��mn8����II�LE�]]"#��έ[]�5���oHgI0
hX�("{�n��[/�|��~��ڤ�����Y^�oj���H�ޚ�IJҥ��r��Ӹ�@?8�J�T"�DK-I���m���z)�%Y���ԙ3�䖜�~کڄ�
w��mj�tڀ�Y����c;Kz��|�À7 _��T���Rm����={x�J��o�W�5W�u�,�H.0�=$IŮ�Kg�Ѻfm�;i-�Z��Q⮮1�d�B�*^�~�R�^'x}�}Hm���ࣚ��q�7zj��F�͜�
���Ï۟y�S�Ǘ:��Q�<ٹD�бuk��������wv�_0l�٤�$$�u��S���à����oj~᪭��R��N�qF�5�\��s���'L�nhv�Ν[z���Bb�G=�eo����i�:�oM]��t�T���3��FCJrҘQ��n6��-{�(F��c����k��7��sNO�>�s2��I9g����W4�ڠo^��]Vfy����@���9u'm���I!TYɿ+����R��$U��'��y�*�.0fp:]��Q;|�%��o]-s��B
6�ʠ$�S]�����?��WIt�$H�Z-ρ��~��r�y���RF��(��j���l��B��z-�+8]�v��|g��\2���k����kmk�nzn�՜ �4���4A����k�ݕՍ?��u����b���F�!�����e���e��;�m�{p�5�MT.UPp{8��U^մ|����c��wp7Fl[��*N:NK���8]�KI�)3+?�Th���Ը-��b.0�ŢKL�6��ݮ�.��nm�Q�dQ�
��7U.�$1~�g�yd8��vh�VMB�$
lj~���
Nn�hTZ��h(�݆�?���`�u�W�D��(�R���<%J�zw<��g^:ܼ��Uh�C^��$I�TSбR��e�>p����׭�x�MK	zd�Z�с�j�Z�9����8^���l�և�54�^q)���p�pZj:P.i�T����훷i���֊<\�o�B�qFޠyNR�I9�͙L��$���Bt{8�Z��$��UZSA�ų�����۷le�uii��ʁ�n������oT��)'�����������v�U��
�f����o�	NgЋ��ר��Q��S�D�K>_°!��|}z�)7W�@I+_����^�����e�e͜n5Ҕ�����m�����m��
%��O�O��xl0F���yۣOض�h-�קOM�;����Su�i*Q�66�}�e�_\nm\\�7�3e����G����}�e��+��fI�)ּ�.H�v�:��
Mg�66�,_Q���̅�S��S8�	8�����kRN��gfh-�._O��L�Y*_ �E����Kc2��G� �7/_�ŗ����vW�󮻦��kR�����.�|�E��m<��qJ�@��c@8��Dѱ�w��՘*IҘL���I���wQ�%4�d��ʱys��T��bj�㵌6��ے�� �`9昴SN��'�~�4꨼?Ί<X�V�Ţ���f���G<x�r�JCnN��і�#����˭�iw~�e��Zƍ�N��m�z^�%�H�@����*e�����ɓ�/�@%Q�O��9;�;EJ"��
����śٶ�Rp֘Ot8U&���]zI��zj�<��m�CF�}GI��?�����e�y5P�_V/�*�F#�;�߽4��F���V_�߃��I���Ժly͗_�ͦ�@ ./�1��$�a��ӊ��WUwt]�ҟ\;k5�8I��	��z�u�İdTh��f?�:y���.��^��^�Sq����OJ�׮��ՙ��()-y�U*B�;��>a��^�̒��|(���Ј*5��=�õ��j�- ���hR�1רB��p��9���}ۓ��|�S�p��S���C�]����QR��ˢ��7�
�}�!?O����R۶�E��<�(����Q��M��a\`�s�M�?H���]Y����Zm�V+���Vg�uFĽ#ŀ`������9�'`��,��ׅfT��SNJ<nBĔ��̜�.Q��()q�Wqj^��SO��U)�̬]􍧾IR���o\.M/�ӫ�fsaA��Ky�N��*�y���c���$U��k����5k�"��$��KO�5/�V���8�>�s�
^"rA�����3�0�[���j���4X�q����Cf��v�?��mk����/8�:m���T/����=M����W��Q��sn���Zq�Gp��o�i�-��l������Q�ܞ��᪩�o+����S���L9������Ç�cw��&�Თ���5��$Y�ϫ�1^��^"��A��	~�+�v�#��vKBpU�$�^���ؤ)��S��ƏS������:S˖��4�f��s�����ls񠄣��ge�����|��s.w�R�����֘u�6�q&���$	�}4��%���ZHQ�
޼�f����#��4)����Ͽ���[RE�!W\N�/���%�?� 7���j�����Ϳ���o4�v�EGx��o��ꎊj��RN1�'8-��TZ�&�
}>U �}ډ����ȓ�xN����`���'���J�E{�>+3�k����%��4wu]����'�`b0��O��J�xv[/��<mj�uWo�%��T��8����]� 	�Z���t2uℜY�'�cX4>��?tF�l�ɨ5�EIRSuE���%z���CDupʘ��u�8�V��Ӹ�m����:�
Mb �3��Z[�_S���G>�O���T�?To�gN��UU|�q�#q�Gp���s�u�
8�'Jb@'�Ɯ���/�>�<mjJWyp��KL�=���^6(=����j�(	b�d�&����~U��:�h�t�)7�v�W�k�Zm�YT<��4��E��?]���OG�sG�9g�3�D�T~�J�{�(H</u�	�6���i�Iuhb���Ap��&S�Ă��oPkw�OI�t�R&�p��𒣴���I>a
�t�[�D��d�yj����y�����eպ@������@�Cm2���T|u��\Th=��q�b��ޣX�N��3\n^����2�cb�V���k4� H~���o�I�lUE�I����z�7^�K?󌔩'�kj=��߷w�WtTTz�[�
�A�
�vǶ'�?d�y�蹙���~�YN����I�1�
�򼹨Hc4���k�%嶕���6
`t��Ѽj�ڠ�!��,#��w��n�W��*)y�1�����Tw���Լ�裕���Y��uM�lQ'�8�H.0�-D!�v�q�n�Q�q�T#N�њ��xN�=��4	���e*N�i�M��8��Ch��U �k��z�%�2f�AV�:>�<d0�FI�@������EU�o�����վq�>]`������G��2z�!-�����u��榥?%M9>����e���Q��$�^�4fT�7T���$�:kb�5W��p��>?A��LO��Rzj�v;\`����c�.�7�8�x�yp1�WT�KOS�!~��lN�x�����|��
����ұa��{�.[.���q���"]���U��+�Ʀ���%%���f�	I��Se4��?t���:�8����j�t���VM\l7Z*Q�
u�.��^�9�}ݺ�O?�h5�@�Ý<n���8J��}��/{�8Ip�,������f5ϫ$I��:��o�=X��z4O�#p����B%��x�K�65i�Q����j���ؓU����	�.�|�?.����ෛo����v��3��/��QK�g�7.�i���]+z���y�v�<�̯�^Y��'�K�m�6�qW��+�:k����okz|DI�Ѩ�L[�M�Eꬖ����e��7,�����~�lM�}��owwTV��ZI����Y���(������H�iS'�]v�rJW\^\M):KJ�Wy[����*�֘��ż�'w� c~^�o�}	no�Zm[���柗%.6dd����~�?_�Mg���m5�-�8�dc^.]�2yR��T}�&���q�_/n]�1��I�mRb�fw���6omY�������>%9e�I�X����xQ�7K�FMqɩOO�Y�*A�446�����$��k���
�ر��?�s_Vi�j��]Y���Ǎ�4��ygii˚���vR�$�*����'O9>J��5k��xKEcfz��k����_�
�&Y��/e�r�:>���[��h�z������\`H;��m�[{*`wj�*�o�ay�w?rz�$��$i
:�^/x��FS|�u�c�e�qq�n������e�F͛L�v[�O�'�A'y�t9gЫ���wUֵ���:mj/x�+*��~_k2pz}���[�n�$Io֘$�����V����2~�W)۳�]�P��B�o2�o㒟�_�g���j�<�Ery��:y���
��r󷵕>�������+.������0��ӷ>2�u�o[x(��M��/���h���I=n�u�$�s��.0�	$ATR ����#��G���[1
��)�^"��]bHI.{u~�-<ǩ4j^�Q�[m'���6�
���s�V^����迓�|����\�u�N��iU��K��BE������ɽ䏱���T���t �5ɫթ�'4�����,��/���v'J��5j*ј��w�9���홸���`A�9&a�$��ġs�6��T}�D5�9�&�UR/�%��Q��.>���ti�]T��j÷?rj>���.<?�����Y�l�������k��F��cXG-��&�ł�8r��N�R��i��z]h��A��8��)�Oh��Z������4I	�s~�&R�)�)���,�Ƶ,[ָ��[�;�8���g�23e�$Ӡ����Y���ܜ:cFӒ%Ϳ��(���<V�m����	Ǥ�81aĈn�N�h��ʊ�n���8 ��rl�Ҿru��5��2��<��Rm4�SS�NI;qz\���V�M�g�Q
\~=��2��SO�V��gͿ��ق��Ps�R&�q���ǩ��mk��,�F����1��]8�Y����孷��]�De�3RS�=��?��p�G�����)����ٳ[��W�]g��.�)
�
�B/g*��R�rw]z�
}�BICH�O)s۝B�W�PZQ���mks8ܑ:��Rp��s"8�b�����$�RH�_9!x<�l�j��G��*��M���6{8CG����|8���&�G	����]�1z�.))��Mp:}�6[k�ݦ�3�S4	�Z�$����t���u8��&&i�Iڄ��b��~_k�*4g��yMR"����n[��t��mmR� �RR����^G*=Pί��K��5��㴉�(�YzoS�w�NoK]�OI1������%��.`�=��j�Pꀯ���� y���,R�:�`|:��'@�X.dS=�#���.c��ؑ��c{�r��v7e_��)}�:�3t��rhp{�N��Ί�yn����w{�Nxq���W��X��,P�9p8����H�~�vʄ�6�dS)DA���LQ����
��)z��FΞS�y��x�T�'")0L�p�\`p����8ҀLu(\`�d@?.0�ρ�s����@?.0�ρ�s����@?.0�ρ�s����@?.0�ρ�s����@?.0�ρ�s����@?.0�ρ�s����@?.0���@�g477�l6�N���j0��Y`�W����s�{�W\qņ
���,0�3$I*++۸qcbb��n�B��ڵkw�ܙ��<~���6��p�Z��>
4l�04��\`�
MMMK�,EQ�����?^��C-��/7
��
!����$-^��������cǎ=ꨣ�|�a�Ν˗/CX��)S����u7�����K������&L(((8�uq��?��Ckk�Z����x���㵯������[SS�M7�s�=&��IN�y�ʕ$9
�Ç9r$�q�W��~�m����[>�o��=�ؙg�yp���Q]]ͤ���>�D�@��'��;w�$Id�z�ӧO�x<mmm�v�����}:��|u8���F2��fs��Tٺ����4JJJ�h��Ñ��꓄<S�RUy�6?eXWW�t:�^/}5��X,T��HK�666�\.C��Qc���t7j���2��F��&����c�>#P��c�����)��������&ꩧ/^��j��������7�t��w�
�`������f���4gΜ�[�����s�Xkk�޻m�6��W_}5F�MMMͣ�>J���|���~����:��c��4n�H�p�B�l��ۆN����?����_gC������N8�'�p͚5w�u
,$ե�^JBҭ���(��' ���^c�����/�������o����$I��ꫯ���>��z�~ s+��>�`�y@d�=��S�9Ed3?��3}����Nۆ
bi����������zѢE�V�Z�lY}}=U�N�t�������iӦ͘1cĈ�r9�����o��\.Uș���G�͜9��O�%Ý;w.X���\�z5saP���>}��!�Y$]A�Z�d�֭[)�M�6љ��RH~~��A����'L�@"�`Z�u0T!�$Ɓ^Bw}GG���,݅��3a��!�
J�t/P�b�����f��_�^�������@�jW���vinn>8=��s�9�W^�!�������f͢�	w
Q���C6Ҽy�����׳�:kܸqt���A��/���Χ��]v�eQ�n�����{�UTT��eee�_}�i dU.Z���f_�
֧�#����ׯ\�2�KN?��j���?���k׮�+Y�۶m#U4���>��c/��������p:���/_z��w�]�L>���Gyd��՝3ٰa��+���2III�x9ۯ����O?]RRf�;�M!��d�8q��W_}��sR-J�`w=� ��CV#5�>ݦ]e��=�d� �A��]����	&|�����1cF�q�$�ܱgΜ������V�{9����۷o���a�F���i(�1z\p�=��ooo������t�q��.0��͛7��G�8!!�k�a�KJJʤI�dؚ5k�n�:r�Ȯ�a��䯭��K�,��+++[�t);6�L�f��k�!S�g��������o޼ya�1:c6����c/�^b��J`�ٞ}�ي���{.//�s�W�ΝK�E��B��ͼcǎ_|�s&��7��;��s�������n7Y�34���O����-���1{����̾#�رc_���q�1��p�
��G�@U~�h�!�K.�Q%����.�?~UU��W��8q"�9��#IҲe���c�=v��򯧜rʫ����֦
�����_�r�����w߱5e�]�p��+�������ׯ///gDž���F��S���tGu���8O��F�˵y�f����=y��d������_V����8p �9))������rժUN��ꫯ�訊�'�|�]�JNN�ֱX,�6m�<�d_~��w�1o޼Γ�>���9s�(�m�Z��		�2�I}��׷�~;u���nt��wߕ�`0����֒�Jy�'��M
�����g�}��h�}�1���O<�݀4��Yl]1s�̓N:�����:yQ> �m����F���q„	��	Gp�8�x�ޅ�_O<�D��c�رd�1�*��袋���;�cǎ�k7n�H��9�(��-b�2�RSS��f�����D�Ofm x�6l���Ƈ~xҤI�d�$�����͓�$$$\���ӟ�V��baAӜN�-[�-[v�Yg�([YY���/�G���ٳ)紴4:������.yQ�|0u��뮻N��Ν;���Ɇ+��$�M7ݔ���2Y�jխ��J�X��?�xʔ)7�x������Ν+�چ�裏}��w�}7s��r�-cƌinn���^x���q�g�A���������F�w:�*s�^O���J�=4����.0�����-[���������+�X,3f�X�n��t�ҝ;w6�s>+W�ܱcG����j�$�������~��'��������������������̬�����}n4I��2���h�ZSRR���rssc\�GV]�կ/���{��f6������9>�瞓�O̝;��SNQڇd=&&&N{�}��g7ndǤ�������$�\t�ET�뮻�dP��/���\���`��U�V�V�-����S�(�Uzz�UW]�}�v�"o����Y���b�!���c��q�T� )�m$J8��ϧ������׊+(�!..n�ر]Mkiiٰa��蓼
4`����dԑ(iiԨQ$RW)[[[)1�O�BtGP+**�=^��n�˩�;�N�����I�]9���t��U��:%f��;����P&��.J��*����Շ�3BP�ľ'`GGǦM����Hf��9rdw�%I���i�!y��>x�`X�;m��~���ԯl6]H�D�`Ȑ!1.�#1h�����H�L�2c�HH�2wvv�QG%��T�o�����Lg�{SsӘ�
M�"�R���O� }v}�7��V�^�p8H�ڎ	�Y3��4�� L��mH
M�C^^��	)
����v���|-�ߺu+�觴�G��.ǖ̓*��p�	x\`��`Ŋd���	�/CV�̙3�|�I�ҭ�����_g���믙�C�cAA�r>����������k	��曚�v<b�ex���/����o���
F��� �2<�Ӻ��O&٢E�,X@�(]�llJL�-ٖ���T�Y�f
:�ǻORe�̙��g�%9{��[o�5�f&�o�…�y�|Lw�u��&#����[�W2�o��f�%s�I']{�w�q�JF�W_}u�e������}��,��o����iҤI�\s͝w�����JMC��]`rd�N�0A��/�TS���@����_�j��Dz��wæ��|���?s��n_{��j�[n��M�#!)Y�4Z��z���y�m۶�����m���p�E����'�~K�R�%U�z�c�b�8���W\1~��γc<���k��OT�+��B����?�x�b��M�l6�z��R�Q��$�qt_���!�� �V+�kP��~tO]��R�޲eK}}=�mG�Uqq1u�o�1����=~��g��M�����J^���cƌ��늊�bq`Q�~��ԇ���$�P]h<���Kg̘e;Zjk��~�m�ԍ�N�*����;v�
7�@b�x�ԛo���s�1i��g���,R�<�l�29���|����ͣ������Lt��d�^Ga��������n�������z��g���Z�r%��W�nhh����r��AbPg���2d��g�=e�:��OШBI��O|��w�C�]I_���*[�_I��<ݹL�������]r�����γc�:jԨ5k�0��j�^{m������1�w�y�=�����D_��G2t�jR�'��r9ḏ����P�d��w�}۷o��Hʗ4�ؼy3ٮg�y��O?�9�tMM͟����^��#�J3�l$�￟�������od�$��g�q��ww6�����{O�Jf���O�!��_/�����)�:�W^y���Hۿ�����[@����r�s�=���g%�ɺ|��K.��՗�N����9%%����V+�_�5���g�M�0��[�����O?�����TӈS���[��ɒg�9�'�n�ٳg�富�O�Xb�ҥ�-�.�U�62��򗿰�/e��w�C,X�����Q6�����~�G�+�nKBЯ���?ޭ�K�,����~�zyɪ,s�Qݙ?�g��j��U�V��˖-�1I��!h�4iRt��f��?����/���@�j{ʄ��}n�@�Ոt�6����?���~�ሽ�J���{�͛G��I��� 1����0u�e���"��k[[�<g�孷ޢAU�,��Z����C����|*�%��y寢(>��
��U��c�!v��A�'IE���O���޶m[�
�k�U!���W�٬7�a��Q}d�XDp(!ۣ��R�����9
��(�d��)�f���Q7eʔ��:����}%I^��t7�]����ӧ���O?�D�lfs���F���D��|��C)]0�'2{��E�Ɇ1e���`2���2�b����o�W��?��G��^���W2�-�\M2�{l`���l�
���.k�3dj*��Q�)mo��@F�i��֕�*//�c���҅r&JP]]���Ϫ���ur�S/����_*-j�-[��X�B�Z[[��w�E�������p�D,t�����͓u�"����?����U�…/��r���z,�:R��
Rڜ9s������T�������S���4I	�y�|�s&QX�r��ի�&�Sʙ�T�~��{7(�p�W.]�TY.�F9��S�|��g����~��7?��J�[�*W�������|E���6�
�6�Bȣ�����M7ݤ\�'���~�g��/��R����GyD���{���S�dw<��ӟ���
�u�m����?��^"��P�)O=�ur�Ec&�aRl\\���2���.���Ħ*Ӆ��tX ����&̏	��Y`%�����g2�"�H��I'���o2c�����2�.2�?��3f`��3y�����SO=��_~a�~��'������yL����BJs�
7PnT
�?��H��C����644��㏔��}޼y���K/��7�xC��y�]|����ɔ���"[kѢEd�'%%]q�=X�����e����kFF�ܹs�3�P2��'���;%%%�7o���_���H3���tyaa�#:�d슍7ʞ�!b(��Ç�O�P�"jq��J�%� U� eQ"R�5K������￷���	tcǎ%�,3*��_�~��'�̜�̻ѳ�9~�x�H�~�)S5=u!e2���(�Йŋ_y�a�5�—.]ʎ�>��6e*"S��7nu�����+W.Y�Dv@P�ڝ}���׬Y3{�ljP���_��o�XHϛ6mz�ר3P�$�#�<B��?�9����'%���t9UA��_�[��w�ʼꪫ>��j񴴴�'�3��_�������Lm�R~��WTG��w���n���(�!�̜9�zuj}�����6�(�'�x���+
8S�N�{�n���fR��_]UUE�,J>�����r���n�s�9��:$�������I��Ƣ�\vS�>� �QΐT=mڴ)S�PO��W�^MJ�A��+zuz��3���n***b��^'��v��rJ�P���;銍-�&M�t�u�
8��&�V�X�矓r�	I~J@]��?��3ˇ�B�!��F�ѣG�D#
�l�0�2$��qG�n�Uv&<
t}�	�?:`Ǟ�x"�s{�����{>=�>=^����s��K��<��x$82C��~w��_|�]��~���|�N���>����򶹼��&���᩷{�a��G��A��Y2�"&kkk;����W\A���-[��Y�d�I�B�d���ɒ������fϞ͌�]ŧ�~�l�U�V��~�lNDnn�|-��d(�_I$e�-���V��6l�@��L]�?���5���r�e�=��S$j��s�̑�?�~��G��'��k�Fc�XH	�6m�Q�/�P�����#+:J�7�|S�OV믿�J'=�r2�d�F���?�'Ȑ��m��ϟ�9��x\\�m���O?Q�遶�}�YyR��W_�+��Ç+�j�vn��^zIN��/��{̘1Cy9���xKq�\O<񄲂�{.��͠��W�_�}�.]ʢ ɐn/���S�9z�|�Iv�N|��W�6Q�y��G�=��ϗ{~,P7�n�x�b��X�n��-H�);�tO>��R�iӦ���/�{��0w�ܰ��#F�())�Ӭ_����P�5;;�TM�UDmG���)�B98(��F�Ո������+��~�A���Pʙ��N�#L�+V�Ş�~��Įme請/�X�?����������t�i�F�=����M�<9���lJ�w����7�쵧��7ސ"e�W
2����s浵��|��n;Ow�|��^]BzF�2���-Y��/<��M����npx�KO^z��S����D��2=�����Ԧg���g:=ٕz���ejm�:�����>x�Wo��_C�ߞcG�����$E������$I�,AD�� H�p��.��xQ�GQDT$	JFE�> /*
҂H����cO�ߝ�����=3g��|�Ι�驮������}�y���������^0���������a�����K�����Q���k�c��߯�9�7��f=3�ɗ�(�{�x�ʛo�O=~��Wۏ������ߜ%Ȩg^k�2��h�捐�c�<��c�B�L�VXP�Z
!�]U���6t����n��tn��V�D��oօK���ۨ'�}��n�Ao��SO�����ۛ�����ݩ�Ͷ�b���:J?���9%������5i�$n!�Yw=���f�/�p饗q����I'��T�)�G&o�[��t�9:�7rĻ�;*��J�����gʔ)���6��x2Kyߠ�d�y��g��̽�g�}N9�'�L�믿~�i�q���_��Wy���~�.������T
/�|��R�{饗��R���k�Sl����l��b������O��C9�[�����h���{����܉'��馛:�_�9'�|�����~Ӂ��q���~��V�s�=���W�~����vN9��]t�ԩS����k}�Ѻ�|i�e�_�i����r��X�Ї>d^��c�K|�C����N��͎=�X�jS���%�y���*Uc~����C=��#����+6����9��v��z��|���<ם���`�?��xZ��K�q�L�T9�1�����,�����'�DK��̉q�̙�zasr�C�?4Q<`�	� y�������:�� Y"����!����w�Y������X/R��q���[m��|�mnFB���?��{뭷T5�j��+�O9唻��7jL̥��'���|�A�*��q��F	@.��뮻�f����:f���s�1�E}�c
7�N�gZ�⩝�J\�M:P7%0�>��ϫE�����o���N�:u�׿��|W���ZJۜ�{ヲ��m���T����?�}�{�z骫�2�����z��[&l��_}St0�s�<N�Y����я~��3Yz�yx��m���e�{キ><�+�4|M�d@�~�zi>�z�V5,M�@�����|�3�&·{L�u	�e�~��1st�v�ھ��+��[�=�%���M7ݤ&n��bV�7~Ъ��z��G7^2�VX!X˳�;�O7_5�I�_ct����G�E��O����3�<�^��o�+��� q$0?mJ�q���/�׿�U��o��-�ܢ�Yt�E���l���g�}�
o��iӦ�����v7���o���P���q�����g���D��V����S��{�j��ӧ{���8���n�e��뮻�RK-ո���n�X@����NUW�|��Wsl�a�����%<qd�����^�����3f���~�e���?UA�c�=v��'_~��	-Ry��g��7�}�M�,o�Z�}���y�7���(O��� u�6h�g��;��̧�OZy��G���/sWw�q9��nw�y�/���d>��o��?��?ԑr|~�m���VZi�}��O��J2�a�m�j��ԫ�����D�o��Vyp��x`�Uq?��C=�����SO
H���[jS6>�ܥ��m�5�\l�ł��+�ߢ��ݨT�G�׏<�_5�LX��^xAn�y���w�N�Yp��[o��ι����կ~������o�q,��9��P��{���
�������G�']w�s�=�GĽ�O*�:�ͦ�n���U�Xj�
Xc�5�+�d�6|j�I	.S�[���$σSu�E]t���d���+��+*�.�Ps�>;<}���@:҆��Q{Ŷ\d�E��j+%�1��~;�K-��w��z�#���%a8^Za��[8�뮻V_}��~�o��ڀ��
6�O�ොz�ӧO�L23��z��?���Oג��m���o�E��C�H�A�LJڨ��U痿����䞙3grи�N;-����s�v�a_���u��,��r�o���������o��V�R��	 ��3fp�����Z��R1?�Α�vEgZO��K� 1��L�i�T��/�|�����^z��'���x�{�k:%Xs�5�Xc
�rx��7?�裪J����Tv�e>��S�^u�U����+�\s�����o��F�r���/�1aN�+��'	N�S{��D%|�b�#7#62��s������y衇����7�᫵��̼�^|�E��e�Y&�����7��-s����ړ��c�u�#DkU&fq��O<1�صP�]����᪫�ڬ=��Է�SL�2�G���j��f,���_��W<�g�}V=��m�-q�]�;�7��˩����у
LP	`��+�;v�&M�d�M����3��|��[��?Ց��?�q��j����k���o�香3gr�ŋW\�f����_q��?��ֿD�Y��*N8�3�8�#��Xr�}��o����o��=܌E]t���;�#�t��c��w�}�1��f��j��v��G��?�K|�Rͨ]g��?�)���/���Gy$mt������mn3������EKAA�o���.�I:�坫Ο��O?��뮻n�}�1�~���Nd	�\r�m��F=�ü�������{PO.��R��m�m��;�v�mʫ�;�Т-�^S��I�	��L[�<�"�V3�%�`�>���{������%lb�5s�*۠�N�{2s3�m5�8�b��2
30_#1�3=��w���K/�c�=x�p>���'�|�'�ޛ��n�Ҝ{M�ie�L�.0@8ޞc�9T���j���_�5�TfU������z:����ΐ�1��>��o}�[�G�[o���G���~�?���%rXu���k���_|�����tF�Se�t�����e�]��iӦ�}����=��.~��^{�u��7�l��^X��͘1��Qw�<�̣��>��.��B�=p׭��JJ�����|��6�2e�:~םw��gz��gMs�UW]U�@܍��W�/���m����Q� ��u�Y'�
4�F=��>p�9��W\q�Vd�~��X��3��N�z�Ygqx|^s�5�r��?��j�m��F�-��b�o��Z.��;�r�-w�7�ԭ9�s�=�L���c�j�$jW�q�j��t��x�9����o�p�	z�G�ӟ�d�M����q�կ~�\�B�;��+	���q����OS�σ_��y�I�S��TL��(�{�O��%��/~��1&&��S��<�-��o���?��w�1�F9O<�D��N�m��g�-��9�;���_����x��3y
U����C�L�<��f�{���ɓ��j�H`�2�V�k��x�%�X��u,�1��g�����[o=�k|�W^w�u�moy�W��I�&m��6N�׿�U�/��"�s�'>�	g��}���N��#m8�R+�����\r�O~���q$�-�f��f���s3t�S"Pwz>V����$0��W\�뮻�u�M7i���j����ת�rm�`��ꪫ��wߠ5��_?m�4��:묓�T
F���[lq��W��䓒_��}h�5�Pf��R�Lj�:�d��v:��s�|�M�;_�kA�NW�5f��ע���7�8&t��zH[��=�S��?��ɻy��'�8���WZi�y�GI`/����w߭��t�m��
���?���>�r՟����r	��?�ʟW[m�X@i�|e���*m�Q~W�{y�R���Ƀ�����ZA[����Ͼ^�X�2��?���~�����J�K���A��'�/��|p�9�ȟO�uP	`���Fk4��,�o��N��`���.RQ"B����g�Eѥ�����Yg��<˕�����^�q����a��6<��S�<)g�=��8�^b�%�N�z���:`��_�R�����K.I��������2e�{�^�x���'?�7�_;�8pKt�$��
+��_z��~����p�
�C��K.if��r�-�N��=��^@u��;�_u��6\}��N�~����?_������n���ۧ�z�u�]W)iq��c��1��C|���$�x�*�^s�5U���ԫ1\��W^y�2�f�D�b-x�k����SN���o��Vl�Gy�g�Q�yp��n~��3m�o�ѨW�d����j%���K/�k!��|�ͷ�&��?�����[�{ァ�~zL/^o��tc^xᅓN:)֥<B�x�	�\��e�9����;/������v��h��1S���n�y�Yh���Yg��;���ּ�M��;_m�����
�3���c3�F
��#�7�)KJ�����E�g�'Z$��	� 1�8,Ѷ�16�tS]�F�x����:uj�-.� ����{�9_m��v�7�Q�:n~=���p�
���~��w��sl�g�ptg
d���ӧO?�S<�=���%7���S�>��3�<S��+���VaZ��n���|��OT�֎B�o}K�u.�����;��i����w�=��c�}�y�����6��{���[o}���t�p;9����&*�׸y�[�A�ꫯy䑼��������?]������k�������>�x�8��[o�.�ȖϠZx�?��3g��g?�袋�Ye�Uj	R�첋���?����w�[�6�lc�d�0�:죏>z�I')D
�>�*�����o��z���3���+0h9fڴi|07O�p����#D�j���{ߋU�cO���Ct�A��~��R͘1㬳�����Ģ
;�_z����s�i	����ttp��Q�����͍��\�<u�|��[m��UW]��a�m��"57��_�27ô��f���j�~����|��)>�Si�����R��Zb�%�K<�^#��5��~�U=Y�=����j������eG!����ѷk�	#mj֡H�p��j�\L0��ͽ�ޫD]��z����;/�w�}��Fmc6�p�VXAY2if�m��S����k���b�-��c���{��k�|���=p�|���2M����W\qŏ~�u�Y�����.��K.����>���7�tӕW^���4iҦ�n�0��/7_|����k������ꫯλ�}r'���;��q��u=�m��w7�͸�_�u�	'(����>��?��W^����>�K.�Ĵ��s�=�^zi7�}��Z1�6l���~��s���;ꨣ�;�8�D����>??e�e�eZ;��Gq�s�믿>?y�1Ǩ��_|�Cᝬ��|�����w�Nx��;L�ɝp�UW����/����������k���Jz�7��(��څ�����.�Yf�e��չӪ�|���9m��<��|�I�m-�l���%��G��Gͽ�����}��w�m�UC��׿�u�7*e���E]��k��5΃��D)�ӧO���Ї>4�\s����<��;�`�V7xT�Jy����.�����g�y�}�Y��ʛ1��8�/~��`���_�N�Xb	�|�~��׈��{o�����'���A	<�\pA>"�=��Q��|��8�K�����W��U�'o衇^w�u�!܌W^y���}:����Q<������GWZi%�?y��1�|���\p�Z��kY�w���Y]��|�8��y�㹈�Ž�s���|��^d�E�B0��
%l�%�B]��w�i1��d�B���d[�����U.��+����z����~�-�<�����ɓ's�[ՋCЍ6���;�4�\m��8��7�8v���������1����1�=���r8�r��'�x�#4�^��Fim,��D�}���J�}��/�K���q���$���O~��|��8�f��'?Q���f�E���9�wʸv�a�^=��I&r̹:蠇~�Y������i�7l�UW=��8��_����M�v��jU+���_��SN1��_�C9��G����_>�s̝�5�\_��6�t�Z��O�V[mŃ�<�o���Ԧu���Z�Lf���5������~��C�ӡ���
�UQ����Ѝ7�8�ز�.��n��w�}j��r�->� _hs�=��T��s��������3���d�����/����|�3C�������\��r<y�sΩ5S>������/�z��g�y��~���{�����t�QG=��c�]v�ژկ���>��
7�Y�S����z�)��<ϟ|�td���~�!���a�}�/I�1�g��k��3��3�"�,��N;���<��Z�^x�uq=�'
uIR)0���am�,��#��]��o�O3��VZI�r?����T�;�*��Գ���.�p,d>���2�,�ơw�q�K7�p�/~��o�����f����z뭧�h�%��+���S��qG�/��>.����ޛ��t�ů�6��_N��<��s��~���ӑ�=���;�8n�C=d�_��x�Yg��]9�<:k�[���os�1��6�l��/�8�:q�O=��/}�K~�M6�|�.�ȩu�|����HX��Ʒ������i��v衇6�|k���9�v�yg��9&�}���d7f�yYN;�[����f�+��r�-�p�윍�Xb�N8�p��S淜�t�G�ᄎm*#���[o�U�_{챇vU��{�e���k>|U~�k_�%�~�w��|�;�{lb��K<Ī��-��%�\�Gd�O�-�{���O<�I9|�{�s�g~�_H\8|܌�|�#u{;g�5uu�Q�ݾ��-��YϨ�1c�s�=g�_l��y����-��W���6�ߢs���:�4������j��O`�!:�c�JY�YN$%g�<�F>�ag�מ��U���Cqp��*�$�������v�������/��9�S�]�,��^x�����?���ن���f�m���:蠃>��s�\��c�q(u����m�������[n���pĻ�[����ǜ�ه���.���ۯ����o���wȍQ���]8r[`��X��c���.V�ǁ�i�����[_z饷�rˋ/��;ᆩ���H��v��xo��������J��8���7��
�vr_y����m�]���>��c�+�L�2�k_��A9Ϳ���N�W��>����]���+�|�Yg��~�E��;3����j���0��s����l��g>��[�Q��
+l��ڈ��[Lԛ:u�+��3�6�|���s�*��TJ��ү�U����W_}5���\s�w����/��½ħr�����o���sƺ��\��jK���e�g�q����w�}�;��mS�/v!{������<Q\y�?��O����o����}�{?��O��|�|�[�J쇧��O>�g�Ty�M�>]�Ҽ���]�#m��6�x�e�Y�����ͽ}�M7=��3<�3��/�;��'?��N;��n!>e܌�^O�Bx�n��^{�f4�"���b�G���D׸���
0��}r�I'�㎿��o�t�7uv�P���4��Oz�v0�A5<����y晿���yx���˧�'^���O?�׿�Uw�z�'P$�У���K�WGN��!L빼#�:���a���y��-V��.�x�����I��XG񋝕���Z%A�`��:[d��"�47�{�9p�&��՝�e;)Z?�F�?G�z G��f��<�m���,4�l�'�>}����O�H�A΅^ȁ_�-�>���?�"+�^zi?w���y��G_|�E�U�pP��+V�P��8r^t�E9�]r�%y>��rS�/���N6�mj�H�j��.� ��.[��A8l�0���c�1c�{��n������^{���p�^z�EY������dxi�8㌣�:��h�
6�2�>���/��_�z�G�x≷�~{���V���J�;�W_}�w�����p�q�.��r�|=�j�"����a��'�/~��o���/��⋧ŝJx�O>��B|��;T��<<Ԗ����ڒ�*X+J�O�R�z�1t"����7��^�q��o�]h��x�<T�J
_ӦM�{N_M�7�R�N�<��Qw)=�ع�a<��B��V��;�IцO:�9����O�J��#����H�7����Q��s�5�0�����\�B�Z���e�g��*�v�W"�*O�x���!�1�-�J뭷Ԋ�|8�l���;/�����4~2v��p���BW|;�}��c�w��C�Q�̶b]�#Y��O�4�w����#�Y�a»�����3�[�\so� �.�S�#�O
_Ds�=7��a�O#��^�-�����~���n��v��v뭷�����p�~��w_~�]�Ƕs3f�;i�#��D'�j	��Z��8+��V;��f�}�	���m\�e��F��ֶ��_Oyq6+?��s�٦؍p73�ʨ�"$�����~��C�ѯw��ήJU���%E4�R��,$0K�KG}�駟��<��>�lT�	{��_η����>���J�y����^}�՛l�	�#��
�q���o|C����}��3Ϭ\�wt��D�����Y�26i�/	�d�`}�%0c�f�����}&M�d�������>}:�e�1c�����w�uױ��w�yG����nݟ�㘗_~Y������[o=$�tI���Ҙ���r��R;��7�J`��#�]w�
7�P=~��G���@�뮻�y�~��F9��%A�,��g����G�x��o�6m�z��|���0�0��+���.���%���]����:���Jr�1:N�'_|��~��ʵg�̙\p��3�-��;����e��wofa6&O����}��.;��}��䭷޺��_{�55K�瞵�
���R>�ưי?mɭ���0��t]n3NJ�ylIG|x��=sz���y�)8,�a�n����9�s�A��
����o<�sι馛ƌ�`Lp����n�Jz�5׼����먌2�`��쫯S��w��\zK�)7T_�G�,'O�2�K-a9^`>囊�)v��x����B��L�

�L�r�1��?��|��9s櫯�ʁ
L���m����P�zꩭ��zҤI|��k���J���8��H�%~�d�$t9l���q�X�S���+��S�L�Xg@�̜9��_��9���[��DC�)��+�E�g�s�Z�r����|:�$?�*����d�F"������L�4	��آ#~u�{j���%�ю�H)���KWkP��0�cM�.D(�Kռ6Q�_�1|D��e�qEH1c�A[�2͚j"���D����t)l���+Lz��GH�_�{[�����q�oV뫸V���V���FyB��W�YN�]��^G
����]@��p#�����Bv����>V�56��u��(�5|\�"��f����	�^�!��P`�n�!�܈Wt$�ڑr�Wk�w$��IE�b�‹Z�nv���ƱH���DY���ۙT|���@�
���
r��_�z���/4�vFYMU���#�%��LU��k�z(�~���P4+�e�������RŴX�D�h�w�#p5�������5�3*�WA���{p7���+da�b�N�2�d���p��f�j*f�^a��T��*�%�?����c�ʛje�:RiIӅ��U�u�[u�5���30	�/%�B���Ϡ�0Q ����������q�b�2�ڛ����Tݠ��j�t�����e(E��i��$&{2�M�@#&��h!2m,c�ؘa�>ީUdjD4f&��W��+B��j
�q�W�I���[U�陿���$3#I�u���&��yD��ݷ�9su�	�b��}��y�h���Q����za�%�Z9iU/�N'M�@��J2UQ��Vn����w]�9����y�п���,C7̖�h�4���з��0ƿ��/ەIX���H��yU�Z�NjX�_^�ֽ�V���5U5	:�΁��>ɽ��k����
��Y�)�=�����R2����HG"2?���Q�DV8}�vevZ����V�Dc�F2�X�mid��|pn6�f �ۏ;�
�������w��1�>��n���s�H*��3R��Ւ�\��7�'R�r&#���ׂ�t4([i����]EM#��	țc���	���WtR7���A����	BB�0��Ҋ^2�X��$�.]�<��$��N�ɕ�D!,���V_I��~/�p�F�s�_��L����L+O��ߧ��E�4A�2G�I�M�b
z!(���_���(����y`��_n���(���Ȅ�0�D$�v�d@)])�jQ'��³Ht9�T�^��T"0���ω*::`~��M����d��z4�+w0Yu�@�з�Z�+2���*5�]��b���'��/)L/|�=*�,բp$ ��Q20�p��yBQυ�q�d�#�n�ŜMG|���Y_���П۲0����!�u�n��c�y�����ӡF
/��~d��S���O�Sƒb	5���+g��ޖ�M�:s� �^��ۮ���>�8��El"h�]R��KEɗr��_�X�H��3�]̗p�4�M���XOW��Ċ����q»-��罹4·2�#�a�V[�§�Ѫ:+��@>W�t�/�������N@�6E%�ج#��BƜ��HF/�З�QXF�<�+��E���e��|��@�Q�)w~m2�q��-�0P�=��ǎN��8���>\�(B+Bvr�<�c���b�Y|���I�j��z/��݋�ݭVX0Q�l�]n�,���	a�H�����߸(�t?7�VU��/�����[�Gw'�y�(8��y5*��~t�|��\�h'�_0֮�Pɢ*B�/�Y8���O#?�K���<&D�K#�
Meʶ�V���!�o�m'�/ʒM5�%���(�B��ͥ��B���ۀ���<��;5�?Zja7��QTA
�̬�,l
ps`� �-�Ԭ��|+7f����|�xZ}y��VJ�I.s�O���
0��[�R75舟�r�sd��Hi7f��*u+qK�P��x�~t�F��шn��0bI�ݗ�`'��`l|Q�a�[�<G��[J*%-���+=����Xn%օ�l�蜪������!;���ԭ�j�]�Wd̴�MW%�����)F�{-?e<�R���Vb
0B����U���]T���� ��Z��	��[զ3���@�ʫ�ҟ1����Dd�k�lՑb���+5�bR�tՙ�:�q�x�ȴ�9G�L���"�-Q)��J`�|Y�ׂQ���������,A�wGT��Ȭ{��)�Kv){�����:�ԓx�^�����	#�e�#��p�˰r�_������%��_�
kA0�i+�SH���	Ɩ�Bi�k�#i��]��M�x!T2�*��I���M{*�Tr"��	*&�Y�9����q�kz(�����z�o�#�3�
��I�����O�Ј,�ӷ�1QHfT�cBO�R:?�`f0�o�n�YJ`�U���,٫ն��-ү�ֿ�-��V�p$D2���!�*HC�2��w4��Qx��$�̖�#0�$-o����X��V[��Ƞ�Hd}5�q�6�ޘ<�QTC�T�9�QV��"�wɖl���#�����EM����w4k9f��c"�n@h���(��_�-UѦ����p��ߟ͙!l�o�J�vR�R֤��q;�r�B�˘���3b+wN��V��н��a#�~���2܋Şq���˿��!��Uپ�����I����H�ֹ�?CًI�Ϣ��3`0�Q?x3e/����=���U���5N��#�`,#m�B؂���c�ɖ]����̐��Qi�%���yٙ��#�-�DΔW�dX �~Ko�x����$a�'��׾�*�,�4U�Η��^�a����7?ageC�0~n�"��V��!�)~QY�H��%:~��BK�2��o��)d��1EIz�K]I��UZ�fS�|ѝ��J�%?���IFjcoUJ{��Y����U�^�kS�"�2��j�.�v`��e�`�AP#*��u��ŷ|O�nV"t��6�"GG�"[�"#��z�п�Ƞ��D;�����FH�*�U�uҥ���Uz�	C	�sF���=�}ٙ�%�f�Z(X�O�+���|X,w.�_p���i���"I'��"�/��_*j$սR��X�o�w�Va�c~7>'��l�|�^�Ȳ#��۫9eĮ�$w���3�L/0�9�r�%�t2�������1/q�dÓhP��)���qP�H���#�z��I#m
FR����?E��oܢ�إ���%�j�M{�Jsja^Q�ˈ�:�\�B����S�C���R��!�\�rKsiE�
d�
��!:�Va�k�$#0i�\6F�	�~-MA���jva3�`�E��I��,��wZ��?&4�I�i�}�5*"I��CҺW�Z�y�7���0-������GV�6c����	?�3����E��=y���cQބ�HG�M��J�t��~�'���g9/5�C滺o[��4�C����n�x���?�����r�w]�S�R���%��e�]����4�U��������h/�wX�P��
��+\�&����K$0��z�����"`���{V�W@9$`B�'�QRs|���m�trg7~��<�$��3��G3f��(9�\6�����H��N|^��h�:f~J��J�O��2����D"(���E��V�]!���F�22u�7�Mz+�4S��y8��a���W��f�~*���o}��&�y`�:�{�%iM<V�(�y��q�Roi�-	�.‹)<?~k	˖���ڿ��
e�/c�eE���g���`hc�>��M�T02~���V�E/�l}�D������Z�ڬ}H��A��[�-��G1j�1�,�L~���nr���P}��ӿ�~�cԞ����x�Ӆ�]���HlԿ�{�po�Vp(���1��e��6�4&���Do{ft�S�4��'{5TBN|�����`����(}/-�]�:�>�[Ȭ�,=�
�/�
E��i�UF`A�|o�H�pV������&��w8	N�|{�p�`��c!TX�dd?v�f͟r�z���R݀G��Dz���NJ�mMFfr�	S��h��xFC4���!�}���UST
�؛%;e�]�����"{�M�i��Ѳ���Y} ����WXz�)�w��}��8����eu�DՖ��tD�RA�����&a���g�j�&��L��Bd-P�����ʹ���muu�~7���>�S�;��}|��BR�}%����*v�*���Y�w�ӎ���H	��D2U���T�t������8Q�F���ﶃ��<��|��]!�he�>a֧_�����z]3���~��S/�λ��пC���Hǥ��5�G	�1�u��*ozC3�~Cz���ٗ�}��m�5��H\d��կ��F�}�TsCӔ:����^J����y����Ӣ�E!"�M$�>��
qc��9���.����>�V"SCh�V(M��Ji	�aJ�]��s��t
�,J�'7��U�F�+9	3O��G�P��&�!�#�Y{��V�I��B=�Y`u��@RX�)ߧ�>}�@b�.7��n�QO��h�T���)��Y��8Fϙ ͮ����I�`R��H�WqQ��z��*Kt�
Мvfj�>ݴ�^(�S4<AՅ�=�U��
r۟�^4��>�J�@J
oL��0Id�q�E��������/c�e'��W��*��J��j����*U$��X�[RoogRgu���Ki+Zگ�2c��b���A/|�eX�.ff� �?s�{�,�(`HV�Fm�s�{�ڼ�VjD/��2.�1�]��$�<��
}�����>:{����Cjx*���$�ϑp@3����]|��>pm���h8�u�t����M߄���D����%����;��b+f����8�_�9-�\�¸�˫�O��7�,~TU�R��:3,Ri.�WO/�k^.������h	8���ɽz�h�cJIvV�^^�Py�^�W��;���^��\w'��͎���ƾ��
D����k��R�H��6#$�='�j?qe�ވ�A��(0D�m�blU�A.��7:��4�Vv<�/WH*�AڪY��T�,u�t�0mJ�+Y��Οc�_�
m'�"dy��?t�;�cV]Xk�{�<ކQU/�-[l1\t��Ip����ja-�ܾ����lv��"��02�(��Όsc�yi�@R��T/Yd����^%�F�e��Qk�4��@���8RF��TJx�$�ta�~"	��X���1)p/�зd�>��)�z�N��
�p҉F��`|ъ:�Wݔ�01��[�W��(�"o,);k��BHQz�ku��O�.�4W���f�&+��^;�"��_Z�
��/d��j����cv��+ֻ����$����w��ti�wiw��(�
~��C
�ݨ��we�_��G�Ґ���`��^R�ҙB��ԥ�(=��m�*�hU��m���@�Q��.s]u /�i��v��9˚�c�����?h��G�"�ꊾL�쑩0��l�w	k�+�ޞ�&Z|�0!n��c3���ѱ{:`l�a�������tR���:��ړ�r�B�ۗyb�*��)�T�D(p���t��:B^�Jf-����B�pH
���
��� q���C�B
�x�������m�V�if�ʹws��OJ?
�_-�R��%�B?�E
XG��#/	k"���מU+f���C���
G�m��#"6��s���#�BH�1��,
Ys�0an��\0J�;w"��ۛ"���Ɋ��he�����(N&��U��T0��I�@z��?>Ҙ�
��v��,���$1ϕ�n-|L�����eaB�B��Y����1��CO^�	���s���uD�/�(Yo�??oB��>��ĽՊ�o5���,�-�֌���a�R�Y�B�T��.�BH���DT�
R_�����:���_��Y阯�/!�C�T�D0IX�h��\��:$�a��ڱ)��k��Dnl���u�@	$�40��q�8n�S˶��ʑv�7R����R�B_ȭ�I�-_D��u+�42��Y�e�s�?"!��[N��}V�����K�@���3[�{C�ϔ�q��iY#��g�jq'`}��J G��)��y`*v�%�����5m��ޘ��F�ĮpC��G
�iMN#�=dUA�GQ#��
��0���*�L��EE�}8S����}cпWHE�L�5J�_�	!���(W]t?�LS�>a�j7��J�%�/��t�a[�E>A?�K7�:��]�g�8T:��D�U܈���ė��9<�!(i(^A�`���yI#��(l���e/i�_�*��뻤�
f����~H2�&�v�n�o�����¨��0�#��WJ�nd�<dC `&�c��hu�4z�Ը37�4���p7͞l���<�R0k-{�ƀ~�%YX|���tJ%
���B���Hm\�eT�C����d�V�\R&>��23l�L���O-
N�
W�8�{�7��m_|���w9���ȉ��۝J'ߺM˭�x^ʆ邟H#��9n�*,�
=�[����ێ~��΃"�\,�{%� ���{��&�5��������?����'n1З��hpL(�G�-��
�d��$%,1˘\��.�L��0a�|e�Yd��|4Ûֆ-��,�$cEH+O�(�t��jy��B�!*����۵���D��=ǯ4-��J#-s�em�6/K
u�b�%;wK�ޗ)`R:�VLN�f$Y�FdgC-~��E+=���@�ST�Ѷb݉:��AH`�&��r�Sv`ޮ��B��ï���)K/����"'�+�V�G�/'��\�3��T����7G�M�N�e�
��X`W�n$�X�D�@����Eg�9�W{��va`'ͪ��dQ0��3���Y^��P8"Q'w��$O��ed�$m�OƢ��BF`�O��pI��ߡc&�]�:��s4H�<QƢ�V��Nv�;F��������-MY�Q�U 5�0��礀	�֦4T�ο�
�c�/ʵ �}w�V<9����P�j2��c�#�t�������2d�2��b�_gH�X1��Ik?':�bD��W,��UK�|��
k#�~��Y�&��8�+ш��c��\�2���0���β��7�F�di��HXհ�B����0(|��[t�U�d�O�_�b����޽0׎l?Q��.��(����̰��6/�/��t���p%���{j�I��ʷ������y�"@�Q�Qio�._E&W��е,���:b�t%R�����/;C���2��Av�ъ��᥀��􅮠B�]Q߰K`u��@-�D�#��Y�_r���R�]����6(6Ѳ���;6����Hk�Y�V��ٙ_~�c�_zv�V�d��O7�b}�x�F���J`��
d�.\04ԋ�.40�Hё����z�p���Q��>d��ʊ0��ѳ�.���}�)��r�[ٲ� u
��$�7��T�t�1[2U���i���L9LP�p��„q����򿴵���E�2��
&
=��3���[U�ަi�X
�4��m��5b��/�����cĮ*^Y�|��� i�$0��>�\!���_P	�!C��h�k�GU�h�_F��c�,�$%*ٛ�Rʘ@b�[A�0c+�
rĮ�v�gF���� E�rH��dž��>��{��mH����Q�@$]��^2d�/t	d��&aV1����;̬�
6�mF��	s�G��0��",-��x�/��պD�C�����0��龥t-�_�_T�_Da|m�%�ZF�/-��]��0�RJ���I�Ĉ�v#i�l��H3
�"M�}͊}e�����A���h�sV*���B
w�M���U��_-L����W���wW�4�Ŵ�~��J�-�)`T���8;4� m#0�>�tjVA
�qT:�B�.��¦�8�0��Z�Կ�����=�u�8���6�
H��7�d+����F���>�@�P)�tifJL}�����m�U\·���^�Di��X�����"��N+-�]�����O��i�kֿ^
X���.�U,駀Y&e�v0ŗ���i]�:��+��n]��e��:�bu:�?JO3Wg43����C�_g�E����Q�t
�i�o-I�@��)���md���ZCqҍ,;a���y�IU-$R�0(�(��JIH��&X����� ��/Yf�)+���^ev�Q�h��Y��J�RrRx�E
�]��V�ɠd�]dPG�ZSk�
��戆�I�3^���^���%}�+����:�+��Bj�`W>�)`�S���Nݤq0^�Zu?�;*������|}�5^Ǔ�- ���cY�+�/#_*��1�da��-�B]��_8)�0���T�����B%���M��#������e�DzX
���Ï&�9/�.f�WL�"*����������g�^��2S�:.�J���J����ւtM��2��-�ʒ:�ѕ���;�QY�	+�`�ʏD�҈�0�QGE�N�XZ�N�c�
d��B:^:�kĨ�$�&�.S���)�Y�Ym�E$�5L*׵���~�i�%��i���F3���w����)\�H�ںc��ҿ��%�Q��4�(�0�S�H�yhN��O�`�)�-�:��o�F1�h��DR��[�R�0 ̌����Կ���e3��${��bǖw>*���YNQ{�#������DӠ
2��r/C#�U�^�D+W,��5:���B�g�Կ�P�:�N�0������T�?��W�;_o6s�f=�)`�_�A��VA��_ꏰ2��ޠ�)Li���,�y�E��Ym��`}ҿ0p��/�l�<��mQ_�����4��6#|Ci�ʗ��u>K�@�0�y�.~4J �K��"F�F��3���[��1d��!�|Q��,�M�����P���G��Z��+���0[�JX�9ŏ��d���%��w��U	�v�@-�(���o'�����TS��/�)RҨI`"��W�Ȝ���RGX
�Ƭv4K �M�_!ϰ|�˲�o����ׂ4ߡ]�u!�ּ�Ȣ9�x;9��} �0O��ъji<�a
�d�*\���L�e�{F�`	�z�1��ѿ���/�����*��	��k�"5���	lf�5'�&�=z���,���{��d���5	;|�<+�|o�	�W�
п
|��W�å�4-���ɹ��������(��6���_N�i�{o
�T׬|O�[���$T�h�f�Q!��F�f�bv���
�,|�@j��/�$Cl1��\/0�����.���S���r����˭�􇔗�0�ؕ�T8ߓ�h����-*���_j?:���O�rW�4]��0��,�?j��u3{��ʓ�zS�7�WAF75���s�."�*2w:d�D
�8ߓV��̿��i�9ŏ��^�Q�/�L��Q�����fT���xo�V'����pz��x�eg~�ݯ9}��%~��L�꤄i������姀Q[*j�ŏ����BV�4�]��q��Y�Fqu'��w	L��>�Ѽ0�'�XN"�H�@�q+�g����tČ~�_�EV�tR�|�^5���ǰ�Fg
R��X�����5�jX
��*�B�ړ�}�?/��0r�l��N�c!~��}�D�
Z���@;�k��T2���j�0+��&'��xwR��ְQ���c�0H�*�c�e&u^��t���|i�H+_F����I���v���S�?ر��I`��)n
j!�
##��e�密X�V�s��Gj�����*��g�`#��T8��*�"</0��܅ ��@g��l<LY`5���Z�ı:yt��`)m��g�e'��_T;��L�R��#�~��k�0�S�(SV	�u��!8�M�`)�
�G��C9��ꁱHg��3y��wʑ"�qֲ֦�E枵��W��l�=P�ɖ�O8�곝��&5]�1�άn��+"�0ǥY��Xf���c�Og7�B�ι�%{5���Kf藈�ʸPꆫUA��8�dC ��M��O�ȋ�

Dd�_�d�?�#-�-�<5@D��%�d���ņ��`�s휹6��ʈ7���4w�Ǵ��U9�,]��3-�89��?�ad�8)��mo5�`b��ԂC�W�D�
fd�Y��($��r�#[��kNݏ*g�J��j���%�s'��d/�H�d�|�j	�
�V�hF����2Rt,U!.~ɢ�ܲG)��}岏��'�����-��G�ZE{H鵨<M�ǿ)���E��q�x2e��䂉�@���e�M�<m2��w�`d,Z������U0��U~Y�ۣ��B��OvF?-���>N
s�|{F0�{�	��8��ZK�"m���\D�ԕ�|����e���4��3���r��(h�eh���^Ҕ5�տ���0Rj�%����}b2.��5b
Y�y���kg��&qL��
f\~ef�ڰ��G��б�������9Z՗�(����!q����F.���<�Xx���y�����s�Yz�:1w��2�K��V�z�+Z�J����=Q���է���~�m�W!��q���o�t��O�����Z�">��]?�-��"�`v]�)<Z%�����q�N�*�"��q#�#�u����\цh�Kq�k��חV`��_;�_
lXg����E�}
-#��0��*g]�O�j�_T�/��cB�ޭ�o-�#I�P	��[S9q-��v�
LPL�Pʨ��O��5���(OX�A�~��G"�t���Y��7t��T���HW�������[��QH4���s�'˚����Ԭ��tg��&,�"DOq�R?z�| )#�0�-�x�5Yz��W�_��)�)~��S��a��Rl+}[	B�]��LS�'�1S��Q��5ůډUuk��vW��o�+#U�_C��;>�J#C^�$;��F�����e~�"7�碭��s.!R�R��Nă��e&xꇨV�.u��ۗg*VhU�󋌲���'��U?Q]�{	Ȑ>�]���G���vKd�D��B�	���,��ʂ���ܪG}J6k]H{E��5���%B�`�\0��2<��!㥃QF]$yBXG$vz�������s.Q�~�n��&&�m�G��䕔J��5ʆK���u#��E�Uv��e(�O���^[��ԏj&�H�_.K̏|���r���]�D0�gD@S��=UX�Su.X��P.Xlo���`:X�M�9��U#��˧��n�Mi\���h�y儛�ƙ�ʆ�։������X#Ë�EuH�1��E��$F��X�H_��L��̿\y!���?�j���Ei|S�4�d	d~hK�5t&n�:K~қ:�d����	��-�K�n���K��i�`����_R5Vppt��.�X�.�(���Q|п�7c�HGc�x.o���0�D�`0�(%�]<����7��e�:��\#\L�����K�41\�hh
���W���Bm��/���L��:�[-H����
V	�4����� ix�9ːF�Фrq����l���`�q@��W���{|���Lk02���V���ȶ	ӥ�2�IJ
#//�����)���σ��p�?�zF7Ջ�l�N��%|��_�?g��k�p�I�"[^r����	��GI�/_|�/s	��c�_�X �L8*7����}^�/)���.0�����\UjXZ��L�~9d���\e8,����Ƙ���i
F��e�\-;��u9s��x�'A-i�8ӿ������
_sޡH�Ѩ�F`�R��*�S�bJ��E��@�W���U�h�c��$C*�#M���(�u��G���)�|���Ԃ`F,/��F��/��g�a}���b�����4�˩�PELd�"㯲����I)��IS����\#�����Lq�@]$�a�]H�Z��[�r�{"���*E�HvϬwE70����EyFQ�bwF�4"\S)p�ӌjG�g������ǐ Pa�E��Ҳ,��+�����jP�\'4/Q��b�C�"dF[��3�
ﶪ�%๫C���4?ڻf(X�
#KjգM�K���/#C�uW^FXΪ��(�/K�����w�vD1m2X�2Y��Nvv
&��@c)HY,���T����&�I�o��oV�	�/"���^�#��_��}�6��ֿJ}C�4X�Ց-�r땰�u��%R���Xu�XDt��:�
�
�*�t�񋓭?.d�6�7s��5���fX���[�煕GH��0?�2�U�[�*㫐��$o�������`��)xٹH!QJ����ڌ�dY`h�9�l�|�/'�
��HΗ�z�ԥQ����"����o�od&y�^f꘧�Pv	��+��vҚ�"���	-1]��KCR��+>3P)}�,��QL#
�`DY�`d�Y�������8vKF:�W3-�BKI1���EP��^��2�.��D�@�ꇵ���
����Yv�#�;�<t��HVa���"�>��)���տ�1RB�H�_V
�Օ]�@F�}ė)�_ ��@��O+g�#��W�t���t�.)#��T�k0
���#�E
�|!��O
��P��Q��aT��QP��{��{�,����yU���4/��~ӥz�k��[��P�$
���/����x{�L���.���������;���H�U2��B��������EeW�60�U
Z�,��_Y�Sh���i{Ⱥ{r�,�	a��4v^O3ǖ�<�bl��d���]��0nɌ��Hj�=7EU��F�̯�u~T�"���(��#�i:�l�A�?�E�T�E˫;�H�1E[���E1/��C:�3#�z\C��J�:�p.��V��Ɗ����A"d
FEQ$yu�#�i���`±�r�%|�R���cT`�q�૵�Ac�ܬ�d�%$Y��]	�E3�O�a�����Kze���}@hy��*~,Ն�����T��-O*��줱Z�WP0Ӿ*R�22�&��p�:�W���u�#�YY��y��.t=��v�'?;Q�`֡�tY�#���")�f������Qm-,X�}jXD#'	Ԝ�bc&::p{�q�H��N��X�!��6�jL�ͯv���Q���Maqůp����Y�_D�_q�+������Y���>�-�B	4�.`C�&#�dʊU�`E��
f�\�";��V!d�?��9�`�
��iw0r�02
��^
��4�Fd��"��R2�9[Jd~�8EƋ��Yjx�c�pؔ��xي�M�H�r���e9�k�{"w==3����G�տ\�{��]�/k7�gQ���0�t�+��&"�k��vį�4�_)��
.
Q�@d�<�PM,yK=��2��)�)��(%�u>�<5��0��ش�4�e�尺��$���j����;��z�~ڗ����'���F��_�A��_�����[l���=Z}\� ��)`�q�� �纷�7>�]���2�@�3A_|���ݬ���}I:�flw|�
{��eH�U/iq�lE�"a�
A���A���M�_�S��Q '��b��[��-��r�e�!) ��E��ǔL�/�E��IŠJ�>y������E��)�*������Ow�W=�C�nM3�l������7U
!mw|?��5ȷ�B­z�L	a�S>�f����ha�VJ���;�!�Z���y	_DN���2�m���<�'����/*�/A��/�Wkt��[�������p���wA9��8CIs���;��e������xgD�	&���4$e'��傅^��r�Dr�p�(����x$[s1��F��q�9�g��j��ص��/�}^�nH��"�JG"@NE�i_�����V	��_�*~$S���:ۻ�V��*
�N�Ĝ��MiT%��fa+��F��!�W�����`���"�-K�{5�\s�K���(�����Wl�D$�����(��9A�ȎX�r��+_D�T,rҾ(.~�m�E�J�2�/�4�J�_�~��7�����Eݔ@�X��{H�ݝ�D0�����`�޴�
F1�.?YQ�]G]!2<����!#RBK��9(q��W�2O4�a��l��P�xx^�_��B�_�J�;ߧ-��_�[��"�,7,G5*����q3����/��\7�J�Φ�\#��5���C��d�f�ָ���j$$�y�F��ڙ(�_��U����uk<�%�0Hgi�]���"�;
��J��b9��^�Q��zKG���=y��~X��*��`�HI\�:�|��\y¶Ys]�*�Ϫu���F��!�kP��!)�bVTD��F^��_c�`��Pi$�VGRD��B&���e�M1�/��4Y�.��J�Bqne�l�+��B�5��W�HF�E��(]��'QB�
�?6���U �?�+�T{�����I`�T���Q��5����")��l�0��F5���Wcyy��bT�/	�@LP�$��hZ�=�s�F��L���x*LP.H:Q��G�𿧈�z��r{��<���%���9	,�q=	�j'�Q�`T�?�Eh1Q���Q��B�Od�Q\��F��d�����l�(����$�Zqb��4�V��d�վ�E5���+��|$3���(D����Sc�{ʳ��)`4h	,8���rȸ���S���"���"=�b��X�=�%A����e���^�Y�|V(_�4<�җ��`<Q?�0�j�:P���	_~„W�({$7�:Æ��D���������gW��a�����T$���I��*����WE-��9�Ni$�~�TC�hjQ�
�Q}��(�y�qC���qX���
�̈́/���Cx
�E��̯j=�"��0_G���Vq�nJg/Q�.`���v9�`����
���gи�!�#{�ʸ;y�-9a��=R<O�l-,}R 5��į�"��)�j�VNp�1
�Ś�9��6��(��"B{��|�%+�╏Dq!"e�E���C,=���ٝX!�df{e���%�z�H̯.~��TS#��tP�R�(�F	��[�1ܘXڤyi�0ʕ�(G�J�TC����`�M0�r6�g��+e/��|�g��=H�,��� R�;��D�1��2G��D	d��e<1"�Q�!��"r4T0��f�ʷ��e]rV���mY�r�^�%�/�����LA�����
�&&����84K�5��PZD��t��ů�D���/S*����U
5����3�#�?��]�D0��`]��Qc�|���b���0J&�Q$/�����N�(VkN���?c���@�F��2^�G�� ZdG�"^]��ApU���
�\e�W�E$�z�U��QHb��o\��/��T��w�`�[�Q�t0ʪ���K�MX��җ%�0�PĜ��ZK���3��4�+�Ж�A"�M�"bDŽ�D��ů�,P����_T�Q��{��"2QD_.	��,�?�|h�Ҵ/X�\0�,����l;�Q�F	��L
���LI�+!�Q��5�X�{f�I—l4�t���ޒ�^s�0�#{��|ɨVQ
�+IUA��X������5��H�W���|	,_�`�

�F
T�.L��i.eERE:E֋��Fu��(C��,�lSĨ*#���1cc�h�0^	lj�x������`$"N�Q�H��i�j�}QL�����T��EYŏԻ�/��e�q-�Qsk|�YbWQIU�`���TFQ�?�ya�'��.oo�U�bѼF���;#���qD+/��n8Y��PX������^���U/�UbB4����_�]�#U�Q��E�-�9��vA��!���Q�|�(���T�b�.�RY��Y>Q�?+�¼��դ�"�DU�Xz�j5���c�E�9�#Z$�`�,�,ͫr��E�	�@8o�p��
?�'(��FK���*�Q�rHj�F�-����W�F�U#�b�7���ɂ�Ns�W{��ճ�H/�Ac����:z2��䅤�-�d�@����f~Q�f��(zZ�hH��/j^IcQ�L%�Q_T0j�F�B��t0J	a�!jr�FI9��+b��"s�؉�5�Ǥu��^�}�*2���� r�e��哮cU�_	3���:�e���F�`�6uWw��(I��Q�0�^@��IncwQ�UsGNFXp~�|K�������-�3�D�y�W0r�}e(ٙ_�r����_]h>
��f�%���Q��`�3�Y�Q����ER�F�Na�0ϼ���H���h�S��% r�.��	T��n,L��^�NF�)xL��_DY��/~��(�_�c�5Tu�FM��*��z!�Q����e���OtGX��c���Y��vIA�==	Ӊ]�A��jE@����f�']�_�]��Կ��>�Oc�'��>5�>�>�f��䂑g�/�tBj<Ɋ��Dl���(���|=Q,1�PFc�΅1O�*��f^͢�h<���R��J���T>R�-��c��ukFqqi`5���f*�vǧ�Y�QFVa��0�&�e��(�y�B���6�e�'��Qdf���I�M��ԜH����U>F4�<u�J�i��X��bo���弔T���E��_IA�6RZ�+���~"U�b����\`�j�@!$Lz$�v��vQ����:?��Z�r�C�BeFN_����E5,�(�)M����:*~��T�ԕ��]�Yɕ^�O�Y9�j��F��
�O=����ZM-���
.!���U/��@�w��ƓW�	�Qj��*$L�\Ag�H���2���%��&꧰T�qQn�#�����/���sN��U��f�%Z�$��,�X#�*e����-�7VI^REjes����'��A.XF����	B�� �2�����=��|Qn�#uW�H��G�����J�e�R�h$�X#҃5�D��
F�T��FS�xud�;�d��F=ռD�S�N�Wz6懫�1�E$���F�#�M����_�S�H��iH%�ػ����
��h�`�X�ZQ}�+��Q�(V9�t��t0&�y`� D�~��"VwUW�����W�WM�&�R����3��b-�~/I��Ѩa�K-�(�"L]��
�I7RT-9t]f��qq"�	��^(_4���;���/�>3��Dk$�����
F=�(���,�be^��KP�H���`�3��COb�H]^���yQ8�+�W���i4݋_�m�U-~Q�����Q�FIK4+�>�G.eY�U0��dWU{4筻�YR[[�

^"��c/+������ל�X��&���cq}j�4�n����=e�_uĜn�/f��BXGΏ�uS�k��/�2wȧP�Q~��h���(�f�H�s%W~&����¢rX�Ux3K��`"g���=��0��P���Ee�({��nX#�&�q�3��'~Q?�/�S��_�j������כ\0
���2�W�*Y�iNj��\�sG�K6���C�����b��5��2}�Awu_�&�J��F����I^��Q�0*	�Ƃ
Fu-�R�D�ޫ1�)���*G!Q$�N�p���ЏxS��V56�
�������R�4�o?�X��9m�|K`�z�kCk����˥n���re(b��*[˜n�N^@�"�<�+3jN��5-��e�_ԥ��X��w��$W#2�2\XN�s��
FC*�����$���Q,}����##@<�̗���e��R�
��E�B���E���HI�(���`ԃ�H!�z(�fT4G���iM_��'����dG�������Ij��V��w��������@$�D�sZO���Q�t0�p���a�c������Ge�LzTVd�Aq��Ӻ�H���J����_4&$��aԪ��u{��Iʩ����kvX��z/�L��ʙzz5���<�l�6��GM��۞��E����c�+���hGcR�.�� �ӺH�aD}�j��c�:��T�d�K��qI�,��bU�ې��z�C��'Ŋ�+����￳U�{w�AI`4�*��(�������]�M�����\2>\3��nI`�T6�Ό�GA���3o$\�3��z��{˰K`�W��ӓW�O4�Ia���j�u�d���F�S�g��v%�u0�i��+׹�Q���.ȏB�Z��.  ��x���r��m��K�k���e�b6?��U���7;�e-gz�.��j�k�*�Ӧ�X��^}���G /w���FK�ɺ��R^���y�0�Nt�"ck-e�_��,�S���{uGۃ��/�|t[�-߁ QQ�9V�����p���W��f��_q�2��]���3n��y�	#￿5��yU&�|��f�`�.S��"�g>���]�WL�C���T翎�t�nsWGX�g�|�w�ثA��W�;tf\���Q0O��%�Kl�B��I)X�aßH���*���,,6^)~,����W�-��|�P~Ek�WL~��A�ł,��}a��O}O��ၿ������9��~�M�Wl�ER
60e�յ~����˦����8v�1��|s2й�W�[��W$3���Xd/���`1������7��n�U�7���X�z^u�_��F`�琞�E����!�2A2�[��m1�Co=����t�K�_��1��,�ϋ|�e�j���8��	��+�+�cI��f���'�z|5)Xa�.{��.�O��
_e��(�%_Q~�+������
¢$�����D��|�ࡲ���V��n��<kA�e�_���X,l��޼�Vm[�w�a1��]���z#�2E��L��[��ӉH\u��vo9��X쑂]��; �r�H���*�:��Wg�ud�/f6�=SJ����TB�W�t~��W<"��,aљ����i��Oc[�����ͩ��L��u�p�~�&	YaEi�y��3"�(H��b����5��jP^�W�sۘd��KS�ZP����#�W��&*��j9H�1���y�dz��1:�W�9���|��>�>�gVq}�f�D�A���o�����AX��Z�;6_�ޗHV,u�
	@��*��N���bqzP�xT���$?����Z��]
��}�:뽤�)�.����m
(&���aA�e�O<4�"��z���I�f�s�wr	�ع=zJ�B���f6)�z��S#����~iRn�k�0��G�ſ���Gg�\�gG�:K�9���z�a��|U��OH�#�uؤ��;&j᪺;%X�VW]�5|w�-�^���g-�����>&�������p��[��щ������k�,��{�ψ�bxժ���2�n���50VRҨ�<G�wW	�^�/O0�+��e��-���"y������흋_"|��ԧu5{jV��~�v�O�=ȇE`11��([��	0��O��$xV�[S�W�Ǫ��e�f���q{�]ٿvi������[�����ߋ����?����r�R�JY�Z�|�{�	�?_�lM��@���/?��,LaQ��u��
������ۯ��I�����u
�uk�R��&_Q������AX,���J_"v���WTW�Vda�`��@)��~:
���K���#���v��ga��}��mZ���f]��wDV��̈ #Aضtˆ��^�q��ϗ��c�da1��6��l�ʚ�89�����;�9(�J�Ƀ/���>�cխ����䘼I�YX�(K��7�>�{�z�+��P�x���ܲ�+��k������AX�fa�ݥ�g�q��p�}�P�zM���&M(j��Ӻ���A�۰�/(&�	�� ����~OJ.ֻ�k�;�TG�S���f�X�������݆�[;3o��^����M�cX\�Ϋ(�w˼6����ݘ��>� v�cb��-c�0���z�:bu�vÒ_�tò�BJ�X�����C�7TT�k��E��s2 뾅��俇�+���-�wդ��vK/�S���	07�lL���IEND�B`�PK`x1\��&_[_[assets/images/landing/08.pngnu�[������JFIF``��C��C��q�"��	
���}!1AQa"q2���#B��R��$3br�	
%&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz������������������������������������������������������������������������	
���w!1AQaq"2�B����	#3R�br�
$4�%�&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz�����������������������������������������������������������������������?��(��(��͎S�:R�}})�c��?�zh�'���֔����=���Lw?���������{Q�@�ׅ�ߓ�I�=ǧo辝��5`;$�<ry���9�ٙ�7'��t����?��c<q��?���?����3I����S���@&A��q��7{���ʠ�3�׵.��?:�G�q]wD۽���ѻ�~��]C�z�΍��~t��_y6�q��tn���P���p���_y6�q��tn���P���p���_y6�q��tn���P���p���_y6�q��tn���P���p���_y6�q��tn���P���p���_y6�q��tn���P���p���_y6�q��tn���P���p���_y6�q��tn���P���p���_y6�q��tn���P���p���_y6�q��tn���P���p���_y6�q��tn���P���p���_y6�q��tn���P���p���_y6�q��tn���P���p���_y6�q��tn���P���p���_y6�q��tn���P���p���_y6�q��tn���P���p���_y6�q��tn���P���p���_y6�q��tn���P���p���_y6�q��tn���P���p���_y6�q��tn���P���p���_y6�q��tn���P���p���_y6�q��tn���P���p���_y6�q��tn���P���p���_y6�q��tn���P���p���_y6�q��tn���P���p���_y6�q��tn���P���p���_y6�q��tn���P���p���_y6�q��tn���P���p���_y6�q��tn���P���p���_y6�q��tn���P���p���_y6�q��tn���P���p���_y6�q��tn���P���p���_y6�q��tn���P���p���_y6�q��tn���P���p���_y6�q��tn���P���p���_y6�q��tn���P���p���_y6�q��tn���P���p���_y6�q��tn���P���p���_y6�q��tn���P���p���_y6�q��tn���P���p���_y6�q��tn���P���p���_y6�q��tn���P���p���_y6�q��tn���P���p���_y6�q��tn���P���p���_y6�q��tn���P���p���_y6�q��tn���P���p���_y6�q��tn���P���p���_y6�q��tn���P���p���_y6�q��tn���P���p���_y6�q��tn���P���p���_y6�q��tn���P���p���_y6�q��tn���P���p���_y6�q��tn���P���p���_y6�q��tn���P���p���_y6�q��tn���P���p���_y6�q��tn���P���p���_y6�q��tn���P���p���_y6�q��tn���P���p���_y6�q��tn���P���p���_y6�q��tn���P���p���_y6�q��tn���P���p���_y6�q��tn���?�SP���p��~[�����/�����Ru��?�%F�֌�-�O��w$��`�_���)��3ǹ��@�֣�2(���s���}�2���i0=8�S��W�H�}02~��=����ϯz5������qJ��?�!�]���?��:�pxn�c���ƀ$�����zZ��
(�����wc����?8Q������z���N��׹��랞ԇ���>ǹ�</Nx���c�y?����5��m�
I�?�_SI����l��ۿ����?��8�];v[�o�K���?��d��?.����=)���נ�_J��^�N�C�pq�3�}��=���I_�����kn�h�ϻ�m�����=�q�\`z��
M܁��q��j����>���0����x��^�^��;�����z�ӷ��qo��s��Ƃ����O�<����3��Jo����l�j6�k���A{O^�|�����ʍ��o�eT����G���i��[��A�=~�O��Ww��������ʩy��֏3������
o�E����?���]�v��To�;�*���Z<���G/��5������K�w���Q���쪗���h�?�?������P{O_���/���o�eF����^g�G���h��r���[��A�=~�O��Ww��������ʩy��֏3������
o�E����?���]�v��To�;�*���Z<���G/��5������K�w���Q���쪗���h�?�?������P{O_���/���o�eF����^g�G���h��r���[��A�=~�O��Ww��������ʩy��֏3������
o�E����?���]�v��To�;�*���Z<���G/��5������K�w���Q���쪗���h�?�?������P{O_���/���o�eF����^g�G���h��r���[��A�=~�O��Ww��������ʩy��֏3������
o�E����?���]�v��To�;�*���Z<���G/��5������K�w���Q���쪗���h�?�?������P{O_���/���o�eF����^g�G���h��r���[��A�=~�O��Ww��������ʩy��֏3������
o�E����?���]�v��To�;�*���Z<���G/��5������K�w���Q���쪗���h�?�?������P{O_���/���o�eF����^g�G���h��r���[��A�=~�O��Ww��������ʩy��֏3������
o�E����?���]�v��To�;�*���Z<���G/��5������K�w���Q���쪗���h�?�?������P{O_���/���o�eF����^g�G���h��r���[��A�=~�O��Ww��������ʩy��֏3������
o�E����?���]�v��To�;�*���Z<���G/��5������K�w���Q���쪗���h�?�?������P{O_���/���o�eF����^g�G���h��r���[��A�=~�O��Ww��������ʩy��֏3������
o�E����?���]�v��To�;�*���Z<���G/��5������K�w���Q���쪗���h�?�?������P{O_���/���o�eF����^g�G���h��r���[��A�=~�O��Ww��������ʩy��֏3������
o�E����?���]�v��To�;�*���Z<���G/��5������K�w���Q���쪗���h�?�?������P{O_���/���o�eF����^g�G���h��r���[��A�=~�O��Ww��������ʩy��֏3������
o�E����?���]�v��To�;�*���Z<���G/��5������K�w���Q���쪗���h�?�?������P{O_���/���o�eF����^g�G���h��r���[��A�=~�O��Ww��������ʩy��֏3������
o�E����?���]�v��To�;�*���Z<���G/��5������K�w���Q���쪗���h�?�?������P{O_���/���o�eF����^g�G���h��r���[��A�=~�O��Ww��������ʩy��֏3������
o�E����?���]�v��To�;�*���Z<���G/��5������K�w���Q���쪗���h�?�?������P{O_���/���o�eF����^g�G���h��r���[��A�=~�O��Ww��������ʩy��֏3������
o�E����?���]�v��To�;�*���Z<���G/��5������K�w���Q���쪗���h�?�?������P{O_���/���o�eF����^g�G���h��r���[��A�=~�O��Ww��������ʩy��֏3������
o�E����?���]�v��To�;�*���Z<���G/��5������K�w���Q���쪗���h�?�?������P{O_���/���o�eF����^g�G���h��r���[��A�=~�O��Ww��������ʩy��֏3������
o�E����?���]�v��To�;�*���Z<���G/��5������K�w���Q���쪗���h�?�?������P{O_���/���o�eF����^g�G���h��r���[��A�=~�O��Ww��������ʩy��֏3������
o�E����?���]�v��T��?��u5G�h���C�y���?�Z\�[�e�}�������_��]��<�?������^��1T��ׯ==>���ӄ��>���g�����/��E�t_ׯr����?��>����ߏL})	��=�����.1�?Χ��]��*��=}v*2��:u��.����P7L�8>���T��s�~Y�����M[�O��T���^ߗb�==���{�}��K���Fq�z�Tt������9�K��k��X�i���?��*�=�1���a�=0{v��U��}z�T���(�?���N߇>������G\������>q����9a=�����q����X���ۚvkoKUkv,���a���p3�)�I_�옟m�K�63��=?����-�n����}:z��.?���
O*/�����N�M�����ݐ龒������s�������y�?�zG���_�ʋ�yG�|/�U{O#7BO^u��_������w�=�~��Fd�N=���zw�����R�0��G�~�)����|�;�4������OO.�G�__�o�=�S^��C�<b��i�y������?i���w������/���e���;�<��kԼ��_��?"����O��c���������G���/�_���w��4y�O�שy������D?��/����G���?�������}�����O���}?#^��C�<b��i�y�������?��/��zT��������[�}?#G��z������Q�C�<b��i�{X�#����?��}Q�?�K��zyo��w��5�^D?��/����G�����Q�c���������G���/�_���w��4y�O�שy������D?��/����G���?�������}�����O���}?#^��C�<b��i�y�������?��/��zT��������[�}?#G��z������Q�C�<b��i�{X�#����?��}Q�?�K��zyo��w��5�^D?��/����G�����Q�c���������G���/�_���w��4y�O�שy������D?��/����G���?�������}�����O���}?#^��C�<b��i�y�������?��/��zT��������[�}?#G��z������Q�C�<b��i�{X�#����?��}Q�?�K��zyo��w��5�^D?��/����G�����Q�c���������G���/�_���w��4y�O�שy������D?��/����G���?�������}�����O���}?#^��C�<b��i�y�������?��/��zT��������[�}?#G��z������Q�C�<b��i�{X�#����?��}Q�?�K��zyo��w��5�^D?��/����G�����Q�c���������G���/�_���w��4y�O�שy������D?��/����G���?�������}�����O���}?#^��C�<b��i�y�������?��/��zT��������[�}?#G��z������Q�C�<b��i�{X�#����?��}Q�?�K��zyo��w��5�^D?��/����G�����Q�c���������G���/�_���w��4y�O�שy������D?��/����G���?�������}�����O���}?#^��C�<b��i�y�������?��/��zT��������[�}?#G��z������Q�C�<b��i�{X�#����?��}Q�?�K��zyo��w��5�^D?��/����G�����Q�c���������G���/�_���w��4y�O�שy������D?��/����G���?�������}�����O���}?#^��C�<b��i�y�������?��/��zT��������[�}?#G��z������Q�C�<b��i�{X�#����?��}Q�?�K��zyo��w��5�^D?��/����G�����Q�c���������G���/�_���w��4y�O�שy������D?��/����G���?�������}�����O���}?#^��C�<b��i�y�������?��/��zT��������[�}?#G��z������Q�C�<b��i�{X�#����?��}Q�?�K��zyo��w��5�^D?��/����G�����Q�c���������G���/�_���w��4y�O�שy������D?��/����G���?�������}�����O���}?#^��C�<b��i�y�������?��/��zT��������[�}?#G��z������Q�C�<b��i�{X�#����?��}Q�?�K��zyo��w��5�^D?��/����G�����Q�c���������G���/�_���w��4y�O�שy������D?��/����G���?�������}�����O���}?#^��C�<b��i�y�������?��/��zT��������[�}?#G��z������Q�C�<b��i�{X�#����?��}Q�?�K��zyo��w��5�^D?��/����G�����Q�c���������G���/�_���w��4y�O�שy������D?��/����G���?�������}�����O���}?#^��C�<b��i�y�������?��/��zT��������[�}?#G��z������Q�C�<b��i�{X�#����?��}Q�?�K��zyo��w��5�^D?��/����G�����Q�c���������G���/�_���w��4y�O�שy������D?��/����G���?�������}�����O���}?#^��C�<b��i�y�������?��/��zT��������[�}?#G��z������Q�C�<b��i�{X�#����?��}Q�?�K��zyo��w��5�^D?��/����G�����Q�c���������G���/�_���w��4y�O�שy������D?��/����G���?�������}�����O���}?#^��C�<b��i�y�������?��/��zT��������[�}?#G��z������Q�C�<b��i�{X�#����?��}Q�?�K��zyo��w��5�^D?��/����G�����Q�c���������G���/�_���w��4y�O�שy������D?��/����G���?�������}�����O���}?#^��C�<b��i�y�������?��/��zT��������[�}?#G��z������Q�C�<b��i�{X�#����?��}Q�?�K��zyo��w��5�^D?��/����G�����Q�c���������G���/�_���w��4y�O�שy������D?��/����G���?�������}�����O���}?#^��C�<b��i�y�������?��/��zT��������[�}?#G��z������Q�C�<b��i�{X�#����?��}Q�?�K��zyo��w��5�^D?��/����G�����Q�c���������G���/�_���w��4y�O�שy������D?��/����G���?�������}�����O��Î�}���Q�!��1ߴ�
<��_��?—���?�����>����K��Y|��H�ן�SÎ�_�����+�<��_��?&����O���᧯f��_��%��^l�==>��*`ބ���
��(H��؈���;T.~T�+�V
�\~uj�)[M|�1��spn�����I��}�E�������ڦV��==����)���'����a�������_�]W}��uF��K��[>��|�^F���q�o^���R䊪	��?�^��qaNG����^���G�����Dt�������L=���?�^������~������ʜ3���?����PY%Q@��o<{���H�߯|v����J9ǩ���*a����Mo鮾@1������3�N�g��>����������]�@���ڇ�����w��/멫ER((��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(���<Zq��u��ڙ�:7#�8��=�g?�u�18����,uģg�O�J�5��<�D��&�{�"���5Ѳ>��jʞ?�j̉�z�����W��ר�o���ҦJ�ߧ�8A��������q�r���Ք=������J#۞����ڬ�A���������Y5���{����w���G��-���>)�y#��?��Tt�1�B���P�}�w�o��KER>߀���Mc�ӏȚwo����L=O֟%�����={q�]������~�|����s��؟����E�g쯞�{���U?���^{�����qw�}��j(���(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(���<hq��]g��#?Ҹ�8#���v�8$A���i���Ƹd<w�?�Lu�=���^M�g��mb��Ⱦ\��M� ������Β��׏²��C���=�Ҵb9_��?�Z��fT�M/��hF�����⭯~I��~���U(�#��{b�!'���[�%��Z�ռ����wA�w�++l[�=jA����񨗠��>jE�=A�2�Y?��Ke�KER��:�����Q�[?O�]��G�z�tZ1&��=�@�����&�M�=d���?�ꚲk���̡��F�QPj��׊	��@�ݍ��$/�?:a���o1�v�Ͽ��T��G�>�ߥi7o?�O�n�r����nky��ʐο�o��k	�1�1����c�@N?�j��o����:�u����ߑ���Ə=�߯��;����>���_�Oؿ����%s������_�7�4y��ƹ߶7��������=���^~��W>���_�_����~��G���o�k��c{��lo�/�ؿ����%s������_�7�4y��ƹ߶7��������=���^~��W>���_�_����~��G���o�k��c{��lo�/�ؿ����%s������_�7�4y��ƹ߶7��������=���^~��W>���_�_����~��G���o�k��c{��lo�/�ؿ����%s������_�7�4y��ƹ߶7��������=���^~��W>���_�_����~��G���o�k��c{��lo�/�ؿ����%s������_�7�4y��ƹ߶7��������=���^~��W>���_�_����~��G���o�k��c{��lo�/�ؿ����%s������_�7�4y��ƹ߶7��������=���^~��W>���_�_����~��G���o�k��c{��lo�/�ؿ����%s������_�7�4y��ƹ߶7��������=���^~��W>���_�_����~��G���o�k��c{��lo�/�ؿ����%s������_�7�4y��ƹ߶7��������=���^~��W>���_�_����~��G���o�k��c{��lo�/�ؿ����%s������_�7�4y��ƹ߶7��������=���^~��W>���_�_����~��G���o�k��c{��lo�/�ؿ����%s������_�7�4y��ƹ߶7��������=���^~��W>���_�_����~��G���o�k��c{��lo�/�ؿ����%s������_�7�4y��ƹ߶7��������=���^~��W>���_�_����~��G���o�k��c{��lo�/�ؿ����%s������_�7�4y��ƹ߶7��������=���^~��W>���_�_����~��G���o�k��c{��lo�/�ؿ����%s������_�7�4y��ƹ߶7��������=���^~��W>���_�_����~��G���o�k��c{��lo�/��_��o?_��>���_�_��<���i�\�q�W:/I�����:ݩ�?/_��'I�����"�d���
�i�v��$�qO�Ɏl�����UĐ7��8�ϵf����[X�3R����E1<��ԖQEQEQQ���4�{�)�O��>�]����,�)'�7n����Z�צ�l���"SK��&`?�}8�������+]��zg�8���^?��T�������td��}Ϻ��;�z�y�_��_�7�5������Ə�7�����{�|��������_�_����~��G���o�k��c{��lo�/�ؿ����%s������_�7�4y��ƹ߶7��������=���^~��W>���_�_����~��G���o�k��c{��lo�/�ؿ����%s������_�7�4y��ƹ߶7��������=���^~��W>���_�_����~��G���o�k��c{��lo�/�ؿ����%s������_�7�4y��ƹ߶7��������=���^~��W>���_�_����~��G���o�k��c{��lo�/�ؿ����%s������_�7�4y��ƹ߶7��������=���^~��W>���_�_����~��G���o�k��c{��lo�/�ؿ����%s������_�7�4y��ƹ߶7��������=���^~��W>���_�_����~��G���o�k��c{��lo�/�ؿ����%s������_�7�4y��ƹ߶7��������=���^~��W>���_�_����~��G���o�k��c{��lo�/�ؿ����%s������_�7�4y��ƹ߶7��������=���^~��W>���_�_����~��G���o�k��c{��lo�/�ؿ����%s������_�7�4y��ƹ߶7��������=���^~��W>���_�_����~��G���o�k��c{��lo�/�ؿ����%s������_�7�4y��ƹ߶7��������=���^~��W>���_�_����~��G���o�k��c{��lo�/�ؿ����%s������_�7�4y��ƹ߶7��������=���^~��W>���_�_����~��G���o�k��c{��lo�/�ؿ����%s������_�7�4y��ƹ߶7��������=���^~��W>���_�_����~��G���o�k��c{��lo�/�ؿ����%s������_�7�4y��ƹ߶7��������=���^~��W>���_�_�������4�<{���s���jU��'��/�����d5]>���o��:!�P}������V,w
N+����WR^�����Y�5�_w����i�������*l{��Ҧ<�Q@�� ӿ��~�~���"������x�F��]n�ZW	�g�W������c/���ӷ�B3ӯ�GN�_�qZp�:�?�͋��Z�j'�T���]K���uO��j�}G������on��q�3����FZS�=�?AR��A���)�����C������u�����h��C#���Qԃ����:kg�*�O�A5�h���'�|I���\�t���]&����ğ�ur�_��C��j(��5!v��?��g�/RO���?�j�3aH���V5ܘx�_�������U�N�Ƭ�/����%�9o�7E�wg6�1�zc��c�mȚĿ���M�w�!�L��U�r��U��ӺO}/�t"�8T�����ٵ�#�m
�����i����6���?��vTP���(U���	��g�#������O�3G�#������O�3]���W�����Y}V����6q���_��i��?����_��i��?��vtQ�����O���i�g����?6��������?6�����gEY��}���,}V����6q���_��i��?����_��i��?��vtQ�����O���i�g����?6��������?6�����gEY��}���,}V����6q���_��i��?����_��i��?��vtQ�����O���i�g����?6��������?6�����gEY��}���,}V����6q���_��i��?����_��i��?��vtQ�����O���i�g����?6��������?6�����gEY��}���,}V����6q���_��i��?����_��i��?��vtQ�����O���i�g����?6��������?6�����gEY��}���,}V����6q���_��i��?��bkok�a��u�/L��I!�[��Y����C�Ҙ ��1��Sda��>�To��;SD�Q����3!D��&T3C%��D�� �H�z7e<G�j�_w��?KU����
�E7�<7o�]x�K�*�H��+��C�-<�4�]��p���̎��0�iL2m��V��?U����Ԯ�]-�T�yc�j�%�;�6ӻL�c!Vb@=�����I�I%}�06^b�#
�v�X��RNm�E�|��i���	��!XbE5���Ȉ�i�B���.�͓�5{������������'�����	��:\�[�40��Q�v)X왋I����l�f폋���
��ݝ������ ����#p�ZE`��vnm���.�1ɶB�Uex�w��	$2[���"8eE�Hⱂ%tX�%F��IU�Y#8�#�G`]'�|+#F��+ta�l�B���2QWtn����Q������5{�������������S����
Inn��U�B�v��Q6�Ц��^5�����qfI�J�ư�-���Կ���"�޳д}>w���l�d��y'�Y�k�n�R1�t�ij�s�[xWcP5h��^����c괿�������R���O����h��R���O����k��������~�>�K���8�G�/����ȟ�f��G�/����ȟ�f�:(��^����c괿�������R���O����h��R���O����k��������~�>�K���8�G�/����ȟ�f��G�/����ȟ�f�:(��^����c괿�������R���O����h��R���O����k��������~�>�K���8�G�/����ȟ�f��G�/����ȟ�f�:(��^����c괿�������R���O����h��R���O����k��������~�>�K���8�G�/����ȟ�f��G�/����ȟ�f�:(��^����c괿�������R���O����h��R���O����k��������~�>�K���8�G�/����ȟ�f��G�/����ȟ�f�:(��^����c괿�������R���O����h��R���O����k��������~�>�K���8�G�/����ȟ�f�xQ�sk�o3��WeE/��������������At����"H�X]�u����ϭt�R����)~E,5%�_�9���Ty6����	�*8���5f����?��L�췶>���n�~՗m7C������}�D���w}��u]���RP��Ii�z���lΦ7�=��*�9�d
�h�}+E�s�Y�^_��u�j>�(�((��F8��GMY���������}=;J�+���Ȝ��^�+O0@FFO_�z�s�wM�X���_�b�M������v���[N��9z�u��5k�ﯗ=5�JWӖ�mo�0�%�t��Y�#��\���;;g��F�
*Uz�����h�ԟI�L�O���6����Ʃ?�Կ���"�������W��ZZ~�K���8�G�/����ȟ�f��G�/����ȟ�f�:)�f�u�_��Z_�����?��ͧ�D��4�?��ͧ�D��5��G�j�_w��?KU����
�g�#������O�3G�#������O�3]�}f�u�_��Z_�����?��ͧ�D��4�?��ͧ�D��5��G�j�_w��?KU����
�g�#������O�3G�#������O�3]�}f�u�_��Z_�����?��ͧ�D��4�?��ͧ�D��5��G�j�_w��?KU����
�g�#������O�3G�#������O�3]�}f�u�_��Z_�����?��ͧ�D��4�?��ͧ�D��5��G�j�_w��?KU����
�g�#������O�3G�#������O�3]�}f�u�_��Z_�����?��ͧ�D��4�?��ͧ�D��5��G�j�_w��?KU����
�g�#������O�3G�#���si�-?��^�'�-�M�w7�����K��M����i x
Nѐe�,a|���VQ��G�M$Ƒ���%����V�2���oc�K�|���{�G�.�D�O#���!�����O���i�gG���d�Y峴fL�98W8�t���R���O���ƪ�����t[]���e�_趷b���F�QIq��C���U]�����'�M-!�%׼B�+��I����dX��Gm$�7Mn��$�+�N�����~�>�K���:_�G�/����ȟ�f�h��uf~�g��8���k��w���^]��}�G/�&k��Fdh���R�U�
���l��t�ws,v��;i�u�����r�nfq�tҕ�lQ�����O���i�e/�G�/����ȟ�f��G�/����ȟ�f�:(��^����c괿�������R���O����h��R���O����k��������~�>�K���8�G�/����ȟ�f��G�/����ȟ�f�:(��^����c괿�������R���O����h��R���O����k��������~�>�K���8�G�/����ȟ�f��G�/����ȟ�f�:(��^����c괿�������R���O����h��R���O����k��������~�>�K���8�G�/����ȟ�f��G�/����ȟ�f�:(��^����c괿�������R���O����h��R���O����k��������~�>�K���8�G�/����ȟ�f��G�/����ȟ�f�:(��^����c괿�������R���O����h��R���O����k��������~�>�K���8�G�/����ȟ�f��G�/����ȟ�f�:)}f����|�,}V����6q�������O�5S.�z�g�'�(��g�����^ޣ�_�
ai/�ɾ��͜�i7Iɚ�N7�돓�Eop���t�N������ן�͸�~������)ު����������3��IÖ��5��ۗ��S��N��?�U�=G��zķ�r���?��ּG;~���XN<��ϵ��+���:X�ET����i���E%pp��O����4��s����8z�'�W������xX������ h�?�������?ִ"���O�/�
��/��}W�-]_�?ߪQ�U�KWW�������(�E��AS�A���)�����C���?��Ų�_�-QR21���uH;~�N���~���t���]&����ğ�uͷO�A5�h���'�|I���W/��!�7�~�֤=�*ZF8S�z�Y���L�Y��.��~c߿>�k��=}��X���+z�����WU����Q8��虣��-��p-�f�ֺ��<*s.����Z��<F����e��A����QE��QEQEQEQEQEQEQEQEQEQEQEQE�K|{�G�/�D�	~���W��%�j��]�	/�|!��߇���C�|=���\x�mT���.���
ͫY���kגY�����?eMV�����u����b�V��~�狼>����ω�r0m_B�&�so��Zy�i^1��?}*��0����,�5�?���=g�Z\�Zj��M�W�nu;A�W�<+�/]�_k�z-ؗN��5;�xgP��e�5�dM�� �{⇄4��dߦ����Ɵ��K�����\iZ�|A�O��{@���4�_O��[_ZM�,a%}��¿|1���ƺ��hV��T�5K������Ea�����H�,l��[�������x���4Mj�� �^���^�����?��Zj��a�y�ҵ�,t�p�~�L�5�1�};]�Ԭ�f�v���S�z(��Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@���e����"α����t���Z~28�����?�������z�i/�h>��%�g�ZV�����X��;f�W�����g9?O�XV�
�?�5������Ef�]��w�z|�޴%��+3`��(N?/�k鰟RI��[3��5�xx��J֖����f��_��z9��8`~��`����^�:��U嚃��O��=�ԓ���
��^|���s��U]�Ǜ�EW!�QEQEQEQEQEQEQEQEQEQEQEQX�!���|?�i�e�ص�S���+�K۫)ഹܠ���r�PHِ3@��ԟ��Q$��}���?�i~%����=����Z��t�ZŶ���3B��ժ�בMk�^���n�=��Z���]j��e�ZF�tZ��'�W�m��l��7|�u�"��:+�=��w�s�������E��cS�u�?�/emme�|=���Ǟ�F�~�ǃt[Ş�m[..c��[��
kz]���k%֟���O�V�<����������?�Sxv��vv0,Z������mE��R��7wV~�4;(��^[Y[Bw��~Vw��ӹ�
�ꮌ������VVVVXA�E:���g�u�|�E�O3���3����L���5�#�]���q������h�$Ϸ�bYɯS�AEPEPEPEPEPEPEPEPEPEPEPEP_�?����yU��Ǿ3�z����T��\��7��k���y�A��]�Ezu}b���~9�<?����͛����=3�ⷡ?(�#�?�sVG��̚���Q��
׿���M�7e�tO�ԿEVQ�x�F��]n�RW_�*�<w��N���?�)+�����z8�/Y~g���{��?�"�_��ZЋ��Y��kB/��D���P��"�}G�����Q�_�u���~���Q;�m��YN���0���B�?�*a��?�:��~H�[/E��E##���Qԃ����:kg�*�O�A5�h���'�|I���\�t���]&����ğ�ur�_��C��jk��1N���?�����u�_��7�!]M���+����S��u��>��G#��J�c�$�ڗ���]�q�]�}-�����x��K��n&�?�x|�6QE`uQ@Q@Q@Q@Q@Q@Q@Q@�G�)�x~����m����>|�<ma�j~��=��톑qmk��X,V�H��/-a��]�2k���&���i�C�_�����>6�G{/�^7���ď$�Lе	,�=L�o$�amr�ƦG
�u}�E����B��Y���I�9$�-�y���|���>�O�~!|b���ZY���W}�/Xj��mb�i��ʚ}��z��iSĶ�z��M
I��@U[��4�+�B�[X��^\:�;,�<�2���V4bA,FɠU��~�w⭖�5���_�^�MK���)42�V�$~T�U�6ךm�_����]Cþ"�-e�i�qy~_�~��P�g��3�/���},�
>��Z���Y���펉��Lҵ}ZK��Ri��kc������_;��O��<'�	����<�m�>��Y4��_X��R�	嵙�5m.����"��ky	�	4RD�:2����>'�|u�Cx�H���/��^�����O
����f���Ku�|B�awg�5�f���Q��^�tV�R�5_�袀
+�����/�Y�8|P���%h~2�'��i:~������|W~�����z�-6���N�
�����ח�v:v��W�w�n�f���w��������#a�G񾒚'�t��*-���Eu{o��[;��+�s
��Ŭ�J��Ex���A�2��~
x����ɪ_��i0k~-�4�"�^����5+&)-��2)��\���b���+��mF"��?�_?io�_~=|&ԯu���<3e���z��{��^蚁�[Ou�j1�}a+�u��I*`nQ�@�E|u����fߎ������_ĺޑ�S���.<=�wIӼ+�k:~��[jZ^�4Z����K��Q��a�R�e���nG�~�?�R߂����y�O~�~�_���/�q%���I��i>�d��SA���gU�V��u�Бd����ۺh�T��e���W�|O�m���[�m��@�^���V��/i�'�o|a��ʶ���{�5�6�E��d����'[�R�D�n�(��(��(��(��(��(��(��(��(���k������"J�ӿ�a�kwƿ��a�_o��$�-;�f�5z��#�)�>#�������~��
ߋ����X}�![�v�w�+���vG�Go��ɨ����(���?G�AX7�����?�
���>���mK����¶�%��v����#^��q�_�+�u�����d����![b�
?���L���?Ɏ��+��B�(��(��(��(��(��(��(��+�>+|Y�k�3���*�`񷇾�8��i�B-/����k>�6"��}B���6�=�Q�\P��_�~����3|e��xsß�G���j��i�/�W�6yu3m��	u+�;w�V!c�K�؅PI�A��-�-໴��[�c�����'����Hg�h���ce�9cfGFVV*A�	���;|s�X���~՞��u����F���Z'�a�'��'����F��Mw�%����wXe��P��M6	�����P�Q@��kZw�4Mc�:���I�t�CY�.DrLm��.�k���0��)��	dď#�ڊ�@?0�Ο���T|	����=�CK�>	�뺷��<y�MG�U���]���_�kk��gw��v�\������H�v���W�%_�	u�O|Y����P�������A!������K{��mL�`x�M��Ry�\j4���5j~�G�-[�Z�o�Z���o�I0�g�4y7������^?���-�o�C���i�V���XYj�ٙ4���n�
>�ݴ�_I���k����Z.�em�i:��yo�隞�{
\Y���Mkygu�5�ͼ�C4N�F�	Ѡ.Q_����P����?��f��4���M��|;���
��u������^&�K�F���%ңX�a�9!{���綱��>�S��:|����ʟ|oq��p��mu;τ���~#�a�%������]��˝H0�g��umBͤ�ǖzd�)�:ď#�$h���Pc���~Px�I�
�c�O���e�{��?���{�7�;_��/o|;��$��.SE�M"-'�Qxb3aii�i�W:�אi������i ��5��W�߁>'xYu4���O�o�MkN��u�|S�Y�zZ�U�[�7PW������2�!5w�9�W��$k�=�w�|������]�;�����j�ե���H`�����b6Ӏ���)b�(�D��Ia�'Y"�)<rG"���2:���H"���(��(��(��(��(��(��(��(�I��O��A5�q�?�k��W'������;�~�
ס���s�<���_Z��U�����KF���\՟�~ֺX:7�*¶�%��}�����QEsg�w�u���I\=������;���褮���U����e��/��~���1�kB/��g�?�������_��ECo���U�KWW���}G������{���D�?�e:~?�T÷��u
t����o����9�O�#�l��KET��v�?��GR߇�Ө魟�ꀪ�??��I�Ǭ���'��sm���Mt�7�z�_�1���_�e
�_�5���O��:��t��Vf�]���+����S��u7_��Z��}O��Gx�/�8���/�*%���Ծ���z����K�m��޳�^���q4�������+�(��(��(��(��(��(��(��(���D���?�E�����?�<!�jZ�<3�
>�U��P���8/��WM��[K��]�����H�����qZ��p���� ���a�_�������g�
�~x����Û�jZ����&�A�K�M����ZX\\��M� �]cL�Bi�K}ߤ��T��$G���?f����j�[�_����i���:'�8|w�wU�4]wO���6�zMލq� �7��Vv�HZ//d�0X����'�����/����Eh?ۛ���x���7�4x��"��-�&�og���ZΊ��4]N��}�����xd����_�_�/��ͧ��s�A�b�����A�Fxg���W⎡�x�7��i>
�V���֫����wyag�b��N������o{�?���r�l���U��:��ϋ>���W�'��w��i�<�/k>�Gռ_���O�^�t�m��l��_˨Kezb�ӵY�:���}��a������g�?c?ڗ���	�����-�X��zz_G�xC\�|��=�晣��j�za���Uӵ;�/Q��������Ÿ���m�T��o�����~2h6z
���{���XYjVQj>�y��i�\é4Z��5]#L� ��7:[�G�1��ow���3��/�;�Nx���G���K�z�������O��]�_��[�%���$���C.��V�6���q�K�+�mx&����!�Y?j��'��6|0���x���е��V���o�e�g���_÷>s�����4�g����N�G���[�,54������?�b��x�{����s��ㆷ�/Ÿ�?��O�k�z�a���k�f�+����7��[k�I����Y��#�M>��(�K'ƿ��ݏ�#�/��f���B�?��|ռ;/��~�~
�?��wZ\ċ�x���>.�`��N���Z��&�K��Q��� ��~��<�qG���B�⮿g�7x��I���w����y��|1�
I5v����w�It�Y�G�,9�������/�?ཟ�_읫�X�uO����l�,��·�G:�⹼'����S�ht�վ���ڤ�ƣ$@�9�@��/��7�}�����s������T|�,~'�G�qx��]�֞uc�%Β� ������]G�^Yj:F�.��iw��m$<O�/�@ֿc���W����#�_�g��.�����|B�-��������k^6�x��O�];}#����;Oh,Ƶ*Z�`��O�_��߷�|.��~��O��'��"�<3�x��?�]+�/�#��2u?�G�&���> ������D�_���m?�+����/�^>��O����7��>���k�n�J���8�Gz<gd��U�	��q�jj����TW�߰�����?�1�C~�;��}�_�O��"�%�-���棥�_�!��N�L��&�r�昺0�mu'�D��T�K��5��%�7����k_�/�hٻM��(���+�'m���T�9�-ƿ��G�j7����6��yi��F{�x,��j�%�a��?h/�c���r�~Ҿ'x��;���B�������J��+�x�b�g�n�Ӥ�l.�`��Ni"�-`-�1�'�V��o�,��*��Z�/���-�i{��]`[m�=��u������ş����~8��\{��/�E�U��d��3�
=�xW�
%�%|C���O�V�,�+��ַ���i�;�x�¾ ��7]���SѾ�d���H��]V��ӵK����o_��~]��+�?�P�[���U���6'��(}i�,�7�*>���%���O�L�؈o��%�+�����d|g������~9��ß�
x�H�
�h���?�<u��'�?��ЯV��:5�RMJ�R�Q�mZ��\?�S����x3� ��Ix�J���_�?��_������ZO�oh�$d���N::��hzMf�SX��C�Մ�.�<�H�K�������C\��Y�S��x��x��kx!.�j;�|w�\�$x�ϩ���N��[�nll�o��d�I����|9��I�?�1��K�#~�߲��{o����'�|X�[M7��K�=_�KmU�������U�
��m�d"{�n@?"�k�����F_�*$��S}G�
c��'��д��/�>|L�A�����^1����_ԟ�w�R�S��EO�m�K��?#�Z��"���g��(���ۣC�����ke���WN�s��h��$�gg�
�x�[��.O�u�_S���ȣ��L�'}7_�����~��
��4O���G��{�U���O��zhz��3���xs@�,4i�+�=��5�3Hi/5&�t�ڗ�Y�c3�w�?��$�����Y��I���e�]_����]x�A��?�����a��:'�i����O���y�&/"@Ư�(�	h?�(�U���KM��xK�eލ�4:U獵/�^!�ӡ����es�Km�Ih��5�?nێ����3�泪�eտf߇�޵�3��д{�;Oi��Z�vV�>�c���X-�ˤ��7��J���d����/x��	E�@�`��w��Ӈ�d����T?l{��M�>7�ἅ��_g�y_6o��5���u������{����g�������މ��x'�G���]j��?�^�5��5{j0Ưk����wi=��pK������s�A�h~/|����Z%�ŏ�S�o���|?��Okφ~
�֕���_�<zF��j6:�w7Ko�����󿲗��ok�p��_~܇�|�o�����?�S��[���S�R_�g���|0B�4M�8��a¾m��[����9|D�;�~ݟ�R���_~x�J���>x�lju�SD�)l`�'��V�|Iui8�[�j������{K��E�^�I��~$���׿oo�����}�;�G�<?��:n���C�����H��ѭ$�k���`�t�h0_Z�Zj.���9$�)@?w�{��EEʐ“J'�"�e�F"J����0�H���3����h��(��(��(��(��(��(��(��(��(��zX���+N�ه��[�5��K���%ai�0�٫ԣ���T<|G����"'[g���o�°,���B����W
o���F��'��QE��QEZ~��oz��3[�����{�}��ڗO���m�K�8�C��t��F�Y>����W��O���B5����B��|�ʙ˂�-J�EW�Q@Q@Q@Q@Q@Q@Q@~8����O�į����
~���?����ۃ�X���,x�Śρ���F��j>*���i�&�<M�Vz�S�4�$V�����:�����(�,��_�׉�3~�4]�߲�<[�ύ�w���x�G֏��T���Ǐ4��F�cq���Χwqev!�58.me�'�7���ୟ���_��~x����+���k�-|����x��oD�W�<Yy�h��S�zF���#�zk�����6�a��ϤYY��ޝ��Y�x#�> �L�n�|д�;C_���*�9��5��Q�xj;}[M�Ѣ���4�"�%��H>1�b_���o�at�
����
��5��ׁ�Y�y�/٭�>>ӼI~/��<O��{}&�s�Ǩí}�quRխ�??e�ۃ��}�c|	�7�~�?�o��'�����?ſ?b_�ֿg��z��-���!�_VԼ+c��x^�����f��6��N����V�˧���_�i[�(��ƾ!��l<?i�8|q�����w��x�/�ocw�z�|]��z���+��\��{O�t�I��ZF���?�?f/�:�O���Q���>��|?���k;_Y�Z��M�	�l��x�P�vW67��e<�v�N��1�|��S|#�!��
�=C�^-����Eu�gR���b�NѬ|-�����'��M!�Q�)�{�[%��%�?d��2$g��#������%���?�?l�K���3�	���u?��>*�%���4�|M�𵷇I��l�1ˡ�w�*ͣ^%���W?��;���?��s�`�^����o�t���ſ| T��B�S��[�eysw>�ڳ�X�EU��9ңcP�����h~!��u�S���~�W?�6��7�~| �I�t|=�}br�T��I�����z}��=������V�wۣ�'�߶���W�7����wſ����<�|?�{���Eͥ��n|/�XEioa���%�

��אַt�GN�յ�^�W���6���m�@x��I����o�֯�=|=�����c�kG�6���\�;����iɫ���׵)d��R�57�0����;���j�ĝ����<�@|D�+x*?i��|/}��捥xJ}^���‰�x��J�P�4������%Qmu+�?��|4��~>�[��l�i_�?�y�௉�x�R���6��k��F�'��}s�T�n5K��9d���gel�i��䉟�g�#��ς��N_�?�Mo������P���N�J��m.|]�iZŵΖ4��O���Z΋��L�Cq�6����H?�s����'��=W��q����|�w��O�M���G��������Ѥy�a��B��-`&�s�n�v�/�?��ſ�c�c����؇����|s㿆�V��D>�k�[ঁ{�_i�.�,-/�����O�Ԯ���iP������	�x���&�������Hx�[C�oῊ���������,���B=)x�g�����7���b�,���D۹O�*g���'�C���H�NJ~j��e}����v��kqZ�Z<�?�<;,�1�5�M2�ᔉR�G�e�y����������7����-a|�K�g���f���5����Zxk�~<񷅴?��������]�^��5��,^mDI�_��ox������|'�3�)�����:�ğ�'����_�U�&�ᯎ�E��_�[��:5���}y��M[-N9��F)o�?/�����˟�g��c��^(�g�
�>����
;G����]:��P��mD"%��^
B���5�V}�ӂ>������lo~ž4�{�?��~�,>#�#ÞѴ{�/�gL��^��V]7K���v�I�2�q&c��?���G��<%�v~�~��l/ړ�	��/�^-g��?������C�ߍ|!���<o�y�Ƨ���eҵ�hu�~����-M&;;�g�
9�|h����\����!|k����5���k;�
�xw�ީ6�a��c������=f�¯��4�V(4�آ�������d����?eo�)���/����
[�?�x��/�gx�L�~��������m���5T�K�2������~xW������x��?��ڟ��x��k�~7���Y�Եx��f������_�w�i��j�s8���������1���{~˟�W?�3�k/ڂ_����g�C�W�>"k~�<!�/�����Ė�L--����<C�����z���h����,�v���5�y���7�࢟�	x��~>��iV^!��ѵ9���_�V���״�WL�;�I'3YH��4r*����C���O�������'�V�8�����|4�J�—ZU�$��ɵg?�	�*��v[t_�mO��>��	�C����`���&O������7�|.<G�r�<5�i����t���.�7wG�����?8�߶������:?��3��?��[�_��O��m�P~�_����~$�ׯxN=C]���Z�n��t��M;M��U����4�J��_ſ�U�������/�?
��Ko?m_�>����
�̺���
|=�u��`_|=��]�6�:��<C�B������+����%��N��B�J�����w��9���G?k/ٳ�_����g�2�[R��|=��H�H�����Vz��x�n�5MI��]���kH!^CJ����g�����'���h�~"C���
SL��M��+F���h![��V��tzX�SM��e��M&�y.�@z~�~<�#���)��#�����|qw�������<�M𦩣h�x<h~�[��E:.�#}�������e|_��ʞ:��>^|-���?�k���jh�2�����

Fд��پl��vh�w������^�5��}�@Q@Q@Q@Q@Q@Q@Q@Q@��\��7��k�4��+^�'��?�o�׌i���V���۟�Q�f���Ҩ����~ֺX:7�*����Ѿ��V��/����e�袊�:���4��s����8z�'�Wy�w�u���I\=����	z��<,_��i��4b��ք_��Zϋ��Z�j'�抆�?���>���������(����%���?��_�ډ�Ko�"�t����o�����AS�A���s����Gb�z/Ȗ�(���:�����Q�[?O�U�~�	��F��Y?��O�:�ۧ����4o�����$��c��������TkS_���u5��?���L���tW-Ѿ��
�n����\��F���+����_�8q��_�TK�]�}-�������ڗ���]�g��4�!���i��w���aEVPQEQEQEQEQEQEQEQE|s������<}��^�g�|	�F�Q,�F���~:�<w�j
������C�E�3�z<��W��	�xo/��`�$�o�����	��d���h�/�]nhڮ��?
izV���]�涳�.��=2�mSÚf���Z��Ŷ�5����W��"�n�h�R��5�ß�?�O��o��4����>K[�KR���mo��0�Z�6� ��΍�Oy��kQZ�WHh�����tWĿ�o��?
��o�:��?���
��2藩m��^hZg��9`��;���]�n��F�ai,�i���w
�����?��
��WY�����B�|h���.�acm����ڏ���+I׬��$�4]3�ڏ��{o��j�r����Γm�J5 �5E|�?�(�x��%�<W�/��b���F�A����>��� �|=�j�6��k=n�A�58l�}[Nҭ���B���Q^�/㦍�]��A��\Z�hϮ�k:d6�a��M3VI�I��-ݎ���j�(n8�%�-��q���qcP���a)v[����3W��30�C���	ר���ʤ�a�%�S�����yF<�Ҋ~�E|ۧ��_
�e���������6z-���
=�߃,Q���.�T��֍_	��:��\M
��+�W�P�8�5�;j���B�hn4�4�m���n�T���(�I6�܁"�Uҵ="���*��k����nֻ�J���yR���Wy�[�c:T����qukB�Z4b��էJ��Ѝ��E�}!E|'��9.u���x��
+I7Iyqkmi֐��F����@����}�݀���:�w6�Nb��_|?k�/N�C�e��!�f�Ž�xo�>'[�T���u]Z�����t�*_3W�:��H�_V��>���mk뮛���4xㄦ⡞��QR�N�,�:���e�d��[\�Կ'�}cEs�n���.�^G�u�5��󍿟x��Z�]@�0M��D��SF�oV��Zi�՚vi�kt}5Ա4ib(N5hW�N��w�JU`�N�_X�R��aEek���&��k?d�����
O��k���-%��%����Q�\�^L/wuml�:���i�D����	�����:7��i^m{��4�u�o
\M�jv��M{]��𝥇��)tۨ���=*K��Zkw���Q��[E~uj_�R�2x[W�7�|1�+��Y�7X�Γ��:%��4=#�>�s\���oyr�P����,Y鷗ˮ]Mo5�v�ww��W��n���|Y㛏xJ�����{[]cì��N���I�/�^���ݵ���z��s
�֟���K\�����yI�`>ˢ�8uo�)O��*�J�W�u}n�[�-.t}+J�]F-G�c��ڦ�e�^i7���‹'�쬭���6��֯/~�myGR����д�j���|k}m�]x�=!<9�ru�\x�#i��G}�mM�|Qm�;�z+j�Z��j�D,n�Wg���_���W�~�QY�V��������l�����[\5�\[��w�i5իM�G)����.�a�X����o��H	(���o��G����J*?3���Q�{~��j�������y�߯�Z�$���=�_��g��֠	(���o��G����J*?3���Q�{~��j�������y�߯�Z�$���=�_��g��֠	(���o��G������zX���+N�ه��[>6�����~pI�ߧ�Xt�L���>ݿZ�h+�#�)�v�O��'��p����?A��o����n�N=:q�==��ȥ;��;z�j��]��F[}��M�z������y�߯�Z�:I(���o��G����)�?�
���>���kK);���>��y'���ӓ��/��~�5i+}�[.�l�5�����d����!^G�ˌ����n}J����^?�{�j��Q���(#��Z���ɨ���o��G������I(���o��G����J*?3���Q�{~��j�������y�߯�Z�$���=�_��g��֠	(���o��G����J*?3���Q�{~��j�������y�߯�Z�$��~���/������F��ӵ_�Yx�]��>��+T����^ii��]�w��}?G��������\٬2�������ڣ���Ծ%Ko������t�-oX�[\�o�Z����h�5������fͤ�F�ڸ�ӓZ�t���.��	�{�B�Ժ�������:G�����/�l�֬�inj���
���m=���}�i{�S��V��/&�,����i��]�o���z��5�_Ɩ^)�=��t�cÚW���5���mN��-�?Yjמ��s-nj$�|5sw
��.�f����}�B~ܱ�v�>��4�\S�����ͮ6���Z��t-3_�C�[=oV�t/��{=#W��
^�_��j
e����,5C�K�7����x�<Iy��6�g����⿽�JТ� E�]G�3�o�k�֩�5c].2H���>��Q^�Gſ�-����o�/��h�Q��jCV��-584ۛ[!q�ջ��mu�t��k��aomyw���i�g��ƍ{[�֋�|��ȿ��>$�umB�}M��WQ�K[�[R���}9�v�,�[Cw,!�)��'4��f�8����ڕ����G���\���_Z�kJ�N�\r�ƶ���1�*x�>��\�NN�y!����U�r��kW����u]oNӾ	�Gi��w+g�����x���R{�G�ywm��]�Gk=��IcO��ne~(���v7�d�[�nn��R�c�i�X�_C��L�l�VkEmK���:F�.'�G�]�{�#�m�Bo�S^�a��=|����x�+�'��j�)E�<�5����L-;��J��d�	&�>s�+�1��Q�i���D���k	�ɩ^"x���T�����h�i�v��qh	=��2�u%�������NT�~W}�d����}���=\�9�f��������c0�j�����R��){Kݻ�%NRQU!r�+��Oǿ>�xS�=�����goe�O�xwT�u���m.�t�{�A����.���i����s
��z���W�6��Y~�Z�xN��$��}[ĺe��ͩ�zž��K���h�=wU]Y�Ҵ3�jZ�����q�[-CJ���{/C�k��O�������]_L�t�d\7��5��������_jZ%���M#H��o����..<Gk��gQ�,n� �j+�[Y���l�������u�:�C�&763kw:�"ӧ�<C�i�~�Ty�<O�@�ivf}?X�y<���%�W@�m���ŋ�?��i�ך�b��;��	_�P��
B�ma�.�����A��h���;�3_��O�J�mE|��3|P���6��w����oew��v��f�g{}����Z��nuI�-g�E���Zۋ-F�J�O�Z�,no�W���
(��
(��
(��
(��
(��
(��
(��
(��'��?�o�׌i���V��O�r��	�Ӻ'���z?���?���?������Q;k?�?�t�to��U�Y��k���}G�+m�_�ч�z��/�E�u����i���E%pp��O����4��s����8z�'�W������xX������ h�?�������?ִ"���O�/�
��/��}W�-]_�?ߪQ�U�KWW�������(�E��AS�A���)�����C���?��Ų�_�-QR21���uH;~�N���~���t���]&����ğ�uͷO�A5�h���'�|I���W/��!�7�~�֦��?���k��1Y��w_��Z��}O������k���?�W]��4p�7����<#��R�[9뷮#�?�/���z��izC�M������Š(����(��(��(��(��(��(��(�rOxJmr_��o��I���&��.��ܶ�}��X[I����x,��.�"i�v��D�"����#�]��/����:Ÿh�)�#�ν+`�[77?�я�Q�D�ky���<��v�������j1�Ɩ���O�uh��/SԬ���_j���e��r�/�$Zc���0��-����t+ہ6�{�&��amom���ۉ&�wAi�jְ�ˊ�T�!EX�nVL�o��+�,��KXo�g������L1��]\�{uuv��*�\��A
���Y�!�i��u�P#�<	�^�z��X\O�G��!/f�J�{�.in��N�i��Iyc#9{K�xr�1먢�
�y�i��<w�w��o=��yk
�=��ϴ�:̎��ˏτ��Zy��h��c$�(�E��$�~��3/xz��+�4�-�l๋K���KW���d�I���=�(�8�T*�]H�Y'�J�f�ff�ilmd�Vx��v�G����o,X��Ag)Ң��vf��K�Q����ʩ�.m}�Z�ڽw՘pxg�v��{o��1%��J��&$�1&4�P��wM�:���I�6🅟��5�?���v�����Ud�3�����&�)Y�6� �Q�.��d�[
e��厑^ʝ�����ѵ�F�̯kkkcm���v�Ѭ6ֶ��ooo

�0ĩQ�TEUQ��QH��R6IE(�$�I$��Z$��$�IlE2�,rC,i,R�G,r*����x�F]]IVFYI8�;
�Ak�
������~�[C��WB�P�b�4�vסo/,����[��y@q�H�G|�ϖm�yoN����[�?
�S�u&s�_o�'97��*i���	�z3N�:I��!�Jk�$�nN��fE���b��sm�y�Q����E�[��|5}
�{�藐,���ƕcqͫ���Ҭs@�j~|��k�:_��<�̲�9'�u�`�/�WץP��f>�9�9�����M�e��S�U�Z�;�t��"����R�Y_�`j�I�\ꉠi#R���w1�{�j.eC-��d�������<��K�O=��	��6b�Z\K��"I�F��ڀ������{����~���6��Yk������u���h����O����?������
���-m���ⳳ��+[KKX������5�{x"T�!�8��U#ETE
�k_��3\���_������t�������oA}c���~��k���h�Z�������������ZyyV��~�?�������k_��3\���_������t{�O//�ށ��ӧ������_���k���k��a��ߺ>�����a�i��[�>��t���?wS���k�4}���r�l?���G��_����?�<���z�?N��?���~ֿ�~f����_��[���~�a��ߺ=������o@����?��O�������k�5�}��u���l?���G������X�:������Z����>ֿ�~f�o�������~�֞^_ս��O���u?k_��3G�����-����t}��u���������}c���~��k���h�Z�������������ZyyV��~�?���WƗJl�y#��\d��
:�9��z`s������{BE�'�O&A��ư��3����w���^�
V�%�%��o���+��%����ݏ���#�-n����=1���WG�������^wmu&VAӪ����⻓ ���ڸ�г�U�_K���wR�h�m�}�����}���k_��3\���_������u�������t�c���~��k���h�Z�������������ZyyV��~�?��ݽ5��c�{V����;�n�3T�������[��q��ztC�kzT����?K�C��}]�h�:���<�څ�
�\��㷷�z�]����ڽϠ��.'��S�ѹ���Q^����~W���3�+lUv�������je��{���};�_���z���k���h�Z������������/a�i��[�����?��O�������k�5�}��u���l?���G������X�:������Z����>ֿ�~f�o�������~�֞^_ս��O���u?k_��3G�����-����t}��u���������}c���~��k���h�Z�������������ZyyV��~�?�������k_��3\���_������t{�O//�ށ��ӧ������_���k���k��a��ߺ>�����a�i��[�>��t���?wS���k�4}���r�l?���G��_����?�<���z�?N��?���~ֿ�~f�.�Շ��r�l?���J.۲����an�����b?������[�ٱ���*u��rN����I.���>��˟AW��q��g��^������m�j�c^�ף�oU��:H�֧W�:Ć}��/ϟ��F)3�����\�5�}��鯑�	�o����z�b�z*}A�QEQEQEQEQEQEQEQEQEQEQEQEQEQEQE�?����&�cN蟇����������MxƝ�?�k�������fa�L/�O�*��Y��k���}G�j�?�],�?�a[o��Ό>��_�~�(�c��w��N���?�)+�����w�;�Q��[�������?ʽ?𗬿3����֟��F/��hE�?��������?֢�~h�m�~>���j����R�����Z����\�u�}��Զ�G�,�O�
�v���N���0���g?���$v-����h�����߇�Ө�A���u5��P[�����4o�����$��c�m�~�	��F��Y?��O�:�}�����F�5��?��S_�����˺�/�Er��������_�o��B���E�������D���ڗ���]�q�]�}-�����x��K��n&�?�x|�6QE`uQ@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@E!����¥��#�
kV�v
�R��cs޽3�?�Vd3f��d�*�^����ڧ�l(���sX���+5��/o�ǽuS���h��~��8g?~+��Z�;}���Q\�pQEQEQEQEQEQEQEQEQEQEQEQE���o�L��_���]�ذ���u,��~�I8��mݾө_"�agc
�Ǔ��^\nÆ����g�?�O�.�0x	|5��^i�6��,���=7i�4�;;g��}CJ��Y%���Ճ_�n��vi�d���{���^��<�f�ƾ3?m�8���V1^|.�ĭl��m+�;ki�v�����}�V���Xx��Zn�����ֺe�:i
3i���ȂYc�� ���"����K+5��
�#_¾.�t+x3�:7�|;����������]��h��Y�4�̏��� �)U$FQ���?�K���ǃR�.~�k���WI���m������
���.�Yx�XUKj��:��~��_��(��(��(��(��(��(��(��(��(��(��(��(��(�(O��8��yG���q�t�[6����������c�����y���t��Ef������
�%�뽺�n�6�K���v�?�C����q�5=R���C��]�'�������]��
(��Š(��(��(��(��(��(��(��(��(��(��(��(��(��(�I��O��A5�wD�?��g��\��7��k�4��+^��u���(�3�a}j�TN��?�],�?�sV��Z�`��Q��
�|��ta�^����QEsg�w�u���I\=������;���褮���U����e��/��~���1�kB/��g�?�������_��ECo���U�KWW���}G������{���D�?�e:~?�T÷��u
t����o����9�O�#�l��KET��v�?��GR߇�Ө魟�ꀪ�??��I�Ǭ���'��sm���Mt�7�z�_�1���_�e
�_�5���O��:��t��Vf�]���+����S��u7_��Z��}O��Gx�/�8���/�*%���Ծ���z�\;#�`�U�9]���78;r7c�q^�]�}-�����x��K��n&�?�x��]Y�|��}O�w~���yzN����{dt�5�^��&��M�l㷷Z+,��ڛ@�.��D��
~��j���_�O	����#�V��i����V�i�T2e��L?ٗv�����Oz��ۡ�kkA����>��j�nJ[5g�{�o7�[eo#�[�c���~ڍob����s�4i�R�y)�V���9{W*ʯ<kՌ�jӼ'�J�{Ķ�H𞧭���ZxOU��#g�,�m���-Ym�=m�дK��%��RKsv��B�缴����46��>#�j]rj���z�y�Y�ị-9��&�M�S�=��cs�1�j�3�Iw����ڿ姽��h��ֶ��v�P�
�c�C=|�]JY�`�F.�J�j����{/j���)ҥ~X#��G��f_��,PCa���PAk)�1��RF��]i��Y��nmnZ�+۫d�G�����L�:��,�̰�v����o�k?�xby��{�
]_�^,|Ggk�5X�i��[}EE?m-=�ZӸ~:j��ٗ���Wq�x�.N�Q�s+쒊�v�����g+ɔQEb}0QEQEQEQEQEQEQEQEQEQEQEU9����<��T������^���/����qϷ?ΰ��&�>�1����k^���ϭaY���X��~�W�M{�r_}�y�_�!��,ϝ~�Ǧ�E��QEQEQEQEQEQEQEQEQEQEQ\/�O��
�xnO�V��>�J�[	�O��h��"��s�����yc`�Wr��5��wcVn)�*����
��O�|}���<��M���^%�.��xB+-f[X4����ym�-��5�Z|��Ey%ݲ[��4a�;�+������N��cP��,~aZ���5߉�k�5}7^ ���[��΋w�[jn��M�3,�O�W?�R��/�s���e�L�4|}�$�>X�b�Q�'��S�(�<E�i����c�F��^#��P��qiSl`��,�O�M�[៊�%����hi����E�xKŚ�i^+�_�-��;?xgW�Y��Id���h�t�_O��H��5-&���o��&�~x�ľ�dž퉇]��૩��-yb��þ�ҤѾ��P�&��"mW�n���|W��?�����jo����a�-x⧅�_����w����p�(���b�&����ke�KI�״�FK�r/����������[�׆t��3G��=�D������$ҽ�����ܷڞ��]K5�77Z��}<���WSK+uU��P�����|]�[⟊4��;��w�?x�Yy"Ҵ
�C]�W�E�%�
��������T��o�:�죣k����s������z���xn�7F��d�t�.[}M��5}7K��Ս�Iwt���9���EVK�(�a����;˅/��%�껋403�eU�(���C�TQEQEQEQEQEQEQEQEQEQEQEQEy*��uߵ������k9S�@���U�)�M������K'�WUe�~��
�k/�tq]<������5m��}N�����΃�}+@tA��̗�����?�"�E%�Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@��\��7��k�4��+^�'��?�o�׌i���V���۟�Q�f���Ҩ����~ֺX:7�*����Ѿ��V��/����e�袊�:���4��s����8z�'�Wy�w�u���I\=����	z��<,_��i��4b��ք_��Zϋ��Z�j'�抆�?���>���������(����%���?��_�ډ�Ko�"�t����o�����AS�A���s����Gb�z/Ȗ�(���:�����Q�[?O�U�~�	��F��Y?��O�:�ۧ����4o�����$��c��������TkS_���u5��?���L���tW-Ѿ��
�n����\��F���+����_�8q��_�TK�]�}-�������ڗ���]u�"�� �i�# ��6#�A�#�g��4�!���i��w���f��蚗����F�l&���d� v�\�	�`d�MsP]j�H�j�4W7��`�d-�����y�U�#R�n''Z�SqV���#Ѝ.v⥪���,�}���3_6�ƥ�o��?�?��~�ҿ���-O�j?��~ǟ�+������|d����Λ�j�>#�|=�_
SI���m4���5]b���x�l�"T��6�s,��`��eUa�xX{J՟<�S��Tiӄ�T��(��%)�IE6����3^%�py&KA�s,uGO
����Rq��9N�j��ҧN�e:�*N0�Sr�?���~t�����	�Z�r�X|����Ͷ�t��7ǶV�n�tf{=C�֗��*`���
[b�/��_�oW��e�㏎�c?�K�O�~$x3��������X�n��o�sZд��6�"�.&�.4�_MբԛJ��������N���蓗�ygZ8|g��b%QP�U{uM��9Rk��������c7��r\�7ȳ�EF�6��_j���
�W޺s�)���L��诖�P����u?����=8��Du���.�bzs���zt>�W�����������6���~�V>���N��8�?Oǭ|�c}��k�Ҧ��p73W�@ALzߥ}#�22�UX���޵�'Λ����ym��~��!����'����U�����;B��v�O �}A���G�F26&FFFx�#��VIS��|~c�(�|���
���Qc�|��=s�f�P�
�r���)bA��dq�Ҁ+}�?���o�����W<�?�_��?"����O�
o�����J/�?�϶�oȇ�x�~�)|����€!��_��9Ǩ��w5d���u�����,�|λ2�X�6#���y�^�]S�UΧ�#լM�L�R<�W�k�!s4��{�rs�>���]�mJ�R�mR���������J��H貕W*�pR=���@h_�T��Y��诘_P��I5Ď5i$�Kّff2�UU����_�?��g�������
i�9���J�_O����9.�tI-�峼Y�]z�H�����	��e$�I��F$��rKwo�-��j2�ɻo�o��l���(������$�DΏ�g�:���#�[�yy������Khb��S��m�=B�_�-D�\\�w�Kl�ݵ�'�����~�K���9M;�
5��ϥ诙�P#�?������)�Ww��7��M�u7S���.T��0�GPE>��`����?��V7я��񥁖I�B�Uq�=Y��y�-�e�1�*����#'��U�|���
�=�?0랣��k�V�#ˇ##w�8��z�����DQc9ϖ����LS[�U��/��]NB��	o�{�:s�+��\ӓp%��� ��:~�_%��2�,xa��S�F�NG`OJIJ�!����ڣ!�� zc�lW�K�7�ou�yu�
v����W�#Ԩ���X(��(��(��(��(��(��(��(��(��(�������~�P~��O��o�Z�{ğ���/�T��'��?+��޿��i�2
��x�A�;��گ��S��'���	q���R����MO��Go������Q�߈l�_�-�χ���Q�]�:�3�bc_�-_�_����G�Y���q�_��d^?�r|7�Y/�m�{���;İ�Z�X���ͬ
(�oNƑ��Zn�p'
@?��O�����O���3�	mu,���rO�x�@y��+����h�'�������w�dž| 󵰉�<9���m������)���_�M��_ᎏ�g�1��g]�,,��x���7���n�M�Ѿ%��Sx�����	��N�u�=6�_�}����M��?�
��a�?�P�O����U⏈�_��E�i�|[�)|=��������k_�*��MZ�#��������&����4����熯���W�[_�����:���I���'���Mβ��O���~����!��I6\�����M�z��>.�n��<�A�	�;�!i���'�/�G]��^���m�u/��֑uy�sg%���Ʃ��v�z��w�j�4���۠��lx�5��|'��I�Y��g��gO'��.|L��.�<%�;o|�n��5�Co�Yj>!��4M"�B�O�ӵ
B����5�C�7�A~�����w�
�����g�7�S�<����P�H��I����Jo�����j��<�[D�;��_�&��[�
M�
��S������K¿�>��-<1�xSH��e���e&�us�H���u��-���HЖ�����h��&o��V��/���_�7��_�W���m"
F�֕���%&�K���l��c�xCP�B�G��I�4��t�/�.��|�F�H�;�
����|
���4�Ų��᷁�e��Y
w��Q��^#�F��k~
���[�!�Q�{'�����h�c���6����V8?�ܷ�=k�n��C���5OjX��R�1��)�s!�7}�v��n��6�Z_��M����O�vͭż��bo�[�f�1��?�*�o��lC�6ױ���>PW�����߷+�����?�?���_�&6���f�������+�9���	�jZ����|R��|A%���Kk
O�SL�6�֚�_�Ш��Ix�ۖ����	�7�ڳ�.�����$���*i��~�Z�8��4ּI��\^Zx��ƺ��A��Y���4ox~�\�4�2�]�i�#�M�N�����*gŋ�ٛ�/�u�x��lj~|0�f���Y��$-�|A�Z=W�Z.�"�e���il�v����)�%�i��"'��!Y��~ ���i/����?�;�ů�?���
+�=�߀���}{L�n�{�`��YM�I��,z�g6���h����
��E��|/g�}ONּgi���ŚƑh�V��H4�x��GM�`��R[��KV�$q
WI\�����
|�����w��3�-B�G�]CK��/�q��ze�����"�Il�۽r�u�;I�	�";���(��(��(��(��(��(��(��(��(��(��(���B� ����8�A���^9?�j]x�MЭ��T�+d �S!id<dG�w� `w#�5<�
��,�lq^^�粪O+1�&�wֵK�ja W�[��m�t��\�*r�o~ʼn-���%���Jɶ�:Þ^������Z]�6Ւ]޻'c�=;⯆.�܋f�X��a�
��Ƀ�qZ�Xue�(�RH�Et�%�����A���o�>m�F�G�X���,B}N3� <פ�&�F��B������.s�9]��X*Ȋ�O
d;xl8��j���/���
;�g�t��Ѯh�&���^w��?������cG����#����k2�����Z;�$��P�.wg8�6���xT�L}.��[m��d{��8��I˺��f$ak���_�tO�+Ǽv����q��k>�v"g1	>�%��'�M��"�J0
��d�G]'���;�j��"��/`���V2�C���I����R@R�V�a�s���$��l��-�i�_��~}��kƲ#[@F-X�X�Y@Ms�,z̑�~��_���q��1��|��/�)o�c��_����/���N��=;W���mKEք���F���H�A��,3G5�[���E�8�6;]~(N����ym���5/�]E*��o���w!a��H��(r@RG�o��
�O��:�����9���PԼ[�ُ[�� :ƭww
��^"_�+��H��m�I/f�d(U+��3ܿ$Xw���<T�F�����>G=)FN))��VZ�w��9�D�o-�x�cNx��P��ƫ���iǚSp��`�-/k�7��ۛ�s���+�����]�ѝX>�΃�Y��+2Bu;M:y�,gGX�RfG3�l{�-q�H����������=���U��7��u�j~�~)h��e�E��}���	=�����i�M&i7Oeygky��+�����?�w��tq�jX�S�Z�$�I�qS���W���I�ٞV?_.���iʝj'J�%fԡ'+���KG�=W����g������X���o}�X�.�q����Hӡ�[hb� u�>����<���ALx�C=1����厇�z�8�]�'�c���E��s4),Kdi�,�HȖ�4�c���)
�����a�SχuKI�RC��i(�B�9<��hd1�G"��*Yg*q��MJ]���%��[@�nf�9�n,�?�O*`
5¹0UH�8�+�z��Ym^K1`�`��H>��cm5�B�
��P�'(I=�e�����o�߲o�U?�����ǿ<m�Y����.��A�k����l��jچ�-��q��\�[ƨ�R�̖���ి�7�Aqw���-�/hz,q�Mi�����t����igWW�\�[�$+09#�w�
]�/�0�A�������/���Iv���O
k0�>(���V�#�i���#Hl�t���8mK/����=�E|d�1�x��?���Ėo��F���f�t�"��Y|M��]
NK��P��2Y���fR���<cW�xjP��	V��7V*p��񦓊�J��u��?u�x{=��f��+V��Qa��(J's����2�)�rR�(O���o�W�P�������|a��S�9�o��>�F����o_�t�B��UԿ�u�{Kgf��[9
��ַ^D�I���ŋ@3��s�O�Ş?���5�O~ԟ�1��f�~*|5�=���j\Ea�
?P�%�6`Ip֖��h�\K�$�[�*��9�:?L瞿�����a[3�hb�!R��V5b��6�b�MF���.2m�s�N3���Y�+��R�0�S
�%)�JS�^�3���)�qn��⬕���6�g��c�L��gۿ�D~/ZG�-�E����Lc�~n>���Î���s����?�{�ʞ�c�V����t�����p��2�"��H]� u�mx�ǖ�ԭ��4����XE��w�i�Hc��$�I?p̈́F�Nq�b<@�Ʒ��j6_��g�{W��D��O񞃪�n�M�Ccu�v����oՐJ"�cb]���;pH�he�,[�(��úդ���_[�c$���d�n��2�����ln\���]���WZ|����K=���V�A�I4�K!T�(�Vy$rK�
	}�Mv��:���.��rY�If#�liZ[���"��Fc���'����O�����>�����ş|s��k;+�gyy>��OO����d���vӋx��^@�X��
R匥�)r��c�J����3�]�}ʄy�sF�y�~Hs4��d�,oyY7d��Q�bO��[x���C⧚��LI4��>��COw����Z�,���єE-�<��B$Yc/�|?�ۈ��
6y��Xf���X��@$�D�H��22��ps_�����/���x�ÚG����C��fxR��L�����Q���V���Z=��ui�Kuuq%��e�lO��~-x��	�"x?]֮u��"�—�����ϣY���W{��Y30�RM2��ٝ��7������$X>!��FUp󡉫��2�L�R��:�+B���_
ZT���Ud�Rj�4�����~��<�ܗ���e3�
��8�1�}l���fyn*�1�J�Y��)��T*�2�\�*+��$�W���#��B?O��=S㞛�<h��1�7���q���3��\@r1�����g�Z�|Sk��h@�Z�מ=���/�h�+���O�?��׏�I���j������a{��kE��-�#\̰���$)l�ԁ_-K��|�#'�kc�cĚ#`�i�]'�}���<���q��^1�tO�AZ�y?����&�cN蟇����`��_��ҏ30�&֧��D����Ѿ��W5g�������ʰ���~gFe�/ȿEW1�p^;�Q��[�������?ʻ���ӿ���J����^��K�_��b����O�H���?ִ"���|_��ZЋ��Q?���4T6����Q�_�u���~�G�}W�-]_�?߮w����N�[|��S��L;}��P�O�
�v�����_�;��~D�QEH��o�i�u ��:���~�
����Mt�7�z�_�1�6�??��I�Ǭ���'��\����P��Z��t��S���O��fje����k���?�WSu�_��7�!]tw����È��ҢX��K�m�箺�&���ӏ����G�v��s�as����_�՞'�������_��|⶟;H%���ٿ�׷���)u���]�xT�0����pF��0��i��]�;�ffr�����Ř�rt�?7a韧P{����<���q�9韧⼇�+=W���SvRz/=ޛ�ߟ�(����Nzz���~��ֿ�l�Za�A�B���ۿ
��T�|R�ՓJ��^�6[yc������B�Iq;E�_޵�p����={~ �����x3�>��m`mvf�5�b6��+u�N��Ƥ\Io��dy%q$PD�(ſ/�s	Z�׫NQ����sJ|�竀�V>�St�x�
���+W����?G��	���0�Fr�3����R1�C1��zsN��V�S�Џ<d�^Tl�m~2|V��<-�?�M�~
�`�{�j?�>�=G��<E��>���l����Owӯc���KH�h*
щ>��d��^�?l���&��t�"�G־	�,��Z����,�u�5�Da��N�,��˫�+&�B�^|s�p�o�?࢟|5o�SӼ�u)G��+���/�H��Z��p��M6�t�iL7�,^U��,�C%��WX�����A�(�WƟ�����6�e7��k�ß`����:6��o�~ ���m��ԟO���M��!0�j:�푥/��Hb��"�K%����C:���e�f��G�G�2�Njp�97�������~WY�z��<
P�^��,�	B8Չu9�P�]J5i�\������@���s���N���L�'�z{�z�5�����;A?�{�����<�y�o�_њ�������K���Z$�U�VQb�Ɏ����#'��z���'�&���K^k	�e�����=G��_�{���}\��8��)k���_��R�|�C�>%~�>���>!kZߎ�o?��Dž|E���m�ΫuձM:{��-���}�ܴq���)���A�-�;o[\���V��	lzjj�2�����`�7�d�iص0�6�{��}GV��kMZ�ʵ���J+s3�Mo�g�v��]j��Q�����M3K��Z
˨^[]JB���Kx"��kI��O� X7G��q�%�?���݄�*��m|'������'W�u�)q�K�����^j�o��5�K��gm<r��_�����e��
8k_��u��,��6�-�γc�XO5�]��4i�K�.`���Q0đ]���c�cA�W.�q�����"��|�y?�<Ww�"U�x��)����;GYV�;XbHc��L2ȡ=~�(���5ܛ��P�>��'��lb�y��uo$�E�kywi�,l�1 ��!&�$�7�W{`���']8��?���DO_<Z*z�)*���y��I$��;�,��;�1fgf$��h�j������U�a������_�)eߊ4������Tz�x��=Cx^�[mv�ty����h]fAk�\]I���p��1
�+����mtO�n�W�n��9���{4u�\\�5��C)%���L��-�q'o��a�I`�(�h�9a�5�)��mx�@���J�0*�H`A"���ۯ�?��e�/�υl�<'��Ƈ�'�Z&��7�d�]?�6���Key���qC1����'?%�Y�7"�e�`iҩYU�A*���E��qiRR|ӚT�Ε%9ǞQN��p�_żGK(�jW�E��bmB�3��eK���q�%:��.j���Ÿ3�/���,�b����?�6��ه�4�`��Ji�c��Y���^$e�]�q�����p6˵-mQ̇`�E����7М�\W��$�%��?��߅� ������\^^6�>����G��d:}�$KmSe�W,�ړ��7X�V}��/��N1��������8�T��FNN���B����7�[>�8G-������%�˩c1:�U�	�n_Y�i��*ujF�2��|阍���jK1��b���_���P�*�Ӭ���#�)8���g懹����sO�	��>&~̾���o�z��m+�v~��V��g���Aa����u�>�q�%ƫs�����m��u�R������sO�	�Z�>h���<o���_�#�"�H�.5/\��ۮ����4�OO�ZFm��?R]��n&�g��e}=ݬ�B�����N�MB|N����/E�֥k���p�&�2\�[�Z�meoeqo=�����[iQ��~��s��{��[�U��/��]Q���*�	��?���>'Ii�M*�K�c]m��6�*�
t-Eܺ���n���s
����}��,�a�K¿<�{C��T�c���Q9�֣���2�
�j��i���}ܒ�"Kr����_C����O�X��ν*_�����*�����ɢzuQ^a�Q@Q@Q@Q@Q@Q@Q@W��*~о���X|<�|�+д��j�
ѓ��"��>"x��Oìi:�ĭ"�k�6�>���k7Z�:��i��gi�dQ_����a�j�׺^��ꩪ���[F�KۍgP���;.��=wSm>n.-<Y�[eXæ�,z�z���]�����~����m~|J�{~�)��'�>*��x:�k��Ox0\_,�0Ik�m�ݕ��ݕ�'R���_���-�ҵE��WŸ>?~Ӿ��ه\״M:���F��RmS��ug"�����s��[iR���דW��%�MY��(�i۳U�n5�ّt�]I�-k��5���$�5��Q�L�m`�P�������t�V�Q����B�$��Ԋ+�߀�hψ_5-�&�k�?O�U���wa�G��u�W�a�'��n-��ҵmU��u֟�5Ϋc�Z����&�J�
)��`�U�1]�X����wpJ�du��W�������Q�ZG5�r�mR8����u-2�U��K{�c����톑=�:�ŗ�t;1uIt�Z�i
r�~Wki)(�ۙ��'4�p�C�n�:QĹ�50�V6�%N?���*���*�Pr�S|�~���e��O����<W�
V�V�X������զ��Zj�M��jשq�$Zu�����Z�Ss-����΍=�6s����.E�t�w��k��i���sp��Yi�v��goQ-ϟ{m�H��wu�}���(�*T&ݯMY�ެ4�?�螾�n�y���*�ӧU��j*��V�idY��8N�J4��F*S�I�BRSQ�:��h�T>ˢ�6O���|w�q�^y�m[H�,m![�keޟf/��[d�R����Z��]$�]dhM�w��y��+�A������
�EujI��z����νgl���qɣj�5��"��`6�
B�IdHIQ�"��V�,�'��'~��w{+�`x�-�1t�T�fԫW�hSx��0�Q�՛s�V�iSS�)N��8�^v�8��mQX�HW����]�U�z�Ěm����6�/�����m5�h��Z���D���u�k���s����t�[\�,��Y��/�GW�~��=�º�wi&��%��<M�������9��L�-֍�x����&�u����iV0Z�i�]k� }Q_������4k����{O���%�\uhH�`��D��-b�����	�t�~�r�t���x�!����TǪ�n��O~����I�4�2�_�n`E�Z��#�ޙ�Yk6��-��Zn�Z�C���^���u�Kg0�U����ω��'�k���| �-��[m'�7��W��w~�沗ד�z6���WTմ{�����J�3Cvg������(��(��(��(��(��(��(��(��(��=����y��V�1���s�l-��d��B6��ɸ8�"���.��F��ܬ:�@���Dfm/Z�H>��^{��H�}����)�WAs=��Mnb�	�މ!]͟�YN8�|��h۲Zڔ9��Z6�2re��w�I�KO��]u�^�Z?7s�4�=V�Rg�-��ng,v���t�$��n$A=����w�t�*E
G2D���M��l̄�e9f��*��Su:B�B�F	Đ�Oݩ=~bT�s���^��jZ���1��[��$�.#�'��d�(9!FMx�l�{G��W���J�^O��K7cڮ��ͤ����K�%(�v���^����&��
���"�D�d�E�Ѕy�@�����m�Bױ��/������_���D��{�z}������R@�i<�@X�UPY��FY�<$��4���3]��V���>�۸ܳ�6�yB˂H�i�������8�%��L�֣��s��!�]Fd��mN���4yKۛ٬-�4�$��ZǨF?xe��'�����~�_���������좜7��
t�>���͇�����3�t�Z�ҭ���n"Uv_��_���x�M�k�{B�m�[ƾ.��Ǻ��ڿ��4k��������\ͣiS�d����`�	�DɾoμF�b���c�N~Μ�0�j'NmQ�gMJʤ�5%�E�9y���������q2t�bゝE:\�iε:ԪTWt��V��qquT.��O�O����߈��������x��}��lt}F�9\x6�J��ok���	�]OU���H��W����mş̌��:���7���Oi��G��噻���ig����M.{�o����/��La���?Gc�����p^\�S�Z�L\V"Q�߳���N�
{S�E7ey͹>�|��Y�sn!�ƞF�R�ҝ(%[�������ԕI5�S��+�JU���{�
1���N�������ˎGN����7���H��+�O�.�J��3��k��Mڸ%Lu1��#�����1ۅ���5p�22�v�8�=���e�@��O�;Ѿ:x&�S�?�Zo�oo�;[	n�5��3��~m[�Shi�8x�9,M�⬉���������D�.�+��:���_x�����R{{�m����\�̥�Aq4�
��:�?[o�ڿ��4�L���c^�-~���~���qk<W���?��k%&��_]�z��1<N���B��O��Ѵ��4;�j~:��y�}KR�t��:����������W�w,6�ѼK#$��$2�4����K��8J��S���Q�ʜ�RT�yet�[��<�4�9{��L��Ž3����q��#�����U��l5\�JUyi�N�#YTW���m�MG��I�i�#����n3�3���H���elH�$����w��E=GBF1�{�����[�������o?�u]7�%ɺ������x��害�x�ȩ�M.�S��/,nm'������� ��I�����fot��'�_	�Q�4И�����{\���+��-�ԒF��֚��a2D��$��?��g
�X���X��#f/�>Ҵ�Q�&��cz�`�h���ҩJ�9�+��_d/q�k����?�yne�f��aq�STV"��*F��w����:��ß�O��7`�=�9�o�b�b�L|����_>����g��a/G���W����e��tSo�i:핛ʰ��}b���gX��p�
J� g@~��������F��*��աnj5�N�X�]7
�2I��mj�j�^��І'���0��1Z��ћ��d�V��	8�8�'t�N�h��gJ��B̎�������|R�'�m��L,8��Ƿj���ƭ��B�S�ǷN�&��_�g���I�?�9|?���X�''���z�c*y߰�+^%V��{��c=;s���n�˜��L��F0Q�q�YI�/'�����׃���$?�߲'�_�2|u���ᯄW�?��=gX����n(g�/ï����E�ì��*��u��gOUŅ�:~�2K���������,x����\����>��[����U���Hg��Ѯ�5k{�峷�	s���,���J����
ǭ�/o��M�êK��7��>��Y�Mse��D���W����փnc�mċ�J�e1�~ �5/�z�eq"E���I�d&7a����EVt`-noM��2�ng��pf�˱q�

�7�פ�_
Z�&���+¤�ҧ(�%MF:$տ���?=�EȪ�x��7�f2���ԧ��l���c��\4�b�68�M|."U9�W�M;R��߰w�g�\�6��5K=�'�����^�b�X���[�4�iQ�$�Cc$wMk+3Z^[����}s�x�,?*�0�b������3���1a���F8�A��V�-���g�#P�	�]�;���Y#2c���c�H�	����鞙����^sZ��Z�,M*zښ���^HՍE�,m��}|G�<N�{%�8���.��=�㚄j�j�u��Li����bp�J)*��V�,}���ʹ�=2���c�Z1������=�F7�׆nzq����v85�k��Gu�;��2q���͟�G�r�����MxƝ�?�k��W'������;�~�
ס���s�J<���_Z��U�����KF���\՟�~ֺX:7�*¶�%��}���"�Q\�Y�x�F��]n�RW_�*�<w��N���?�)+�����z8�/Y~g���{��?�"�_��ZЋ��Y��kB/��D���P��"�}G�����Q�_�u���~���Q;�m��YN���0���B�?�*a��?�:��~H�[/E��E##���Qԃ����:kg�*�O�A5�h���'�|I���\�t���]&����ğ�ur�_��C��jk��1N���?�����u�_��7�!]M���+����S��u��>��G#��J�c�?�/�����������5q��]�}-�����Ǽ���_��<O���7\�)���(�s8����:�����4�������8���=8��~���K��~��^:�%伻t�OD���	�z����o�)���!��x�n�5�G��%��d�,����w��r�e�|Y�{��F��4�J����5׉�����>����~�~%���`�?<�/�w��O��5EUi4x�頻׭Վ
���mkTӛk�ԭ��H�%u?�9�����c�^ �/��{^���5�_P���QԵ=By.�o�.fg�����Yn&�Y�J���1'�e�s,.&�.<�lE*�j��MT�X8MI4�/,��oum{09�#,��1�J��+����8���z��NI��m(/���?m��'�~ �]��c��x�]{;y�Ě7�i^w2Aq��W��P�� FC��ehѮŵ �f��?��/�O�#���߅^-�5���4�_�<K��Igy�X�i���ML�-�r��Q]�ܩ�}+����|5����x�8�KH�R�}J��Ť;Dq��ݴ�k����$2L���KW�"��<k���,�
wZ�ͻ�u+�.n�#�B�H2�!�F�cA�~s���EG��1],�7C�W�U�14(J2��zt0�
5��չ��<�d�Z�$��¼Q��<��x��x*�w����$�kW����N��x��A��a��O
J��W�OW����k���:i���^m'��i&�L���oh�_<k'����<�xY��q���[�&WA����e��iqg��[���[���[�we{g<wV�v����V�;�=����;G,n���A�񽾁�,H�Y�WfrpX�w��F<��E���x�_���o�K���o�U�5x�XӼ+�wQ���W�+�=Z�+
*[[�˃,��混�t��A��N��"G����s���M��ѻ>��϶��J�����N���e�L�@[h�ҭ~S�u<�<��d���������-yU��ũ�����?�/ ��#�;�V�>��_���t�W��_QO����/ǻo�2o������+O�
�M��'���$��
�Ҵk�3��{I�[X4닠����qu{���}�0Y�L	���um���6KB�/6���+�C��O��2i�E�i��ew+]_ݬ����%�_�߳��~%xݼc�����e�f��(�%�)4�</4�k����kږ��Cp�z����[hiso��:��)�y�����?Ǭx���o�=-,i��=o�^Ѭ��ͬ���HT�{�!�Ӣ�)e}1N�M��g����fC����Č��/�����B?
I�&�i��Sm���Z�ئ��h��Os<W�}CE󏍭jh�U�^�=Ծ]�A����F�T�����R�M��i�<S=��>c�ً�X���Ϟ�����%�?�+q/����i)ya,)�����'����[ǧ]XIg�{�j�[�-e�:�I�g����G���a�Ess����彚\]ʮ�Z��F��ȑH�i]cr�B�
�W���*1�ڌ#)I��&��g�a�`��m�N���~.׮n��9l��i|w�jؚlzm�59�X�uQa^n��F���
^;{����E��Ѻ�<B�<M�{���J�n
XMR�\Rk_Ⱥu�rژd���( %�2m�v�K���޳}����>��z��/�������5��և�i��i��_Aw��}�z�����^�0Iaciid��_|@�C��||��ɣ_i:5����%��^���Iqsp�i�K��w�u�e$��%��ޗ4�h��-��u̝�k]�Z�Wo�_y^ʪ���TQ����.X�6�3���i^�i��=�^������'����(�zr0=�s���=�>��K������M���3�z}=)��2\)��=���h�(8���Ƿo�7�c8�?/�=�N��s�=�?Ny�T�F�?��85�m�����oL��|4�t�g���G�j�/-��iZ���'�u
f/.++k�/4A��nn�o"�숶���ho��zv��xB�P���M6��8e�
�֩u�Ai�H���#��#s9.�m�����
C��
��!����G��+ohkd��5ޝ}r���Gl/,�Z���Y�RDc����M�O�?b�/˲c)����s������b�j�
R�'B�lV'O��:�g�J��H��+�K�8w����(K2�8O
?c8JuThJ�g�ҕGYF߹���N�ğ�/ů�)���=6��*������u޿�j�Ke�iZU��O����{�24���Ks$��G���/���晤](��֯��7��o-����Kyi�i�qEqqj�ֆS�V�S�sG"�	����~����+-*���<u�_��0���!%��E��ö�.���7͐�Lds>�5Ԋ�
��]�/nG�O�&{?*R�h=I#�k���7�p~e,�$�0��R�.8��i��)*p�<�F)`n�'Z�5U=��e��m��~v�e�?aS/R��B��i�K�rxnX�P�Vx�J�<�V�Rr�Q��\�?����t���F-r^�e�/�O;�%�7�y�so#F��',P&I䜓���/-������d9��2L�=�FQ��9f3��vs�,v�&���j(��s'c�t�N���]����{��}\�4�К�r���{6��K�8]���!�Lj-u�o����jW�(Ԟ�xSҿ��{�a���VS���Wi�>�~�ŤƷ_F����sO�	��~/�	�Ŀ�,���߉�
��_��|3��4��-޹m��Z톧
�7�W,W���kw���m��,�x$?�S��ms�~�%n��]'Q��KL��o��$Q���,����/��qw}�e0[�gn�ǡ7�*�]�q�
B�>�2>9>:��闷R�t�5�c����(|��������(.e�M�?�/�<Q�j�0��|_�CÖT�kx;Z�t�����[���:g�LΡ
���Z4fv��4q4zt3�+�7?�o���8�W�L��u9���>��rZ�m_��m֝�xO�ͩi~f�uk�Gⴁ����oc��c�[��(��dyb�i��m��}k�C���J��/�?�&G�W�����ҠzuQ^a�Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@|G�[��|:��y�Y�r��F{=�G�xOM�����k$m:yr`��Ac��!s� ���|E�.�5u�b��x�յ��\O��`���`�R���]n���5I#u
K�{fؤq��-���ĒmYS�l/F>��Qu�I7V1�b���i�Y4�{�Ei�]��pe��tq2��R����R��8δc:q�G-�$�i{���.�<:|3�w>&�����"�ӛQ���)v�HQpK+e�Xr��^ann���h���H�����ІT�7:���d��pe$��+i65��|I�x�>9��|-�������ӭ���]^[�s�X�Gqf���
^mr�'��]X�Ռ��"��߉���6��O��WvZ���;{�wϧ]�jV�}ީaͥ�l�{۔O�nY�|�W�(��9oέ�4�Gm��t��}LqtjӜ�,�)��j���崕�.f�R������*�]R����F�M��@��~b�@F%{WN�C)ʑ�}Ep�!�8m���lY8��6�`�1��[6:����I���dzOL�]|D�YP�ԥ$������Z쟩�^�?c
�gɮnd��t�[7k�D�8��]�B�?f%�����^1�½����D�ЅxGě���7���y<w�}��Wq�r�(,y<`���������K~$��㷊�d��=�|3��t�w�?�"���d�:��*-ַ�kz���ws��k0h+����}Z=Nk�.
�?�_�>1��W��c����~��.X�U��y�M��#�|~�����Q�|S�m�^I&��k�)���-,�y�=b�U��M��"Kt�G���xݏ��<:�����SXh/g%�g{J�?z���wu�L���IB1��m��^���^od_�~jڽ����u�V��P���KMӯ��m�]u�G��n�b��VK[��-du��ki��9�O��_��ǟ���Y�-��$�n�"�j~�΃��׆n"�����5=���-��X�H�!�I?����i�
i�/��'����|W���5�i�6��x�����~���4�[��b��^#�%H���d�mE��Ѿ������U���w�+�����}�)�x���^3мMg�|;׾k�����tx.�>*�׷��Yq���i�}�=|~a�搩��`0���
��;sA�q�ʩ�t����+�Y+�)�\.*��k�kV�W�<}�x�J�Q���-��o������?������^|>��c�<=}�{{KBD�v7V�Ks�g�H�z�����3�aD�?�o�$��7G��.�#���w��h�BmN��J����K
.�[X�4++���1��:��e��kF��K�ɷ������/�K��ş�_xo������rX<i�5�~��<u��K��u���i^#𭏄�G�����'�u;�CZ����.���S���C�F4�_����:�6�[,w:�54�!���;huOx�9��-̓ZEr��?��E,.M�e���Q�T�����勤���Ir�*TԬ�G[:��N|�s�:�i֝j�d�Vsm�6�)9^M�Y���H�8#�>��hc�ac��1Qț���u��ǽX��9�q�1q�����߈�����Zl���L���j����4߁?<;��M�|/�|E�Mf�{�>
fk�?��-c�ufH��օ��r�q�=�����A����<sck�3Ѧ��2�+���T��k�2���"{�`��4m"-%`%@Kx�-� /���s1�^��ތsH��H')�w��Q�?,��#'�%}l�M6���|vi�ȫ<�����8h���Nu}��d�����M��.Y/!���M��ڋ^�~"�`�Nj>&��e-��j򙢴�g����"X�M�4�&�[-;O���m&�޶�A��i����t�|1�o�>*��B����;�Z�[�d�,&��z�����5�4خ�=B�R�����;�������4�cK�-"���YR@V9��ۊ���c�q�v�w}�x�@���ŵ��w-����춗�s˧�Y�͝�n�C4"�r�4RF�;s��e�y{�Xj�,,��T#S�FtTa4�QASqS�%>Y%�������q�x���W0�7��i�)<L�:����T��jS��c'
�a*s�%K��Ƨ���G�ګ�����W׼u�iZ���g6��xzk1i��"�Msukg�^��$W�Hm�?��{��&�ExU���$w~� �C33[�;9c0"Va09m�p8 W"�'�{s22I$�I���噜�w899��z�>�[���iWEn��X� �g�Fg��g�>W��04rܻ���l$c�G
	��b���)^rRm��rn�g�qw�gy�';�m��q���c�'F6�(���ۃ�|�`�ӧN
6�O�?d��������M�U���O�7HD��A�蚤q5���ˬ�os-�ʟޗ����?�����i^/Ь�d�xy,n��-��9RG�4�ո���H�5�j����<5�}3�)#G-�f��;O�k����[Ͷ,RS�	�i`&7P��W�⼞6���Y����,��=���YJ���i^#�-&qo#�GO�n*M3�Ľ~w�Y��d�6�}&�����:��ג�%I+�{EJR���ƭU���<γ�?�E��E���;F�������ZQn�X�-*𪠗��
2�q���SN���_���Q�Y�tk|���w��=j��������=��}�}9��0.�~��"�+���֯�����<�8'�'=G_N;c<�u�܉Ol{���9�yvo��������[��2*�Fs��ߦ�?.��Л�	���ˑ,����O�����lj�-���6ѶЯ�l�Xʑ0+���"�M��}�.G�����!$0����#(��G9��w�����_�����xn�Q����)�%�)sỏ
ُx~Hbտ�n`��y���6�(`�[�$?�Ǎ��}C��+kx.�;m[��_#�5�ݝ��5�B���J�e�!��)?�d�ɣ'�'W1���۷-|>�_�sBW�Z�ͤ���?O	��(*����T�
q�<FO��qr�$j�x|V��Ru=��)��O��I;�'��Y��7:_�me�����2��
�W*�$1��X�'��Bx=xc���V���o��N����ῆ�E�@=�F�sjz-φ,���ݽ�ֶ.�ULkh�3Dm�Vx�q49��Dp9��`0O<�sq�HT����[B~~�4��'��@�/�ONT�c|G�18>m�P����
u��x�%j}��K�&�>�F�:�n���<՝6��B?��z�[ȳ���������O��^?SSh#w��6�#W�zg��z�lu��P+���?����&�cN蟇����������MxƝ�?�k�������fa�L/�O�*��Y��k���}G�j�?�],�?�a[o��Ό>��_�~�(�c��w��N���?�)+�����w�;�Q��[�������?ʽ?𗬿3����֟��F/��hE�?��������?֢�~h�m�~>���j����R�����Z����\�u�}��Զ�G�,�O�
�v���N���0���g?���$v-����h�����߇�Ө�A���u5��P[�����4o�����$��c�m�~�	��F��Y?��O�:�}�����F�5��?��S_�����˺�/�Er��������_�o��B���E�������D���ڗ���]���&��R�����Ծ���z�Q7�r��@5�'������ޟ��g������O
M&;c���1��ȱ��I$q�jY�وTUPY��8漚�N�E��[O�[�=5��z$�w}���93�F���	ũx�D���/�_�	�zx�VM���޼i�a���F�<���6��b�vRA'�>���:W�X��J�l_��4��?n
|:�>��OĞ�}�?����E�W�J�F�kb�c��l�]Y�i�]���x��#N8�ʞQ�4K��f�p� ��a��#`t9�wd��.2�_��bcN�T�
�����2��#|��X7new�gvk��,��7����"��B�%|$��.*S��Ӄ�-�m`�T�t�d
��σ��Ǥ�[G$��ĦG�c]���:I�#D/�7A��$�]��9�=�N����nm'P���t�{W�)Yi��N��V��>��hZ�o��A��p���N0������2UT`����DyW��A4W0J�5��4R&U�#��+����#�W7�����wH���4b��P�&H-�*��Z�D��x#$m'=�zv�Y]���^Z�~���b��K�_�f�ٷ�w���C�[�;�{�g���y30'--���ǹc���>��_������כ���N��sZbY�?g/�6���Ӽ/�i����m��_��?�s�\�Х�6�����F�:|�CZ�����?�_�>�����}e�/
�Ug�xQ�Ki{\�[���U��Zտ�Z+T�.4�;��ͫ��u�zn����(�Ut��/������jZL
�Q�,��Ҏ����MF�+Ď�M6�*q`�ڌ�֔a�@5I��϶�Kq�{kv𞝤j7m91k7��n�[As ��O�Ȥ�F
�0ڟ�c���|'���}��Ǘ"‡L����E�9���G�
�y��'
������꺷��-��š�mg���E����e�txz���]�w���5�Ic�Xn縷����J�H��nĞ�s��ĶL<E����9���U̲:ΰ"*��1J��3��N��i0X����59/-�5�K�i�m�͵�����_5�Eq<?��
�7Rl��Yd�Z�yyoak5�ܞM��&�c���]ۨ�U��&��RJI~��˧R�)ƥ)ΝH��t�(N.ּe���Z=�������\��_�T��mt�X�J�M{�����[��!�F���klw��8��B@�k��o�)�Kÿ�-f���;�	���w�7B��66/�R��q�Y��@��Eۏ��S��m���a�I��ɧj��g_�v��֒�-�b�%�nA���k��(׵�x��Ro6�i}b�
�C�_�Y��_N��П�V���aac�&��pY��Z�i����4W�oF�(��N�Z�N0�j�N�-.�O��c��a��¶7VcR515��2���M�(�R�SM)JMj�{�Z��ҥ��y��8��c������~���}u�/��Կ�7��\Wžv��g'8�?�=+C��%��ǯ_\w�Ƿ9�m�Xs�}>���祺Q��y9��i�ݦCd�H<�뎿Z�W� ���_��F���^�fJ����=�p��Wv�qyr����}���`���X��Tp�80�\����F%x��03A�g��.��#(V��������S�]I�� ��j�'xS=	>M������Qqq-�м~Rc�d�IHf��!u�YV7w�9�D��4wYS� ��q�g�nq�ӊ3
u�,-|�S�+;�aUpI���u�_�ե�h`��GK�����I迿)^�߲���[�I"\gp,��$`��>�k_V�-�U�Б�u ���p����v��diw۝�q�~�\��Ӆ��c����:c��Uv�x��v�S!m/�Z�NT��-�V�(VC�Md�N��!#�\�EZ�\�2���e���Ҕ��������u;�K��k�jUi���Ӛܖ��^��kC�?�3���@���#�IIr	zT7v�cP��+ƾ\�h	?���s�޷�?����007��9��OO5ϭ��c�a�'b�<;��?\����ڟ�V�bz�]v����f{5��}\�4�К��&�>�?��M_-�l��<+�'�w�������mq|M���x���oi���������_Y�Р���J���B��9q<��5��!��r,��E��M�M?J�o��,���[-�I3 ����&��]��M�t_�~�fu���}���O>�U�[�������Cs�\kv��3�7iv�{6�l�t��	y�����v�K_��K�[���5;�
x;�7�d��n���!�ޙ�Omow{�-J�.um+�5���X����l}B�P����I��_�:;�K�G��/�h����+��ܤ�6��c�Z����n�e�y"IԲ����7�%�kz�"�:���{
f������K�Kd�y ��<�w[���l�<����Z����Ň�}G��ѥ���I��U�$?���M}CӨ�;m��{���L@1�������W�z��+'ͼ��Y?���ͼ��Y?���
j+'ͼ��Y?���ͼ��Y?���
j+'ͼ��Y?���ͼ��Y?���
j+'ͼ��Y?���ͼ��Y?���
j+'ͼ��Y?���ͼ��Y?���
j+'ͼ��Y?���ͼ��Y?���
j+'ͼ��Y?���ͼ��Y?���
j+'ͼ��Y?����o?��O�s�z����oU�&|��-�O?֞e�#+n�u^s��Ҁ4謟6�}d��?Ə6�}d��?ƀ5���6�}d��?Ə6�}d��?ƀ5���6�}d��?Ə6�}d��?ƀ5���6�}d��?Ə6�}d��?ƀ5���6�}d��?Ə6�}d��?ƀ5���6�}d��?Ə6�}d��?ƀ5���6�}d��?Ə6�}d��?ƀ5���6�}d��?ƔKw��@9���hV��K���$F������ݳ��O��w��L�3��:բ�|������<������֢�|������<������֢�|������<������֢�|������<������֢�|������<������֢�|������<������֢�|������<������֢�|������w�r�/n�$���IR}=
jQU�x��|��֫����۪�yj����v#Io%���<�0��3����(:m�ws�nli,���H�:�*sqР���o��u��x�WB�~ըj�� `5����X0#D�$gyLc�z
r�t�Yb�aX�Y|
��`gU�ʹ`���&�j3��;&�)Y��M�{Y�W�ڤ���/�P�,f'�T��J�]:wQ~�i'+h�q^�j>���/�u_x���G�|I�x�I��΃�SX����-I|M�x�ξ���hkk�h�	����[�5�ơf��z���Q�-�w�]�Z�5_��]�����M�1kz�ڧ��W6�S������ͱ�y���[�2�t�3���Z��if����!"�E��]��ݵ�֜�p��8Oko=������V�M�a]��ȶ��[d?gvP�2�Dɗb6AT�ԣ�Rr�M;��T�Ӌ�Wv��N��nm��0�z��ҥMK�Q���o�S�`��j7�����]��I�#�K�q4X@�+�~[��g6K�q]��Qϟ���?0�+��k�7Y�$��X���ܼN��)2#.F�+ Ǩ��!���H[�;�OJ�kӅ,ʟ"IN�m���'��Omu>�-�Z�O_�99R�N1RIJ��Vpv�)Vn.�n6v��C��/����>*��Yz��$��t#����p�����'��+���<ip����M�>��^��g��C��r���4�I���-����F�Gu�=^	#i#x��]�d�A$0#5�v迲w�i���?�5mA<9��J|Eq��)��7ӭ�5][O���mwkeae+$��l'c 2������@�1�-�q#�|5�`*�vg�����K�0
�2X�9����7��_�׍<a��>����>E{{�K�cP�k�'N7H`���nn�#�|?�f��a���ܿ���깄�ѧO	��X�E|U<5>I*���[K��7��Z}�
e�*��f�ܲ9�<
:�q��K
J�<4���J��)TJ�R�G�r��g)_��P���~�����Y�к�#����
�F��I`��8���k-��U��BD`LW�Aо9���.,��-�B�=�.���=���H�ZE
c��+����2A�UH�0�?.E.%�˔�\0R�S������d�$`נ���pl��c�T��H�R�T�'�m�g8䃚�o�GX�Ih^�q��?l��N-ʞ'
�^�|�\��[#��qU��,^,�r�[���X��h(TIT�N�3%�֍)+�����n6R�I��A<Q��^Y��xkdž[m�,�3��Z�����.�a�В�X��r�@�Lg�;��,���jm;�ό��H�!��m<o�_�D�t7��n��`�}F�\��?c���ʖL��
����ֳ��@�e�����uI���]׵��}_�Ɵ�_���/k=֝�Kaw�$�5��kn�,�J��|T���C�z�i�*�����[��d�&����u�O�M��`�x��Q,��3� 
�+�5��	��_YW�7Rup��/ev��Vʤ}��ԥZ
89_����k���mRU�*~�ap�)םI����ʼq��)�5U<$�S��ԟ���(��QO����_�
��m���y7Y[��h[���O���'�����b�O�5~!u��,���/=q_��<���ÿڋA��t��/�7��mb�e{u�T�ڬW�m��ֈt�F�.A���@?�W����y[�R����
��C���0k��֑�k�w���Y궐^�\i����z����Q�����q�>Y-c`��M\֦M���4�}c��'R�?g)х�W�n2J�aN�NQQvO�U����9MlO��+J�O�������N��O�T�Nj�NY�Q����T_�x|:��,
���7_e��Q,��*2M� �9�̌(�(��-+�SOm[[�@�p���	�#޸ڷ���k~.д+#�z��7�t�+(��`����[�����Q��RC*���Ó"�y����b����;�#h��d��X�&��%՛��2�T���8#��8��o�akӽL6)5�)�R�	rԥv�7QY7R�Rz�f~��a����(C��76��T�ӫN�^\�Յ)&�/g�|�ڒ>��Ķ��|�Z�?h�,OS A׎q��W��n�U�:f����J�Mb+o��0�,�S�9�Hmeb�����c��њ䴛�B6K?X�궓�iv�^	�S�����1?~kg�ߜ��@q���4�
�/����9y���08��^ڧ�<��LM���0�jNJN���R���֦՝�RQ���J�SI�Um�y�&�)�7EJ���H��V��_,�N�(�;V�9��U(+���	����s�^	�džl5o����ujme�-΍-�7�]항��|��x6�=�Q�0�F5���8�a�?c�:��S�-��4;-+Z�΁�<+e�}�(t�'S{(��_�^5�hجvy�[�� ���~.�1��|��)n�-|
�~|Z�L�ۍ�]�?����M�"A$��燒��՘H�P_�������x�E�����4�Fa�Ω=�32Ȫ�VE�F�ܫ�)x��<A��W���&:48w���14)Ф�b�Z8L^.�\L��^ң��K�9]s�%e���|�>���x���Źn�`q�5�(K��b(�!5F8�N��)�U�,�����>���3��8����U��T���k�?�)�=s�7����zFPӝp��V��t!�L`��T�N�}��qutz���ڼ3���D�Xg۞��x�u�:U}B���~}��1ִu1�{��l��m ��;��=�y�(�#�W��i�g�	�c$}�׌<i���;��
\�ũ�:޹ie#��H���,r$���$̞bDG��/x��7Ɵ�:�|U�h:�]hz��VZ����7�5ƛh5�ۣu6�	�iڄ���}�F�<j�o�;�S�����S�H��K�|c�nl�E�y�4�'��6����A�wa$�M�)�9�P��'�����a|#��<S�Y��c����{���W�F�m3��L�u'P�-oo���K���g��n����릎g�`�l&"P䛩N�Nz�WV�i�ê��X���y��m'i/��O
x��.|C�a*�3�]l�	G��>
���~m[����N5f�U�5�gѩN����n'�-�߶?�ߏqh��>���[imcxɥ��/��N�t�n-���u���R������O�f*�n��|K�����?��=��c��L�?�ۻ��������j�_i�]-������
��u�I&Oyy4�ә]���R�p"�x�FO�#�Ϧ����S�s,ƶm
y�i�q��b$�����ӌ�NQ�p�����^X��g��&��5x����e<)��d�i`%^��,Uj5q��bTqX��֍LT�8���Uլ�I�.��s�I�q�N��xiI�����s������U'#$s�p\���j��`�q�cN����õA����q��^1�tO�AZ�y?����&�cN蟇����`��_��ҏ30�&֧��D����Ѿ��W5g�������ʰ���~gFe�/ȿEW1�p^;�Q��[�������?ʻ���ӿ���J����^��K�_��b����O�H���?ִ"���|_��ZЋ��Q?���4T6����Q�_�u���~�G�}W�-]_�?߮w����N�[|��S��L;}��P�O�
�v�����_�;��~D�QEH��o�i�u ��:���~�
����Mt�7�z�_�1�6�??��I�Ǭ���'��\����P��Z��t��S���O��fje����k���?�WSu�_��7�!]tw����È��ҢX��K�m�����)?�\o��j_Ko�=vS�����I����izC�M����O��ז�?O����/�z-Lj��
ذ�ռ;�X���62�g*�,�C���=˂7��ՂG"�RH�?���9�N�ե+�U�:R�v�,��ڶ�'��k������t��p���)�+Ǟ�Hԇ2깢��z��lj�%�?�C�į�6 �wíO�]惩|Z�h���Ṓ�n�X��[�{Di>"kIdyc�"6ڭ��_�
S��G�_����?�?�|+�S���Z���d[�Asyo���mL)���:��D�����(�����~(�<M�߅�����Ưa���W:W�<R5rש{�I�y���2<S���o��w���w��Oi������������i:�pV�h
�M�@�J�ʖ�I��i42c�<2˳J|Q�,^eC(���c��G�_YT�*����}��*��IS�ZT��B����t�r|W�lO[S�1X֞d�O�ɜp��R�)�J4qX���
�i:����W��sx��5-9u�TIUD ��8.�͈ӨR2K``�������̏�Drw�Ǒ�Б��WU��:U��Y���f1ۻ�&�Zh�n��R�bWvg�d�&�?���K4S��
��c;@;Fzr[��<~�Ԥ�mn���^Kw����jY���Ǣ��x8?vg+��i# ��+R��h�z�ӏ��W=m�Mal�lIXd,���,��	A�o��C�q�ъ;�V��L�V��Q����P�-����A���Ȋ1Ո�kH�h�/K/>��@?���mwi�����.G������	���=���2�Ѓ���t���������-|��/�1����>|!�E�~�&�c�A�~𮏦_�9{�{�<�k������q�Rכ�өRm������
����[��K���3&�q�E�#�{ᨴ�1o�渋�>��	mm��w`�4"Z��hm�ʴ��ƚ���.?������Ma��,���n���5Xl��'�ɹ���=�&K�mB���6iRI���d��8�b�#R��cE@^F/#���䳷VbX�I4�(��?��P�u
K�֭��4���5W�o�����^�w�������#�k"��)2�YE|۫|}��u���>/^�w�[����5��M���լ����=Ž֥m&��7+��"v�aw��5�7���x�W���|1�߁-t�M.�N�[�%�����̷V�@���=�G�ۇ��R{Il�/c�V���ćj��?���k��A�vD�����o��Wݾ'8�U>�4��Mq_��\�^��89n3�瞝��bk�w'��g��+�����:֨�l[
2��@�m#($�2�Ʀ�����:�,w��W�ߵ���	��]d��nU�0�43K���lTϣ������w��cı��b2��1����LNkZ���F��<�fu�Z߫�G��=Ҍ�ANOh�O����`�'��m7�
7�|񏍧�|�x�M��ڌ}���^�v�t�M:�Yg���m-m/᳌\�Qvc��}���)�췩����8�#�Te4��	\O{��]C����Ӯ/H��P�#L��uW��I!Ge�>�-sX�u�\jZ���)��Քp����k�"���,S�]n-�h�A��@dM�A�Ѵ
��H���"��溲�:�������t�����
�vd�Hc��+JH>x'�+��~W���p��S��FY��1�mZ�γ9ux�f*�cC3���bs|G>�N��9�5c��os��+.Z�Z����®
a���ѧMS�9��NY�rU-%5�K�4���zW�k��^�I=��t�Sw��mle��ky���+we>d�C�R90~���Y�i�2|L������"[������֝�i�7д�wC���Q����d�D?l��Q2~�c�E��{��JA����K���Xd�1�(JŪi�:���ye��bϱ
�?���x���N��9���g��x��-B�+(�²���o��ep�4��}��;X㼁$0�o�B>'�ߢ?�~x5��ɳ�gp�{X��73�be�O�Ɣp��`f��E`�4g�)�t�Yӌ}���>Χ��V�ʜa
��N�iB1�����Qua����*ZJ�qM���^����;~�v�I��n �x�k��}��C�]ۃ��3_,~�z�mmp�mƛ��*��󐡆>�I�8�b����}��'$�Z����k/��9c����,2�0��f��¼#�פ��>�4��:���#��q_�=��>�?��M^)���~�xWQ�_|h�YԵ�=F�J�h0i��5kk�#}�,��ݤZ<-sq�³�!��r��{]��}\�4�К����χ�l��z
���J���Z�:F���>��]���^�
rX,��7�I��H��/�R�V�Z����];f�7������C+���d��;0P2�ėc�6I$օS���֚�z�̙�/����?��X6��������o_����O�X��ν*_����e_�C���J��'j9�O�Khw[B}P�L��U'��֖�= ��b���-QE|��Y�Ӿ#��t��7�?|e��n���s[���GD��--�K6�kk�jU��.��v��g�_k�|)f�j�(�}yE~V�?�S���V����oZM��5m&�����Iw�i�auO�����%�湤ɨZ��Z�ב���Βd�|���[��WK��?i+T�<M�=Q�u_�i�O�m|c'�l��oU7��7r�i���-,5�m.�P��-�_Y�4{h�&���/��)W�7�����hmcJmjo	X]i~��X���h5M5��H���E��4�ԟ\��S�g�⁒w�������ſ���mx��z���t
+�vΞ*𗄵�I��۝KC]��׉d��a��W�K]:�[���؀~�Q^?���ǟ�����xW�~
��j��񶞚g�4�ҵ{�"T���k�G�b��]X]��v��qc{wm$s��PEPEPE^�����k��㶵����yX$qF�Y����$	 P�+��t��v�!�"��M�{�fڍ��\C�@.��`$6�3-��q$��7V=%q�%�ho����؂3�M�۟��-�1�?�_�\W�?�!��9?�t5�[�_�W���(��_���P�|
���O��&�A�V���q_�������Cir�+׾&�_G���ZXG�iͤ�m���R��|I�_Z��!կ4�Ъ+�Oٗ��i�U^kV���ĭ+�^�m���E��=E�2L"�G٩���K��M?V���ۘnB��wv��'�(��(��(��(��(��Ox�F�:{��k�[R�Ҵ�;M���Q���������	�͹���*�H�Mut���b�M��(���OjQ~DrGo�?�j�+���iտ��PWs@���	����
���S���o�������b�5?A5�ֽ�?����v�B�������4�^k�4w�0h�,�ae:���= �v�����׆h߇p|F���ɩ��:��}Ėv�Y�(����5[#Ն�c{o-��r�]Ȇo&��x�€
(��
(��
(��
(��
(�N��x��I�˭n���S�l�%���,��@ɪ� �lZ��+H�a%Č.9���_6�+����CVꖥ����7��h/H��$�?��~���1���O�]=~z�Ƚ��������H��V,&�I]N/u=��qԎ���&�-m.�ɨ����"�Im
�a�C����s^[�=b�k���]Ǭ�Q��m�7sĐě��Q�r��=I�I[��m,�!�.dH�/"���e�;U7z(W�O
�N3���S�isr�^-�k+K��vW>;��J�0�o7)Ҡ�)I{��E��w��|�F�=7P��T��/��s~-���$kaQ�r�g^hg�M�H݅$��������x`�i'�F��M4L��*�f*`t-��7E̬���M٤�{��a5�V&�R��.�$���=YY/�0Id�kT��T�*�Gqg�n�K�;)Kw�lF��F��#��Fx����n�{'{I%v��mҳMnwʜ�h�^�V�d��B.?�v^�ܦ����,�������./����:m��xP����1�G��`�X�8Q�r�$$�c�K�,��p�ֹ�F�O�O�o4�;DCc��[A1�Д�3�a�)T�*���7
�Z0�<�'�Q�N?2GZ�y�,�s(.���I�z�hߩ�Y>X\�B�Oh�Z�#+ɵ8��$�\�>�[��C��/����~:�y~:�P�i��X�Ϸ�Ͻ}����bxZ�����:�8�A����x힞���y�|Q�L�]7�_��`��x��'"S%��{rW�QA�(;� t�����D�(�4�E�7�g��=ms�-�Lm;�������?�5�r�����Gt���X��Z^��ݨ��V��tۨ��mm5��Ì�G#)�W�=�d�0h��O���2�V���3W��n�ci;���M�z��SC��d1i�P�GH��	�W?
��丿��ф���ss%�9��8�oyGڴ։B\�3���-��VR��pp���,;Vp��*1���s�&��z��m@���WA�2y�R<��e��9I�h�2�Gˎ�Ͷ�Xbr%uD��R�I q��\��^8�>�<�)�PM�H��fŒK�-�}�9!�>u��6�[��)
C5���'c�H�~[IA$�,C!���_�T/[���E��>�_�JW��ԝ����}ߎ�߾����?~x���]?[�<q�=gN������������A�X%eq����{���ն�������öZ�׾ ����)��CM>��Y�?@�`�+e�!k��H���´����x:�MkA�B��]�[]ѣ��fF��ԵU���JlZY��&��a�D�!�����4>��|=7��N����<s�hl�̰O�g��^�i�3]N����ԯ�^4�m�a��P��g�
���xW-��N�;���z�<5���j��ʡ*܊JҒqQ�>��h�i�x�6�Nt�e�Vq��\}Y�
J�~���i9�
:p���d���->)m��I_|��v�H��#���RG~y퍭��4�O�a�>`����Z:ƹ�g��j?���m�_S��κ3�>p9?�#��ѵ�w�6���!ա�}�Z�}�E�����OvW�־��G�y���3�t[�zχ�X�K�t�CG�m�eg���f������y��ֹ�>���a�o�a�пomJT���;2�S���8�g��a�J?��[���c��>4x����x������-�Cm�[J�L�Z<�[B��F���.d�T�(�F���׮,��(y4K�q��E�\�S䝖�$�1%���[|���B��G�?�^��0�����J��:���u�#�/�K%��uX�(+�2Ky	S��Ybo�2�-��.���L����n��m^YP	� �q�����D��z�q8�֣o�Ft�J�XԄe	EƤn�Jt�A�J3����?�)>+����F[��}�J8�ukН:��HIJ��t�S�Jj)J	�-z����K{�f^����I-�_��ʡZ��d-o��[{�����y��^���=���qekk�\-+�z4Zlw�A��\����87q��1��Lʯ����pIq��h�fr�X�ؚ�Tb[�
'�l��O��HR�T�Gγ׿h1i����=����<Alɧˉn �*�_uŬq�\���m2�<�*����s����O~I�s�Q>T��J��ԗ��zT�V�'iNJQ�S�7�J�?5(��Nn*�:T�bi�+��r��M^�p��c0ؘBn�jmJ�/��1�+���57�#����1į�/�ѵ�S�;$��['���<��IV8���	Ǥ\Y|J��5�����	��J$�l,�x���+of�����1����6������j
S�L��~���w����u��[�^$����WW*	5=Fծu)]GgK���j��?�3.��V�Wh�����^3)���]�n�z�1�p�p�*0�a"�����M��f&4�ϊ�JN��J��L=Jm��{���%��(J��O�?���,�R�'O.�W��6�
�luj�5�?us��NM�u)Ԧ�4d�د�I����
4�~c�ב���_�ݨ�������ǽM�
��5���{NI��Hz{��Z��^}���d��j�t������*xz嬡F�$�YFM��qS�\N"�P�^���3�)E/$�<?Ra�3��=��R������v{�=�^���N�G8����?����L�žy$Q�K#�D@Yݏ@Af9�=���G�a��<a�s����:O�?f�
�i�d��u=wR����s�>"�u���ܼ^���moq[��$�4�S��%�{�d?�7Ÿ���>��\�>*��|gҼu�xC��!�y5x�HҼ��{[ӼI�|��V�����G�^��7F[V������
I�M���nn|C�|w��5x�I<V>����Ċ��H�|#�C�N��,��n:k�6�௅~~�z?�O�+�O
��S�hՍ��XxF�q{�Y�Z�[_��1�7���-.a��ui�t�pa���M����JƯNE�
?S��$'�_����5/��dO�O���x��v_>x��'��X�|��1,>�s�z���\iMi���Q�u��R�ou�4���m�|g��du��?�|{������q��W�_ÿ٣A��?�e�?|=�ڟ�/췦x�C���׾9k]+I�=��5������5�OU�,ml$�֚��i	 ����2!�B����#��뎽��wۯ���<�����w8����I�@�O�3��
e�A�綯��G��U�t��޾��a���ڴ�1&|C�����~\���AVI�l���q��^1�tO�AZ�y?����&�cN蟇����`��_��ҏ30�&֧��D����Ѿ��W5g�������ʰ���~gFe�/ȿEW1�p^;�Q��[�������?ʻ���ӿ���J����^��K�_��b����O�H���?ִ"���|_��ZЋ��Q?���4T6����Q�_�u���~�G�}W�-]_�?߮w����N�[|��S��L;}��P�O�
�v�����_�;��~D�QEH��o�i�u ��:���~�
����Mt�7�z�_�1�6�??��I�Ǭ���'��\����P��Z��t��S���O��fje����k���?�WSu�_��7�!]tw����È��ҢX��K�m�����)?�\o��j_Ko�=v7��?�q��@j��izC�M����O���q��4�H�U���8�?�.��<�����^L��m��k�׾�;z��uK������<;�����'����!��h�4 ���}6���[G#�;M_E��5kT��;��h�H&�ͷ��?����¯�^���χ����-�t�k���jmkR[��%���Y��uy�-N�T������\�]H�P)&DK�s�	מyo�==:�ʫ��7����|5�
G��5}�SI��q�R����i4[լ��v�e2�A�t�Y
?X�R��*iԩF.rN1�<���b��;�+'�����KC[^�
��a�Z���U�WF���K�NҨ�9Kޕ�˩������B��A��Z6PP��8TeFO\�x�b�[�hY@"e)N��)�;�=Irj^�<�f9#p���z�'�J����0���4�.Whn��O�dz���t���n����8
g�#���Y\|�Hگ������Gq�n~���M~�z��q������WW���-��>�8��|>���~"��$Dx��obӭt�Yd�ɨj��y-"��Hi�r�^��j�M�Y%��	1�{��3�!8� (����
�'�����W;I<��/hQ��C2��������{'��P1�#碚¼�i9i����W�[���qW��Gmu������s����=d��oʽN�>��_���k V� ���$c?�T����\���������-q�����j�[O��������� �����G�|����j.R���2�8P��<Ҽp[[@�\\�KF�Ȫ"�O�.�e�]�Xx?�&�io<�A��x{Ö����T\A��m�#�P7�. �m�y�F�Q�_�Vυ�>*�ƾ,��_��<K�k:��M�xoC{��8m�`
-��5վ�֪��E��ȏ*F���dtvGGWF(�����He`@*�AA�<=��s<=j���9�[٪4�FQ���x�O�ɨ�u��o࿥o�K��8�!���2�y^a�G5��g9v/0�?<f+
[�t�xL=/�Xzq1�����ѓT�{7[������?�O~5��?������j��7��������칧h�m����j����/Q��T���4:���������uf�S����������@Ӵ�e[K��+2����]�;��Q:uׅu�E��ͮ�/���/S]�,�Y^�OmZ�]:��V�?�3
9��$X5�=?�w.��س/wf�8u��A{��m'.֋�K�G��b��\}�#�&��hR�^*��jT15UJ��^��B�N�<�R�d�%����?��ߍ_�&�5��e��'���M��k��,��vz��{�|	�P��x��G����41���_�.�k���k֚��}k�/!�-��tv�;}+O����w�F���
|<�m�Ro���~)��Nյ����<74��\C	o}w�����H��[�b�|mm��1LJ2�8��Y�T�S���a�ng+]��וJ�gt�ʧ�Śxf3�y�\5<L��(�O��'Je7N�V)ǒ��U��3M�
��֭�xK�}�"��_Ӵm_E����;����Ѯ4}8�VmDh�!Ե�T���
�ǔ�vM����5}/_Ҵ�sD���t}b��Sҵ;���P��K�;�[��G5��G,R!*���Β�O��/m4�6��P�/�#����������f	���*��4�ʱ�3�Ew����|+���x�s��B�U��-��I7�Wz���p{O�Y^[�M'ɖ�1X����lW<�j9U��*5'�X���Z�ZI����՚�DϤ'��4fY��K��I���0��O���0��b+�/)�F�'B�z�y�xwJtjS����¤jS�?q�I�k�C���K���kͨ�|�P:�2�s����e��B�du
��u_��k'�G'�1��?�W��f���K���:�ӿ�|����h�v�{)�k<��Hچ�osol�xY�ē0���#.˱X�����q���W���_�?�Z.�S���%�������-��}t��-�&���I�D�!ԥW�cSlC:�D����Ocryb~�	�|1��o��g��qFM��9a�j�+���~�>�[K�A��5��4�0�U��f�Il���T�\o)��E)]�QI9Y?���'��K�3&�*X]�W�k��$��+Y'������N�B�#��4	�MK6������-N�s$)����-卡�k��4���n ;�o�<+���۸e�������(&T�p����{��C�6ӿf�~�??h
��?�~A����Ş*�D����_�>����Go��`{ƽ9vV�q���Q���r�T����J\�kS���U�����2�S��R�\���Ms(˕a�,EV�Mǚ�9�hZwm?u�}E����m��9tO*�*�n�,.<��?i�� tݕ��«p���%�Ԛ���W��sqo�-[Ěe���Է�����o�pڅ1D"���]Y��,�㟙��_�w[�մ
>�$$�i|�hx����I$`��|��.H9��_�#Ρ��m�G躢�i�j
��%c���f�!�q�$j�a�lp�h��&῵xG7�՜%F���~_�U�N�v��X��'������o�x&�%���hU褣Fu�Z��l�T�?F�f
7P���M�A�4)���F�Q�!f*����#P��h'�"���om�rW����?����sƟ	�_�w_�З�4�ާ}��Λ�jw��v3�$T��u�4�Ă�|1����ٲp5
?��ּ���\�������8È��*�F'��Z2�Ӓ�`){ЫN����<Ќ9��ʕF��8C����*�=��^�<B�e�}�T�:�qp�����7	�ғv��++X�2�>�?��MY�3�xW^�u�xW�:uƭ�kz��M��al���W�f'��(��WHaG�����}\�4�К����|/�ů���/�>Z��z曨xo�W���I}��>��Vӭm�����Z"��-���G��S���
؊�TT�խN�꽩�sQ��KE;릚�~S��?��S�sܫ,��fy6C�f�~QG���x��+
����Tr�V�
)S��>{S����:�3�KӵK�7Ÿu�+Y�
^�þ���Hب���R�=��A.7��[y�^�*0����L����O\���_��ƿ�y"�'x��H��9#�9��n�+���+W�şهJ�Ɨ�j?5=W\����z���~%�����Yk��k�
�^k��7��`�f�7�iDW:���*�/��T�)c�.M'��Mm��#�Ki��S���~��3�X�e<~u�R�x<׆�ꐩ)N_��+Y�*7��˓H{j�4��q����ݷ��=���A�So_oֻ��_�V��?�1|;�]�|Q��|s�{K��4�C�����伖�ėW	�%�6�8솿�~2|Ox�U�����Z��p�ipi��Y_i� �n���G�Zi�o�d:9�l�6�r��wt��O��a�|�?lO�6:'ë��Z������i�2Cg�cj,�[���}z�R֮-t�A-��.�-��=�J�?����U�0���jU�����*J��8�<փn�+����x[�Y�ns�\5����<^2⼷(���\5�lU|5|�a]L%|EO�E�(�¥J�T剤�*4�S�)��U'��֖�= ��b��T��Z[/�����S�U������y�����i�^NI�|�'�V�q��߿?.�`�V�]jZ}��������{!��+��m仔4jc�I]yK�3n�1������~�+���_��ty~7���
��W��u�����S�@��������Y���~�+���_��u�Q@��������Y���~�+���_��u�Q@��������Y���~�+���_��u�Q@��������Y���~�+���_��u�Q@��������Y��|1�x�N:F�<)�i�qms-�Z���<�����"3�%Eg���2�Tu⺩�M��mHh�:����+�ͩ�Ǩ�-��$Y<����).N#��7��Z3
[{�k�c������e�J��*G"3#� ��# ��� �b���o~�'�y{t�%��H��!�ift	U��|�
�FsҊ�Y�!
3��������Z���ָ��CL��r��k���V����]��I�<�6�#��N�e��D�_�rH#;�5R	B�WOT���뫛�;mB����;�X.����GP�PG#Kn�*�e �A�y-�e���#�4�Ux˩�I��~�+���_��u��SЎx�ih��o�?~��v���:<���߅�]���κ�(��o�?~��v���:<���߅�]���κ�(��o�?~��v���:<���߅�]���κ�(��o�?~��v���:<���߅�]���κ�k�F�$��+;������31�UP	$��(��o�?~��v���:�������/
M�Eb�\w�g��-��%�Y"��]Y�me�ϘIq+4��\�4_%t�>.𮧳�7ĺ��O�f�V��quh/�S��%n���2�h�1�7Q��P�_���u5��?��#G���V��M��A]�p�?��:��ro�

�h���\�IA6�򌡚1&ӰȪ��7cpVV+�y�H�x����s�j�i��:�$��`�{�����U��$��rI�
�c�i���^i��z���1�Y]Auo œ��<����<2��0 �\�Ms��ue�
L�ʝ��~�+���_��uԂB~
-r�_����¿�.��gG�������Y�UEr�_����¿�.��gG�������Y�UEr�_����¿�.��gG�������Y�UEr�_����¿�.��gG�������Y�UT�
KOҭ��g��	`��_\�in&��-�3N��%���8 Bۥ�D�;��//���_�j�����xN�Ú��y��a��Ƨ�\Y[�ͩ_^�dtw��5+ͰE,�b�
-�G�[�v'���V/X�!sg�llo�n���Ye�;��&�y��$���M$N��)Wp=?���}(j������7��j�RԿ�����
b��G�WO\Ƈ��}?�t����o��ܷ��Kw��7R���B	'��wɈ@�B���'$�z_�O	��J�Z�Ȅ:��v�S��f����^y�x�㕯�����
3T� ��w���gqu�ͨ�[�;(�*��yq%��ֳ�	��F��$��ke���}T�)�6�kk��Ѡhu+�4ht����u��X_]�y>�"{��XD�yo�V��cir��ɵ��m���(QueQҤ��)s:qr�n�����W%gݞ�g��B�ɲ�Q�do6�2ۀ�e���~��zדp�-��dzu�)���kX[r��w�j�nx>��i�5�k�M��|m�]T]���m�Gi�`�
2G4��V��Et�4�Mn�X�į�^�:��U��v��>�
�����r��A|�.�&���@�I���	�Q�0��c+�%����e��:�o�u~vF"]��~Q�N 7��5�QY:p��7������j�Ԍe&�?�=%�b.�n��..������e_6�^�'��x�w��p���Z7�Va���Ku{ɾij�wr2yW9�ȟiC�my/�7O��o�P���+�
�"��8�n'@�e|���rB�qVA�m$�T'$�O�����_�����M?ƿ�j��:�ˤh�g�G��|�-�Aq�i���>�ŷ�e���&�/����\���G!�G$|����˹��/� x������MoS��D��歡��77�n�����ͨI��Z��]�7QǓ4҇@b�;�^�4���'����SQ���Ԕyc	Fn\ܼ��w��v>���b���Q�R�ib��I�R�S�j�u��e��䕓���g��Nk�
� ��y�NKIF�(A�d$�I�~`��v���K�^O��_��Q�=�ա��²3"ۨ��V֕L��#D+�|�`W�_�?�
�Ԟ�������+��傚��7��u+`���H"�������-G���z����.�=R�:��������LC��iW�孯!�K���	{�5�Q�$h��?���f�^K��!R�<ҞK����'��ܜ��6���k���Y�a�d��w�c1t�W%�b�ᇄ}�$�eV��Sq�e.m�M���7����:���_����e����x��zp���2��<q*�K���E,ַ�j'�de��h#�^����{�|���<(���7�u�mh�pZ��o���E
�][iֱK,�|�e���)�����֡V��M��\Em������PC+�]��(ݛ ��ញs���	��ٌ�h^�t���f��L���1�P��88�9��'����hQK2��BU=�I~�(F���_��x򦜛�������"�q�~#-�beS
�V�R����#/R�6�.���=#����9:��8�V��`�x���V>�c����W�'ψ41��![?�1��>k��;/�tל�J�k��G�y���&�?�/�9�৆�����l�x<U7��^�,k���4�wĚ4�mR~�gs�j��-��?��#
��H��q<�c�[���I�Ϲ�J�$�_0�K	�p+�;����5�C�_�g��oqb��9u{�-���6i$Y.!)=����"b��0��?��+�5�vw��I��Tډ��̈�FH�+���������Ү��V�VJ�N[՜�5$�����Z^�5�g�&��I�y�2�6
Jxz3��B�y�{9$��z�qK�ÕJ�ӊq/�F+�U�L��g�-H�m�8X)�p�\�ѝ�#����ޣ৖��).<?�Jf���\�l�4���
�����8��*k=BF��]B���EI<�Q���-����FNA
I淼F�X��E�MKI��he��:Fb���%.����I����t3���>�t\�P���H�Z�o_i�jҋNVw��r��Vc&�C�审OJ�tiK����=����YҚ|��H�^5�o�+�>xK�x�⟍�7��J����k�����W�E��RUmyY�T������|�φ~(���`�u�Mw���`��v�BX�Npy?�_�o�8��o���B�_�}z���^V��Yh�4o��kX��N{ۻ�O3b;h���H�k�$��?�c�%�z��l�1Z��H��M�?���E�5���>C���=�`2e89��ukPq�U(I�ȫB�9m�pw�M�m�M�؟|&�j���K:�M���ӥAʤ#��V�Nt���T����K�1����=�5�?ֹ��0�
�Ǐ�@O���	9�۞+���F�=�-�A�<���^���;G������������:�C,���a��?q�׎=k��(�ǥ��a_�g���uᎽ��l��'�~5�|� �y#Pl��r�@��֓�Q���ݬ&�qor��b�u{p��"�~�wt����T����[<I�|ۆ����������ه�7�|M�/ĺ����ׂ,��o�ڞ���o�v�Q[�k�6֚�����j_j%�����M-��
��cl�X�:���)�&�)�z�ڵ�[K[v:��i�jF
�
7k��V�}�i��z�|N)�;_�kO�}m��?�m/��%����ᙞ<��q�
���j9e�ʸ�C��zx�Cq�?1�z-s��ť���As4)m>�ɸ1�	ֲ��5Lf0��f�d۝�Fs���(�����f�Mfj����������$��ơmi4����!m��(��ǥ�2�,��/�x�x�ĺ�΋�K
Ac���=v����&�po4u��i�F�mo�>�@
V��{+'���Fq������g9�Ȕtn�RmnՓmh���t���w�>��G�m��w���
'¾4�|C��;im�ۏ|U�
&�.Xm��u��`[۵��:F!���]9}��#����=�ɾ|��m��zLJ|����H�SH�ȿ�<?4�o�#Xm�֡Ք�ww&�zl���]N+q�}�Ko������s�v�����i5{�+��$�ե̓�I��baJyh�U���F�\�W<`��7�uJp����"�Gw�,�g�nz�9��^��qߚ<=mqm�-
e�����"r�Ⱥ���s�#�R������Fq؟˥h薄k^@8Ԭ[�غ���������>���\��7��k�4��+^�'��?�o�׌i���V���۟�Q�f���Ҩ����~ֺX:7�*����Ѿ��V��/����e�袊�:���4��s����8z�'�Wy�w�u���I\=����	z��<,_��i��4b��ք_��Zϋ��Z�j'�抆�?���>���������(����%���?��_�ډ�Ko�"�t����o�����AS�A���s����Gb�z/Ȗ�(���:�����Q�[?O�U�~�	��F��Y?��O�:�ۧ����4o�����$��c��������TkS_���u5��?���L���tW-Ѿ��
�n����\��F���+����_�8q��_�TK�]�}-����\�[\�A)?AW��ڗ���]m�ŕ��[�����<O���7L��?��x3�@�ݦ�w8��3������c�c��ß�sk0$�=1���u8b3����=~��ׅ��-��Z++t_�]Z2I^1OU���o��_g�����-�t���7�m�=��Oß�>$ם�f�[��Ie���	�^�wzu���T�M�_�[�}vk�cQ����L���_�ܱ&I�.�$�yd$��$���wc����?��>׿gx3�V6Z���y����3R�I��4�B�'���(�x��Y�6I# I���?�������ϩx�cտ��I�mF?�~,�m�U�M�|\����G�-���e�V��5��;}��nq��s���Px��yХw�q�N���w��\��2�7*��HI?w�3>'��9�2�uu��,<+µM(~�s���S�]J�R����i�i�?�e��	�xC6$S��,��NOJ�t�Ejlm˹���P�f����3�p3]��/��>��߅5�k����4��2vD��i-d��Cy���Ť�@����*�Ť/��_vy�T��?_6��*J�js�Z2�*�t���p�N-lӍֺw�!8T�gNQ�&��85(�wRZ5憖X��A�bM��9�'���W�����2�|t��4o7�Z�����E�-&���F�=F��dP�$�_����s���3����S_��q���b�����������Ґ�?�?xi�љ�����d�9KJH'����v���Y����Zk��-��v��^���m)�@1�-��t�z}8����v?�s�\�Х���KN:��=����#�>��%����<�dC��Hk���Ηu����S��-���G��<{��?~�P���~|׼W{���^=𵈶{��K��?O�d���^�ZF�,��9��ݚ5�����!7	)$���]�_��i��s��������抚�j�4�ZO��J�:���7#vn��|I���<�����8��v�4����ņ��Z���E{�Ky�+���s�c��X�X�do���2��c��F����s����q6���C��m���q1xqe����m^+��[[D��Oo����ܴV�[w����j�ӛ��߯}yc~��?�<'#���dۿ�-�)��ҶZ����|��U���9A��	|C�\�����m��.�6��Ϋb�.��tp�$���s���-]%�Ծx�5
5����m���7>�;SW���t�4h忊H�����&�Q,�\MF���M��-?sCD��S[��MZ���Џ�?i'�毚Q���	����^��ݔ>�S�9��#��|3s6��
��f���ꚏ�F��
�3ã�tƚ���{��F� jم����f�נk>)��^�={\��/��l�P����_ )eufU$�Z��gz��?�-C�L�EΏw�iז��X^�j	;L�|�V�"�&�}�J�,�Z��2�s�
\���m�ϧ���aiF��B=����$b��We{��X��>�`����vApA�ҿ ~�]W�>^1�=��}�_�^&���M� �m���ז�I"84���y8T'��>ߌb�@Q�x'��R67�Ӟ�����=�~'�*�?�?��#�]�K:Dž<Ug�K�T�[K�%F�-o�/ "[K�)�.-�BBȘ�$��7�[̰�q�~8��^�d�����`I�ӷ?Q��҅NzsQ�Ni�p�N2���i�8���K?M�U�B�*�g:U�N5)V�)B�9��Fq��(��Z�i٦&_<7o�-O�g�����P�?�/nm2(��Ihl��N?�������O��V:o�D��bR>ėCš��jβ�^�m���p���'���ka�OG�d���⦊�~wC�ѕ+��	�DwT�
Ԗ���!/���y-�
q���E)�x]�����('s�0I*I����^{Zr��#+�d�ڔ*Ѫ�^��F2V��X�G�0p�\\*{х<�<�kJ�Jm5�8��|�	?c�'Z�_��x���ޫ��z�x�\i�֍�I�^��)��ȹ�x�>�������]R�����[��T�A ��	n|7e-��4�mj8�n.%�ŔQ�E,�A~�3�_~���/�{�}��f����?H�ǡ|�Z�^k�ϧx���t^#үo�@�FHs���U����ះ��G���������/�U��.rW�]Jk�D��Y.�a +T���-��B
���B�Jn.>�ү�I�w*J�������e�qF�V�>f�IFJ^�J�(�G��8�k%+�c���샠�����5�#׼u�"}B}Y4�"=#B��R���.�,���\�$�ż��f�L.g��O�S�����ah=��1ϡ�{��$9��u���M������J�J��b��px,6���RT���*�sNnUj˚�I�r��)KVܝ���RK���6�3�W�s,C��8x�(ӡ���F�:TaN�:t�awyJ���������V�fY�۫�����kN��8�O�_�/����>|�mwy�]x�º{�\B�Z�{��=:MB{�P"_��#0M���^������������j�Xi�=�����P��X฻�e���C�H�\?ݵN����]4��t�w����{+.Z�VV�M=O��������1Xghs��G\f��R5�U��>f�J5"�+����+�t}-�+Ϯ��{�p�9�O��SN����"�ë5֩6�����F���[�$o�2�<�U�-+◅u�C���������º3�X],�敪�.�RhaX_d��&d�����k�>~G��aZ��i��I�ν:x��Q{*+���iN�J�7��kee��[����Zx�-U�̤�bpӌ%,
����[�8`!Rq�(7W����{%C��U'��֖�= ��b��T��Z[/����ϼ-W�f?�?����l�(����/WMwòh��΍qa�E��z��=��>�o{�:KyT����F�ҖBW�?�g��|o�7��W��~ϥjW�^��I'�%>�4����w��%�i5+m�
bmB���Q������T���V��Qi�TV�#��F��!ׇ�}i�C���[���jr���}�	LQ�F(n/�+��Y/f-���<�|;����4Sgc&�:]_�M4����H`���щe?��䙞G����h��g�Zoۗ�JE�/%�^	�H��Z���필���K��M�xt�{˽6g�Ӽ��[=U�S�C�߱��)�������K�,Ǎ4�X��4��4>-���A�}V�Cs�k���c�.�����?��9�i�^�ɭ�&��gE���EQEQEW=��������oª��4��-�p�Ց��%��
����~+�1����ɯC�ߏ~�hZ�ia�ֱ��-��5�C\�T��i'[��O�v�u�H�4����At�\[�zG��x�4ϊ����[�h���q��cO��J�6�l��~U��x�����
���ŧ��7CO�X�v�����2�a���_>;�����K�A4w���(�!�֮��S*4�]���W����렐�Y���c���t�6�k-���Gm4Wr�~��Z�rj:�{���,�/`�K�iz}�>����φ%���_<V�kz�Z�����mV�K�,n%�[�yΟ�X�G�(��m Ÿ�^�9����u��
[V��yu��]/N�B[�4qȐ�].ٜHe�K�4�J�'�^U�w—����~&x��|A�S�����
���\궚DWu����<=iu���م��XD���_=��@�?�!��9?�t5�[�_�W����i���O�
v������b������*�B������-״O���þ8մ��<;i-��o<V![�:�����"�U�_���se�]|�G�G����"�߁j�Q���xk�M`<E�x9dЯ4���m�ֱh'��UԖ�i*��[k�=[Tծ%�o��:�g/�~)�<�4k�k���t�,x�����귖w��h��6�HWJ�,�_�����z[4R�YMݵ�O���>>:��
;R���#jZM��q��z�#�d��0_��o�tm�m��K�Vp��>�-���������	5�T|L��u�����,|=�/^�y����&�����Oq�-SV�W����b����t�F��Ѐ}�EPEPE�m�͵�j�ڣ,�ڣ#,z��ހL�X�7I����*���'�	k�Ы�������~Ϻ�z����ş�j�i���{w����-B�Y�u�u+kQ,"3e=ݥ�62�=���!uog��p�Z��m<4��<Z4!�x���x���U����m�[�bHb�����}F�K���M���fC�	��F�I����otX���]Ծ ��V�E��`�Ȭ��*�ԤH���~^���p�$�>?_ަ�c�X\k��VB�T���ޜm�oJ7:^��xb6[k�^H��5����.�}���j�(��վ4�5�Ms�Z�%�L�<D��c�^�f�P]V�Ķv���~�t�B��.���o`��+H�,�,ai^++[{H�y�<v�$(�J�4���2Hܻ�ǓV���H�|q��Mȭ�A�r��A��\�NM+��1@F��#N��\��B�����uo�����70Guo=����a�	B��c�7��p{k�z�%�kowco��C�K��SC�� ���A�<	���^}�_ڳ�\W�Z���Y1r��c�G���H�,rD۶ȍmfF��T�u!��xe!��#5��{�|uk���m��I�_Y�z�k�x~f��0C�}7�Zc�K��:^�gG�|4o�t+?�|I�_��S���ـ}!�K�@�E�?x�^�ö�t� ��̟LּI6��i�z�n��z%�ݷ���Y�kogk��Ė0[Z:I
���I_�v_�O���e���O۳⎥�xs��–���]ԲZC{��\]�x����s5��//o/5�a����io|#����ů�������No�~'ԯ��o���F����;H��e�W��F�ɂ�T]G�W�-�-f{HN���`�EPEPEKP�6�]K��A�m>��L�I`��q��P��}�_|J���5·�>�%�0J!��K�,��2�4r�{al������Q�W+�f�5�
Ge��M��=��ZA�i�#�{�>Y���;��ѫI���7\����������>/~�0�����?n�O�巶�1�4��̑\����W0I��R���� �]��~
x�J�֕�M�v_
xf��:M�������C��#x�Zb�X �][��X��؍:��H��-.�E����{ž&�<[��oiZ�����U6�!�k}SU�M}-e�b�9Z�Z	��2G$�W����o�Yy|!�<�x��ߍ>(>�YK�_[��u�K�D�4�~����,:3܍E��_Q�յ[��E��\װ�Z=��~&�>�Z��
X�F��}�,_N��y�9<Ikgog�x��H����|*mn.<?%���q\���7����UKR������@5v�j_��y�^���1t?�#�+��cC�R>�Һz��ۿ����Ѳ�We�~��
��?n����F�]]�E��+֭�?�xX����:�:��:��*�c��^�ޡ��š���KI��ZUխ��o{��Xj�O|�g�i�u�֨!���+�dm���K���Z����ۻ	��٣�e��l�t
myw��*�Q��~�-���o$��ges�mƫ>�ib�+�\�����/��6���������9�ǺO�e�#�+_j[��'�F�uw�kmn��QӢѥ2
b�/
�\�������5‹I�^?O��>2��i!�f?%��}�Z�ݝb{i��}R��;���
S�zt�F�iqs{qD�y	kt��l[),��������Y��uu?���'�y�dc�(՞G=�T��W�V�oF���b��2����Ղ���>��~EA������{T9'qk�~�~k~�?��
/�~�c�٣⧊���Z޷��6��i:��4��?]�H�E����F�o
J��e�<Z?�]❷��5��~����'�+����o�G�������ˋ��1��KNu)¤j��֝	Ƥ�%8n�8IJOX�ס����X	хgNt��zx�S�=%S���8ԧ*u ��5v����{�i�ݩxO���G�kR�YY^OïM���F����Me��D�(q,*�#E��N�P���i��M�$�g���]/�z{|B�}����x�]׵{�	.��=�.��ۍ*�H.&3�4F�@�"�������T?�E|���)7�s�}~��ߴ'�?�xWT������_���������t�CO:����RX&�[6���n�ƅ[��ڶ]���he�XP�FT�G�ԌcI�T�J*ք!�F1�T|7�#�b�f'0���fU^#Yӄ�:��γwnU*T���&߼�?�d_ٛ�7�"�D�,�+�'L�c��v�[����
:�.�VG�L�Q�B�\���A��V-[����q��w���_���DYjZ������-�h���x�����Vd��F�N�k�%���'��$���l�N=��P�u��?�*/�"�w6ͪf��"�8ӗ��$�}���J��=��(��ҝ
u'QI��#^k[n���
��``�:���
Ϸ_�~?�s��H����If�u�T��I��c�5����{UB���(�^��J�����Vl>$��j:xҧ��n����Fe`7���G8������}>��Y�Y]��`_2ydM��#r!�x�cj��įP�o�;��Y��zo��o�K�:M:k��<Wls�k�K��Y�l�9�+|]�?��������(�����fo�~	|��O��>%x�����|#�oYA��z<������hM��WQ]��m����c����$�7����m���\~ɿ�e�Ig�>	�D��x���'�W�\b����S�8�E�%~���:���ύ6Ҭ�A����O�`�u�m~��i�ˠ��ڴ��t�}��ݪ�kqw%��̵�����b?j?��q{��,~0��"Gs5��⿍?���6���G���cYlPB���
<Q��p���ӓ���J���VRqI7;r��Z�N���3����q��i*jT`�'��NWQ��;��q��]��/V��m8n$��O��ai�o�s�=ǘ���5_Ce��1�@�#���W��F����������>*���H�>Y���7d��
ׁ_�(��O4/�cƞ/�o���?¿x#D�W�|3��ڕ弫�fj?��6��O�[)�#{k��b0� ���Ů?�q�O���\��^��h�ok�T�F��cV���ee8�KGmwWVg��ʱY^*xLm)�����>G()EI&�䛳�[��z����	c�-�~�C��ὖ��⧂���
|��O�|U�����_S�<u�#�V7�lo���z
�w��R�:@����������W>��|y�x��^%Ӭ�{�)t�CP�Zj���P���-��JGs xK����3��-�P3��q��Q��,�w��Q��փ��[��
������2ZX]|c�:�k*�抄a*�!9Բm�MFQ�{M��>ӈ8��e8L��?���WE���p��8AJP�����"N�����j��Y��u�q�un���`�T�b��U��ɬ���ֵ�n�]?N���t��im�gU�\ݳ&��஌Fz�t�?mo�m,�H����a���C4�b`�7g�+s�;��ơ��M-�]	"�4PY��U���K�潓Ꮥn>�,��k��r	���H��s�<q��[��?���;��䀱���p��*�D�^:�m_�VL3��v?�'�.)&����5�Ν<��I=�ķV�A��i��M�qƬ��B���B�D�FZ���[k�����%�~��e��5��(y����Uq��5H�H���cº�䮉x�[�Ϡ�# z};W���
���N�;o~�	<W,�ךdgI���O��t��{�2Z��-�)�Vq�����UE�oM�$�2�h%D�����)b�I#�7$��ъ�9�kiѫEAԣR�g�s�()�k��.e殏?�ey�LU,�2��pU}�6���T�V���**T�����U	�\~�r�=���u����O��h��$�˻p_�'�1]�|W�Ƒv}s<?�+T���6��LdB�mͺ������;c�k3��>��H��?\��p?�\�<5�è��.�}Gyj��
��#31=�G'<qT�����Խ?������W�zf��X����F����YZ�ݒ6��aV`�$p(��W'������;�~�
׳��O��A5�wD�?��C�:���y���0��?�'mg�������ʹ�?�?�t�to��U�m�K�:0�/Y~E�(��������;���褮���U�x�F��]n�RW_�*�p��^�����?Z�D
����?ֳ��ք_��Z��/�����E�����%���?�J>���j����s����wR��Ȳ�?�*a��?�:�:~?�T÷��u��'�ض^��%��*FF;~�N��o�i�t���@Un����k�ѿ��O����A�����&�M�=d���?�����2��/�����b�M��+3S.���_�o��B����tW-Ѿ��
룼}�F����DŽ�j_Ko�=v�:G�JBƈ�!a�T�$s�x<W��ڗ���]^�� ����/Y��/H鸚`������x��KL=���\AR�'���i����
���!՟�WGqݼV�.�.�Dk��(���r�I�w|�tPB�],.&�K�F+f�[�}q�,�(�!v.�͜���H\k��#��o">]͒M��-�.q����i��f�.���#�?��]^�K�-��jW�w����%����s��=>�����L5b�7�:.��j���Vf�eu����!����K���Y�	0E$��@
�����G�����ax����_���G���I
���m'S������70}�Z��R�b[����Aqc�:�}8F���*I�C�q�sԒ�OK���m�gn/�6s�Ejt�c)(FS���aN<���n�Q�T�}����	��
8~����q��o
�k�0D�p�C#O�x^ �,�k����1��1s������MSJ�W��OM�-ἱ�l<��+�K�Y �����d���h�d�hdx�B�
�ğ��.�i⯁w�:V��{�wþ#��.��R7�y�C|�����E`�E�@?�BO�*����U�c��>$t�7��_���������5�P��D��S�='�&��f��
���^.��&�/��{*�T㈅G%Nm��U札;%+�g%�v��o
ON�����#�eB�>IU�ʥ)Q�`����|�-'̔e����9u��w����M[���k���<��VI&�7�iRȎT�<�t���� �RG�1�~W|7��3Lh}�<���W�]��_���C�����dwD�0�F`��>H� ��_���o�k#0��zgu�뎼b�l�B���{��όc?����6��{�����ɓ�Ґl�]�b~�tA�'�=���=j��&��}n����'�>?|"����t���hx�K]J+�-��e�P�u�3lt�bWү�Ւ�d�!�"*I;O��gf�*|B�&��k�I�Mm<�1i���v�{q%�R*�ڎ��Z�&����	��
���������G�M�����G����Ϗ�t��t���� ���M}R���ص�w���6/并��(f�+w�'�!+�:Ǚ7�'�2�����J�д�N����.�G{�L���{�P��K�k�Kp�#�i�6���3u?�7���w�}�.���������X��@�KD���/� ��X�� ����{�Z��N�����hR;���W�$����~����
�|�G�����|�?x��J���Z&��Y�+@�q��e�戟2h�ʞl{�*�d�ϭ����r�W�ǵ��O�^�ErĖ���$q3�g�B�Hdݑ�`m۲�F1����a�3�3��=0?�J�IJj���:�mq��o��O��K�^?\$)oi�=�>�.����b��k& Y��
�c��{/��?�a�Ʃ�C�|8=ŵ�������U��A-�����ٿ��@�Cu"Dvi��6�.ā��(��A?L⏐�s���i^�B����$�s�賴�9��!�͋�7���,y$����}k��SJ�i�m��i�04�UL�kx�.UK�UTgW����ߊ�
?d?�#�?�������߅^+�|�տ�t�5�:I-n��/�-F��W���;kYc�9Z6��?��_����j?��M���M�hZN��<�ѡK���t�;[��"�`iVųH�H���|��x�T}�r�
��t��Z��Yǚͥ�k������I�8�B��j�
��]SrM�T�r��I���ҕ�f�6�m�W���UӼ��ڣEku�iz]�Ŵn۞8&���HQ��e��Y� ��X�)6��J�W��$��d�?h��t��o����3����ֿ���!G�����s�~���������-~��|\�W>0��<	�ꚞ��kڴ1[�kZ�a�]�e��izŤ)�;��O����>���u��S��ӖM�=ti٦�h��V���(T��H��慤��5t�[=S^G��\�x��h�z������k�܋��y��0o2��&;���_;��8#��L�<_i�5+�O���q�����m(m����;�����f[�bD7]��~z�8����mj姹�?K��#�t�k�>�_�M����'�SG���jw��x�YZ�SQ�Y�m��ΟxY�u��i�!`�Ϲ��7���U'��6��n�	��U�=��|c�T�Uo�Xt�ͨ��X��-<^��ej�3C#�S�A-�r���]�|FY{�cᅹ������絞����iP����aum=��Ksճ^�%ųij�%�Q����ש3�_��G)w��|߹���[�}�s��<�
�x�M���p�o�$����׎�sS����Ye���8����h��0ڥ��_�֨e��*隊E�V�{+�t
<2F��?���mwH�L�Džo����l��4�^�Z����0��W�g�Xܵ��� ��݊��3��e���W<��Ħ�����%��{���?���_���s��s���Ǥ��W�zŪ(��7֖{>�qfvy��v�nǮ23��@�����#�����K������������R���ҿ�����Q��������֠
J+3�kJ���o��)�W�����4�Ef�cK^
��'��X������
Ң�ε������?�4��[���d���v��#���Kqt����F���)���a�o�emsrA��m��p����:��\Zj��Z��ҭtX-���&�;��K�]i�0G���^E!I$h�^����k:���h��o��w�}���Q%Ž����$(`�Eg�����5��x���𦧭�Ri�|��ͫ������REuw��z�ö�j����t��I�u�?ĺ.���2<�f�e�c,�I�kr�H\� WM�A�A��YZ��e�i�K�4�:��O�`��se[ fU@d�B�/���V�p~,�����\����im���_�\_�?�!��9?�t5�[�_�W���(��xr�ym�u�. v�hd�U�~�:�P�͏x\��t�^��9ƹ�r��::+�����\�?'���>�:��
�oO���@��[�
��^��Ş=5��8�u��CEs�žu���S�/��4�����::+�����ؤ�&�"u�v�������O��n?��€�9��ƣ���h^+j׷馤>A
 Ӭe�y<�5�I$`���6�=���k'P��=8���ia[���Z�u%ki"�������IS̻LI���?�Sk��7������^_�k
��i"}���`X.-D B#���p��Cw��o/�-�������sq����M���$]���Q̱���i��O��:��t��P���ӫ�&�Р��m�F�[��7��w4QMwX�䑂$j���E�����+�2��i�����MEs�x`�sN��~�~����<�oO#�����*��{��
s��:��x���[�
���h����K|5�A�?�z��Y�
Xz����\��o�G]oOzν��]��xc����?��(�������T8o����W��R���������lq���m$�ړ[\Ɠ�ѳ�q	I��Ubb�&Y#p2�@�_�Zo��u�kt0��4��|��暗��j*��i=֛z���V5mľ���'��|AյMI�֬�4�q}���C�i�T�u?"��X#g����V��+�bo+���$�.����g�t�n��7���:Ʋ\\[\J��s�$q*����&�|9�>xwZ�f�F��x�!I�����<\�v�
���J���<V�orі`��	�UKR������@5v�j_��y�^���������1���O�]=x����~]���k���C��r�����w��e��ˢ���V��<,?�e��q�g��/4�?��-��̫�l�Q��\�E�dH�O�_�o�k�|�e�ӚQ�Z�����/r�Ὲ?���ջ���*��}�=�%��#M�a��-���6�[tY�!v�Cj�v���|^��t��>"����I�"��G��`���Z��ikj�m����ox�^O
]����Ό$V1?��^=�xk^����k�{�4)o�){����U�n���~�>,��CL��;�Hiz����j�����?�U�S�)�Q���.kmʩM[o{�����O���΋x�^.�oj�%
,E/ej~���?
?iwR�-���mC�?
�~?�vOcq��=&?M���i�x�, ]f[�&�^��kf6D�P�Ko�)�_i�|i��X���?h��=K\���_����,s&��jw��mw�Om|meң��I�.5;�=&��T�o���x�\�t6�)�A���[Z�����Ɵ��Z]�u�U���K�In<��{����i�l#�Qp��O�1��v囚q��p���[;wd�#����Z��EӋ��ᡆ�*������*���T�-oJ6W�>�/
�
����?����?ȟ�/���"��>XѣV=�;�+�c�~g��=�s�O�Et�ߥb��N����ymm��5/�]E*��o���g�w!a�(�:L�l��k�5�y��/Ż�s�~�7�<i�j~+��φ�������+}��늺��C$q\j������4eT�x:�k�x������¾!�yRy%�o#HYpA3*A89�5�1����q�K�-����íwU�P�(/�5-A���Ҥ�WW�X[�4hT�m�V�j�H�K���ن\��`13�*�:�T�N3�=��\��(��]���2o�r���eY�,��a���`����׌�ԯ��*�����j{8Ӌ�ڍEBW���g��*������|#�O��z��5��:/�/j�m�<{���}��T6���Tҧu7W�V��O�p�S1���"� ~~�>"��:g�H</i}����ѵ蝇�l��<F��Ν*Ȑɪj����.⽑-�Q��������c��lFo�S���V��EלTi�
q��p���5S�-��s�F-��|�dX\�:���V��Nnu�4�Q���F��i�>�s�n2����I�u����U�1�
�j�����qL �{CLk�)<�T��ڎ����X������IO���j�#�u<N�����^��)I�8�,-~�暸%Lu펞��=ϵ$�R��{���
�~ؾ��->1x��W:T�4�M�Ú�Z�mt���S����ۿ��
�f{�H��ڒ�|�������χ���f���>&_�5����2�iZV�oc,�&���+}Iè�d`X�/81����_�G�/�z7�O��	��3�7���mc%�޽�j�E{�1���$��Up��7��~��q����_�hW�"�|A��7�!��ӭu-�SU��t�V8t�$�L�c��i��tQ���Q�C�j�T!Ui��a�M���ΜcSm�){K�*5.������bpx�
t!�S��Hc/	?e�tf�sS��M�ԩ����N^���n5"~���_c�'�K��%����~)�6�E���T�-?�}��7����{K;�M�E��I2O�" O�o/#$c#�	�?��!�I���$��֬�n#�3.�@Ť{ō�po�`Yv�_2"�.�j)�q܌c���_�Ы���ݺ�**Ҍ}��-N�jJKM9yWC��aj�^:xUSZxg]ɧNu�F3s�T])R�����=SM��>^N3���:��8��A����A�ַ�������N*3�1�G��ӯL�}9�ô|kzFH;u+/^�(�>��|Q�w�-_�4�c���^t���\����4��cP�#׋�<���Q�JP� ��L8�����?
�#�``��=0?�Y�/����|����(.��Y���^����6w���^���Y!kY����)��^Q �
����Pzq��n}�Z 	�o\���1ۚ�G�2�r\�q�[��կ�RW�}�B\���c.IF\���%���]Ԣ�iE���?��|;�|;�-���	�]6��Px�vzn���>�&����l#	��{�>��P����K��4�a%c����(�Z�o��|C�v��\�>�5�.�!���fѬ|Ii���m#�q���e�흫�Gf/$�r,c�+�
�#~�߳�O�_>xB?����c�6��G�(�w����~)��Dkm=^��<9�i�wç�7q����������,x����\����[Mr���4[�	�
��S��$������1\����#*���fu8'�Xڴj�	��g��+�SP�NX|]79�:��:��R�|���5�)�Q��.��U�4eXl�	���a�ㇲ�T0���4X,Ӈ���jLf��p�cENt)T�`(�*�s���G9�����w��5���uſ�p$��!���5���bY��_
�uSO��>"xJ[+oizy�t��{�s%��t�����#��kY�K;�$�H�I7��(�y�𤘏9#��q߷��^>7���U�x�{:�%�8���)FQ��P�%�Kx�����xk)��Ƭ~I�a�#]�T�'
�(b0��3Jt1XLM*�\U�J���II���6��g����ǷB3�V��"Ě#s�!�/�?m�'����&��A�NB9��?�V���Lj�<q�gL>��	�\t�
�>���O�r��	�Ӻ'���{<���q��^1�tO�AZ�0ï�n�G���S�J�v���Z�`��Q�������KF���XV��3�����_��+��8/��ӿ���J����]��i���E%pp��O�G�%�/���s����@ы��Z�k>/��hE�?�����_�*|�D_�����Z����T��>���������;�_j'u-�Q��)�����C�S��L;}��Y��/��e�"Z(��dc����:�v�?��GMl�?TV��&�M�=d���?��n����k�ѿ��O����A��_k��C(o�Q�M��)����b�52��\��F���+���/�Er�����;��~h��o���Q,xG�v��s�W���>�����K�)��ڗ���]^�� ����/Y��/H鸚`�������QF̥�X��7l�<�v��X�@P�/a���@8zb��:��Z���>��ɬ��g�	�*��?�{������`�z�Ë��ڊ�$�}��?�V̿2�5���#P���H�Q���NO�^2��i?�]���i�ᇅ/�O�������j01X�u	fIN��M
���R+\<>G��h�޻�^���2ip|@Я<C�1Uk4ҵ��������7<�+v�Q��L��i��;����S��&�a����� ���dmV���MJ&�Y���t�E$��Gmt�[�\2�,G�<�Ux��ƫ�J+F�\�,B�Ւn*R�$�Ɯ�"��it~��YJx�J��Z�W�/�U�J��R��VS�����Ο2�?��;�_���s��Þ
�����GĐ���YY��$��1m�k��h�+����~��<m�s�o���o�~�B�&�|��O:�n�/aq��7^֬��{8���}c�oM=�ޜ�4�C/��������~"���ѵ�WC���v��ݦ�,q�j*�祶����7i"��ʭ���?�#�g��c�_Ҵ��'�|[���^���~!�?�z����z��q,��O��}SQ���R[hmm�tA���
��ҧ����=gV�ۓ���a�ί�if}�\4e��a�*��c�W�J5-4��,��nMJ�����.h8��u�7�/����k���o�
����\K���_�1^7�?k�p�pA�I1�uϷO�_�_�E�P�@���|9�>�o�߆�z.�mrT���Eń����;;�x���F���Ms�U~���L���%5��R��oeW�F�u�ª�_���7��e�2��0˪BPx\UZpR���n��S��$����i�u���Ǹ�Ns�_F����s��B��|����-��j��v?�s�\�Х�H��Ms�瀼M}.��?xW^Ԧ��J��Y�^I�C,�ŧ����5�S\�K�s
I<��F%��~��{���%o��5���w�ȵ
�h��n_�
�Y����9����DL�t\+9�p���rGʹ���d��yЅw�c؄+��ڌB���$:�	���OP�{�=Zy��O�WQ����/t
.�y��K{0�Y�^G�*�ɹ���6d��g����sy6M����r"Ӥ����#c�vowsqr�ˈZy唡�Fc��@��?�7��O�f)��tM4��H--\2m��O���t6v����@�w��)����co8�z���h�hh^}�co>s[���;��dƸ�.v�g�23��׀��=�<�F��8�jB�X���
�A�A��	(�Z��@f�R�(-*Z �*�[�Ts ���9&�RDr�!P	��YA!I �=J��
p�%�]���"o�'����F�G8yCc����Ҿ��/��O���<��v�?�n%P0:9<�M��P�#���0?_���
7�-�d���9� �}ޑ�Yh?�vp���]�x�EZ\��,�uh�0�8�-��+0�������ѯ���zû_���� ^����z� �����,�@����3Z����u��C<u�3�X|<����8�_�.�#E��ԥѦ�Ib�-_JT���X9��XĊ���_(��a�K����HMG⿁|W���
��fokir���M�l���I�S�A ��t��I���hIf�I`�J�P���*�Xs|*�t\6q����Cx?S�ފ�Mb��iN�
�MK,-7��w��9��V��$��g%����'�^_چ��/�>-���a4rͭ뺯��z5[��b���Oo+]�5)ʰ�p������c]*
_�Z������+��JK��WҴ�X,,��E�F�V�S\�y$2;�$a�%1ӟ��x�dxI��B��B�j�m�pңJ4�RVN�W�*�%���QG�y_)��X��z�)��V�.u%u��GZU�ѧv�Q�4(S������r )�O��*(��/O8#�� �\'?�o�V�GPG�K�Շ�hY�Du���EX�����rW⏃_
�k��x�ž�ψu��=�S�t�n��Ѣ��X���Pq=��P�8Ȼ��������rV�y]���}��ig���[j֖�~��m����\��x�Kc�j�GN�l�X]��(K��5���	��BmcT�{�k�Zi.�]NM*�_��ڐ���k��'�g���&��jg�X4����?�o���5��_�3�_��G��|�@�����:_�&��m����˭@���?"����\ܘ��L�1#��~�K��i4�	h6oc���Y5��d���L��������įVۧ�d�%1�W��}k�C���J��/�?�&G�W�����Ңz��?���_���s��s���Ǥ��W�z�����;����zy����o?�F�<��N3����TT�ǰ�P����T�zu�?��	�d��ڹ�x���%�x�ź���
�wN��}wV�+{
:��=��L�*��2�����S����'��������K
��8���;��_x?G���`��L���nt�!��
�Z\:��m��m����Y����a�R�nOkZr�*��\��B:{�����p�N�,��_av&4�V�s�TcU�S�'~JT�%uʚ��۟���?���!�&�DŽ&���/�_���}��D�'Ӵ�7��$m���}Z�[I���5�M�D�}����v�u���=�\3�u�J�8
�?���_ɧ�=G�g�#��s�N��3��l5?�~"ҴWk�C�q?�os%�����uiu�k8$��b��l��_��sZ�]��5Υ��—w����WWwڌ�E���]\@LR\è�{����G&Eb6�19��,v"��sO�c��S���a*ң�áFt"�
���5(Fr��P�w��D2<�O�ú/+��G
~�KJ�"���MxW��V��Z��q��,��__c���]�<�:��߿�R���������$8F=8�ԇ����@�;��{_���I�-�r|ێO_�����)�[�[�������i���O�
v���������Bg�s��GC]�����u�X��|Yk����>����1�u��������T���'R�����n���0���=0N�=��GZ������t8�G�eS�9�'9�?���*ʢ��}A�?�n9=r}{r�"�-<5��{ė�+YxwE�5�ą�k]*�{��%P��h��cP�� c&����E��x�����O|6�	�O_��R��L���+��]8���W�\Ae��i.�m�귞 {e��3Z�����I�h����5M3PӘ>�C��\�.�N‰ z�;�u�/�Ŷ����_|N�O�|=�5��]��O��F��_f���t
?X��i�ss� ��J�\%��O��&�8^�Q������}s�F�V�EӫhԼ#e5Z�Z�.��V�#����
2_��+�~m�d��|�G$��Y�7%�帬\*a�C�ԥ�x��,&&�Uz�|M:�ʄ�������sJо;hZ/�A�u��:\Z������W�ԅ��K�i�\D	K��|�џ��g�O�����k��>�����{�7Vs�z:��\C*�ouk<q�Z��-��q���������t�r�V*�<�;#���Ƨcs,�a�-6K��~P�����$}������tn�m|{�x4q�E!���P���b���XmVX��Q��y�R!?��6Y��)��T!��+곌)�J5�ch}f��M^0�J-�*䓺m#��-���O8������"�S����2��Y�Q�p�kC%�pu�%W���u�:��W�GF*�U
�T�I�,d~�s�v?��/o�r:�܃�� w�g����� ��8�L��8����~��#��_�������1��Ns��Fqӊ�ka�?Py��,9���׎�]��W\w�Ј�gy8�=�`Ș��<ۦ?^h	��OL���I�`u���h���a���BFI�OO���J�.A<�#��������ۻ.:�[z���=s����*G���b�tA������4�uo�����
���ӫ�&�Р��(��
�?���I䯏R�䎝H�2>�ry"��Կ��^W_�"J�9WFrq�=�s�{����+��#��ӏL�g=�'�L!#�c�1�{z�jҨ=����ju��m?Ŝ�d�};P��Q_�����{����_�W�n�NѼ3�C{t����>6���
��L�o%��.�&�x�r�f��\�w,v�#���?�����&��M7�����Z��bmGG����qp�`�s�^*�<gi=�[�Ķ��*���+-B�N���<�ӏ��2����M�wac���G��>1�֛��sqo��J�ij�%���,�z����YXFdH���c䫃���;������?�7��:�����x�[����g�
�qkZ��ix�%�%��mKIkrfV���-�|�1���g
q_B�W��x�0̕|,]JЭ�X\B�[�^8:5i��V�Ru!��>J��:8��w�o�~&���%�(�1��dY�c��S1˰53L��]V���8�a*e8�>)Ԥ��]zT��V���#�_O��W�����|;ᨵ��}'H���n�4{
T�F�x�L������p"H5}6H��~�e��s��XVWVPT�ܤ��w��9����g�5+.t�>�z�R9�E����a�P�n�n
?���R��~�jӵޫ?Ï��t'����Ӿ���D���/�$IL�����<g�`2����#1�ʭ*�x���P~֒w��q�o�u����~��2qψ4�����[9�Ø\�5��J1�T�f��S�[�ԧp�V�<<k`��R�J��I�4{Ƌ9��s�����9��$�����pLd~u��L�OA��,�����$���#=x��Ÿ�DžMn��܎:�.�};�/n@@�o\pO#��dw�|�@�rz�=���#�֩�w�:�#n=��9�h�q߸=��xg=9��σQ���N���2���;u�1�?�`q�d��W��=~��?A;�F9�u�Į�O��}�T�/���i��Wj������7��hC�R>�Һz�4?�#�+��_�����˿�-uv]���Q��.��l���t_��B�j�c�'���߬�A�/�I��gU�<#��	��e���4]7�2�^F�kstSG��]xol�����AXٹEiaE>��
��e6�K���h��7rZI����1ZŶ[(��E�6�s,�$�P�w3�������'����5��,PĀ��I�E�,@��Ǎ|!��6���R��ח?���${P��#��>�q��H����<V�
.-^��>X5��o����Yl��dҍ�k<:ZC����e����U��~}#��I�S�oCw�[=�Δ�&��I���DWq��M+HU�/&F��M|!�C>���K?�;RY��'��E�`���W#�}KǺ��~#ˮx�ᯈ>���ZW�t�V��:-��s��?�=�n��KI�d����}K�R>6�k��:��<�2;iw�P�zA.}��	UAb�UAf,v�P2ē�I=�r�\�E��g����_�����H��o~�<y�xg���"�ă�]J�L��_%E�ִ�n��X�n4/
��O���j��r��r����ul��Ԥ�h��*I7p��vV�m��]�ZI��J��Szݤ�ݷ�j�������~�?����ů���k�p܃�?�?��ku<jA�:��Rm>y��J��U�����H������<_�i�
>h�
�����0�>��^��X��q3jF�y�Y���:\��3?��cL1��<�_�OO�{��w�����Z��L�/5=?M�����u��]O����Hb�uY-�SL��Aq�=��m�����g���{��<i�=ƛ����^�ց���G9�-�y�n�����&��ƒ+��)�e�l�.�G/�P����m��?b�
�
j��eR
BNy�V7\��#�8+�k��7ZR�O	��b#C��f�Ϟ��N^�H&䔢�*r|˚<ї����_����O�`<^?�l��	Ւ��L�����C�L��k䳸���d�s2����#��/k/��о.xk㏃|}w�Ǿ���/< �i��քﺲ���{��[=U��Z�U�e����X+k���%���/��u'�?���|�D�jvSi�^���������K�#^�H�Q�����ټ��eɆ����J<�p�I��?e[�X�Th]�^I�ɦ���iʢI�s^<���Y�h�l���D�x�U���i�)Jͥ-��Em��{)��g\ѿ�%jA�?�~P��>�Ck�G��-��D��y�w�?��_��m��M\*��O�~9���z�߈��υ��v�W��L���꟱���߁|;�|M�|/�|E�f�{��k��se��4+5	�k2Go>��]N�X���Z�Cy���ܻ�b�`pT��"��S��Tb�)NR�1���I����#�V̳���*��	T��7�S�S��&�KD�)5����j�������3�7ŭ{I�~���	]]�z���=垏�m�=חo��8�آk}'O7��A5)��K-G���#D�|O�x����!Ե-�E�^���������{[�+�&���ov�ia	$RC4����NJ<�Q��O�8�o��Ρ��5�^F�+H&y�F�"����l��,�,m-�i��`��i~�ߴ����ĺ_��iZ����x���A�摣M�;�Z�\�$������$�Ÿ�z|Wz-���mz�wi<�V���\_�6q[����J�3
����=jU���F����N.��\d����xߏÏx{��(�8\E�N���Xz�#'D�*Ч*iVj�8Ϟ.�eK���1��l_�z�쳣�־x��;��.~��y Ox��~�m��'ĖL�Y4�N���76���ښ[<4����_�-���6��>$K⯄�&�ZX|�KD��.��Oh�+��SÐ^ܗ�Di
���XN�2y��B�0���/�����OI����f���h��!�E��sske�]�E�{�G�+}W�𧜓�豞/a1ʗ��e3;���M�vD��ic�z�p3��G�U�a�K��T�0Ω�qu�8�t�U�<�L=I��18x���T��z��D��/�<E��5�8����L�j�Y��0X<LcY�a�uW0�R��b0x������-�';Ɵ����g�ao���ZO��t�u�Դ��>�ef҈�>�c����e��"�HFDit
�t�<��s����W��~���?g�������uM#P����a��_�p�z.�����6d�1��C���|!����c�i�ω~�[J�~�e�Gu��ne�-��9RG�4�՞�q�=!b8"�[��&|-<.'V�'+�ޝ:�y]j�G�t+:q��oR���ԃW��?����Xq�<nF�:�{V�5����%bp�J��RQ���)˒R�8˖�%?N��ƭ���Z��p��׊��~B�#���=���/G��)4��
i��k��ҡ�͟�Hl��c[��Y����D�[�0=�s߿�f�+)C�����|��5����s��~���Z�t{���]�ߨ�n;g8������_�Ӿ0��i
��O��Jx�i�]p%ߍΉ���--���+g�=�ʺĈ&S��-k������@�l�$H�[p�LBB�癥��@��u�W�I���ۏ�,¿���-��t��{x��͗T�)�>��t�&���-t��ʹ�M���%�k,0[�3$�
�n��^A2��=��
�C
�q9���H����j���ɕ�p�Ulm8��Su(�r�Z��i�I��h�����%����K	��Q˧��c)VT�K%K��p�|d�7JT�ؼ��L4iѧ$��S�G%�Z�E�
?��6�\:�íY�{��GH�-��(c�t$T2�����G��<�	<colzy��W����?l��O��2��P�Fx;]��M�1������#0��v8ǯz���j9��z�~������4�}��71���_4�U�.G��]C[ގ#/��y;k�|Vg�m&�o���<�H���F=G�Q�~|�W�4���i�?��01����2t�p[ Ϩ��nj΀�|G����cN#?��	<�/�Ҿ$��>�\��7��k�4��+^�'��?�o�׌i���V���۟�Q�f���Ҩ����~ֺX:7�*����Ѿ��V��/����e�袊�:���4��s����8z�'�Wy�w�u���I\=����	z��<,_��i��4b��ք_��Zϋ��Z�j'�抆�?���>���������(����%���?��_�ډ�Ko�"�t����o�����AS�A���s����Gb�z/Ȗ�(���:�����Q�[?O�U�~�	��F��Y?��O�:�ۧ����4o�����$��c��������TkS_���u5��?���L���tW-Ѿ��
�n����\��F���+����_�8q��_�TK�]�}-�����?����;����xG�v��s�W���>�����K�x��K��n&�?�x|�6|n�����~�����_°ջ��, ��%��Fw�ӿ�XG��WĖ�w�5�/�Yd�]Ťve ��K�+Q�nt�dS�	�g�I��"�	��`��;��Z~׾��?i�c��4���
�&��4o�j�P������-K��ڶ���pšM�����[�sh��/��f��?���|7�c|�>x�V��柨�g���,1��]*���.-s���b�l��?*L�L���e�k_�6���R��?	 񿏼S?�t�ֵx��J���?���Xh�-
�����Y���p쑔Q��8�#�����&�.�_JTa�q�4��Z�O�V�:�TRn+�SRj<�~���0�\�+�MS�*fu�I�j�8+�)B�eV�ev�.zN
��(5I�/��kվ6����Í|�ޭx�$�<a�j�Eiv�7V:y�෍�FH����(f27�7����O��dO�����ѵ����i�R��K�Z_�l�[}?N���do�\��0N���4_�����
�x7M�I5-J+=3T���I����������DE;$8v��������3�ښ�����
|)���M�ޡ�h61�y��I~�%����Nf�M%���
T~S:�p�Z1p�UH(UU-:T�JS����"���
i�E��jա�fr�<',�3�a��V�9�p�W��Z���ES�w��75������I�ߊ~=�.�m�
KT��w�{��uX<!q���j���d����ZM�DM�yda�!�z~_���$?�_������M�į����>�u�]h�å�2-Z��MmR
{O�"�?_Gq.�k�.�<���:����7��O��_i^��񶽧x�U�H�o�i�6�PĞm���-�H��M������O�	VrȰ�J�9W�<Kiѯ�qj��Rq��;F~�ٴ���w�'��Oe��D�+W��#W
��#��Q�k�FTc6�yG�Ji�һQ����-��j��V?�s�\�Х��_����[�%{���}\��8��)k��>�����_� �o�㯊>x�-��-�?��1x1�u��wWZî�5�����X�mb�y!���[��V��/!��7�~���叆�?�[�
ƹ�Yx����V���H���B^xm<�[���<�]����q�5���u��Zh���?|�A�X��>8�q�k��o���5��R���5[�wM�㼙xl�5�˝F8!tCu)�ÕM�>����/�?�%�y��¾׾š_���b�w'L���N%%�lm��z���>�k�
�qCol��p�����_�4��?�]l�Z�G�~#��Z=v�T�&Ӈ����;+K�P���ef�O�IE�?f/���ό��A�@��%���[�z��"�[��ZIJ[X��>�⿹��.���e�0���7��So�����òxR����6ڻZhwq{������V���w"��U�ԯ�#���=�����g�+_�X�z'��ȯ�Ht�#ºֿ{he���k��K<��Z:Or��-�J�� �)(�);%���֍����F�Z�Єw��vW��6|�'���Y<>~��mt�'źߌ��n|O���F�[��o�H]ͩh�z��R�~�ZYu{{[�o�o=��|Y�}s�SX�?��ƛs�Mj��M���M��Z}�#Y�}z����uqq؉VQu�)Ծ~����o|R�����+�ɨ�S��}=ƛ�x��H�P�ң}?L��i"���+-KL�C����沛���|�wš���o�^���k�wH�b�a񕆽��wֶZ׈�m�N����N[�/�-A.5���Om:�(��㷎�U�I�Ƥ[�i$�v���٦uU��4�V���J�(�U%R���9S��+I�N2�i5t�}�/��O���<��V�6��½�����G��V������~p0��IǷ~x��V���sԌ��?��_����g�,��Ŀ~|>���	�'��A��i
<7�Z��2˦3�'�4�CA�%�iv]#ۦ�<�ʱ���Bi)e�����	Q5�	x&���e���^ZxW����6����:Z+y88��u�ڎ��;in$�յ}Z��{��{��J��;��.v���72K4���"���W
d�|�U��ӕN4�'ʫq���j\��Z&��}yls֪�(�.��ݯd����G��-�����~��\�*����2��ß��#���ݙf�-I./|c��]A#As��;�yP������R��;���Z���K�xS��#�S�/�å�j������h�R�)f���즆�H�	�3�3��,,�6j߳���y��o��&�J֤�Wv�l4��R|2�]�Z�s5�\k�:�;��m?S����K��҂&���o���xX7�?��]���O
|K���OM�{�Ě5ݍ��|7��q�~����5�$�$��Z�ψc𥖓yq7��-_T�too���p�ѥ��Z����+`�~hʥHʝX8J"�BuF��$�s��\��G�c��+a#N��z�v�����5(�K�Q�$���ѯ���������?g/�QE}���h|3�k��:��,��x�KR��Kin�����s˧����U>�/�|i��ž�4��_�:}�����A���4�WN��f�����ym� �6VG������K��j�f�o�?����o�U��Y���o��Yx2����<m�x3�6���*�N�/|Cm6���i���5}&{�iqx����������ß����;���$��Ú��ͧ�g�v�=��kB�g)�ϫ�`tmR]��}m4��=���xW/��t�O^S�_���O�W�J�Z���Օ8����9�r���ʯ������b-ϊ�:�k��K���i�W�m�{�Y�L��X�K�L��Y�6� �������!�'�f?�a־4g�V?��y�l�����'���l�����U�V�ឿ���<5��^�5?�z���]隣Ǭ\_@�^������h6��ŵ��o��>ȱ����e��!���5|����⟉
�?���
���%ԗ�ZV��^k6V�2Es�1jW�W-=���S/�4�D���|��~ȿ��YE�x�o��-oK�n����v�f����Y[&�j�����}���i��cp"������|!��O��x|c�~�<s�CT���/��c}��֖���e�\,�r][ZEu$����H���᷵�~�������>�9Ӽ)�94�tg�,�
n�g�m�Rk]9��S���Z�Z�;h|��Bm�,vv��O�[���N;�TL��������� �-f~.�F��_m�.|Ak�M���|'�Z�W6q��lDV��kM�PI�M	��CPC����O�X��ν*_����e_�C���J��w�s���Ǥ��R]������Ke���1^aꖫ�s�0�y��5���:8���Oӏ&�8
U�>���A��Ҕ�,Sӯ�j9�*�3�:��?�+�/��V��_jV�z��Q����u+��T��M���M����P����7v������Y�-�I~��5�?C��V�p�FIH�#|�u��C��u$W���U�x�Òi>����I|������3���t��Y!����s���a��<&i�c2�R秌��%yFWS�Q.��R1��jPN-4���,~3)�p9�
N�|"5a+��Q^�ZRvw�ZS�*��8T��i�>~��x��6����>���
��:���9��ڎ��4�mw���[�ַ
��0�p�s=�vv�^﹉�P��xW�:.�m��^�4����y�����(U�T���ZIdU�i�ov��+O�_��׊g_��mqp���������2�����BN��S�NC�%�����4m6�ư�����P���-�s�(aa,��Uœ\�Ϸ�,K>W��W¿[��2��1��~�R���N֣�ViN_��������(���s��i�b�T��
.Q���ʽ:��F1�*rt�sTi�A8�Ҍ�+JW�Q��s���~�@�,u+gO���ۈ��oa[\Dw$�s�
��N�I�����W�I�U�z���������?�Ƭ��I�Ue�F@>��^zP�x/�@���F�uu�$��֧����殲�8?�CL��r��k���V���/ş��?뜟�:�-�կ���h�|�ⓟkc�F�q�����~��}A_&��M�'�GO��\����ӿ~h����#�y��y���~#�9�r+�d99�����?^�g����$���x<�r~9��5U��B:�w�^�z{�_�������g�]K��s���Z���ok0��}�[VӼO���B񮂚~���0�ۭ��\�I"��JbP|�9=F=�����ۥyǏ|8���g�?��.�7B�Ýg�z�^(�"���(m��mg�|��0�W<w6��Ť����&7/�ft%���uhTѨIөӏ5:�jP�,��\Д��,�ۀ�s^��5�qk��'R�I�T�8�ztq���Fj:�2t�u�N�Q�hq|y����X�D�ɪx�]o]Ҵ��v�#x������,1Co�ܴٕ|�D��̕��~�?b��D�|S�x�m"�ƺ�������Eյ�ޙk{ksa0K���<�UW�[�(>Q��?f�����ǟ�z�����"�2d�Q�5m.�Ś�n5�4��r���f�DY-ᑗO��lOs$c�4X�N&�muح���[���Z��<�$1O�`Bm.��!kȰx*9>/�Ӆl,0x\5[T����B�&����NWv�m[J,��Tϸ��G�W�q�V}G�3����О,vk���h��R��2�ђt���9b#Z5)ΔO�;�9��~~�}ޝcc'�~!�I}��F��/R�N>Z�[@�[���rK]�5�7VM${�'���/���ǧ������|_�x�����	&��D>�5|��z6�ok�L��z-�՛l��>hԏ�R#��<$�h�h���:G��L}s�k�x�#���5\g>��R�99�5)8�ԣ&ܥ�Nqr����[|���D�s�xW�r�-���qf��0�P������b'�f����0�qUg���0�R������N�?o*p�Mv4K�0IPӮ:�:��$����z�QǿZ�5���89N9��O#���eM���<�;��:Wȟզ[)'�z���8�r=:v�44����-��y����5��1��' �#��lխ9G�l�����Ώ�ӓ� r	��~����?�#��1J:��T��O��q?��:��ro�

�k���iտ��PWs@�/�_�ו����M�c�}x��9��u?����w���W��lc�1�����g<PD�	��1�����yz���N?NOb}�޹�.���y�3�V�}����'������o��Ѭ�O�,L7$�Ȼ$F^�$��0=T�����x���Lo���/�/��KO�ږ������\xK_�[�
B�����A���X�E�jDz��8���;���}�[�|�#��?g��K�(�������o�k���v����|)�_��^�е�*��Y�y|7�}V+�-/b���G
�<J8q�>:�<.>��S���p���/�q�Mӓ�Joݟ,[M�6���	Q��:8J��!��X*�|M	R�e	��|�����b�	�h՛?��D�>���W�^�u:�]��5]B��
�����,^M�#��y��m�]�#LĖ��G���Q>'~���W�����=�l�{k���Q�Eqw%�մ�R�[�D.�nJ%ޕ4QJ��&�P?
��
5SU���[@�f��x��z�q5��#S�j�h�f�xZ�;Cg%�\\��=���\���Ǎ㼴�`��徻�����@�U�ZiӰ�X0󠺸ߞbF~�ߩa�X�*��Ta����t�+�>W-)N
58��sS�73k�&���_�쳿�Lw�ʞ�xJP��ӭ\���1tjR��r���C��΄�B��������A|<���Z�C�y{#Z�íh��TzLJ5��%�K�ቤA&�Im�ccݻ,�6����5���A��N�@㎵���#�-����<&�G�+�փ�ۓ�����Z��<=���*�g�i ����
���B�OoS���������sYᨹ<5ZT�X^w�8Ѫ�II%wN�:�OyF1�ճ�1�5x�����hP��0�p�Ce���e��؅���旲�����d�'�F�z�)~�Y�J�����NH�d{c#��{�H��=����l�Ì���d����Fy#����Y�12	�y�>�}����W�#�c�:����Q�F�'�?lE��g<�f�v���
�]�h�����\zq^��c�ZG�^��t۞=@�7�}�T�/���i��Wj������7��hC�R>�Һz�4?�#�+��_�����˿�-uv]���Q��.��l���t_��B�j�c�'���߬�C���7eU�W.B�Y����1
��b��>Q��@�$z�޸��?A�u/
x��k�T6/yo�݄��v�k�Z4w�3[�@�^�[˺��͌J3���Y��u��3�	{���v������Kf�ZN�u5彥�[�Q�#Θo�2�-��eAgm�ys�����6����)7�m�[��c+l�q�i;\deN��柁�?*�_��	|��Y��e��k�{m��Qֵ]gν���N�x��V�u��	46+om4��ܐ��7�]Ia�t�+���H�O���]�+��'�A��?M�J(�����^�o�O
xS_�%�1�X4-*�S����nz��5�Z(�N��OǾ.�y$�ώ�_���[��������Z�Yr�,�O,d�1q������n������H�5�-K��[	!y$�f���z�����9Fx�rHe�G��~ɿ�
���<Y'�5K����)�
Ι�x��h�O��Uմ�=���V�:}�������h2�P�C.⼯��Ԏ>�6�L\c�*0��NJR�=ZJ1�uoWk]�zo�9�!Q�B�aN���ѣ���JNO�r�8�J*4�Tu%no�?�+�	������<�|O�`���+���*�tm3L�O��e��-���i�.|	�\��W�8D�}�OmI��Ѿ���� x�V����K�����}ߋ�*�⯇�x�B�5����_�A�xKV��Լ=�h�47s|W����v��mƟia/�-���?�
����:&�i�Ci��;{K[}�V���Q
$V�uqo5���s".�	��_���?ٻ�Ŏ��o���t8�M���J����c��1���2A��#Z��2.Ud��9G�8�*z��q�M�ӧ	r�+��^6V�!����6m������r���r��T�a**UiKooF�U��T�#�!~Ŀ
�Y�A���>
h->I�ɡ��񆨿�u���L��}��A�|I�;
|<_x·�圾�n�j�j:�ܒ�=�jx��<���|�5����|=���P����"��|a�A��|�;˸m�ռ)�(���2Mi
е���N���Jx{T�m핥���x��E����~�e�_[��k|�Q���˗zF��I�0+�:��-~�_?jm;�ό���"��m|q�_/�#m:BC��X�6�i��od,ѬŬveU�`��]��
4��ͳ�|$�Mb��{Ki(ћiM��JqJR��r�SĖQ�έZTp��J�MBma�Ӝo)�J�{Թ�O�)٦���?��D�3�=������������A���(s�E<w����6��!�#��6�_�+����C�[\q���������tO�*�p5������L�|	tĘ4�MH�IH	P�4�-��G���Ēӏ�ξ8�Y[c������+�����ك^�u�Q�_������|����[,�[������_�@��7Z/�#�0e�n����J+�8o,�1U�?gQS��Ϟ
���j�me�����9�W5H:�]tꤛ䋧8ƶ�����Ӗ�z��N���v��Xݬ��
��݆#,cq���ѯ/�h$��.�o��o���oe��,n���.l���)a�rZ9"�9cd��������<А?{ja���K$9U��XeU��|�l��ܠ��-/�S�m-�ь�����0�G<F}GN�2,�	��RiF�7RM�e$ԔZ~�4WųV�U����5�ȱ�-Δ��iԓQ���9Z�J��~���C����.�R�Iq;LL��m�y�L�����9=I=M��ܺ�me�
��[�rnfb+<�##o=0H��Ԟ%���щ\��tD';�M�zd��N����5t��7 ��"��v��Zj~A�Hmfb���U9��
��.7���{G6���Ҽ��]�����[�>7.P�jF*��s�v��,,����iAJM�٧�����~8�<4�4r])�;[ζ�̻��ͷ�R_�:�,�$$�"��������^�	g��6�F��I���6���G���p��&�L�^���	����s�~	��վ'�V���|I�=���Z4�pݘ����Eɖ�-���(P4'c5w��N�n�O���|m/�<a�
�Jֆ�YxR�;7�|1i��(���O�}w�}��"�����#��X,ۆs\|igr�p����tjU��}G�V�%g��[
R���^H{F��~���(��p�dYmJ�9�<�5���F������-9�غ�le*)S�JQr��j:Jq�fҗ�&�wo��F�������9�?
��n��a�C��w�:�W��v�v�:J�g�=9�P|ZR���	��J�?�w�~(E?^�d�pF;c�8���Ю� Rz�{��r+#ULq��s�?ϥW�]����n�zP�o���)пe_�K�ݖ���-��S�K����W����@���[1�n`��y������K��k}Z���+kx.�;m_��_��;�;)�{e�)'X��� S!|8���9[㍟���']��i�}ߌ<g����K���5sk��kz孔�*�;h6�D�"�
E�<̞lp��9~��3���ㆉ�_k��n�=zM*�T��熴v��-�ytn�M�.SHӵ	��˒�24+4���2��.��)�1U%�p�*���4�*u9�U�E���ӗ#QII��_�0xKǹ��<q�a�Y�#S+��Z_?�.x^����q��_�hKNU�^t9f�i�ח��/�?ڇJ���/�
x��:��Cu6���xb���0�u%�ַ���S�4IY�"7���J�O�'��ӯ�1_���>'�u���.|z�E:�����>���ݺ���~!ӵM*�w(���>����7��¶��ݙ�Hw�e^$ǟ#�X�||����\�M����7^�r�F�<5)�״�9Nr��I�ʥY��W6�v_k�g�1��:Y&sN3��9�q>m���U�q9���hNt���`��,k�Rta�uiҕHAU��\'�pA�=��A�x�CoMcN�w���?���3��#��F;�2s�֫R|A�d�5};�_"<�1_<A�r��O��A5�wD�?��g��\��7��k�4��+^��u���(�3�a}j�TN��?�],�?�sV��Z�`��Q��
�|��ta�^����QEsg�w�u���I\=������;���褮���U����e��/��~���1�kB/��g�?�������_��ECo���U�KWW���}G������{���D�?�e:~?�T÷��u
t����o����9�O�#�l��KET��v�?��GR߇�Ө魟�ꀪ�??��I�Ǭ���'��sm���Mt�7�z�_�1���_�e
�_�5���O��:��t��Vf�]���+����S��u7_��Z��}O��Gx�/�8���/�*%���Ծ���z�3�N����PHk���K�m�箣U��^��^��O%g��4�!���i��w���g�0ܩ�͓��ס�f��72��Gn�d��c�|V��c9"B��s���$S����w������j괛/VK���) ��@Ű0F��@#�k�go���u��;]&m7R���,�w6�\j�q�B����2��;{�h����b8?��~����+�O|R��x�Þ"�����F��G�U��j�U��E��%ܱ[A��&yg��KXJKqs%�</�z�Ǚ/�~𭷉/�_�h�!�4�W��CI���� �P��Zַ&�k�i���-�l���U��E��ݐ�d���!����b1t�8*�}_�s�b�n�"�����Z�7���V������OҧBUy�jai�T}��&���nGXxƕYU�R�Ћ�t�+���/�9|ỉD�sMIn>T�V���K}�Xԓ�j��kFO�V��[�E����L���ۉf�I�8��t W�Z��+S};�[k��oX^�=��ይ�Z]����R�|�*�+�*�8mb+�ڐ��Q��lo5~��e�K�Z+�S�ʩ}ylR���$���[[	�DZ�0�H�cb�I�u��&a��{q��<MJ�hSuc��9׏�P�sP�:|қ�4�yb٬�>��W�����N?�jV�I8Ӝb��M��9TqW�Q���WD������=��l�(6��DP�**ǻ����;(ݭ��2�$���O%�Kc9��ⰷ2�@�Q�೐���%����[M���n8�'=�'�8$�p8��I$�I$�J�$����~�)JM�Wm�[m����o׻{����h�~K�z|���{W�����s��B��*@WY�H��9��
{���}\��8��)k��Z�����eh�4�xᗌ~�Q��Ym����Oq���J=C�R�ItӢǥ�{W�d���F�w�]����Z���!�WO>
��<9�������[��M��Q���4�ZYn�ߢI�ۋY����U��I����N�Wľo[[�.��h	��j��Xݹ�T#�$�|���Ȅ3aC�t�����h�|E��,���F.VҒK���H6]���o�b
e���Y���V�_�W����A�Ex�Gե��<��W)�iP�?P��#�~��[��Ҭ�����c�̋s�i����X�任�{�����<�?��D�Q����.�Y7kZ|�'��yP�6�$�E!�eu��c4�a��,��{E�����/�$��P��Q.��/�#�Go+䥺�ٍL�)i��F�.��;y^���T&w���+�F��/�?7���?��{ufa/��
��Е����-��O'B��Ŕ�\�ϱG���χ|+/��n�$�G�����"H5��[���$gd�6!rFy��2��3Vƛ�;�i^,����z��
>?�N��Z�еuuo���K�	41���P��ȗ��!��[H����B��3'�/�u4ӵo?�4o���m�7ºci�K��_gmJ����Ԯn&܈�`�I�j��E�?�+q_,�������\����/�?�O��s����d��zc��Ÿ�8~�����]�?�>�5]n��?�2�����F�|/����;f��Vt:���*�$���
���?���5����}��z����G��<ڮ��At�=6�š柨I-��c{+��M0o�I�L�Z�U�NM/��b���WM�٦�f[\��Z�ww�[��A��bQ�lDNT,و�?�ߴ��a���ᯇ~ xS��>$��"�M{;�
GL����Y��,��gf�Hh�X�ṁl�ъ0�[�`�_��,�b���N�J�*�T��	�*^�8�>j��ME_�q�<��pَ�����(T���Z��gj�1J�:��ENtc���*�Jv\�����|/�ީ��ơ�_]���I�
_R�[[9�C�Xl�SQ6�jZ���ce��i�����g,Ŧ��?�#����������%��4�����鶺���q��km�Mi�e�kos��)��!+�������-x~k_�?���(Q!����]T*�q%��3c�k1_�^
���~޴���/�]�*�΋�xw^�Nye���N��K��^�L���T���tZ��T1�Pv�c6"��},⹕�yz��2Z5&��rl��JMS�;�d�^�p�*��[���WR�:|�Rm�5u���O٢m��<9�?�^ �lj'���nj<Yi���^�?�#���/�5Oi�z��	�N�m�hi~�qo����[w����K��M~x��՗ឍ�Yxj���Ʃ}��]x:������\^�[��8Դ�Bl�C�K��� w���?�S�r���M����%�Ĩ|W��~7�U�Դѭt�	|=ygq}���D[@ڍ��a[1����
��?�?ٟ�G���1�ᏉcO��|3�+DY�1�x��]'L�<7�H��K�h����L�ӚK�e�1�I 2Hm��H�Mu�gl�2��t�
x������"Te�S�S�J�9h���U�:p��\�T�����QN0t���%$�rΗ��ɺo��Ϙ���gp�r?��ҩ�v=����j��|�Z�	?k����?���I�
��|��/�%jV]��|��/�%|���O�o��V�G¯������f�=Q�M�xsW-�����o5m_�6��f�i�gӬn<;%��g�r�*��-,�?�}�\w�t=K]���M�.�ᗂ奒�IK9'�R�V[�.a1�!�1{pG�:��O�(=�6��-|2��:��k���
'W��������Mo�Oii���>�W���m�����i���G��8x�E�o>5|$��Q���Eaegi�mpk6��Z�ڄK�Ie��sn��I!�Y�f��=B�e6�^��&_���׾�>�<ω^"�[qr�HltxV�;��%[�mm`�}��&��1�iY��dH�3�7�=wJ���n<y�^%�-g��P�ҝn!������l������>�za
��*����>��i�!�����ץK������s̨�y����z��?���_���s��s���Ǥ��W�z�����7�޿��z%yߏ��o_�B�<�N�?�MU�A#��I��'O�
��#����t�����j/�3�xj��V�Ӯ������XL���U�e�͍�B�����L��.�m��F�] �Y�����
@9�Gʿ�F�us�����&����Fc����v�ʗ,$�s�8��bͭx��&�t�"f�
'K�|E4rmS-��9��dc�%9�AP�#�5F�^m깞�M%��k��ǩN�C޵�ފ�E��}t����+�*Ff{�x�|��UH��8���ێHǀ�П�9��Z��qޢ'���x.�{�,mL�}�C9�� "6pO=t�A��r��റ�+���+�,{��%��w��G�?j
f[��(2|W�úM����v������� ��L��2	C�f����W]�]+����mq����}�wd���}]�\?fM\j�	4`K4�[JX䖞(5
�8 ?��Q����r	=�?^?���g�r#�ψ4���;W��"Bs�6rZ��x��<� }c3c��_����i�+u�,y�U�My�n��箾f|��G�I�1��!�?��������O���I=kc3ܼ�"���u����]mr^��z����殶�8?�CL��r��k���V���/ş��?뜟�:�-�կ���h�|��Y1�{�Ƨs�?>2y�Ӟ�����<pB��^�y�.NGO�x�D�^(�I�'�c�}ns�랝kr�~�䓀9Ǯ� ��>�ȴ�H�I'�����~��gpF@�9�ש�{v��@�l�=�~�/�
��?���t>'���A��^�l��#�������hZ
�Uc��.w'ޮ��M�{dg��9?˦O�P�����/gY�O�t;PX�����P֧tdP�Z���a�k86�=��Y�*���&����X�	U��jN�}��:u��JjT��Nw�����w���>2��|3𞙪����g�<e��jR�i��_x�H��[->�����S��>�V����HI���?�SE�3M�����8��գʬa�����..mʖ�-Ƈ�n�U�Oi��b��_��-���?���t�h�^���W\6,M�����[��#�uce,@m�H^%gDߘ.���!��e��<��e���FѰ���3�8<�W�Ѕ
n�ST爡$�J�Q�(��d��KH�����_;�C�
9�L�<�=�Qah*Xyb24�8���.�UJ�N�YBS��'�3�3��q��q�{{xJ�Lq,B�|4J
��8Pp���z�>&�?�_�c2k<�	���K���J_���+:H>�}��_�?��K�:�T�[���41�2�+*�J���P�{�_��mG�F�;�dh��fC�M���Ydg
���(��A��eYv"���ʒ}���9y�|,t��W��j`�N� ��̸K�Usi��d�%$�[����X�)'�$��׵닝B�#z�s�\�ׯ=���H���y�s��Һ�qq�\�g8�-3���ߎ�똜rN{��O�G#���~J�&d�B�'���@������� ��ۦ>|x��9+��)� �㟐g�>�8���E���,s�]������@�h���}���)GA�ʑ��?��#G���V��M��A]�p�?��:��ro�

�h��� �G��n��J���<s����<A_k�隈�����y+�	�1��9�}9�>��,�pr��}{���zdWEg6�����'����sĬ�a�z�\����~��㧹��s��	���ݺd񏯷�x���l���_�8���km���`����5�Imcy@A7M𝺉���,|Y'��Z�сr�@px�䎹���5����h��<	��e5��o�O�Ԯn^camu��i����2G�ca�C�Q�՝�-�Ӎjn�nҟ2���q��'2W���q-n#$��e�S˳	a�Y�SX�ૼ?'��o����^JrKV��?l�^	����0е;/�3���i�j���Z��ľ#�γgk
��VZd����4��:�$O�O,����t|[}
+�$�<!��k@���$v���>�m!?9���\�݁b4��H\3�H�̲G��\.���~
�0y73�rk���[o�~7�H�����H�,��^�A-���z�0�?�B��rxS�P�����)r���No�R��.ֵ��?��x�/�c���K'x��ХNuq1�~�q�J8l4�Ҡ�/�uS�)J�_�g�)�8|5�P��n'�4i����(8/�Ɲ*�H>\�ݸ����<k�F�1��`*?u$�ds�8�5������ǁ�(%1-���{�$�e~�{o97'�V$��r9��+;�89�y�<q�\g�j�|E���Q��U(b�>ܴ'B�~w�J�mn�?n���������_���s+��\�����C�p�-m'5�G��!�dg�����8ϧpz
Ǒ�W�g�I���x�oΠ3dd���8���q�=8��W���p��8�j��G��GπNx_n������^��G�'9?��q���'�2NN�~�G�.	�{�g=x�Ew�	�����s�pۜ{q����}�T�/���i��Wj������7��hC�R>�Һz�4?�#�+��ǿ��V?c�x��^ּK��
x�^�uX��N�qz����iױ�26٣K�y%_�Eׂ)���X�ؒ ����s���U~	�:w�<��������p���G�uKOT�/ج4�Zͺ�R�+�?�?�.f����K�؈|��$4��P���}֗�j�d��.���9�yqt��s����cM�x�dO�*\�Rɥ�����"h��Z�>Yה](?i����sJ�f�$���M����f��C�b����b(��:�_�>$f�xz�L-9���i`kΦ
�)Q��m��'u�
C����A$���}��c��~��,��5��_��8��}��u���j���'�����k�;�z��o/�߇�����>I5�7���.���+�vj�W�/����V��һ���[]=l��O�u�����滫N���Z~�kj��x>���鰝FwK}���/٧�.��͞A�][۶޿�Z:�W��խ/v-��h���}��҇Ӆ7M��$�Juq�M�T�{8T�UΌ�^�5V5e���9�
���7��_b�ο��_ڣMյ�6���-�4K�+��J\�[\]�:�P�9�^8�m��F�/;�k�u��_�d�W�?�8���9_��gb�B&���$�QUTp�~��e�����O��4�~��z��m��K��h�~/�u{�>h��ү��m;IK3{-���o��k
����,�L�)��kb0��ʵ>W
s�B��ܢ�i�m�t���k����w�n<� �^&��K ���i�Y�_üK�V�p��ժ�1���sv)U�8U�Z	���B��*J�p_[o��7�t;� �3���ď�\�ݮ��;�	0֙"��b�ð�@�c��\�Ȏ��TsHڇ�v'��=������Ǧ<?|s��~K�m�'�ŴL�?�_�T�3I��ET)%����$�;濔��W��~��~5񆱤\�j�_�9�����u���q�����S����2G�-��N_�-��|�Ě{H/S᷌.-��%2[h�w!P��t�^�	Q��+��
y�F���ҷ��_�e��>}xD���w��9oymvF��{��2�ʩ�7x�'�3�Mh�o	�]4�f�&������O�R�N|��^��jI3�������^P���0�cd�M�x�F��r�ub�������r�c,{%6�%r�lS��m\�`xW���kЬ�
J�嬌��m:�&ؗj��y�CG6�H��ԕ�p�]Ao���J� �F]����ʠ1V���
G�v.;�%�Ȋ'"FDI`ٕf]������%4���濽��N��k�im4�{��\�ex����zY�]?+&�o��`��D|`״��(쵧��\�uk>������-Xi6����cOЯ��n䲞�N�$��Ғh�	n��p�me�
��qu����Mg���k�xr�'X��5�?iZE��{��=|�r[vm��{��[�[��T�w�K�t�kD�τ��:��V����K׬.��!�rB�++������j�V��R�c����-Bk���~�kfmJm+P��~�-�`�+e�!7��I��_�x�����j�*4�c\=5F�6":���_4��Ӌ�e=�._��j��e���b�تx,<'Qխ[�a)U��{I�N^�i9F����n��-������-�v�?���'�������XZ|R�i��>�-��`��4����~,���[Z#���?�m��d��_~�ͽݶ���
��?�g�
��Կ�j�����|!�~(~�:�i��.��T6Z�����Ɵ�K��[�mu�Ȏf�����&��o���������_�ߺ>��~�ߴ�����T�X��.�ug�]��������gT��Q�S\��R�N��jJ�*R�JQkU8Մ%�RI�Ok��{�&��T?��t���*�xM;�	ѩROG4�'�Y�Z�u�����S_��Z}��V�6����K$6v��#En����.����>�acu�6�%�.�t��[�O5��?v];R���D�|�#8�z�x�Zo�]��_�x��R������Ky��d�Ď��.%�Au
[	>G�z{C
��ݴ+ՐEa��l�:T��oۦ$�c��X��
��L����*O&�U��W:�~��T�S�jS��ѫ�R��u!NR���7g/�<z����L���B�&�CºPuiU�*�aU9�EԤۥN�J���P���m*�Q����m���k0X��C��`>S���Ҙ��ޚ��9Ɏ���Ҵ��/t���3���ӵ\|�{h����'l�1<nU����﯈���X����Y�+�j�������6�~-��d8X&�zzτ�I�Om�+KmN���^'��h�վa�,5�i�`{��eu�i;���LU[�o��t�HM�����i:5&��
�.�Ԯ�g��n��i�I��y���S�T�����wR0�S�|�hQ�����N�sJQk�Sp�?q?b/������/�G��4�����/A�c�g�4��k�����_ľ�X�K"��«�x|B����՛�Dj���gO�z'����f�}ЛI�un�'��VYb� �F��2�*E~��|_s�~�4�&��D|A�Z�8�n��MY�5;R����BW�8&���qh�?j�CD��������OF�P�u������M���Z��B���;bQv����+W
�Q�!hN��7F�<%f⺺u��V��	��}q��z�9~�	fw�2�y�c�*��ײ����z'�u^���'kj:s.�Ք�`�*c8郏L�T�u�^@?�Qx����ׯ�Ҡ�����2��\�rr@לT�ݰ���Wx=�~ݪ(��iU���:u-۞*V�^Ƶ�{
��ߛ�թK�m/g7�[\�L|��8�q�?�Z���Y�of��Ƶ�&?�_\�NG럨9���M�~��O|��ƴ2?���;�S����S�Hn����ۋ%�i�4�#��w�̂-Z�8�ʱ�]�ld���)xS���Oxk�o���|A񗊾4k:_����¿�<%�x��H��o�7Zv��Z��d.�-��1�n���{Y�h���?���>.~�?5
.�J�g���[?�/7�kڏĭ�~)����,������2;h#�(,���I��՟�J?�$�����~�����ߏ�y�WX���%�����{ৄ</&����:g��A״���Ok�����=���=���i,�,����G���koO�$�mcx�Iou�כ�ON��Y��Q�������L��t/
�Ֆ��M.�/,��?
�m|�r�J..���I��23Kw4���_�^"'Ώ��������>����HO�����Rx{�?�O�[�F�_��Ue���o�>�.��?�����P�|As�=���/u[P�e���B�F�6�[|FA�9$y��~w�{q�<t��t^	�ú���P�Eը۩Qӄ`�M�R���y�ܤ�m�ާ��f+8��|�8J|sL��G��8apQ��*bc��B�*���F��F�҄)�1�8�����$s����������D�ch����:{��pHbI��ǩ�6���#�������j�v?�./����]'�}�'��?�o�׌i���V��O�r��	�Ӻ'���z?���?���?������Q;k?�?�t�to��U�Y��k���}G�+m�_�ч�z��/�E�u����i���E%pp��O����4��s����8z�'�W������xX������ h�?�������?ִ"���O�/�
��/��}W�-]_�?ߪQ�U�KWW�������(�E��AS�A���)�����C���?��Ų�_�-QR21���uH;~�N���~���t���]&����ğ�uͷO�A5�h���'�|I���W/��!�7�~�֦��?���k��1Y��w_��Z��}O������k���?�W]��4p�7����<#��R�[9������>��I��c�?�/���mc�A������Z��izC�M��������䗞Fx����?�Ҽ?���}?X𭖉�_鷖����X]Ol�JCen�]|�؛��J��;��Y���'�<rq��ׯ��!j��x�^���mtm�GI����8�M�#d��rs_�x��IƕIR���ahBp����Ub&�(�(�J\�wW�S�	VJUiƭ,6^p�T�.jV��]�%ψ��M;j���|D�7�?�>x��?�7�ׂ��Ե��O>���[�b�$�Q�� �ѯ����(N�yoq&��ZC�R8](�cH�v"�*��|�����z��m��Ě����H���K���D��-�K����
��ɹ�%I&���i�k�Hd���.�/[Z��5��m!]FHx�]B4T��Iؒ}���
�Og���*��VR�:5jU�Z�p���FU�&ڨ��Ἵ�S�N�O�f.!�C*�J���N�(P�T���S�bi�0�W#��uah�ά�jnO[���쎋��'��[MPi�����n�6S�Ք�
�:y�<*���}�[���~�0��.�6��h��%���Rc������7�k�x��mH��ėF�����y�f�̸HRk)n�_���#�`_x�M�^�t�I-lF���sy�m�ˣF^�:�I#���$)$��Ikoy<
���%�i�&�]�mJ�K�/�:�]΂���f�wZ>��y�—�ֶW=��6�w�����8n[�UUN�=8��JMT�4��eir����M�1���~1b��ۍ4�	Д�J*.*R���(�%������e{�z��>����v��"�d�=G^��*[���$��� s\�텒Me����wv��J���|�>����k�]XQw��#F��cN�mN�闻E}ij�u�[����&�C��{��7rx#�:�+�3|�.�
x:���iMK�S�%R|����+����s�k)��
�.��N�-A�Vp��R忳�]ԣQ�u�[�}a���>��<I_Kap��Y�3#F����R}}	c�W?��/�
Z���Y�s��g��(k�{�����q�R���g:�l<�>i΅)�M%�9S����Wm�$��|�&1�"� �a
�c���J*���$����Ah�ַ�t������'��/�ǚ|��Z�Sij��� �v�m�+�ර�C0�2��XO�~����>�ּa�0ǠY^J�1Ҵ=3DZ\j�e�]�:]ƥ�޵��a:��,��W6���[X�
R?�(��B�(��[x�����#J�kK���}�A-ΓC�YM��y�3�֗�yQ�Y��Q<}u�.�����w�>��/����@��TK����O��	wv�����Yӎ�5�^G<z��	3\ZD���K/�v�Ljf���xQѮ�t�����ӵ��k	rڕ�]6�V��OS5���y������9��Z���/?����*prq���8�_t�����'����Es_��'i~�cg����;��7��H~/�|�q&��>��&�Z�Y�Wb��o��+�_D�$
��1a���f�Z�)�
|=�Ԛ�]G��k7�+���b�@Ҵ��iLp[��t	�k��*��J�����?
����t��K��X��[8{�_�gW�6�b�f��Ӳ8@�7y�����v�.�I�����M����x�E���Mc*���Ua�E]�|N[$��B>7)�'�"�W��4�3���Ir��K(�Ҍ��6�X^<���_4.�R�K�.��iқ�µ\=Z��Af�*��7�'B��>E�y[��E�%��YP&��`�m��d�%s��Y��+�����٥���f�~�-da�*BTeN6�n	�N���^���K5�e��J��=�r0�%�C�ʟ%�M�VAӰ�֭n�>5����F爨8el��,}eS�5�Y�PP����wK��<׽�}��7�N��
�n��V}�W�u��~���~.i�	���/�K�\�5��?/�䶲��ƺ%͇�b�@
Ik{��m�)p�{5����8�W�6������y���}/���N���4�Eg�__���v��y���͂�Y-+��'����)��O��d�M����^�%4��e�
h�.K�1���{�.�I�[��|o������:��Wɐ5��5�]��U�-$h�^k]9n���x�@�]#�?kP��rh�:٤g���rj�$�Jp�����7mGN�������c��:9U�ĥ%�rU'��Pt�T^�rN�M��XJ�ȭđ�'�T���Q��v#����:��UDTA�EUA�
�*��?
"c��/����0��*�>p��>o?�����Rx-�f�>���O�X>"�ȭ^�Ȥ���Oa2݇�Q[�i����\ͨY�Y���X�����rV�|/��?�P�E�)��~�vI.Ɩ�?�<S�Iks�Z\h��[��.�c�������:M���:����h>ܟ���\�s��{��[�U��?���4sw��}k�C�����>��i�!�����ץK���#̫�H��P=�T��Z[/���K��R��il�����+�=R�y��R�V��m��k̾"��e�O�o@n��0<`w��q
s�S�����Z�{~cԎ���@P�G����>�����x~?������4�����mož)��Dκޱ
�����eȆY���H�*�2�&��^��%�so��x���7����[鑪ǥ�+>��ڠ2 pH;~e��>?K�.xS��h4�]j�6�Ŏ�y�+;�B!$Z|7k�)���. 4WB��cʊ�=����Q/�s������w�@�D�%��5��<��xG�:=��Ip�Y�v�L�FSs�����faqC���I�])4�o{�Vo˥�ٞ��-8/�h�z%���H���|%։�k1}���~r��5�j7r�l��>�r��U�O4��:#�"��S�~?�<;c�ː�^#ѵ=/�Z4m ���tiF��1�Ӯo켦�uh�dD5�w>�����?
'�g�j/�Zn�uo5��w�.���-~з
����i�I��"��U�_s�2����L|$|u��B��4cĒi6�"�O�|/q�\ɧM�C�[Ou�mͬ:���K�2d�I#�x�즥�+�m+����I^���)+-�׮�=�o-v�~�/,C�6�n�t�T	>�24Ck0&"�d �{Ղ�0b~͝��A����u�c����m��|�j�����֟n������=�E��Jʑ"��_�~�M�c8��߆�t��v����/�w�I��#d����vnÌg=*f�ƫ��>�~����9����G�u���E�O��w��Wa@�?�!��9?�t5�[�_�W����i���O�
v������b�B�c��x��W�|�s�'<q_^��~5\��]�!����=}3�P�\.2y�0pGO|����Qo3#��~���3�Vn�\�t���o0�u�GЁ�Nz���=K��������l��۸`�9t�O9�����=�q�G@@�=O^?>�ǐx���ώ��K����&��oϧx�]�4K�`�G��k]H�Ms��̊$R��4�ҺWi]����f�ҩQBu8Nj�4�J�1r䦤�9ۖ*R�rj�-O�w�
&�I�v~�sHv��|ef�&85'��'���ӌf�%>#�^|i�agLb��H�2�*������_9Å�X
��O�~)��5-w�v��j�<�����v��+��|A���I\����d�޶�gk���4��p+�F�$��<1v���h_j�����E{��^^�:;m�g
4N���cUx�,k��DgC���~�	8r���T��}Tw��oE����=��f�W�9�Z���x./�a�U-�����L$'�N�i:OYƟ,jK�Y��'�V��-:$2��վy�C"��p?u1�k�Y��vI4����9�M�6��Kdy��*��199�w)��PW�-��v����{in��m��n$i;iFˋ�����Y�L��0��3���	�}��,�/��֓�ū��/��+]V���UK=.�R�%Ȏ�K��]��̒I7;Gb`���
���]V�ڶ(5̗*w�F��f�goK�!�ةx��ۓ��u��T�*�}C�������W�U���\�R�gR�����8�*O������bq߰�N��#?�J�~�q�gp��q�O�95�L�����1��?��'��P㞹�����*0F�e���e����G�#�N�:Ԯ�_N:�=y�*K,��#�.����BA���v��tA�����Q�}���(���iտ��PWs\6��#N��\��B�����s�j#���I䯉n#\g';A���?�s�9���>t�@ӕ����/�x����?�?΀9y~V�X�s׏n�}E^�� �N8��9��=�=��8�<�����5B9�0�=��==���(�4ی��8#�=���N��v�K��C�3�4��	b�Q�X�p�d~��0r8'�#���eW��؎3߯�3���	q�n����|�6��kL�?���܂�RԾ��L�|i�5⏵Y��隑��%�x�&ӭnl�O�\�+ta)�ج=$�]J��8��<+�#����u(կO��x����IS���T����W,"��n�M�'h��=.F��I���M$�	RrX�F�[��^�R�x�i�j��Z|Q3	�Q���V��2�6>NѺ2+�<K
�hڭ����Y�Bچ�x�B��쐍�€N�ƾo���3�M;◌�j��4��ἷ�E����y�cI㘡�y��\1��]�_�k�_^˨�6�_��<�Aœ����6��ٶՙ�Ld��1��ЧZ�B�Q�Z��p���\=��?c]��75-aȪ6����n�GW�&�;����B��y/&���f�o$�,eI/���
�� `��>:o
���##�{�� `i�?i_���K=+C��>��_��f��<33���I����-ֹ6�4�?5�I=�rH�o� �#8$6ӑ��0s�9���|B�¤�<�:X�D�ִ�:4�il�,�M���IF���ώ�`�����p��Y��x{JO��&_��X�*
r�F�'ᛕXB!(*R��W��.F�2Fn���ڲ&7C�#�<�~��稭ɇ��g�<sӜt���5�2�s�.O~y g��8?ђ����9�z��w?
8�擀@1j9�4롃�2:w�ۇ~�:�H$n�9��ہ����P?��'c�rp?�u�s���}T�/���i��Wj������7��hC�R>�Һz�4?�#�+���o|W�CE�kq���w7�������-V�V[�l��]ya�D����Z-���G,r�nf6��x��շ��|-�$�����;Y�|I-��ot+�g�X�ӭn�Ֆ=e��%H-ȱĜ�6��y��^���k;���t��z-��^+���mu;�:xD�i�whљQ�Eq"���9?������j�~>�������G��t��b��f F�j�l)8�{��҅�{(���/o�j6��JV����>G���%�g����r��� ���$�H�*���Ѥ�״U=������YL�\���t�d�"$�[	����e�"���Q�9��#��N�H�.�g�4�R�QїM�
\j:\��˭<��L�����->[c��,�r����+ѿ�_�έim}g��A���9 �;ŰJVH�U�2Il�IWU ��EuK�p���h���f=ළ<P�``��6�9�d�5�ON�}[
�Z���ꮝ�ӵ�kK�[=OR���;�q,��(8�%EsSp�H{<����^�.��El��(��c��7���o���ͭ��!�R�ӂ�c.��a����S-�$�b�Kj�Y��R"��W�6߶��wi�^A�i�-I����>��gا�u%��i�{�bL7��c�v��v���~x���z����Vٮ��[��ֲ<
~�c�e��*�x�>ul~8�8Y����bcRx|'��jօ>iԕU*J�Hӊ|�<ܱ���l�<O����W�g�a���Fc��	{9�4�AW������i��'�U����#�U��>x�Ի���ş���Cek��%����|��)b7=��©<����>2�S�L����%M~�C�{?��@��yx܋cl���KJ�b
o{�&��5�~j�V6�֍�i��Zj�m�u���C������u�dj0i�O����V���3V��f�ci;���мu��Ku4_pI�X6�o+�e��q���#�>V�3��C� w�~~�?�<k����5���F��K����z���� ����OH�M�f�L�!��[w<�}��݄rG�E����frM�g�WS[_:���Z�E���n����ʖ���e��jӃp�"�gB�����&2�7+�z9_�#���^h��X�X��:3(��7�h��'#��ʹ�'��d�"�����i8<���$䵰&�G���tj
f/���~�+�$��*J�c.����I*���;�_�%޷'�m�_7�m:(�/�m>����m�a�V�T��	F����t'J0ui�I(FJPw����e$��w��m[��ZA�U�Q�.h�9'G̣�5%��W{�S�׷�k:������������KTMNѭt���f��̱���lr�2ʿ܇�G�v��x�óx�t�-�i��x�%����>0���O�
�t���+�pߧ�{@��H���f�|�E��l��+�t�k=/W�/��պ�u�ɍk�����i��k[�
�y��,��A����൷��ɭ�<S�?PokF��Z[���V6�K=�"�M��Yd��Iuu;���I�3�?ȣ��{<�'�\M<W��R8�uJt�Μn�^t���;S�����.)ʨ�9�r�s����i��StjS���5�9N�zr�g;Z*P���}�������+CC8�4l��S��=d�Ҳ��5{Dru��_�[@0I��r1��@�~��<c�:��tל�J�=wE�G��>�`[�/]�
R�q���S�����$�y�k�<}�!�^p9+���i���i��OF���qjQmJ-4֍4�}z����j�f/�[�oÝV�T���u8��F)�xz�W���*E����v\,��2�:5��.���|�yS�h�Z-�p���#-��`�q�����_<5o�����i[��o7½~T_��h��k�#ѧ�j���;��-w�L��G�ْ����Y�F���F�խ�Y]$���F+���'�	�#���<*��`���K�g^%a�促:�������*2n�J�mGS�s�9�uC1\�ޮ[�}r����Q�q���Ni5��ܜ\������V�\i���^���'9�:�̷�M��_F�l�[�64QJ�8��T�F�=��������K�l� �����'	��g����J�_�u�����4�T�ԍ��R��y.�G8��#�A�7@��|���G%LJ�	Zk�6a�ۼ�kI~�$��FN3��2��8�PJt�Q�!7������Z�v�EK�2�zv��������r�5S�:�+Ƭ�}nJ�%R��I��J<����������5?�3���C�/_Oq�h�4Ҵa�\Hռ�[��F�I�]\7�$�t=W��,�B�r�q��$��i��?�3&��V�Wh���0�g&�Msź��\F��.#�eW�9�

�6�o�+j�>x��<I�Sƾ�|%ciomu��-䁡n/��k[E�BʊZ��c�]�j�	�g�/�խ<
�-��^i�u��g?�
�		#���5���OĜ9��{Z����Ԕ�<;���v��%J�z������sE����R�l��xӈ��ya���`�*q���k��8B1�j�J�N-�֛�~άc��?��E��0I��pGX�hN9��G����mF:��_k���t��l}���O�j���2+���$��5��Ƅ�ܐ~�}�@=�*1P�ah�*1]�U�����R��9;�rr����o���ڜ�8#?����]*M&x�\J�D�,��"�f'���2�<�d_C$�w�~��'��R;w������^��i��^}��:�{D�ᵚ���+�k��I�H�
����_K�|���g�9M�����
I�M���..<C��w��5x�Iq��`��_� S!�I�|#�è�2�(,�.0�_鮿�+�s�K�>	�7Q��:/��Y��!����j�l�m.,�m�5(��ψ쥲�=F�Q��7[���
j���a�k�W��9e��>��?��?�/�|e�ޏk���D��v�&�n<F$q���-J{K�U�����M���Jy+ֲ��o44f11��R�rXH*�Y�V~zji)k�Z���D�ď�%�ş��_��>%�:���=�;�zO��������,�~"�x��u����K�<
i�j7_�xwN�P�S�4�;{�֍���,2Ak���'du!�D��w9�P�L縯��
���W��(������3���_�>!��d��>���h�Ҭ���	.F��rcmnְY��5��������?������($������)ߛU�t}]}*���3߿=����
��ę���������g'�R]�|�lcn���?0���q�)|?mqk�-	e��cNæJo!'�q��t� ��O�r��	�Ӻ'���{<���q��^1�tO�AZ�0ï�n�G���S�J�v���Z�`��Q�������KF���XV��3�����_��+��8/��ӿ���J����]��i���E%pp��O�G�%�/���s����@ы��Z�k>/��hE�?�����_�*|�D_�����Z����T��>���������;�_j'u-�Q��)�����C�S��L;}��Y��/��e�"Z(��dc����:�v�?��GMl�?TV��&�M�=d���?��n����k�ѿ��O����A��_k��C(o�Q�M��)����b�52��\��F���+���/�Er�����;��~h��o���Q,xG�v��s�K��h����m����\ׄ�j_Ko�=t����o�_��,��'�������?͟���>��\�[}:���l�|�F�GQ�6ݪ3�0�?n_�Z�h>:�;}F�U�x�Ě)Uy�Go.�gw�vR�j�{-��r���k���j�H����MoN�2m�vԯ��6F&�D�����P�*M㿏��C��D��4e�W�m����J�Y����O)�k�F�,����3�U��*�xs�R�
�f�2�*���NQzIQ����-�(�g��_���n8�/0��,˱����7����Ǝ_��U�Sx��Kν�J�f���.�r����F�T�i�K�k��I�_i2A!𶮐*Omu���t�b�	峹ӵ+5��͎c���O�y���ZW���(�7���Lsj�(��5	G��j�#�M?X�u�4}/Y�.o��.VMK_�ĉ�Ζ�Ǐ�8��mGğ|a��z���:N�ow��н�ܾ��^�4�WH���kk{auq��KQHI-~����p�/��o���i>�N�Q�o�e��%�;�����&�aws��I#B���D�`��?��xc�a'���M�t�1�┟�q��JU!;{I�G�n7�'���kMa�����i,^a����>��5�ON��\������c�
R�S�Z�"�5�C����c�b�,�{˭x��P�kz���_��"�^�>#��!�n�|��]$v�V��nb�F��y��,��`ʃ=\�<w����΍�n���;y��|}�I,q�4��5峸�&����|ۚ��\���ʃۏ�)��u�>�m�}w�Ip֘>��EIj��{[��FVF�[��P�	�y��f����m��a�>g�56���~�/�_���կ/�>����֕N,�!8SJ<�*�ظԋW\��II�$��i���O��W��Wn�]��Π�8���W��W��m��/=�N�gzgr��Ӛ���Z����:Ϥ���4��mYlu}8Kkq�-�4�!�ڿ;����E�Y�����u�X�����u'��J���9�~K���e�wQ�qtZ٩)aot��v�����<
Z�'��F�:���qt*A�t�Q�:���7��QJ��qiŭ��g���g��S��51��{�WӶ?�s�\�Х���8��E9��DDq�Pt�q���t�����}\��8��)k������?0�i��0���=�;O�1x��5f��?ko�W��w���b�������|?�[�-��M�J�iZo�Y\[[��^_\쑠����8��c���-[���^�j7^��F��W6�r�[U�6Жcoyu�:�EB��]�e�0v��O�����k��ğ4MN�H�e������ך����!о� ��%�������/l$���Y��"�ѿ��2�nm#P����]z�Ҽk��tGO�
�D��v���4O����F�S�>�h�Up��c*Y��Q��QTyc��8FMϟ��%d�[��_KN"�Jd�W�Q�
�Q�	�p�[�+ͱs׌��K4�;��,0NQ����ה]j�������[���|-��Xⵝ�`�k��n��L��3<��
�y<rAi#0[��x�.��-G����e����'�g���a��o�^m>��--�b]T�iqt�m����ĮX���(����:f����װši����G�]�7G���zZ}�]�����Y�cU��.����N��f���O�_�S�|S����~�=�޷o���>2�im��b
B�MӄM�&�xM��}�3�M���d��	���+r�%J��y�������'~�+Z�_���?I(���o�Ui�q�60�%B�����F~��%7I��Q�:���'N�\��Yo��Cv#�$6��w�?��ۛ=Jgh�Ӯ����ȏv�l�wFU���&o�,w��Rjm�.��:����c����t���ί�u���!�i�:��U��4���S�R��,�gMg�R_�x�N���=��u�CD�<;=ƙo.��W^���1�>�k��Y�XEm<w�^\\��_�)��
�xG^��<Ei���2�Fm/AдM�2��:���QZk!a��zLq�p��-��b&��
a�G8�C%Pn<�ѻI��rǙsZ�]��M�)e>+�K���O���5����!mj4q5c�?���*�
�PU�<>)��H�ΥJ~���\�ڛL׬.�a�?��(���E���Yhz��=���
Nj�-n�b�������$O�>+�k�¿|Z����w�=wO��U/,����i��<b�O������w���n�c�l�G�	q�q��^���v�ᘯ'�)���>��i�;a��n���C
��;;[��l0H�T�`?�G�kO���W�O�V������m��K�j��5��{D��}N��c|����3:���䴣��̕l�/k=OkO��YͩN1�7�f�NWNɟ�Dl����x�>/ḓ�^����'�qnQ�����X��0
���`�穊��գB�0ʔ�:�c>��'~#>������ܹ�	��������/Yx��xoP����ϸ|㓜_�?��k���_~ 
%�
kú}��4i�D�h��%{�V�Y7�Y��Y��~[��_�G�/�rx���"�R�ӧ��\m�\",r�A�谪�:eZ��8l���>[K ��x��-SG�4ɕ$�P�uVA�����h]d6���g5�����?��>���5����|s7�t4b;[�6��5P��
�~mߝ��Z\�0xl#�m��"�å��>�,ϖ��li��Q��F��;;B��ӓnьT�գ�p9��qV]9Tq�*8���O�N�)�r��J��Q�QNS�"VW?��UA)�&x�?w&9�?)8�Gͻ��Mo���%D�JL���e��,�FU]�L6Ȥ_���?�;hfy/<{d��Py�#�]��͏M�_��ZF\��d�~+��z����߆�+mw��ڎ���ui?��}�6��1Zx~3�
�b�]���;,5zS�	A9W�%9FW����VV��ַ�R<S�ԅiE��i�N)�d���M�mӮ���O������~�~�ڽ�����Gԯ�_eey���8�k�u�j:�E=��ztQ�.���m��g�A�����MkĞ=6W��/�m6���-u9��t��N���:�X�F��cu�鐑��g�b	�S��/�H�;��xS�Y��Z?��t���I���)�^�+&����f[K�x�u�k|$�*�ugsB#���e���o�ς��\_j:=���C�_���S�Z�����{wq��er��_�M����FP���dٮ#���~a#��U�{*�U'��
R�V�9(�֌���S�*S�GR��иo���7�e�[�S�39a��]jq���*�:P����KE>z��Z5`�J�F�8�j#8��?�g��ҙ�c?�z���a�0u:�G�Rrq��>������e����h�˟|Q��Iuu�h+mk��1���^Ԧ�N�b��9n�%��C���Cst����?��y�l����7�c�b��]�3�����-�񶏬�^3���lu}SD[���nnX펥a}w
���Ɇ���3�	�T��ƌ�8xbdᇕjq�5�i9�6���o�����o��,qN7�pt�(�p�m���
X���Q�ש��tܠ��LTi�Qs��&�9�O�~,j�^���\���W�}��f��v����/�#�y���7�1K6;cGk
�TP@����Ě��[�k 1�d����yϲ�ՈW�ǟ�����_����Y�Y�z�֕������W�am��cP�.����������I �H�Heb�����~���izg엩�C�i~Ь~|J�.��kmR�H����^�M���Ne��lu���#��.-�+->���J�g�A��������^6w�ҽ�J�;?�w&�{�W��c��O�oF���p~P�'R��}�'F9
8oa(SJ3�S��-�A��?฿�e��O�?�y�U�p�����#�j�30UF��@�d����>5��_�k�~�:?�|u�xoUԴ��C}�Ezf�Q��.A����2	
~|#��v�(���<yj�&��auM&?�Lt�SM�Ҭ	�}a���f��${�b�Z��R��O����f��x����,�j���������^�<1�|m��z���x#��a���]��s,��åߦ��es��x���ڛ]jQ�}�P��{���#��JLf��e	C5����Pu-9Bw�W��Z;�o	����7��[�q����X�,�p����*8#-�qJ�������L%f�X���֩�:q��/��T��Z[/���K��R��il�����+��]-W��D��W����zey��L�ī?��>��p�N�u8'��s��
������@#�Z��O���SC��]ZC��_���%�x��;��W�����������Ɩ
z�X�Ii����b��y6�?�NwH��ˌ���A�y9$�+��\g���_l>/�����a��k��*��������]�\��V�����Sm��G����t-
��G%�G��wW�$fn��2����S��}y�ج6&u�C��:�N��V=�K��W�ɸT���4���=\V��x�6"�1T�J���Z�����q��c�A�>��4����$�� �>Nq�
���}oE����>�m�:9?f�W�����Y¢k���`��B�j:~����W�6�5�\���1��������:5�ִ��<���l��{tW�('��	�H�$��*��+��΀����+^�v�g�Ӳ�G�q%�$�����OO�}w?��	���k�oI���]���]s���y�P�4{��m��6���"�2L�O-_���f�>���_��Zx/ú��~�G�>xk�:`���g6~��4��Ig3+_��Ou���+�@�F���$u�{ѕcp���+�����SQ�E�A�2q�|�d�qvk�Ӛ�ܳS�aka1T�Mԣ^�D��+=�(�ūŭ�3���
�۷#�}�����Vv#��?�W�yǽ��E�O��u��޺���"՟�u��҇�ƀ8?�CL��r��k���V���/ş��?뜟�:�-�կ���h�|��N|G��Fq��C���⾭���b�$z�R�.:���O�����]������n2x9��Zp������9���]�ڌ��:�3��rrps�z�/+�O���@�<���g#����z����$�М�rx��t��y&��I����:zz���W>%�CӾ�(���CY���Ҿx�^3���nV��8<7���̷7.6���F�s�x�v �>�����~��NxS�'��9�����G�|C��W�����jmf��$6	�
Qt�^k��3X.8-_9|���|]���i�q�i)c���R��o�Ρe׷W[��j�_]@�$��g�����o���]���?��QvU�<k�o\�cC���k:�֪�A�..�"_����(����>(x+���o�<�ſ�%�ǫ�:�ý��NJ!�U��ѭ���K�!��8��G�L��"˕>��\�V���8�\��ÄcK�Γ���>�ݔ��%������ì���,����z�Mq-(�xזT��i�b!��acFn3�S�
�L>���HӆJ�|��txkP�3�SO�l���,�%��4w��[{��+Ɠ�KP����j�����u,���>�jV>i���>�e�{ᕦ�<��ͩ[�'B��g,��%v,7d�����+�g돎�T�م~?���-�S�'��o��v�c��i�)��.tĺ�/���]6[-F�%�O�KX�n��3�H�F���B*�
��**��1Xc�ʙ�e���PR�B��t�F�I��N
�UaW�绫&��G�<5�k,�G��¸\.>9�1ᳮ ��j5ify�c��p����&�*��7���a�*y}ZU�*�q�X�Z_�ۜs��������^�#q�N@�\�>�g=���k'�6��G9�r~�DZ�sS�[��:c�{�s����~�fː��oL���sޟ���֘�pA�<��˟�8�JF��##���}��O��o-z�ځ��*�=;g���>��R?�?������H�t��P���ӫ�&�Р��m�F�[��7��w4KR��u��y]�+㋌�q�S���~�p9����>�������gc=�p8<����9�V�I
�H=����{���m�N�8��x���PU���I�9��Q�j��ʓ���8��뜀v:,��:�s�����ϔ~��
������~0<�|3Ҿ��T�{�O-���w���c��ΏP�l6�O(	7��J�������\��9� ぞ�~L����m��)?h�Z�O�T����E�[^ܬ3^7��Q�I���!�om|3��W�����K��"�œ����e�-d����ӳLʾ�2�|&*�1lU�|E
�R�Z�hJ�jU"�*S��8�[OC��u�W�7���!��M���ޫ}v�����֙Br�o�ٸ�5��*x�xvx�L�:�ψ�ˉ��6�`���3NtZ�����~�l�\?�R��[�lĬO��1�.��sC��ٹ�>c�������`ɜev��~�^%���O���4���><�<ah>$��5��3�-ƭum��[��%���ִ=R-ɖ�(�R}>�,E$���^a��V"/3�%<;����ƥJq�!JT����/7Y�q���ҋ��~�\
�;��Xn�q��Ug4)�j�F��[g��IcjNS���x�F5�N��R���)��2��MaO| �X�<�|e�n�
>��ZY5;���3ia��7���^A���Z��+�"�0���v'���L�?���5�m�t�ړ�����	Ek�3�_����N�QM>�O	�|H�]���-�E�[=i�-
*9�n�-?V��獼�?�	�1�[�����:���k��f�3��1�Z��
s�:-:ǒ*��g(�f�#��2|�R��)~���d�dXnɲ�fWG ����(f��s����Ujfu�T�F��9�%UbcZ�'�qXJTp�zp��q��_rI��s韯8�i��A,��<���8�:��[30$��NFA��=;�+N����?��zu8�sPgK����ס��ls���j�7���C#���m���k��i��N �����?�u�\E�g����=��f�>��Z��x^״���KR������@4����O�]=s��������v%���eh峼���&{�|��A��⛐��8!/��J�4d��ʶ�K����C�
�Ž从c�luP����^H�vQf7�{�)���O���|*��=���O
�����RC�x��]Z�\%�R��ŧ�y�<fD��~6���X'���
��8��C^�%W�&x�DӖdv���$��ı|0�{;j�]Uފ+[5�w[|���rh����Mi��}7��>�[�����[M5���X�2Z��4���il�I�=�սޯiom�+iy#yY���s�l��z��a��W�|k�+g_�<Ӿgx;Z�<�n��$��-�n�#g���ß~8ɮ����g�Xm���Ѣ	�ЫȳEw��
ͲE�X��W�5%+�4��
�[ke�~~�9A���N�ѳz_����uZtv��\�	��Q�{)]�@��퍕s�cp�o���h|�s�q⇇SX��V�aِFs�Fa��J��5�����* �O��;�y��?krI�%q?��j��m��Q��HԺ��ft���:dz~����Eaj�V�L��k{U�1-B�GTh�FR��ڹn�;	�ԥύ�S�P����姈�c8��ӛ���G9��6u<�C.�et�5��V�[E�L3�8�#mÝ�s�p��#˥�>�m$�����y�����8�"�H��/���A��_B�7H�-�Q��q�_Awd�KY�5�a�f@�g��޼�K�|D�n��X��6:b-Ş�ws���VX�d,�0�6A^�6������|�v�s�O����~�Xſ�Wƿ�z�v���5]��i��M�~xzu	l-mX�i\ݤ`��]*�6?�k���L��H�h�����?�������fψ�O�F����ği,u�w�^$�쮄zV��'�~�bh��X�j�Z��$�}ԗ�����0��#B9u��C	J�X��BUa�����^�NZ�	+��O+�:��X<4��J�yU�MJ2��)S����O�;^���W�?�
����	g�����-B�ɩ�E~dx��m�F�u ǖ�:|�6�瞥��=Phz?�m��M#R�:����	��Ib�U4��t�א�-�����͞�x���ߋ����G��u���jS���>�,,�����l��f8�˄�Ы�D��������~о����~Ο�|[�����m������]׵��&���[�t��G�y��[��%Gp�c�����<^
B�6��)I��ar�Frwo�u*9���wP�����"�:��㲬h�~.�]Jt*�G�̝Z	F��iQT�/5H�s�^���������/��/�#��D��������xK���6b�2O����C����r��o4/
hUы�Y����J����ds�k�B���,�^?I⟄~;����x�^֭"�mV�Tv��$��s&peRX�?���m`(I�T{��g�?矧5�q��sF�%	ҧR���Ԕ�jp�k��<�}O`�zӄ�Ԝ(��qj+�n饭�!7�ӟҴ4'ψ41����C�MGOZ�t�`t�������~5{Bҵ���I����U���6��G�	i�
��N?
�3�������󒸚�X_\�"K{;��,�du��nU###<�;�#U�%׸�6}��~T����6����/���mา�Z�����"�<)s���K"�q%���M4vمfd7�9�1�}Tإ��w'����T�hW#�ic�yK!RpH����������	x���>*x�Ş����3��߉4ش]oG���^�4]M��/a��t�}N��[�Kj��/_Ϳ��c��k+�ٛ㝣<@���^4�*{�a��}v�ё�
�~�19|'<4c�(�V�;�dԯ+Ԋ�3ii�Kwv|��~S�TU�U1��Q���zТ�R٥��0���)��ߞ�Zj2<E��w-o�8��#a�J��q\��c�@$�k�K�h��{b�Q�F���ٙ-�ޑ�W��ĥ�f
Ѕ�?7�pH��V��?k�.$�/ٳ�"!�e�i��6>E���<���9���5~ğ�$�7�4o�k����M�&�����:X�=�_-cݐ��n�'�q\g�P�RP���j��#wk%������s�(�S��S�aUE��\R��I�{�!���k�����
�����a|P�]k�n���|��E��Y�4x�[X��J{˻�Oi6�kWӬM%ͼ�h����X�,L�\Ej���"�11�1���2I��濞�%w�����7�φ�:��/��o�(�G�};I�/�u�O%ĺ��㯉1����iQ�=w]�@���[�'G����[���}��/�_��u�+M�JM+P��
>�R�i$z��ms�."T��(���q��b�C�x��0���RX�
���:Ty�B�8_��J�v���s[6��sl�'��r�ɫ�h³�<F�ER�Z�kb��qNRN��j�-B�(E�<��/Lc��c��q�8�������K"��%�c�2��Ӝ{�pz]*�Q]J�屻DK�s���@Q*�[+�P9�1Y�|3��ݴ�~�yuҡ���������1�tl�@��}Q�!󆮷��]`iɮ��tX�-?M��W5�����o��ۈc�o�+��b��E�bk�(G�M;�a���/|�&��;x��W��kö�qAk��oi�A��
���چ��jz���[�P[�6��_��׮$Ydӵ�e$�16P�gn?�1�ַ!���?e��TF$�n#������I\�t��F��8&⤚S�>J��X����V�^�^O
R5%����W�&3�=�
����WO��'�S���?e/~����'��	5}�>'�)���0�-����[Y���� -��(xͭ�2�,�ȵ����ĺ�΋�X<-
�b�x�]���|�6���4�i�D�-��7]gkp����~ ��ot�B��hM%�W����U��u (x�VDž���tK�݈�猑��gs���R�ev�׮�#S���P����gh�u����u���~x{ž3�gĭgÞ?��m*_xKH}&�W�%}:覾�U���K�kd��}V��VVp�����C�R��<��������k���z�Im"�����9��ޤ��g[a���u �$��GL��#�L~sF�j+┧/9I�R}ܝ�n�U�q3��ZrQ�,!N�"���B1�I(�-6��5�P@�'���֖�i�Y҉5+	��Dv�𮥼-���J��8�O\��뎙5oL�޳�a,�U�$w���c…I��1=�T�G���?����&�cN蟇����������MxƝ�?�k�������fa�L/�O�*��Y��k���}G�j�?�],�?�a[o��Ό>��_�~�(�c��w��N���?�)+�����w�;�Q��[�������?ʽ?𗬿3����֟��F/��hE�?��������?֢�~h�m�~>���j����R�����Z����\�u�}��Զ�G�,�O�
�v���N���0���g?���$v-����h�����߇�Ө�A���u5��P[�����4o�����$��c�m�~�	��F��Y?��O�:�}�����F�5��?��S_�����˺�/�Er��������_�o��B���E�������D���ڗ���]��I��/P��I����K�m�箟W�[�'S��w�q��
�4�[KjX�]�� �Vx��K��n&�?�x|�6~
|d�=����5����x�ź����o�"	�bp�R���a���|k�+����;�_�-N)�� ��Qִw�ô������"�@(��w
�V���v�c]_���i�_x��7��?ᯀmuO���v�	�e�x��:~�"���ꗆ�T������n�M<r���*�ǃ��Q�j�ে�ʷ������R���Ԛ�!�8�/��9�"TV��0_�q�C��.�-:Ҝiƌ�R����Q�R�N.5�~�٭�Ydž��o�Y.u�8lʼ��*�p�[��ㄖN��X*Ub�9��U�	T�S��0��G��%��ޅa���>�=Ɲw��jwW7�:}�ؖ/0j�sa�<��Ŵ�c��f�k3ot�V�z��<Q�[m�Mv�,��9��J�)1�h�<.�y�$��w%���%����Ŕ2W�ڗ���
6�,�4f�Dc	����y��1]�Ɍ�oe������$�ࣶ��=���Iu�Y�R�C��Mb��)'[���Wφ��7ľY+���|�K�¦7�����V���j�*k�=�hJ��NNUT�� �ʜ�����x��� ���f&�7�p�t�5a�j�or��2����J��.�)B^Yƶ&��S�S�ω~"�FѮm����.���.<�X4��{���`�$�V�t�("�y�1�yl���c$�G�X:u����O����� ��짊XZx���;�eT���/���+���&?n�*f��G�hYh�Tp�i�;�$W����Z�5�f�U�������K��)��n{K��%���{<�7
-��n�{�����Jk��eb��4��,��伒H���X�Nkۥ�e���3L��(8��8��WW�kF��2���������s��`˫O��?�v"�1�F�d�G<�e��OQQ�[.���p�hԯ/j�Xx�ya無���(x��K�7|�gp��Y���&�f�S�e,<��|ギYX��?fR,�A�WDl���o�:O�Ni�/� 1�|��ѳҾ����|d�U��>����4��{R�+o��jq>�y���V%͝��`�����W(��q_�e������_��6��ox�����]oJcw��i�x�[%ٸ�#SK���"�	�b�[��L)��K7�8K
Y}^��8�^�J�)�k��I���>�����乬�=��7�</	�᲌��3
����
���S�	B�8I��C|?b,4���[��_�uF��u�=��}\��8��)k��	�5�e�C{�G�\A=�[�G�����e���	���03_I�,V�L�6�e@�k1;K�A?���^�UJT2̾�ӌ�`���&�Ƅ���5$�O]���ƾe��M�B�7R�N2��NQ�j馚i���֮����m�X���>x5(o��#w��uV�P�g�s=��[9%���U�G#�k
3�FD~��zj�
��<���������3���c)BJQ�QwM���i����0�t*a��R�Z<�#�)9E�ҩJP��W&֛6x���S�vZ����|���[�^=�Α{?��M�RX����m�n>��j��Co<�%�f�Yo�Q>%M#J��=�\��N��ng���D����\6�|�M����L�M���;a�����<�U{���?'���ƨ�����ߙ���o����Jҍ}�������ݕ��g'�t��-Ŷ�y�l��:K�<s��������d�mR��ϓ��^%��MC��<W��	q���q%��� ]8�gJ#�bd��X6�%���j$6�/�:���j0�q��a-��e�߭��d�Z6Ou:�_2Y��Kqsq�ibֱM�6�!��ۺ_�����?���wK����~g��T}s��JԨ�'�{v]�]H�Ur;I}[��	��hۜ>��[�ir�[ԇ�Q���G}��յm`�Ꚏ�&�.c���o��t�6�|�6�7�cn�G�����o��t�zU��M�h��r�h�ikiai���i�=KO󮋰1�Z�Ӻ|�.�
�ۺ_�����?��ƞ�'���"�u�;@�=͸̒A._lY%d���u)$gv��<��{�_�=�t�J�� �J�M/Y6�Ͳ/�%ޑ�]�Gs�;��î�	6�q"^v�V�'"�3d|��>�g��W���mKJחO��m���у�+���1��guD�����'Ÿ��~Ox����'׏����"ϙ�4k��k��[��ƍ�jP�q5��y4m������Nq�k��o�o��<|�x���U�h6P�g��/���y�u����h�E�,��!,��B�7z��u���|A�jZF���]��5[+�;P��O�
՝�/ͼ��CG,R<dAS��_���R�=��[�j��x��_�x�I���Z������˗�'�n-."��/��j��q��3�BQ�/�β��2����7�U���F�2�:���"N��?e	r����e��S�x_1�2��g�2�	Q�R�ʆ&���Bju�t�N��*�R���,<�%�Ul�9~3O��;Hl�����;;���Lm�9�R����ٛ�1�5�W��Q�O_�x�A�:ׇn`1�z���}�~ը�J����G-���gU�x�
��!�9�����z�ԟ�����:N���AiL��ZK6Q�<I2�_f2���#��о5��N���q���wZo��"���ٷzt(/���*���ox�
���NÒ��O���-���0�G�	^����',De��=��ؔ�˙�۵�.�����/�~�F�O	RN8yF����guJqZ&��c�٫ᾡ�	�9�K���P�TY�$��X�1�c,�˵g*�@���3B�]'G��1t�:�$��gm�|d�p�62q�d����3�X���-������TӦ�u;�%��9"���������UBJ���$�7h���OC���ֿ-�<�����F���]9�iʤ���iG�:Y]�S�n�<�Iҝ*�(5R��)��+I&�5Gyu�]
[ϧ?�^����t�s�+��yL�˚�>�m�����ڢ��%�{6�|=F�Wo$��$�����q�LW�^}c�7����Z���[Mp�2į����϶G��Z���j��A�x�A@Ϗ�3�/���ֱ�/ẗ[��Q���8n�+[����)����[����4dYד�*���i{�~�(�t�5.otS��Z[�6��i�]�a��hU籞)-&�x��P�l�U����}3�a��U9�}3k�C��O��oN�H%�|�
3��d��Ӕ���{����1�6_�u��*��Za��	A�)^�\&:�j�����UMh|Ѩ|&���V��[��,��-J��Ro	�F�Q�������G�.,��t��.f�塟P�K�a����I
/�/����@�<C�|r�g��-o��_��t/�i:���ۅ���Z��[�����R�9>���ʸG�
�������G�ڱl5u�:8�bw{�¨<���zt�5\&�siS�ma���Q�7��)-vi��k#ėe��a�f�TqY�Sϳڔ�úQ���2�5�.u:r�W�꩹����R��il�����).��I�����H?똯�"�y��O�����צW�|E8��'����ހ<ҥ����q9a���c�����?��e	��j��j�8��c��s�_��j�K��?�/��Y�Mkw��P��n,�����/�?x#L����e��+�x�����Ե�{�5���o��f��2+�%+�,��.�=y�ԃ���������t�>Ӡ�?ž;�c���ď��\ms-��y�|�&�.�K�Tp��;� '�r1�5�Oa2<FeS	:�Y�%b��4�N�(�r�ӍJ�9�Ω�Ӕ��[�qN7��5]
����	a�%�ƅ?m8I˒��a說3�r��Z0��J'�>����cO��:{Z_�`����v���|I��4��Α�[{�[y�*y��Lb?�i�k��j6s�<1,�-�3���y!I�+�yaY$
�*+�w���v�O����$~ 閨eҼ}�jN�4U�'�[�x�x�`�g{�D�c����~~�~�����������6���/
Ig��x��z>�,Y
���:��'��'�{&����ݶݟꏚ��ԒM�W�vi��7��l�Qo�K�g�k�K���K�}G��'i�}/G����G�N�����u�<����l��7�c4��L�mok_]��^�XX�iZ}��cv�e���eo������`�FGG(*(*+���ߧ?�FS�arl<�:P���V|�jԩ.iԩ$����J1�#�1�R=�<�qg_5�*�]B*����Q�N*0�B���`�rnS��9Js��&�b3�j�!�۷��q��?�Sv�~�����^���?������=v5�x�E�?��u��]�p~,�����\����im���_�\_�?�!��9?�t5�[�_�W����k�8���Y�q�|�O��8���Ե�ό���q��2`~g���h�������L�%|9a����\�����g8�xǧ���O�^��ONA�g�}q�I���p>�g>���<W��Q]N}�	��e�P�`���-�ĊK\x7U��]J���'��􎒍���9;��8���y��_�8�����������:����������$�mc��:
߆���W�Oäzv�i��6���Ur
���r�|/Ѯ�tC�ĽQ�mWV-m,Wq(AVD�1�IA���m�܊��?���+��O���~���S���)�h�M�U״�P���7>;��"��έa�Yi��Q�}ɇW�uF�K�@[Ȃ��[��n���6FJ����B忋#�`~ʟ�D����O��ߴW��گ��Կjo������Ƨe�x����3�h�":��	'�.�='[���D�K�L�O��t��U��^sKv�J���ֿ�ӥ���d���]X�ٽ.����v�����xC��uƍ�������m��v��x�[�����.���bm�VP���(+(�6pA`���z������_ٳ��/��ۧ�h��>���f/��x3�w��z���x��Ư��³x�Þ%���į���G�Z�:���
wH�.�T�����v������9�c'���N+�,���Xjn�U�Uc��b15q
NI�?k��r�;7e�]�x�+��� ክ��8��u�Z�.E��Ĺ�Sq���}�+T=����F��.X�ۮ|�����$q�=�zW5?������Ƿ�]�?�.��4`rF~��v�+��=G9�y$c�^�?��>d��!������Oa��X�.m���rv>�9�nj��q�ԑ��?ǭZ���V�����=��!�}���)GA�ʑ��?��#G���V��M��A]�p�?��:��ro�

�h��� ����_ \`��L�G\�����}���>�����C��v�~��O�@���x8�냞8?��MrW`�8��z/����ml}�t�8���S\���{䎣@�^����
O$w�L~ �>�+����o$��	��M-V6�V������I[���2���%�=�# `�W�C�)g�N�9�w��d�_�t�������5�m+Q�Z�K��|Y���Y'�)5_xb���^���w6:.��֩yso���m,�x�ٔ�z����P����q�n�i�H�ῼ6I��3�bUs��@�y��B��)��o�)?Ÿ���'�
���
�"_��O��^�a��I�ٴ��O��]�WZ�<��f���t����[ےKɏ�����~џ>|	�r�Y���i�1B�=��"�,��uw�K�yo�q�[�I�G�u���f��~
x�S��~?��g6��ߌ_�So�xk��߈��<Y�x_Ŷ�_Ŀ��i��^��\xWņ�4��V�6�w�K�ͧZsק�p�S�H�NکF�Z�{=�ά6&���a����V���R7R�V�Hԧ4֩�pMv~H�[�
�����^4�����-CƟ��
B��+�y��J���B�[;�XVNA �w����"7�;v1�m�FG�:�1ֿ ���������2�ÿ���>|h�~|O�Y�CV�7��Q�o��|_�=n=z����,lg������<M
���$�n�
������#cq�z�?�Z���X2���)���*�IK�6�u�6�ɵ���^yS��������U��5��a����	���Q��9V�n����8:��q�v<�q�7L�>�Hx��EcLpH�=8���u���1Z�=y��bL��Ӂמ�翥v��ס|,�'g9+�?��������'w9�l{}�Ѿ���4�:yw��g\z���뚥�Dž�{M���T�/���i��@������1���O�]=x����~]���k���C��r�����w��e��ˢ���V��<,?�e�D[�?�h��?�g�վ��ր�>��W�?���${P��!h���Š(��(��(��(��(��(��(��(��(��(��(��(��(��(�I��O��A5�wD�?��g��\��7��k�4��+^��u���(�3�a}j�TN��?�],�?�sV��Z�`��Q��
�|��ta�^����QEsg�w�u���I\=������;���褮���U����e��/��~���1�kB/��g�?�������_��ECo���U�KWW���}G������{���D�?�e:~?�T÷��u
t����o����9�O�#�l��KET��v�?��GR߇�Ө魟�ꀪ�??��I�Ǭ���'��sm���Mt�7�z�_�1���_�e
�_�5���O��:��t��Vf�]���+����S��u7_��Z��}O��Gx�/�8���/�*%���Ծ���z����K�m��޳�^���q4�������+�(��(��(��<z�9�A����{��ۚ�Eb2#���N�7�*/Q���(�*/Q��*/Q���(�*/Q��*/Q���(�*/Q��dC��ܢ�(Cj��oo����dU�6�R�@Q@Q@Q@!���(Ol��69Ǿ��Vk��q�s�~���@�,~������D[O�~}G��}�S���֜w^����Ty�����q�g#�?����ï�re.�o�dv�ʻ���>��i�!�����ץI{���[���X�*���A[�ߋ����;��R��il�����).��I�����H?똯0�KU��i?[��z}y��~�O��A@d���ΦV*r?��V�V�O�Ƞ�6����ZBz�՘	#�W��E|��uxB/�ş���&���~�-��������ݛ(*���ŕ#�D�5�F��~�2�i*�F~l�s��3_��Yx�I��Gx�\q�េ��A�0Yx^��3�����"���@z��1��8,q���:�#��aU'(�>��m��#jo�~���z~�~�����'���x|G�k�LF7�u��gt{���?W�͆�p�5~��*��(��mm��f�_��Ȳ�2��k��6`�eN��m�{�=@�!��_`�����'.�#i�4PBh���{�
슫�m�̗;B�9���W�1x�Q�7��'�ZL�o�x_��=r�h�%Ɲ�=�2@!�{I���5�q��w�D��>�xGίoѿ��t�F��
��:���P'���7�À�7���PJp������9$�0G����J��Ƿ���6���5}	�O�m3�=���{�i\_�?�Y�����=봠ş��?뜟�:�-�կ���k��g��4��'����Ko�k��Z�_*x���z��!p�q�Y϶M}W_&�տ��NWP�q�����g����4��8���\�͹��|{���?Nkr�B����ӟ�=+�ys&N9=��z�����4��;�{���{�{����{�kx�co��z��</�ߊ>(�t��[LӼ�c����d�~��c���$H�R��I+�� ��&�N__��=z��b�����~:�Qi�{ļ�>�ZG��!�|I�m&�Fբ���A׌�Y��&ri=l��V��
��[������mԿk���}��t�Ye����G��Ӫ�w�4'�<q�;c��V�ѻ��
}��+��#�:7��"k:���tO�b�����}�M��V�w�t���/�eoi��
O
̆+{&��i��9$_�3�
J�����G��1
��!���2g��N�>#kva�|��o
�z��&%����O9O�]�[5V���{ؚ�iE� y.$�_�AFHY�5X�씟)�F�k���m}69���Y�t?���ɟ�[��_������>6�п��c�{�g@���>i?/���x�_�B:����mυ�k�5q�xOO�:]��e灉?���0;z������c_�ş�)��u�/|
�c_�����F|H���2�gĚ��5����7���L�n���~�5�=>��mg��{�Oh}�ՠ���׵�9,t�%?����e��;�:{�~�)sr��W�z�ށ?��o;w�-�pz�f��������w�\�I�=��q��8��77�*�J�0�����N�9�	s��A��̪px9��C�~�J��_Y`}��g��]=�q�+��=���^��z�3��:k�{e�O���G�Q��z����A�ʑ��?���*G���b�8��F�[��7��w5�h��4��ɿ�(+��
Z��������DI_N�}B����צ:���.�q�����DI_ܸ�<�0px�����1o$·S�׎�z��0+�c�BO�9��9�jվ�������sXI&��'���?�4��
'�;�c�z}+��?�9�7�?����o�+-'[�τ<O=�j��xOG�ϋt�3k�m;N�t��Y%��v<�����3����ߎ>"������|e�]Nʐ�a��Y��V85��g���Ǎ<[��N��㟉��s�x�ƾ(�<���U�V�}��1$�~�!���I���ݧ�sJkw��o���?�_�6K�]��G��5<���s���.��X��I�����^����=��lj���1ϢC)�ɟ��
���׈��S�����{��������4�����=j�S�
���m/^����!Ц�!�F��O孥��Ϳ��o��x������ �tԱ���GMƟ4��w�hz��P|;�.Kē(�)�je}��_Զ�|���>꿲G��^3��g�ٴ�|K�CL��}C᥿�5-?H�{fmc����š�Ƌ�Y���]�è��yfY�ok�g��;��ݺ;�`��������}?��_����%��ß.a����^�%x���J�|W��o�Vw��<E�6E�,�[�[A-�E��-�y���\3!�C�:~�j�`?fO�)����
��ÿ����>���=k��.x�W�E���
񦕦���(-��KJ� ��n�S��Ѭ.�5(m�]+L��������*呗��A�>��~���W�_'m�o��hՕ��_և��d��L�Ƿ^���V$����H#I$���=��b�$0�l��{s���\��s�GP~����p1ެ��R20}3�S�sϯJ�$�m���g�g�����^X�{��ӓ�ߠu���ALz�F=4���A��H �#@_�-K�</?��o��ڥ�Dž�{M����ԏ����H�J����?n����F�]]�E��+�_�����˿�-uv]���Z��	�a�7�/�� ��A��@tA��>��δA�ʼ��O�#چ�?�E�x�����7H���OkQ\ϣ�O���wֶf5���Ϟ�L�t�g�(�յ�GL�İ�-�]�$��&�1��&]��+^�	S��Q�z�Z��F�8��V�z��)Fu�֜)R��N1}��_�e�D���ϣ����U����O�y�\���8�^ՙ��yO�����/��y��h�?�[�?��B�4����۷�1�:��|I���*2D6�M<��R9U>��O�^5�#�?v�6fy��"�����4�F���/V�ob��L�,f��!��A����ŭt�tԗͦ��;09�Y�W���"�%ӕha��~a��+R�������J��t�R�kT�
��*��WR
]%QR{EPEPEPEPEPEPEPEPEPEG4�[�,��0A�4Һ�QF��I�H�E,��*�$�x�_�ut�
�[�ƺ���t�|����s�G��kU���=�����}	[���wIY���{i%�ݒ��30��҆.�Om]NTp�l./��
N
�Zx<N*Ti:��Z���R�ZQ�8ʤ����Y�2���W�_	?���S�c���}C�_>$�/��
�%���~��iQg�T���/�6�gaC]j-����[�o�-�c�t�It��R�o�&�z���5�nI�Zy��S�LN7������*��f3+���ф}���R��s�Sk��W'������;�~�
ױ$��ڭʹ��oqn'�x]e�he�I�H��H�FWGBUԆRA�wN蟇���ۃ��s�J=sR�Qi���N���Z4֩����?�],�?�sV��Z�`��Q��
�|��t�^����QEsg�w�u���I\=������;���褮���U����e��/��~���1�kB/��g�?�������_��ECo���U�KWW���}G������{���D�?�e:~?�T÷��u
t����o����9�O�#�l��KET��v�?��GR߇�Ө魟�ꀪ�??��I�Ǭ���'��sm���Mt�7�z�_�1���_�e
�_�5���O��:��t��Vf�]���+����S��u7_��Z��}O��Gx�/�8���/�*%���Ծ���z����K�m��޳�^���q4�������+�(��(��(��(��(��(��(��(��(��(��(��(��(���o&���V�|E�)�-�7�?Y����IgK}%�3Oiega��$Rj��}��V^u�w�=ʹSr�WČ�~�?H����$v$�|�ۥR����t�cNf���3�2�&�s�bq8w�iey>q��$�S�jt�o(�cc��R�Ju�G*UgB�:у�R~�Ex��,��?�o??�A����Y_��~ �]��?f��S��o��*��n$��3�?��{eS���ָ|H�<]�h:N��/�[�j��E����o���$V����u�:E��Kz������s�ܼH�����ZI5$������t�=���1�L�^
�kМ�d�	B�*��j�T�*��P���a�za:U�¤e�����O�X��η������
���,?��?�^�/�_��L�z�ć�������I�����H?똤��U'��֖�= ��b���-W�|G�n�����]Ti!�	7���y���w�M�S���c5v3������g�W�t
r��?Z�7���]�?��'�W����*�����/�-P��������t�(��+�h�l�����\� ����y"�9#E*�:6$FR0q������G���t�C������o쿶���A^|����A��_>.~��6^�j�ho|m�~���--l~%j�*���-�$vK[++
H�]�ȃ��X�,�3�#ݕK�[���6mN֕��M<�߱��T~$j~0���"��w���^��_4�7�M��XLW�Om����4���~��=�������9H<g���D�]#H�!��Q���߰m� �k�������)uϊ��I����k�"�ƿ�����/.����Ko�_�?�����8f�׉�ouN�x�W��XO4
w���/�~#|W�����~�W���oG��e��w�m'�>���W�����-�x�/��Gɕ�tO*DfC�⤿��}tO���
ܭ��mYt�����]�p�A�~U^��=���V*��y�=�뮃��ۑI@Bx�E�O��w��޻J����m?���z�(��g��4��'����Ko�k��Z�Y�!
3��������Z���ր,W�^;�+�}2H�n�9���>�G���:�a�U�A�T��`���x��{y���I������`zV!���9d���;��ֺۋvP[��܀r3��}=+�V ����{���ĭ'��¯���M�����������K6�h:E�nB�l�[�KwK+�Q�I�|�ޕ������~�ow⟉�>'�c�8d��V�_��A=��̉
��7��%��d�� Yd*��s�#~�/�O�O�Gm{�ڟ�w�t�cv�>���_��U�Qokp��
�X�~�nv��.�+2N-Z3�Q��~���m}O�~����/���)�[��l��H���h:v�}4�%�Ŏ�y�
z�-�%��IG�[h��[[�M}����:E�߮�W^w�����_�&��|1����g
K��|#��ί"�x���C�CŞ$�/������P��d-$PI��q�����H9�;�9F���Z;�s�B�{����n1�7P���nU��E��Qs\0b�4͕��5č�X�`���W�?��϶�~��T�i;]Roxk���/��]N=	��N��>%\ko-���q��[�B�n���Lf<��Dž|O���¾�o���S�犼?�x�@ԑdE�t=sM��4��IV9o,.��KH�M�����9?�?�@����k]W���y��x�A��7��i�CN����5T���;�����u��ֶ�;�R�M�Vk��B�����_�z:x{�~�!�����t
G�L��ɰӢ�4�k(�l�N�Z�$+mo�2�H�Y��¤\�J�S�9'	��|ܼ�qP��_2������O��
��Q�._gUԍ6�S�߳Tܜ��N�4������6��(ɫ�/�<s�0q�#�<���\���	��'��W'�����H���	69K�v1��G�y㊀�Nx�1ی��w�8�3Z�5����c�%8���<�ni�>�e�@��9�<���J�����9en�8�du�{zӃH���Kw
co�G��'�*��Nh��}���)GA���O��q?��:��ro�

�k���iտ��PWs@5C�3Q>��򷒾��l|��	���=H�}Ǫ��/R���'�� �4e
�@�@3��{
��y���=�=�:���s�68.U�[��'�<��?Z�nm�Fz�ۃ�p{�=���f\��@8?(�'��'�8�?!������~"��<K�f���/̑�j��v�|Uc�E��Y���#���"�͑�	W��	1�j_�7���$�ӏ��}���ⶫ��[i������,j��\x�t���ȿm�a|���L��G��6|���Hmg����%x�R������K-#�����q�xkK��nY���6І�5�O�#���ʐ�7�p���S�k�E��~.?�=m{c
���7ß&�MkH�󤸽�\�F���]H�Z��H�I�<�[W�m���Ɖ�dz�i���}>_��q����ac���X��e�����Z��mecgv����	��GH�*F��6�������x�+��|56�e�l~�����P�[�+����qn�E�X-�P���ŝ#t��W�.m>np�����N�;
�w�\�����4�m���M�h�����C�-Va��Ojc���զ��]&%�A���[�[uf-�f��H����ֺ�k�k�S��?��O�C��UٛY��6���x��ʲM׊<m��Ş�ޙr-��ƚ��kbg�G4�4�$;�_��y@$�Q�Iǯ����{����R����
�3�qa�o��� x�R�u���'ִ��E�O�Xt���|;}��qn�1��n5�i��]:�u��-���'�ߌd`�8�=�_qYө�Hǚ���	�)�BO��.xZq�HsS�RJM�V�B�d�r~�����5y��){)�BW�QB�U�((�.Y�������'?{��G8&���=��	;\�p����t�,Ӳ�bW�p:�#9�8���"0d}~���=�և9�:</�dt;�22��#�NO<�߄ϟ���z�O_�뜎���n�2Z��GDe�Cd��p:�,WY��L[oisF�h���8Οr���'�zj���j_��y�^����-K�</?��o��.���}?�t��h�G�WO@6��w�_��6Z��/�!^=/�-��uL�}���]j�5r��*��ƪ$(E
>P��-</hB��G�C�����?�ҽj�c�+��X�(I)?��'��wG��վ����r�3�o+$l�{<�
�"4�#��m]72���0x^��%��=|o���N�}|+f@΍�������k̚����j�������E�[�ۯ�~
��}߀|{��k��Z�G�^���.�N�w����O�u��Ck�5�_ir&�+]i��ݔ�gU�KM���~9x��^h�m����2E�aᱮ&���6w 5���
j��[mn+�Rd��kK�D`lv��hT��K�+3��&���B7��V�muB�2���4�4hzW�t�^9dӵ�mB������E�#�r�#d�I;]=����T�_r�K�.�36�W����N��ex��ai���O�c0���S��PU0��B���
��bUD���t煭��#O�Ʊ�+�7�Lj��
���{���g��m��Ew�Ζ$K���X���e8���/
#�[x��GUO��u�j#��Q�N/5h%���ϨG���JM���޽ê�FR��>|��m��ȁ�&�qG�3�_�&���&�㵤*�+%���	=RM^N�ӥ��Vm�9�e\C�b>�[��5J�(�ǼE��cVUaUa�7J��sNJ��B~ڟ%*�*T����,Ѵ�C��Z뚔�֩}m<Im���<��N��Ee�}�[+8��j[�ח�\�$v��
�g���M{�?�[�Rk:��6����Z��4S�x�]��Gyi$�ٚۡ/
�LJ�%�VF����E`O�/	J˸�⺅�����H�{W��[[��ii6���GommoC���(a�5X�4UH�ETET�r^��Ē�(��z%~����OG	��D�x.$�[B8|���1���^]��cr��ңN�;Rp�X�����\40�"j(������(��(��(��(��(��(��(��(��(�>4�:����ZV����ށr����ƫiG>��@23>���w��(2]�,��8�K�ψ��u��<7�hZ���C=�Ͳܽ��6�6�5��闛.lZ�Pѵ=.��>[��W��,V�^e���Q�-J�X־xZ�U��;�_J���\�'�X���h͸i$�vi	���,��⤵I;�Z=�Z�}�L�&��qX�^_:s���chO3�dաO/���j�������O�����V�凝<VXiG���ږ���+�>������"���[1ssa����ՄZ}��h���0M�jW2jz�i��^Y;P��K�x^��
?�-�~2|K�<I�x�M<X�|,⼴�@ST�kkMK���2�ç�	�����-^Y����o�����~�'��k����-c����X�)���ye6�O6�{��KYv�/�F�8�W*��qj
�&�F�[�/U�Ӣ���x�l��0��V�N�*S�GNx�8�L�
IU�X?k�b2\-<}*J����qxy֕:I�)J*�j|�5=�'�t�Z��I��ѝ�Ѯ�}օ�]\�]�
�e�q�����S&��hц!A��;�~�
׳��O��A5�wD�?���#�1����G��Sʰ&WFs�K-����TQU*S�����:��a9ƚ��#)7���mg�������ʹ�?�?�t�to��U�[o���_����_��+��8/��ӿ���J����]��i���E%pp��O�G�%�/���s����@ы��Z�k>/��hE�?�����_�*|�D_�����Z����T��>���������;�_j'u-�Q��)�����C�S��L;}��Y��/��e�"Z(��dc����:�v�?��GMl�?TV��&�M�=d���?��n����k�ѿ��O����A��_k��C(o�Q�M��)����b�52��\��F���+���/�Er�����;��~h��o���Q,xG�v��s�]yym���_�̖�v6��]�Hq��4��!�D��{*�\���j_Ko�=v��<{�x��K��n&�?�x|�6~p[�H�#�Eq?�>���Z�rK���'�n�5?����:.�����,�ږ�mom�kKtY�D��&�\5�����<Oe�{�|4����K��;�f��H�/ýoQ�<C�N�x�x���yei4����Xӯ��\4fm^N�� �$t'�v=�R,q���%�j(�[������9'�Q�׫�G|
�I����1�ڇ����m�t�])m�C��v�<A>���kg>�ww$��%�	-��mg�����ܾ�!_�4��_�5-v���'��{�]#¾�o5]�V�m'ž(�4�2�M&��x^{'R��M햕aipey��]���8�̊îz{��)��"6�`yC��Z����xKG���X�#��Q���~%:�^��<+�x�O�=j|Sn|Q����,� �����+h�5oMg�[���uO���Z=��l�|\��.�MSY��/�;A���}�<W6�ei�d}~��R�o<Cu�����}R���Ol�y�$��J)+���㌯�q�q҂���D!�VAPA ��
~{�?�Qo��烼y�#��}���m�uo���.�A��Ong����e�N5[�lu;�e�f���J��K���4���m��t6�5k�
x3^�Ѭ�<?6��[�w�^%�ƣ�h�	���k1'�`�����@���n����]�:"���
�m�S�`�[�$���B���끞����Q_Yx��ž%�9�gF���]�i�Z'����x��:�����R�Q�t�K��Z��Ɵ�6�]ޛp,�k�
]�
�W�-ǎ����m*���������4ټ}�>������k��0�b}:�L�.�}b�K�
:ͮ��>����yq��m�w�$����I�q�ML_��>\9����W������?	5_	x;đxS�q�1�/�to
�
I�?�__�E��wg�$�am��׆�X!y��[hp��$�����_O����	<n��G�F���Q�4��a�x����]��G|�n��?�5X��2f};Q�Ӵ��\O)���-���q�~�>0ņ>^0İ�bH�ӌ��a��!��Ш`Łیd1,3������o�9�_�[����x��gL]*K�Mv�G4:Ηk��Ia�gW���<wGMՕZ3����pM��t��<S��3���4Oj�6�t�x���][�ޥwu���̰�;cqs������c�챺@T�IF0��:a(�I�wb~�����q_۽��ur%��.�.�6]YM�y*�w.U����֑�Q��X�F��A�>��
V�b��U��|]�]�ZO�[�k���`Ӭ��M2v�M�O���#ѡ��M��ӫ�����5�{G�~k��;��s�~ ��WO\��v�3�2�L��t�x"��R��j�,N�ƫ�0�_�D���/��'���i���_�+|O��j�V������i��u�o�
�|K Ӽ/-��f�V�}_�vݾ���,�WK�hz]�ʼn]F��Ef�?�<�����3���7�#�ֵ��Z����<�/�^�0]�i2�sg�\I>�$��ᥱ�:)�1�o�"Zw��x��
���ڏ�D���/��'��t�W1����?�%�·�����-;��K��o���m@=��%�����?�-���KN�����[��[POEs�i���_�+|O��j?�ӿ�Ŀ�V�������!�eI1�7�CS4��� �$#jtR�nu#�~�K��灴���?�Ԯ�{D���/�<eht}R�I��C[�D��^�g%Ι+ܟ���[_F����?�D���/��'��m��ŧۋh$��3ᄒ��g%�H77��\†B�8Px�\Z蟴5�ƿ$v������K˦U��Q��]K�:��a!���5O
�dWjvzl�F�&�1��<]�n�1��:�O�Qs��[�Z�����a�����y&K6��&�I�GgWx�¾�.��N״�d�f�ԭ���n q%��%�{�y����⸂@Q�5���߇��z�aQ<w��UQ�UG�p��+E(�����V�R�Q�Z9G��kw}Uϓ�_���x\���1x�u<E|��f8j���[E��fq��kԩ<.5��(�C	�{��'�5���n���ߎ�ӣ�P�WP�Ӽ9m{
֛��ilk�&�H�5��u������O&�ai�����@���]Ku�;�ZN�	�χl���f��!�����I�hS�a���L�4�Cn���jz���sn�cAo��ÿ�����=�斐��t��Xx��><�������GV��&���J��Ҍ�V٩'�z�K����y�OK�J*Ut�� q3Vu!Ƚ�Gԧ�O�r�*q�/i.yS��G��x���X�����B+s�xCG��K�S�4���TZv��j�FvCs���?S�l'>l��z��"��n���ֱ<+��
��]3�z���\\5���C�k��VK�F�B�z�􊊲^_Oqrꪭ)
۟��ֲ�n)^��]ޭ��}��>�'��X8昬t��]�s/�<M�<&Q�e�e5
�iѭ�P��'WV�	V�N�㇡Iӣn���ϭ`��b����u���ְm?�1a�_Q�:�)|2���dtU�$?�?��w��O�?�-��zA�\�%��?���_���s��j���9Ѿ��m^�^Q�60���`����=(�70�q�朳�������uc���=��ׯ4}�;��,?�G�������w!�?)�ب��|��y����V�5���O�
�U�t�L�յ{�}?K����e����.�$�(�Q����[?�g�6��Q����t����-y�=/Gּm�m�X"EӼ]���Z����S����c֯fM>�D���R��������֛�?�Ϸ�Ƨ�9�J����\�b\�#�{�[GIje��F��Gw��z�m����{
"�eԬa��M>y��_ͯ���3�w�>�>�2�����d�*��U�����Zn��e�
��.+�CQ_�,�><��Y�+�]�i/�y��c)կV�b�ҔeIJ�n.�qz�6W]o$�=,Jti֔�99�Q��)ͨr���N�M�h՜Z���L��/M�ͅ�7�.,'���� �l�r�"\F]N$��wS��e<��k���x~Ͽ�/�O�]��E�
���k�[�cR���F�4�L��5��M�Il��᫭N�MG�a�QZ�\��п�>.��
s�i�k�Q���|653P{Mf�
CJ�K7�v�35��m�u��b��,s������O����R�Y��^���O���hV�u=6��j�~���m᰼���K�/D�g�o����Qx;_٪�֤�G��
��Q����6��7�NJ2I��+]sY�j3���N����	9��(S���U��	I9/��jJ����q�����!]I�H>��X�&�@~c���s�}����姎��/ZZk}���?W��״��VKK�x絓P�58m�=2���v��m�פּ�;�x'Y"N�[s�r;t��5�t�u}U��<��k���-��S�zx�Mܧ��5y��u��=}��3�P���?˜��>�o	�1��?K����#�.p&�����ϵv�����Bg�s��GC]�����u�q~,�����\����im���_�@+��k��?�wX���H�g��__W�>:�I|O�m'S��=���;d�Ӹ#uc��{t��\�!�L��Q;)��PDk#��ʛ�# 2�Wï�X��x�_c��9��t�ˮF����f�s��
����ܪ�F�o�=�]	]'��[
�=9��1��:O��A�HM����є��8S�Ybe�9�o��rk9{U+Ǖdzv�}֍>����)�mI(�E�s�5c���jPz_x��� |e�����_�w��𧁼K��i�Xѡ�O�ty���`d�_|�Ѓ]�e�)�e�3�6�Msi}��3\�}'�#��~|
��x|:����2����^x��z���-��^Zi�\P�_�f�����ac��h]G�5��u��eQ���{y<߶��4+sn��+V���ѶJ�;W_
Σ�[[�����ĭ�X	D_>Ӏf�BpG�:汍,T�>ΤjΚ�R~�r�%;�76�����:���	Ɯ�~+4�b𔰕VS�RU ��(P�4����8F1Ikj��eYU�!8�j��֖7v�{4h� Q�?�<���M|�e���9��'��n�c�꺔7�i��
f��z*[��Zm���x���Ѭ�0�W�xy|��/|����{��c��0v��'���8���Մ�(�Ȉ��́؟O�c#��].�Y���}պ�6�g
�(K��JZo�i)�$���c$�t�h�O��<]���O�u�s�
B��:�5/�-BR��\���f�Z�5�Cq9�/--�G���J?�]>f��+�E�F�Ԏ8\�q����TrQ�9��s�V���������y�zc�f�
b�v�j*7�~T������c1X����V�J7��՝Y.k_ޜ���ݭw���h��� ��۷n��h��x�q����u�8���N8'��:�ǹ�ӭ'���ۑ�C�'��װ��l�0��� {`�s��玼��V�sk��@x�Z��?�\c8��Ъ�ےp1�O=�~��S�D>�o��x}����g<c�(�*k��1N���?���h��4��ɿ�(+��G���V��M��A]�P�?����/3���W�%�W$�c�=�8��{�[U��f���/?�J�f���h�� g��'����d�Z��6���c��[�}A�drY3Ķ�A۾��c�v�����_�#��A��Q���i�X�3��o�sWw7�x�L�euʛ��u��w󡱖Hѫ���x�r�g#�=�:t��G���~,�F�3X��2<�'?1�0�9n��UK�Q�_��e�[�U$�z���2S�`�JT��}�+Bp�_]u����~�_�R+}o�?�,�&�7��D�f��xSN�1�[���_��<0|Y���w.���^��Mբg޺�73y����;��>��?½6M���/�cšd��}y�h��������5˹.o�����Բ�I5�Zj���eЯK�I帷�e1��H��uEc��]�G��>�u�gp��!�[…b���/e�u5�
�V�XR�MהeS����R���b����.ERk�U�G�׏̫�ᆍ���Aš�����O�N^�O[Z��*T�:��S�|k�]Y�2���YGp�o&�g��Z�G.��4Ŏcx`�l�I�Հb�nkȼ5�KU�4zp���]cB��H��~_
�ڼ3K���kZν⻖��ˍ5;a`�^(W3�<qJ�S��

����8<y�j�X�j�\��<u;��Et��i��i�ﭝ�����ˇ�W·*t�u%8YT�������T�)r�2�3i�o���^���S�
֕{q�ǩ�4�g����.�XnDf��SFд�KP��Xm�(�k�� �+�t�߼A�>c�1����
	%O��瓏���O��� ����{c�t51�a~Uk��$���)/Wk����&�&j�"�J�J�g:���ni�;&�J�M��f3B��{w_��#����SL=�r<��:~\r+\����q���Gl�8���+@���8�1�Fz����\���˾3�$��8���!|W�~T���ep0x��~kB�z��A�~����x<x������u�l�g�?��uKR������@5v�j_��y�^���1t?�#�+��cC�R>�Һz��ۿ����Ѳ�We�~��
��?n����F�]]�E��+֭�?�xX����:�:��:��*σ�}��}�.�~H�����G�˳^�^~m:>;���_�UuP�}�Ȯ?Z�������7�[���֓��$���$OER,(��(��(��(��+��/���@�}��d�-�c�<�L�-�`�F[kTOY^'��x���ucouo�L��d�=�x|w��4��ׄ!��t��W��ۤ��iz��jt�~�hUn��ņ��{l̫qm.ɡbHԜWI��Px�MMg�W�״�'��MCI�k�Cu��Ke}m���:�+�&����%��2C*���>"��o�:]sƓYE�xj�VռH��^�>�c'�t�_^��-o�`��%��6�w��n�/�^�c�}��?\-�oMa�����gU�E���|�^��_]�i�!$�!�Γ&���ʓ�"��M�[m��d�㿸�g�������_#��X���i����h����Ϧ��~�?�&��~��r�x�~ѷ7֞-�n��2�B��'š����ƍ�}�-JW��B:��p�QC=ՌV&���M���?���%��<}�/�-ֽ�i�N��W��f�5��$��%��u[�e�q�
CT�Ŷ��݋[���2�>����Ϧ��~�?�&��X���i����k�mk��
J�C�>>ꍨ�^:��T׃J�GK��B���-$���H�5y��,mux5�����hC�z��W����j}v+�3K�S��'����ӗU����"�lt�K��T{Qok��y� ��e�6���X��M;����Mv�zܦ�������&�FX&�dQ��K���_�q|��α�s�O�?�I�4�_�P���s��]i�Z�5�q^ݛmPJO>H`�K(�m�������Z����	j�<��F]�zfBB�$��?���%��S�.��k��O���[�>��y-�x�_�fM?DҒ�Xa��%���ȱY�[�]ɸC����/G�q�_K�_�_��s��k���kU��?������Z�\m���ӭ��HD�����h�x�����_xn��R�~x�x��VV��:>���h�<��w<)p������LE����{�xƖ^)�g�,~!i�m����ڝ�6�U�ݳ��ϩ��Z�w6�I<�q[}�j�قF��po�o��*��OV�Ж�H�p�K�ӣ+����Q��I(�T��;��K��G��	��W�Y'O�yVQ��ݎ_G��sՎ;4�W�?��ar�ӫ��/������u*�t�G�?������,�6T�j��%�Y��l�����*���O����y��t�2�mB��:�xb�K+���?:��^��Ԯu�j��b\��QmZ��|�G��X>��վ�4��ռk�j�7�֥�j>"�G}{z5]0��:,:�
ݼ�Z��Z��e���<$�Z��0��)��Z��9&�SLU�Ơ�r����E�?b~�~"Ҩ�ᾓP��b��G�fT)�e	�cCK��\UZx���F����*b#
`��j��%�Y��l������J������W�Z���G�ol�h����a�;�Z�t��W��Z�֫�hz���[���pҬR�=1b���K
B�����Q�L���.o�i�Yj~,�<Eiif����tM7K��A�e��e�zE����k��^�¶��kZ��-��ZX��[�0M�"��*��T�'/c�M�U�S�<�[��+K��R�Mx�R�S�^�ib�xz���%
4�}ua�K%�kaqo��}�x�T��Q�	�e����
��g������eO�-���~!���>�g�O��+m'M��SM���XAg�	���j3�fMt�E6�c��I�Me$	$��ej?�e\�xs�t�V�uug�7�zo��׶�|W�����YC�%��޿�-Pѭݤh4�
�]���{��~���O�|7�o�S�&�F�i�i6vq���72��Ddm�#]\�vEmm�H�l¡�"X|Ulf�WN�)T���0��#Ju��Vt�
Q��.y5������s!�>�W�Z��mlV:�,FE��*8<eJ�0����<fW��bg�T�[JxHa��IT�R2�N��Ӱh���V���9$G�#�+�t��+^��:�G�Ή�]ܵ�֕�i�m���w:|6�\����J��k̴��+_��4�!'t�Rk�R���b�)�Js��9E�t�MӔ���Z7�[Z;]���~ֺX:7�*����Ѿ��W=m�K�:�/Y~E�(��������;���褮���U�x�F��]n�RW_�*�p��^�����?Z�D
����?ֳ��ք_��Z��/�����E�����%���?�J>���j����s����wR��Ȳ�?�*a��?�:�:~?�T÷��u��'�ض^��%��*FF;~�N��o�i�t���@Un����k�ѿ��O����A�����&�M�=d���?�����2��/�����b�M��+3S.���_�o��B����tW-Ѿ��
룼}�F����DŽ�j_Ko�=v��xG�v��s�oY��/H鸚`������������k�fKO���m���_��X���[�t�Y�O�	%�Q\^�rj����&�-.�æ��"�y��qxS�R����A�گ�O�l�M���<H���}�]}�����F�{�x�$Id�,M����cvpj1i�G���[�#����G�$�E��?f�h~�/���-��*�t��j֖z"@��zv�#�+�J���ꖚ�6��oe���5��|e�~Ϳt��:���W�^Ҵ���@�4����CA�4v�2i����sw�ou�E��-ݢMy-��'X��٫���Hּc�Mx�[��>��E�-�C�}>�o
����Ե�����3U��m�G|���Ub�Kk�S��E���JY~���u����#�=���#���o��>j�Z7���W�Z����i"Xڼ3����9�����
+��G���|ֿiif�}ǐ�#ĺǂm~"\�x���4
WH�.��)��Im�d֧��Z\����lgK=[K���wX��v
��;��*�,�O���@�� �?��ŋ�[]���_�o
�r_h>%����PkW���^���~��*ڍ����O
hjV�VWV"d�A_kY�Zj6v�����7��^Y^[J�[]Z\ij[���h�x]%�Db�����
Y��?h��.�4���"��<Q�O���_��?����#�N��]O�w�%����4:��lO�D��N���:T�JF���ڼ3�;cw�eg���[{�~h�W1$��<�?���G�������Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@S���֮U9����i�ת�ɟ�_�9���>��i�!���������Z����Ň�}G��ҥ���I��U�$?�?��w��O�?�-��zA�\�%��?���_���s��j�5�Jռ��1�#��~a��7�a���������o�8$��z�������N��`���~�
(p##�81��*��H���oƀ=����#����t����2O�.��_�)������%�W�m����!�kƺ��|G��}���]k� �mu�m'Úf��Z��j1^�Z�\\�����{%,$����1��L<G�5��<]���G��'��m��oͨ��_Iw��k�!Р����J��.�-n�{�ST��kA1�]CJ�n���S���O�ޙ��K��,�!��@A��8���q�Alį?-�F}p��^*�A��?��^���0����������ƨ��>��808#�������e�{����M�K���4�{��Ie�����\׉�
�߶�����XD:s��a���z��+��Vp�������䃧�޿?�ߴ��9�k	��?cge�⇆�|S�My��
�tW�i��Cu3��Ԯ��mI����h-�.�g�=���?j�٧L�/�����>�)�h'��G]���Νg��c�V�����N�5�[{MOMi����/R)�I�+�S��'�MԽ���1\���+�1|��H�Ԅ*Tv�&�u�g�a�9�d�Ω�<�iʾ�%��Q��s��4�T�N�y�8EI/z)���P���/�����Ÿ�ſ�:_�.�t�{_|��?:���#��L�^k�ύ>���-.�,��V�6���4�]�v$����V�q~@����~�S�Wi@�?�!��9?�t5�[�_�W����i���O�
v������b�{�xWP�����F�������ck������{���X���Nz�	nON���O�'k�z�eB<�׷�R�>x4yc���M����U��W�.ٯ5)m�H���[�;m�^y�%gc�C0,���^l-O����O���#�
��3L��<K�?|�ƽ���x�Ş&�4]n�E����nt�>�Z���܏
Z�����nV[a}����Y"]�w�XL�-���Uxl*�Ψ�*�'Z�*�Ҍ� �T�V��HG�M�E6}Op�?����uhC�:ܕ1.P�Q�S^�"t�V�iӣF��%*��J1��I���i?���<A�_^NJ�ig�;����v�
��#Vvڄ�O�:d�'���ba����秬�N������o�w�B���O�_�-7�.�o�|1�c�4�/4������Ҵ�˸��8�6�+sm,�M�,���w����U�?���'�<C�/k�B6��]j�=��ҩ��#��3��@F��8�-�
x��w�q��t+*��)*���S�4V��ݺv��}�a�y��C:xW��BX�,���xJ�e�wh�s���$���i;���_�GH����}I�?��3�yJc9r����zW��O\�8�rG�>��׻i	��`��Z��+q�zW�N�;j���.�g�J���W�_�O�ϖ�:N�Ҝ|�V1q�_�~'�gz��8H���I���MjA���x_yg���o�iJ<�,�;���ӊ�~?ச�
�E���'�������3���_�x����g���cA��X�-�
[A�,6��jZ�K}mm�=��Lܥ����_�_���W�l����?����h|VӾ?x���4�R��Oִ�j]n�G�7���oxj�Mմ�KB�/�ci�:M���k
�ZKk�<�/X��NJ���Rx~o�%(*�v��J�������<�YZ���k��q\����EF|�w�RГJ�VM����0��y�_����_xe]P�V?�_�<�1�W�4���j?$��uχ<�;�>��I��5��?��8��?���h��4��ɿ�(+��G���V��M��A]�G4i42� �r��H3���U����j��W��yzc�B3��Y]�67����D�|�� `�$��c�ϥeR��������sJp�{�����#��]x;�xK��	���fj^�g��CW�t�'�`���6>p����\��,��gi`2pi�O#߿�g��3��|	�v��_�tx��vV���/|0�I����v��i����6�u
�%Lj<W�jךē�Kqp�m������0<=���Wp�ch`(B�c:��_���9S�%:t�ը��P�P���}��.k�َ+-�+ai�帬�W9ҡ>ҋ\��Vn�j��R�N��Nr�8�k���;��YySF�t�ZKu:i�"���I�yR��S��(b�[��
 �"`3��Hy�O�޿���C�6�����|��O�cǺ�����GG�}:=�~�f��X.�����V�&��ˠ����̍mu�,֥g8o�͠9�׿c���<q�]/`s�q�w��S����TN
)sA����荒�C��x/7��eװX������jƽR��Z�l�՚�m�5Vo݇��,:Fޟ�!�����
� �GL�ܪ>�,�^̏�u�9��C��=��:����?�G��/�׵N|�Z��>NQ�����^S��s�����G�!~�>Q�9���?#��G+������U:����ք�������>���N��G�|������O�ࣩ������o��ߴ/�~��~�.�m#Q�I�u�<]g?�5���[���R����K`���L����;H!�x��.r��߶7����?����?m�/�{গ��9�*qd����~#��᳨Xi�Jk�욅����vI�[�o#3Ogso��C6����
8�u1xw5Z�_�M���5�9$��]]�'#�0�>g��֣�Ūr�לm
��*r�^YF2qm$�]�?�3�����;��L������U�;Ú�yݒ��1 ��)��x�7��#0�u��L�O�k��De|[��O�~�}�8�ֽ�>��Z��x^״���KR������@4����O�]=s��������~��������.��?�W(��w�_��6Z��/�!^�o����o�_��Aվ��ր�>��V|[�?�h��?�ys����G�
��8�k�F_�'���Wao��Z��m���Sq]���A�i=�K�AO���$OER,(��(��(��(��*�ͭ��-��B�z9P:�t8=�F�j�̟�p��-�����2?��q�ǫ���9��C�9�@��������2?��q�ǫ���9��C�9�@��������2?��q�ǫ���9��C�9�@������+-:#
��Vѓ��%۹���r�q݉5r��xa��[{�c��x��5���JI��d�9�tpU������_��d�:ƥ�;‘�^J�\�.]_E��i\�$�a�5++�݋1��2OJ���r��6�e9�Y�a�ΪJ���FU]�<=Jnj-����ݷ>w�8G�8��
<U�?Ĵp��L5,�&˳�xi�%9Іa��F���)SQrI&ݑ�'�;��3��%����_�������ѿ�w�^��tW���q��|G������|�������S��!5���%�ù�c?�"Z7��U���?��߱��-�~*���}�E���W��{̼��'��A���q��G
��}�ğ��o����������O���#����߆^�u����-���e�bK[�[R��PH?4�$M��8�s���|Qĸ��㸇;�aj$�a�Y�;B�V��*��NiYi(�u}�K(���\�G4ȼ>�3�6�U¹_����^J�&֍ө֛��\��7��k�4��+^�'��?�o�׌i���V��ï�n�G�f���Ҩ����~ֺX:7�*����Ѿ��V��/����e�袊�:���4��s����8z�'�Wy�w�u���I\=����	z��<,_��i��4b��ք_��Zϋ��Z�j'�抆�?���>���������(����%���?��_�ډ�Ko�"�t����o�����AS�A���s����Gb�z/Ȗ�(���:�����Q�[?O�U�~�	��F��Y?��O�:�?����]�sj��������C(o�Q�M��)����b�52��\��F���+���/�Er�����;��~h��o���Q,xG�v��s�o\G��j_Ko�=v��'�������?͞u���{��M��m.�O��5���$����+�C�_
�5.,�찷�4xM����'���O��E`u3|/���fσ_�'�~�u�Dо2�d����/�9.um[�z��.#���[�cP�]*���(n.,4x�-.&�	'�F�"�L�E|�c�~�:o����>���ů�5��c�u��g�'�&C��|/��.<Oz�0�������R����^��X �2<A�8 ����>K�7�A�7�?�v����:�ީ����6�|I�/�3��n��|S��7ĺ����h��oo}�iZ.�kfM���[����d��"G,qƪ�ƊTEPUTUP�(�7�������>&| ��|R�,���e�?�~����V���mm/5/h�.���xa���`��!�T;3қ;K}>����1
������"���a�0�Y�$h�31�X��Vh��(��(��(��(��(��(��(��(��(��(���[���W*��u������~d��/����Z����Ň�}G��z���ϭ`��b����u�R�e�����*����TC��U'��֖�= ��b��T��Z[/����T�^E�H�/���z�x�ũ<��<c$�c=8�6{�y��1���?�U��ux��Z;Ҭ7`�l���	u[;�������	.�grJ�H^IX��Hc�
OX�V�u+V�
4h�ujի(ӧJ�8�ΥIͨ��r���c�i&Ɠm$�m�$��{$������	������x#L�ѿiV����X������ ��[K�XìX�j����s�%�Yě��O��_
������x$i����<5�z5�Zn�y��V��宝sb.�����i��1���(^N�
���\����>xc��5x^Ox�Jk���5������,n�}ON�B��o&���k%��6��N��G��i���.��
����x�S��w�>!���Q��=MJE�ɨh�F/!�Ma��Ki#�\�x���[Ű�|\��LF�+.�'���R�{a�Q�[B-�D���V���T����u��І'�9����c��03�N19������:�NR�c�F����~j�ኌc����A�s����>��j�����?ʼ��~'��n�������+yW6�i-���zq$l�7–�E`Tzρ���㟳E��Z��r��-ϲ�q��)c���O��Prt�Ш�ǙFq{�p�T�5*u!�Q_ϳ���P�\gԢ�Mzi�h��E�f�����_����0�G���s]&�����V��E%bJ��H��`vFT�Q�b0$��S�WVS�0#��I_w���z]�ɟ�w�_ ���g�}�q���_��˜>k�l��A�����f[mF��Eswo5�����z��xɑ$��ǿ|1�oٗY��������=F�޳��~��_E�k��V�٤�X��-��|�W+�O7�l��!5���Iߋ_?i��ҿh-"-�ƒ��M��	׼��_ٚ_��p��&��}��kvrY][Y��q�^j3]�j-5>���.�j?|���]�����?k���4�{^���l�j	��Yi�WW�>By�j7�3%���<IO�s�������gy�a��)�t=�iJ4j�����Zu�R��
0���Nr��˸�î�)�qU��|
��9��Q��p�>�xJx*�~��8��4�Q����X�n+��ѣJ�z�����x�¾�6�2\i����j�sF�"Io�ZEuWS��Yz�kzxA�w�^s߯��+�T��?��7��'���𵯄|�薖�m��΍s�_mծ����c�u>L��n!X�&
���4j�����-:E��[��5[9����\���;0"��p�lžW��Q�#���*��:p�•?��.Q��=����^�Wt����g��5qGp��x�	��'���e�2��̫4���]�`n68�3���bd�*�+J��%�e?k�/�������5�W)�ۡ�1����l�N>���?n8?�CL��r��k���V���/ş��?뜟�:�-�կ���h�x��:Π�u���_��c�3^�^K�&u;��}JGa��q��a_h��Sv����0#���{�9�;{�~y��?~��-ž>�U�>�-����5�G��t��wm<2@a�[�<�1Ao�#�������h���OL�!?�U��/��Ꮛ>'���g�	�WŞ
��
�g���é��G�h>"�>)оi��V6~v��R�I�C�F+�A.�Ҵ�o:���qNCW���/ï��ӎ/Q����sX�,��V
�����>���%\-řViVRX)�XҚ�����p���R���)��Ÿ�tc�~%�_>���W��ׄ�Q�Cq�|6�?��ͬ[}�×Rx�Z�bԴ�:��5'ҵ�{�FK쫪j��p��*^���~|4�Aᩮ���ρ4��E̚�헆t�]*;���5��ٍ��d4��m���[��>5�K�f��|HO�I�`-a���a�}"����Z�.��}���-��r�Q<h��{��~������ڿ�M��B��������Z	�|?�msP����"���4����X�6:����m.tG�{���،>Y^����'Q���i��Ό���xL=,m4��ESV�
>�u*iVu����<�f���e��aa���fU1R�N2Y�;�T�IISk��b%T0�ӕS�O�=6�ŏl�
{��|�{i����e�ڏ�����x��ž
�3mr����z`�Q��w�F��������X��ự��������[A������3���MiI=ҵ���u�yΕ�����q�~5aXdc��M Ͽo�����*������3���?����?e�Mn_��x'��~�,��j�z5Ŧ��kڅ���GK��4�,����kŶ_K	��c�G���U�r��J1��&�I/Ŵ��I�)(���^��od�տ�c��s�^��c�gֵ�����/���m(��zo�Co4Q`]C�����$����;��lpxO��~x��_��S������Fi�+��������,�e�9�u�����j�[Z�h�������?�ߵ�K�F����s�k�	4�Lj�?��C��oV�.m���:��=O^��`��5Ox�R�X���x� ��?���>%i��xT����V�^�� ���|Y�[i�ʶZDŽD����ښ�us6���A�_E0��R�u�,�ì��a1S�V�Μq�k���T�a}�(K�E�n��&�����>�3�?U˸���KB�eJU���X�~ڎ3�Ԯ����ӥVP�Y�����O��(��H#��,`��А9��
x��F|��>�~x�M��uYd��вI�o4�V�8����&�(5Z���>��9I�4���4�ث���C4]y��Z�i�t�*u!(N
�P�\e-Ԣ��]�?,��Z��k��1N���?�� q?��:��ro�

�k���iտ��PWs@��������I�1��C���^�u����_���B!��q��q��|�;W6#xzIv�񾿗�ږ��﷟��E!�9�<�g���_�_������Y>%�q�ڕ�|P�����啽����>�qfDQG|�k�1��\���[Y�4��x���]�|H��i��xú��<U�ߖ�F��YM�jw�VwZ�#$1#�<� �i#F�h��8�����|;�x7��g�\�������&�]�sr�k�k�8����M?E�-��𵮚�i5�	�ܼ>j|p�|���U�ө<nSV�cNu+T�#*X�5Ӽ�W��^P�I)�8Ӕ�G��qM�L,}x��s��0uk��Х)T�\&�Z�Q�c�JN�GƔ�sME�?�co����?�wx�L���W^��/[�:���׋�;�/���]Y�j��ޱ=����7W�����ˁB���Ϲ'=��9��>�V�1�3�]�Ư�?�~���D����×�	��o�%����g��4)t���."�>�$�xG�Ln�������<k�[�������,�tm?��ӭ�Ǟ����ĭ29L/���y��V��&��u�է�����L�� �T1эI*��:�8����J�N�"�,yiSR�JW��������q�YaqY}J8hN�<6][���j����1�t�`�X��i�12�V�ZmEb=�K҇�����|�Oo����|6�����J�o	���^9���i��wJ�7��Q���<E��C��捩�݆���۳Augwo$r�,nU��@������f?I+�+)w�=7�׹��N�?�����_�V#nx�x�Y�^�܀:g'���_������<{�_�9�'�u+j�DŽ�o�c��
���h�2iڝ߃|/�jZU������U�/u(�3\�"+S���Ƥ�ai�%)ɵB-�)>�d�'��I�N0���Wm����x������?�����Z����Z�������_�4��� KA�jZn�e{ ���W�BPN'��?�?����h_�{F���/�o����]�|9m��i��ʺM�XA�W�[�no�>��/��C� |F��'���#�^4���KE6��%�v��
�5�Ԟ��zBiZ%��$��ܰKo�]�A$�P�i�+������_
���~�r���>	���/�>4Y�W��ږ�<�7���Ö����qr�o��5��������bnl�3����<�[����F:�"����W:^�j*���Ŵ��JIҋtm_�\ۍ���l:�Oar�])(Ԕp�:N.�:r���֔i�T��ڝG�Ө��Gb+��b�J4���m��q�����0���ko��1�m*�]�����>�m杩i��3�qkyk,s�*1
�����i�
��q��Ӵ�i��vi�4�鮍��T�/���i��Wj������7��i����O�]=s��������~��������.��?�W/�V��Z��2�݆Sq ��_�u���jZ~}�ϸ���.�j�c�?�|��>w��y}���v�uo��u�:��U�������8�I������ݣ�&\��=?߯2I�=N���
��Ho����9}k�F_�'���Wao��Z�
o�Mz���o�!�P|A�D-���ėjI\��}܌�5�:}ͽ�vw]����6��qo<2.��x��)�I#fVR
�
K��$U&�[M5�SU��$��h�f��љ[]ѕ��Y[S����+8!��V�A�Z�\AuOm4WH7G4$�H ��2�� ��# ����-�eE,쪣��B����?vh��(��(��(��(��(��(��(��(��(��(��(��(������MxƝ�?�k��W'������;�~�
ס���s�J<���_Z��U�����KF���\՟�~ֺX:7�*¶�%��}���"�Q\�Y�x�F��]n�RW_�*�|u��N��������^��D1���H�G�%�/��ت���D��kB/��gFH��ե�L�����_�P��E���%���?�J>�Q���uu{~?���ҹ�G��?�w�N�v_;S��L;}��Q  }NAR��A���r~�~GZ�z/Ȗ�(�����>�'o��)�"�z���t�_O�Y���O�EtZ6>����s�:����?�z�to��~1���7k]�/��[ٙ�5'�F�5��?��S_����C.���_�o��B����tW-Ѿ��
룼}�F����DŽ�j_Ko�=v��xG�v��s�oY��/H鸚`�����QE��QEQEQEQEQEQEQEQEQEQEQEQEQEQEN���Z�T������^��&�~h������
���,?��?�[��}k�C���J��/�?�&G�W�����Ҡz��?���_���s��s���Ǥ��W�z���ό�yk�z����-9�W��ϟ������jC�H����s_:7������?�+�ho�)�[�Z����$z>�m��V���:��+"L�F^����Q�g=p3�<w�+��?_��ᎉ�ۭ_J�Ğ6��2�7��u��`���d����?r�:�a�DD_��W��;�2?<G�QU^&�
f�V
PR�w�ϩa�=�a�ʷ�3�0��NUZ=��j�xTiSX�S��©R����QT�'&�I;ؗR�w��E<-�Kd���������K���"�e��J5̈́,K7�@)/�����2Ai��Ꚗȭ��ݔnE|�cO� ETUF��İ^Ekumr�V�i�5�Ս�6��V<0�$sC(�D�3��r����m։m�i)�]��X�_Z��W����2�j�	�H�]���`��;���OCW���W����e�soS��J4e%z�eN�9ɴ�MT��m�R�9R�Fug�!RUcv�	UT�Z�cwʤ(�R���P�����!z.l5�z��]����h���:r�WԾ��o�����֯��gMF+�k�o:���eI��,��n%	8*����޾��+f�P��4_����_��1y��VRR��i8�Ӽ�1�/m.�T���s�shrc�mx5uo�����:��i?�ZVN�����R���iX�O��~�y��%����~.�����W�+��Zw��hi��*�V��4�[�5�[۰:ơ�z�j��,v����q$�����~�,K[�A�X^��P�(���=����(�o����ol5ف�T�G�_Ʋ�߶W�'aq&cӾ4����V䴶�!���m�Ѓ�V#X���Wv�dU����[ڮU�H-�PG`��	��܂)��/4�����Ԫa)T�}�G2��4����Tԓ�'R6q�+���<x��]8j��,���o
WZ�)G���	˜U9��O�#(eʛ�ή.��M�h7��j�?��м;�`�G��-��.�
��*>�c�``�t�q��l!����������z�h����$�<<���:�_�)��e��"�ʠ+���<�ߵ��ȧ�ͧĸ�.O���6�V��[��cU��$��9'���x��s�S[�ݦ��T9��N�u�B��'�'鱑s�3�4��i�ƶR{l��k������3y_���+r��/���4��U�<7Ŕ��Ri/~���k�^�cR��޿�G��48����Һ��<!� H���j����X�Y�!
3��������Z���ָ��CL��r��k���V����ڨ����'��?�����PgS���'���+��^W��\7~�;�[j7:F�o�L-�K�6�
6��P��X�c��Z7'�+�>!�~$�|k��Cwo��~#�|U
���|E�j��z�^q#\�J�30�e��k�W�k_ڇU���?j�7��|P�Z��a��zh�߇<3��Vz.���{�n���];N��1i�w��p;'����N��xK����O��]������b��ƚJZ�xcƾ'�5�����R�n�c�-/-u[�4-0Ic�dn<�:�e�b2��Ac�zS���҅yB�y'R4*Ƴ�9�>y��J�'��8O?��~(�_'�b'(�
�*8%���V�N��8z2���^�SueJ�U�{O�g-�d�n$��=�g޹�Z.�-�e)b�L��ޝ�\��qTs���N6��<M��*�*2���tb6��9�B�k�֯$�U��,"���1+��G!�>l�P+�g'~]<��h�i{�?%����������(��X����7�!��~�)Ӥ�_��oA��u��/�6��X5ҧ�-�ȆFd�0�������/Q?�s�ο�S�
���H��������2��K����R�B���\n3��N�b��o��:���+��W�������S~��4|�q�\�W���O<��_���wU������G�񎻮i����O��Ë��ڎ���6��W~�����Nl<=�i�B�7��Gw\F��~
����9o����Ԍc������}�<�;��_	�>4�׏��6��ص[I���K�6�_4�E4��ZP����	��F��!$��	��=8	�q9����(�!����V�IT��TU�Z��$\i˚kFw��7���N�6�
��SZ�hW�eN��N�e>IF�^y�NP�T(Ք�W쇂��	�>hv���4F
"_�Zܗ^'���o_�?�~>��-L�[C��Y��Mw���j�&�^�yo<��M��Wþ �&��i�>���?�,��?\x�X���H������n<u��K��3��t}?�z����������&�����&�u�^|�s�/���h�ZO�ٿᦿ�<����7�TE)�mA|Ml�K�t]�>v�|W�����m�hx��_�΋�g�?	�]�5��^%��~�6��j-�}Z��O�Em�jp�}>X4���{�/^�5HK+/�?��
�^xZ����Vt�S�8����kU傅����d��iK/��,��o����%5(��A�)���X\"x��7�C�D�a���?�m��5�~ѿ�7��u���E��g��H�$����!�w��}�h���+�uH5�#P��孝�`R8�`[v��?W�W�'����㫏'�b�
<E����Y�P���I��ag�������
���5ю5�0��R���{K�ȫ_9��0��*�?	
�)TX�J�OmF�a7��R��~_{T�\F
�j�Yѩ'QN��Jn3��'uON]4�s�k��1N���?���`q?��:��ro�

�k���iտ��PWs@��o8��_���p;��W��Ǽ���_�����c�<V�e�[}�6~��_��Þ3�7���Ӽ�O��DֵH,�����7�Ƶ�(Qb˼C�6:��Q�D�pά
�a����G�$�N���_�	��|e����f?�,���j|����'���ͨ�WA���z_���#L���,��;/˩i�����]JՕDO4_�Y�K־|@�wß��K�W���CB�,�����GN�ʹ��Y���2����� �$���e\^���Xj�J-N�*�
^T���R4kES��9*r�>nUZ���g'��n[�f8	Q�sjTj��P�B��Q��5�
�%��_�V�<DiN�)�PR�
�)�8������逪9$���ԑ�ʾ��&�=�'Pa���H�7c,<��`��_h��fa�'�S�����d�q�S���t]6EyL�۫����6#�.����k�%&�.�Eyi�k�ww������O��ا��/j�����[��J+ۉn?��9�
Yk�F��d#M�\���{H�AڕɍF�_�o��<����1���J�,�ЭVQ�۷�d����?��Nx��I��a+��V�#��3ӏ����O����F�~bo�"�ֹjUI[޿߯�=��s�/���_�M�Oۃ�������c4���A�mOF�1��>�q��SD��X���F;��O��.�g/�ҟ�<zO��u���)��<Ѵ
>
KO�z'��?)�<[y�7����{����g�.�R���)�d�)?�ۺ�6���;���X�4�I$���T�gD`�1Wx�d���#9������_���_�o���s���]���<W��~��
�Fӧ�%����KM�-;����h�Df8v�I$l�ݖq|5dx<������N��P�;:s��}�5���.^ugs���aqy�#1�e�|cJ�<M_kZu)FP��y�V�K�Q�Y�M�N1������%��!��Yx?�嶱��O�K�Q��)�t�ǎnju�x�M���f��_gM[Eҵ2���#��÷VϥZ*~s����L���~|k����O�L�v�����[&�m�X.|I�-SX����|m������:��?�x>���W�������
hY�Y|G��|%�� �Y��~4�4�1���쵽XA������L>�W�_����
��~�_�O�B�g����4���F�e�+g�B71�
�F�^[iV���W�Qث�i��\ܡ��x�"�c<n;���Z��rW���g5%K:r�jь�')A8�ɵS,�T�F8L�	_�u�K
8w
��iʍ^	��SJ��
�*�Q�>��v�%�?�z~��^�^K���5̏3�h�a��db�om7�/����C�aP�~�6�=����v�8�+��s�����ٗ�?�~6�&�'�[�^Y|E�A�j3_�x+��Hf�H��#ocl���Q���܁�w��>�����+���N?��+c�>*��ӍX*u���5�'����⭆���,5YBS�ʜ����R\�i6�d�ij{�RԿ�����
]�Z��x^״���]�H�J���ԏ��>wm5;�(�mB�N�s)'�<�OS����@�����>����1��.��l���t_��B�j�|�q^{.����C��oO�/���$6����S�\��s�6��bG�%=?շn�o�վ����\+�� �A�5���/��6����:i�s��'���
Y�a�<Ex'���nF�p,�^�b���N���Ӯn�,+uk�8��F���(��.�8�V4H��UEP����*����r|*�e-��\��&���6�,�zCZ
V����V��yK{=�,܅I
���+���
&��L��t�:��l�,������	
���*�CH�h��
���A�J�_��i�x$�5/��M���^_�5���S��x����#��Ӧ�]ض�.uj���kFo|8���;C�6��xu�Z8�O׵;X�jwV�7��ĥ��g,���O�<Y��
nvwc�����#v8��ٙ�v$�MtV}��g��YZ�6��ogevְ+�H��Gi݂�˳1�@�
�ú���9>#x�Y�ǁ~'x�-k�څΕ���i6��\�fh$�_߬vzŐî'��=���H�_޾x���m�59��oľ3��=KQ����|c��k��НF���-4�/`�m�G�N�V��X��]���<e�?�,��k_K4�kv������p��ڭɸ��f����I.�I���
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��'��?�o�׌i���V��O�r��	��ׅ��c���z?����[�7�����������k���}G�r�d��#?L�����Q��
��_��D�_�_��+��8O���]�?����p�����'�w�{�a�t���9���e\`~��]�]��W��/\T��?��c�Q�sێ���֔]3�?�׊��?�:z#�V�c������
��=Yp[y��n>����3���j�/�O�U#��=:�����V������a+��ͭ7_q�OE�]��д�Ҥ�����c����ԫ�O������kKe�(��C#8�|�SX�N~�s�Ӻt����5�:g��~V��$�u�}�V�����{u�#�z{氜q�����[�?�{?�w�?�oe�Zzud/�����j�[��ޝHz��U%�w#;��5�_Cu'�WYq��\��gv{����/U~���qb��O	�&�q�m��ҹ�Yu���ǧ�g5��b�/H�/�����ႊ(����(��(��(��(��(��(��(��(��(��(��(�+y�PG�.A#r#0�ds��|�y�#^��~kx�C�]��oa.��X�sL��%�N�P������-����|�./gvH��n&%��f�h��e�H��oB��|g8���Ï5����~_k��OӞ��X��E�@�I�yf{yn�8�#�Q�-�/�����7S�5}�RkK���ln.,m���c��7�jK��W�<v���n�R� aW�5�:�z����:�$�-��..<'�_
�j����
��Q���uƿ�!���=��Ϋy'�$���"���j>�ݦ���eq���X�/�Ӗu�Ƴ�I
��I�hm�L���v��^3���<i�[k��6�Ι�k��x�A�u����@�[�B?�7�\Ln� �h�1�:,nַ6�yU�:����/��&��C��EF�51O_C��	gq��Z���m����5�è,���V�d�)"I�E�|b�>'���'���9|6���Z+I2���΃c��ŭCu��4�e�X���i���b��:�in-��}����?T����[��p�Xi����L��-tm+H��D�Q�EM7s0EP�|�K9�>�E��ǭ�Q���D�X�����u�=Li�U����
�wm�t�
[U�В��“Y
N���R��{p
�������?�zg�.<5��KR��_��֬��<G��GA���&����^��iWpjpkW&�ME�KK?-R�~���Z�|�_�F-5�ԧ��wR�Y��qv�jR��-��E���l,��t�*�d��lmaY�n���~�q�oc��4���/��]Nn���Ⱝ�ذ?���?<�Gz��g�Xv��V��?�C�~���?�u�S~�}�%�X��!�������w�knwW�s���Ǥ��R]������Ke���1^q閫�_�2����:��������U�G�Ks�x�#������?���Q�@-\]���9�����h�</�|&�V�!{���~s;:$k~Pr��1���r[j�G���s^�~���8��8���
��_������SZ�S_�W�{�HDQZ����y�|��f/���xe�$1�Y�>&'/��񏅹D���e8�?��Ȩ�F8n�8��r��o�8�'��]7(�*��\9�LN�x����L&V����:X�~-�9��ʖ6t�����_io����?�Q�4�Z��;��M�>)�i!�m�^[m?�֙oo�FDr���}��#�	I�ޏ�%�ǧ���\|?��mV�S�G��g�.�smy�������t�eEI5%����i��o�*�ö��潆�Q�L��-�X6�-������Y߬?f��濙M�V�;�&8�H<�����<;�O�~'�^�Z����h�pF��=���Y�W��B��wV7זҤ���:��Uf\�����!�0Y�:�6�\�5�G�P�*�)*��R3r�ܤ��i[�{��c�Nx���qj�M�*��!^4Ғ�єu�Qi��l���e�6�s��cP�����S�͒N.c�o^���g�Ȗ��eI<��d�9 �
�} {�K���=;y�����K��> |8�ڙ|s�ߏ`&�|m��7��뙯����z<��#�=����fڵ��᳨jc��!��ƿ�/��K���N���Сþ"�Q�KIѩ��p��3�c99)Ó
��9RN��gN�W�uJ�<F�"�Z�`0��j�9�U)W�p�I�'R��_%Ex���ٚ��e�K��oA�:v�eB�3�y�v��X�����?�Z�Ÿ�������_��^����Zi�V~���Ǫx��*E���]�������j�	��X��L�����i$�n�%v��%ճ��6Y��c�t�jn�GʥIj�
TiAJ�|Ez��6�g[^�:a:�!�n���rY��ߵLF��o�^1�M �x���D��c{��v��c�;��c�z�O��wZm�߉5���kӵ���4K&������\�0�s��K󱝁'/��G�������'����<C�+��#�f��䷷Y����@@���-������*�B�ˌm�C֯�4R��E��^y��?��U���H��I�����I+���Sj����l����/�5�9fX��&a�f���|^
�	T��8c�^y[�lj�T�{
�����j�hʟ,%.�;��vZ���/���_�>�o�������?�������+JK;"�<1�Ŗ���'F�g�o���<v� �[�`Ĝ�,4�[;�ׯ�珳�kv�&���	��^k>!|@�%ƥ?����V���ӵ�SRmi�I�I�[�Gl%�g(�E��W��d����ᅰb�o�e���!�֯��]q�[���a�+3���s*���0��5�
8ei�7������u�>�^��/�^�?���=?<��yO/�QN�k�Y�2��^�ٜ�R���/���*�p��:�uxC�@���{�����1��C�]��sWO_*�G��i���O�
v���������Bg�s��GC]�����u�X�0�5;���>�קזj��;���=s����ޱ��zk�]:�
�_�~y��H�
�_|�Ğ�·�_j���~��;S�ޑo�C�^�Oms�Y	V�i/��M����I����1������w6�I�7:~�e�ė���9�o&�tۻ�%�IB�Yiӄ���<A�-_�wmi�Z�X_A�������ŭմ�c���	���f�H�R��U��{_�t��k���K���
Q>	_����~�Ε�};W�|e��zٵ���-�F��][xb8/o'7٭��l�U~_	�Yq�x��e_��{9�nq����j�ER1S����Դ.���̿I�������|>��F����㊥��(���.�a冩Rt�_\���P�Y'S�4�:��U_�kj��-�
B�l��3b�̎̅�y��f�z�����R8��q�$�*mr�p�\�9$`�ա-�Ŝ�m� �"5��)*����q�o ��n�C)�մ����D�#\�����(�����.I �_{�6�{w��{-�����3�H��_�^x�
s�1�~�
���{�pO�W�c�|�Ŝ���s.q�[8����c���zh�����q�W����kេ��{�]�5�şX�𝐎E���_
a�_׵�Dn��)���(ٶG��Ґ�*��Ut��o�v��H�>�J��M��I|�o���{/��]<���֢�)ʶF� G�0N����۞+�����x?\��~
��l-/c��&��t���x��D�]���r)K<����B�4����VL�hj��y��#� ?�����K�
�m}�|	���H-vX�C���ߊ�K{KKt��~٫i����PՆ��2T�,rm�C)�f���1I�gK>����.^h�ԟ�$�wM��g�<7������PU*��NN��D���
�rN	�R��*\�M�(67z�mi5���m�R��@��<�,�����f }}��N��1�W�ο4���k��/&��#u�Ӧ׬��a�#\K����m˾'�����me�Z�3,bܭ�7#F&;���V�Y[��O�ğ���8�����W���S�O�Ҽ1�i:���k7v���G�Mb�n�i6�Z�H�m�u����p�L�[:t�԰��j�~ꦩ�4ַrM�)&�)%ܔ_�t)���)Q�z��S���R][J)}��v1Wv����V����wƏ�:.�<��i�c�� �+[;-���~��"�+�&%` �$vf��|���l�	'�4_�������G���x�n�a<^��,W�4K��m ��a�\�����"m�mF��a���c�DO����ȵ�������G�s�N1wQ�gz���
����rJ�W��I�8f��>S�����k�S�%����+��s:|���_OS_���u5��?��h�N#G���V��M��A]�p�?��:��ro�

�h��������5y:(ϠǦ@�qװ�X���{���/��j�%q���>��9�ۥa]�W�~F�{���e�pм}�[���X�
2��V"��Շ�-�M>t��[O\��iCS���(��SGY#�2�,Y�?���:ֵ㿎�1�
���q�I`������F��G<���˥\O�0�7�j��c���q�j�����_�^�<��>�߄�e�^�^�c���
.4�F	��۹�JdnnpM���B�q��F�l'ᯆ��x7�?<A���{�U����V~���r��V��G
���eq�M�0�B�"}���?�\��3��*��:M'MƮZo�S�rrbj�U��yܒ^�F�?G����p�Ն*�>���J�Y���v�0��eYU�P�SE�iэ7):2�QJ���Ꚍ��ly&(�[|������9f#+������-��*�\}N<�bw+8=IU�r�4k_[	
Okx��'���#?<LN3�9nI��u���MŴ�L��1���Iܧ�+X���m)^��m7z��+������|6��g����
ʰ�ǿ|�]4�@x~�N�W�e$a�s��� 4g���/��6M[N������_���C�ف?e�&����˘�K�������F����v����j���1�<9.����}̈́Ο�h���m��k:g��r+ο4�.�:_���g��~G~׺힟�?�J����m�tK�^�x��O�E����� �8:o�N	
v��Ps�t�m ��~�?o|!mik�߁���ܺm�[����'���綅6F��{j�Ȏ����k�E�����?��“������X�h�[�9�����O&ᣗk	A�
�&?� ԼM���ė���3��]���������x�(u��E�Hkg�YH�;�J��2���7�o�X��5��S�Jjֺ�V��WV�2��d��[__��ӗq(��3<�ڤ����B�N�77�����yZS�_2rI�b�IismhVAлy-s�Ml�EȊ@N؟dLg��G�#�A�[��;��h?�e_�_�=�Eع�+K&�vѮݷK�K�ۡ.�9�V�U��+��d�˕s��ghݝ��JȤ󰀹ˀ����o�'�����q�`�%����—ZF�-��^2�DK�k��K�/58�֩����Kc�G���F�����ۏ�x�G¹�z�k.�	���N�Zp_�*ꒊ�$�vQr���xW����+��\]m.���C�$�F�3�����J/�&��1�3[�}��G�o�OӾ'E��s�y�us-���=.�$�V"�mMݵ��ܗGT,U���x=��m4w����־o��~A�����ɩZ�j>$�p�x�XE�|Cv�J�xm�����mc}����L�R/G�H\W�]�2�%,M�!Q�����V�z�T[եRrI�J�lzy�l=|�W	�G^q¹����wFRKE)S�\�v�z�Z��x^״���KR������@5�y�.���}?�t��h�G�WO@:��6�w$~3I�&�� p���yTۮG7S�`	\��Z鬂�� t=G_�:�+KD�E[�_��O
yיִ�/��׈?i�7ľ&m���x=5�𪷈�4��b��	-ƨ.���Ȟ��R�Lr[Oie�O!�������ρ|e�L��m��>
�GC�M��R���Y\E��|;ou�N�MJ�����fm2�Jh�����u_� a�������r��~b��O�#և���u>t�7�?i��g¿|v�^ �#�2j~#��᫋I�u���MF��Z�����f�"���w���V��g(�9��xn>	�6��@�����4�ge���si�׉|<��_gi��"�b�=���riVZo����=G�F��?:�ϗ#��c;�χ�p�3�!����w��v�ArM��[g$��A1�����Օ�
��6�9���*^|
�DK
��5�ş�K+���]O2jv�m�ĶɦB�L>�wg�E��̽	��S�z�΍��~t�׋�j����I��_��F�u�8帀[jս�v��V������8Ě�w�i0��`����d~�=��$7ᅚ����o�{��OI<��c:h���41Z�#]����Mc,w�S���p��|˧x�����Ƒu�–D!�<�]k��|K
��d��֓y����/<A�'�%��M"�9n5M�$������W���~&���I�=>�:�Ɵs}��n�������u��nnl�|Ks����4�!��iV�����~tn����p������h��=G�F��?:Z)7Q�Ѹz�΀�M��~tn����p������h��=G�F��?:Z)7Q�Ѹz�΀�M��~tn����p������h��=G�F��?:Z)7Q�Ѹz�΍{�?տ����y-�x+�s��q^��l�[�W�YÌg<����v�ۅ��Uw�oc�)�}����f��������'�*ɴL�^��?�m�
����Z��k�_�-ͨ&��k�	�,�E��q^3���͟?��uĢ������w��
��u���%qh��9�c0?�g>��߳K����3�������w,���%�y�>�ˌz�z�+An��=0��栍1ϡ���\Q��s�{R�������\�1��8�_������z����QF8?L�~�v�=x� '��緧N���o_N��ֻ�u�;��Z/;~?wO�=Hx��`0'��:����S�pOs�>����N���IER>�������1���Oѿ���S���3�>G���ހ#?�U���-��-����X����Q8��{�֩.���_t�L����c��=G�HYpr�g���f=1ǿO��&�2��j)��]i�~�,C��ٿ���Aܼ{��ް��ry��9��XErs���j&OQ�
���_�j�s���뵻]����#�d�"���<����z�y1^V�g������Q4=N1�}G���r��'.{7ʭk�K��݅C�K��۶������;����z�y1�5�f����p<�p8�o�4�";��J^�?���i󯭿����&���?-}wz�y1�4o_�/�?Ƽ��d~�y�ҏ`�����g��>���_�k�����z�y1�5�^_�#��d~�{������u�>�/����7��z�K_]޿�_������"���_�#��/�=<������ϵ����C�Z���c�h޿�_��y���(����?���]|ϭ�}��
������w�����F���c�kȼ��G�G���(���O?���}n_���o������������7�����^E��?J<��G�G�_�zy�W_3�r��k���������ѽ�����//���Q��?J=��������[���_���=����_�/�?ƍ���בy�ҏ/���Q������ܿ����!�-}wz�y1�4o_�/�?Ƽ��d~�y�ҏ`�����g��>���_�k�����z�y1�5�^_�#��d~�{������u�>�/����7��z�K_]޿�_��s�0�����=����J�~ϩ����X8������ڻ�)v�l@`	��d~�y�ҏ`������P}n_���o��=N�Q���mi}gt���[�A0�=�?���:l����Wd�6q"ɽ��t�~u�#J��j�u���t�Kml�|d�E��GF�6NP��M�<���//���Q��?J=�������A���>���gw��XiwZ��tkM"�.$�Ԯ5+H���Ӌ�5��#������W#��o��pZ��j�l�_G�r�{l�u��<$Ī�qn�S9Y�?��3�_�#��d~�{��|��[�����z�j�\�=J�Dc�t��ub<���!�����������9�Z�G^��l��b��R��ݤx�cYd�Q�����*���7�-��y�ҏ/���Q�?����_x}m�ϵ��?���'T��N�bGƦ��4�0��h�ga<$*刚,�&h6���y&���=�Q6�yn�`�I���D$,m����$��']�R+�|��G�G���(Tv|������Rj���o��%�~%�=�/-��Gƾ�����
��Ʊe��{����J��az�2���)��Z^]Y�Z\�s��14��-��t�����H��$���`E`y�ҏ/���V�\���M}�.��	Tr��"�I�O�����z�ۯ�'̿s�z��:���Վ⼳�d~�y�ұ���O??�[���_���]޿�_��|_�]���|�y	:�|�/�4�7m��J�?/���Q��?J=��������[���_����rnٿ��g?�����G������{���'E�w�\ї��!���S�Ƨa�V��<l�a}.�M6��Kl���M�$������_�#���e��e�%�⣊�M�����;ϖ��T��%�G��6�|N[�eԧ�zy��2ҬgC��Ĩʛ�9�k��V�Z�8�յ�
�eoٷV��>�B�2t��/��N��&�$2C��
x�/�v�O�
Ƴ�_�Ϧܬe%�+��"l�_��?�}4-A��&�˧^�i�.���g~t��X��Ws�����_�#��߈��3�yzt����8���ʆ����V��T��Zq�/�{���S)�.e�`㈌��^��V�N�=�l�=����Ϛ��l�����_����.���W��~E�E�%�.��
nm*K(uI���mm
���è�Gv$�E����?�	s��\Y�~c�L�`g��Z���?J<��G�_���6�����e\uw+7,Exӄ�d�%:qI.�wm���e�X��e�rY^Y��p��qP��GJ2�e)�έI�R�������W �FS�?��k����l|q�{k��kR���_WW�t�[��}f����۬�ۢ[Kw�ŔY/$fu���c^_�#��d~��a9p؊u�U}�o���n-'z�9)'��<<W��<V�"�|U(��x�%hb0��Ft��l=zt�Q��*ua��E3�d���$xg^u\2��`�a�O�~g��;g�X�to�0G��T�Ft}K���>��8�C�c8��e���_�#�ig.5HPJ���[E���Y}ƿX��/���?��	;�{�~�Z��w�k�_�,�Y�/�7���W:�m�\��f��I�8��������t�I��-*�l�N��t�H��Xi��ZZ@�PD��Ó��Y��?J<��G�\��?�MaR��}^�������=��Sqj1�R������7'�ȸ׋|@˲�Tx���9��=J<��/O0����xTX|��5>J��+�J���o:�bC���?�=����_�/�?Ƽ��d~�y�Ҽ�`������W��/����7��z�[�^+ �� ��N���h�+��u���_��ǽyW���(����?��}�ϵ����@�����׍��ǫj
	b.��0y�?,㸩���G�G���+:�_h�Uyu��y�.�˿��2��qwtT���]���9㨱'h���XH�'82~�W���x�0�������|}Ԭbֵ��8�Ӿ�N��J�
�:_�,Ŗ����y�0��<��n��IZH�hF����d~�y�Ҍ.8iʧ����ySqJ��}�KKh˞a)�AQ�Rwңw�����^
�T����}-T�*t��#�p��nAf�H$'4��?n��F5��>���Wl ������s�1��_�#��d~��u���m-��y�}n_���o��?���6���O��Xx�M:}6�����໷�����qN.�$@�SZļm+
��k�?��
uF8���~�x$�ұ���G�G���+�am9Oڶ�{E����^o4�WЧ��I{(���;��~G����7�1�78��~&~���������]?C���7��MJ�	��X�;�#I�I�����XR(���x∾��_/���Q��?J���[���⣇�a1T��z΋�����t���R��9Fq|���V4�U�#,F����P��XyV��p�Խ����UHE���ZJ�,��sL��^���?�D�M����\xZэż��D�e� �L@�����]��#_�&�r������,�o-k�� �`��[XD�)݀�T��av�j��|��G�G���+��u�^l���j�I�̥JR�<~���?i������Å'I,ʢt��F����aF-V�]>K���z(�_�v��</���l�]J�ൎ1v�aa��QQB�s�s]b$��<M�GYS�GS��ۧ���ҏ/���W�.��|�]��6Z�W�Uo��kҷ�Z+kQ��ܻ�O]޿�_��5�v��{w�޼��d~�y�ҏ`�����o�r��k�����鴃�j��M��}�;�o������//���Q��?J=�������_3�r��k�����N�f����D���j�èƿw-���\�q���Ӟջ��?J<��G�X��{^[U�����ko���1�;ь��#_������χ|q�^�[�����k��,<9�]��R4q+�9�0X�S$̈́���B��A������O���P�'�?x�ƺ���/��^*���Ff_��h�u}1(V5�"������_�#��d~��
7�|��U9u���vI&���]S:�+�E(�GmR��k���~�L���k�(-"]'Q�w��[b6�ӒN8��7��SA�|@��N��夑��#���rz����R��ҏ/���WM��k�����;|�ܿ���ߗ�7�s�هV�6~Φ����?���tpm�>�n
�L!��0y�}�C6~6ѽ��4��#��'�[>_�#��d~��O��z�W����ɞ��J�6R��<o��<�����F9�S#�0T˻yR"��`.N'�_��5��u[�
���c�?x�@���i�kV�I$��s%�6Z���y0A�n��T���_�#�F�l6i�f�lDi��1J�N�;�NR��c/kK���L;��W�V�䕹er�ӫ�f�n#
*�s<,�7J������=���eK씩9�*����mF�k���=3X#�O��Q������̂	�sIJ`�0$h79e��	��}C�~���{;?�V���Qe�o.��żФ)l�6q4,���O�m�ly�ҏ/���W�8�2�3	��e҇�U������F�d�<T�ZU�����	���q,G��I�Nѧ*n���i.eZN
Q�&�/v��^l��}ӜwV���t�lx�J,
���8���1���]'���(���|�����}��}n_����������������I�4��
y���(����?���]|ϭ�}��
����׷�FH���޿�_��y���(����?�����ܿ���� ym�+j���mF�OF���w �:~$
Ѷ�%�݆2@�=��:נ��ҏ/���W��	8��%d�Ž��޿���1ˣ9s�7{r�[�{�9X��=Xsݳ�g��_���$����^����G�G���+'���u��u�J�m���a?�?��^�������[�_�#��d~���.��^^_�������������a?�?��^�<��G�G���(�Ի/�yyW_3����Z��'��������}��s�d~�y�ҏ�K��ח��u�>����������a?�?��^�<��G�G���(�Ի/�yyW_3����Z��'��������}��s�d~�y�ҏ�K��ח��u�>����������a?�?��^�<��G�G���(�Ի/�yyW_3����Z��'��������}��s�d~�y�ҏ�K��ח��u�>����������a?�?��^�<��G�G���(�Ի/�yyW_3����Z��'��������}��s�d~�y�ҏ�K��ח��u�>����������a?�?��^�<��G�G���(�Ի/�yyW_3����Z��'��������}��s�d~�y�ҏ�K��ח��u�>����������a?�?��^�<��G�G���(�Ի/�yyW_3����Z��'��������}��s�d~�y�ҏ�K��ח��u�>����������aoS�}��/���Q��?J>�.��^^_���}_���/�[䥃g�?�q��c�Y�#��$����u�*ϗ��(���K���ۮ�}��~�A/�]�������c-�l��z���n����;��\����(���c)9u_տϯsx{��S����"�=\
�c'#�}MiF���c�
�/���P"?NG�G��خwI7~��k��Tq.?��t�_����N���c�iw/���y �>��>�#�H��~}?/�G�����m�[V_��������o��q$����u�R8���?��*e��9�[�J׎�zq��J�������۩��Vnv�N�{$�+��j�A��e��"�z�ՔQ�v��>EKv�oCXA|���(�����OlU����s�9�Go�/����U�����ݼ����m�Z�0Z߷_=4�?�Q�?��{���I��X���� ��ӏ�=i}O�'�n�ᚗ�^f��QE NǏ��t����w��Na��9������<P�s�O�ЎG�q֙Rzw�	���HFy�����;�~_w`+2����?���&"��ӟ�ǹ��*�0�98�b�螗���UN�=���o�����I�#?\~�܏���Lg�ς?�=��N�1�ۯ~\���?�����V��G���2pO���[�_�A��c�?�?Q�N
4�������U��8#�~�޼�����6g���괿���t3t�]W�9Ka�<�.O�)y��@���x�U��y�<{������qO�o{^���'�y/�ϯ��/���Q��?J�����F�B���O�w�{������)y�ҏ/���Uݣ���
6���(�_������خ�֞~�w�K�d~�y�Ү��/�Q����G:�o�����v����^_�#��d~�wh�!����
9��~>��>� �+�������R���_�#�G��m�/�Qο�����y�]��<�~�2����(���]�?�_�h�!Žu�ߏ����=��i��y����G�G���*��B��G��s��}?�}�A�Wo�O?_�̥��?J<��G�Wv���(�?�_�7����b�Zy���e//���Q��?J�����F�B���O�w�{������)y�ҏ/���Uݣ���
6���(�_������خ�֞~�w�K�d~�y�Ү��/�Q����G:�o�����v����^_�#��d~�wh�!����
9��~>��>� �+�������R���_�#�G��m�/�Qο�����y�]��<�~�2����(���]�?�_�h�!Žu�ߏ����=��i��y����G�G���*��B��G��s��}?�}�A�Wo�O?_�̥��?J<��G�Wv���(�?�_�7����b�Zy���e//���Q��?J�����F�B���O�w�{������)y�ҏ/���Uݣ���
6���(�_������خ�֞~�w�K�d~�y�Ү��/�Q����G:�o�����v����^_�#��d~�wh�!����
9��~>��>� �+�������R���_�#�G��m�/�Qο�����y�]��<�~�2����(���]�?�_�h�!Žu�ߏ����=��i��y����G�G���*��B��G��s��}?�}�A�Wo�O?_�̥��?J<��G�Wv���(�?�_�7����b�Zy���e//���Q��?J�����F�B���O�w�{������)y�ҏ/���Uݣ���
6���(�_������خ�֞~�w�K�d~�y�Ү��/�Q����G:�o�����v����^_�#��d~�wh�!����
9��~>��>� �+�������R���_�#�G��m�/�Qο�����y�]��<�~�2����(���]�?�_�h�!Žu�ߏ����=��i��y����G�G���*��B��G��s��}?�}�A�Wo�O?_�̥��?J<��G�Wv���(�?�_�7����b�Zy���e//���Q��?J�����F�B���O�w�{������)y�ҏ/���Uݣ���
6���(�_������خ�֞~�w�K�d~�y�Ү��/�Q����G:�o�����v����^_�#��d~�wh�!����
9��~>��>� �+�������R���_�#�G��m�/�Qο�����y�]��<�~�2����(���]�?�_�h�!Žu�ߏ����=��i��y����G�G���*��B��G��s��}?�}�A�Wo�O?_�̥��?J<��G�Wv���(�?�_�7����b�Zy���e//���Q��?J�����F�B���O�w�{������)y�ҏ/���Uݣ���
6���(�_������خ�֞~�w�K�d~�y�Ү��/�Q����G:�o�����v����^_�#��d~�wh�!����
9��~>��>� �+�������R���_�#�G��m�/�Qο�����y�]��<�~�2����(���]�?�_�h�!Žu�ߏ����=��i��y����G�G���*��B��G��s��}?�}�A�Wo�O?_�̥��?J<��G�Wv���(�?�_�7����b�Zy���e//���Q��?J�����F�B���O�w�{������)y�ҏ/���Uݣ���
6���(�_������خ�֞~�w�K�d~�y�Ү��/�Q����G:�o�����v����^_�#��d~�wh�!����
9��~>��>� �+�������R���_�#�G��m�/�Qο�����y�]��<�~�2����(���]�?�_�h�!Žu�ߏ����=��i��y����G�G���*��B��G��s��}?�}�A�Wo�O?_�̥��?J<��G�Wv���(�?�_�7����b�Zy���e//���Q��?J�����F�B���O�w�{������)y�ҏ/���Uݣ���
6���(�_������خ�֞~�w�K�d~�y�Ү��/�Q����G:�o�����v����^_�#��d~�wh�!����
9��~>��>� �+�������R���_�#�G��m�/�Qο�����y�]��<�~�2����(���]�?�_�h�!Žu�ߏ����=��i��y����G�N��X�E[�?�_�yc������>����$��|�^�~:��������;�'L��>����ӹ�g��L����(Q�����<z�2���)R}-���
�>�/N2x�?�J�������U��x��O�˧�8&}�c�o^�y�+m�;��[2��W�[B5S��q���N?�q�J�3�ǧ�p8'=8��~y�(v�?��Q~�[��z���/�ѥ���F?���v�K�����
g���{��O��?_`�3�t���7�w5Z+���A��,�jC����~���x�{�����@��t��)%Q@Fr�#���IG^
G� eOU��?���G�	��G4*r�=?�_������h ~�����~������S���G�_�g��&��Ӹ�=F
iP<����=*lz�����#��H��?>�J�k����~[���-�����Zn���X����p?�zB���?��}�[y�~?���*�oM7܀�����қ��?J��q����
��g��;�t��e/���Q��?J��q������R����9<���_q_�d~�y�Ҭc�~��F=��_�~?��r���y/����?J<��G�V1�?_��
/��O9}��<��W���_�#����Q�q����_���'����K�+��ҏ/���U�{��(Ǹ�‹�/�Ó�_�%����G�G���*�=��c�~��E���a��/������_�#��d~�c�
1�?_�K�0����}�/���Q��?J��q������Q%���ry����⿗��(���XǸ�Œ{��(����9<���_q_�d~�y�Ҭc�~��F=��_�~?��r���y/����?J<��G�V1�?_��
/��O9}��<��W���_�#����Q�q����_���'����K�+��ҏ/���U�{��(Ǹ�‹�/�Ó�_�%����G�G���*�=��c�~��E���a��/������_�#��d~�c�
1�?_�K�0����}�/���Q��?J��q������Q%���ry����⿗��(���XǸ�Œ{��(����9<���_q_�d~�y�Ҭc�~��F=��_�~?��r���y/����?J<��G�V1�?_��
/��O9}��<��W���_�#����Q�q����_���'����K�+��ҏ/���U�{��(Ǹ�‹�/�Ó�_�%����G�G���*�=��c�~��E���a��/������_�#��d~�c�
1�?_�K�0����}�/���Q��?J��q������Q%���ry����⿗��(���XǸ�Œ{��(����9<���_q_�d~�y�Ҭc�~��F=��_�~?��r���y/����?J<��G�V1�?_��
/��O9}��<��W���_�#����Q�q����_���'����K�+��ҏ/���U�{��(Ǹ�‹�/�Ó�_�%����G�G���*�=��c�~��E���a��/������_�#��d~�c�
1�?_�K�0����}�/���Q��?J��q������Q%���ry����⿗��(���XǸ�Œ{��(����9<���_q_�d~�y�Ҭc�~��F=��_�~?��r���y/����?J<��G�V1�?_��
/��O9}��<��W���_�#����Q�q����_���'����K�+��ҏ/���U�{��(Ǹ�‹�/�Ó�_�%����G�G���*�=��c�~��E���a��/������_�#��d~�c�
1�?_�K�0����}�/���Q��?J��q������Q%���ry����⿗��(���XǸ�Œ{��(����9<���_q_�d~�y�Ҭc�~��F=��_�~?��r���y/����?J<��G�V1�?_��
/��O9}��<��W���_�#����Q�q����_���'����K�+��ҏ/���U�{��(Ǹ�‹�/�Ó�_�%����G�G���*�=��c�~��E���a��/������_�#��d~�c�
1�?_�K�0����}�/���Q��?J��q������Q%���ry����⿗��(���XǸ�Œ{��(����9<���_q_�d~�y�Ҭc�~��F=��_�~?��r���y/����?J<��G�V1�?_��
/��O9}��<��W���_�#����Q�q����_���'����K�+��ҏ/���U�{��(Ǹ�‹�/�Ó�_�%����G�G���*�=��c�~��E���a��/������_�#��d~�c�
1�?_�K�0����}�/���Q��?J��q������Q%���ry����⿗��(���XǸ�Œ{��(����9<���_q_�d~�y�Ҭc�~��F=��_�~?��r���y/����?J<��G�V1�?_��
/��O9}��<��W���_�#����Q�q����_���'����K�+��ҏ/���U�{��(Ǹ�‹�/�Ó�_�%����G�G���*�=��c�~��E���a��/������_�#����S��~��F=���i�K�_�?�r.��"������	�y��v���m��Y�D�ߚ��M��}>�r�?-^�!#���~.�:S�>���.i���g���������z�$�Z��{~=�:P:g������݀<}H���cu����h�����������r{�h�x��Q���ے�+���t��`�����'�W�>��T�`b�(_��:�
(��
(��
B�)h�l�$Q��
��(����N�qI����?��(��}?��p���*�EG�_�����k�o�*���#�k�o�*����&��J(<���&���k�o�*���#�k�o�*����&��J(<���&���k�o�*���#�k�o�*����&��J(<���&���k�o�*���#�k�o�*����&��J(<���&���k�o�*���#�k�o�*����&��J(<���&���k�o�*���#�k�o�*����&��J(<���&���k�o�*���#�k�o�*����&��J(<���&���k�o�*���#�k�o�*����&��J(<���&���k�o�*���#�k�o�*����&��J(<���&���k�o�*���#�k�o�*����&��J(<���&���k�o�*���#�k�o�*����&��J(<���&���k�o�*���#�k�o�*����&��J(<���&���k�o�*���#�k�o�*����&��J(<���&���k�o�*���#�k�o�*����&��J(<���&���k�o�*���#�k�o�*����&��J(<���&���k�o�*���#�k�o�*����&��J(<���&���k�o�*���#�k�o�*����&��J(<���&���k�o�*���#�k�o�*����&��J(<���&���k�o�*���#�k�o�*����&��J(<���&���k�o�*���#�k�o�*����&��J(<���&���k�o�*���#�k�o�*����&��J(<���&���k�o�*���#�k�o�*����&��J(<���&���k�o�*���#�k�o�*����&��J(<���&���k�o�*���#�k�o�*����&��J(<���&���k�o�*���#�k�o�*����&��J(<���&���k�o�*���#�k�o�*����&��J(<���&���k�o�*���#�k�o�*����&��J(<���&���k�o�*���#�k�o�*����&��J(<���&���k�o�*���#�k�o�*����&��J(<���&���k�o�*���#�k�o�*����&��J(<���&���k�o�*���#�k�o�*����&��J(<���&���k�o�*���#�k�o�*����&��J(�>�������W�jJ(<����y��?�:}��G��x�i=X�/�O����֧QEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQE��PK`x1\Oض=00assets/images/landing/01.pngnu�[����PNG


IHDR��t�1tEXtSoftwareAdobe ImageReadyq�e<#iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.6-c148 79.164036, 2019/08/13-01:06:57        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop 2020 Macintosh" xmpMM:InstanceID="xmp.iid:E83498210A1611EAB39BBCF49119F7BD" xmpMM:DocumentID="xmp.did:E83498220A1611EAB39BBCF49119F7BD"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:AA4BD6D409FA11EAB39BBCF49119F7BD" stRef:documentID="xmp.did:E83498200A1611EAB39BBCF49119F7BD"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>.�~l,�IDATx��[�,�y�V�ݔHQ'R��$$V�R8�|��A�\�s�G ���F|3�e<�=�h Z$E��H�#kz��]�ի��Y�VU����owuUu�:=�z�ٳg
�΁K���v2�.@��@�` �d �]����v2�.@��@�` �d �]p�%�Uc��"��Zs`j��`�0�0�С�2,b�����G+�n0��Z������C�~,��a!�2���(��o����۳-�@冢}`�M�ٌV�@�c@Z3�>��3d2X�q�>������n�z�M�:�ZL����Ğ�0�}�
%@ZG�Uם�'����
'=��VUpom/�Pd��u��Z�MF%:$쁩m���Ğ[�(?
��+,Pd���tj��N0?��X�p:��z+K���nMWd ն%ݪ�sVK�*��=0���H�+���e����+IH5o�7��M�g���؛�,�)j�5����QhW.B�@7荭���XW�Y������ʅحM�s���&��:
�AB��#M��Ɯ�b�̜�����ie��s�ibH�׆F�j�_i�mRBj�7���tǽ��4���^Ҟ`Z汆J�2�[��ެ��A�Dڤ�T���Z�t�Yf�chC���Z���v�	��z�@Sd��W�fփ6&!�5늦6��ؤ�/M�!
Z[������XvкD?�}��F�A�I�$j�%�fZ�gݧ�MO7ޡ��*��x����_��pp�)�FuU8
U�3M�A�@���Ik�c�_�*n���X3���V�t9�[�Z�
U�Bԃ�+!��^��J4��St��� kr&722[����n/9��6EڐXJۿE�c�z�N� d �j5��;�\���P~����N: Nw��,���������ؕX�����AcĠ)A�ٳg��K�$�l,�L�C4~�s\�M��1��ۏ�[�yrT�V�Z��2�����n�@4fЙ����&_ZJ��`#[�&z��o��)�\jӂ�D{6w*;Z��]��L���lmƶ҃v+�Q*��3@����~�
�b���ģQc�!sU5����/�Įgގ5�'��G]��ؗ4��7�y���Y�x4�:��5���)�z-ݶ��H�s��;��n^���:�� �#M$ݙI[�t�Oݧ蒎�q`��iL��|&�dG�A�AKS��"Mq�n&%�X�aZx�UO����`��,#�q�g�)��[�A�V�v!�9��Vj����o��/��D��Dp�{1N+#NϬ�T}kib�r����@S�S�;V��Tt�����]��B*$��r`?�`=���t[q��WF�SĈ-Aڲ4�P��X�a*:XU�O��E>`�w	�[��m���W�=��Z����1�A�sڬ�6�*m_.���'��3��4�a�z�C�ne�41�*F��ߧ�M=��"%h�2�4 �ʓ��ƥ�OJ�͍ 2iy�`Ld@�1�JmI=�\�6h'J�e ����	�4��oڲH���}��ڍP0��Ug��z���$�f��A
���ʖd�ٜ���&P�de�;�@{���V&6?�\fr[1h�nA;���Ѐ&��R�]�jFXuf�f���j.��Q����iu�[:	[ވ�w"�G���"J���n��m�)܂�mAj�p��	���)P��*Щ
ziY��-QdJ��ݪ�zPkϠ�nAˌۗ�V�V+^f��ʫ\�A���(�@3�l�Tm��)#Nw�>�]�:l'��,	��ꬡ
��x�̀1����8g�9)0K��s�ZX�	c�T	ZWt�^d��5�VP�'�Cd�P��.��e���1KGbc�7fu�A]-�D	B��r*'����?fwp�!X�Z7KЉ���H�v*1hb���(A���&�6����f��}��f7k�PU����0`'4jF\��
9kt�����bj���M�4��ک��`�N@�s5�̬w�f�=� X�3uv֜�P�8e���4�-h��IŠ��@�j@�}�F��-M�)Vn��p�����4N@7����Qab�b��T���ʮW����jV��Ω�T�G��/R���S��3��RgX	m�IU��[o����'�y��)M��l:��D[O���	/{~D�NʎJ�QҌi�0b�1^=w�Kxۊ�=[i �A�bs*A�@
�����8�4)�t[��ɲ���5S8Z����	4�&�}5ɥ��
�O_)��J�~�܂V�������Uv��(0��9�����#�jh�%':�����o���=�#Ɣ	�{�ŗ��٠��e�V��Jc[�/z�������1WK�{џw�"�i��a�a!�9�dl��"	�H�k�I�	=��d��:�,ӧ;F�f���ƋD$�2��T�_��9���nAUbF�Q(��w+/�Zd�)��k@M����"n���.�Ɨ��`V�Vl��ZC��`;��@+�B"5���4h�vd�94��N@7���O��#S
�ϛ11c*�n�.xD]�
$��3�jE��zP+1��[�-� d�WsZ
h�P�7J����#}���»S�K�n��Ŷmfш���^�6Y���V�\�E	R�b��d���[�A#'����>)�~����f�.%�@�d��5Z�������0,�1G�Y1��[P�D �"�����@�׀$Y��7�ݷ�ΫX�Iu����c�Zb@���`~K��8Ғ�e�/yk1��L-E��1�N%(s!&р�e��̨˕i��V-t�)�����t�+�4N@D�@c��&��t�&���v�z�m)Sn��Ӄt��J�����yd���w�b��LS�Ӏ��
ԟR�'�5���Lz�
�e�A0'���P������'F`�YI���F����B���ٽ�['n����?��E�Ãov�UXyxџ�Ëh���G���.�].��:4��4X��WN�!
�Ȕ�p�W�͚�ѱ8L5�(9�R9�L���CP�v+N�33�>
�IE�X��9���A��O�e��� 5�PB�)p�I�?q���#s��#fy�|�[2ƊMY�K�
E��ځ�ea��V�T��.:�>k��[e�j�2PQR����F�֭����P;���_������	��c��H��Ra
e��
�Mg3B�Ѓf�
��BA �L��U�M�@�흍4��~@�4�J�X�)�~��OV�5q�!:&�h[�'r����a�D�ԃ���(A��'(����:1��-Sj6�H��
/I4��N����6�I?�z0*��C��Q4Gf�7�+4�*���@��8�$/'�%_�6��OФ�a듁䉔���K�e�hN'�|?����|䢩���l��+�W|y���v�GܼJ�Ȍ�Gb�4��7QEF��nAz�JPWB�"]�h_�MI,_�s���=$�w%cD�o���y�6JRm�>��G����u6�[���'��N�?��V�L����I�$d���%�8%�35�Z�Z��Ϸp����]�n��'i���]6�	��B�[�~�%��
4mi�d>�"? 3b���h�V�/�OR޽���F��}��`Ӑ�,�}�Vw��"4�ڐ�'(��]@˓E,٬�C����	��.�L���t�Y�T]!�F*�u�p/�]���HC�rPB�	�
_0�K�	Iȸ��rTq��z�F$�:���Qd���(�v.�ڢv�Ą�Ru�;��
�V��_%r��G��*A���oJ�e{i��VJk&�K@�/�Ӄ�af�>�_$���8+�t�`Д&ƈNV6Sqa�$E�1��6���x�J$ITPH�P	�(Wt����@��O�m�,Հ�ҀҞoc #��43��L��}<g��ӌ}:�; :â3���H�Lm�
͠mb�D��ظ�k,[,��
�-J'4,�dK8�s����]��R1H�*(�<(��\���$�%���l��V�
4�@���;^>�5q�D��@'��iḠ��Ք�sǴГ.�m�|�R@���&L�8J�	��%���Px�sP�}��&6e�X6UP*:l��P��Z���[�ԍJ	T�h:
(%�xŤ�tg.�~$���Ԙ�}�0(,����`b�iS�0(��J�%zE�$�q СzD"1H
��Bb�� �N�[�$�V�6%�.�4��ґk1���O��T��(�r�9��$��Rݧ�(�@���djJ����Co�=��T��$TiB�qZ�$���H(�m2%(��cre�Tk�nG]�(˷w��W�<RO�&P*P�	('����q�3U<��È�:o�w>:�,1uh�<Ƈ׃l�=*�f��4%�2����w$���*���
?�P�E�5N�9��v�%a�$
�2&���3�=�2��9(���?j,I���B���x�+�_^L�4R
g�G�	=����EH8��n�c�s����P(��|���@P�A��R�%k
U�����}�P��RϠl�X.�JY�&��G�	��e#�&�	����й��2r�m X�X�Y��? �v�Jh
��8'ܽc�2b�ˏ]ҫe��+s���p�󇹠�Od�4��V+�"�N�@LhF���H��m�.�Hޗ��'	����%Ϡ����~�>ڭ#�W
�� fr>A�wz���٦T�
�#�C_�d��T � 
,�Y�ꬶ���2�@�Q��я&z���e�>1���:x/z�cJ�ёQ8x�����M~�:N�T�P���~dB�B&����A��C�J�t,�^d�&��cLjEԟ��jʔ��l�O)-8D� Yh�l����qAa��kr��+��`�@0i&������������l��7�d���Z�d��Uc4@s����;���$7�䒐��9�t�����l4F,RD�I�X�v�(4�0qZǘ4(l}2PYV�X��P��(���E�� uVG���c-���kRv8HH?Y�g�~Z�1�!�����!��{�v��`)0�lm(nmE�5-��t��QH������׊�e��H��z%(^?~��Q�.�/Y�(�2��B|iZ��5���𬢽�{���bw~��I?��h(���.��-�0���#Y{'a.���I[,����}ڳ�>8�7P�_A'}DnAM��Q�KrEg���ee�t��ص�y� v˛ǂ�5��Q`	6&9Y�����4�V6����;v�f=<[{Pp�,Ǔ�O��Eݟ~'	�hC�V�2�D���s�PL:ͯ����0:j��y�.���^�b�m ;y�#���ע�xݙ��*�.:(;[�K��(��(3tI8X
(S,�2N@NZ�����O�u�ɪ?*#*o�
:E�2�/��C�Lnl�[%��!13*ese%!�n���A�sP(mP�(�0�7x�nA^� �_�߸�Ë�a�{:^Y����K]�چ��c�Je '�Q���PU������?��A
�~"�Pz`J��*���.���?r�En�ą��9v��96]��`�X�v�3(Œ�$�-�"H��&

��(҃�#��y7CV��H�d�l�&�3x���'��G��x�?����'v7͈�Y�F��HBP����ui_��R�L� ��sJ�A��AQx��1f�&��-�D	
�1�P��I�d(~�H(;��bg/��"%ٲ�@
5 _��'
�%3e�O���>���@��q�I�9�MYѧ�'�`b݃4@0��[`���?1��7�"�B)��vJ��E�C��x�ڤ[P��(A�-<�'(3$t��_$U)w��A��5�j\��;U��4�hSs[x4�gJw�A�X��E^� ;��Q���A�sp
�_;�ÿݹ�ɴ���%�$x6�ut��`����p0��ם$��"ZO��{����g�^�׃��NE:k��2�3��[���c}>N()�y��<�C[ؗ�R��Ce�tѩ[|6�/���˷ݢ��hl8�*vS>X,�$�4�`� 
,(�&<���rþb�:�X#�w+���V�A��5��:Qaf��*�≄z����A� �P�X�-(ZA��E�U��U:M������P�0� P$��D�9��t�l�W\�Q*.9C�|�v���c
_� �M�)5X�,.,g����a���e#łab�cN>�EEe2����Ŗ��H��k�'��⿌*qS�)���e4 �S�B�T2�K�s���\�W^N�W0��'� g�ٟ�׸M|�&o2��U#	���O��0v��o����)ԀB�P0^l �#�bab�"�Y�v8�٥����b����9R,f_�~C�-6n�2�ϋ�;2l��vo�)��{ɟ�2AAN�z
(�	�v�����b���D�ES�Gz�����|X�f�6pL��k+m���U�����nAV����>*�e�F'��TU�hO������=(��bTZ�i@C��^Rn�W>PH�8�3�N@�*`9(��Lj�h"ϗ��!��D"��#��P���A^Ė�:-�xl�61QF��!�R��y���z�,/�R�
3=���8%2����d��S��o�5 a>�`69�Ӏb��bi��]�����_~�vm��Jz�a_�q��ס���G4m�0֧ڻ�>�aLN�i@N�ք$d�%b��!=��.+�dN�c	��قL$o���l�y�
ٵ��B��1qt�a�����Rn�q�I]E�
�J_ĸ+�/	�9��&�}Z���œ��`'��tLy/���Nq����w#��D��`�y�����bŽ�e��$p�ZrG�3(&9���Yق��!HS��Y2^�zO��J $�2�E��	�[�H_�턃9�K��S6p�j@�@0?����i��P:�P��'�����e-����
�LK�@�0�*��KB^GP
:Œ�t�A11��t��N	R�1�E�h�v�qN�tƩf��&l�CP��D�����Ȼ"�'��
�@u�K�+�������k@�����A/�1��>e:��.�ON��٥�����r���	hj��o2ֈ� m�]g�4T�ҒP�Eh��U�{a(&�A�RbA��p
g'@�.%v54��v��F�����qZ~հ�*�}dzoA�̒VN���2o:U�M�*�Nw�D7�s���]�D�����dw��PHT����w4v_r^G���~��[��Yz�N�HB�\�����i)	����/w���8bP�-����k�_��8Aa�<A��d.HyeƄ\F�2���ю(��kC~�)Y�d��R#բ��SL*ր�;�9O
�������v�������%j�f̑{J?�T����{�J��63����5c�Q�Ta(V�Y�҆����bfc�3�=�5Q�nA���q%�|�~��kt��R��+,W�|� Gr�[(����Gۑ�F��w��@��Ň�r�K�
��%�B5 �(���P"۴�t��T"��I�c�6�o�P-�=�\9㍯��W7����J}�Ԇ*,�X�FX��BP(Ll�����ĸ�}./��� �e����� �f*��5�h�а^|�~�R��Y��FGʿ�t�ėJ?:��G��r�����a��`v �E_>�a��>�X0�G�%u�Hݧ��9����c�+�T��o�WQ��?���� ?�E�uh�*d����B��rbP�-( ��z��K�3F���X!�$,�3l'�ą�F�q|��Y1Y��+D8ZH����V~%<I2 ;,�k�$}�H�����/��t����E��[�Tj?�t���ia(�
UHB�g���AI1(#fg�_�b����*h(3E+�PT	R��aJ�(A����
�~���Lx�hl�[y���=�)�5�7^��	5�P�;;_O@r�R;,��z�W[�l�A�)���"���túOP���`2�`���;�R��?D �B��&c	G�Z?���b�P���_S,\\��B����E�SG;����`-�x��p��.�G����/��(D-K��������+�-V��=�Xi�2
H���'rJ�{N@��u/�:J�1g�`=���I�/_��t��}��7�Q�$��h
�P7�RL��H���{��U�)^�"t��A�^N�9y��Z�Fs�cJ��(A�3�ʎY�Li�h[��;e��v٠��ݍ%���
�{c�p05L	tV4��`��H*��oȶtv�S& qR�(0�z7�e��P~6N;�&�>�<�R��f.��I#�YY�9� hm�V��z~
U�L/���m:Y�Z�ԅ��
��a�V�1��ig/'�6��z�2ۚ��kG�8>A�ݟiXnSC���OT$����HG2M�B��ʜ�1�C_���q�A_^�B]
�)
�Nt�9�9x1̻�{�B���\c��U�{�'xv=��ד�d<��	���Ƙͽ'W�z[Fw�P�ڍE
k��b-M��R	Ϡ>a��-hPD,�*H
���O��أ�AP�e�:�G��9u�}C'T<U�5�QhAa?/�e�H���܍��E4�hN�`B�\2������]��F*"M�bvҟA�W�꼟.�8�.T@�վ�7��L �>��čV���w���<u�1���m���u哩���l� �|� c���k�h���S1U�U0N0mE�m��嵴�$����`�q)�í�9�cP.�#*
:� 
���I��]�ϕ��J�@��O@�_�S�Շ=��Х`�|ah�lDT���XnƓ��g�1��h��1�F�*�)W�\�*\8�1N/?,X5��ʤy)�iX�dJӝ[�J��i�+���8�xՇ���&$���a,�D:���nx�(��/0��S��8�t�Vn�m��̧卆�����њ�1hi�Vn�I��Nt	3a㭗i��g��b�k�c�Bbn� �ʼն�{)A�-;�i�W��M}��]��

S%1bi#�l��E�L�sm%3E��
��L��v�Dr��?f8�
��O�`(�E�-�NȦ
�}���i7OPxo'\ȸ��t04�����\]�'#�l[v���N=o7�.@�y�v�0���aA.'[�5Y�1~�w�|�-X8�2C� �L�0Pƒc�z�H�j��.sH:�����v/m�q��q*
X�5]$�1b�Y�6�t�Z�Er�J��$r3F+G	rc�T�^���:�xe�T�Dx��"� .���9и� ��E��Z��\�dlj�/C��h���d\%�>%O	����׭4m;}���BA`]#���'[��O��w�bߪ�w����jjiW �9[W�8Ü>Y1(�d�����ю�P�z� G	��r͢颍]�z��ɹQA�� [X�9]e
_��#Ŵ)$���r�Gx��U�َ��5�Q��d�XH�p� �@C%�n�~� (�,y�@J1yj(�e�fP�ܤ]c��G ��	2�<A�2)K�ܳ�\���
H��6�l\ꜾTmD�*�؊9�ý$wr}r
��L���9z�ÔrBÜ3�蕠T���,1ٸ��� mH�[���v��+������hN�Af��M�Q�\)���δ�w=�Z?^Ǫ�[oO!��BzX�T��Y�
���C�~8{��2� r��nT6F��c���(AW1�s�5�~�t�����SE�	
����C�t�F5k��l�L��9��˚����`���J� 1t�q݂����"I�3��Î��څîR�UB~X5Ly����@&X%~XI�:K�&� ��N��fn�sY��l#�
�7zk��b��"��!C���^�9�ߕ_8,6�)*�*�W��av��r��.��i��@��
�i���ݓ��-���$����0�q^��{�=�*h��(f��)��
��.�[��dʀ�eD�S0��1
����@����F�NG�
��˟8�.���*�+;a�U���[�"b��6Q��P	R�
wiW
SC�77�Q^
����E�L��EU���7ejI����|L�։w�+�.����$2�3K@�i�)ۑ�褋�׸0��P3p�l@�z�k��a�&�I�rR�%7�
e��Nf�A��Gob�ӧUv����x��8�"
��R%�:�W�AJ�t�|E��
t��)��A1!"�U�Tʂd���nb� Ir�A�܃`�x*�#fe�RYI����J��Ɨ�	�A�$A*T5�����*�A�-�Bqc��%�R��6ը(��'O���{9�����손�3��nR]��X��/�M���k@�t�v��o�[Z�����~*��P�U`�@��߆֑b�/���&��ћ��2�A�q��?��mzݧ�ylz��P�X��|T	:�׋A!%HuJ������y����1:$lY�@D"((j�P�Bqc
[j��CT�|�v�z�"����3�cČ]s�
�(AJ�}�����E���C��%(�7��"���w��6��Dž��D�2�r�nv�R�%��;u�I
��N�lW�7��FK� it�0͐ėi�v����b_1h����@�`�!h�'r�w�?Z k	q���l�	o��e*��_L��m�/�����yhv_B�UfX��D	Xߗ�NC�E�q��{��)�Y2� 紓!h�6�z�DLH���̨6�L�
/�4ר$d�Gp���O�CÂ�V}��s� =Ѓ�y���.�aj�.���ݪa��i��Y�&�����	�"*O��,+�J^]����J�b��>��ֶ�KC������Ug=Ȩ>ٳ��kI�R�/�����S<~x��t
�ܮ��`��P���32�,��vRD��$$�Ib8��֋p�A� s�o��B�T,]�P�u%�\�^D��󲙀uZ
�6:�B��n�8�&R̿�V�7a����gJ�-�0'yb>��%�����>5��M��tї�05�f��\sE�>4�*c�������3��B��Kԏa�r�o�Fْ����$�큂a��RH�y��Sb{XK~ ��ˇ
���颍�
t9d�u��#�gv�hv�x�qaJ��‚�Q��	IA D�4��
�œ�o�����*z�"��_��
�,9�[�0@L�kɻ>A��0�l{�p�v�Ec��E�:�X�_ۃ)�EE+�Wf��TA��1Y^��{pot�^��D/�\݂L*U��~t��i�p�5o��a��ֆ}� �,����	�Ѹ0��rv��,vӂ��<��(�`��-�݂��O�	2�t$(�K;VZ��.Aa�C�9W�ր�baݿ�b��!� �!L֎��@V�6��K���~�X;@��G�5B�3�����aW%�*��
$)��g7�`9)Kr��:��xQ�r¥r�v��BA: ���Mc�li
�#My-�w.+�lc�nA�\?��"���Fk���:�9�$A�1���l� �x���������I$&��@	9,��E<�dX)�2><Ƥ���g(8`�\����W������Va��t���}�fk@zP��+Z�ĎcH�$����a�1��0ؕ]j�^[���-����"�H;������ u��>L��
�im��
3�g,��)f���5���= �(�$܂�ظ��RFw7o\�t�����q=�sk7Û�}:;]kc[�����?�r��S8l���n�p6�Aq����\�lM�\�l��0�/�Kʕ�g>��J�X\��+�!(O�+$���e��ڼ���ꒁ���gU6�IS�C��x�P!yuM�Yұt����K�S�~�
:�Aaʎ�J��&����9���>�9�:疼�1MΡ-��^�P& �^W�'v��j
i]��������@� �x�x������7�C�Ū��E���?-T�:���MN�`O%$���AK�ozY�kdn�pD���n��q9��/��B�E���չ�[?>�dW��c������<Nɰ��ԩ?�Qɡ�~:ׯ�b�H	!/n	���v���qe}���!��ѯd��O����U���*�(�m�ޟ��T�� �|�ϻ�4��'�vݶ�;֏r�U�D����,0��Q'n(/�PV�SgO2]���>�n`$�=�`�"���p���J�SE^٩��[B~�o3ȹ3��"�����J��Q�d��*ǟ��L����Ҁ�)*��A�}x��w�r��&[*�\a�{�^3�?(�����V���d�BQ/�XnA�'jP5L)�j�0�c�ʑą����A���z�X'�h=ZI��e‚��@�!ܮ�,Ѯ�v1�����	ҶO�٥�0�.�*]sE+7�O,4̯�;Y��Λ/�aG�������uqD�@�h-�L�@�D�����z;���X�W=�� ܫS�,�����$*�8-���0Iйj���[(�:�N�����=����^m�;�tbP����ӳ�6�3��ў����C/#�3H�9Y�t�+�W;_rn�:�c܋|m'�'?4�_	��]<n���@~�0eE}���>���:�sE�a�0�Xذr|���}8)�O��$
�	3�v#�Tn G��_yc�0��}C	����Tv���>�	�a]-eG"y��0IP���f�H9:��Y-w�d��y�$��
t�=�����}��ül.�R����~��7w��@f���I&
�+�^)����2�
�/U��I�BAJY:�)ɴ��,?,ꮝ��a�sz��o�_��ꅹC���:���� ���G�o �ki�+|	J�we��6�E�'�M�ۉ?מA� uM�U�j�8�89�G~հ�Ĕ�
tNm%��@���l����Hm�� ��I0U�8V6�O'�H����齁:��`�>o0�����.;ȫ��Ĕ���AV�WL[�Ņ
s�_؉���D�zaZ;�b―h�\3���8����"��C��V�lo��]l�����X�î��:�!�j�RQ��kᰳc{���‡�������
dC1(Y/���’C$=P�-H��\H�-7P#W(�Z�2C{a{���:^T�N	���
V
��<A�A~u��8!�
�J�07�W<>�ȩ�}Kg�;WtBp�f�TA[(�0綉�멃~@��@��|:+��6׬:}���d.I�L_	����鮮9�m��X��𪋠�ߵ���lr~q�� ���$�D����!�4��@�N߷��@	��[����@N~�O�UR��2
S�`c9
3�XAa}fK�I��1CC^_sK;��?�`��X�}���c�~@+d;2PE�h��!"�� }�]i�Ot�NJP>4��*��v�Kɰay�X�i@��
��D�j�Ȯ9�@"�{�/���&+�6.�.����0�%v���i(}ɰ��
G�w]�����zp8c��e�����{K�q�
�(�<��k�h�-H����LJΩ}����zy���v*
���V�&9�>A���ms��k'	�Ġ.]�:��\�:���=�=��u�|)�OB�"ڱխ�@���H7�dX\&���:�
��JeJ�*���n�MҴUŌ_->(������(Ǖ��Q���C�v*�Lj}�ؕK�uW�r��*�_]���'����'��*����GЎ���t�+�j+��`�h-���w	�	�zP��L�d���A%�+�w�ڏ|2^ni�z-�^�I��녩�C��*�J�7T;n֩�ei�v�P���B�a]�x}��5�}�����6��M4Q��.Z뉸0g: ]7�umb*A4E�+8b���Hn ��-�4���K�m�-�ko���l����:a%ȯ��U
����pNJѵ~���,qK3���+���C�hP��a���}�N�ML
�ʄ������3U�r
�uR)�尳v�̉-�8F� �:}�gs͠3����а�1p��E+�r�J=���3N\��d���
i@�\�n�앰d�~@�``V�z�4�v��xNh�0�+]8U���l����ag��N�v��Xձ,_[1�4#;.���|{�"ڷ���@���*hd���F >���\B���k5���Y�J��.���J�Sv]�5m��
��J�E��,���_��8>Dv��Oе�I�f���,�V�2��jIZN(1�!(���1f��('Ѳ-��u���ƻq@k;�ʲ�{-G%+�눆��'��p��>A�/J�v����hǷpk��a�����{K#��>m�K�U��'���J��A�i��0e�uYY����T-V��G��2�TA�?3e���0�P�	���#����1��:Ժ6J��rq֏?�Ɲ�r�
]��^?��#�g}>'��C�tX7�K�%��d"�@���VÓ��Ԍ
�
y'S�3n�5����E��%���yvT��`��^��v((lh�G���]�D�Ԁ�)����������WO�p�� I���P�eSAa:��'�#��~��w`�ֵ>�{�[���bJ_/LJ�
�A\�U3^���b�H"C���q�;?������8�H�����$z�Ja������s��%���d��%�.{���T��M=8�~K�(�R�>�%Z9v�+ˤU������kW(S�m�M����`�\d��[P�^������aj��\E,�T�e/7P�#������”u�:)�c�"��B�V�<�A��1��Tb��U
�^���>�3ù;.Aa'�\/���c�/v�����;
j �@�U��Ec����2�%Zy���s���7.^P� ��z��A�
3��e\��;��XY�;1��`K'.��44Ç���&Ytk�s	7�;y��nA�9�E���`�~<�+�rN=���5G�W�<�[D_��G��!���9Dž�bP_u�Od[֝�c���
��D�9�=0��Ja��q�а�8<�	
�\ё=,���6Jݠ]G������яh�lJ�Ӂ�.����b��+���vxË�E�9�[?��?�1�0���~@��08m�<[����a�+(����2	�uB�4�c�<q
Ɵ�dbc�=t�
��I�jdp����u�o[q�{*L�5��o�p���Dz8
8/�m3��U�G�:O���~��=����2O��^��
X>���s�M^}���р`2s�\sE����s���o�IA��}-;����g�l�T.�@�ɺ�5Ά��«���y���@!��1��϶ʷr�����h@7��}]Ib���Ğ��^������0��U��"Xr'����jG}��0��
X�ր^�3��q�+Z�p����U_R1����N�4Od}V��|�I�!���ս:����v$�L(���w���E�aT`6>:���:8@�<K?
��to�a_Eߕ̛,J!�N�yv��,1��E�$	R�f5`���@ʸ�T���П���M'��P���'�>F���0BIa��^Je#�F�1?�i`�����I`Q�~M��8��!����a��n�O)6�\��vkh��l=E_��b
/h��I6�O^���s���T
/3FG�
�fG�@�뮓��rA����L�3��74�8�1�,s�P�Z�ݯ��
&.�RvB$�Z��s���5V��]V�1m.�}�P2�h@�l���,Ѿ�:��$�d����9� %D,��mA�f髟�CZ�5�}��.�Hd�U�#�f��NZ�ɄS��V'	�i����KZ�,eWr�j���-[���n�huMV��0!�B�wY(D�;�)�4�\�w�({�#!�=��������b�,�xSL07��;P#T��g1h���������/谨1ˌK�#>PfkM����vLo,s@8Q�}�:-6�������4���6��������N��%�Q;ַ�z3�P:�p�q~�l�f�1"��E����Q������i�������z�@���P�R��������dI�����1�϶���2h�I8�߱'��e��y��}F��飊��e��Djlx����p�A���5.�u"��%�c��N���պ%Q��j_E�� Q�;?t�%;��?--��B��{�J9z����I�o�F���Ƌ<4 ���=z�2;f���a/J��R�ѻ��P�W�Iv�>��9E��M��'T`>,&m
��2�������MqJQ4�-sRz=L��:�����K���_|�E�LFs0Qt�A�+ڸy�ehv��1Eҁ���QѰ�d� ������#hЌ/���_���ܤ�A�9�f=Ek��o'��:��;�+���_�}�!|�R���F؆עw��5gC��`�.��7��RL/��K�%�}$۷�|��Mh&f�Q��`һtvx���
}�X�
X�7(է2q?���(�<�cn"�2-��N��l�׬��}ig��0م�Z�(:����5hm�g���&m��g*��T3�2A�6�h�dAaE����L6@g�:�6ݑ���n��.�(�]���.u�y�s�>�qQm�K1�M��:��s������Zr5LIŲe��%(�\#f4aX�Y;;O��4q���Ǻ<Cl�SllM��n�a7�t�F�s'޶��!�\G�ns�G�#���ղ#��虓GgY��tX)��1h	�H؛�;���;��Ƀ�#��i2�s���c��':W�=1&�t!���cT�X�N(��@�#�(zx����6FT��W��*1�y��0� ���G����hF�\g�n�b"S$�އ��	2'U'�����$��M��R_8��9H��j�w�]Z���/0�Ct�<�tT&����L����4@�0b&	+ݞ��3rp�Ÿ�����X��|O���3�{�����9��W~E&<$��RY�����'��ae��p�ߝe(9%{%*�	ٍ�/����n6(����kR�+�<J�\��X9�^S�Ŭ4�m����nzI�HZணs�˜�R#d_+>eǛ��m�`�Zpc\�ԼK�b?#F��՝��@dv:�Fߏ)1`:S��z��.9;c9J�����)x�`n�����{�k��.��Y�I��c�6����sf�o��
sr�)6�Α`����c���[1&1����bv]X�:`Q0�T>~���Gz-��K����i�,7�rٗ��B���s�h+�,8�kv�G���r�
Z6��٬k�5Vwkk�f��M�}ۊ��܎�~F$������y� �YA�\��⫒��,�F�%	��^},��q�+�կrZ��p.ݴ$ش��}�i�\�6YY�T�G^:�!�U�{�*����s��>�*�'?�^��%���<�deM�n�mn�K|R'2va@b�.�%���E֘��S8�@v�pck��a�)�q�B�re܋[�~6�S?֦t����'���L��Vo 3Y�QĈ�j������Iܸ�D�Ф��}��m���:�pI}t�JaFZ��t�Z���J�.Τ*�%[5�v	�p{��]��*�-�p����J=��IQ������zT����T.X�4qW��8��2��qa-��U�k���H*.N�ݢ�-�L�ʺ�����ֽ�p��U
SbS�+�Tp�Ξ8z�1�D�E�M}oW�
4�5�RZ���M�[0y�Sg͚a�xM*�0�!f�w���Y�)\�v5�DB%���tG�r�=$��3e+>l�����uF���܃=�m��?�����C����/%Ì��w]���F~;'�>��yC���h�a��`�!�HM��s�:�c��/9�ow��3
�!E4L2����=m���>��Lu�*�E�6Q�G\v+'�����V}-j�I��`kcЭ1š��?�5){8��:4Y�,� $m.�̍�G������y-f�4�-�/lc̝4����)���⼈��	0�i����	������8C�
%��+�;�D���O�Sd�ޒ;=ws���E~hV���N:�6�F��)_�+�M�%"�J�&���{�N�N����Fm1��e��,�%w�u�y�����|L���?}���w$?!=ȌQ���&��*��e�����|$_'��z�0��m�[�j�~b�P
��ށ�O���7�nԣn\�h�C��Lj�f/2vL�Ž����2�$�����W������h���Z͏u�S�w�O����d�0s��K�-����h�o{^soc���[T�J�D�eKp�C�7��M�)�u�����v�r��1�ԅM��m�0_��ڐn|��ek�̿�.ݢ�ྂŒ�iŹ}�d+=:6�z�^���
�}�yi�ǩnnԥ�)����8��iki3�?(M=�0���x��i��J][�۷�I䪂�/�e����&X�����P��2�E_��0p�Q���ݎ�F�SN,��V1UM��<C����p�N��^/Cvы�v�"�k ����Z��#H���NbAV�5_p�Lg�\^&����
�7�d}������ӑ�K=�2��ҷ��K��R�:�3��I�"�ij��54�u��D�X�����z�"E���S`��(T-8�1O���H��c]��^�U�vG߬!}��ʚ�����n�{>�2��ERXǐ�4�mF1�]e.�d&�!~V�~U�Xd'�<��Lfk�8�5gI�X�J�uZyT�8��v.XԘt&r�(�Cíf[?{�?�)L���sM
}�,�1���5)�%[2�H��B�]-��la3�J�dҴ|�e��%�;�#L�:+��M�:'�)jfd'������X�����T�jg�k��u�=��A,b���z=�,�Nي�*Gd�\;<�M�\�m��Ю�1aKD�x_3�@�YXX�MU=�@N*�P~ȕ�ⰜD�0�Kf���bѣ�iT��(8�$��^��nVW8�V���n��Bj�o�b>*-�s��qo�?��t́X�A�cbMl�#��4���ic�h3�3���Ջ&��^�J��s��+�j�I��@����[�M��[��t{�X�U�_F4��$!���S���x��\�������zK]�\ϋ�cN�;i>��u^�Ve6�!�{kgX�E��z����w����X��
��:�gx���}�/s��sI��Vm�ʉP�2�@{_Ol�<G*G��v�|z.���7�d ཟ����@0�%���l	�{|,�C6��k�ŋu�XwV��!���m'"����6N�A�/����[��es��U�/�Ǐ���#`� �n���y��@$�T���d��$cN��;���a�EEi���B͗`�b��$�_#�Œ�|�q[���mb3���%u��t���$���y��"zS���Iy��<�q�!�@�h�{�/����V͜��P�h��.5|^��V=�^�&j�����=��[a3=h�-N�R�t���W�7a�Jt��؋I��q/Vn{j���@,��=�Rڿ&B��`�Z��Ԗ�DC!)���l�Ll�wƐp���;:}�(;�]�\5ѷ�A
�2�`��c�z��ʵ�z"��`��i%C��"���kI�ϰ�.������	FN/M�='|B�X)�@p�E�_���г��Q��7��� fI�Iв�}�y3��X
�S��)kfN#��;�z^�>�V}j|']�b,�`� ���)��%��8)��e�ib�����k���MV��<�{X6�XǨ'�R�4`' ���
��g���"�Ů+���t�L0��n�D����8���
$Ok��
mդ�|}�
%�
2�~�6�w���(n\�ʗ�(m�д&�4&�+@��X��%e�H��ž�v�	j.����-���J�	�(����ɷ��d9
V6�ȿ;Ŗ�P��FX~��E��<�P�Օ�n4�տ���L�UH�罱ǿ��[�R�#^,��<9Ya�M��2&�|m{]����e?m{�EU{�U�9�`�~�<K����iu��V�V��#]�$Q��6<��Z~�[$&O��]��0�c��K^#CV
2,�|��I�Ɯ����R}d���60J��؀�I,�'X$C��c��G'�����`�L�ΐ��VS���`ϣe�$�I�1q�ȳ��a�a���2�~����-�8�*X����-0�
�l�/<�:�<-?V|#שę����%_��s�q`� �����ַ9mP?*���}��Y�boh��q��X�l�n�zo��D�h��ZS���K��9�%_I�D0[�X�@p�z��VL����p�p�5�F�T�͞����0��d��v��Ќ�%���gR�-U�%���1���5�ܽ�EӲMh��U�[���_&�b
`� �'�I�I�J�£8��yקO�9l�����CH�{��A[��i���,��仭N�Y):���E�2�l�Ξ��ˎ�CH,DjX������=ݛ�.#��1��'�J�4����o�$�C�n2��ň�a�}2@�a�y���j�U�:�MŏM?�m��:$�Q�X~�+J�m{�"w����y4�UI�t�,j�bU�AC8��qE�bI��qOn v��a*Ѱ�=��kdG���TvѪkcT��g.	_z����a� ��#`�L�me���F�YdMka	��{3F���W%J�91�G�Ev��'#*�N�Sg���P2�lA<��?ag��4�MI\m}���.�U̧i�-�����6<�,�k3�L2lye,ܠb���{'W5=gg�b�<T.�<�Voͤ�-��1���<�����0A�Z�#3��c�ʝ��b�"����e[Z�-*��3�t ��4�y���М'\�=�"�|M4�XRl�a�i�E�ȓF��̦V�u�{_�g��y��{ʕN���p�y3Qu.�Igi��I�I/
�(��`��K��,���h��"�֠-����y�+��,o,�ǝ�����Zs�o�9�8ɉ:i�n+��5�Vl���	�eV�ϴ9D�3�؈��y�o�P���*�Ыy�S��2,N�h�ʧa��)t��Q��Z;JP�,����y|;����Gm���Tr��Y�0���2U�Ʋ�1�.s�ʅ���`V��6�@�*kR���
UG�Xu����iF��A��VuS����p�n"��T���7Y�.�_����C��zP9R���B*i��u������8��w��/�X�'T������	'.�sM| x���;��q���ϱ|���*� ���m��*I3�hɘ\7ǖ�QQ��+Zf���i���y��cW5=N�s$I�cѽ�l�:���q��U��̜��j�FT��I�E��C�qe�l�	�"�3����l$_�ի��f�>���M ��U����W�|���Y��I�*nhu��c�ט��4�|,)�
�W�+MY����Z��tT��T8��,�
b�0Aբ�Ƥ��&��ȡcQJ ���J�w���[M�#���*]�?��߃ʔ����p/x�b�z�
���N<�O8XI��|O���&p��(����V_aT�y+Ӆ�=�n.a3v4�biܤ�y��k�9�:�-�lӗ{�m���ǣ�t0'K������
����т*Rd�3��;
���Ѳ��Dl�$1Y��x0�0�ό��P(�,m2��l��Y��*6��STl��a76�M����i���+�t�3�?V�Z�_'�1s|�z��S��^e]��F>~�l�'�b;_{�z��R5'D4��[�+=�`C�l��3���m��6_)��|�	�H�<QJ@��`)��r�5&�}EOƶ��.qI".5b&�e�r���yK]/IZ�!
c�D�\BA��"-t�U��JM���W�/o1�'.T���U`��H6�|Bl
��No����w^��կ�$k�7��hφ��|��]'�ȥ#��:��b��)�%AKn�},Mj)��B�3\"?��_�t)In}�H#b�6X�<���	B��?!LW�W��M�_�]�'��&��;�Il/�AK ��Ƽ��A��!��ɔ6kc�����n��)���P:�֞�H�e�\<u�M%E�[MĒ�"�V�����b���Y��\_�<��T^���[��/�k
�g��G�;�:�lSa��v�����w�ū0T��H�V�$��?+2���Q	�_��M�b/j�BW�F���Tyb���,��}�4+�	�������h�ۺ���Z�A��И�!Tgn��0��_�w"�0��Y�Bg��am��d̐��0瑽����N�b�_h�z�<��Sڪ�G���.X�;���t�꥟�#�SN�i�_�7	�M�vU�y������T�r>��s�%�x�ۆ_�˗����~bo�.L��r��0"x��ˉm_T������g2��0>�+(ͣ�4Qd*v���_If��鼭����r�ݬ�Dk\	1E��V��0h?$<G�u�_��n�ݖ�0J�7Y_����U��DuJ�'�Z�K?��*ʂ�hKB�D���T��4v1�o*A\[��	{��|�#[E�V9�L%pìX?,g�Q�5�2�:�:��ͳ�=��Z|[��f�Vl9���˗��@۫KU�>4s�λg+?�Ґ��;~�@����ɽkxz��i2K>-
ɬk�KkH�\W1�S^6#I].X�>J�X�n�#��F�V�>��xP2�f�qs�I��A4|�{&���yfeݕ�����6���9�sZŜ��*�r�.���>(i�%J8K6��L'X�@p3Yd9g{À�`Q$I9[����ɏ�?��';�<H
6e�s;�}�'�̟V�4R�L�)O�0Owk�-���/���7uB�@�@�Yp�B�m�<R?�gV�9R�\�3���Ufީ�L��JO�i? XxwKW�-��	ƒ��9����lcr�R�(�����s���<����Z6��ږH����X�֬Ց]�����z�_B���nn��(.���~@�X~!�ؼOK;@��������\����I��y�U(�s�w�a�!��o̥�I�'I@�@�XUY�)�?��vi�0s�+<C��li*�]g�aɎ���:;	��rC�"7�OP�nK0�"RTo���L�¤�L1�_�
oe�!:��F5��p����L$T�y@���6�7S��Xi��|��;1��^��(�is�&��Qb��6]7��)��n	���7���q�:UE�n���e6�D��`��Dm��j$Q�]%�(U�O9�'Z���n��&��A�94���8����D����>�l�f�_+Q��Ʊ
� ��8*��<Q��#G�Z�:Y���bQ�Ez���Ox�L���3��U�F��b��v�$�
��uK����[i����^�Z]�x�^��X;��k�l�+����T�D�mu�
-��E�D�$Q���Wl�%4�P�d��@4�6��$I͒��d�n.U���&�S��5�BYO#KoYv�T'b��;W��C%��AM
+I��H\p�g�"A�Λ����H�8ϟ��*��۞3���8'�+�w�����x��i����l��69���G�"�d6/��.���D�
�A��T�]�^?���@�T�
+�i{��2�<���C��+�ˣ�"I4��Y���N�N&�*�9��:!1/��=*��Y���˪!���/HP�H� ��-sU��"��Y��"�$4����P$�!����^F�����VHQ���r���W�Ġ[������a�S�25I��)N^�s	�?`�͘�K�'f�Ť�K]�_ɗ��Fr�V�\�T�����̣�K-�V�<��$�Vv����� �GŸ������W������ʬ�"��p<l-���?�L�挑H�I�v%� 0 ��s^r9i:�_*b��<���кzb:^f������)`����ʦn2aż�$ё�"���xr9{���|aH⦗�<�pU+J�=�Y{b�%��ҮCu�\��JD�X�@p3�jc�j�Twi(+$<1�g:&��:B��Q�$Uq&�H	�>_��$�Q�j(�H���B�E��>Mj��:Q�s��]i�u��c>A��l��Fz6�y&n���Ƭڛ/^�l?�i`�s�=+9�G��?���%"_���'�HU�X:CaOBE'j�J+;�z��/>7�@2�r�n��]²�VWld��I��dn-JJ�ɡ�����ƃ5�T����(/9Tڤ�w��c�@���خl�l^
=�bl�+L��-�@��)v��
��Y=(�$/Y$�N���K$����
���w���פ�磘�=�`ռ���xK[w�RB:���z��y�c���Ҝ�%oƔТ��E���DE��d X:cm�W(�8��j� �����|z�J?��� �D6_���ٗY����N�]j��<��H@#����%�����U,8+v���f�r�F�99���%?W��+ƨ$E_�"��t*�t���@�-3��$/����-g��O��`�����ZRP�p\�l���o���̖��m���R]֋�ɾ2✃p,����e���ᐽh��;�5�������
�N&=F�+]1VtI���@�-���vb�D(�������c����>���jq�7�f��T$l-XvM���PR�W�C��X�:_�]�z�|�g�n�%��K�⧂�HVz��'���}�W��[����d `yW��h���iU�q\bq�,���ľL�Y!-�����/
c���*B�jkV8/f(fZw���bk´�uV��f�K��U\pY���ϒHF� ��@��.�6|n��������������#2�{�IU\�$�.i,!b�M�|ҙbe\Y��|�9�.X�T�8�[�������z���m��ۇ>�����l|�f���󢢻�h��v�t�GL��_vaZ���S'�Աt�}��,�7P,�u��tB�`��R����p8L��$rL�b�n,s�ݸh������[7y�ȿ��o&
U�p�@�L�t�ϟ?������e[���]~�~�-9��mxWz��5�n����f�������sM��˗/�.����IJS7� �z�ƁKB�8�Wg��i��l���~H/\�K�mgQd	
���`��Ea����`�=�HG8��&KJ�!(��v�ݾtR��D����9�������w�,��(�ju�
O#V%#Q�5��Xz�D�If�
h��s���<�v�7s'0��Z�8��q��/Za&2	�M2���
�@)�@0��v�K�[5�C� p��7Y"�G�%��`}�|���̗"�= ��
o�!^��`'�V9S&f��i,���f��c�S%B���v��u���L:}!g�h/5����$>�6��D�_��S�ĥ�<@C���Vtz�2p���;M�3�X*K�8Oje���y�� <	m�M�m��3s��W�/���Aac��(6��V�<�@��[a+�$b͐�`L��T�]��`W�tٹ�;[�Q��7vVze�l�x���(�lEO��k�c���n2������5�s"ӳ|��y脏��G��M$�9�h@�@���qɿ˟����i�w�ׁ]� ��t�9~��p�*Y��<h2�e���w������c�J>L��]�f[-O�/�V� 5�H���f��ғ�����>'aM�eG��E��4��/�����׽><���ѣ�N�Jgۜ6_V��`���@o"�i�|�y�>a��]��g�;E��f�������Їë ����~��ѣ����!��ы/��tk�w>�+G0?�@�b3
?Q�&Xɫ���5�'K�����?���_����N:>;���w��ŋ�w6������>|��r�j?K�҅ ���q?�=E��R�����wPI@�]��
���g����Ǐ��tww��ѣ/^<lv�*n����M�p��>z�Ft���)�B��@�q�Kᇆ�m~Yšt��~bAar�#[K^^��ٳg?~�8������'�׽�P��ӗ/_��e�Ҁ���� 0�nR�����~l:�t0�m`����~��/���_�=~��'?��k����>�կ~կ�^��?��?��7�9r�h'TN��C�޲�x���+�����;%H��ta]�ؘ�C[�!:[4d�C�l���M�i�����{�����/N��w��裏�ǣ��o��O>����a�?��?�W��*��״?�	�J���a{�EV'������;�q	`� p �@�7�x�G?�Q索N�ŧ�~ڻ�������/^�bͻ���`��Q||�X��_��ߕ{wd���;�����1
��`S4��Ӟpzv|}�?�'x��o���;�ؙz>�����w�z�W����_�gS��w���ɓ��M���	���ُ���,_��-�U?>�s>�un2l��<T�c�Y�.�	7YI����ַ��</^�x����8�/����?����Ǐ��
3��-;�ٿK�W�wB�{�Ԣ[�Z��62���	��`f?~��{��q��_}�Շ~�N%�~�_�ق��ӧO���o�]6�^������#������R�xǙ'��5�c`~�z�����/~��|�ɷ����?�����}������ӧM��u`�Jne��Ŕ@�9m�H��r%(�%�8�o P�Y������&�ɓ'��z�x<���?����{
��_��I7_�&v)��[F�W,Pc繄�:�md �k���9	`	<z��G?���}�%	�$��>��?��Ǐ7_�_O�\H��i��Jm���` �t���#���믿��ɓ��ϻ���|���$�D��U�Ň۹>U���+�
�,��j&!�^��g2���M��	f��w�}���w���o����Ӷ�l����_7:����:$�ej_-�L�3v~�7��& �̩h�>,����Q� ^U>��^�=,��?�����ɂ�Y�=t�,h����s~�j-��(���B�$����ev�G}��_�k�N���?>������A�m��^�~�����nc�
�,Ȃ-'�9�Y�*��u���W_}�駟ڱTg��p��/>���~x����@�CP��Ẵ�5{���r�����g�Kk����_����܄gϞ���?��y��|���{	�p8������X��b���X_�6����szj�=�/_�|���=K�`	��Z*�3;�v��|��׽����'?��w�ӯi���~��͜K��%�<~�X��"5Y�>��˗/�*(K6�2�4o�ݾB+I|���|�~��_}��g���ѣG��7�����Z'X<|�����>��jM�ԉ��e���Ǘ�gϞ�=I���/^�X8i��A��sL�}V�PM��Ӓ䜅bL�7�믿���{q�a��ɓ��z��7���?��?9�Z�K���7_y�y��Q�@d�ѣG�}㵇���
����˗/%�2��u�V������p[�?�U���|�ͧO��|�{�{�䉽t�裏��ꫩW�u)������o>?�����G'���`�@0�[I0�9[h7��㏿��^s����я~to/�<y��o�a/_�|���G�ѱ=����
�ߏ|��oy8^{�.ct�'(����y�`- �4�
T���̱��k������?����5�{��o����^{x�W7�����'	�
�ɪ������ٳ�/_Jҝtww�<���M@�%���k������*J�ꫯ~��|��x��ŷ���w�y'���o����ӣ�'�|��_��z�Z��g�����������Ė}.�������g[��<p�%�F��s� �����n��`�|���Oj�s�pfy��w�����˹��[V3$���/��.��AW�a�p)r�!�y�& ��4��'P�����;�0'�'��?z��7ޘmq�/�"�l������px����g�.�}Ю(X6l��E�m�$��`��k*���v���`ik����J:UU��!=�~��$!���
<+h�@0���![�[�ċ
� ���l;��3KE�qx��ŋϟ?x��Ē5_�7��<p���7L2�������,ѧ["����W:�����YAiN�s��9F����p�jK7?1K��^]������ȓǑ�	xA��y�sH7��(�9��
j�3ˆ���/旰�e�
�7,q��n_W�ڇ�
�0���S.�4��m��>�'@�
�\���m�9�Y
&�믿����>���~�����?��_��_���x|i�����W��w�����[o���?~���w�{+�跿��_|���}��_�������LJA�p���?�go����'�<���ݧ?��?~��7g+��p����n�&dE
�1��D��H%�%��w�~��?������o��������]��{�?�����o�럾��;?��Og;ۏ>���?����|��Ϟ=�N�9���ֶR�|�������W���'O��ٟ��N��P[6�g�_G�!������9��Orv~��3�U�U��՛�^t�7�㞿��շ�^߲�v�B
6=m{T��^[���|�)�.�Jz�ا��;�sz:�˽�
���n������x���w���)�/?�����o��/���>{^���F�:�x<>,����z��_��?��?�_��_|�{ߛ�l������������|��јǏ�k�<���/_�x��a`}�޻�ÿ��������?���i	�@���g�<�(�>~�{5�B!z�6�W�^�"�H���`W� EPvE�"���L%@HO.��{�n��r�\����+�s��;;����3�}f�������
��!*��'�j�p�MzXf�,�X�iS��S��0����K��\I���]�q���WߩQg�[�5���c8D7-1S�q���m��fm�5��_�Uj|]��Zy�	F�6�>c�m�S}���@U_�Z"0$�5�t�����s41c��t�עB�1�c֖Y�V�� A�!A�υ�RSR~���'N�$%I$�@���b�r�r8\3^���@�dF�Tw��m�1����ΓW������]����+��-�����V����	�عs���z�6��dоM�;d��6�J����@V�&�� A����@���c�d��T�dh�!<�0�����W۾,/��U*��
�
�Z�&�d�@$
���7 W*�Jeyy9�h4RG�o�S ;�bq���{~�}��Cq��w�/�lIKK���t�ܪT*R%�x� =|��d�P͒o�3#��$�B� G�s�&�%{���ǿ0�x�e˖�f�v4[��Z�x(ȝ2�{��@�� A���Œ��@Oq�ڵ�����[$	�3WG*�R�ѐ��u��ᑑ!!!�۴�?��6m��k��+�s�N�:u��颢�����/���@ ��x����5|��)S_�ӧ�}>y���>ۻg��!q6�'$$�s�.aaaQQQ}���իWtt�HT�9&9LMM=z�pNN�DR����_j�T*%	��ՌF1��}�������@�
�h �@�� A���む ��w�'�H9���Iyy�w�~��-9Y�"�ȸ"R��<��������ٳW��]Mt�TVJO�<q���#G��Ov� ÷��W���=��������>����?ߺ{�nv�a�Z��D]�u�����;t�ׯ�X,�>������t��3gΞ<zT����`
�ary�=�xꩱ�>���Z������A�2d '�0NW��|P���!��\�re�Ǐ����F�aH�է_�G}�s�.d�!�07��K;��y��a�Ba�6bG�����eov��ݚ�Ν=��ҥ��?��Wͩ��	
NLL���:uh����ZA~��˗w��}����t*�2 0p�Сs���jb�����!E9E^�2d �@.׀\�C�3��Aa/�a�v��~����J��h4�-�
�8ib��8�pQ(�����_m?{����T� ֪U�%K��}�ݖS�姟W|�avv�!N��0�ۿ��ٳz����ܒ�Ʌ6��p���ׯT'FOB��K^{�{�AAx��Ƞ��6jK��@�� A�Ԑe N���8���ۿ^�d	�6���P(���
2guQ���,�ıcIII��9�I~"�|0j�(�u�Xd2��?��d�C���Z��ؾ��Ç�[0�u��t���+W�:~\"��tv�������>���N��Aa�
42PÐ���_��婞��C3��5*(�6��+%P��C�ܚ��P�鞆�h*���0gl��S%���u
1*���kV�Z�h4�qU��|����^�65""�uW�)j�]w�u�]I���TC�D�T�s�P,�ڵ+�f�)�J�~��U�0�&c�3��G?��Ñ���RsEGG�3�{Ϟ%%�i���恝w����|��G�XA�f
�R�dk$����=fvP�x��0Z-�a�@
%���\}?fe N-��`�E��έ׆ܺ�Ȝ��f�TW)/F��L�5�j~o���5��2���L���5�e�@��8�}�^Xo�+Y�2��2���k۶m�V���d��V����^�={��W[�n�l���2$(8�ʥKR����0̅��D�=����Y�n��?�V��C2>{Ϋ3^y%"2�
�%�i޼y�Сj�&5%�0��B.��£aa]�vE�x�T��&q�2d �@�����-�R��n旟Y���2��ՀT*U�ƍ�̛;y�d7W��w�ޝ:w>}�tqQ��#��ϙӧ7iҹs'��o������gpXU�U�V�֬=f�g��X<$1Q,]�z�����dI.��8~�eBB�
�2�v��V�|��e2�Z�A��6�B�ܣ�xy�RS�+���p���\�)�͚5{����=����4$qȚ�kF7��tiH����ˏ>B�<x��;˖�[�牋k�v���{$�${'O~����7V�T��J2���w�M���h`�N�0��7�9�Dq
䅸m�\�b��d�x��
0Kzz��Y�Ү]cg�Q�T�;t|Ŋ�C�z6c����8|�piI	�f[&�]8w���t���%���X�v�ڭ^��K�.��pBǎǎ����1Ae��III�	
AI��D5���
�N
�A4��u���!�ʈe��"���Z�<%)�Հ4MhH輅���
��бú
룢�I�ȟ$�999ׯ���e���͛o�dS�nݼ!�C�Ly�Š� 6��d�ٳ~�阡���WW{�p\�9 ��vѪסV�7n�p��Vb�ٚ=g�����=��ڵ��kֈD"V	"=���H�#���n�кM���ɓ�N��.��+A{��ٴq�J�F��z�_ߺ|u �‘�x��8W�^��*�ʰ�Ï>:~�Do�g�^=�x�)��Yoې[.MO}��N�:y[�_�>��ѣ�I��Y��nْ���"��d6Od ��8�}�����5�.,(`C��J��#_{�5���P8{Μaw�͎��TK�3���y�7ў�/x}��F�`� �����իVI$<4$ S�6N�Y��D�*�,��s`�>�P��Oݴi�9s_
	�ҙ�CCC����iӦ$��ZS*�mڵ�7o��׆���Ȉ3_���f� >����{�܇����ɛ=��I�)@�7�X�ו��s�`e�����|�V�,�\.�0b����/�o�ޛ��2!�7�l޼�Z�nݶ����5��w��}��B��E�d�zIY���s~��9qQ�}h�0�,�m��ڹ(u�l��
�)��n��,v�u�a�:n�sޟ�#G�n�*99�K��-Z�{�'L�x���G��v�X�ƍ;v�<e2J �S^��v(�0��`A4@�hÍ��x�Dr��م��o�̸g�b��|�֭G���X�����|�O�Lv��!�T�B�w��w�
���]X �і.��������~���W
�@��u:t(��"�$�է�Z�[-����gΜ?fx�1v�'��\�<��0(�z��B�a��Z��}�l�Ik]˞wVM���ְ_����Z-���3p8�����B$���3�<��D�!�G�}���<����������2���r�s���@�T�5�B��Ss��F������q��i����Z��է��!�`�2�a}��c��m�&+3f��nӼ���@��⅃�-��Z [�kE
�%4��
�>���2����j�J尻�
		�Y\J�&�
"���W��p�BFf&��_)��|�Q��E��,����3?�W&��ѣ'�ֺ��եKq` �0:o���rs�?x�p��@�W��� `�]AS�,����#|���j۾C���`7Ыw��ڱE��R(�0�a��^�5
�p
��@Cn*l�A+t�}К,�����qvD�F�i�*!**
fqQQ�q͚�M��?q�hIi)�@G�� 4 S|Ee����U���{(7�p#�FEE[A�Ϡ� ��m��P�OI�Pܸq64l߾��� �d PoP�]ꊻ���c͕�,�s������Mbb`�'��4���	�G}{�,�@���)��Hxs]�>ZV�g���͜uS&)c7�iѽGw��m8�~E*��������ؠeÞ�@����h ���w�Z�����1�2����d�%�����ݺ�,n�S�Nl�D>o޼	�<�;����[>إ.���\��x�
vJs�=�4,؋[+�(`�*䲲�i�D�А��m��bß�EE�	��]t��4 _�[=�V�����w�2��a�%'f)�D��\��O���l�/݃����?��2��6ƚ*��ۻ�B]�´�M�����5j�f`�ҰWn����@�	m;�i��^�@����M'B(��|��w[>��Y����Ñ2���!�d �-�WM����xy��EoH�cA��)@�u���
�u�9�՛EHG�0#�*
�@�
�u�;�6m��\�`m#MQ-Z�0(A��<�@�4
;����~8�f&>Z��b�0+۶ڇյX�ٓ͟�j�F�Q���J%&�t'���rß-[��M�{�2f�W�^������K��<~�RY^Y	��
�\��h�&�`,����t<Br� o���Ƀ�oB,$�{7n�k�A�h�)*""����vEEō���md�g*
�i ��7�M��=A@5�����-��J��є��U���2�J@�4E��IG�|2�V�Q.H��!U:���<�=aa��EQ���G�ء��Ν;[Y~��p���&�:�v����,� V��������'��v�k�1����=<���ӴI��N�j�n�Q��x|�H�!N����!�4
�0T�J����6q7rr
����M�>�׉>3b�h �*nk��V^W'��YFMQj�� �D�Zm8]@Q4Mi��a4�e�8�J�Jw�^T�~O�&�?^�T�&n���P���|�oӶ-l����8�N�@�_�[=�O��
�_��Фq�kԌV+�Yj��J��(����]&i�G�iP �s����(�Zm�T
����r	���#"#`��ѐBx�� ���Oܤ5e��)�KQ�V�h},M�3�K��$�B����Ȩ>����j]mCQ�EE2�%́�P*���e�F��֣GPV
����ĕ���0��k�Z�?�s�'�m۸�Ƨ(��J���h�5xUoS���QhSu�(l�*��l��˗��w����\��������k4�����b�'��4,��L�V����k�;L[54٦�\E�ȶVK�C��R�~.!̷����(����tQA~Vf&l���������5M�fMх��H=�������Yu�����\���ae !�'���';�Pu@���
�g閎�r��Ȩ���8���
&s1j�:##���nb��������ؤ��*��ڷ����@��H������GQ����R�J�R�O�~�/���j9wf��V�0MS�����t˄����./�c-?�k�.�tQ*�d[ >t���fq)����N�$�&�
�����Z��Y����`�Jv��1���i;��I�f��t�@�֯��h��?�V�d��a4ͦ@q�|~�@(��|�U����.Ds8A|~p�1�P'""�C��l]A�t�ի�0=��!�z�ab��C���a�'=R���@'xc��l��~h�8]�Ѩk�'=;��e�~TC�$��j�\7�1:K�?����ү
-���ٿwl�:H�_)�J�n�.C,	���{�E�;Џ02�F_)��
^��MW釃1��C�V��r�F������?r��t2�M\[u;J�FZu�G�T����iٲ%��(����!,�:$�_���y|�^�ԥK�>�a�
Psp
���7�Ѷ�
o))+�kh���ĭ��L��;�4���ѻ����������,.�o�˻���O�O�t�="#"`�g�[��D�~��F��L�__�"��ma]��1�#/&К���#�|>������A�@*�>t��2l�8r�H��q�v�m:у�6.��~�1���i�+��N��k���X��pm��}��9
�;`��9M�gO�޵�{���|����ϟg�� ��۷_�~0��^��t'F5<��2��v��f���9j!���O�Rq�������o�~y�,4���T���-�0?�0MӰ���>��E��-v�h�1���o7���k}�����i����0x���{+�ҏH$:q�ة��`'r`����O��V�;u�Bl��`{	��)@��}̀�����@\�2dՀ��W�bP�j���&�0�aR_Q%�I�غU&�AΡ��d�W_ɤRb[ba�Z��ԩ��>3���z�`a��H����!���ӚW��`�6lX���ءa|>��_�޵fq
;��y��A�PH��J堡�C�&�,/�`q�g�+�5�:��L��f�Ycs;�Մ���3F,�j۶�۷a���f�6���O	4j��а0X��{�]̿@�2py�ăF־��*i��J`;�>�x���F��9EQ�����Z��e�F.�����ׯ_'���'��ۿ�ر��2����s�{re�`d Ph!\q�ܪ�k\�����Š0���4�evc���_G��e���;v�(�"i#��M�>],�2��j�X)��{!u���N �W��^�s]y.1A�ILL�0i�L&#�4M��������,X���&���ʊ�
��R�T�M�0`@X���]��[�.A*�Y@6W���V���^0�U�7E=;�ف�������RSW���T*�ql���tժU�lt�g�}�~�Xߝ.:���$L��r����쵒��М�Y�f���
f'	���駰�
m
G���M�t�4Mhh�E�4i�������|�)VZ�@4��ѿ�G{�P#����?���������۶mc
H>)�z⩧z��
�$����D�{$��@njr�$Y�	rm\��d��#h��3w�л��h4�H����E�>}Ʃ�v��ڢ�Ҫ)���w��3_��'���[�:��s�����d ��홫$�Z?n���Jz5��(�&ŭ��1x����͝7�q��*�����o�^�h�իI0�Μ9�{������������8�^
�G��.�j�%X�wh�c�Y���YǶn�C}7\�� �d�=_k��wN%�g��F��S3����P���(��`�=�2[q��c,|��Wu`�'�0��jø����r���	��>	�^�;>uʔ
��54ju��W�YӮ};�6III3�M���0h@Q��?������������H�+@�gh�c���<M�����`���v���~��9�W����+��u��:�ܚ}��;5�s���V�q��^�3Uw�<\�m���|�3��_�Uj|]��Zy�	F�8�>c�aN�m�rU}�j���<�HO��V8�;��Č5S��\�
	Ǩ�Y[f1[-p
��+tI\��^�9S ��E�<^JR���S�=���^��Rzz��L�	zcٲ^�z�8�vA��A�� ���%ߠ���}���'N�D�4�ڇ�㥥�-^�8)	�êINNY�曩���>l�/
'M�<r�T�/wS�$���z w�O�*Y���j����L``�̙3��R��1AB� +#}��9IIɰ�왳3g��HK��w+Q5���i���4Hj���t?��)���Z G�}���H���h0(��"�9��~�YF�a� >����4g֬3g��q:�p��k))�&v7�g��6}:4 pov}�P�@��
X#!91�l"00pђ�Ͻ0��(�"�i:��՗^���O?��Y�߱s�WҮ]c�a�Yfϝ���ׄ>���ӝ؆�̂7`���	�#�p��|<�X,��`��r��lp"����[��kr�����(?z�Ѩ�����~������&�8��iS�=�8l�`2�ҦΚ�̹R�s�B[�AAAs�ͣ)���?W*�4M���K�N���X,�;H��M6|�a�R�b�F#��L}qƬ�<�Ja�x���@�W�,ٸ(��>�X,~u�ܐа
k�H�R�GӴB�X�j���E����6l\�~}����w���GƑO�J���9/L|��1(�8�dS�f��s@Cn0S{���B�ހP(|����X��h�zL�Vo����S����4�{�t���O��W����x����\9y�$h@?t�
�i�	z�u����=��[/O��,����""�^R��=��5��[��h4�H-
�:4wΫ��s�A����ϝ���,ط������W�Y}��#Q*���&덻.��/�d j4��V�m2���6:T�V�J�@ �z��9s��}C��
��۷/�7?59Y(�;eF��2�������on8�Xr���~ `[���s�m�Ï>��{�J�a!�����o��u�猆i��R�V���e�����ɀ4z�1b��5			(8��8�vx�p��- ��:�x�&1MV�Y={�B���	y<^EEŻ�ߚ;{�T*��+,*z��֯W���0Lpp�ŋ��jeDD
�ױ{�h�Y�On�s�4�)�6�%�%,,l�YK�-��j����	�j�v�>mzVf���Wff��ӧ���4��j@��"""^_�l괩!!!x�?�T���2pr��Xh���4"����4��SO���			r�R�P��?x�+/��t5������/�8������d�R�lզͦ͛{�Qrwx����Ǻ�մ�%v֒����G���K�k�B��rF������G.��{�|�����ϟ��1�����x�¤�$6���%Z�ࠏ���W�^x�����z|��PX�w'7hr�π6}���O>a�4Z(]�pa�;w��[�j�W�f�JOO��x�r�Z=n�s6m�ٳ'1��a�Vb�~d�+�/A�j�����z�_$::z�[o��;�ZMQ_ (�/xg�[�ro���t>��9W(�kV���_T�����h4"�h��/O�4100��f�h2k���@[����>��x*��b������ތ��X�v-�h(��y����VI��3g��BI����㕫���sR!�x:7F����Wf�~qꋘЀ�t8��o	�����}~��ϟ�ꜷ�}'4��|��|�nÌ�_>z�W��ɓ/M��e�f���|�U�F�+V��6}4 ��N�o^!���h�a��M/x9O=��U+���U*�=��}}�k��L�ٳg�G
���Zݩk�U�W=8j"��;�vK6���d `#��pϽ��\��k��
���l����ŋ�޵۳��F�sǎ�/IOOg'"9$��ׯ�����Vbͺ��
�@���7G�oX�(b�x��ҫW�u7�7b�Z�f�Te|>�0?�…[?�L*�z$W2�l�5�-.)*b5 �7���=�j횄�<8��76x����h <����6f�0o�x-�͛o���f�x<�F��O�R�����Y����9?gϞ}��+?Z�a�;����`�ykׯ����#�
�����B/Yp"X)���v�,��o*�|�@0s�̈���������x<vM�?~����h����uONN?�ڒ�גSF����N���3�������Mq
�K��Qk�D�X�|��&���{�Z�R*���Mv�=u��ٳ��'vM1ס֨����ys��&
�>�B�hױ�������4���C��>�z
��!cނ{f�X2p9!��1|˗_2�0UM�n��,�7��5R��E����]�����ܺu��E"Wר�C����-w�s7
�o=jW���� ����B����E��O?�<a���-Ð=4M+�U+WΜ1���$�_��ŋS���j��ɀ���x_|�͛�5m���[�c�$��@�2����i:�z���!���/Z��k!��c�(��x���sάY������F��o��6땙��?/���'���z����/����[_��,���W7Z<�H$z��g�o�o<Uе��%�oڸI.�;x	���k̟���ARf��ku��}��O}�1a�,��"��~54 ����_�HVg�d���m.�z'�ͭ��F	�4�Ð2�:y�o�R�
xX[���TO��k?EQ���
����z��q�֭��t��I�E�(�\~���2y�֭CBB�K9+3k��5׭�h���Ϻɀ4�{�_���m����B�P*��F��1x��Cx�U`�m�X'b6A�<U��X�l��ꮁ/R�Pr����c�}7�����E��59�[�w_�
�u��7K1�V�,�j6A���`,pM%����íy~M9��k��T��֧�X�[6ރh �Xz\T�Z�,޴0=z�ذi���D"�F�a�	[7o�8ᅽ�iG�?����ɓ�ܺ���&
X�d���bbb`vp�ɴҏ��c;��վ���
�sA4�@~���UC4�A"
����2!�e����k�w����'�*�0.�um%;l�ʕ7n�`W�ꃀZ���ۏ?�8��+��L��
d�m9���f����!B�8��rDqn4D
�J�飴\����d1��C��>��N�<I�%%%+?Zq���&M�w$WZZ��
w��A�4+1��ȸÆ
{�Z�l;����"m z�`P�A�P1�-�b�Y�������^��'��(�0@���o��zʤɧN���D
�>|x��i����g����sϏ_�f
4 p�ol�{�.�Ӿ=4 �2py��
q�)���3	
����w�oŪ��11�Z�>����1�	+V�OR^nrJII�⅋�M����,؝�ܦM��^���7���7�a��Ϊ�������@�'�n7��V�c�ѴzP������o�Ыo�Z͆�x����O֯a�s�Ξ5|��q�<���o�29���h����k֯{`ԃ�2a������#������`�h�Nɘ��6lc�h�O�����ܸ!���i�T_��r�֭Ǐ�y4�o��eK����f�%g�T����Ǟx��V�������SD�NDz_ja�SJ;�ߎށ�t%0E���"�Fνa�h.�t�P���k��=�����YǶn��g�eMC6���[��h�|�)}\��.��j�ϪC��2N�ϮZb��7O�l��vOm��z��`9Y�l��q�7�d���O��!�%�G�{��=�|ٲ�W
�����Ȓ�"�^�f�=�Jճg���4v�3eee��c%�gX�|���e��.�Β�lRvlJ2�gɕT�Qi�an�>��~��%U��j��xL�Ɲ��l'��,���:e �֬d�7��a�k��3��f�e -�Iå�%C�\#=A��Z}����#i�E	�&U�C�jI���bb
^W	�t���\f��Akׯh�XR�l�c)*(`ו��en���SO�\�14 ��ɴ~�gw:��'^W�-��Aa8q.o$\
T�b��.�4�[�'m۶�࣏�u�i�ܛ�EQ�%�U*U�v�|���Ə3Dp�c�ȑN��ҥ�s�`���i��q���<�=(̥7�b�h⤉�[�ٴi�ɣǔ*��W�TB���{�}��7Z%�J�lZ��Sp��/7�,~d �m��)ت�8K�r��E	���ط_�}{��޵�…������#F �;4�#h4x	���76?� ���~�l<����c3xȐ�����F��&���J��YJ�����4@��\�� jN���A�ؑ#=(�@9�`�0�u�n��kNt�vc�b�!�Ohӹ�2���y� ���y�r���}���3f���
+�\[�6!��[�d|�Kw�Ck�)�eާC��Z �V�
@����x�h��]YG�K���N���A�;p�����HZg�=l:�8ѽ��0��z���7�X	d �"���N��mp܏�ձ�i//P��@~�Օ��+P5?v'����f;N�N���=@�'��Wq�aGj6�aL2�H�Ͼ%�Y��@~�	Ľː{U��
����`<�4�uh`�`?���6t�B���j�B�}8}x��=��f�F��k��Hy׹�pV�E
�m�ь�nP8�.�Xno,\Ύ��S��
W�Y���u�'����V���8����^qp�@q�k��]���o6Fx揘��W�\V}pv������-��s]�8��D4�8�VҦ�m���Ǜ=҉�<��A4�Q�
�\�:7��1Βl��d��BfO�ޕu���)��?�|#�8����ĝ�xD�A3�L]~��\SD� �G�n�L�5�aA6�VWj�
���	�<҂
�_2��Ї�m���w�M�(�[88c�K���]{$�j6ȏ��4����,��s�m:U�r<��z�#5\�=R�
@�#l��eÁ��!�̌��B@x��"Z94\Y��@�nH�ΊAl��E�r����`�'�d P]n�(Hk��2O4�_��⩡a��J�Y���G?������� ��h��K9��b֋��km�u��M@6�"�����zܾ��\���8�-��:�}����hm�+���y���;\���T�����(!Ϯ
�
�WF����w�/����&�)+jz��X�i�Z�W���."��ݟOo��y�@�G�!�k���=�rԊ���#ɹ��ʣ��M�kCut=��`�����0�~�ƞ�?U[���3���u�|�����h6��R���a�<��/��ZJ�]�´u�qg��:b\}�[qޖ�yϠbwf�p׆�bn ��	s"T���'��G���h�Ɠ��A֞�5L,m�ݬ}X�i�m�1�����;��;�
��ڡ�`6�|gE��h�t��q��f�}[��S.�����tQ6��i���w�x��D+�A[}��Zg#��t�%����M���b���^2D�@x����fǁX"��@�~i�;zS��-%ฃ�R��u~��k@X�x?�����3Cs��n��K�UMw�֨�&ͧ+\�?�|�^=�z �GeT��hJ���r�Z�ղ�~�
_9�
�HKX��ܥ�����d �����q�‚l����t�a��;��3/;�V�[MkND�'�.@CwP�`����h �5 ��Z��)TY5Wt���#�s��i��"`�˵��u���N����PV���?��Z־TlĬ���bHelj.����8����#]���'�2������hmT���iq��;3G�+�ٜ`�
�G�\�!�]�R_���xUm��+�k�'ҲG��G�
�ń�`�[�,��H$��/�T�6m���� ޏZ�>r�yj={�LLL�#�F������'
���OQ6�Y��Ͽ|��@ h۶mtt�a��۷���'�ˇޢE<&��զ��˻�*4r`L�})d���*i.�=2���r�(�I�4��"(,* Ȱ�X.ݗs-��m.
�c�{�ux�����d �@[5-���2�+��u��NZՓH��&VҫA\��M�O�=Ъ����̜�����������6mژ��'%%�5J�T����s�́ݼ�˗/�=����Y�f���{׮]mMA*����{�w�HKK
�֟{���q�ƉD��k�>�쳆�$�5k֐��{lǎ~�=�*d��e
���	E	��|�+p'����|q~��w?�5���)(���g?L�Ҕ�w��`�Ȇ����w5��?�9�ɶ�؝
���s��?ġ�����n<&�¾���{V7�A�OEd�0����c�#@�/�v	9w�4:��D,�:�;Ns�…sH�� �c�dG�
��&==}���{����ɑ��*����N{�ƍ�����w��ٸ�W�����%�R	��yUTTp�j�a��KΕ�d$)[�%%��+�����Fqq�_9�R�ro��]��\�_�Q�N/��QTO�+"flB�~M�E4��dj�U��C��T��/�Z�P)3l�c4Z���_�jU��xg1ɒ�N(���Dž	�);�r^;�u�9�C�Q�YcP�i��a��Tw�5b����g#��8s���Y3���o0TTTlݺu���EEE����ͽx���͛�,Y2}�� C�iZ�V�$�
=z�={�ѣGG�9`��aC�ȣ�ρ&'��iӦ����d2�7���0��?����>v����`��s�W]:�+?�C:�������P����I��\O��4ai�a̓y[���+튊Q%�F�nΣ0�ϓ�h}��?g&
jҼO���|u?m.7�k��\*��P<�cm��KJ�I{ڗ%�Z����Ye�P4*��o�O�X���E��E?��h�>d ����`U՛Mi�,Ԅ���kMr�՟���c;&r�d_��$露�x�…�7of�lժU����������Wׯ_?{��D"Y�`Aff��l�P �=����\�R�R�|��U��T	����ѣGccc��2�δˋ�ʐKI��B$Jڃ[��Ҋ�ŷ3d�-Y)E��k�>�U�Wh�O�9�QHg���#�)d���ǟء�s�{�^�4�E�l��qځV�R��troAN��Ɛ���{�~����>d �hj����c�,=�!_wFu�^���;���!�F�����g�p��y!���S�N�����v``�Y�^x��͛�x�Ueaa���Ǘ-[v�����
]>ǫ4 �@ʤH����|���f���w� �ѐjj�v�:�m��~(R�*�����s\�%Q^�P\nS�w��	(�«�T9p��z�kqH��:�扼�f�r5�t8���x�����
ab 2�?5F�ց4�V�լ
kj>�`M�u5fv��r\�����ĪU�X
(::z۶m��sO�^tdd��ѣ[�l�����XJKK+++333�1qqq�z,g��`���"++���:   $$Ě�ȵ222�%�6m*�-�UVVV^^���_PPФI�ƍ�Br���er�T*%��(�E�"�(44�V�T(�u�݅�����{��7���M,Cn�Ӭ�F2���Cn!!!A 03��J��v�F�!�@�K��~��L&#�Ӻuk���JeII	��kr�j`*�J=yyy�������*6�����o߾M�7**�<�oI~�
�o�1�f�!)r�\rG�TG�RRR�6�0$�A�[�
b�������E�0�6?��Ү];�h����nܸA�F�`�*�%���ҍ��y�v�=�� c����Ш��w�۲Kd���Iy���j��Ǐ	���T�*QTʤ�����j+��J�*_*��@1�_�Z��L�Ri47�ej
��	�&*O�BV$����
�F�R�VV(&������jw�+TJ�Z�'�=�&�$�A!�&C�R���2 �����b�
��T��%���6
%� &*VH�E
Y�P-�&Absb�|YI-60T��
E\��\�0Y�%$ˑ���:�I�-�(WɃ���`��(W�o�*�#nf6�*��D�h	��@�)˥E
���5
1���4�[��bC�:k0yҊ
��G�-k�C�0L�R.S+oU�Q\Z�i]q
��9`�$W��j%yd��؀� ��e�r��LBq�h�[�k+S)���<J&	x<bU�Er�D%+�U�;%9Rh5��Ťj��R�(�����"���c��¿2�d��;Ǐ��ef2���t��;�;f�4Hww���j�Ǜ9s����-�E�ٯ�?oݺu�Ν�.]�J�d'�?2��W_MLL�K9JOO���O��ۗ���NL:�=z�x��~��$��ׯ�Y��׮]#�V��ܹ�ĉ�Y�5����={�l޼���äp��ЦM��#G>��#�{�6v�JKKw����__�p�"""ȽO�0�\�&RrS�&$���������#F̙3�_�~�O'Y]�j����#G��ř�����^�b����Z�������'��0`@~~��1c�^�ڡC�=�#ϝ;��_�7L�Lhڴ)9k�ر�l#OQI�����ԩS7n�`+����I�&M�<��xS�����_}����d���������rv')Km۶%6|��GI�~�����N!�0c�b@R����ŋ�����a���Ʊ��(��N
��G*��k�㇄�dff���������k̘1�NY�a�d��//�P�؄]Z�eB�-ڛ�|���W�Fǯ�M�dkҹ]���*�'��M���pX�\�uꅽ72��)t�r;
�h2�]ρ�-���Ҝ-��c��cE�.WJ$�H~�;(d|B�Q	�⍆����3qx|��	�o�o��L<2=Rh,-��q���ԓ%��J�OU(Jk<*��c��Z�	ϔ�˾�kNڕ��l��}�1�#MZ�kߣ�գ�N�]����u�m�=���.�J+����$8�S�.є����9~+{�����o�[)!��@��_H��[tx8�s�*��L!�r��Ey��vo��ڪG�J��߻�ݾ;"���
�%��u���^�z�馭�&���[g���z�M[��ٕ�_?u`CVR�(`��';4j\��Ү<{j���>�:4�L�x��O�Rz�4:��4�򗌤���.[i�Y���jv�փc[�d�<WM_.�ݒt�xa2��u�ܪ�֝��X����upw�0��#2�EJ��_�]�]���`uޚ�Ͽ74�ަ-�ǵ��U�ٗ�龡�4�w��<����8A�u�C�%�
h`��RN]�X>њ?р u�@��� ��e�:T#���@Zg�ˁ��`9r����pcƌ�5k���8q��8p����HG���bϞ=�?��e�L��j�7�|C��^7�'((����ҳm۶ŋ�}��&��=���������������w�}$M�ɏKJJ&O��{�n����Hr���r�E=7o�$�2�M�/_~��a�B~2�n�b���I?�]�v����w�]�v��۷
w'
������v�ܹw��U�VM�0�B
�����O��g���$W�?���$5���޾}��kGr}��'�s����YE�D�`Ŕ��RVԋ����dyyy�8�v�"O�̙3&��R�\�`��-[�i�I����Zmzz��E�����W_�YY��1����_~�e��'�zHHy�d�U=��㏤�l�R�P�l�OR��#&�$3���p�R��GC���{ȅH齥��������2	�b�J���_�gm�[����"��ls�E�

]�� ۃ�S�R<��i���/ߔ�؈UM���+�9i�/������&Q��+ʒ+J�Ȼ�l��z��kJ�/z/�
G��OQm�K��|�쬤���?d���?�{T읒,��5�y�e<-�O�L d�M�a�S�
?<wx��t]/��v
r��r�~��+'cA�����J�gV���S�5�HQ@8_pMV�+���J^w��M�����Y�����f��x��[�O�X��R�*�$�ͷ�7u�|��&�H+>:���d�JEr�:08�'8U)���߅y?g���2�x]��H$ת��ۻn�͔IbL�{Kh��wIپ+�4.�HV�����	�j@��m�~#m{^�K%�cLЈ�䐒�#�<~+�]X�����h~�J�hԃ���	7*]\݊��ÿd�*t�_�/ ���$I+2+%�*�7�J��ϙ�@Jg��_g\���DgpR�I�Ҩ�-/{�����=6޺���="n��ɥs���-�?���y)2�D!�����7�)Kã�žA�r��V��g�jL��Z���l�#��"�.ȳ����9Ç��@��nc�Ts��:�J��X1[��<�� �a �ˏ=ʪ6cƌ��v'���?+��-ZL�>�_�~"���7n��o����]�����ѣ��)|�W���h�~��'ǍŎ`Z�bťK����/��駟bbbg�����ϗ�d��9~��Gy�|K�JNN޴iөS����O:�?��C�&w�����;��l4h�ҥ������Iǎ��'O684�o�^�x��ӧɞ�~��022��7nlذ��_ݷo��[���n���$�V�ZM�0�W�^�7&wZRR��_|��7�Ɨ-[���H��H۶m�1���w�}G����"�fP.~���1bC����O�<I6l!�������Ґ��%K��u�]AAA��w�С-[��1�v>ɷ~�!٘2eʃ>Hn�<�'N�Ǘ��O�/��[o�Uט�z9p�1� �[�pa�6mȃ#�����o�%6�:u*���3R��M�Fn�<��[���ƒ�F
��X�<��˗3C�-)���?yv$�.�{��� �'~�����C�H$r��t�x�5�]�v����QZ�TQF:�#c[ؽ�E�/-���B��X�v̓���s���9g�_*+
���>2�] _��2��e�&���v���".�}{����.�R>6�哭:Ň4"'k�K�W^:�kQ��
�O�:�]�����}���5�v�*��^�6P��\7Tp�D�eg~{#��/�:>׮G#Q�թNߧ]�03i��t)�|u�#���y4�����٦{�ȘȀ >EU��?f\]�~�D�X�|�:4���~䗸:�\�\zWD�K�$���Kˤ[R�u;[���J>3�Y+���h�J�����g�PtܴN���yU�R����ճ{
n��{�cDt|P��n�T������L��&؝~�4�����!+����͌���N��]"c꺋�1�B��)��#�O��t��aoV�Uv�u��1��m�	�&Rԕ��@�hHL<]w��<���͒W�E�u�?�i�@�@���ժ�J
V'���*�4�O�0��h�z�h�*B��0��V&��PQ�Wq���s{&
i{*F�ݓ��-'�C�i9�C�&�Qo\�Z]"��L�r����t���Ƕ,�K_#-CI~��F��~���h.�D7��q5�>�����b: �{�Knm%Ȋz�cV!1Lͭ.ҭ+����i�.�.�ue5�!]h�|����k׮�2��Fc+�������_�h�°sذa���_�~=鷓.t�N���ܾ}{޼yeeeb�xӦMO<�a�~��
>���m۶ӧO��g�-b����܅�d����O?���3$H�"��iӦ}���'N�x�wV�ZE�"9r���ƍ��|�f���ի�}��G�f���j5�rQr�o�1w�\C��s��C�]�l�G}�}�v�ç�~�r�'7E��<�@��͍�0`@\\ܻロ��M̲t�R�4j�h̘1��������2�B�h4;w�T�T�H�������Ix��ݻ����]�X�JZZ�իW��k��F���W����2e
��7;u}``�ʕ+�E
��LJ�뢢��k׾���E¦u��ar�AAA�|�M۶m��2dHaa!����p�qa�$R�bcc����˗I>ɓ���&e�X۠[�{9r��/������[�ly饗L{�SZZ��O�^�:22�����͐��
@��hG~qiJy�v�3����4wPh4+�=zIR)7��a�Z�UQ�âz4nv|Ϧ��/2���O�Ս�Ѽq�{�j�thl��褎��m5�uw~���%=�D�(��#�njhÄ�v�0�Asζ������P��C�w�-2��w������?�ܝrvz��ғ��wx�h���@��M��WO�U����پQ��
R�B>�E�w��g<��o��Q'���L�T^�/����	�ʻ�j�r;3Zv\��>�H6B"_9��hI��.��>�GQ	!������9+��6݌�}���x�
����
������!�2��٩�j`D�V!u�l&=Ԣ�?��}=uF��a��,�4���IT�T�^��RR�;����s�R���7���e�-�䷢���.��wj���7�52��vt��!]���6��{�d���N�b�Ȧ�b����Je�[�.<ަK��(;
�\�>r�:�����#E5�>�q�"J�XٲZ*
�u�Hb.�:4M��@����x��
�3�%^7��`�?���if�1-A��@\���6lښ��U ^ ���=킂�~�����H		y��wM:�b�x�…쌿III��q۷o�x�"٘9s��O?m��<�����fE��㏳����֭#���SO=E�2�9""�w��ر#+���r�O�����2���DơF���k׮%��{/ɹI���$&&��?ɞJ70�cY��>}z||���Dnv�ر����Y�m��������v��a��ԩS.\ ֘<y2;�9�1D��޽{��G�}���p	À��W�̇���
}"_=��#�Hd��w��/��"G?�*%%žE�[XX�j��;l�ذ�f�{'�[�1�Ҿ����ׯS�ꫯ��1�]jٲ�{�G�O�%E�4g1/)���׻�I�P^ɾ
�`W�8�����68�H"����v6�Ĕ��kC�D��c���*ʿN��T��B#G��X{����!�ڇ�Y
y�nLP5jFc�,���A�dg�e�R�hT�'�v������V]&Ĵ��?g$�*-�+9���][�F��
�~�c�6)���%r���L��50x~�!���7��O��?R��M.-P�U�FyݕӤP

��c�ɬ�$W�h?1���V���_����7�Pt���ߢ[����N=WY1X��s��⠋2�ׯՐ&�n'��s��~M�[X$�<�1�� I?�����ce���%�<Ք��jT5�rمB] �&�"K�՗)d��V1ͫ-��
��6j9�7m5�]O���:4bv�^F�`4e�vVS����L�b�4�LH�j>V��j�u��O��F:��r���	.�M�@�K�ڧi�/�e�1��@m�A���
�Gk�,�a`�l,�m�6yȐ>�5�{�-�,Hؑt�w�^{ӦM;w�L6�]�&�H�;���w"##Ǎgv�P�&M�ȋ��b6d�p���՘��	&�-�mڴyꩧ�W�o�&}{V�b��&{������������ξy�&�x�W��Q�FS�L!���_^^���JHH`+�L֫Yt�ԩO�>d��_e%-�]�vݺu+::z����4M�={�f0׹s�|���>k�m۶e����ʕ+�܅P(4;��	;0�<,+��M@@[���z�駿�曒������ӧ�F\\\�H��]��sN�{����#��l����Ȱ���
��L�ث�p����Y
Y��QF���>,*1�9���V��*d�^�sx�p�[Ш
j�@�I*ʻI:�|���[�
�,�%���-;��9r��2���H�,(�Td�R�n&l��?�۲��@�؀�>���)]--VT�[��|i����:��c(�szrx�li���;��@�B�.U���Y-�J�ʿnfp��΍��i۽SX�F��;']��ְ~�M"^�:�E�7�>���M4*���?4��9q;;GZ�-�ѳm{�kE��ޛ���y�Q�ogO]V�,ٖ%7�70��!�L3��B!�#	��71�@!��PB1�n�.�ے�lK�z�m盻�ۛ-w������#N{��3��yg�}�}�ۜWpo]�����k&�?D^R��8���m}a׆��զQ�n�D�{��~?e��)�@c�o=1*z�u	$]�T����M鑶�n�ͤݏ)���I]����,
��'^�� mqS;�Z樑
�bT�ēIS�N�Ӊۼ!�X�#�갇�Ç�8&=z�a�rv��V���J����Y���˓�bQڳs����


����,;
r�)�DEEuwwˑ��S���.]Z\\��W_��������I�&͝;w��٬ʝ//�b,^�xɒ%��������0u��i��w͚5_���c�JJJZ[[�3�N�\Ogg��4j2��.��5����+��R�$֯_/�Vޥ��_r�%/��rYYه~8g�y�
6�+;|�pv�<^�{��駟>q��o~�V����iӦ�{��-d�}eXaRR�&\	]��pq饗�����c�]8v�eUq����sNvv��CVSS��5a�}�9.Rss3+<o�<��a��<����񉶼EBQ}�Y����h�U���n�ڞ�gvnH2�j��in`O�e�-5mJdߎޞ�Kﮭ(im�hkRdᖞ�:��
i��I���n_W'��{�ؾ-Ue��~uGG+��uvԴ�zV�(�W_���HYk���F��ށ&kwZz��P֨0"%�x=�H�I��w��8|�7�X%!K�G�_[ahȺ�'V�~���:J$dtJ椴��j�WW4tuȋ�6�ni����� � �un��ʏ�h�9�X3!�*
7tvl��z�10O㬤'9:������,��P���z��Ō��ώbB󇍎����5� a��֕e��+�jkj��BW�CF���H*'>�����ݱnok��w��}xwv܀�ɩ�ӳ�e�I����e Ap�*1*z`l|UWgy[�ow�(^2b����jm^r�peUɈ�ĜĔqi�S2�������:Q�*�Ls	��@��@�Cz��x'B�<Re�& �]�!:a��.l�k��vQ�?
+ЃB��7nժU�q�=f�#eee��2��b���:9�|rr�~�BZZ��|��	�CQCC���=>>�}��%'G^�SQQ��e�'N���k�=�䓬�UUU���a��/�����q����/X�YaE�ؼy3�`����l�XJJJܟ����|P�.,�VW�a��;;;͟��/��/�����?���Xv��>ȹҧL�r�i�����]����1%%��t����+��R��J����c���ű�VVV��q���_���s��7�9��3�W֕��Ώ�YW����-^�xӦM555E6V�\�j��ȸ馛z�!3�����!�r���8p �lww�^Պ���Ny���fYv��M��iq�q��0�Z�;�V��u�.v!��8B2cbZho��}f}�/��⓺
���=�8~��:��k�ۄ��%jkC���:�fX��U���ы������k^;Rx��C bfTT�s���œ�f�&�z���U�����6*�{zsS���^�c���@b*;Zz�C,�^�?查W5V����=�չ���Hkӌ��y��<䍞�w����'Ƨg3K���������F�7ӓy�#O9�g{[�W��2Pa]�'�'bc�~8�QkLZ���̃��_?�p�5JQm{۲�Q�j�(#Gu�D�GfX��Aqaq[�w͍B}�Piͭ�f�\��{�ę������bbE��*�f/�3�m�E/~���jgǾ�F���P�h��8�Q�o;-�4|��O����88��T�U�s_�d�H�p�w|���SG?�^�z�!uPk�KI��M�@j���^���N"��=�/Y������>����`��������JJJس}cc�+��ĉ�� '�l���U���by����ÕX-g�زe�ڵk������JKK�����Y�h��,!!A�m���g7w&��駟��=��믿n�X�=����?�5X���e����Ϛj������曛6m��������ϻ��&N�8{�l��
7ܰ|����B�/�6�a������W]u��C$%%=���w�}��u�o�~����Ç��}����e˖�0��qY{�@H�J�k��V]]��3ϰ[���ǔmn`W��'�B�S7�0;Pwww\\�>]�˫Th�S2f$�on�[SS���jl�@�Zn�t
�h��B����95o@�+�TfM�󿜱�����WRU����S�e�&F�;�j�Y�뻒�.��7d@�%:&��[�G�����O�[�&⦪���C;/�&��9�f������f��wۿ���Ƈ�y�S��X��yk��3�\w���Q�Q�j���S��6�m�*=-;������"^�76�&Rd���3lks�ץ�?6.%&nKeikg�����d2ӶS�OJ���ܰ���cBO�%꣣El�s��D�1�e��oU�5V7׍L��^S���~�������I�L�&��<�X_�޺��a{s�[�ś�ߜ{��}<8�1x8��������ꚶ��mM���;�6t�?p����@��+��*�y��@���r*��Č���$�wu
Al��Dؼ���W�j󅽲ry����Id�ܹ&Lػw�_~�x��'�x�ofS�Lٵk{�>~���!���W��?L�6M~b���ݴiSYY�y�W��_���DGG�õL��hL[�n}���۷lٲ��{ƌ������o�ݟ>����?�an���%K�h���<��s�e �������b�ݾ}��ٳ�.]*oT�_t�Ecǎ-**��/�c��y����/YlN1W�lk�X/�}�YV;����o�}R��Slȟ+**8�_�bǎ+V�`����攔v+�
w��]^^n�-vuuɫ���&O��g_%$�<r����5?����ϝ���s5"5C��9��=(!�ʑ�첵���G�(ˢSμq̩�o&$Z�l�)��cⷷ4$�Q�5���od�^����.�)�R�f!�fdDrFrt����,ޥ��[D�!&�c�>~�
o-��`rQ]�{U�cc�.�<}�+����{�Y^�㆚Q)�o.dC�m��Ę�0D"^:b�Uǿ���__=0~�e������Q����BѶ�M��*JG&g�v`�@�[��2��?=.����O�F8�.mi��ؾ_��|���{��d2�򌩢��@}��_�MC�;G���7f�[������6�6cQ�BDG�]�o�{�y�Z�pP�{��P��
P���!''��o������}��?����v6lذd�>�Ϝs�9�hoog��zi`����[X��|���3�8�5����_�����Lúu�V�X�>��P������K.��I��Q��2e���K/)q�4ttt�	�}��A�k�>�LYY����$��z*k�:�~�����Y
���g�}��񔘘�p�B�ᣏ>*,,����端�Zщܣ_����4u�ԇ~X�t�ĉ/21~���عs��7-��*�(�-���#���f�l�Ҟx�	�[��o�]�j�`#-�;��(Q�(��ֽ�*�?�c]s��%Q��m�n9�M$�S3O��o��|���j�W�x���G���(Ht�ni�P}M��
φ��(��at�qi��^Z��Qk�����z^3��ݵ���gJF�^j��8�k��D[,s�&;~��c˰��a���+,Qk�k�W����>v��>hD���Ȕ�+�r�%7V���fDB�̜<��#����[�ԞX^����snJ���l�@v��s��[nm���*�שׂ��g���xZft	QѣS3ow�YIl�ioi��_,��)�
9(1����rG��EEOW�#�EcD"_#	o�BM:����㈘���3ͻ�����Pw��KkJWj&�?W��̼iW<��"���7�t�`}���s�=����c���ʫo���{����_��k�����㷜�K�O6m�t��wWVVZ,�G}T��|�]wɮ�|�	�K�ꢨ;v�x�YSEQ��<b�=�.+��?�����\---G�a�KHHHOO�����_GEE;v�;�X�~=����`��g�y�cd%O�ƍ5����^x�«3����ο��<��s������r
�_~y\\��ݻ�qv�rrrf͚ef((--}�GV�^�O�^XX(+n^�~�U�V��\TT�եz�d�СC����(���E�/b}}=��Z��+�N��W_-��,]�tѢE|.6vܕ+W��loo������(�S���N�306^���;�X�lCű��6Eaj;ڶT�>���;�����O�5��|z�ЛFNd�cY����{���g;z{֔���w?9�O~f7ǐ�$�����M��pWE
�/n�2z�	�����^_U�e|��M���{���ظ�m-ܴ�����D��m��{��ݱ��S��ب�S�����ڪu����w����,�1��ɳ'%&�vw>�u՗�4t������E߯���zQ/?)�A�����;�Ub��3?o4��-)&v��1�yl��;Y�k����b�m���W�D\^|�;�h8+cȐDU
F���?�<����;�O���Dnh�lf����4]f�4��u[��%��&�m �/��m����F�����}����ee�Q��N�ѱi��M�꺻vԜp�$���!�"�Y��mnx�x1oa�E�%І�A�F=/A���"�e kU��R�IT��Ϡ� ��J.~Q1lI���SO��������W^����gΜ9a„aÆ���]�v�޽[I����s���@BB��?�w�ޣG���O���o���!C�C{aa�?��O�=��/���˕��C8+�*//gO�6l`����^{��y��em��.����*%%��ƍ_}�UVx������111��͟}�ٻ�+�R���r����_y��Tlڴ颋.��;&O����RSS��~V���t۶m�����peN�2��[�tijj*�6##�����㯿����/G������s�eU��`]`�jT	9)زe�>��#��@��e��5㭷���s�]r�%l/v!���Yk��Y�d	��p��������o͚5���?.��R֑��������Vv5�5ql(�̚5��ئ�&v?���EEE�޸���b:t��?�ӟ����>�(���sNNNN[[�����UȊ��'?���ջ#'6tw<�k����K����k��Ʀf�'�k���=���T�vvw����x�jq焙�*˖W���k�Jo1�U���VX_��h�Ѷ榞�99�iq�g|f��)��-�vn�Pq\���v�#MuO�ڰ��.Q[u��1�xFN�M-
��e#&Ĉ�º�a����Y���ZpψIؿ����o�Y���&�g��Ʒuwi�������2KE�rG���n�Nfl�9��76�|\U���o������#�V���wh��G�,Qѽ~D"7�Ȕ�?L=s��O�6_�v��C�`p~rl|WooEk�����.c��.���w��Q���O�Qfg'�����9%+wX|bakKa[�`��;xx����A.6��w�W]�&
����$t2��g���:Vq���O��?�L�_�xh�z˾��<�̜��$���[�ֲ�H���F!&��1}��P��;֬��=��r��&�d$&F�ݴ�ˏ�s�0.��gOp�b����vb�v�-��=��X�5԰���VA�P��T��'�}�
tR�	2P�Z.24��(;^gv���E1mq[[9��h��[���10c�? �@!EFF�k��v��������0�{�=M�aÆ�����jY�psA���)����g�=��#}��z��III=�Џ~��;��N;��O?}���|�ͯm�ߦ���򗿼뮻��Pr�����7oƌ���JVV��O���l�O>YUU��%??�/���T���j����ݻw��^|����Ԯ�.Y�z�׮]�i�&��Ǝ{�W�k�F�5w�\M����k��fٲe�d6����X7��Q�ynll|߆^�[�x�7��CuI_F�������ǎcWD_��I�^}�U>���߾f��={�\{�rn������;�}�n�!77���|�͇6�o���-Z�*�X,fnl��>��i��_�����Mݝ�? ��Ĕ�8sDd?�cb9�I������攘�W�^��C;�o�MM�����V���#׼ g������+������_���-M��tL€�躞�-M�S�_�y�v���թ9�H�Ǟ���tYU��Ņ���n#���Y�s����Ŀ�v�䌜�w~����[�Ɣm�]0������g�J���<1:�gg﨩����E�?ux��NI����z�h���M��*�/	�/k��ݐTk�/>�˨���������xx�`��d�'��1q�8k�Q0�S�s'H��j�R�3phހ��tAV����z�eM����46-���C߭���SR�����co9iU՗��'\<|���K����$$lo���"��^�-c��k��bb�>��&k�^����v	�ѥa;JF�UM�BfL� 6|U_�U�	�}mm����Z�
�����:U�[�M�\S�^E�c˪J��jG���rG
IL@�!��(z���x$��8@}nK:
�eW9��"�x����u�Z�qf���-�o����	�KO.�4O��
���İ�s�9gŊ����� 8r�s��}饗^v�eJ�E�������q�&99y����z��cǾ���|�g�}ƎXSS��6��N���g̘a8d�����g�-g����d{�1�m����پ�^C�}��w����O>�d�����C%$$�?�=�ϟ?_��<++�8��s�z뭍7:t����b���^x�w�a2@+�駟��o[�|yyyy}}=;,���M7�T\\���n~v��|�������w�"]�L�>}ڴi%%%섰�����YK�Oe˽���
����[�l9r�HEE����q�%����E9����������W�g7Fvv6�D�Ƌ�r�u��\^I���o�_��������ѣ


l�`;�;�[n�����.|%l�W_}��K�.���f�Y���z��9C�:�,v�|����g�c��cƌa�])9b�v8�v��7%s�_tU��Ϗ\[]����c��,�0,!e�a��I�	�;!>1'6�B\>#
Lp�93�rYͻ��6t������'^;b�e��
LH�r�Б�ϻ��}ۿ�.i������ten�
c�ILyk��f�'^��~pB򒹗�ٽ����=�lP����q�bzY|T�Q'e�(.�QSq������"�Ԙ�3��n;mLZ��5(1�y><���#��ڛ��:��co<|�����~zۚ1q���	f^�D����Tr�C�Xu4�ΌO���Q�x^��S��|tt�=�Uu�uR�Qѧg�^[0yf�P�6$g����Pv8?6a^�H}k2��÷�W6�t����I�:�;�W���23:�����{��ez����2k�:NM˙��gh�Sc�G%$�u��W��8gP��l��8�R_���M�hB�c���rӘSƤf)�"��M1��㣣]
�p~\B2�A�����!	�9Q1	�Kî�>4:A�dC����+RqlM����u��۬�r$:�269��ѓg�K�UEdˊO�ۙ�O+����lE3���=53.�?��_rI��섊@���4��7:h����q�[�_]|��2�x2�.48B�P��:��HG�!�&�6NF���Jl�c�>�_�O�M,^\�&k����`Ԡv�iw89!qq�,�[ț�x���7vTo��_5�����3���y�=db�:������������A��Qy�K�r?�a��٣�WI��MUQQa~���v���謬,�s�+:::�C���{�r��;�mmm999�A}����{,������溺:v�܇9�ẻj��:مf�}5p�@���J��b�}�d�&����xS6ڽ5P{[Cg�E�b�C�QC�
f��{zj;[���؃��;��������x�^I��h��X�c��Nꑤ���0�zg}��������ɞ�y̫b���2�U�-�@Rb�cM&�����Dz��x���.���U�՞���%_;⪀�ەۏ]�1*-.ޣȮZM{k�hI�@�/�'���---�,��렠y�R����7���4�F�p0�ot���d
��!��u~��HyS�u�v<8�3��'��|_9�9�q����쁨ը�]�=��G�[�~�W_"�k����pOm6�;[)IpvS�D硉�S�'�}��R���`t5�Q]��h�UH��fV��a E�d����S�j�|����_�K��Ǧ	D�.q�E�v�k=ZhB�U�e ��f;d �����0�2��p�@>�m�2P_�@��x�.����hp�K�6D��Q���)Q�+I����M�N� �XkC��'�A����� E�!�R�y�7Pۮ���Q����.��\�v��j�x�'�d�w���a@$Nڹw�AzM��԰1nV7�͜����[@��n�;�Jʑ��q|r���Q�'}�V	��/߾��![�
�
�S|	�^����u�ѷ�2�������- Ezчz"Z0��x��m������(�)�C�!��a�aN�23<���Pg�c��w E�P�^F}��~
�UQbdW�,EKYF�!�m_���8	�v]��O_�~�6���,��>��"��>D��������z��P�Ntܲ��w� Q0'�BY?2#�P�19��:�n�sad�ȳ�Oo�!�:���c){�1�:�m�%�q�dS��4��7�������K�il	�8i�.'��x�
@�(��ӄy=�R��S�Ϝ��2�:"I��k�	"��C(%T^)F�Y��@}���v e/�=`�/,�SS@�(�̉���gǫEaİ01�O0(�ܛ��К��k�첔�/L�ۿ�����:� �Gq�t���?C��|0���@fN��mƌ��fx��Q�1h����SF�W
��
�Q��~��5��\1����Ѐ@(�̉o�Q>ɘх�,I�_o(K��@ԨY�Q)z�"�H�C�I=��S��x��I>e���>�|��N�9+�9�(�P�Z/F/uNw�55�	���fd��������g�4 	�������=�:��Hr����d����d�g���qw�2�u�OoG�6��J1t� i��k�(BV�	�/&� ̀VA'���{��a��c2´-��������U��u������Ȯρ��2%<���
��@�<2�;N֬209����Y_�Qz��<D{D]�1"����ʹEb�{Bآx�����;��C7�p#�3w�S?�KSd����jC����"����E{��f*�$�?��R�'R#�&Q�3���Ks�r�s槶�W��@�^��ކ�1��cΚ����&�-�|�J|l ��>���
΀�d^�3�P@��Uy��\�d

:? E���vj������2�����EUq���J�2i�H�`H@'�&f����5Hm���Px���� ��Y��1^�I�ޏx���ۦ��F���WIwsA���A��;zcnM��N�I�4�� �N��I*�M�<�{%���� E���5M�O��@T�]g7�����IT�	3��I������M�嗗��a��/��~�&�!����2Pd!���
)/}{�/��t{Q�'R>/��f�Y�f>M�"
��Tv�Ǵ ̞NR�0p����@�&>�֣�l(�^�m��]����zv���`(�]�kĨ�U�%��$�j��1��A���� ��A���8�3�2�r?��AΆ�T�뱘��Q*��q�h_o��(��@
r��=|"@$("����:a���lK��`T����u	B����B��$q;S}u���F�����{�̨=�6�GSb��A�(" ڥX��"�<ğ��aՅ��!�YY��Z�d����+;Q���j8�>SP�: E.�/
��(ľ��~w��^��������(�m�ǥ^$c�+{�����y���c��I2P�B}Xf����nw�Ҍ�Z�!JB3�!T��Dۊ0������]ak�a�@`&�A�=z�	�x���U��0�4X��@�gc����QP�B;Ү����u* �'U�0j,IvɈ:*Ϝ�l�aH@_NY�箴��ה�wA�(�l�y7�R���̨A�k��PW�u�g�24�N����BR5�l<#�&��r,}�5� �P�|?(^�pr�y6���(����b���x.LQ��Dws!Ж�7���z�ob&��4��9-^�pr��)� ������R�BS���w��P,%Z:�?M "u�E����G�����@�f�,�%b_l�׋�L&��(��8�洘c$�
I���_�x�p�Ҝ�-E�9�\���FE}q~U^9��$�q|S�Ta�Fā��@����J:��>���,!����?��GDr8�#CK�(�1���@q2i��4�e��D1 l͋^���X!2s����"��h~�~Vab�����ss|��M#��BS�VV���*�%��\�׷�����-����S�i��pAJBdڌ�;? E��q�G�]�x�-2L=�7&��y���DIF푬5�
l�x>x�yq�����e0v�fLYc /����y�Q���ۥA���=�����y�uBB� Z���臿	��$�b�+��п�I6����f�C�l��2i��}�y]�1b��}��]g�2�_�� �O�)�_SG?[kri	��(�L�oy�5�ve�t�u�Tw&�`���8u,��l4ԩD��ē����n�S�>u��6��]~@�83C���C\��Q���DUGV�x)K�D�g9f�"�z���?��5 ��~d��#�=qu6!~P��İDU�p_��sͻ^�f�V�8-�������'��A�("�2�M g^��9�"���fQ�n��e�Y�;IreĹ@��"�HB����89 ����W��J�!&*קi'���ׁ��!H�Jj��ML$�X-��z�2ʛ\�)�p�D��N
"b����!�c�^��c*@(��;0�}�7e�O�3>��;��t$.G��i����ʊ+5�}�,��kƥ��(�F1���5B�͖��9���t%��˚����$gig�x%T�Jm;$�����x�5�L̼BAi�Y}�	��8�����"i�~�B�p�_���T�֋��uA�f��w-�Ҕȡ���[��3����x�$�x�5Q�'���0�Mr�9-ad�H20�O��!nj�1��y���
��n݋g�*�@<�Da�����JmUjc
9"[�a9æ�TM07VS��&0;�>yn�7Sܐ�6c��@�gf?}ϸ0=�})�ֆk����
������p6LRU��,�+�:�XNLB>4��7��M�v������p2P�4 A���]=������p�M� ��7U�Du*����rh���&��稆%�gG���@?2P$
�7���%b��'P�)ѴX���?�n�_%�d�6���a�S���̬ ��'�^��19�4S��;ZL\k�p
"Ⱥp��B�,q����ሺ؝�E��C�H�r�2I��o('H��(�2x|�=^��l	T�>�S��M"=�u���ϙ��5���"�03�G�e���+u��_DT�r~?D�^�ݸ��`�]����5�dݝh3ǛI��M���:��a���@�(������س�7Q��b�Z5���QM�$U��/1<�J�$8�}�3�ڇoaB�~&| ���x~p�@�(�d�'^�I��*�#"��р�����}�-J��͇r���n���P�'j`e�?3s�3������̗�x���@��F��-�s���k3`.�P��ھs�3����FT����(�̨#�=Q�i��W��m���rh}.0u}10!@??�NF�I�ن��«\v@�,4~@��U�� +(�u��H=İU��x�u{�ʦ�8[D��ʛ�XA�k�$PI�%�> ԧ��&�-���`(�}dUG��\���AT�#Q��8�#u�x%<5�3�.
�5w>xS��,�0D8�{��X��@�եr��2�����P�yԢQ6ϵ˫��k��Q�v{�v��Tu*$�J4�&Y1�C��p���$�(�N��?��(�X���9�
�i3�� ��Y(��=�G����!���P�eT�����No���Ь2Y���Wb�7�xN��ޜ6X	�dm~N�Cm���?? E��5���!�h4�}v/�����=�6��J�nw�� ���w�y9����N//'����?*�ϱ���	d�H�|_ei�i�a�į�'�rq��x� bwۡ� Br�iW�7�P�u� N}��U��+�MNA�o�0��Ջ8�x<W�~�2����(��U���P>\4!zkJ�&��ʐ���{3��0=7�(Sо9��#�
�qR���Vd��ue���U]�SAJ�w3��E�j
�M����id65��u������Y�YP��,��l�ad�����bvLT�j�#�U��(I�Q_Z�ݏ��7��$R�x��$��f��l�(�
�{��`����O��KݔA.y"�@ՆI��^��D�Y�fʃ)ҚQ��˱���l����ee��H.m1�[e�*޼e��.&�4H;���x�I:g`�@�>Ύ�-�:�{f�ύ���T���/��űA����ɭ�5 u39o"*	�rG�~�U�I��}���~���@�`���,��{J�Yh��B4Y`�	@�2PDZ��H��ˀ�����K�-��P�X�E�4aN#��w�?XW�X�A���ҕNt�^O�9.^�l E��P��a��?f���|_6��|ǵ�Dܬ0s쫿kE�B0*
D�LJ&��B�l+q��͒F�o�`�@�<��!��)�Ƀ02PD���p���k5����hP_�C�[�$�g���g�cu�u���QN��$��U(�ڔ�n��W З��-�ad��4	�"�7��ʩ3e�N�q��B���#ɞ��*w0��=�c�Wx*��D�I"�q��{�ڒ��E1?@�����q5G����2P$X�Gcè�.��Ea�����V�ܾ��@���p���I�5%(5!�V�NC�:'x�B	�����s4#�P�@�k!��~�<��Ψ���@�m�cE�+�$k0�2�O�S�ж�˺�H���]�r�� x�<@�N΃6Yt��1������P6��"��`vs"8�D+�O5�S}� /��s����&�ƃ(q�dч:[���"�5 g����@��99��G�!w;^a✀�2PD�O��A�ժE�+���:#��+�>|�5;���X�Q�y��-0�5B���_o�쟵"�4�e�d�m�Ḿ>i4Y�M1LS�{���@�7��>�l�L��|�:�cđ��u5�L8�F���D�5/�Z��:2��w�ZMDBclڔ�U��0 �()��O5�3�'����"o�|�	���X��nj��B\HKD�F�P�/�K5��6�"P�c�(x�,�+#
�>��8�t���v�[L��@�Ա��/��:�&�h���0��0j	����a����%�y���6��b�����B:Z�Q���K�-#�1�A_y]@��CD�s��_b�@����1��o;kFm��\cX��PumD��8K[k�da�QHR�C���.m<�r:0*��JR!���뒨i�JȂ("~�u9[�i<�xF'�@�P4���M4��j�ԍ�RE�ס�Ѵ��ȷ,q�'���-���A�$$�EV' �X��R��T�>Ґ�x�M���ğy����e���/�A8(B���ķ���]�.�/ͅ�PD{(�U��j"-ص�F�GYr�Rj���V�Z^_��3�4��j7xE
@((B!����F�x�w�q{�u���D�1$H�1����+�mA����2"�#��U��i�OD�4�yp����h�
l��'�p
@`H�e�hܗ���g�0�l7�J$��2:�H%V�":�
��)�U#I^4F����gQ�C��̻=��u?
R6�p}��׺ ��7P���@
�&�G��l��Tp��t�H�5h�Z�����-P�(�Ĺ%�����.Gđ�̹���,-��i�O�̨�W_턙�;�>2��j��nJR��u�'Mvyy��c��/&Z����E�$$�\~�a��({:0W�Q�a�@��|^���9hP��k�����W��x��ᨡ	rdF��d	�c�~՗|dY�Q||XQ��"�Ek���љ3���c���4�d��T������Cy�����@��2�R���۽��^�hжZ�jGg�r�w�ݾְ�T�j@��D�F���c
Y%�Ʌ��QV��+1@� ������p���U=��D�_L	ϣ=�@D>D4���([2x�ݬ����wxY�#�	�Մ�f��>����[��|��N�y x@�h�����6�烗�>��f���g1b[�em��#"�T!*��I|�H�{�
p2��ng�Q[+q��,,O&�$��x��@8� ��vp���^�3;�=S���y�PV=�R�Y�
�����O�Z��~0����`2����Q��E7E&��O=>�'�%��Y�6Y�T$�ڊ#,�ֈJ-� g�W�]�1�+����p��%����T�'q�I�����/Y�^�02Pd�?��x�YY�e������D�Z���T�[��?Κ�?���h�i��g���8i�����k�9nN��S�� l��m*.�W�GDmq�i(~��ώ���MSf[�%R*'t�����ǐf��\���9�E(u�0^u|*��T��z 7Y��L	�@@7�z;&���b�(#���,�P�`�>2�-�b[��?��/MK�����'b_I&�x>�H#�^J6�:D����@B�@�:ds?5\�&�����?h[��l��)�m�0G�0��t�(q�j���i��x��G�<�A�(R�l�v���f�i��P�?�ڲ����#֥_:����y�;�_�-N8g#A�<��-�X�W]���ș-�0' ��s\��WP�QMۺ.>+��+G�۲/7Y/�V��0D���G5\W�Ʈ�U_�nϨ���ҫ��$\N���ʆ�L�{N@�x��������P�ǥ�{$��!��Kne�I|�ډP�Ko ?�z�V���)��85>OJ�(D&Kz[s�3|6@�`�ሜ����V�!�$Uv/?�a}����HU��3_�^� j/��@������i��٦{��2�N?咐U[0�ad��69���ǝ��{�x�x*���R��j���nq͚/"["q���7c�7��=#��Il�-�	���
��"x|��.�{�…���A�FE9�5<�f��P��J��ؠ��D����KR{�� ⛡���|?T%�L�C�_�Ճ02�
m.>��A&�o�ˌ��Pwպ�J���a������P��)qxGQW1�=�t��ד�]�>h���U=��l E����$�g����XQ��k�;qW�\o������'Ik{�i�+9�d�>���9���.�-// E�	�Gp���W�:FIW�$������dX�eK	�^r���H�B�&y6��L��/nj��v0Y�ۚ#�"@���M�ﮓV�#�?w���>)��4e��h�L�����D�+�B�N���/h��7����ΐ����9�6��"���Cv`R�7�r�%���o���SE=��<���C�x?�+���
�b>hmż7Pߴ'D n�<Я���CT�z|����uaԑ�K���B=S}M6�0D�d��jU���L��O>�J��������Ա/c`Z�S��@ @�l1�/�J��OuK��e�G��g]�X��!��� �@��'&L�A�i|�+jsDQW�q �٦
�C9�>��
�l��2Q��(.�%���3��$��S��M����7����<���@x��8_"y�x�e�h�ʭע�HA���bT���E$�xD��`�*񉈯�R���#�Ce0���(��&��Hx����zA��98�5���f#���A� j�5�nbt�c���/>_�,-�>?�rA��~����ч��x���A��zx��ן��J�p�ad���v�(?�:7R���h��5�}y���V�~t�)!��!H����ۏL�9�a������g��R���ad `4���q)�U[=�*D4��u�E��>s�N�!�x�gso�M�d��j�kx��3+�Wx���@��ѼRr�t�<D�C��w8���=�+Q�.���q�C��P���o.�E��	ad ��dS��>Y;g
�օ�n�ne#�Z��\�|
εc��d���s��7r�cd
�@ �ԣ���ƭ)|Ё�����i�Pu�w�s�MU�;fu2����h a@Ч����Ab���$ߋg*B�@@7����yC�
����ʨ���AU���>�dP�pM&�\g���0��Y^\0ڷ/c��0�^x�MN�{Ȳ���=�`����UUD]��V%��<�21g���ЄiRx�Ф��������#&&&333...G���������R�nhmm=x� ;�СCM����USS�>4��R.���+��?�6�?���G�y�_x����t��20����6/T�~��96��"��`�Œ5Qp����8��I��BT�&z� �Lgg�#G4���SSS3222S9q��ҥK?��󒒒���o��F_����ڧ�zj���}|_}��?��O��v�iff��]8p�����~�);��:t�����a�eѧ�����n۵k���?�p�BQ��)D��&�����U�`h@qS
Aq�l�(� �@�x��|[��ibzXT�9'�}=��ԡQcSG~I��8�V[��¬�����B0�=�ڎ�	�;����n��F��"IN/:::�F^^޵�^;e���ooo��o�|��aÆ-\�������-x}����������n�GA�ߴ���uvv��=�pii���������t�������}e���|OO��z�����@߫<�y�0�ad����j
/�C�����(A�M�8"�(���'�"%���(�J0"�ԋ@��~H\�H�9A������,..n�С�:����������ۯ���n���RSS}��СC[�l���y�N=�Ԯ�.����Xl�Lqq�~�����E��7.x��{�9��Ӈ���e~��Zkr�#�5����7�x�ĉ3g�4�
��_>��ӣG���_���@�!���'g�?���wӇ�H�:.@�Nv��v�W������F	��mK���\�e&��dd]������9��w��uj��9��3��!C���1b�b}8��o�Z�j���{����IcccKK����̙�~��(6�(�����RJJ�Yg���n�
�����`�5!!�����C����t.�@@k���;8��|?&q�eWDMK���d�ƾFL[�$P�A�R�$��1�]�+�Wv�R@4�(ʖ,�g�~�w��+W~��GW]u�f�P\\\VV��А�����;|�p嫊��={�l۶M����^V�|��3g0�}.))ae��뻻���Æ
c5���֭E��SOMJJ�jmm�����՟5k�����ѱy��Ç�JXX='N�`�G��7R������Ș4iRLL�UMM
�k���5{�:

����Iػwoff�ԩS�ּ�����J�������#F���kꉎ����ڷo_UU����6y����D������۷��M�>��\�^WW��~vV���IcQv����ݺu�Ν;�Unnn���OYO�gv,}��j��/�ĩ D�\)��A�����@����:Z�l(1��גI�D�(+��Q���B0b�LO���؞"wD����ͼ����"���_���裏.Z���NS4����%K�|��'���MMMIII999�w���sY�ظq�=���j�X,EEE��z�`[��r�ʘ���^zi���555���===��Ƀ���+�ӟ*BLKK��~�3��o�1q�D�a����w_WW�mРA����YK����@�����3�>��Ǐ���G�����c�=vꩧ����P���o����k����]��U{��g�_�=z���-[���յ����ű>���.X�@��؇;v���ݾ};+��ݝ��:a�v��͛��Ұ�/^�xժU}�∴t�ҷ�~����A���k�jc-a���v	�����NV�5�W^9��3q��q�����@���1"d �J�����RU�1�q��J7q��-�vG��J�,�W}�e�H�C�!���?���o��f�ڵ�������dÆ
Æ
��[F�y�ر+V���ˇz����'O���O�ڵ���!C~��K�$�bNN�_|�����w�y�dU�_��駟5j��C�/}jj�#�<r�ȑ��z���k�e�c�:u��0k-�#+�n�:^���dg�9z��w�}7w�\嫍7<xp�ر����.^����>�2e�M7ݔ��UWW�u�VVITT��;������;�lmm=���njS]]�jf�`����gg���H�w�y�'����?��ٳg�^���z�jv蘘v��z�;v��4x���n��b���q���;P�����,�l�~
d ��|0E~��a�8��(���C\L"�oU�ͺ3��!DZZڸq���ݻw[/�$����ׯ�9s�%Kg�[o�����_�f�?��zh��/���w���ʒ��df̘�x��/�p�����X�t�ܹs�%`n^ٹ�7`����߿��?����K���9s�����7�p�7���p���yyy����1/�Z�����G�#^�Ǐ���&L���ofgg�orI*--e'�ovwwwtt4;cg�q������;�رc��/���SO���V��X����ֲ&=��JvE���333Y��o�����[�b���oFx ��!��>�Hɢ��A� ����Ӗ�Z=���-��ܺ1�Q�zQ��f����>'&&&77������A�)����%%%=������������^�zumm�+���w��7+�`���p�BV������>��8�9r�I��m�v�y�/�&���󬬬�[�����_��ձ����?��k�����舊�b�7�(���A�X�X��n�MрC������G��6��)+Ɏ�_#����*��avf:d���_�ϵ{���A߇1ѿ#�"�?W*��R�sI��f�5)��
L�I?��bľET��J���Ӳ[���$��ԛ^�i����mllEQƼgϞ������~��'|II����KKK+**<�N?q�Dqqqeee{{��ba����;v����W������3�8c˖-o����I�ؖ����˗O�:����b]~��wYg��.���ݻ�n�z�w�jg~~��9s6l�p��Ϛ5��N3fLAA�[�u���.�l�2eJbb";�uuu&3�GGGO�6m��կ��ʮ]���ǎ;a„�?�@?����3>�G��N����@�O(C#�8օ�`�ǞM��Y����u���M"|1g�!{lh"ZS��-9*���da�lZZZ���/������������w����]����M����O?��+؅SU���^�WI��L����?����Z�vm]]]zz��������3f$&&^~�寿��ƍo��vvV�^͎~��+^6rrr���?����-**:r���o����u�UW��������z�&!!��������m��?�яXyv��nÆ
����M�0��g�p�T ��V_���b�@��qv��OGU>?���C-�<��b��)N�&������c-cS��+ˈQ�h��Ȯ]�6mڔ�� �8p`\\\||���>j(.H��&�qww�ҥK_z��ӧ/X� ??���ꩪ�z���߯���|�!]]]uuu)))�LL�0a�ĉ�֭[�jk���?�S�Ug�ԩS�Lٶm[IIIjj�����>�삂7��4i�￿��޽{�?κ��O455��W�R���M�@���/o���-[��Kv������
6����s����@GG��ݻ[ZZ<�`��َɓ'3��'ʇ���0�RBM]B�06@.�9�bE�n<Db�Y�����ެy����-��#����#ۼ�#r��(��2�U�qH`r��!ȋ5ar�?�BA���ÿ���***~���M�2�m7n\ZZZuuujj*5�$���~�arr�SO=ŧ�///����_����A��ݻ���RS��͛;;;=N�Xv���1Ӷ�~��Wk֬IJJ:z���ٳO=�T����x��{�
,KII�<�q�Vtt�t�maݪU�X
��u�]�FB����6�窪��{�����e�X_�8�섘�:�!I�[6��sc(�-`V�+�x��g#�D��NnF+�XF_��c�t�o��x��4<��#����c������yK��>�X?܍n��PgͲ�����)@��ߚ P�����߻�k�ΝS�L���;����WÇ�7o^KK˓O>Y\\���J���]]]����~}��7�9�G�a%'N��j[�l�s��w��W^yEn�{���cbb��3�2d����^�����K�[���1cƨQ��/_�t�ҡC���+���V�^��ܬl�X,�&M����vݸq�]��?��������۷79�%�s�9s��};s��_����Cd�sB�r�cO�� �
#'A����2��̷�hQ�B�+�.sm���mc��3{�"oy"6���������odff��������|����s{�g>��C���eQQ���/v�ܹe˖�����K.�4i�$I[�n]�b�aРAW\q��å�����;y䑛o�y���'N����/�����h�<t�m��\���?.//�?~ZZڞ={�/_Ί%%%y��#F�(**�׿�Ŧ����UUU��w��Z�_~��K�,a}��͝7o��U~~�\��a�笳�7n���_���?�1;-s��=ztzzzee�{��~^��&�>{�����%`��:u�ȑ#�F��[o����z�9��P�Ǐg�]֧�z�������_��@8�L�<��_�����*f@��6,2OQ��x5�5,�?Q(KQ��@�20FN�C�u05doQ�	��aV�F�k@\ZxU5��>��;�}��d3��Bl�X�����0~"IRKKK{{�3�<����RSS���'O�|��~��W�쫿��oK�,����_~����Vv!RRRؼ�n`�(%{zz���XeK\\܏~�����׳l��x��M7ݴ}�vV!�y�ĉ�?���O?�m۶o���f��:u��_���ϳJ�¬#��ͼ������;w�d�`��O�~�W�3��	9���Y�uuuw�u�k���O?�u��9w�\9��Bww7�f[[��kll�Y�8���(G���ξ��Y{�F������J����;y#���jnll���
����\��>`Y���6�gG<��s�rrr��g�}�������OY�k����y�@�1s�Lf+�������k�����k��a�Dy��z�\���	�G~�%�7���Q�(K�-�.>SG�&9���>��q�Z�YaP>�M|m����e�>�����ڋ��߼r��-�o��^J�_+���>:�5_���\�J�]�nQ^OR(�~⼭�'�X�둟�R|�8A|T9�3�S���O驩�80555�\�Rs�������222
�>saa�'*++Y
C���˓��)�o7m��j;����۷o/--���w,((`%���.���$�0+VTTTUUŎ���?a�6���o����=�\%��_|�j�={�&�Vyy��m���l�1cƌ7.&&�U�X
�֭khh�;w��v�֯_���s�駧���_;v�����fSjy�����NNmmmMM
��`ݜ4i����nÆ
���gc_�6�~�q�r��$�ZNO&+P���lKEE�Yg�Ŏ+�x��ђ�V�������[d��133�5Is��̚<�쳚 AJH������>Ue����(�%���+3Ce
��1J�4�>zg�+��8\�:�6��=�?�@�u� �7�9����F�<	*Ϗ�����|Xt��w�� ��P���?���D���*]�N���A�F����qh"���	�I�� h7�@�iT�&�)��($�:r�Ff��0�� ���!�Y5�+I�&�:�ji��W�Q��cDHr�2��RJ����ݢ�N�y֬	�E7=��d��x<��c�}��w��i�ԩ�-�0aB�^�+;���%!A��2BDc(x�{Dvw����]%��E��?��n�(�z]�8�p /���MD.��PPPp�u����)���p�������U��V��V�	��ҿ�m ��c�ܙ(��C�AT�	Υa��b
�C�(�Y�U���A�*���^p��'��ܤ��5�n8묳.��¤��������m`�i��yl_��ĻRN.����:�C�5"	��}�,�PE���*�w�|�$G'����42��[�-9<u�O�xCVO#J�Rf�0�Г��r�-�̛7/!!���O���[322pZ4!^��W���Z, S0��ȹ�V�$Q�C��I/���T^�i��L�h/�X>Fx/!��.���x�vA*���2��oLJJ:��"6C�����x�y�B0�VD]B
�@�h��>YX �Z)��p�	�%P��������|vW�:j�'E�Br/uD8S�NͶ�S�L �La'���ʑ��@�€K�h@���!HT~U�g����¼�#uu�@���@^&�D��B5�0�eh@���Ϗ��é�U�`M�u��\0��vL}�G@���I:.�z&6)HЅ���(d��ʇR��0A������m�[�N鑓[�z>M=�%13ck�)������C�o�J.!S_��Ax8���a�S�C��)H�/�%D��rx9(������$�V�
�+�9yȸո�i�p����	����c4�Ԫ9�v����ą�Q��K�6Ø�LP��+՞b�RZA�%���m�f��7�(W�~d �C�5\���#�]���Qk:w���������/0�c�����	o�`@`�Ga1��˫�@����M��@�g�d����X,�g%�j9�ݐإ9D4��}�-����)A�$���_�hۑ���L��������WWU��՛�խւ6$!��3<3��1��6o3�Ë���|���6�Ɔ�
�`{�����B	��n-�����ڷ̬̌�b�kFdFdFf����7n܌<��?�=�����/�3\+���R�4�����h; 7g����3����޲��#�pMF�(�_PM�KS�c���yfd��;�Z�	���u�A5������䉎�@GJH��@g�8���f
kB��W�Z�z��{QJu���x?հ_ޤ�#�S6�6X�X�:&`����z�5w��/MIrh:	�@ ��(%�r��1�Fky�U�P��(�qL����#+����Ȉ�J>�
�qi��c
��D�I��yt��@c��i3��0K!1F�fF�0Up6��U2��6QKQ.'�
P�'\�.8���@�����b���ũ�(��/��М1�K�� j�o�����Lr"#/5qtTͳ�`�p�C=n
=d)�V�����A�EY�h��}�P�5B͔=��N)O�F��3y�ǔFC��.��B	
������A�94�?d�|
��q�����^���kj����:�u�y����G�LGBm-�kZd �6hw�JLu,�G.�f��"�xΞ͇�k��5,Q	-RօW�j�ʤJ��b��p����<�쳟��'zzz�o��lb��u��o|���:�謙�n�m�s�s�W1�r׃J{y��S�Wa�J�c�<��M��@�*��$(��$&���hh��O��h(j.�����j"��.�WW�'�0�3⍶��C4�G�@ً���8"Q��0d��wܱ�~�5E�Z�r��xj���B_2��o]w�Y����^�5�,�,��[�=5�G6l%}N�R����j�����[�J|J[G�)�� �0�*W	���˦%��;���k�j����k�������XTe8D��H'�(H�P��:m
5?��M�AEVs��S�%Zx����#Q˼6�-���<0<��:t!&( �
�m^��1��K�:zp����|.�ʫ��k��D���a�-d7�_�Mz�}Z�#��UC��|�4 �Q�hX��]þ�/�d/c���\��I]��u��/�I>�s�\{�V�)��*��r�ϧMx��N�
�H�m�*51-�Z�7�O�_��@��u�L{���rFQk�=�i�:��W{��ݘ���-��LqG��~t���Ը����� ���
hDIt�#sտ\��B�j���
a�*�y�Թ�������fa����
����#�j��(�e����$�Qjnd�X&�9�^V�y��Z�M���j�_1D�c���3��8	:�
9�I�>5�$�W񒇼*�*6GK��[� ����Է0mb�l.*3���|Mg�*�#���a�0"z�P�M�r�nB�*�C�N-\�$(q�#�)ȿ�
;w�Y�S�	�c�}v��<׹�ac�8�0:��^�c]5AQ!`t^�(E�A�ْ��\f��U�	�Z��b���h��j�����^��}����X�P>�O�	�W�8l^$d �HR�	勇��R�]������.a��%�� }R�D��(����橉J@�XoB(qi�ޜoC�XUI#�/�1�@�*Ny�W�tr�I�kV4[m�#ڊIN�ja��\(^����X�!�De�`$��:��Tw!�+#F�(��B��C�ܵ��D��E]#�Df��-=�2�L]-^O��C�N�pH��,n/ۑ}��U�:�;�	
Kov�fΕ�. ��+u4�i��ʚ^j,���g��!BV%�S'�1j�9,9�LÏ@���F��j��\+�Ne6�����,]��d�@����a�t�����E�rv�w� dn�Jb ����߆�Y�y}N�q��M�Ћ� P��1�^���4C�@��W"���>��c�7NS�e#�^�Fn U	�ĺ���Ha��4�\����6��B��c�/h��u�q���1J �)Z�,�>ѫ�O�������y;��qH,��c��_xN\,���!�$�Q�{1���C���	�K�(��L��8g�Q�������@�p�+��x���R��o��4��Wӌ�9�K�y�mģe�,���9�"[�Q�H�>�����@ ���>���ԯ�62�&�9�t0B�tє��!jY�9v2vۡ�PўwȜ'�니��=�@����gb�d �G��yv�R�FRhS��/~i^ߺfoi�5&��O�z�`��5�@j��'jb�Ԋ�� �d P��ER$�!G�`��C��;��$O
�	�Ub���;՗���-D4�K�Y1�G-@l�8!�(֡�����_�!@�@Vk`KܣH�Lg�m�BD�
d�vK�L����(�(*q]*�����J�@Re��:�b�_pSg���F@V��������o���`�yk��i�^�pf؎�:����X0^��ϙC�I�vx,��!����	^ޫ�O
�D!���w߷>�cT�ÙS���.�e�J5�k> �r2̂�p#�<��t�c�?�:�j�9b$�@��QC�d ��yo���c��ʈA�-Ls8c��:#�0��9����&�Z`�NH��Q�t!I�����f�~�և�v��nT�F���b�
@Ƞ�3�D��4�����+��oݬ���Xd�f�K��
Y���GL�!�0Z���}�h��3I��/\�<hp�����.�
굀Ͳ��Y^�Қ�Y����k��f�)?�9b�������N}z�^@S�s�4;�x�:�@�"4�5G#`վ�����ه{1y�0��3K��:Z�I���d�L+Օ����X���|l�bMp\�}^�1о@J�>�&�>�ZCK���,f�0j���`Q
�!��#U#5(Y��,B�d�U(mwc�Y]��0��㍇�
�3��Q�wO�[�Z���@���Q(�
k�0e���>љ#
H
�ᩙ1Z�/oTL��)��2F��Ӥ٩�@�h�N�Ѧ��5{�rЀ@ҁ�b�Z�u�&g1���ZJ#	�h�1;�g�A�g��Ӎ�u�y�7h���1#���*�/�tKΫ-���C�2P� ��@���
?���&�Fd��E��,	�ͦ�*�4C�Sn b��J"\�+lS��V(]�H����P5�vcP��m��$�1�Z�g���E�u/�T4��n�tDO9R_Wb�u��E��rLB�����;��@-��Z=ǖ&{��zJhmx�#c>�d��5㩨��_�.wj�b�-Μ>��<��@�}��Ku��nk��/����uK��՗	��躐u�xM�у��d$v�\��zb;cs	2�>�vTu	1\ ~j���i}�c�x���Exhd ��6�"���-sp��c�6*��
Dqۑ��B"Ę����@shd"R항�*��07�KI2�b�n��f��,:�f�"�6�3�dчΘ7F�]E�s�O�8$u�xΚ����DbP�OQ��@�QG~�fiv�n��kGsB�zT� �5S�Zg)��z@�mޙ�ba���:��И�=�	�@���1s*�1�]��2�z����}k�e
衚�|D��*qKx��@�Iy�O[��A${�O$�@ �M
���WO�9b�1Y��6�~��ϔx�I:�
d�^��l"sڃ�8����Tގ�3�Ng �@J�@P�-k�E��g�ti�񽠵e�)1�^��c|%�gO�Fʋ) $��2�w~��^��4 �Z��j���;t�R\���S5J\����[%Ƈ��� j;o㤍�f� \��^qhE�q���
N�IHxZ��@�>�1�Lrhڪy�����nD�h�t���.�U��d�@M dD1z$����;��M
 �@u�$!���Yޥ5���"l��s��D��e�GYMLQ��G2f .7�y���c�0���Ix���@�{<p�k���{~5��$�5��R3C����P�o@��q�N��C� 5@J'$l!f��Z{E�qx�F�
[���|�lA�D0u��Q�F9���eŔ�"8/�e@x7�U��Z���2PJ�W#E[�b�_[{}���i�ό„W�#�r
!"�6@S��3�E0�G�^@�,�C	�Q�4G-K;��ə%L9f	0�����F�;#LލKMZ5��QX��F�)�TS�9=��u��u:��8�a��#O��@ b���х ���C���o��T��G�A<���h��ݝk7��Hu�EԺA�62�i�Z3�{���S� ��,	o�ĕ���5�){f��_�F�8[=��S˘�`�@shB8��!Z��f�n@;�l���S�j��bW#��F)������ô��5�d@����?Ub�x�8S���p�q]nd����9?E��^B�62H
ֱ�tJ�ύ@ G~h6�GC4�r��yVs?ێ��L���4I�؏�k!��hJ4�	@�Avf�q#�r>m9.1G��yEH>��@��6�nN��G[�]}���5�:�򩹋�7�����4���ƫ:�{S[8�q3�.md�t�ɓ
=)[�0��>����eN�EҢ�،Aڃ%�G9����\3��9 ��{��c��͟�x"Zd�tR��
n�0�fzU�Q� #"�1�(���+Z_9^	��C~D�1(+�I@ZmJ��uI�6~��Ƅ1�w�ú��Ś�Y�S��%�D<�?4�@��>��a��� �@m�\U͡�D/�v�x�"�)��m>�C�7�<3+t�'�P �^�d$��c=ts:�E�E	�
�@�51V�մ|�ccƚ�ࣛ�=�{��>��H�V�vQV��t��
O���@{(]&�9����eH�ߑ�i_FPe�D�J@ђ�5-4�3GR!��j��V�:�#�mrP�T�4HW$
�@���׻c	�;�_�b���jj �����P���`�v�SNS�#���բ�,�� �8�&��d���L��Ó�Í��%u{V�Q��9�=R�s h
�����D@� R&�E�1��c6^�M��6��r��"Ն��bIGM���v�����u����@;�A�ֆ�:G��`�q�c��u��k�S#��Yi���	�:�z
�M�Q;�G�(V+�juK�+eQ,�ժXE�ax!'9"d�������H:
F��7�ࣄdc�����*�{�M<�M���
�w�YDL֊(�xe��6�K���.D��_��l"�*���(Ҧ\X_>������͵�Rq�X�/m^�*<�U�JX���n���击���C]����Cc�����D�-C4y�ju��'�����2P��q5�4��-�P��d6n���h�Z���D�Q�TFO�K�g����?�>��i�1g�
92?����#s���.}{u��V837�z�NȢ���T��Tָ�U�^��L��ÇGn�������b�H���NmK�=E�:	�@��-	՟A�Z�˲a�v�+bU��1/LTS�f��%�G9K��m~�"��r�K���;��3GO�-=W*V+[�K�Ѕ��r\�۪�~ke�[�W.�9t�ɽ}��5�߷��m]����D���S(�)H�V�XN;�0 ��fY�7���p���4��L�nZ����b�����4慙5�Ŝ(�|�����S���G6V�˛pB&���� y2��n���onH�p��K������ޝ��z�E�}��
�^�J��h; �מ7a�U\�a���
'�Nͪ�P��&��畈!�Њ��@Q��s15�v�m-�J��O��O|e~�2�:��@`�*>����Ǿ��SG�;�ݹ/�蟦;ئ��~gax�L��@'(��2ə��.�s��l@��n��c'��+������ʈDDN-�A�d��<o$r��`P(��Z��:8����<�˧�2��$Arm2ƒWg|�˿4}�y�M�!�tvݞg�}]˄�T#�$�=��慁2P�F
7�'9VLY�Rg�������5��a>��ʊO���i5��jP���od��
(,��ճ'>��Y�WU��H���Q���?����}ώ�<ܞ�Xӑ8U��Ì.H�U�x���j����nfv�����DŽc2a�ٞ	3cL���E�!JViJ̖{�b�((A�Y-?����?vX�Ұ��p$GZ^z�/�7���n��"_ݩ<MD,y�b녁N2P
-X��W�`#1�=S3ui��H�^�h��S��#�%l5Ĝ/fk�R\{NE��Q)�ja�}����A@����$'����{�y������\]R�Ә
�qA*H
-��ஃ�2P��Ւ%S˦�
F��#Dȡ����"�)5�B�h ���Q�R՘#%�ц������b�#O>�ɋg9^��h/���������mw��T��ب���0�$�5���A�(�$ڐ���mP ~�c׊Db��l��@�jk��(!	��6Ơ���9ƈ�
B�R����ó'���@B�*��:��d~�Wa��=����������ԜXgXs�!��2Pz����A��_�6��CҡzP�:��h���L=G�L	kˆ����$S�T>v��>&��1!U�����
w�B	
�"3ZI}�I3�^9�i���d��%I�8�(7F�guB�=o3�qrn ʜ�"�}}y�R���_��Q׀$�W2�(��,���
ª��)�ؑ��Os<O8�f@�߁lP��G����@���F6�lG,Ǹ����		:�h#@��:�1q/���nH<�k����raK�i}�1Bq�?	<r���=+}5�@@G܄R�V8z��;o�>���:�5 �ݛ�,
Di��i%q��j��z����s���T��Ƥ��B$g�e�H[\L_L�E�Is"t,	�0�yszu�w�z�$V9���;�ιf�J���w?q��w��?B{��x��K�|�.H+Թ�V"Ƴ@�s&��<�E"��.K���Ŕ�̿L�
�#��Al� ��^TD�����k��/<8�g�w���
����CƔ���@b��6l�
�s|#�g�!Xiɠ՗Ɗ_�a��VS�q�E52Sҏ���Y�#��d�qC���s��~��9�@:^���c��N��AtF(����@i�Q��V�n�I�LY���FFg1��xfDm�N)(����>�<'R���K�Z����ӟ�Bou�)��u���r�فt@B��61E
�	#5�p���Nt��شuq1�2h�Io�P�8�T���){��i"6���ɣ_[Y�v
�`*����|�G�\��옓��j��Ia$�^�
��A��q�B�WԺUT7����~�T�8��,��j�iYR�(y�CE'W��6sQ1R���oHH�V�x��]�;�����Z�s�� V���M���(9S<��!����6�\@��C���v�j���}D5�����ѡB��0:��_<������D����\|�荀�'׊�pz���.H�-6W�2a��l_Ʌ���KI��������sD$�$�sjl!ֵ�N
�d���X)?s�8'�g!+�U���c��ܓ�t��y.�U9�a�	�lJG��
N
K$�9]Ԣ�i��'�i��Y2b;��1[xb��c�=�7ֿ����|�Cz& �ˋ�3��{������Ir���-��@��X�ˮ��mv@
�,F)3��9lx
�!@�� ]�����\���1�4�!�iHJm��K�
��uJ�;{	2P��(ܜ��=a�C4�@�"�4G	
�khJ�����6P3)���gF�9c��rt���HT~!�+���/����i-�����~�y勂C��]�_>��ހ���c��_�d@����)c��Z<u�
D�6���.$Q#��m�$�U��c����y.��0���ZY:��	H!���/���:�&��'���L
�N��ĭ�X�����ԻV�c��%����E�RkQ�)/�瘥Ȣ�B�
��+����@�\Tr����+�����B�����@J�m���-�g�)�%�*���ؗ�7��'��b�e�0��ʔ1Q�H�&WD	�<��H"������><3S��2�:�T�߽2���7
�@Ƥׄ]3O4h/ a���jvt�,�DM�"^��R�Y*̹z���2H�'�/DUbR5�Sf�5v�Q�vF4��R�tis����&(wqcsukk0�Cg�t;F|	r.��
�@�<�cK�G�!���7�����c-�5e4��r�Q�O'cf��-sd���j��[�U��h*�y�t�S.�K[�H���V+�u�@��-����9�4 �2PJ�Ֆ2����(G�O�v���;3�sq0�*�T %E�hԯ�9�C�8�gDi�
�X0^b�R^��<H�=�tIVEN��S�x���Z��k��x>�{W�U�~5HH5���T�
C�dx�^�dd��Z�ҡAzQ�T����_)Uejv�T��tQ˩IUb�@��K.#�ڎ��\��V�j�RJV��E9�K3�W�L1K{�mBƿ���w;�ևRI��� �´�ƥ�vie?y�Z6�բ�� R�,���x��xh&���;|0bP��Cmi��)1�ї�W� 6'�������C#�<)L
����kX|�J��$��U^�H�a|�H��&�^96&*?�*G����å��`�ɻ&&���r���+�u~as�k���J�
�SN��߾w�(����(�V���SKK��j�Rm�}p߾]�}U1����|ni�O/_���|��c㷏���t��*'+��k�����\��^}b�g&'^56.5���|����-��]Q��w���FG�bO�^X��Wf�]�O���"�}��z����x����LFI���'�,���Ŭx���dO�x��/�-T�+��la������G
UL��+z��چrY�����3�Y_�w;�7�޻�z�%�������"����={D�|�K[���bѳ���ʾ��M�Z%�_:��q��c�����?��Uc�'�{Ǻ��Bv���\ܚ)l~��^�W
�wO�cd{��\j�\a�#�O�c<-��E�P��'���P���/ �VIB-;�s��t-#n�8�Kj4�Jrh�9/���Q��S��D� �'B�UqV�{�6�r��2ٟ���{wLVf�T:|�J�+�'~����e��R��R鑙�?y��g��Z|S����ܡ�|�-�R])��/-���G?��`������[��}�X���g���K�25��Ҿk�z�ީ�>�d����YY�̉����͋b��?�'���5W(>{�'�n�׾rB������\(X*���|�/���|^�^Q���7�����CC]]j�/]��d��}_��u�ƍ׽~�����.��ň�.�J?���s���e9Έ���}�&{{�2���=���<��\�{n�QݺQ.?����ZL��2_����fgJ��Dɾ���>p�hw���3���y�����{�{��7�ڳ=��.UE��bᗖ����|��9bť�++;{~�RFT&h�4[�lH!�M�iPp	(�$0�(�5��K�$M=���B\�m��,�&F�Kp����C����Ox^�x���Z'����2�LH��;ƶ������͹s�+��W����m]����MO���?>wV��y����r|.;�����7�9���=Qؔ�^|���޳`�Żz�>p�-���<*��G��m��ţ��؋��5t���/l����^�r/�>Ɲ;k���݃���
7��=R(؊�?55��R�VW�������#�g���;�ݱõ}<!ҹ�bbr���+���mf
L�&�.�8.x\�w���]w]�mص������W��<��3���0!�H�K$��6�"z">Az
�fǀ�i2Pz�X��y��ifk�^�%P���O0O�ڔ  3�Y@^&>)�qk%H�P9�)@�����їͲ��e|�.�w;�%��L�rU4�U�5'��޾�{��o����� �s�$�P�VEEޖlD� ���f�?s��K�G?��_YYv_�����F��g����6�L�R���$�j�#EJ������6k$Q����b�燻���Ͽ���~��g�����g���\y�~uÁm��=��[l�_244�ϳ��vj�--Z,7O�ƥKgE52��.����~�Ыw�0��lm]�X/UioF���&{z���,,<�Y�2��[�V�Z$�[b���j0�nG��|ˡm�:6_(�6+�J��P6�UE�sW�JU�rV�^e�ו�����SoԫS>����rE�хZJUDn��Ncs"z�v�Qi@��@K8��`%kH�-�k;�U+�#��|��M��V���Qj����/T�%��k�q4H���zz�q�~��R^O������LUdSY�Be.���\�̉��-���d�rّ|����߸k�Q��I�����T/��\Ҭb���ߏ>���޽wg��\���ݵk�>i��ё?~�ˮ<��SŢ{�bB�ۑ#C��jj�z2��:��q����W��g�M��\)��7��|䥷��B��w'�^X��*JM�u����P�~r�����?{$��w�\~|nN:q�?m�i����������L���鑣GWt��"�o�6|pxH}[�T�=3��y��-�A���}���?����Oll,QqLȌ�r���޸c�T�Ν�9	w��o��������-�Q��_s�����ULT�K_ۏ���=9il����?w����f�ұLf<��~���wN�t��9.����3ߚ�1ʯU*��HW��_Z��^X����K��
a�A�
o��%�[ҝ�T�A��W��RN�,�W���Q�k]�:7㔝>f�A���<Q�_��
�3-�W�jJG���$�f@��η�ڵ-������3c����X���C�49���/d����
��z�\ї�S�z��_��ٙ_���1=��ͻw�?/��+�Y-i�YCI������%=c�l(��̃���:εR{x��#�^r�㾲�b�;J���/�q"���/�]�ؠ'�>�o������Y����.-��X�J�6J�p��cW�~�[��h��[v�s羱���Zv��]Y�)l��������-.?��]�WLL�v���}ݶ����g�s�c�Z>�0zcS��K]m���e۶��s[��_�}��U5��V�+����]���,�Zd��?�a�n��KIà�<-��R�o�һ���G���Ba�S����O7������J[Y�gc�[_7+*�v_�x����o��JEv2�t�0� =nj�Q*�"Ԁ(�6�b��;��գ��YF� �9ߔ�AA�W�}��H��?�%�̑�\�-{�hwД����|��'���]{8^({�Q�2)d8!�U�2Y��˕��;��#GJz`�T�O�ۯ�4�"Y8�Ο�!��P�_����O�Y[3J�i�;{z��w$��g�J���3<3�G�^�P�8�Ow��|@�⇞>��‚��^kϼH?v���|Y��!���E���o���Z5�{'���e]y�1u"��|�js<��;8����Hgq��ѼG��=S*)��e�?�3n{���;X�G&���E�ʕ�lnV��h"$Ҳ�����2���r2C�D��LƘ8���+K`�	�B�,�?����g�됝Q(]=��)�����?PC�i���<zŸe��2h���?*�I����9��<�>+NVb \�$�j��v��v��:����G��/��x�[FF�⪡�IV���7�g�}���q�@߭�=�`�t�Hw��c��O=jl�u�v|������67�gO���EN���H�����Gf�o�~}���t��>qu��K'���\��u�!���V�o��<yR5$Sy���PW���~wo�X�Z}niYژ��z�g��D-TT�����:p�m���l�R)W�R�����=�w���c�{e_�n})�ؼ6�ŕբ��| ������k^?84"r�E��\]Y�)��:�Ive�`w#��F��?�1��:��뉁~(�A���P�� �<	�a�\�de�0�1:ز5m��q���ya��(TRD��GJ�r���1�5}�����Օ�_�ݴ�]e$���;���^��֋�5��(]҄V�}�BU���˯��������%�W@�8%�W~·7�s���8���o�N���#�̡�;V�r������-�r����2'r$#T\~����sW_�C[����|���r�+߰�����\{���{w&sߎ�o�8U����<�eA>����3g_11v��6��to�=>�񋗥>�ihێ�>�����G�V9![Q��h1AF�����onl|��Ƚ���ﭷ��3�͋G�|�����BĞ2��n��=U�E�rD k�kđَ�/T��Zg��JUO�t��WWnQ��ddD���؜-ί�?����˳ϔ
�~��E[�!*_�B�H�/ "(�8U��Ҧ���q��f�	�q�A �T�o{��H����*N����j(#C��i�5Fx�/T��z�D�
�
�Yp�@��o�npP}wxq�����^�~���]�J6�w��ً�ll0׭�=�~�_�,6'���9eiC�߅�E��[_�a�6MK���e5mq�F~[W��nek�"Q��ou�P4Ng(�%O8�EKv���c˫��Ж{��w�4G�7L��ѓU?t��Û���Ω2�`W�cc�pi$��{|̨�����rQ�)F)����ǻ{n�KK�v�G��O�ݱ��Y\��c�eiYW�쵍뙹4��!�Ja.��?Y������+�0�9������ё7�~���2���'���ᶬ��m�oױq٥����Ǻ��	L
K��J��@��GJ��y.s��H��r�l/�cn>�S�H�!�f�gմ|���響v	�ɋ���Imv�ir��)��5bo���&�z�Q���7w��&��~��d�r3����iq��_#G��WM��)l*���+Wh���¢:}L�zhhhW�{,��G�Mu��˜Kg�퍍���c�p����-k6�Ϗv�_�c�o�����8.i�<�^Z�ɇ���g.�o�t	�XO�������7�wp.����G���?�UC�OC����a�=m��Rwk�xM�ǀ�ru��x�/_�v���T2��ǜ�@�:Zz�h $�	1��U���V�Z�*_[ߝ����Q������7�W���s�W*�W5���	?��cL�*U��b��J�맑�d��o���\ ��'o��	+%s)��\�xw��m)y~����@����)g���E���JE����f_=1ֳ�ݣO�zvq��F��V6.mn�ꓷ��IO�P.3��mZ(�zu�3W%�I��u�l��O~��}��o޶��og_�`.g���d�up�K??��痖�Je�s��L���a��zF'�~;���(��͇�9�֡���~����]}=F���7�ڍ�?���5veL��H�3�5|{�a�؍�M�]d��@�T���26'	�W�,֙�L����Ԉ��
5.�
v\u@
��D������$��(���1������?9����7����q=�:��fz�3�<_v�e� �������̚若҉BQ^����dCn?
�pw�n��e
!���TC�QEN7㔥,�(2W*_���Ֆ���04�]�*YZg�2��t�_::bl9��&/��������Gg���dx��cە)Z�d�o]�y�X�f2��[ZUe��\�m�����wg��,oeu��Lo_i�<����7�ֿ��*�)߽/��?��=�_>>��2�˽az�KKK˕�-��O_8��+W�-�
W��/�C�A����tE����֕]'{��./?��(�����{�����޽�oӦ1N���zb����mߩ�c(�.H"eB���閮�nd��1x;�:)��P�)@i2��
�(���6��;v�(�PS�,�u�/u�H�D��/Fk��;���+��icK� \���U�'����K�����Ϣ�''޸s��xvm㉍bV��U��I�i�z�(����}�_gl\*m}����~D�#a��>=_(>��x�t�{�����"w�6F���>1qߎIc����Y�/Yu��.��f��2'�<�vpp@��6*��K�Z�#B�7����.��7vp���+�g�1P��d��u���e#E�yvk��R�[^����߿��;�kbց��I!�\�g�ݒ6T�:m|K�%�M�jx���"'/'Hߵ��b��B��K��-��+n?�'�:008���T�����ꂤy�
�����)Q�T��@ =b��:�>W>�\,�v��O�8F�G�\x�'`�y"���5�ň�O��9�dG�ɾ��w���>bM�\�tN2"-9�D��eyr�7n��PI���?��v絅�@��/�5��"�x��CC�}�u�>��K��nn��	D�%^���If�Li뛗f~dz��������;���I«�!��{'���=@f�TzhnAjd�3�GV��6c=r��h>o|rn}���kR�ʕ���,���	��K��aG�66_Y�سVW�r�-RG����d>��������lJO�gW��"�UeGj��Q�#�,c��Ħ��Z�Zk���$_�u8�q�k���7wN���_[X:]*�m0�/҇V�f6��T�MN>t��P�w?��I�pw�,R�w�P�	X[̡L�����k� C��f%7��'Ї��*�^K�y�= G�\]Z�o�%
��Υ����w��@s����۴ �.^ �M�S����f3o�5��f�D�v
����ɂX���&t�+����@�]���
?{��'���:��' �߾��W��$e�ӽ=;{�^>6̊&��>z��
�T�7Z�_� |zf�M�g_��I�cl䓯��g�X\>���ϐ}}�w�m�wr<+h]$R��'�|ee�i/�`c�۳s?~�n�#���b�(Y��!����˪��3��Ubrq��� �/����;��se��ӛ��������]�7��y�9M���҉j�m�	�]2/w�
�����.1���7����>�0�Ƈ����M׏w�^X�楙��'66�msS���==o�9y��6c��V��U"�-$��<���u���x�j��5���\d2H�=N�
`Pi��*A�g.�P5#u��1+!�|g��C4�h��Gq(A�-��${57�Tş�55�O��R(~�'76\��ju�"�5��Y~���~naQ	�0�6:|�Ѐa��!�'���?z�4g�Mn���f�Ё�fh�z�������)�	�ӓZ��d�����s/���>4���>��z��=o*�W�*�
�r��3��Kx�\�߲Tbn����M�(��=7o���m�,H1���>6��V�!+�ɡ4?1=ỳ�`薑m7o[�*�W*k[����dO��hy�T���<�Wmγ�=�R[d��\�Wn��*����9q����m������=;���֑m/�6��U^����U�@OF�����E����]X����>ɳH���g�3n�]A�2M���!�X=�ePe�QSnib�|g��UL�jjW��5{��N��쪐�с��M�WY���J�Iy4P���E*?�:�x2�{�Ԥ�z׿^�9^.sٜ󚤼���ʙ�5uZVo6���/�:��滄��/mn�é�t�%��(8��r�#	�����7.�~��S�+��,�\4�f��G7����n>t��v#�t_6+��
+S��腓�D1� �������n3��J���+�$D������.���xnq��z��r��J_2<X�4���m���^{�r寏����2��:	�����</	E�s[��Y{{{D�
ʧϏ�F8�ًs��?y������,R�y��Kw6����q�ߘ�pO.
��������1���5��D��"n��ZG�֞����1�
�y%��o�l�d ���œ���6h"�����~yn�"Z���v����|j~����kv���_[[�	5n`�˕�����K?q��
�L��l��@I���+�>u�W�5����n3������{�����(��U>����s�>r�R�;�me}�*}��‚X��p�˕'�.�f�9o���-�#CH3��z��+ϟ8�Vx��ā��Ἃ��Y�Y\����xf�ӿw���r�^�j	�iK֌-�
�!YE>���_��O}��ڽ��z��\���ҖtM���s=7Oܦ{��]wFp����2=ܤt�v��sq[�6=XfIydǧ>:MC�fD��Y����x,*�LDuHO�y.T�
�UO)א���(�T_6;��Ε)V/-�,�S��y�9�W�V.?�"�(�\�;C��٧�U�A27�9
��3�W�]w��R���U~~}�B���q6�+k|�9�����j�ra��
�69k�I�rk"��g���u�����xN� �^�{��K�\�}�_Ϯޞ�L�Jťr���Ս�VWg����a�DNf��g���3�r��Hx{�_��~��C��ƖG�8J�V��̓�V7��s]�r|�H�i&d]�8}�C�.�uhpwO�ξ���L�P����ŭ˛�/../U���gՕ�x"}Y����zx�T�4���V���B��*"}R��S����U�/���UN�Y�����zn}Sm�)��/�=}���������r}��Z�2�Y�Z*�^�_K�rr7]�������]]T���s��Z3~� )v�ґl�9�x��1��y���R��7Ё��omm5�'m�5�(��Ե-�[�ײiв&j�����ڮ�l �=�lbks[O��eE��
�pL�͘v��U��e��.��ME�\��Gҿ_���'�Q�\E��ל�jᙧ��m)��*��Q�a�[[nl��g�U�c�� CCC�2I�V7~��'-��'����%c0e%��/O9�j��Eb��M��s��>׹��|�Z�%�1���VE�X���<_��˓��ڶLf��B�bYm���k�\���I�/H.�O���T�S��E�Km��ߤtF*//��9%�6�}��1�����2H���GT�*�_�G~���DQ�����+�;yY�c�t"׌�=H�~M_�_�u�N=G[dz�����.y}D����6��X�-����e�����w��=B����3
j����1V3��D�7���{t[O�!DS����l^Ya�c��I7�ִzԵ�[U��#nw��Z��6�"�rz�?���T��7M8�b@=A[I�8��ym2y[�ڔT��
	g���d���=E����咔'�	a�*�X�x,)��񙭦ן�Ej����`ZY$�f��1�	��d�+�”ח�n��j��@&��J����b��)!*�Un���O�G�٘�_P1|*�h�\�?�D��<�	�ud����B��+߂r��qn�S�_��+���@]�~A�p�Ի&�2խ��qp5A���M�0�ZN�5�(���Vݻ�
S5SjW��D"�zM���L�+��G��H�a�'�2��$O"@�x��_�@����֘�����C�f	��šR�*�P_c�hYנԱJ�{+��5�5e?U���	O9Q��l��(Ո��p�樢�lf4����
��H"?ԕ��`|��2���Jbm�k��݌�&J����I�	�M��8�#%4э�[1�o�ƴL瀄K����12�w�Ke|@ʐ�����AtE��j[ߵey�

�"4H5��R5��x5�.
"~��D˜3���[?)#���*6�^�#.Ԩ�'F���p�*(A@��k�r�EG���!�5
�<��F�@ � �2�x��ﺩ�G�RY7�	L�H��E��ڈ{�y93tX9%!�'I}����o���D�T��A����z�M�cʖP�A�ۗ�؎g� � (u����U���Df���^F�X�OS��Մ+�I���4��n�JaQ!��������9
�*�#�c膰�i�rk]��H���%^78�Y4;H=�J�0�p�:F��Sg�Z�7+iBTx�o֖��@В$^912
H�<y��m�����4�=��*������\�b�x8D�j�pb�iu���M���2KWY���X݌�+dsQu�0R�Y	��)�&J/����F?}u��X
�Jt��H�=�ϴ�1US�1�pO̻b��ыPj��7��@)&|��aVc<t�eȨ�LH�*��sflh�4դ�Ɵ�t���[v�}zn5��H[�$�]�X*>Y�ޚK#"Q�9�=W3���i2P�m��D�y�c�N���/٨Frz�E�"�@"!L�	/��^�MM)��H� �����R:�{&��<�/+�<�A���M��1:���55�.�+2����D�F"�7�D�os,ιr�@���;kj}��s-���Z�1�ז�'��"Z�9�~��$!�h3UH�:����Y�9�`D"����9ܛ��i��a�yƊ`.�%��! �����DX�Rs��>F�>��;VlNU��5M��Bʜ�C
-�Ԕ��X3yˮ�o\Y���:Fi������>x'�C���d��!�r���o�-�^ ��c>��Fb�g1�3
�K��а�'��ɛ���ŨT�PU5x\u�4O
S����u;���E�ЙT(�7�}�u;{�z�>w����cJT_%�N�0�q��(H+��҆3w�k�h�sϨ���SˮS3���L�
��1�
jO82x��/��/gf�+�H�(��{'oDW��u�[�i2Z��97�5F4s嬺�%R�e]����;1l&幁��ک��A@�!��0>��F]�N�p"T�qՀ�h��������
[0��k�Nf ��jHP���'�h��a�7'���;���r5ǣC�aK��r�_;�{ �[��<F��� o3>_�+�'�h ��q�����a��:Ҹ�9 Qκ�3��LVD������%c{
�L��r��G���/\i?m��Y�t_6�7�>8؃�h���y>!Χ���������0�^0),]�k��ܴR#�3u�9�ͨDK�V�(��$�m&���m����!��.�i4���?��M;�����
�4�W(�C��*�)�A�A4P�pӽ��&8�A���bDM��h��"_��aX�����즊'��T�J?t�ʢH�'+�N�O��q�Q��1E�O�j���i��B�p�`�UM���16$�'��sz�Ѐ�bk��`�%�=���O�Hd/� ��ؠt��?ppꧮ�ɑcZޒ�@�2PZΖh�L�\�&�w�f[ʾ����h��)G��#$\F5�a�ϾA�?"RD���{N�we?��S�*� ��X���n��#��g�k5a���o�̻�� �@J'�eq��‚<E#�LD���hDZˈ�x/�%����g�q�*� ޺gt{O�G.>R���Hc8�l*����}��߼�~tHĞ��� r	ƿN��Z�y���d�4�MS�M�$J��e���k���7��F�OC�m����ݻ�����ǎ�~�ʊ��#U�XVD���_��+�M��ˣC�r�x|[߾�H9-����d `Z����d�f�(��{[(x�zb����q+&%����QE$����@�Gnٵ����/=�UIJ�@�X�r��_�3�S���F�$�|���<
)2Pj���1-aF�&^���wC���L@�)3\1QL͖{�~KjH	�Y�W�x��O�����JQ�h��!#�r��D0:N�v�s���n�I� �@�2o+ ��(�P&��.�46;�]���3�G͌��������?��dm�䡸a��n����O��zd�t�"w]!����A����̐;���-ýJ25}�P!?-�
�<ױ�d `[���>kĐ�7~��f��v�ѥ��I�ǂ������N~gn����/�_,TNnU8�"@�J��{遮̍=����k{��cn�C�{�a����j��
��@���*�H�]���-��-a�X&�u��9/����6e�5VyG@P��
���A�o�X>�^:�\�����7NnU�+�h����X�OI��U2�5�]�1���Ѿ۶u���dtT��H��:D�vId,7@
��>,�6�r���VC���gw����-5�HR�5ժpÎ|�H9Ѐa4�����{S��ŭ���|�2�U�+T投�R�bI<�U�BOa�qܡ\f:/�ue�we&����4�
��٩��`w�ysP�p�c��&#���
H+0���h���m�\g�?�>	�3�6���#��Ͷ����
ʯE*?�)���"ǭChB�9�V��`�W�]����M�j�~��~�d��ad"Z�
�n���4���(�n������6{�X馘�H��+���Q��\N�~$��������_⨼����d�T��Rq{I�	�B�cɈ��(�r��`je$x���0��Q�ƉFėH3#�@ ��Z���c|O%[��R�aFH5��R7R�֯F�0Ï����]rl/�������q{����
��|��X���@z��VT�_u��Yؑ�b�=�������&5>�v�B�ɏ��tm@�pRc�R	d�T���׍!W�t0jhI�W���J��<;]s l�H%t��2���m�[ ����N+���d��&��Yq��5R��b��K,Zj�x{i�,gFIt��+[s�Y���*͡��P�y,�˃�h��@��Zyt��c�S�Z����
�"m�/��d�������@�o!�4�k�l?�b�0 ��c��$@-�
�1�K��h��xk�G�r@�^~��:uTw�P�{<u 5@J�paS\:�2�L'��p��xO[��D2z���Wr� 4��1��g{�e'�V�(5���ov����HУ�:�~��Q\���%�0��6�ߕmCGW��RH/��R������<7������m���-��tFzȳ��d��@�����JPł��cW
#L��t#�K�}8�ç
�|v�sʘo2H4��ҋ%OTU)�)a?.�M�1�5ApAhh�[�[N�sJ8�4d��t����Sߪj+A��V�����6Bi,�72� f$���ܓ)�4�S	��@)L���RC��$��IR�Ɋ��5#��&H9P�@�}���j��%�d��
.a9�YA�'р���@�3�	��(�e2��p�ZY���o�C�ΚF���@i!�
i[�PҰw)I��F;2i4�gܲ�"��pu�R#�y���H�MF��ӵ�a�g�.JH%���q�=�Xc73�$5�'*Q�?D4Z�c���#
��d�S?jP�I�Kl.G?��@i�X���atۅ��G�}�h��0ǽ<�W���څ�-lI��������h3���"��-14��ꤎ������ �4�x�ck�D� �@J
63G}�~��N��jW���HQ@��P��\߰U�v)^��p�A�����c#��r��ɰ��z���i0���(mV�T�
��B�e��3��6n>�w]�8�i����#�@ �@J�(�xp�`�i4��~x�8���J�3#���覀B�2PZ�J�C��״v�������f�M�oX�
�z��żjn���*���N2�-!�Հ��8�!V��\�v� ��K*�^n@׷����@ �^ ��ZLc=�TW�H�C'iKB�$�IV5�P�K����@p�AZ��ZcϚ@�%�\����6b��QZ���G#���o:���M�)%�.H�@a�236��^�&��4���dxk߁�d����aA u (��PRO�L�5�եf|ʴp�B4�׷���c�>v�mk�
i2P:���S+\�)��mIJ�
őX�W��m�o�X�+nmȷ;(�	�2Pʠr�#
j]vo�,5'�u���T/��i�LK���ԛ��2Pz��j�P3�8KYbU}3$��#a�I���)�D+�8]�ȝ�Hr�Ia �@J��з��YLI����;sIІ�C��2�
�Rd�T-��"���^f���3H��0o�P%7������2Pjl1�X�q���Z�	�e�V�C�&�դC�#"�8��O[��h3@7aRX� �[�&*H!��R!�10�om�2�i:�*F�6ԡθ�|�B� �j���G�W'�&����@2��@�\�4�Cض�FV�B��԰���O^Cn � o�Ꝫ~lM�X} ڦ5p��ƃ�h���f)���D�ͩ7�Q@�e���
�5�z���G��:|� u@J%��u�
E�ljc�E� ����|'6=P�1�h�C�75Ȃ��b:e���(M���t��ƌ~��I&��&���:�)t�=�M���@i��H ���mհ�#z1��Q�h��OZ�{@;���kx� �@����h5 vZDCH�Th@��4�C%�x-��|_�go\6 �@�lhH�Ȧ�)%iV�>�,ؙ���@�~i��;ᔡ恼���Om`�l62��'Cf���W'�U)�H-��@�Ɣ�٩>����� �G2:��)��v�᷃48,!�W��w�#�g�Z2���^C
�ya !tRtL�ǫ��������2��A��,�)�Z��Tu�5�ٜdx�פ?�2���c�@*�l�� �����v� W{D�Ɏ|s��&�>5Ϩ�S��	d �bc�����p���*��}b]��ow(A �@n4�v@V�D����W{9��O�_+�8�p�Y��3���׈%�؋o�G����a�"x��@��2��lH�un@ڀ5�j(P��փ`��y�N���/�I]\ �kp�Ŏ���L����k�c/?�V![��B���"��.�"K-�3_�*
�F�%\H��N#&���G�q_H��@C�Mǟ�ϸ�~v�2��j��a�:��F�h��񮉑�B�l����@��N�Z�<��VH�O��j��x%^R[Q�279��<2d �i���b�CK� ����5:#����uu�#t�c���<H���/M[�����Fa��"`s8��Q7ތ 
kb�	�%H'�����t}�&*Fb�t=�wc>v$ɒC�*��k�{��rY/��Բ��.�k�;!�%�LcvLr�O�=�A4p�m�譿P`��=),�D�$AX)�����D�V;�!62��c[w�uNc�t���@��#�5��a(o��im{���N�<��T�h P�.�V=�}�-�����(�� ܇��=��1����n�����!�aӎ�p�?�&*$�n��XG�P�oo,o�Rd �g�Ѧ��P�^��h�-���W�ۇ��x�S\V„�P�-�������\
�Au�5я�!"��
�מG� Pӥt��qH3�T[��U���W�:
j����`|����Ҹ�ᰓ&��}�Z>%�@3A4�3����>��T#2�k� �E��6�aD�x�)AA�C<D�bv
:a�r���:c�P�z$�H����:�K?V�����z�	�2-q���9lG����l���N2h?�<R�
ZAbe;{��{���j� h�K4rD�΀��d�����{�d �~��\��U-��f��uS��^>�nż�|��K��@�3�2����'�cC�B(�\M����H[&��E�hG�+��.�� �@���u�C�׀�*�x�N������VʩCH���|��=�p<�#H��@2�x�n�%���8b�@pױ��(0rE��n"�of
^�WH��@"��@2�W�A��l�H<��[5��%�m�H�� ��@ �_��#o��\����N��$�B�q���^\M�-S�#
�W'��e�������ήAWuu�}���?k�$=�yT��HQ�%�}VV�ek�8�����[�c^�w\N4���"�p����#/f)i��/���藍d��Ag_^Z����@�܃�n��~����ܖe�nA��sT\
�@��51�'�K�ǜ����#��0p��n����i����g��g�W��l�8i�D�(�,Vx��x���[��嫬5�$W^���?��;LG��zk����=��� �'x�p�3�}�9C��-s���.	y�����F�F}�k�t4	D%��^<�1�����X�	d �Uˋ2dU<O=��&��R* [�I���;�$_g�:��I�\����L�X����V�v�I,�f8,��F��9�ƃ�*�e���8^)[}Z�Գ����2�����4Fx�
����.3�lW�5�r���d&(l�g��y��tyV��xp�>���K=Ϋ��ηx
df�89\k9��JV����g�5x>��AP0d\��H3�
pT��*�7�|��p( 0s`�������EKf���̖N�� ��Aa�uY"��5�MJ�;!��$:��28�x�ݭ較��H?S�,�p�O��8�(b�_�ש#
F&���+NZw���Qi��k��@�@�_T��~��ر��Q��z����� }T�F�Mv1K+�cs���A���~c�f;��,��?\.���d�!C���O!�'2�.~t \�%:�K�����.f��~GO�2����b��gJ��S&�И�4�Kh��A���n�]]V��׳�Z��Sw �Fh�2��M���OSg,6I�i���Qu�>��@�<|�O��x	qhX}��<�J{����q�ǧ]阤��#�lah�³W�ϊ!pL �cq��@�lM��[����� ��'H�E�����q“��2k��^�2K���='i/%�`��d p�^���%"������ɆR7����?]�WJu"+MìfԸ$��Y�uG��X���-�K?*�륔8:��<�h=#�seP�����,.�"Q9C���@x�	�Uv�qF:�u�
L8,�����-?���֦�.�#�����,�XW�h�Ҹ��`�� �'�g�����U�7�(*[T�<W�o6��q^��9|��j�:aP�@n `�Y�8Uf����	�}o�y2O��4�v�k�Q_��E��1`���3��!�.p���25��(���J�תL�d�R0~Ϡ�%���#�i�V����pD�28�(���*�s���I��*Uީ�"z�틦R�x�Rh��ֿi��Ѹ�uK���K�T�Q��C�84 pj ��1c�zx��F�vE&�ulr�ʎZ��J��n��-���̞`�|���f��h_<e�1:�Y%7Pc��I��d6[W7J���K4 pj �#���Z�n�|��*^<v�`_7ـv	+���ϟ?��}�v�'����}�Ƽ[��ׯ��n����Eh�uw����3�.���z�Z��]��[c�#u����cҨ�8r���j�7�%zJVI�C��ki/���'�>Z��n��p( ���I�����_v��W+MM7Qtg���ә"�R���^��+CEp�ydQ��ϟݙ~��}�=��)ݦ��8���%�V�"t��|wӻ�Uv�A�3�믿��Sӵ�������`����ZJ�c��%pO�����tg�+����㾽[��I�[�=[Ф=N�,���z��=��gg�C�$�6zZ�"@����#�Y��?~t���矝`{����T���;kF����Jaz��+�M���>�<�ċ��ήCb��=�Ph���J?����{h�>s���z��v�d�ʺ�ڨ�-	
���ͺXP_�>q����[��?oȁI/��
����I
i��e�@�N
d �$�i-ڇ�i~��a�����'ŭ6Z�ft��Z�l��<�,�T7����d�5	��t{��?�kg�v�Yœf*쀰֡�n�Or��=�]7�ﺻ>�{tu�8�[c�U��ů�n�ul��N�n�uw��48��PZxEg��A�3���	����6�I�~Q4o���͹Tt�ी�V5㳢	�̂z7�G4tv���+�
b�p��U��væ�7�����i�ꕻ�Ѱ8��l8^�0� Í�_��׌]g��T�֤�t��<����v�޲3l:;�����&��m{,u>���txw��ʓe��]P!a�{�v��!�>�Տ��}5ޝ��*�г���I���3�l6RW��6[Q����-�����j���:LN�8*�(;Su.�7@`C)gMg;���ԺqZ�f��*S^~���Bdg�d��av�՛�ՙ�;�t�w�/L7I��!lz;�F�sB
'��m�S��$�ـ��>���;�����Ĉ�:|)���o�-3/�S��7K�K�)�����V��,��OM.r㮩�)��"r�|�ݟݩ�e�N����C�v�M�ɀ�t��.�{�����[�]�8DB�X�JrL�X��ɒ:���
���57$�����l�=y�ܭ�X�Jg��v�v_v}W�/{Hu��Խ��x�U*�s?�m�[�v��Zݒ�7�O�
,����}�t_<��Cr�9Þ_��9Q��V�}��ݡY�u冺JRW`Ge�IO,O?xϒ���mr *�윅P�v��÷��y1�1��^q�����b�3���V��k��џ�@�zD�T��U���x�d-Ö��C��������Y\`�C�H�3�Kr�Sq���w��7|�,A��M�=tSp��*������n��sr�nv��d��>����s��ga�����#���F���0VI���v�d3C,(���V�|������~A���.K��]	dIY,���L�7��w٦6���p��To���r�=��d�l��(,�ʸ�*i�|ܣ��R�к-p��-�-�{�YO�-�u��
�M[4k���������&[�[^:R�X�˥%�LIgӱ����QFw_|����n�'���&��~����IJ��m�f�`�#1)���3,a��OG]�x�ֵ�
�ɛL����e��uS�C���zk�=�J�I/��;&	@�ݍzW�ܝ��I�=&�;lvFz��E<���0��R����Ú:����3�����wV�<�%y��&�U�7+�����/�ECOqf�_y�Ɖglt���_��i2��;j��`��S)��ah�j�g��]4�7e����M��7,�p
�nיKN�e����o�&Ϩl6k	~���5�W^��)Z���,�P�O
����M5鈸�ʣk��_s���;N�%	+,R��#������šk��Ӻ��J7X�<�`x�Jg�-c��υ��n�"�A�g-
����P�չf�MΦ�j��Z<�}�ߓʕ."!ɠ����?���)�=��BdG|��&��f�$D�[̹Qxw����0��`�PPX�č�����uXqC�u܎��I��ɪh��	�FCٌB���Y�a�hT���ƐR����{ċ�(n7k�}��߰��ّ͌G"��g�����[+�M���͆yg���3X��9={�����AtK�0��$y��'
�1t����y���6����Eq�CP�<Fr���u[�æ��~巾)�K��K�m��*ܵ�C�C��/ϊD��Ӭ�F�-K����_C��oDwxף�M���}}�<��u�����,�U�X$�5�Yu�vm\\�HI�펛��qn���L'��C�$��F�D���/{*q?��P��g��NJ{g��;��yaQL�#�`H26�ī�M;ٻt�u
����J����/��nS��o�X�⦔u��6����6�7����ߞ����R�L�ĩ/rd2�Ul���J���)o��_�A�|���{�Yܮ��qO���ngŹ
z���2��AK��ZG[����6�4feA�c��F#RB6��Y�v��B�~�aVFd��~"/Te˼Yy�#�N����ؼ�Ί������lϮ�F��<��6͐ؐ��ug���3��ѯ�x�l~�XN�'C앭�8ٷ��F�o��k�;����:����X^�
�-�Q
J]h�d�gIE��,;��sJ�G�xQ�C$е[fT�#麦��j>v8��]���ʲeswg���MGKI����Ѝ���
��v���%�L�Pɯ�)�u~"��{k#�d��jb�a�p�3Q��x��6����V����"���I�K�Z��J
�l�ŭ;�UrK�2���-�e&9
�y��
�@��[W+8������hh�2`d<(�ژ�ڊ��2��/��D�h ;aG�)�'nE)��H��"��]�mP�� �()M��ߐ8�4^XW*b5*3�0F�v�Z���<�q��2K93&|�9-+AR�5��b�3��]�(3�B��#��V��a��R�tѲ��#�QCB��c����zY�����oћ$~J�S��A���_�(�
?�TA���|�
���ՂK		��=yQ�|���fv)��������zr�[�Vh]6X7����Յ!�t�v#�N>��[��T��2�g͐�y��Ck'[��a<�@�(�2���Cf�C�_�r��8�c�גU�tؗ�݈kq �4�������[3��P\��$˖�����W]�J�*'��b����F�99LL��kX�*�����3��b{WzՑJ�y�q�vq��3zH�+��R���/�F�3;��;�,����8�p���9����;��s��BYW⁉c�Ņ�^��taݔm�N�S��hV;V��.����Th�c)3�,�4e��]E0Յ�2�)�CJQ��\�ʍ�a��_�@�|����fTk�Z�1ؾ$q��L���c��K.����+K��sZ���u�N�FGh��oYu�r�c"�Ko��s�҅����e��W2�ʮ�=���@o���z���-�,�Z��$>������?��8�Ҧ��q�p���'����&�[lf)���� �ĵCP݂�4S���	�ySYݱ\��5_�����=a�e)t��^�%�%�Y��2RGL��|��1��m�>�=���V�kɋ�/g�v��ю}h&&I���&��ɡ+ۑ�{K-�ѷk�F6+���4U��k)nW����@6�p�5�ohE	��Y2�l�cz�7�ͳ���v��W�����E��<�`��_�N,�]~=}D2�렏A,(6Z�e��k��Yp%���0��Й&�g�g8-g���е�Zv=�hݹ+��u)�UB�t&x�
1����_�]H䬉Ib���u��tG"u��:gé.l��la���5q���e�+����90�1�C�����|pSG�vo 	��&b������Z�����	uU��;��OR�K��%�W�zbBd���vgL=Y�`�4K����>�� 3u,9��	$�&����p�L�N��%.��b�j�d����;����\Kݹ����Ŷ
�^^���{6_�R� 6 Y����{���˒
��Ѱ��sފJq�#�.%�e���r����������S_0Q|j���kiql/q�ÚK�U�k��8r]-���N,��I�$֕��u64���^?�����76���^�n=�Tb?/�����J�c��꯾f[�l��3�~�u�Ug�nJ��x���OI$���Ir�Tr��=��Ɇf	8#�z��
��C�j{�hT�w������Sw}���p7�s�)�4\E^�;���2��1z.�usxay��&��
Dm��XO��ah{�'=G�ʾ�=�_l�`c��B�{Q�q�����	���W�;ae�i����@yIXMgL�r� 4vp��n*p&�p�MOJM��_��t-��6N�o�%��m��f�E�[���3����_�[B*Nj�C
�/;{v���qv���R{���_�a���cn%G޸�؛�G"�-�Y���@|��S����If]�<��Z���+g�r���(�wt-o�x.ĝ�t���⌜L�����=��˅��Jz�\�A�4
m<r[��4�pa�%�L�})��k���)��C<u�w��g�Z	��b1��K@�Bo�J�E�W�l��ap���s5v��H�.m%�{޺u����<1*�G�a&"�_�P����t�ˇ��Pq��Q�^6�Ur尖�F��uKɚ=܋r���sgT������s��,��=�n�ݒ��@Z	�:���o�Jj��;T6��r����@��t����VA\Se��[��?��u8��S���5^�9�-��5Xn��)Ϛ��ٸ�㹁d��g݅��u^���3��͸�Y�Z��}����"�"��>�s�}��%������W�>�_k���[뗠d�۲]7��[�3b���W\e4��ŸJK�פ�n�y)o�D��Ji��%)-1f���+�.���l��xZ�U.K��Kt�e�(v���?�4�j�'����S�f5ȼ~���흀TL��$�� �L=�k{���o4�(G8�����pK�{���i�T��PO�d�Z�O��p�-�i�(ܴЍ���<F���V�*5-
�¤K[?�ݍ�������!�ч렌����/�|壹���@�>��E��e�뽳2��l�`���I~����m�+
��r�e� ������ʿ�.`vӭ}����P�2��(�����F�s�%�?g�Rb���T�
o���'w;<�b�M����ݣ�,�g�*Tk��I�r@�;�)�m�YYN٩�m�(�>��;�|�	��-�zc�e�Ͷ�lh�Cm\q����F�Z��ћ��
`�s-��.��fɳFb*6��۩R��=�՝wՖ����@/4o֡=��9�+�T����Q�J�!�ѿ��n��-_wVr�2㖹���g�e$�!���$|�+�'�[q�2K��y��kJ!0�����*hN7x���Υ%X�QZ2��~��U�Qo��6�
'��jgp���߳t�
O9�|�f�zȹ��S̨�G2�
i6?ˉ��Վ�F��s_r��u��#_e��1h���mAB*��盐��6�{�0	����7a:@~���*��'K��}=}b ��@z�A��8�����v������'zV�!w'I�|�9���6��d�����\et�lFa�GK��iI�'���?��^w|�Z�����F��r*�s��T���Z�+��J.K:iw=���6��Tܭ�U�R�C��6��,<+z"�~v�yI��@/=�//
6ۦ��eM�u��2?�4ѭ���5���&��j]�D������x�`��رr��2)S5T�d p�B�If�z5����;u�[��`˃T*��;$w���,�	�>�����:�Rlq�h@�.8�9���n(Zw��5�2cE�?�`�XWyF���_YX�IB��ʊS6����?8�$�^4�Z�h�O����,�w�����{��y�co��W\��$}�a{�yJУNgt��նN�Ƽ�b���a�ԇĭ�f��+8V@ɶ���l1��o'�J̲)Q�{hu�������*�gR��.��m�����1���cV�q���$W�-yˍ÷��P!���l���w�k��O�H���Zzi�ͺ)+����u�n]���\�r��~jN�ghv�dS �<�؃If$��0<8�B��	ӝ>�Ծ�C�9;��S�l���ٺuE���SI��wѬֲ��(�n��ZhG�Y�܇T�dm��I����Pf�$�HV����S�GwY�����v��˲=�U��5�Q�e�ك�g�ke�U*5��J��;.�/-����o�쳤7ni��k5
Ɇ��G�8�)o}5싩�{���i�e~�2}\"�.SўF7k�m��}�-Vr;�FN��j��}?�.�����}��~wJ�u-2��S�V]�q�:��NR�RgG��Bn[�J�mK�d;"WҪ{!��i����E�W����
Tr�l�PZ��F��M��ܞ�^���Z��,<`h@@P��r.K�9/<��k�p��vn�-VM�&l<�Q��Qxr��l荵�=}�=^=���*?M�H[D�u�g�]
�i��X���t[Ͱ4J��
�]�X�s�}3�zJ�5��ԝ\�ku��V�D�`�Ѫ�C����B�$�
�
��ԓ=����2jیZ4%�^c�*x���m^D���9�g���K��B
q-/��S�S��U%��%rjQ�2	�z@�+b��S����BF��RIUwҩ\�d0�A`��;���	<ܨ�Ĩ��$XuSy��7�>w�+曞�a��?�UPd %��6�w}���9$��v!�+�6
�Y�Z����to9�OI���(B�����TJ�2֭��iYFϴ��0��:��G���z��0g2hU
�����`�YK�Ƒ�
�*qk'�8��h#�FJ�M-��K��FwJ�>�0:e:�ֳ�x�pF�
��@��ƚt"�*�ϸP�&=us4�vF�dV�PQ�Օ�Y��EX�f��d.����b���N����0��"���>iD��HI�]^�����S��IG���h�>`E �u��S��na���n�Gy�s�hI�B�n
c-^�G����'x���'Aa�9*4&����l;O=�!f��Zx�D�i�	�2��}?ܴިx|K�F����c�%�њ/�7�}6{ڡ�+�_�Μ=�:@�^g�}��/��{�a���oa/�줢`��!�����`�0o���T٥��}�*ϛ��;@P�s_�䋴"(l��`�1iy���׳�=6����#2������G�ē�H*�;LA�3�+l&�M�03����~~�	x�
�G�P�T�<}O�F�l-��JY1���
w��}~~v[~{{{�Q���MƟ���ȪE%_$}�C��Wĥ>�^0�oet�}N��~�p�
��@`���\���� j+r95@l�Ŭ�2��Ko1�u{�������_�u���p�}t3d��lw�NMf̪1@>h��\lT���P`����~:݉\���H��ގs��z�������yZUBö��˥��n1+)Du_0�ߺ��(s+e5���v�;���+�{���ۥ�ܺ�~~~~=�__�t�#Zn�o&����
T�2���U��Z�-s	��fi��~��{�6���VMI�W�u���Y&[@󼄞 ϴ��pj ��T��>�,s�}�*���3U�2𼿿_.�~����e�P�pU����G��q�q��v�5�x8�Kv�|x���n#?~����c�S6rE"w�X�=���֘�hv���6t��G���sK��g�����z��T�p됹/~�P}9ݷ��^N<�?�m5FWk.i�5�xG��-.��بK�d�6���_���W�W��
f/�V�Q�>?�-H����箥�����
fG&u|d��$�4U�Qe�WZX7X�]i˲$�H���k����[�*6)�k�vc�zE���F��wVjXj��@�Q���_�d�
t_v�nz2�S��™�n�$o���>����8Ρd���T�p4ɔ*M�J�N啯�&�}_=:�[׏	���t�˯[x��\��>��޽��E.:���fv��݌����~m&�E���챟�4��W�Ȟ7��u��'=�=��d���my�R���x�]��K��uS�n��3-�t�t�d��=H޾^����9�i�]�[���d�ؓ������:Uh@2##�Y���LϴR�v͈�k��@؍�2p��4����b�;�����W�Ћ5�ݒ�!���-���wY�۬]R>�9g�㿎{�9��
��j��n��P{9����h;�Oo�et�޺^Vq���i֐h��p���
�s���4 ��]��h}�����Y��2;�4�����%�������w�-j�J�ԴM��lɻ�%�U���gʛE�">??�_KJ�LD��ە��U"�/]������|71<�@`�i��M�d�_<jJ,���A�۷oCK��G\�$�›���_�t��!����-�ɟe��KV�����?ea��dI~���W���i	)�W����{��n�Sۊِ�qe��WӮ��&���դJ�M/����U[�z�nů/���=���k-:��P�ր��UuY]�?Cy�"*M"��)���k�~���>�����_�!�v%�H��s����7
��E�~�ݠ��9���>˒<���!4z��{���.��]W+;�I����$������購�UE� pbMg����Pp ����Y�֚^�<�~�2��2��I+Σ2��aq��$�CȊ�7�����߿��k�,V��0:&
�%K�v�z=d�kԣ�yR���"'��w5�J�+�wۦ�r)�m����@�ԙ����o��Ū���Ov�ae���]ֱJg!���J�C�7������V�7I�[�v�v�&����Kr�_\��_��Y难^�w���a_�߳VG�4���-B�MyKu���������m��o�n�~���1���Ó�'�Z��8<m#��n��[I���;H�g!�dj�ޑ�Ɏ���P�� �=.<p�Ō@�	��u�&�A��ݑ;;P��"�
���(��̉��b,�Cxea[L���c6���+Y��s���R�H1[o��F3o�7�'�"H�/+�ׯ�ߌ��?�W��v�S�`!����BD���
ga�t��3�5�;sO_����;FV�X�����߿���}�%]���߿7(�v���1��%'u?v�"*�L��n��0��Ҽ��Ƥ?�kvDaF<�#��lH�0:�@%��;S�~���%���ֲ�^���P8p���%e0׳��&�L:���J�����JbiN&m�b
٨����Af��da1���5Q��</y�vD��&��Zkͧ��b��鰮q�i.���z�/Y�q��nZ�3�I�D��)�]l>kq`jFu�Zw�*����d�#髫���7���s��������H��ȭÿ޻���?�*��`���+s;)��������z��ލ�����5<{9���j/Va8x?�cJu`�\��|�z�,^�d�y��pz~[Y�@�3�D,���~�|�h�tB��8A���%7�%�zJ�GkU��%�[�J?�Գ���/OS`����C)�k���Q�x�.�F��ra��/_�����>��vsˡ�O���bwZz��]ŝ�M@�4�F�,�����y���nq����~�g����K0��1b???E�}K�?|�L���t'|���m���U$���[ʤ~�=n��m���p_���/�!�>�X�g5��E�x�6&b�zTS7�n�:���|�9����=y�'�^�A���┖��Z"	A�2�T�6���kqiv=x�V�qX������N
[��-||pQ�.�3�ÓTD��\�O��ϕ2R�cr��ᆪ_�ϛH0�n~�_�>{{�z�K���Eҗ�Lw9IZ�Z����ץ�u��u���Ÿ:�*�6.?u{
�Zn���
�})>É�_�y�]ĥD�� vv]����Q}	d�[f-��?z������~��h��N���?M_r�p���5�Yq�u��C-7et����"ջ�G����r��c��2�2��&٠G���$��&d ddΖ`ڣè9@l�$�	k@<�~�\�e䖤?���RZV�Z�P)k-����qn ���w�p�0hK����[&R{`4��Μܚ��Uo��K�����"g�%���u��o�>�.�\��r��
q�R�t1��%�kKsK��^r�E�%���-�6�jr�A��}\ۗ�U�!>o)�96�dk�`�}u�1�{U������h8�z���F�����g��-�g,Ӳ�ui�2����S)[S�~�8�`|�9��
���{�nVɊO8�׍��r��
�F �k���[F]�uDj)#���@W	��/	�8�ٛ�*�KP���vW D���s��R>�=~y �u���-���W5��lZЮ���*P����Q��}I^OPz�n���#@�Fmǧ*o�t�f����/�tˬ����V� J�{��{�^^ݨA_OEy���ޠn+�s���MQ���m�"%ZX�Ɯms����S�:ֵ�`�a�j_`T��{Z�1�Vt�hIYmSsL��lg3:��usEq0�i�Tm��h�s�zK��d4Uk���j�!�N<��)��Mxk���7t��(����(��d�&(2��qZ��aYE	]To!;Nvb�#F�a���6f����7�S��Q�lB��+O8��_צ���o���O���rM�}/B�M��+�_*d>;���$�J��HH�3y��#]��};�x/x�[n#�犷Jg�� v��l�Zx�A�ůj#�4������Iv�l;Y�w����J�NExzH���@�c󺩚g/<��~]C*�s%3ߧz+�i@�^�M���e~��q7�~���b����,a�RN��)��ش�0�HjL�Ҥ�%��Z�
f��`�y�Ԑ���sy�~L�c*�<��z�pU��a���\K��Ÿ��̮C�8���5u��X0v7�}3{X��*�-���(���MB�w��U}�v�.�:\�U���Ko�R'U��o���8}~~%��į[Z��o� q�f]�'y�J����L��n�\�;b�(B�)(u��z�s�ﶞ������>Ƴ;��{�sr^��Jh�lV��� ���6�ã
���@,5�XE~��yU<*�Dǂ�ʓ}Â�`��c;e�~�!����E��疗����~V�8�O�,�x\�H��$�U��i�7>3�
8�&��xa���'T}�\�O�f�uKZ�n;���f����{��z�-s��}^�ؿ�_nU��%ҕ�]�ǭ(o�Wg��2P,�{������/�����;��}a����H�-u�����
t?wg����'²�5�Flq�����%^�4/I�$�U�p��ۘ�uݾ;������y����us�{_���8YZ�0�����I�G���iL�e�HN�$�j����������$%h���hS�7[RpH{�2ux1��i�v#�@n��E���mG'���:�,)&ݒ�R���9���JH|���x>�b��yal�l��\
���r�}3Z:�$��}�z{�~�$W)�β��n�H�1�r��XC�t�%\���A��X*Eu�m���}�u�7�x�h�l�W�~q*=�ǭ��:��Cӕ%�[�����<�>��Ň�K�Ǒ�?������_%�/Eg���N�8�����v�ZcZ�ɦy��c�g�G��'`�@��ã|���[89�����%������{�+ü��ΞDw���f��p�p�·��}þ��CZ|�*���n�z[�R7�bL����z
;�T*[}�ʿ�/��V$���ߟ��Ul���q�u���ķ�����É������M��f�ɻ�[>���Ͽ��w���"�^?{و=}F{��-ߴ�_׫�/��������z��{0�K��+�ϛ6r�Zn΅�M��^-����ʲK�]t��n
{*�ZsK1���7��)�X�qjUg{>�ZБ�����z��}�w{Z��a�HO/�Ϝ�1{˨�͔ �a����:��>�)�	<s�>�{��
c^>rh_e��
�u@�%�W勡ԫ���\��>'��;|���ܽբ�e�~�?߿�Y�y8ˮ�����N�F�Z��2 %!��v��'��?�R�ց`��X*nGu3`��\�Z,��Z�����6L��ӧ0z���v�6G��˹�5�
&h�Sme�Qקȫ
��2Ќ���S�-Ai.��i�#�C��A��С.����￁�{f8m��*���vcݥO�'75~e�fl��BP�}R�B���{��5�����n��j�c��2�z�d�A�	�✢>P�E,�a�9�}�����P���/�u�7x̘�xI��y�z�2}q��%�]K���
a}��"JGxf�6��3����'[Kf9�օu�l�J��]��m���{���V>*����>*I=Zj�|�ѩ�"�j��U��X��/�>�Ď�M)���̘f�W2x��@1h�Z9-�ZkDY��κ;_���wD��B��!�[�0�,�ǒ2U_�mw�)�&E�ਗ/5���Zz��.b�O�����~�Ԑ��n����?{�ծ��jr�u[4��{t'��J��
�t$G_��@�4�,��\��1_�y��F�S=���E��~�9��B�:��M��ھ��M�*��2�
�=뻃�hw���)�*�3��&�[;���|v��)����>�@�;�ךm8m�UqO�˼�PZ���M�0,dp�ǵR��^Ϯ�ǖ|���iݾ�^����#`c�q"��
I�Z�*������ɠ�d p���Q��hn��%��"��6�!�j��3{ZS������Bc�ҢF�����Z)/�hz2����3�Tbiv�=;��*}N=�+����-��{6E�}8K�9[�&�a��o|/R�g$�����</�N�*�w��'���{ťHC�⧹o���?r�)j`\�ݳ|v��)N_�:���bc�=�m\|fX��T����i�h�5���D26���۴�β�����G�g����jh�{�J-��ԎJ�K��j%�J5L��S�{vћ.�,
��z�6O�Y	��$�3��/������b���� �Ĭr�nidh����D/���Z��U�xT���ˊ�Q}(0�a���XU���ԩH�-�$:�I[���]��郯M�k����P
��X�@#���p�;ug�W4�����u{ax<�[ߚѹri#�׳�}sO�$8�Nrہ	�/ZF�z�����Vq�[�ѵom�Ǝ.�!�
����>��wI��@r�ok���q��@]��J��y�r�'��:!�R$6��r4�evr�]����\�-�_BY�0�'��y��x�C��y�qm�NZM����׊��,���@��|�����S�yAk��"�������/n�>�l���{K�4����נ�P���`)�
\ux�qm�C:ڑ��;���L�/����~���al��������p�#?�|�Z�~�>�]�^d�4-e볬�`��l��?Kْ;c4�FK�z�A�z�gUE�ͷ1�
�u���?���2��^17)d�!��{�cd�	ǎh�xa�9�Ǟ�>j�[1�3�+	5�yx�F/�IFG+�p���Ԙ���$�>�}jP�*���Z��Uɨe���F�H4V����[q7�w��X�+�(6m������5�^!پ7Q��1D�c�2P@ڟ������=�K�|�R]�v�˾�/h�V.�L�[�U`5��GN�uҹA]�qC#��hX�����>�)=��5e���a\,���6*�~�{{l��d���Z��'|���ak'U<�݊Q��l}SJs�Q�&�Eyp�G��l��X���/+aԳ8��6ugq�1���:�
��a������J�{܋[�Guz�gMa�=�W��ܺ�[�?�q��O2��"�;>*0�E(x6��{K7��6�+p�E#B�|A�5�Au�ل՝�U+>��=�'�������g<>�OPi�|sw�;D�G�Щo�罥�����Q��-Y��n�?�O3)z�3:`�it_�LiH�/\3���s7��v��H�@�0p���y���W� ~
��yn��F��J��S�LF�[�c�"�:�;�>=Ђ
O�zH�NU�k- 0�;��(�r��3)�(�+���@`�g	�j�>cS))����f���F��Wܴkˆ3o��'n,�YX	�`�%��M�	�*��o��V���B28�h�nA��~��;��]`�>m�$�6w�-�U����ҮG�vh@�%������^d��*�v�F����Ϟ7w/uC��V��n?E����[wM���\����gyӨ@��V^yy�(�̞�A���nϩI�S{���=%�:7�#���cE�u��߮����p��I��V��{�5����Q��E�m3�"�`�#X�:��u�����A�"�5Mm�A䗹qZk��R��"���<2�!}���w�΢ <�l�������N��!N
<j��+\%�l�ܞK9ڮ����=z���o��͒Wzo����u�yg���4�
���y(n�Pk�Na;�q��!�Œ�q�SO�Rzf��n幪G^�>{n�Z��=`ŖXj���f�
���s4
h�=�F�T'��.6��sC�q'�*i���s_pzhv,��x��1:�5�y�Si���ҔЀ��h��~�!��}!9� ���hJr4=pҮ�q-��Me,;D��?�6���>%;ͳ��
��8᩹�0q��:�p��ō}�ݹe��7y�#��s��	��l�S�WV�
�Y�u5O]���%�${�8e�'��h�O��i�3ެ죽.�>]:���~ߪ��Y�ô{��5��S�r��~@� �������l��q,�\�&1��8_-;#�	V��Z��j�+�+S*�V��0otx������w�y��̉�.�vx3��|s��N�q����r�Ye ����v�2�L�2F�nYn|VlH\^�Ƅm����(��^z��U�Vqu������
;�"��]7����'��p��k.)�.�4P�&}��X����"�v
{?��7�4�/�&}���	��Y�~U7�H�'0Qp���ںrc���0������y�Q�{u�����J)hyn�0M�F;j��f�.�B�:o���M}S��� �0S9׌��d��[�,���WI�b#xV�"��xM+dNAs{�yB�0���6�ֈ��
-��W��̼ 'N&m�;�P�
<b*p��]��4�ٌw���������5z?��J?hY�2C�{��(M�u\8���Z|��˓�)&���V=�m᳴Qc|��M��C(/h�,ɤ
�4�&睿�ܧ�]�g��C�G��嵝`17�yq�x-������Τ�Y�>_�y��G����68�f�I���`ރ��v�j�`��.�Ke3����٣jAS
��C��iwC�JI'��d��#Lcλ0\�ޘ�RK�& ��2a��U���v�6�i*��`�>L��_�����F2�u�r�yt�b�Wz���C�=9�#B{��U2ܯ>�m
ҽov�<1�Ȭщ��הģ��P5��Z�{G�����9@ZU��\3�g�˞w�dz�t"^_���V=�������Y�S����zs{o
��Z<�(X�qD�U*�[�b�1O����jō��7�h������R�R���G3M���_��/�]fz*ڲc����;��um��+_-�'��$?�kn�r�00vO�RX��L�Z|[��8��<hP��=ZM��%�@Of�����R�u
x��]�KSD�ױJ!$����>���
��ߎ�[Ȯ+���yt��^��k�8#�U��tU�����1h�����*�@��Az���9�i�4"8��'�Ͻ�W��E#�^G+��<ؿ�u���yFw�qo�A����Zk�M��f�����z�*k��j"-1�D`�I&x�;~��sF�%PI	����������j�W��'ȋ-W#L�T}���~�Ne��>�!�	��^����!��;n�߻�]��5uF�u7�T�Z�2�[%w.�y*�40�8�<+�x7�+��oX?����1�x�LX�<�n?QM�<��v�M��Ԓ��N;
[^m�=���]��b:`�]z�b����G��u�e�U�x�-d���<�H�5uvQ��0�X�,��a���\�Ln
&M4�JP�N|�	��9�>� !���5���_-5�z�L�d�I���g����5ې���7�����Á-v���0�T-[�W�Jw��kw�U�n9�Cor5��S����JV������OZ�:X��$��33�P�wȯ�$�;�C$���c9;1
�{�e
=c�	u�����	!��L�3g14�Q��d���,�r�p�.ǒI�*�<8*�����Ad(�`w/�
4~���<�t��զq�iD&A0����,Y�kX��g�o�\H�Q?��¼���s�A\������y�̻_�D��З	�e��g$�<Q~�KF�S�ז��]|���Rȓ��MF@&��e��m�Qkf�D�|�?]�EkOL@c�
�\�aс�T,�p�=��괳L��o��+t/zۘ8�K=���0|�1V��p�۪&���B��xO��R��+>��0�zҧ�m鑻�d@�e���<�.3�W��v��,ڙ�R�mTy�Lc5��Y��T���zNML�b��*_쉂I�[��VnN4���9����%�}���
D�k�
��w����������2).���Y��JP�pI��Ъ`��њ��9e�������a^�BC,�p�yO�zo�ò|�W�ނ��+$����oW�$6:�M�;4^N��b!9t�4<�C���%�^1sϕ ��(֛F�Y�]��T�Ej
���{��rAaq�~H̡�.x�1��L�Rd��%��S��h@�h��_���:�m��䱣�Z�3`��VvtL���XZ���%�y�^�T!���9�����f�6�z>�`Ҟg7��<S�^u��
K����x�BE#�H��8�6�_s7����Q����Z�*f�����$�B��'�Š�F�Ƈ��7ИP%Ny�`s�є��cz��K�CK'1P�e�<��1?�>�[*8�`!/oO���b�}�.�"c[o��^�0�:�sg�IB��r��3�'��uS��6��ms���n�/Ӣ�X �Ⱦtc�B\Yh�#vKR������	�5:8���r\����P���I!�Rr�dS�
�aQj���,����s�՞��3��s�Dg��&J
G��2В��t�ͻ��p�etC�5�@����!5�Ӛ_�+���g��
�d��"�H}�%��C�WR�����o
�a􅈯���$��f�k{M�8��=4 ���{�g�
��*ne���ʔ�?,�)�����H���+U5�C���i�rc�B����Ξ57��!���Җ=�A/��A��ASq�ƏuG�Y|���(�H8��BC���L.�$��(I�$�eJ�����n�]=A��:����T��['	��j/Sz�C�	�W~p�$�ő�С�H	@*��K�a'����-��G/"lXX�+�O�<�y��E��@��@)���O�I��%�;�����$�ʸ��A���։�]��k�!%��$k��T3��P�?�A^�æ$������"������m��{�'��d1���{w��⠧�
�������K��퉓U�$�M�8ݨ�m~�P��3W���t�p0�j���|�.l�s�?$�0cms�A��
-��;�ZEj���ߵ$���w_6�aQ�<@�/6�+�ɉ��PsR�C%-�
�u�J"@�L�$	�1�hbi�Y.x���tR/^J�ìE�%�bʐ�j��{�V�=$�=���o�	�	U���Ů3�c��4�$�I��J��+��?me�`=�ݺ4 ��F{(e�a�J����n�b��`�k�#���P���	�Я�������4�X
��B�a�Ҏ.'�*���o�$�Ȱ��u*�Pz��<L>HD��?&���\iF���??61Pr伇�RX.`%+�ij(8�lrV�y����7Ε��r��g�fDJ����jB�a�^*�/��{�=gt�CnJ�^�f�X�/c�'��m�;� �%���ž��D�`O��
�<d��p$z�z�i�0}J �aiAg��WU �Sq�0J�����{����0-�(�hP���J܅��P1�-�i�G�PG(�b±���9���UL�ʚ���e��W �@�}��<K��;�r�������B�Ƌ���*%JbՔ�P�6�2�S���r�L�A֘�1��L�²'ٿ��B^�F����E] �2^ l�)UP��2W�H��+7�I�d1Q�t X��4,�2AX )���@S����ld��V��A�T	��@�(�@X&Aa��G��8��5&)߻�$�e}diM1]�^��Tu3�T"bUX�쾳�qy�G��祼D�%!d����p��
ӱ`\ �׀���%E&6y�?q*Ex�+��@��׋ܷpm�jG!��$�� A��C���(���F+��5^j�/��
�K�v%�`�4�����ʁht���q(�e�´���U�
@4v�)�>�"Q%��1[�*d2B�QZj$CPs��򺹁�P�m��JJ�k�
$5�$��W Ү4�@��:Yr̬�RD����H�L�wJ)��aU� �@�2Plz�W�$xŽ�@I,���6,�H�rP��Uu���”�>��� G�q,v��E�
.J��Z,��-��U��S��q-���<���L��~��
'�Ptre�W�Y�J	6�?�h��C����ܳ
�\a	ڀWi�Mn#qkd���6��2?��#����R��
�V��^���n;�;�-IN6���q�I��r���w��4��6����(��X�q
��$�P)",q'"Y)�vIC�����;R@"du�bUvX�`�C��N��s�0�s���t{7�E�\��ݺ,�ꅃ�?�E�ui�!-4�i��(Z�>]�d��m�`�i� 
�J�[ �P0�*��jj�tst�$Cϓ(NWjbͥ�����»��Z�i8�(A�Z4 �Ke3C�wW�>Ӵ�;��Ёrg��S�P51���}��@�=4H� 2l&e,䂧ۻץ�.��[��K��5M	��@�	���Ѓ+���by'�
�R%�BR'��\�)Aq(-�@���.���+�a�����P7zO�w-�ܽ��X��U0�~aX��*�������Iˊ���<{=d�^�:V�/��{Ja��K�>x�2ek�
�@ъ�J���g�m�Ʀ��d��*�)f�mN_���*�*o R)�zF�T�.qJ��W��m�6�T�Nry)�s��
@�ZqD|����l�QQW0~�J��
����LV�<� �:��7�r_��YV�����_�7��[�Lx��,D1����W�O��4L��q�O&��2�U1y�w/Y%�xߺ��J�":�v�
����S�@���u�b�d�g:ӛ1}u�0����{U0c��W��2�f�T�������G��GN~�ɣ����B���92����Q���!�*I���$�lЊ��S�0�b�Ҍ�;�/]?��%��������Ł0�3Z(n�ss��\/�]M��0xæ�i�RZXom�ґ�`�nP�M�So���Cz���f��V2㠲�6���NJ ^�
i&
�2���c�2���\�Ȋ4c��Xղ�@^��<��/�M4Yaؠr�������3�� �A��t�#n�e�(�,HA�^�B�F�ŵ;���۳��ŕ��R�e��Q}�i�Lѣ��ZҀ"qƟ[_�4����@1��L(�e�\�(q*ɵ�U$���4"�+~M
�S��	i岘�AN]�Z��t�������mx[�������a0x��ɦ���Z��=����n��}��!ˬ��J�o`�)G����E����;��Q��ܦ[�j@�B^Y���M�3C��u�<9�����>+�m}��#�D��,�U�O�C_�����Y�V� '��R�^|�P�`����GÃXO����^a�s֒"�]��$��J�r���n5֝�xK{��H�9=�R�pp����n'j�Y��A�,z�&��!�-w3VI0�k��=��Um�2��9q���8lF�Bd�?Bȋ;�S��Ԣ����%�^����~�b[Y/�L���m�Ƞ���3)`����\2K��
�!P�^��~3ג�=�o

(s��$
Gy�$5�ʾ���@���� {���
����tD�:���:94���Ó��Ն���cj�'��Q�.��bZ��q����2qa�L#=�k���{�G+��o2�"���t�x7m�*~�DN-�m�eF��|�����y�b9��mh����O)%����4�dݙ�
����.���ȉ�$7�����FX�#d8ڐ���D���2�T��FB���`D��J8�����͒׺��.`�����2d���g�_(MF^�Pj�dbjf4��nG�Nl�t`�Xi��϶�#y�)
F�a(�P
��)�����Z�q�
(�E>�O�Zf�}.�cJ�CSR���a�/SEA�:h���,Y<�ΞP21bYf����$K�?�z#:-<����@��艷�qU�\J��[����Ȭ��M�aW�eq�Z(�R��ߘąErS��'�b��j@yΞު��Fz�_�H�C���0h�A&�`N�0g�\��v�W�J3�'|^�TU���~C�h�C�w
H�H4 �4 q
��@ZdI��{J��JM�h���Q��7c�LUV ����/����T����dWy~�rDبn�Q&��.�Q��K��{�o�ː���b�B���*̥7g�6�C�r曆�9�ƻ�ץ�W�:��HDIV J�C+5 W��o4���	%�qq�A!i���n���uB~K�
�(�Q/E�\
���i�h�mU��1�{�����'r�
�^L�x�!"�ۗ�
mu�>AG�.�{+?�#5c��[�@t��>ݲ�����5 J����k@*�oRBL$��ş�3Q����C�_.�M~q^�TR�@:PA
(߼ �qc����@�gރY���3��<.,�D��K �LoG�g����]�����Ad�k���
3W S�Һ���lPE����R��lI)u#�BA�h�8�n�Q�y��m%����k�TOO<�D�>,Mm2ؤ���ң�>W��v%H-��voD�Cz�εQ��B�����T���^�8�ɓ���4�a��	y2'�	͞=�$�N]����yJ U!��*�@A[��Hlv�����	��@���O�#'QtR*��=�zB�)�F��sc��%t&o �U�"E���6
xj�E��Q�t�.��c��;i�M1��DZ�=Q��H��N
��'P?e*9UŁ
ˌo��\N�@*O����!���X\\��1�N+���Ms	N]�Ryx�_
(�_J	D*�+��O���]��4Ϭ�\z�XPJc��H��J�"�\�"�4��!ue���U�D��9�����X�:��M1�����j@}=�<-�8��4 )C'�K]�H\�t,�=�L���W��j�h��h:�Ϸ&���#���~a�X�JV����BKJ o�V�� ����0"�qV����7����Ū�I8���W�c_�.�g������</�	���*�^�rJ����&U!>���Ү@���,�HZhր�ߖ��N��<���_��f
F&n�rk+rh�����R�� ON^�Ȗ̒`��Dw%%f�Cu
(d�`}u��?1
�r���UE���E�dMr���(6H

B�VU�'E������	}���)��R���N@D6C�IM~,�d�{2��$�NHw��MTe�(�+Irh叔v�r#´���,AEC�_ѹ��<c�r�<��BU���^ft��2^��D�����j(
Fi�JO�RP^$^�C�DNg���BY
��mdo����@#��4�&��sa�MNlk+1Ƥr5 �՟��K�C�R
�T��2��3c�I�~e�34�'�:�2a��aiY4�E��_
��.2"S�9<L�=��0�*ϫ�=$�����w"���呒��8��ܝ���,-�R�D�I����t��K*�4L����BPL��A�f�DE�(��4�,O�eK�k�_ޘ.��0OO�U�bUx�����D�eJ5�JJ�,L�%�
'
������������Z�Q\�|!;��,&T�w/;�
���B�]l�ejY:�/B�0�����“���!Ԯ%i�o���?R#L�Q*Oi8���W��v~z"�+��Z4��ZBY�)$S�<ד�_�D̞�ʃ��|�:��ᆃ�r��j�4 �6
H�mꂙ�`_\���"Q!~Mma8g1��R�:���3�˓<���zq�w4"E4��G'��A'ɀ��ה��|k�j@}ZhUZ>Ӏ_.�S�"�!W��b�oO�ڴ(P��ÓZ�%8\��N���*p��x1\I%��rѐ�YGr5��`�@����6L
��z�t��ʲ
a�\�J��,�[�
:���!�|i�����n���g&��>4e7yBh"��!��;�/k@�q"��<yu0��hp�DωY ��4yV }h��U�Qe&TE�F)��6�QQ.O�<�Q�
�q��ہD�^��e�&QL��Q�]1C��TZh��Ǧ�i�2JT$�r�H�@��Mq�#�͘��j���\�<1�B�t7��	��$�J�E�h�d]��&d\�@�!'t��œ�d*,�
t?/GhgBUE��3����@�F�Y��$gU�"�dA�~��"�;����7�р�
�@*3t�Z,|sj^�Wt���ӌړ4
gk���xM�vK��KBM[ҷ6�gxF��I3���oz�R��Ӏܔ@�:�ڰ��H��HEe�@��1[�P��fi��s>�a��%Q4�j�4}�=M�v���Ѫ�b�/ԀH�?"d���
��H���cs�Y�
������
�>&g��T��v��qaúAyA��$i�l��^�鿫��L
�2?�ː"�K	�f�\|W �4�W$>́��O��a�U4��6�)��x]t\X�^y�mxx�4@��z�Ԣ�d?��I�c��YZh/�IPv���"��	��C�=�=Yj�[,n��Ҡ����rK�������)J�Z4)5�{�%K˿rl�Q�q��%�y���};N9=�K=�\᩻��n��|����JZt�f���l3��R�ev��iޥ_+�@�b2nbT�!Jȳwr�h̘��Kz�N��"��X���{��O�9�2���X��`�섃��
��+�q�ۑ��n�:#�M����]�[�����h�1Qrԃ��?�I%�(�m�k���ѕ�fc��Ц)o��/:�]�E�T!��̵������ӐݻX�!��2<3�C>�yvB�4�(�VR�=ut�vm����F
lc��?��ӻ	�΄|@TO�E��V�U*�{���tYk
7ޝ�a�P��;Zl�.�\a(��тKЏTt\�d�F	"U�nD	��RY	��dc���g��>�A�u���3��s\=����jCdV!���@�T���
�b<%J�P�:�z�r��A�!�D�Q�S�@[ %�8��H��
9��^L��Fr��L��b8X��P���@Z��9E���J��V���4e%(S�
J�j�6J���r�]-$K��'ӿ[����
Y}���$:Q���i:���SŇ���tRE���#�Y4�*��5�wk≃@b69���h,'trM3
(�Q��܏�覴*�S$�ex�t�.��5C����*�Z��Z�<�i,ش�0=�J�̓�d�@�$A��*A�TV���&�O��ߝ��hL�k��A�Ɋ5�;d
LU��P�;a8��0c�O��b�2=Iǔ�@]��	�܄�:aJ�DYi�����B�p�4�Jj����Y�\Yl�F�7oS9Fd��_��j���Q�#�S2,q�	�ك%.v�s�4'*?��W��w���:@��:��N_�A�,���~��9/=�C��"��~�"S�*77�v03�-�̫��	�͟�?S���ƈ3�Q��VNdb�jP���m�4�tjw{Aa��@4�t����'
��C��F��Ȥ��!ȏ<LW��r�9ϧd�&/L�K�c�`Lґ�y� �r�4ҕH'�*E��P�8C��J��	x��CE� �,#Y~Z��1�%�(��/�U�L��^��@�B��`|' *��Ԝж4����L,y���f�x>
�^����؟O�
T�8����>$�AY�^X����.:q�	^���OPh�70�8� R=}��"nv�ms�;9�!�>B���H2w��H0�	
��٧*$V�k2�����r��"j
��3)7��k���Nn,Q��nF�’�.���p0��o���j�ۖ6��A��G�y�>��F�EӸOP�U�'�ꩂF݂SGgb�T�,m�+w��e��&���gP�U��Tib��B5�D2;i�=b���K�Ӈt�$��5�k{e�eU�F�
@�N@�d@t7o��6L[����i���ت�p�v��
4�с�^�^khw̒Ǻ�	<�in���ġ.�A����3H�E�և�� �Z�Se\��'y�Si�1F,�Ҩ�^rs_�+�b�R�(�n��g"�B�g�Q<��7{���I���!W��탮פ�D���lZ]c>�Lm�Vo�&Е�@��d.زA���f�P�"�-פ.&L�+�~]hB+{�S]f�1ᓦj��o!9�2���Fͩ��$�4�X�Di� 	C��"��sp[��T��ۇ�`{�d�X3G�v�.?��~�&�q�1�忌A���g�hq����LR�	�~U��X]0��4X�Ak����s08w���P�z_�5]}���	d��ų�Z�~��ц�
�}W��D�'�Cg��<i4�TA��>�g'�nʳ�	*�ԓԘ���"�B�Դ2m�!�#�-��<`c�'�;��<�6�k�#(.?Z�)Y�J��t�w-M���t90�
�M�<$�4'4y��2? WTrS)�1:i��О:,���U�'��������WP�����
�fa�I4Dze��v*+AQ+A1�9��è9U
nx�ĈQ�0�L#o׃�v�%��FTr{{�a���w֕� v��<�cT�!]�YYR�"�yu��ӯ1��c��@4D�y��H2 ��3�,M�	
����p���8{�+�O-c5)_�bO��W
�~�&��LMS��&Si!)�ڄ+�h��ܖR��%p��R]
~F�D��[
/Ϡ�jb��P�%%�\D�֙0$	��cS3o�F��6Rg��DX�{e�N�T�����:��ϓ�@��h�Z�+��LF:P���&jրHi@$P��?�%�F�Z��z
U\�&U8ڀ��w*�w�CP�O�Ҥ�uuc$4,K�?��;/]���9�"O��9U��R�?(�R� �
8CR�F�+��J���f&��
3��)FGL̩ą�r����!�*������?��S%��D�傔�Pc2 �y�Pf��M��@L��B���`�<�$T�PU�	[&:�4!PE�i�*%��F�鄆E+Օ *)AD�DԔ*��
b}���0���bP��G��4�yzy%�Uh\
�&�f��"%C�1����U�̪�<g�J�(-�5հ�.�m|�(�
�l�Ԗ�(׀�>R6�+P��\ʅ�`�{[E��ϼ�A���#�
re���s�F`���jX�.�t�e�pX,ݫ)A-������AńAn�w��kgIh\�%
	��
A��y=SL�kH�/�>ZG�q�15�L2����	|ɝ����j@�|@��h�ç�_��0���qW��w(n&v���dg��:�аIJPR#>�N}%(��~�Fbr�䩈�F����2�Q�pTҀZ� ��M�$]iU���1osP�+B&d�M̓-��W���~��n6�#�� �U�D��!�VmV���sB��B;9pm�/Sn�$���tl�J���y�fu��9y�'&�+��W��%x"�N��(x���#����Z��]y��P��>�u���bu�&�UAr����<"c4`���`t#�-��8iTԂ��(�[H?;&��M���؛�$<y�`�U�k@v��UK�>��:M�~��KF\�{��T�=���m:�A:4lR����ܧ'�!�<�i�h�EQ��S�tӒ[P�-�R� ��AVJ>g�Z��1b�\��!��P=�"`��R2c2��:�P!(i�@�c��In�"7�+w� �	��ZFI6h��d@e
��	-��p�撵ݨ�I��ݤ���e��?=�4A�q���
��4%(�zJ������UՌюd���12nA�-ȈA���Q�����(��dI�$���j1>�?��&i��ꪂ�lg��}U�XvڲU�?�yX���Ғ
�(�e�����5k@yNh�x�?��&Ai�3��3��1Fl3&��2:ں���%�lhXl�'�r)֫<^�"��B�R>lx�<W�r���D:g��G�s����P�X�ڇ& �)	��Mc��ҏS�K�Y��h�j�;е�D�*|j��Tu�ڧ`SS����I���uR���,��$:����jץ\�MVL�C'�Pch��/�pX$��<��2F��Zy�h-<ebTpj�j����E=�|����*�g�{�é���q�J���ѧ��O����(Q�	�j�`��i��$�U�C�tʓ�za-MF��u������\�Y�����:��JHnhؤ��
��C�NPX�1�z��I�K�(u�����!�8�25�A
�P��&��D2���t?dR1Ȫ?��L�2�ǖt��w"[�+#S�ܜн4�>ɵs��9"U��VÚ�������;}z	�����yy����A����E�DѤ��U��1*�&*�AJ
��R��s)@���Z�I���B�y��r�}�ا1��5"�d����V<����R-0-ј��
H��)��b�
~@D�]�2
ȸ#5�=��~�$�
?�<��cT�P_�O-TʺT#T��LD�7�Uq��\S�1N�ς��D�T�ɷ��VR�/�	��DJ"W�ϮPQ�4 ����B%(��zZ�8�z��U�׼h��U(U�J�e(X�nIx"7�l2���o7?�yi���r[V����E)��BRZ�9e g����jW2�u��P.�e�g+A�ʢ#�{��M�����A^�3o(�Lj�HB�ư�ToЌ+*;3̓ظ�fk��n�l�.omI��ik�f�������.��4+P�(��>�!**Ǻ2��6�B� ]2��W
#[,k�:�<��R�H�ۺ}���+믒=ڊA&������i�Qq�8�y�d��H?��˪�:��RC]�[IK�v��qIM����~c�4y�30��@T�M)d׀\o�P�yjq=�y�V|&��|jo ���6N\�q$:��!�]�����lAe� ��Ĩ5R�$��*�����
�`sc{�:ecg,�����Wk�o�i4���B�HyQ1��_�PM�b��Q�:X��p0���2P���&Օ�I��p�D�bԘ-�҄AT#���=�pmP�04��}��8�2�`�TM����,�,����}Ͳہk�V3Ѵ@0�	M���SCJ Gj��ƴ��d���@˲aw��/��V��m��G-��RK�W��2Uȭ�g��[ٕ�b�<�ׂDNY�J�!~IM�4M�?�hqVv�@�o2{$�[�y뤆����彴�����@�D�Ϭ��h �(K!`d�TƢ�H;�q���Ϟm:+'4g���V
X��*���а��劦��E�ht5�%h����9+Q!�����_+)��������?�V�?T���!�\c}���h�T���Rn�b�k�y>yh���Q�
T�}2' �Bd��ɀ�Fk��&��9i�p�I����@�M�x*$	��y��#\�Tz�#��p�J~��eOf&F6�4MЃ(�r��r��@��PKK��~++Bs���O�S,K�7:�]�S1x�df�R�4n�R��
��h@�4C���`4�H��@��i9�Aӕ��I��6��<^!y�SQZˬ�-���J�g�<�D��zP�w �EhT*F�"3��� Z�VRٌ��\%�*���aX��"�E������o-e"R�6<�
)��i@��h�*�2�4]��[�|WCæ*AD����nA�D~�UՔ�����7�5KBMP��	�O���0��1�nt��63��Q�g��C&��옢eo���jE�r;�|0�I�D�p�Q
H}?5�	25]�ša4��DT�ң��y��JY51*�1�4�h�_U"jU�F��zOv������m�GF�&=��>�&[(�}u���T2E��D����Dj@���F��J�4)i�� *+A��l%�l>�J��b�r�7[1���AT��6I��Q.M��z+’�F��V;��`�`]ԯek�h��f�/�#�<�n����L@�&�-�4 *�@�4 wZ�u�y���O'مǃ����J��D6UMs��1r�i���V��*	Q�*��D��P�ڇ)�/��{d�޹�T����ʦ\I����/��iQ`Tv�!mF�5 *V�������dk��~��,_���}N\
�-@��dMC-l�*�v���KU�"	Q�t5W�b���q����h��l
g݋Y�b%��A4E�!��Ģ4}b-۪��V�,�6n�6-��Ă����5�cc�)�`w��kb��B�~�o�V�TyC�4TjWi���K
 R�H�.��qr���&�"kI��
јgP�@(-���za�f�V��X�x��.��s),s1��v�	�X3��d���?�H���M��d�6#N@�Fk��W�ɿiӀ���չm�$����o���Q���L�-�.��!FQ����ǽ��?��ף�<!��d�2��i8ua�
�ϵܢ/mw�H1�,.�v�{�\�-�֐}S~)/ ���S�^��α,�T՟D����}�}�E�ш-�whfZ�q��0-:x���a�Cü/m� Z/OU��X��cĨ�Y�%�&����i�[��Td�1y��(�I?WS���g��>�q\1�\[,����fQV�Ӑ�ؐ	�FrTOQC��Ѩ4�:بp�i8�J�@��a�KuY3� �(�|�hb�X���b�ƈ�b�5���"Mt�wb��jV,�z"�SH�~�a�k��0��G6�� �l>�є�T���#3��
��Ŭ4�`���4��=�JZ���d�@��'P����LԀ��Sy�%kA4&�y�ir�5��w���-�j�A����Hc֭�"	U��Om�q�ҍ�j�[P!]�,�[I��.+{��,�Vn�X���cN@��M:H~�Sb�h,4&��\ꙡio�s�@ԖR;�)-�Z��T��.�x��'<i��e�K49K�ӯ�C�*}��*�����I�H�M��qd78�"k�~
��Z�^b�fxQ-=DZ�-�(u���#W�,2P����I�h5%�f�
�z��R��D㙃ll��k��U�b�N��4[�����;�Zi1��VU��t��-�_U{����i��`�s�I�)�(��[8}n����e��K͸�vX��0E	�遈��`��Q}�3,F��OLO$�n�E.�5��I�����uM��d��r<?���죗ѪE���c
��1X�����D���{[n[G�ڜ:��˚�J&DZI�q)���H�L������P��<�t��k�=E�r�@����u�m��S�3=A��6ȝԤj8����Π�n��<(N[���^�O��f�d֣Wh,`UUO����>��j;��r�c��(@1eX�lx�{
X�<��=(�w*���+��}aіE���1Ht��m�y�����lCЏ��_3��>�쪐��F�����dA���_-�]�
�'�:�b�.��Z9Wŗb��(F�{zt"�$A��:M�b�QAq������k�#�1���X��`(2�Pf�'�ͦ0`p1;�9>Ԥ��D���u\�]�};z��-v?L��PT	#N����GM��}=��!A's��QN�{��9*hw��_��}?3�<���+�S����w�]#�
��fE��8zv��S?���^{g�|/Ķ�v�r?Od��ň]`�ˀ�U�;	K�P�ɀ.1\o�
tr5[��������b��7wk���<�I[⃾���
t��
A����f[��_u����z���*Wv�:���Od��E�.�8��>������#�*�{��Ó��(��ʣ�be�;���LE?ǑP�}���3�!*��I�,�K�����,ȉ��_1-��À"�,�3��a����}Rt����;=A�*	��0(���4�D0T\{��Z�h��HC)T(�ʷ�h�Gm�+��U;��w$P��ξ}����a���à�E���ee��+]O�#�����IM��|�N������(f�ŰG����`�?��b��5�D�a�yCàȞ�S:<�0��k�N���g�ۂ�-���vD�r��(WX�s���9�Kef�e�?��a@��P�>,��v�Ɗ+v�(s&&A�r(�n�0��u��gZ�Y�ɭ�չ�n�=l�.0]B�lÊ��*)Sym�;�R�!Տg�q�N�s�N��dTL̀F=w쟧�˓G���S��ރ���g�yr��?��=���P�oO��6�:��Z���Ǫ���e�V}��c��ʪ��d+�&���@?*�?���Jw���bF�[uU��=
̏����w��_�mAG�w��T��i��Ltw]kH|^Myn��"�E�*���h�-��H*w�j����J�i�O6��Ee+P���}wH���x���Z{�*ff���s	gH�A_�6pL~�{��5[�;��l��°�ƜE�c��P<**^���X��yhtvt�r�����H(��ьOgCɥ�vaXZ��hr�O�:;/�*�����O$��̀��|��_���f��]͹IP\4���8�J�O&:_^c΄�\A��_��o]U}J%^[�8$��Ţ�
}@�?�cb�X�ŀ
bq�0(F��������m=�/ω�%]�4WCGoL�徢���ĸ(Fm��d@��(s��/͢$(Zڂ"q�U�	�bp�
������f^�B�t�5k?L�;��-E�&���Ūc����O���/S�޼W��@�=b��3��׊�I�[��T|WfY���������J���[��W�-���L��L膌"�ޮ���(:O���Pd��8�"��������4�yU.�_�޲����&ze�H�f�1W���ݻ���b�~�b�X���
b��J�U�V�^���O>�x*%���_U3�"vN��t�j�#���8�g�M@1�(ޗŧ�@15	�:�=b�c=�7�,Q���|��e1^���K[a��ݦ����c����H��3)
1P�Uk;�iXOP�5��d�[�6Œ��[��V|�����dj�`��ڊl�a���j{\Y}��o2*��O������$(�6M�F[>���A��J&��|0�&�3mu��'�4�?Q
9�hfP�u;���i��|�W��-(F�0+~~��ݬ���53AxcM�_�t\S�R5�S���]`ױ*�k������'��9o��3(���x�u�m"��fjus������v��/���>����#n��� �Gg��AQJL#�ŅOOn�rt׮d?���Ԙ���(�M@1s#X,ɀ�91P,H�b\�;�bD��t��5�
��d9Y�
��bdoʀBT��
[�^Ugm5�B,6e&Ur^��B��c��<�'ZÝtԒ���2�xZ���ζ�h�,whC��<�D?���
��f6!w�ϼ&��b��w�EC�׼G,=|3��"�"t�ʐ
|�ںox���Mv��X�mk�~N4�*��#v���O�ňH�du����u3��mIռfX�5��?3�9IPL
�b]t��󷜯 �u�YeG��P.Jbb�2�
��'(f�A1%��Ɵ�T(�����⫵-���`N�� ��������¶�h�;|`~�W��*��T�����j��H�
��⮶�ܖW�1��A�MN�5���{kkU�"�(%;[nQzU&9����w�8CJ���a�̀��h���d@�1Ќ۰4�ʤ�an�ow<])r-?ّ���j��m��_�����mh�:�(�ŭ2���h��`�P���4a
�WbMI�9[Gh���<Ƃꩿ�k�~���3��;�T�M�+�l��Ο�we~�9{�:W������L�3��+T��(x�΂�㚀��&O��joO�=�)�N���v��l����X�Te;����*uƁ-CӀ��\�)1м��0�4���`���v&5zy�gZYL�
��rrZ%� ��g@���n��#r�D�1�P�u��=�$�
U�%+��l��`����[kO��zP<-j�s��6dx����/Q�nK�޵�,-W����:�[	N��<�}l��u�Wyb�3�QC�5;p��ު��c��G�J&�wC*�Ug�����P<6Zp/�g*�:�g`�O~�6�5s�����Yy��bm`����bN]��rO�����m�A9#O#���0��$2�=_(��׏�+�m���w�a�-���1�l�y�=+[/p*�{�A�jáy��*{Y>�^b��;�p�g��פ�����x��Ys�����Fۭ��1��޶����-����ş������Ͽ��f.���Ϗ_�J��"�?��{Ǧ����<$�E�s�à��U}��ԥB��~��r�Ֆc���s^��+Mm�Y���=�_�@���m@,˃�?�.:�̙_g��W.y� `��m>R�\����Ϙ�n^H��ʷv}�����cG��vG/����e�jwp�J��%R[>���O�eov�iȃ�)��m:y�k���y2i�I�����ՠj�'Y|ϫ�W�>k������<�v��B�/����{н�c��:sA!��p�kĕ�>�x����Ԗ�|K���}q�8��i6j	�Wv�=
c����޼.��tqb��1*��H��Ɇj�Z����[�V]Wi�Xcnh)�"�îg�ѻ:��4+.�ܢ�|����r��\��@�͐��(t�ƁLo�?�
_C����n��Q�@��a:�Q(������[vN�+�&�:*P1Т�0p���Q�xvB��$��\,���^U�Wb��L��C|�I�=��뚳�z
���hr�b�KL����3�M	�?������ŝ�'Otѩ;u��~�����W|�c1�E-�~���y��KC�9��6�����h��5��V�]��e,1��O�+/NP����4��SO�@Dפ�<�0�F�@�{��C�+Ha��G��K�b �G<���@� x1�#��A�b �G<���@� x1�#��A�b �G<���@� x1�#��A�b �G<���@� x1�#��A�b �G<���@� x��
0y��-���IEND�B`�PK`x1\��G�����assets/images/landing/06.pngnu�[����PNG


IHDR��y�-�tEXtSoftwareAdobe ImageReadyq�e<%iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.6-c148 79.164036, 2019/08/13-01:06:57        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop 21.0 (Macintosh)" xmpMM:InstanceID="xmp.iid:46AEC1B40A1711EAB39BBCF49119F7BD" xmpMM:DocumentID="xmp.did:768BA6860A1711EAB39BBCF49119F7BD"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:46AEC1B20A1711EAB39BBCF49119F7BD" stRef:documentID="xmp.did:46AEC1B30A1711EAB39BBCF49119F7BD"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>ϛ�w�IDATx���$U��Nuߜf��g�<ΐ@2J0`^��|�i��>����}.F%�H��$&39ܹ�v�y}���O�:Unw��gٱowuuuթ���/���aR�0�������5��.�[�.���oDI��!�6x
Q��Y��+z
��,�5-��+����p��״�͈�:�!"-�a�����	>�,O਎C��F��X邒Ȝ"�FՉQ�b��Ւо��͈jp"Xt� ��e�D�ivN�Y��e�L��AUъ+��#��%�k،�w"��J�`��n�HD<�!�w��;����J��M��-N�$�ƪUzפQ�����e� ���'@�P�����a-�h��ei-	{^�fD9������ ��K�t�;�I�rH3Z�Ւ(ޏ�=3�TND)",�ecH�`S��z���R�%-��`�O�"�yc-�%��(Y@Di=*B;R5�4¸��ш��l��g�J�:J��!�iF�ֹ)*/#�)
a��p �"�Z�����Dl�ZjK"9����*q^F�26����n�:q,ƛΧ5��L'��n^�yR�t�K�c�%u�B%Hyx��=��`�O�etl4�Bw<2O��j�f"#,�X��ND�l��P�P�Τ�"��PW%�xV6��xH���؅$��G��0#�w"XI�LJ��ц(>����$����eU��V���"�`�,�RT����3���*Y�2m�Z"�U�ë�w�9�c;���v)�(R�T�� �D���P#u�S���h+�u�W�aQ�Ԍ�E׆(�
���z|>�\eb\@�R&	O�Tҡ�e�$B��RI݈���p͛�u"��`)")��<��'�X�H�HP+TY@���]��7J��Ï�^3��u"�b"J���ߪ��n��k�5�8�"@�P�	<1b�w��M���B��Y����m3��ND��:)#`��B�2��s̲�F��@Kv�)�r�W�	���+XW" P"���dIDOو�GT�Q1'"N@D��diC�m(D٪��])X�.4���2�Ԋ(NGX'b���Bi-	b(akID���"���uhFQ����UYC!�r�QGc],h�����V(��?��(E��r�’��������I3"F�J+o�tN�My�hV�Ӽ��g<�Y������)��?�Ua'mJ���jI�
��!�R6企j3#ʑ�Qz'��y�!J�F3 �řL�_/�o�����z�[A[hXh���-�+5J�Y��#jό��Qꀈ1�!,=�h��Y��,+&����(@
A#�\�a�/0L�ĵJ�J�ʒ(Y�D?��̈rU�,��U=6�i|�a�m��g�aF���@@]P:`}��*j�֛�tJ�J�ݒ(�QEfDb"Hh�ʢS3B�w�l����րul�jШ����kj_�.F�;1U��J�Z���"�M¼f̈�w"l�pO�׆��A�N�V�4]&.1��/�g�� �)2v>\a���$�� `+�GԼQ'�D��y���2$���2"BU	y��iO��E�' yT��+��IYX��(ބ ���EnŹT�QQDk����~Dr��ȷ���D�φ��AD5 kZf�>�W�e�Y���t�������3��|$ea�V�e,��	�j��'�g��YL�d����W�<�IO���+3�MIė�wI+�^��Ȉ��"b�ψ[�DT /��9j�\��q�Z�r�H�a��$���(�<���z'r��0ifyw9v�D�����4�G԰Q'�r�Z��l�C�P�`�a�>؅E��� Z����)f�o%4B5��7aP����n�7���$���h�D��nFD�[��'�=��ND�m��y�Z�����< "������J�,G�Ca)yhh��"\�
[���"Z�R~m5iF�����D�4&�TNDL"���l��j=��D�$�T'%���K�h�Mi*)�Zv%�oI�Ə ��#t~���J�(*&�"VBۿӦHD�l���q�?L�}zG�&"���
P%P+U]�쌈�$�mZ�2���*eI�7��t��S�SQ�UkF����ȓ�HϫND"�G�M(�]��f�T����B����g �
*k7�l�nv.,Ņ}d��%kU5
C�uV°�!�e-�l�ɢ��.ژ�r8�vW���a�0b����K���~f�C�;��J�ec�Ԋ�/X�JtVE��M��v9p����IU��wP�*�D�+Q��'��
�V�����ܰ|-EF��}F`��H1��s�4��I�ؽ!���'LhS�X�8jO�а9��@�{�o)",
����'mn�R���z�:ƝWS�F����%�Ԍ���3�=;C7����މ0ۄ$e����n��F`�5`L0��K|�!�q�;�(�
*)�J4Q������7�*�V��]��cл��1��}+���a~Ę�aUJQ�2��8���y�6�9#������Q*?�z�42��\��CjU@I&�Y����Ei������ֺLv%�DI����M	�-?���a�"!h���tH��D��cC0�ѯ��BN*]L�{��Y򿠴��W�k
�/1҅F�*i/R�k�!�N�g!δ�y��̰���̺�q�%48"<�\UaR��&P�7��z�^Y����M	���#���Gx/V[dD1M4X1�<�]<C���D��ehKT���6�|X�f�]���|�	�l�nT+���ǘ���0
���Zc" \B��u���Ƴ�q��Y�%$��5"���0#B�EU*"b���9A6D�h��|zD5 lF�AW�jB#�i;.�T%n�E�ʂFQ����[�T�a�ʒ b�Β{?��5�}3"�he�É0E���ځ��˰���a��у0 ��1�!�ĉ{9�C@�����"e;@�D�&������	�QJ�ޒ�e��ŏ�G3"VUOՉ ��1"< "̆�
�O��pj�+�8Q�_N)�z�
o&o#��}P�~1U��0&�0��4h�d�䌖/#o��.1�v2|̈"4*�D��D�D�+D��eXFCD�䄝`s�iO�г:�tpc]h�/g�P4�J�V"8�T?TA�L��{��'C��+�O�(�Ь���1�/>�B��c3�"+�S3�e�'�i���7�� l��������b�/��'�	��\�h�ڞ��7Sm�	�X	[��FI(awA���l[ϲ.͈�N���k.p#&��A�yq;:"�u���P=j��}0]�&,��,N(�X���a�,�	�7A�H�`WB���	�`����.k��ASB�)����&(~�A�ג�˓D��Q��cj�m��@�!lC!�9#f;0��О�6���t�Q.a4�U0VĘÇhɤ��!�O��hCH�3�d�$hH���$eò~�Up�d���4L�<K�DĎ��J�P+D(y�)xc!�
���=��P����;0��T�p���(��`�z�'��P���D�1a�)�G���U���ڰ�"Q�A�#�UaF��dF��TD�b"��f�98^��B�+��$�K��-Z4�$�k�ksb��C5B��`�=a�/�ƄV:���jdDНfx��*D��~DQ�,�g�Œ��D�<;#܉(6/#�0��1'����A�V��}��.��Eʲ�
��w�=�W���5��	�ؑ\	m�D@��Β0I��Y�#�E�P9��*5#JP�2J�FI�������Q5���4�0Dh(��ag@h݇pK"Z �������3�P� .nC�O�Q]	5PBWN���$̽6�!J	�bZl����3#�a�QU���쌨f���c��Z!"�-+|;S�T5B�A�o�3D�T�4¡�������=����d0���3&t:H#�TW�(����EI��ëHإl�j1�A��5l���3#��E(��e�F$'��"9��Ă� �'�hu{L�C��a�L�9�MG�ޒ �R3�O#Tց�:?�����fi��D�w�.�J��⍲Q���Z�X���Gt��GDH����&c�֌К$<,��N��-��ХfV��~4��zS��jCh�%CD��a
���Bh��_@y��Hs�(���5Tab���<|�D��\�¨N?!J"\	�Hh�ƏP�c1�Ɯ�<�:3"t�p3"0/EkFY*�بB3�"T_-"x 
�2LIҠ��c8��G� ���>�.�/f���P��L�e�V_����;�L�J�,	^�i-	]Ƅ��"a�G��.�����F3B��nFDN� ��"�i䩭D����H�P�m��������!�{�h~��l@�[��1��s�*u�w+,4E�=azFI��;k�JDI���uY���.�~Q[pD�����	��3b�����E"�*�M^��
���Ȱ����?������"^��JP�D�I��=a���q�^�s�.���QJmː���,0�%$�'*�G$�}��˖0��3�9t�LND�Ԍ'B�I��ޖ�23=��gvK�?�q�?�?��#�I��!�Y���3_�(�	�π��AhBh={ў`ⓖN�Θ�H'W�$4��S]��
MCNayz��hA�q��W��[�����:���/h����C�3�}mX3��h��TD�����
|@�MR�]F��I�!9ƒ��xf���W%@=9����a
%X��\� %��ݰI�PC$,�HD)!��Abճ-aj�YEfD��
�f��!��"�_�׉�9!�7�
|@��SF�
a� �g]�P4Twܙy��XX,P��@�b�J(9��`K��c�)3Y4��e�aQ�2^�Տж����13#"U� �E�9�q�k7�T�U�JC�fl	dnyN��B��<��6�k�%��f0����!rR��Z��F�t�6)LN�1��$-ä�/�t��&P�TK�TH"��DHX=5���Q�$��^�5#���9,B�S��ϗ����~��P�s�95�& ��!�hC�A�L��=�Rz���٠�|"�G�]͟�G�_��N��
��'���3�+a(QP?�%Q�$X��A�1D��"A��D[B��2B�$��P��#��4FWÂ�fʑ�+G�FdDH��9,BJ� b�aѲ3u",�D�"|'Bu���N� "����Q,�3��}��.�T#�V��5�F�b%������-	������Z���Z?B�y�Gh�����b)Bj�]�,�]��$z
m_Q&�ܧ��	��Mj��t�"H>B
Au�Tj�!�Bh� ����t��!�]C`KP
�7�/V8XA�b���Է'LQ���(��ІH�L21e�o�QgT	�Ї@"�1��5���c)V"Y[#7�I�T��C3������1
D_'B�&Ju<AN?�"t6��&�g��a���cC�C9��=t\L
���J�F�4&�)��W�.�Ơr�I98]�$5��(��	��)j��B�)M� K%�A|���]�O���/5�wNf˫ŒЇq��!,BgLDs"4�<����Q�ʼnлe�\�2�_�X�R�rɆ bdӎ;�$TM����~ⱐ�G���p� P�
�s��_{��揪[u%t�&����(Զ�e�"QhV�i�i�#r��D�M�J�~���58B�&�����,�mX��q䏕�g�}���Mu"4�|�J��GFT�pCja���FH@:O�Yч����$�VB� (�Q�sf"xU����*A��;{j��~S�ޕP�7tN�.qCx�ն��:.DB����UH+�D�gI���D�#l<Տ�1Q�	VK�4Bs4t�HN�����&h��!&"̉��*CS3����>B�>�3�P�O�+�R�3�}��-j��I{\����ƨ55"@U��A���u�j��6��xo�����J�*J�YA!Kœ���P1�B���
+��#L�%X�b���#���:3�Ʊ���"�&�ќYK�\���xh���E"��M$�a�yV6�
A�����}�X�c�U��1@E���
��ɛ�aL4&,hEK"8k��"�?PS6F�OS���hv[%�kH~����E���h�10#h��F"7�(���ZZ#QI�`�ì�B�u4N�d�����������kUjm�5�������Q�w�փ�[h��j32�:�K��������Xc!�Ѩ��hŞ0yQ#&Ծ��%�+!A��L[�R�N �l�%$�~�Nx�a�;��~�k��.�S�~z��i���4��&Q�V�bj�͉ ��fg�E"��J@�r�o�ǘ!�F�3nM
?R�� 4�ԧ�����u��
��{
p(c�Y0[�BgC�Wz^HބԒ3R��6P�ƒ�>Pj=5DB�j�v�䝂��2�,ď�\i�A
�D�J���G8�10���
+������$h�TDNW��38'B�1Hp�h�N�+�l�f� AyD��`D��H���Ȥh�Bi���cA?xY�d�z��6jr+E0�!�bM�w'3�<���^&/7�
ʼn��ɃťFi�M�$�t����_~d��z�R%��:�����#T��o���!��jB�W�����רr��82"Z�N�
�
Uc��
�n�\�2����#;R��"�f͚L$�X�D�� C!�Y������_~R�� ʹ�l�P��e���*��=g�S����Z�h���r�Z���S�G@��_H�.DBh�ZB��~�!9P��D���T̲�d
�èG�iD�%��6,�މOА�?��D+Vj�U���ZT-�”�II$w�/!dah��J������X|~�?j��!��ƎzYs�,��m�]��+'Q<I��n��[���w
,l)�l����[lXԳ��R(fI5�E'kh���GF=��=�`c"���'h(��)I��L�Xir"ŠDHֆ0���%��:b����1���G���O��C�����v�S@�Qs2�_P�	1e�h�	щ�Ԏo]��P�M�A
���Z�f�lJHH-6�~�l��kH�.�Ŵ�5�W98�J��!ln��o�S���r�>צ�R��<��2\=1;�Ɖp��8� M^��
XtBj���H�9�
ƛ��m�\_��c�G��G����+�u9p�J_խ�'t0����q�8����E�9kC��!�� ������������K��Y��:��$J�F��L��h
�]�A�|HSc#.$��Z�'�t!�}��~|S�*׏Я-��6�kFPm��a�ɒ/\Q�?X�Bg�����dPII|�����ŦR�B�?��ƜR�
^�K��b|Sl.�XJ�Jg
R��w�>FC�hI�q�"���W�	l,	>k#����Q���V�~����Yɏ��?���Y�1J�
�m=i&����3�FL�B��@'�{�l,	�zb�!�,ď`��o��G�&�@�;��𴥈6�d�P~��U�%}�Jm��3�[��"X�����A���=�%�
[�)�F(!����gɤ�L�Jy?B*!t�,lg�kh��hގ�+G8E���p>��o0h�ɩu�ӬQ���?���P<��q!�iPR���0#rG_z�
HF���U��`���ԏ`��#(*Gb*fI���4�Z"�ȕ#�T�ubFxa$n�!R�
N/�ҷ$�C$�~DH=��6*�5!�z�-����j�(��נa(Q���P+��ə��3|�lI0�1��G�>�6>Bj��m��2H�D�x5���.R\׎���eX�T�+X�M�lrx��fm𮀵Q�����%!��ʖ0N+˝>���SJ��)��6�RpD��|�kw��ш<����$��'Խ[�b�"�gm�,�A��n���%ሦ��+A������ɵ� qk�v͈\3�@�Z`��@��
I�ݥ�!��5�!7�T�k��4��B4%$|?B���W��.�Yu�,����ߒ�Ѱq"��"���}��u��
I�V���W�%$��#�k���h;k�%$xÅI
ٯ�4j��f?�3���joW�]���9�i����숂%!g4��+|��7�(�AD?���!���A�{�r�F���� =mcP#if���>Xv��V���ѦB!	ƅ�k܄���jp�b�����?u��ɼ
A��M�V�Ɔ�c�،+]��Q��7z�$�+k�w���+LN��:�A�U�Q�n3H։(t�
���j�WPkF��+G�jX�c`FD�
��:J¦t���bM`|:L�)dmpU$���xD@��`?�2>��&�� ���{��l�����#��V��29�_�TcdDXqJ�7a�+>z���a�U����\j�
�|{΀��?��w"��YQ�ks4�X&Jjm�O�D�^\�F �NkO�WQF0k;���(!����:3rB�����j		�6��|KB�GϏ \�Omg
��%Q�Y��NHd�M��S��^M���t�ll
�E��I�9���rʆ�� �:>��<s1K�}��YC�Ƣ� �lh*GHZ:zp�3"��D�
��yK��ҕ�?���!�~4��a��!���B���w�̭�o���$���֌ȫl�r�p���P�2L\�Td�Θ`��UF�ӏ�HJ^'U��B�ZD�#d/$�D�,�P�Rx�����5xo��!L�!(tՕ��1#h�ho���P0�Y�\-ѓr�K?YC�������+aY?B�\#��A�b��&�;k�G�F�3 �Zp%6�a'��Q�#�"�!.�i5�{�xu"��O�
��ҹ��+��_�R�#Lb��Y*e#���~���S�~މ($n�)'���yo��L��+`�B����
�h���jAX��`��D?”�AL�,E'B���P+Y*9����H��s�������~=�݈e��I���q��#���?"�J�B|�G�� R1�|��kp)�J��O��Z}H�m�#� ���tw��z��Q	�M=	��{M5y����#�.�n�~
b>�bC��-fɤȈ�G�N��X�/raDl�I���A�)SC�;���P$v��:3"؛�{�5�cb��!���@|�T��'�!b��w���#r�|�Ͱ�T*f)fy�n�ALm>��h�`?�Xƒ�`m���C��IP-@8� /�H���^W�5�EÚk�J������%��_?�.D"��b٘�A�&Rp���v�nL�_Қ4L�e�	�Љ�R�	&�v���)>�I�Es
�``���4��\%K�w"��޿�ob��(J[���ߢ��.Ɇ����^i�T�!����IS�|t@!g�K�`�&��-6
~D��D!2¦���I������	)�³\b��|"�{�Ų��'�K�Zk�)��(��%��R���C�V��|
��%��}�=c�&�]��!��$\����2�
F�	j�w��N,ͅBːxƂ��.�|m5J�ˆW�~��_C�I�Y2��e���DP�_$�>_CRʡe,=N��C����E:a9( P������G�BN�<��\�R�5��!Rg��z��\bGΉ�~�"�5e,Y@��������*&"��_�٭��!�����i[J�"���Gd�=�^PjF�Wj�!.M�&�$b
���|��Bp��s�=��GH�m*l�����ߔ�P�V��W�1hB>���ķ�$	?C���Sz��T�2�FN�W60u�$��9M��^[
^&�5#��"Cj$*�=��ٰ}&^�=C�t"���P0@��eO�&�yT�#4�;5~��x�"4N���JpgIx�,�|��W�5�ԛR�EEYkJ"�*4#���������3�5 L��+����z�����b�$�+T��A���e!��(�5Hm5r���APIAkJW�	
oS�	e˓�;�f5btG�^c��D����@�fţU���Gdc$WB�#�� �����F�Ei>C[9������'���PC�Ԡ�Ho���9��B"
Q[֔���<��
ř�����i�O$r�����GP��W( �l�"���=��w����!�k�._�Hm5W�2��`�…*���=D�C�e��D��Ϩhҩ�
`=ô2)d�Ѽ!4ȠR�F�a��W="gW�ʜ�肑�{����X��pE���~����F�@�ة�$���E��4jތ�� t�r;��GF,���e8��'s���b�1$ ��Ҵ�rp��܋Rd2����Sj@h�5���'U:}��g+GP��e��&�X9�E8S������\��6��x�h߫,,9�v�to(p�,����Y��Jh[0XDv"�l^��v�o+x���4��.�����������b��T�ǧgI0*.D�S��ƹ-��翏bS�ˌ���Sgk0�I��$�$l��m[�Pho��s?�)�j�(����W�	�: |�FΒ�^�x��#r�VZ{�$�� u��-	��_o���|�M�E]���JԤ!}I�$TR]�r�G`<zpƭCϛ���W�Q�#\���	��q!�y�x�Y�҂Χ�¯di��TT��!.��(t�`�����{���&N�'Y��I4�8�D
0>mx�ɉ���GJ9�͠��w�R����#�w� ��B��|�V9�� ��$_6B(c)�f��oI��!"Q}f����O�0J����W���yƯO#�㧜�˹�!�8�%D0M�R(�U�:k�$Jp���v��7�pa�2��jTI�P�i�Kᱡ�dP�L�F�1�#JE�q�AT�}��0r�<@�p��`I8�+��,sȑ�V/�]�*][ك�m>����5�L
��gaA��%-	�����5+Q���Q]D��"}C
Bu~��+�NL�*����J݁�kI��+�GF俾��F�G�B!u� �!��$D�tPP�5!D�{�׌`�hI���3	�֞��6�?�5v2Eu+��^0��K�c��g����s
��؇����"퉨�D�H8�|
�U���\<B�A��儿�#�{^{�P<BX�͛������L
~Ebވ��ZꦡU5,�駞������\��a�n�
ՠ�,�
�J`L�[���#�q.� ��o��wӔ#r�5��J�t���ȵ.�e,	���5#D�K]��F��yo�q��D�B|�ʐM��l�Y���Zi��%�ND��Y��(6�\F���IZ<W���?�Y�Zc��#�N����d
"�TP1��(�i��/ci�����P�R�~���|O
���i���6&"��3#bT����
Pw6D��h�����Ƙ�Q,��u�{�}7�Ώ��w�Q8\�FM=5�d��Q�P����l�On	�L
�k��D��%���a0:DYm(�(�*6#�Kf2V�T^3������6D$@}�TwwV��+JW[Wb<�·q9?���,�G�|H[\pI
�o��|F�^T:B;���_R�Gx'BX�ޒ��#t�D.�)հk3"��` �^ɿ�L1�W?H�Ӫ�
���'�LP���Q-���GP�a�����ur��&�J�r�J—�
�3AX���O��.׌(��p=5\]�O��6�>����jXV{�F��2����fUv"��L��JdC�k(�8*�U�JPM�C�گY�$�b�j�πJ�¤_�!Y��?*�0�ʼn���wU�P_ы��b����!}/�Q������5�*�ƫaIl��nB��.|=���(�%vOU���K�G�&����Z��#GPM-H�f~�i��o�5�Ж�P{j"T���*Yڌ7��뿛�|PXp]Yh'P}^C�8�w�$�ٗ��YXR��")e#X�Ap�Rm���]�����*Y�a�so~�Ri��L
�J�&�
!M�O��: T{He�͘T��_I��=Y�(j�z���2,	PN��
�A�@z5�n@�@U���L�0�5�w�jIط~D^�j���bbg
n�ȓ�_Ah^����$⎇��3do����r7
��'-�	�P�R���
1Ħ>##4�(,>�	�����P�%�5jV
�ڏ��e���I�"�N��k�F>M�ϼ�k�z��,�+Y�B����[Ṕ`�%!<jh�Y�t,��%�'$��JCq-jʌ`�4B����v��>�Wؒ��(�*��Jz3=��w�$x�dYE�^�މ�Gb��5<3�	��\��[��"^�ߑBI��25�����Z�;�2�L�p�$�iX
�̪���d
��v�t�+N盲3l�7N9	V�:�rf����D������DF��D��$�J�BJ���#W�Ґv!vЌ8!�ƉXS����R(Pɂ�5�!ÓUuD���qA6�H[0���L��"��Q=��@�gt�V?C6&�Z�ܒ�-\��#�Ĉ�і���k��EW����))��B!S��LG�T,Dْ���,�����##4�By
����{,�Ķ�!���	��h�.X�:���С�1���-�?!��IP]OGm�D�a��5|�R?#��A����dI�ba0�FD���8�w2_����T�"�X*
>�ȭ0��V�e#�<�)R{fD����Řr�Jv��}�®k�bX�(�p��B�0��Bk
�Z���&bhS6��T� �d����|J�5���՛��\K�aٯ5*ӛ<�h妣����T�!�`ʐ��8
�d5�ҟ�%05����=9X��'�I{'�Y�g0�@��:F?�R
���J�,	�}(�Q�y�ۓJeJA���dwt�Ŧ�G��۸f��]
�P�X�R>�hF0y`��&Տ
ѾH��9���g�CB��@
�����Sj�փP���P��Z)=�[֊+Aʼn����gmhS6��Ӳ�e���K�	b���SnѼ(���_2fj�7���)z@�.Fc��;Ҳ��}��� �d
�R㪛�_2
T��`;,c;ڤ�5�[y��+b�¼	1b��J*-/��U�J�����]����̵�P�4���zT�s=>
�?���_��DL�G�����n�d�S��BqE�r~�=��c{u�s�Ev"NM�
��
9�aE�ˉPf_�7A�\	)w#؏��(Ə��L��Y�W�����P�j�^#�L
�/�9,��3;P�4��4P8�3ân##�B�k�P�=ԉ��z�����H�eE�`�Ls0��'o<��~/H�u���{)-6l�L���ۓܔ���d
"$_��=a�A����@��Wh�)M��F(�A2/\5�Bi����t�e�y�z͈���瀾,	P��C1NDT�҃��\�D�aN�C�N�x�,>��J�R������a
���}kL�_�gɈm>	�D����jvh&�|��n�/4N��'���#�n!D�auhO�O�f����u�K*<h���WK�*Ʉ$��AR}o�)T�%���Th������e�P\0�s(�I(�U�=])6��7�*3��#�N�kk�H��p�#�xW�$
� ��#�c�Kx)�&�TN���6[r7
u��K�`ʱ�1���!Y����`�֬�;!�
��Wp�V�u"2׻�$�����u���T*E)~� �P�tI�lP�L�,C��4����s^1���q&ai$��'Q{R����q}	���q�Z{���L;��ÀZZ�O;��+���
L��g�+V��BVoĉe��<�/���Q"n�)J]�25��Z{J5#���JQy&���h���"D"�A�-���+Q��ŊO����!T�u?�-P'A ׏�KN(�,��,�%i�������B%K��56��{|r�DѪ��8̚@����%
Q隥��9z����߾%�8S%枟�܀:�	1T�D%I�7�d�'�y|�g��=2G��W��K�/%X�T|���"�V*Ԍ� T@Ή��3�Fc^��h�5j�G��5cFX�(b�#>��u��;����
L�f�#��|��%�>����Qx��jFpo���A���Ǡ�z�V��3P�Y�����##�v>
|	j
T�5.,G#�UM]	��S��R���^!r��������s9)L���b`��vWB1/�\T��0j^٫P��Pmsi,�'D޾�����2G�V�!�f��K�w��P�N�ɏp'�oI�G��Xƀ��������'�
4E!�p��b
0I�2�.���%�J\�R�k��"�"%h�0p�T�r1�@y��}z}�� ��9�:�80$�͉z��w�ܩ:�D"�No޼y��햝5Yan��E2~b�“5���A1+8
��--�5#��� �U�sB4cEU.�X�!`��Q���^K#x�#|P��A��,jՉ@p@���Tj���[�lٵkW"�����?�m۶C�1��ZRpxA3�t��.�rD����|�XϒPkF��F��MQ�s�bT��*of�|0�t��DZi�	�{k22�E���,F�2��%��,�v�:�uݶ��+Vd��>{�D"A����{�m۶M�8q�ҥ�gB��nh�6�g\��Hi�5�L��S(�eI�v���s�,��t�)բ�����1��jm&s��.1ɑ��ړ�`	j�wH�ק-A�J36mڴU�V9��iӦ�{�&��̓[�nݾ}{www��v�(Y�KeaF�~���p*���2����v��p>�Bc8腭}���E��@���Gx=9~NM�QK�נV�6����S�Nu�'�x��3J����[�l�<y�+����鴽Ʀ���77�W���%}�M�\_>���ˆ��@f��x�J��Ԣ��{��9���fDhL�<&��<Hy�y-�#@
�?!0,B���:�%2��)SN8��q�zꩭ[�N�81�!����L,�ʰ�w���e>�A�A�J�����%0s�In3�\���7�8+}`��������6���.��?Mu+�3��
9@=�3f�����r7:;;3OFP�ܬ�o�!�%m��͇͢�f'��W�RS3���^��JO
O��֥�c�D�]��趶T�yܙ���@-^�����P�x�)�{���wuu555m߾}߾}j��2�3��e�����1�-*H�f�v��{jPf��|
K�!ș,��
r.B���m>�Ռ(�j1��S�f/v�5�ć���'}_���ٹv��+V���iӦx�5b�mub�l۹����F�+ci�[0�p���ֹ��Pt�Z��{j���<d�Nć�����dk�4��`f���ƥ��DX@�:��nݺe˖I�&�^����mʔ)��tzӦM���O$��.�#lWp����g�LN�!��ˀ�W�0�|��f��`\�1,h�����oJm�Fx:��4��51!�@"����D���^x�����X�re{{{���Ʋe�2��M�6�۷/�L*&8��&�Fᙏb����k�
�\�\>�����%h�/�܄1+'�^}8Urꔰ�F�ӁB�����}Ą��!����33bpppϞ=���k׮mkkK�R�0�NϞ=;��8�w�v]�*8�Q��(T��k.R�u���0��4:^Km
K���}��;��Id�x��Z��f3T�uz*’umI���a�Av��Pw�C��ںr�ʦ����ω�_r]�K�H&�^��0M�[�%��J�ٲZٿ3�I��;�Au�7�����}ٴ�}���$�{����9��B4A��dU�@�#�߀�zP�C?O�q`FPJ'M��y�;���t���{T^Z��̮���k��.�	Uۛ�@��(D��������<c�B���[s!4�ô�d�����+����%,���~D�U{"�a^ro�G��^��:l��C�h4h����x��p�J5��ͅ8�9?v���eI�G�X��C��uu2!��?�}d�-��괓 �멑�a�cGո�����te�+�P?��$��2���_�x0@=\ݘ�	�?���DX��RMAY��!���|�
N�jXҰ��~�+w!t�j v������N�WV��	�����]�p1gbX�K\�a`��HN�2k^q�WfB=�\�|�ϐ���F�L`6�
�ET�e�g�c��_�x;�(�P_�#�:	f��g��8)8RK	תe&͵�_�g~P��Q�Ӊ�C���T�Q�e2��X��_��'�
�a3��S�v���Y]LW��ԾnB>�";]�s:b��R���֒�,���Ӏ�s�}@}�~��y"G�&O4_���m+jU�g�gzYh�)M;Q�O{�ͽ�J�k1D���~��&H���T9�6I��*��9��C�Q8�6&ِT�L8i������d�)��q���d���0��Z?�*_��u~�=)U��I�?,�͢�� �"<&�wֆQf��H�DU|���H�k��d��u{ɖ�F�j&�����G���;�Ɔ��E8�7�w<p��iWmX��G2�xd��o�`z8�H&&N���S֬�?ch$i=͍
���sxn��?ubk3�@-�=���|�U��U�|����M���[�
��t�ht
-na%d�SKgC�?P�'�8H]�n��L��Ѿ��揗~�W|��W}�[o�ί�{~\$�޼�K����+�Yî��[���7�5��oYI�?�[��5#��������e%A��=��gΟ�f�ܿ�������

�����Rn^*����HϽ�v�S�h]JC�4>'�������Am�Th��q1i/8��-
�D,0I+�8���S)����4�
�:G�A@�������7~�OL�?s����㎇������N_���*�џ��o�q���J�i'���t��~��+mH|��؀�l�b^����~���m��:o�"/���T�\=��.>}fg��N_���߿����̟��iƆS)'�4&�#��H*�����J��aq��*�p���_Ҫ+ׯhoh�<�=���pC���H:�Й��.��8���w�����&dV�y��
@\57���P���z�n:$�����c�%%�����cU{5#X%�7\s@��x���N�X�~/����n����������������懷�Z=g��۷8��_�~������:t��?�m���}ř��C��gnh��x��
�|f$RU�?�MM�>����Z6}rvCYf;)�bP��";��jM$w<F�SS:Zn|�3�<��P�$������o��p*�p��O\v��������\x���GR_��O�;ZL�������K6Nlo=����qۡc�1�ލ�.[��;w=ܐp�z������w˦O��+6�=v�߮���������[��ŧ��3=j���Zh�?.�ݳ��7b��DD�Ĵ4VB��
�(R�;8���`�%JyT~ټ�47��egOhoM:NC"��
+?�ڋ:Z�l�ޟ���Go}��qu(�G�w��o�-|�w�s���ͫ�L烼�!�/��}�?�q��.��$��M=���o���_\��.^<��?�u�������+�/���u��ٰ⋯��op�C�����yǾC�lڒL&^:r�3w>��ڲy���?�9�J�|�;G���^u�[N[���y�]

���'�
�����w~���<1�?��{���Mio��q���H
�`�f��^�2_'�v��|�E����)�k���QBKtd�MP2�D���/9�t�T�2�C�>�cρÔ�E����hN��؎��{n�HS����]�_�hL��;�1��޾��G���9֓H&�Ι~Ҽ��[�C#�M�������~��w8H��'��x��̎�G���m�?���{�|q����O_8{�#�{���=ǎ'����-��#��Njo������?x�gRw��K�77m?x�-ۇGRs���p������~a��W���X�`֜����<���#/�L55�ݽ��Ɔu�f�:|��W͞����d�K���`�@Kk�ʹ3VΘ���C�����h�{>�ܶD�Y"nv��G�����2��ճ��ֽ=�za�ѣ�O�;c���%�>�kߚ��GF�}fk����iS�^:ס�c�<�}��p�Ξ~��m[�~rǞ޾�Ɔ�ų��4��|fTl�{�X_�ڹ3�p~�JNۓ�e���65�����Y6��y`$}�{�MM��
M�C-mm�:�l��kn�g����?��ӯ;��;��vRG˕�W|��G���=���s���Gz����=�׏����=��ݹe��5�}�ཛ�/\<{֔	Ӻ���7'�a�E����w���MY��J
�u.bt�T)䒔n/�����K����_{ƺ[��{��������ްb��Z7����_㖝�3'��n�Co8}�7�~yc2���?���@�=���Os�)7~�=��[�߹��_���gҩ�S��m<��/�<��^{�WX�g����/^>w�p*��g���r����g}�uu�4e�ů�y�x�]g��?<��o�_u��g�޿\����9N�v������ם���o�lb{kf�;��ǯ��̜4���W����}��z��o:e�'~z�ӮKz�������K�Q?�@Oo楟���c�-����thMW��t�[7�O�������D���6�pΣ�fd��?�w_���[o�W�IK�^�]�37�}�wme$9�3u��<�y����z����G�{��s�c[3�p��$�|��Egx{��������<��c��3��[_���O��Q�����?��?yƤ�=��=��y�����]�g^ڿ�K?��S�n���%��x�7�y�!7����=�y��-�]��7\q�Z'{�=���^����krױ�ǒ����+�r�I
�D�������{�/��iݸ���J�v�}��s&d�ّ�Tj(�N;tݬi
���?����M8����ikH~�s[6�Z��[��s�~�Ц�O]��ڒʬhtBJ{	K��N�ظn��)��N���'����O]x�ӻ���ϛ��e���Z�Ȝ�N���m``�qDU�K\��������$�\����dվS�ٺ�X3�EQ����tHY*�Ì`��4�/�q����~q����Ɵ�揫V,z��/{�I�٪�/������������\�z�_>��[L���.xυ�͝1���	g}���45N�h�����|�)+t�IS'u���?��>Ý�Yv�*��¨-�J��/;u��xˌI����z�Wq����y���ijm�۾�k�����S�-���qݟ7}�[�Jtw���ϟ1�M
�ǯ�-��D�{�2�c��ԐN8?�ԅg�쩏��������t�=�>��7_p�g�|���o�s�Wo���
+�:aaF�|��}�������M
M[v����o�rzW���~��K.Y��_xӌ���d2���G������x�s�Y�^��K'v�>v��?��s?�����#����`�ľG~|�#����SOX�u��w|��߾��mX>w򨆟���N{�'�778��w߹�?���5��M�|@�z����	-�����s�NN}��{��G7-�1��+4s'IR�7~w��^{�5gn8�������gj�O�t�IK�=�s�?|�]w�I������Ҷ��w\p���x٤�����_���{�mk���0�d����ށ!��b��{|`�=��$��$�h��hyʆd��y3���[O_7����m{��͜e�=i���p���OZ�M�Ҍe��3e��	�kfMy��oj��S�Ɔ�+}��G;[/X�����u�uGK�i��8��:r��‚ɝ�i��1Tz����u7�L����o�DJQ:��wJ8�/��L�^'b�ȝ�OHEijH��E���������kf-�y�#�������������#�n~���KN\9sBǬ���p�Y'�^����=���e��tRWۙ���dNKRvK_}⪯���u�fw��tw���d�}t�n���ip��N���\�񄅋�LX=w�'�~�ɋ��m�>ޗY��a4��o|�y���;cbg�u����������,˼eɌ��z�k�=e�w>����$[�>�H4Nh�捗��;}ɴ��d�e�O��e�'��x��;�#�~����o{����z��
��M�<a�S&\����z�k��R��2Gi�쩧.[���I:NY�`Ò9Ig�ƌ��^�v>����0eµw��E�3kذxε��䙓���O����q�k���NZ2����-�����~`�K��x���~ꍗ,�6iBk���>uM���ϼ�/�h�]v��?�m�g�q�)K���j�7e��^�qAs���}�xd8�:>8t|p8�W`�I8�v�ڥ����'��h��\pjϑ�=mͫO[�x�WnX����u����ƥ��[��7^�j��ͳ'M�꜓S�{v�=轚��
��g6�(�1��0�#�rs�&J3W����u��o\wʲy���/�����ݶg�C�7����{�Y2o���$�J8΄D�e��)�~�˿p�}}���O�q��}C�̪.Z�xj���fvv�/�>y��ȥs���t����ko�ҁ���:g�LY��FЏ���z�z<DZ�
e$Jl��,I$�d��3����;�����$�q�O��g}�3o~����^{�}g�����2s�f���<�e��m����6>��H��֖�t:���N{�����n�~�w��F>3���i���/�1d�1�c�����L��`)�t���rQ2����^ع�y�fO����.�/��}adžE�%X*=w�Ԍ,��lmn����s���f,��joh�Fg�u�}=��;mM{s��γOX8w��=;^�u��I�lf���C{�:��&uq_�������Gݱw����;��g/��/�`ڤ�*��?�;~�_����/>x�����ۖL��i�~r��̡�����GR��8�@:�g`��z��q��7�XS�h���7�����d�{ʢ9�m-�JZ�2���%s�i����������޳��?�l��$
I\�2�J��f��3;GO�w-M��W���uG�e��	�-_~�w>�u��ck/>cü�C�t濳��'ߝ���d�f���/?�����#�+�/_6u�#�v�55��|AGKKo��i���ۧv�Nik����fr[sf�:�J�l��>�S�3��AT�4H��q�a��m)u��%����Q��y]a����sc<��use�\ҵ���;M���>z�}_���g��}ㆬ+L������[^9wF���d=�<a���'z�7o�o�Y'�XpAw׳{�z�?���1)Z��$I��Y����ۜz7<����Ζ���Ԛ@���B������Q��U,��P�ڔ����e�{K�A����x|$}dpX�t��|�}G������G6]�r��\����m�;B-�bFN9�?x�M:��WNPz��eS��jH8��#N_�C\g`�wpH;��
�	��F�����On��-�������U�;��龃��
���)m�'v�
��|���H��ݕ9
={"�NgίW�;!s>�S���)7�r'-�9�r�32mB��I]#��N-�5e��ɺ��e�ϝ6�vGFWH6̛>�v=+������R�j�rJ�c-�*v+��[�ha�Y�����]O�f,	0^
����ý��Có'M(��)��j�I:3S�w\��
g�̤2��$�'�S/��-������߾fB���z��w<D�N�;��qn��w]�;��=/}��=��L�X6�[U��m-3�N�������Zhc�'�4$�gkIz�����`rWgK��m~��O��|r�ޭ[���p֢�r&#��O�[4��kb�6���?�ޚ��;8x�_�,��uז���>�����/���z>�Gn��އ�z4��N���$���׬�w�|�Ug���6z���a��G���;���{��͗~��s����|�O�x�0[R��K�I�H*-��=Y���ޡ��#��Jx���	M�;Y����3�7�*���`�3�Ų}!���ƛ��m��[(c
�
g��7�8�A��~���C����w>��������[�M:�3���U+fM����v�sۼ�<�u����	�憆���~����s�e^�]{6�`oO�On��2���/.�hlx��-����{3O
�·���w��v��Nu�[.:k=���O~�#[�!�-�|�}����/;��%sc�W�^�y�=��?<���}q�����}=}�9�Ƭ��|�$%G�d�M�;�N���/l��_��x�@晞����/���3��I(&F\7�����g����ˈ6H��O]M�[?�����{�{�7�?sޗ�X��Ff��ɤ�_"/��e��s"��;�����	�����4�f�F�j�^���P���ڝ�sh*DfN(ɶ0���0W�4(�80>-���
�����Dsg���|�|wڢ9NcÁ������_�~ef�ճ�}�W��;������^2�I$=��'��S�5�0m��Ջo��_V�'Ο��w�zJ>�!ÚY�^q��k�y��G:Z����2��}�q���ݟN��zу�o?�״L�8x���w_pښ�_u�'��t�
�=�t�h�W���y��u��oxۖ����ۮh�: �W��㍅�K#�<82��2M��;4<������巼���G���k~�p���؎�{��|������u�\���?=��C_^�p��{u�e�0�3$��+����{7��G7�L�0x��]�_��>���֞C����_o8�35�̫7��qł/�����B�ў�S���$�ь�xN����ڸt��y�{���c�_3q�64�{�Ys�54&�cth$�J�ksӌ��ta�ܔ�Y���+��z��>���gӖ����#�mͤ��x��ef�����а��IJ+g��J��s\�ϜӐ����97,�����훟��_?�O|�l
�S�=楅���"��_��lES9;�JҐD�SP��D�ӑq�s%ލ�Ғ9k^�v���&���A'�Z�`�����/�ؐ/��t攋ׯlH��F��[��w\q���q�s�/��j���Y��]���;�sW/�:i����C�p�Ͼ�����ug/�>E������v��������ˬ�Mgn��7_6���[�����	�^<�5Wm�!ᜳb�)��O�F�������/�O2�ћH��x�i��8�׊�9�-g�Zt�̩����vު��&������S�L��u`x�I�5f�M����'%�����NX���6���fM�l@�Μ6�����ܐ�l���s���1sZ�G�8��W���\�%�1���UK'u��cc⤮��,�9�cR{�y��$��
t&�����s��N[���Ϝ��r�ҍ�朵l�_��'�m���<s�#������N_�ͷ]>o�D��%��\�h��������v��%S�r��%;/X���������KR͍����=��W��lk9i��y�&:�1΂������!MhC�U��̞���\Ke�-PC�Xd~vSě���P�] hV���y
���%��vI�Ij�&.ܽC#��x�Vv�P!��b�(e����T���^U?�lF�G�$ީP]�I�s2�J��K�Pa(���_��Px�
�x�Ʈ�2(���Y�1n$��C>w�{�_�R���a#��M��1q��\�$�Ѯ��Ņ7�ܟ^�H�cy���g2���#|L�Ҟ�d�g�������W�56b�0�p]wpp0�J���x3g��ަ�
]ߌ��I��dF8��"��̈�=}�!�9�)GFp?O�B�o��L6#x)��3"�Ѳ�$3B����W؂�ܶ�8+DxW~ߌ`�b'5#l� f,`�wV��^g�J2�����r�(��.Q��?�FŒ�ϴQ�g��ы]��64<�R�-�gb�Qx2),��G������I�����C��.�3cƔB�@��z!ia�Tj�
_��5X�ri`F��:�$)ilh��%��=2���T��X'�1ׂt�+��/0#uH�����*5#PQ`F����@E���3f*
�T��(0#PQ`F����@EIbJc�@��@f�(x�@���-�)�~�i����f �ϛ���D0�B����%�6z��G2�@�L�p�T70#���#·��7��g9�ƒ��$�@�j���q�O?�M� j��H�krׅ�xESSn������$h�s`�:�?e���	-����c��r32�<?��j/gԡ�=�;����܄��i�é��n�ŮU�@�I{�g����P��7;(c�q��GP�#�9��hH&0A�6��d2��]P��Ή��g���|�;���Tڥ���z�,�~�#�90#�)$�Q��J*�Q0����2:Zp_�8���d�#����Gv�0�����!4#��+�5���#5q����2� 3@�`���Q`F�iL�K��{<T�h��_^�13@��FpM_�3P�	@�8�@y`F������"��(!�e��"0#PQ`F����@E���3P縌m>ֻ����u�����ۋ]Py����3���r�H�%#i�=q�ԕS&�d�i�z��`:�~�d�����'�����S��v��ڲzJ���{�>{ƴ���L
3�64$�ˆ�ܹ�Θ3�;w�X;sڊ���G��M�v�
�5o�̶��_�?00t��	Jq�#122������=�[�l�ԩSK��ڿ�…)�?���6lذq�F綾^zi˖-��$�������#�y�jժ��N��ڦ'���ǟ��֝g͞�D)c�7��H{K�̈����ǟ��?��W�ٖlx�����f~����o���ϙ�rJ�!��'6���#ۮ8�=�v�&䏻�����{��q�y��:
4r�"�9SEeK�e��I��~|�73kߤ���g�;[����+�l+P�)RL � @�@���\U��*���H��H�%Ԫ~�rW��߿�?��XHz"S,KI�����:��YR��΍SV���gwbxf��I����K
�ݱ-;�t�]�@I�n�e�ގH�����c�{�\��x^}�UY����4K�$I)))w����p�o�۱����J��������ý��� �t�����4FPm�v;�jbb��蟱�1�3uU�V���������Ʉ!0FP�������q��S��D��؈d�ﯬ2L�^�E��9n�4+��iRܬ*s���fIH���������2�̚�)�z���H��3X3�X�%�Ycc�3:�Գ��FQV�]�=�(���u9<��[V�F�׎\ic�{��+Vl۶M{+˲�h���WVV�����ŅB!��������l�e/]���o?��������;	�C�Q��=������������QQQ�a�x�W�byyyc��ԺE'��Lz�?���]nO���Q���pn��h8�7��pV�ٖ�%�T��q`��˕a6�ION0��yN'�7X(!�����&
�`�*Im����o�$�I�f��I�(}�0��ڻ���5�u�AKW�_����GV���|�^Q���S�$�X��zC��C#Ճ#�FÆ��d�Y��P�ӕm���^�;�m+Ӓ$I��w����SCccb
��1���~�?�")�<1N�8Q��]����O]H�2o�J�����і1��온���{��`
��b�A��MҚySS�(�.�����N�3###33S�d��tttP`\\\nn�fSЖ`�9%D�BT��U����@gg�$I�ZZ�u8�Pzzz(�����.����iF�L�lkk+E���ILL�hH����C�Pvvvjj�f5����(��ի��J�]]].��ZJ��Q�@��

�l6j��lwNtttKK���+**���	mmmt�*F��i-�1�`��+�ѷ[
</ɲIJk3S���~��h`����X�����=o5u�'�v�E��c�#���$�ߪj.v�e۬mC��ب�v��2~~�>��U�[�`�ؚ��=W��q�X�u�D�h��%uA�1��P`��w���[���$��o�x�K���i����P�N\�usdž[�s�f����Z#�~�x����}29�>6�W՗�ڴr]zr�{�w��$�{�!�x�c�c֤$��ٚn���a��h�/��ml��
����P]���ߩ,�H����]�;�f=��;�%��ؼ�W4w���zfA�YQqO]<ϓ`���&YN����4������'�M{xx����QQQ������p|�k_�����w������n���=��^����?z��W����;4�R�oŹs�<C���Ç�lٲz�j*�W�����w���;v��'�<y�dOO%y��7w�ڕ��γ����ߦB�G�y��g�]gϞ���l6j�|�aÆ�[�R�)���j��|]]]T�?��?��Tj�;�CuX�l�[o���ښ��<00���JyR
y����@__��W�W---��林Ǐ����>�Q0F0XҜ�ᡑ�ګ��H��幟�Yg#�tz��m^}�����G^�����{j�ը��'ߪkސ�b�	R���i&�ɡ��>x���Ѣ\�en��c8���l�y� ql��hb��c�(���\A��m�����y4uU�g&Ž(�L�_����W��΍_��ju59\&��������
������v���=�w�#�z�>$:��7vn�x�o�����kv&��z�*O���x�ݸ����xXq�����}4;3�f�p����m�S~V]�wU5�YR��_������S��{��q�����H6˲�fszz�c��h�\'|��_&��/��/%%%_���B�п�ۿ�?>''��Y�n]VV�f�x��׮]���˪�|}FFF���GY����~��.\HE<����cbb�����ҥK���w��-���?��n�S8�z�g(���!!!a```Ϟ=�V��|��'N���������������+,,<}�4����y��G���>�կ~599��ѣ��&e�t:_|�ųg�n۶M�j�
���)�r�"RSS��|�s�+**�>� #2��^����+�,'��[u�@(�'.
�|<�7�<k��SZ�0l��T�6?3=�BR򉬴�R�<��u<�����ǯ�\23�����F�Sb��P�����rN5F�@�?��������(�`H̲Yw�'�o�L�27�ܿپ��n��{�+r3���8h,�Y�/ I߻������fP`��+�zc�{�����,�ͅ�6��rdKv�s��`��hx#ϙu�����~{�^���g$I�����ʴY���݂�I�[Ї�ҿs���㭴YmzA�qTs��H�o߮���e�>R�n�{�޽.����z�)
���Y�R�a�����/^��� �����M&�(�o���8�q�L|������^*�����^����2���T�5k���_��_��I��Y*TP1�+}����Pev�ءYJKK�u����G�VP�Ϝ9S]]]\\L�PRR���Cṹ�V��
�h�Fj��b�������#G�P�:���󵶶nݺ5R����i~4322�v;ŤT��j8�n0F(s�l��!�g��ب(��8.F'8|A�S�Oҩ�,����d�gY�T��׏8���񔴄�s�zݵ���vɚ.!�'b#wS�_H2��Ua��g.=}�251;�zypdZ�?/�2�駔v�J����L��zI�c�0Q���x����	�*u5#S�lQc�>Y4q�#�)KR�dE�3&^P�aX?E��SHRV���ij�=xm���ᴒTtrrrtt4�|��$�2�ZCǑ�Ie:hnn~�W***V�XAq:;;oo�JK%���P�$���ӗ-[������*I���z���@+}��mV�����-j%��B�i�2�#B�V���Ex�����ⴘ�	�4��A�`�<���N����B��3
�7*�5��㸦�AYs�0�3��Jڲ̱����UK�3�#�q/ɑ�4�PgU@��&�e>=�l񦅐�[��T�ןm���]s�V���(Jn�_?�'�7�'�d�W��|��"1>
��CI��3>�o9]j_�G����Y�;R�CA�!4���	��(I���Ų�h����SI>�����xNL�G�*E���=4{�,B��dX���C��|�',�u:��l�VI0�:��ZR��딶���^}�Q��t��山�ٟ��ydxbb"i{���+(���Q��E8p�������ݻ����O�5(
�K����C��9sf۶m�v�-Kqq��Ç���֮]Kq�\���߿u���:3��b� ��~:[PPP[[K����P��������u�v)9E[=`�<X����Z>�x�|�8�VU�Lw���Ѣ2}����3��Eu�ª�x�b���U��c[]c���YD���1���Β��Kee�:uA��g�|9'�l0�(%^ˌ�\�`�C#q�����uW��M+�SyQ]���?�0+���
�ܡ�SYR;<���/�N�v�ŏ��a��D��ϩL����đ��N��Ogj�<��Ջ~�a�_8���.���t�%�oJO�&+<e�P��X��KOmһG\�����{����}�QCC���}>ߖ-[6m����X4H��:u��^����v��u2�C�8M���J�8p����l6755���P��T�]�vo߾�
���\�l�:t��&''k�dee=��#���1�׮]{���KKKw��I��3���իk׮������'%%����K/=��C�7o����/~A���w�\_��g�Έ�j�&&&�ٳ���r���111��݃.T���{��^J�EI�݁V��!�F�C�6Hr<wK�#�;�?���R��Dz7>f��@��#2���&�3;�}�YU���i���|÷�L�=%�9�5�;X
��y������`2d$ŭKN�V%'nHM,��
Y�x�j�^�o�	:��L�S�-f*1��-��Y�e^�������ť+�R�l1�QfY��M�Y�x��4�&'�GO힠g؄hsyr���m�	���t�dJ�2�JMʏ2k#���0ڼ:%1�b��11�Oe$�ڬ���k]�����Eɉ+���(����t��Q���2���^/U��-*Yk��'�2�,z����f���K6�%)F��Y-+S�U�!�nU|̲8���K�����ʤ��9i���
=����e�FAY��	6j����c3c�7&�[��kT�T+�bKmwQ�J�L��*CXF�9^u 9�6�q������$�&��6�4Ǣ:��t>šGpJB���h�p��OKK#�N�;''gtt��t�cJ�mfA�RSS�)��9���jh�_Rњʼ�<:&�O�+V�ظq#�944TRR�d�
�J�ȔmFFF\\�J��$;;���&h�Z�j���	�P+(�Z�a��Yk��l��			N�(C���d������`0M������p8���w��I�k���P4M�P�hYQ>T%Y���3�5�MN�ֳ��S���o�m��$�1�����0R�B"	�7*t�[m���h
�\g4���
�P����{6:&:�o�ڛALB��j	��\<vv�LSZ~zRf'��q�=n�ˀ��#�Dp�߭*J�(s��E��v4�aE�c'���7��}����B�������q�t�6=p�Z�/L�c������j�L�;㘝�j#߱���50��Z����fعz��gf�fċ��e(O�(#�5;SVO?�;�Rw��iF�!�L�D�j�uy5Or�*���+�pRm>m������m�'>U�+1�����dY�k5��SN�:����/�%�y��'I9�j!$P�,�Ov�k�Q���)�:<^���$o ��r�*�b�2�U�nZ�$�ϧ��[��dFg�_<P��o�5�p�'=ғ��~nyC��`��][2dy�PG}�n�w��e�����XCz���gg���>�N�����g��+*.z�O^s9\3&>(�b⬛�ٲp���G�����t�^��$���1�>���pc�?P �����h6ކà����.�I��#�S�1Fp�]cD�kl�V�
Hv������Yƈ�ٚS���	�L��ay�gɅ��+b'����<�1bFݘ�{
�UF��(e��ᢧdu8{6B�+�S�]	��ܬ�7G����_6O�5��L�%a����ߣc��2��F=#ͷ�T1$F�F=�_�D�����MՍ:�]��V� &!6)+��	�'i������hM�Q��3�Diӳ[o^zn����a�`����L(,Z�hӮ�
���/`Q	`#�M�q\(�>x�h2�$Q��7-���:�)�ǫ�Fu�:%IR�ҧ�{ǰ$�I��F��|M�!��_���@h��ٔ?�|Jn�{�u|χ�!�`�q�==9�Z��|�5Jo��x�l����`Y6��z�$+3�P�`1���{���NN�9�
�!~r�d�gD(��Xn��m��`�.܊��E����k�g"��tu�"q�I1�*�̞�-p>���$�׈K���i{e���w����[Nuxsc��ĒEv��J�C���\L$gde�f*�&<R�yO>���{9���������ܴS��tJ�#y��p����Eu�"��3r�����;�R�(En0F�[2H0�i�gm�R�� �0�k�����P0�7��Iv;�@ؑ�2u"$���h��Avl��q{�+p$\)���(o[��"PrM�Z㬦h�,J����{�	��T�fJ�"�$�-��/�;�b�]�iU��FE�DQ�|c^��-��9�h�3�MQ�Q�^��;G�3ĶRaY���1G�EQ�
�<>e�_�V�@Pg�E�D,F���?��y�Ao���;<K�R3��R��"�`�Y�Q&-7*K��i���Z��Q�ƥ��~��Ε�A�HYEn�C5�?�ʙQgj�z[�Mg�|~�ݩ���ޤWKGL�zr<�0c�G$9)3i�ërJr��`[M�wO���UD��T�]T�eIJV�(K#=����?S'K�T��9�v��;U��d��k����/��\�xŎUѱ�!I�o�>t������a��S����_��F�ڱz��2��6�o�p��j9w�T�^�/Z�`�����z��u'k��S4��9TDNi.�.�(���~{��#�i���t��/}h�%&J����s�Zk[x����,޼$�4���:�t�x�@g����Ԧ��|dU�ڊh�Uf�]�{��k?��~ǰ#-'�
*\\��1�u��s�
�9T�%[�/_x��*]���ܾ3�v�MH�z�U�}b��#յ�kx�׶�������_�����c��Ҽ�[�e-̦^�����S�)�uOnH�I���FF�$�yzmza�����(�c%���x�d��s?:O1�5��.��Y?bC�|6���,��?���B�����/޲4*.�����1˱��ݼ��
��^�G����z6&1�=�Iq�Y�xAFa�H�����������g;m\|����$q�%�����JKM���%��df�&�
{u�`hӳ[��Xy����m=IIK����

^�n]�-�;W;5]�D���h��E�F���������T�ǿ�$+p���OIx�K��:A
���xA'<��'Jז_8\���i0�lZ��??��o߽x�<���֔���x�k���걵�Y���_/�F\sΏ�6*��4_�K�I"���>�/�,��?��pvߙ�k��	���-+�,���/|x��3�f�//����s��t_�֚��,J��#	����t�j�������K<n�h���K������CՎGRjҊ��,+���;:�}fQVvI��l�'��J�O˯(P�D��0F�'*�1�����A2���'
2L��GL��q���_�Eҽ�lC|Z|j^�-�v��ZNq��G״\j~㧯��&I|���/��k*/��;�n�b���{�����Ue���\:za�����m�����h}ewsWH�Bx�a\qeQ��i��>�����w�E[��T_q�g�������7GG]�ʒ��5T��\s��3���&�d0�<�N0���[��\P�=0�@w�3�z��p�q�(][�puY���{��R����k?|a��UuT�S�8��Ɂ�~Q���(Kk[O���Źk�7I�����ey�@��<~N��>�>)#��߽{���
Q�l�|���mxfS[]�еA��C�A��Ə_����x��`{Mkٺ�ܒ��ӵ��aq��j9���q�XLb��X���=��j��1�ؖ/<��Mh��/���J��&�̵[9�qo�z�� v]�f�<�g�h��S�j	P��&��'~r��UB�~�t�J=	�Z�A��N=����k�P`eI��&cf�m�`'���F�S��I�Ƒ��α$}�]	�$�=.O_[o����(���|AƜ\�٠|��$�7=?�j�����r9t5t�4_Ӗu�U䓤�y}$�uF}���w���Z,��1�$=�
��}���i�����5_�m�M��͐�$���������1��`����f�@0�0#>%�ZTw�2'�oQ�?]W��2=/]�X���������/�tJ Ǻ��ؤXK��14�r�$�.ٺ,>=���SՄT�5(�.&#(�$)6Ζ��2��_�Q
�PY�QM�[kZ��g.��m�Q�A���5C=�z�!��程.���_\X����T��h�+/�-���lbFR���+���j[�1<�L���|���[�m�o�c��Jƈ{�	���d��e3�����U6����OrXN�ZB���I�E��$�UJ��zqP�ސ%iSc�FUu$�0I����Y1"A��kT�8Ȣ�^K�x�e����F.p����w��w�0��t�h}e����e���]+�����+K�<��������#�aG���q�q}eG^Y���QCJ�9��vL����
���(��18J�Lf�O�~m(� C�Ƴ���Z�y��
K"+�v)�����۲�ᕬ�x�<��eќM~�Cc��7�,�8��#�}~�_k'p�G�*b��c�%YҺH�}C�iӿ�����u�s �87.5��R�R�ԏ���ޤ���!j8�z���쮤�dS�Y��fVR�y5��!׈�j�#�-�F#:D�!�=�(
o�l	E�M�Ֆ�OΒ�����̝z�W-�{np��ʔaz2e']ȓ�{�@��]
��p!��b՟����Y�ȧ+�0�����Շ�Y�-S��,�w�]Xxs�Š�ўcW��f#%�B�R���s�
�玡�w���{�R��JW�U��$m�޿�3�zk_WT��=���v�eQ���|�o���2#�=N��59�T:U{��#�Ʀ�&6Ԑ�P H�<�������'ik$�9�,^^�����c�`��cر��[�Hfoy��E
�q)q:�.�
(����'�Sj{�hk*��S�s���ĥ��t��ե�!��lh8wE)m	�A0>%��H��A����g�d���F�-�L���SC0ꮞk����G�ܫ6�ٿ�\�!O7F�72FL$�'7O��V~���bQ(�������,�nPU��c��+:�Abb+iC�f�����)�#H-�^lY��ƜҼ�G�[j�I�F�F/{h���><0<[3SHӅ�K�.�$U�Ό9��lQ�xӒ�M���g�о���VxǼM�;�t�׶e�d�槑ZV\iN���|J~�k���m�1Z�Eˊ���]#�C�����گ
e�e.h��wO�����E׸b����ꆊ��E�U��^*H���%
�6_Jv�,�u�k/�������q<w�Nx��;��vQW<��؞�2�ɢ
��.n�k���8�`0\9S��U+^��ֶP��2'E��o�ԴpuYӥ�u'jEY�Yn�������5��Prj u`F~Ƶ�.I����2TS��g�l��/+����k�/#��n2�d���AB�Yړa�/p�^'�a?��suLsĄG��l��TD�	L��O��J���hL����k�����3����/��_j8{E��Kr�2o�i�4��ʏ��̫����m?<�x��?���t5t��/�\�Y�5���}��:�̬(��6��g���Ռ�gg[�c�����H�;�;V?���?{��]��R�	:�'D��i~��؞�����͟ߖ��>xm )=�pqirj�Rs��|����u���o�r���g�����yG_=�^����-�⒭˨�>��tuyr~
���b��T(e2�\m���"�B���N$e'��ܦ�̤��~[b܂����v����q�F���r�n�s�bb��^��C���3�9��G��񜅹�agBjb��r��艷�+�EIn�t5��p�3[�	����UP�YŽ�(�xxՊ��������X��1�L�1��-QX���u�LR�{m�2}|���09�0U�9�;,%�S�X�$�p�=�	���Ρk�A_P��~��1��k��+�=��2�{|���9Mc�AR�.�s�?����/}@jv����9���c^������bF�F�FH��"�v���>��5����$�;Xu�S���~��ޠ/[WQ�dA��>tV��e/�ef-p��u-����7�?��lM�$In���7����K
�`�.m1(~����V��S*���KԞ�1Y����cߪG�lzn�[/5���
B�b�g�C>�/�W��Di�X�O�^A��o�����=��j^�b!�������R�3���l������#t|��U����w^�P�Z����������5O�[�q�z��W�5�z�D_g�bt๺�-V˪�k�>��>�GϷն/+QW�)�w���w7u�';�i�A�	wR�DX�ٰ�숷S!���}��L�����K����*w"i�yf������&c0Ӣ�q%���8�<k��7Q��}}F��E�E���jm$��+��ǯ��~T�*+�%^������~�s̝𯫍��.�P����Y�@���}�`�c��©�Y���G4m��@-��ɥ�oH�d1Yc/�c�Q�2yBuWI1�5�L�>VQIb���c,�H�~�9�X"暝7Q+u�Iz��$o|c�ѡQ%�Y_[JY��7�N������Mu�0�W�����d�&�z�=�s���:jBd�{2&>�m�o`���qy�
k��D[��1b 4:8Jo)���*_�W#[7Q��K��S�bb�Ѧ�7@�צ~h��NI	g>'�`(-;�/~��������uBJdcu:�҇F��
�!�S�Y*(cI�����a*��Y�W�A�\C*��f��/�$��1oХ����Yq�r�+j2�g�KM��蕛8�9�P��d"����a����l������T��{�\c��hV��v�Q��f����G9F[�:��<ف�����5ä�NNE��(�Ѳ���D�w�ML�h�2R�G)k�d"6˚���
���V�JfF>���6��[>4è����G$����0�ː�.�#B�U_`��_Sׂ D\$���c�ύ9�\î�$��>dž����r&�>xm��5*4r��
�oX��s�"1(�)��lu	��k�"����EY�l#=��F\$�5m��V+߸o�5���xe%Ed����i}�N�;ZmCi`D�0�sfTl�=�`�dM)uX�+!Ps��Xꖡ�!�cSĎ�ʲ�w�8���9�'#�C9�;�9��%	���F1EH����d.�U�������d8;����lo��z9h(n&��h7�*5��k6���s��	s�eo��oP��ȒLANAn\jܲ��{�.\��ts�p�>T�<�uK����;�%fb��<�KQ�9uIfؓ%�W0���h[�S�\\r�@W�����r�z�`�1�IP��-"O�ɬ��U��N�y|^ާӶ,��0OC�p;�gG��UT/�ڡ�w#�|:p
��V7j�[foMw#0���T�3�k0�|�3�K��ඟ^0)p��2
�"�fFn�L�m)�y��+0F`^�1�
��W`���c�#0���y��+0F`^�1�.�)�@�����r�,H��G���������$Q�Ơ�[��w����+�Νã�����<z�`�w�+

�N�	�B�(ef�?���p�W�{l��p�,c�FGG��].w �R<O 4�`���#�F�����`0���8N��gef�^n�,766}t��s�֬^���eY��’��cc��E��&�=�0F�;����8N�ezu�\m��m�P�y��?�e–"))i���C���`@��}��c���Q��FFFdY��|>�q��tv�=n�{�^��c���b9nb� ��z�~�f����Eg)+A�^/��%�­Vkd��$9����R��1�%2%q��Q4�Ng���dydxxhȮ7��
���JI��G\.�$�&�99)�l6��#��L �֣Z��˖��	~����#55eFd��y��lwW�$��4
�eSRRV�X���H�X�
堹��\W__�h4�^�� ?�����������G��n�T���d��rlyY٢��A����ĩ3n��f�=����G���vJ�0,�U�`�����1%Qlmo?Su���viy
����h��%���
�.w�q�Xggñ�qq�II��$�}>_�D�z���[[���(�<�y�~�����q��a���T/�����!Y٦C9�A%,�msK�������)��@���=W}��!��;a_�䠚��v��dw�5
��(�j{�����M�0�^mn9x���E�`0��f
�kjO����.0F��C��08H����ܜ,�ѐ��I�����ΰ!� �_}���a&ce�իW��GY����+�WEQ���\�dqjj�$)�'�RS�-]B�����6��{�UW+�
YNJJX�t�իJ���F#e���u�J�$>_�ZO�’�˗W��EEYX����;;}~��WW_O!�gaA���o�Z���e�P p��Nk���4�#
�76�*�Y��ۈ���D�sDoo���H��BGWWO_���qú�E��XV������wߗ$���uaIqfF�]�x����s99ٕ�*nP�����I�m���=gS\?�.,����щ�T�K�����"�G��r��˵��))�8ntt����`(4:ꠐ`P\�xQB|�-5%55�����Iv-#�D8]!Y�I���(������=44IJlgWWzz��r�>��j���s�����O��(�E�\H�$��vV�������h�ɉ�%B#7'�r]���S�6FPn���� �jH�T����t�s|�%jdtD��9ZRR���n������'0F�O���vIR�6����A��,Q
���e��%&Յ�����v�X8.=-�+�p:�,��n4,f��Ȉ$I.��I�:�s|�F�V�'�	�d6��,8q�4�2��C��Z�3��EIIIa?�`��
����+

�>����B_o_^^.�L^P&;�����`dIɖ�Zb�Ł�i�~��4�O��1�c��R��j/�(q ��q��t�]i�(-]�z%��Y�:���r���:�#�g���~��CJ^�e�� G�{V�js�f�0�L�'ɒ�힝�6+a�r�,�`�I
&eHî��<�X�r�����DU����;�α�1V�m�.##=7'|&LrTltny��dd�W�6FEk��Uc�����%I������
�wɲ���n��S�����l6EGG�t�P(��z}&�Q��kk/�$ɠח��5���11֡�!9u8�����v��N���c��q\T����P�
���O����N�u?0�c|`��?�S��Wc�3=]czc�,3>>���C��`0����_�ٱ�1����;������E9�Y�WF����cǷm٬��<^�s�/\�$�RNN���"Ֆ���0��ʎ�Β�1��Z�
ZZZA���\W_Q^β���:]U��x8�KLH���n�iCv���SZ�^�yӆ���IvV�K����
�|f�y^�	����~5F�0�#�g��k��<:0���3�Z,��:22
��;:+U�l�E��/\E�����o���u���:Q���&�AɵM4FGG���n�5z���Y������������Jٞ=W}����&�^����8�2Y�t���i2�����=����O��	B��X��L�T(.��@_��.Np�h�c��s�-mn����bb����X�MKK�v�'������V.��z}W���~�}x8S�����E�)���ii�CC�(
����
Z���$M<5Rڕ+WC!*���iєly�l4.[�$###\gJ�&g�V�LT9�Y��E7�?q���*�t:�8<��իW%$��#���sVF�N'�,X0g����A��+�¸g�Q��ذ~mzzZc�U
!���^�_XRR���k'�j}hۖ���ޞ�P(d4��8�������@b|B8rlL̎�]mjnnn�����d���p4�ɜ��2e��eQ�ii���h4�w�(�Ϗ��=���E�����.LJJ��
KZ�f9H�e;��{"D{{�ceZ>��?O�1h��˝HJګ�z�u*(2��̴�j\�a,.�y������;�F���PHԖ{ܩ����Lf3wCW����\7Q��-O?C���p�$��*1e��DdVRγZ���q�'��,K�v���x��7
n�?$�:��Y��X^�q�S_�o�OZ�$�|�P(���X���l�'�ߡ�����[��9?�s�LM��#�Si�N��8l��S�0lX���3�����\c��U@��u�T�"����f�v�j.u�4y0��Mv�,�0wwiJ6�hv��i�dpdݘ񮭔�UF��(e��ᢧdu8{6B�+�S�]	����C�}QQ�;��^��pgPX��>10F>B����C?p!˲�h�N���o�Ph�n'Y�����$i��NJI�2�(���u5Z|B���W��n^I��W#�	����{_�c�#0���y��+0F`^�1�
��W`���c�#0���y��+0F`^�1�
��W`���c�#0���yE@|�x<�@ ��,��AF�u$O���J�,1�I��pYf&��!�9YV�.q�X��x�9W��ƈO�e9��1�'lk�,ʅ���!�N2#��z�.I;K�d��4녚qɡ��"0F|�T�8��S�f#�@ib��D���N���i3#�	ڼ	��5�icĽ!Dg�O�]׿�g���#�#&�˓��S,0���y��+0F`^�1�
��W`�|��eydddxxX{+I��А����@ �)��ɓ'����F9��������8��n���	�������Y�o�I����w���|�7�x�ԩSt��_����5�����F�������n�F�����p'�8q����V���
�����G�…�
���~��!�"��z8�|{{{�|-N(Ҏy����o|�����h$����I�k2�t	� ��rE��dttT;KI���NF;566��xTIJN�Dơ��8Ta*.2-��`0,[����i���<yR�$����Z�h� ZC(��T����g��(�y@@�HZ777_�t����������ϓ�w:�������?���l��Çggg/Y������QZz%�MB�D���%���<_�x��zRR�Ę($�Y�u8�/_����Ν;���/^\UU���B���Յ�����ǎ��6mڤ��(e>00�s�N�O����ꆆ���}����<���#G�n7%�䩩����TC*��|�rjfSSSEEG����=Orr2�7��(R�VJww��Z[[cbb�����f�X���)���Z�����A]�u����Dj�ɓ'kjj��ˋ��cccq���3#���O�>������3�����)���[o�����~�z��o��6	�;w��_�eNNαc�~�]�x�eY��.]���+�������H��L&�����J�����Ƞ����$�)�«��������SXX�|�r�^O����?�����z��7��w�y���A3aD�_�$mHEEELL�K/�DES)[�l�*F�._�|�ĉX,j,e�hѢ�_����J�8���T\{{;D���`�ʋ/�H̟ͧ}�Yj��l��hll,--�������R��Q����o}>���o{�ʕ������/_}���+>�1���p8ZZZHN����OoW�ZE��<�쎎�|@*��y�^J�r�4
�v�z���I����~�e�Fcxf����@FF�)���ͪ��C:�N9r��LKK���*�N�nkk�Bz�~͚5T4%�QA���7n��>:�����СC���n�[�C�,++[�x1�r�ʵk��l�����N���>}��t^�r���)Q����-T�FQQQVV�V���Poo/�Tkuц
�O?�t�'ա����Lzzzf�.�%h�ؿ��k״�����{�v��M#̌�4\�����w�8|�pmm-���T�2
�}��[�l)))!)�������t�������3=E�z��J__)|�W��?�yRڌ:7�j�fgg3�rmZ3݉cjj*i���*H�9R�F��|�+x��7n�H!$����)~TT���A��p�Vh5��t��}����}�Ѷ�6�pd*�`0�,�� $�JEP���⴩��H�T��'Q���ڻi�&���V��^�(�3�3ՁXUUu��)���fNN�����@���c�������ĉYYY4:���p��Ǐ�������zy�휛�K��T��*�F|`���B��2=�9r��w��E���L���z�jz�޿?i�^x���Iuk�����)_�@�AH�k?H�����G�R�---�p?22BJ`��T��륐�����f�555.LKK��î.#�8.�nS�sI��@�Jw8�4m�F89e���*Ti����5k�TWW/_�\�cQ�y�f�mܸqɒ%�Ν�j������S4��i������z~~������)~]]�y�稍��!����M��t:]x��L�4�<��3l�����k׮�����Gs��xh���t;'$$���;g���4�Ѹ���K�E���.zKCD���y�f��6JP>4��XJ#j�V�݃��~p��eo�|;�1�Lj��Ǘ�����7�٩�#ϲ��0fL��y���팛C�&�Y�^��w�Ǖ�]��O����Bv�31=�ކ��$::������2%%���IiS�-[(ϒ����Rz�;�����=1��|ff&=��)���D��ի�8��Y������֭KWЬ�=�=������k�$(���ܨ�(m�
�$�K�!ME3����
�����,//��ˣ��2���T+M�P eH5���NJJ***���RC*++)�k׮���Qr�̰Ɇ*@��|T�5k�h�b�P�����T�z���r�ʸ�8m5
7�5>6f�X>�5CG@%�
�Ɯ�s3_�7SO�2Ȳ���nԸ(�ǎ��Ɗ�����&���楻��_��[��̣G�R����.\H�������(�#G�Ư��;q��n�����o��ֹs�:::N�:Ec��{��cv8@�UNN�K/���x蠱��=
gΜq:�a׿���`0x�cÊ�N)e4��)��UC#��T`XUM�8v�X�8[-��Cǎ�씬�j�L�;�x��\�;v�a~�f?Vk��S�;Wo���̬یx����ie��fg������|�����f����O�>5#D�]B���W�^�k�0��C9=�_�|�$AVV�7��ȳ;v�|k�Z��/D�lݺU�.\ I�H��W�TĖ-[���>29i� !!a۶m��ƍ�����]�v�#���z��smEbb�c�=�
�:��&�t`�imm�ǎ���|>�����4\.��?�pZZZ||�ٳgit�]]];w���_��_�?N�CUU�ڵk)��.]���G��K/��{��o}�[CCC4j=��sǎ��4�8��K)E�a�駟nkk�܊����p��1pc���,˷���l����Y��Fr��Ѷe�i����x�y�_�~}rr��h�3Bd+�f3i�;�Q�O�v?�ڵk��Ō�J��?�y0��eDު�ϟ�����'Nh�y䑰���z{{M&�4*�A{{{AA��2f���/�����q@�5F�.\���.lA�S.�kӦMT4�JMMmnn�1�p]v����}�/�m�>�R����D�&#����˃%�{��e&|�~��;v�g����:��w���ɓ'KKKîp���u���"'33��cccf��ԩS������i.�t�
�`B�Ν;�}��~�;vx�ށ����,��c�$����
��{�eg�Ρ���b��M�MMM�(>���a�6۶m�p�Bii)
���@���z:X�`��ݻ���W�^}�ڵ���F����}�K_�e��hk�(��h�^)��]�v���k���N����:u��ŋ��w�I�[_��@�fi��O�|;���α2wq�C��*�d-�<w�I�@{���2�A��M�2U�+1�e��5���p�n���[�~�%F�U.$͝��m�ĕ'���I�جA9%�l��t�ށ�l��KWݨRP�,�|�`pdx8..N�>=�z��a�pG�B6��S�n��MX�hh��ލ�'������$��y����dY�q<��˫�;��m�{{��x�����Fd��Ai�BQ�n��9����hv���1:Eo#�`�Z=���tt@q薤���N:HLL�Nhkk�[5??�h4Rq�E�c��龦���tR��X:���A��������z�=��㥺=��	�����pN�Mɜr(ߌK���56�_R��t];ը��H�ڇ��G]-ML||�8K.��]���(��yzZ�)Y7&B�G,�Պ)�R�G)k�=%��ٳ\	�R�J�� �����̙3|�̐��Ç������[琞ihh���Դ����NkjjڳgI�����y�n�@�s��&l�����t���ŅgLDEEEZ"u�ބ��^��gT�0�q�R���%&&2�􇂂���Rͭ���vLi�hFu�6�PAeee�������Bma�.c�~eN�

����?��?wvv�ٚ� ��踙�>���ŋ~����FFF>��c�egg�[�\�ӧO����ooo���mmmE������Ϊ����~+Iҙ3gn�lqz{{����0�֭KNNFW�{����z�ػw/3����Px'�={�?~|����n��WVVv�ر��|����v�&SÎ��n��U0�����(�Kg�f��`;��^I��/�w�������!�)-+����y>++K�ٓ"G��'�hᔡ�/ 3���Vݔa�m�w]�&�����w��E��:K"lM���F*�2�B�nH�$W�.]n#��V��������+C1�y晢�"�D������~����Y�����N���
��Dvod'Pm#gyP ���ݺ�!]B���h5��r�FQ���p��K��iBҺUUU�ϟ�����{�趎+��T`�]l�H����{��e[�����d�o�;9i�=���M��'���ؒ�X�%�7�ꍤH�������oD�d[�(Y��'2�0o�Ν��ދ)��/�y~׮]����'���}ꩧ"##'N�����Ǐ/\�0//�� p#��ʒ���M���k���e^7�3�VWW�����2�LO?���`���jjj��nڴ	���ݫ�j��¯NMMEʇ~7r���e˖��������&8�'��wށz�!==������
��nL�ӧO:t��v;ң����}Hx���_x�4n޼9>>�F��.TB��Nup�sss׮]�"�bŊ����������ڡL@@��[˗/�0a�֭[�u���+���X�f;}�֯_9����rr�O<���KKK������ӧ�"v�	�t��h�1c4immE'ggg��.\�����ժU��PcΜ9���۷o����[��233}�?R�3x#��ȉ�?�<��P}��zpp�fAA�ٳg���駟�����mܸ�ރn��x���ЀD�JŦ�O�:uʔ)h��'�ϟ��b{B��>��m6ڵl�24o%�Ⓠ|����ws���]�LG�A7͌ ��D���/~���'����'�3;�Ê�
x���w#""�§������裏;v��?���s琳�����|�ĉ			���c&G�ᬪ��g����?WQ�¡}��gq�y��ŋ��?�szz��o�
gu���p\Q�u��~3r�������(��{�Y�V(�srr�������Ѣ>�`���'y˖-��:��
6s�̂�����[,�F�u�V���+�<��Ӆ��p����v��GG\q�ۙ3g���Q#[n4ᮗ��@+����(..�����(�=��c���C�l"���;r��6�G�����j��W�X��gff�\��C�Ν��at&�����֮]�����~ZSS��_�r�Ν(��`���p��=j2��y������E����mڴ	�s�ĉɓ'�
����/��ҋ/�XYY�o�>�Z}���7�g�(����}G_-Y����T:i�$�9�u�ԩ���g��>�[��HG[������Q����C+z��9�؎����4���£z��!ߤ���9ٮ��M؃��Q]]�L4��AN��n�|)`@�_������4�� 
FA�Y�>��?3$$�oj=���τ�=}�t�l�>� XX�f\ ^7�Т��m۶����Ǐ�t&�gΜ	�r�T�d�y~��i�"##�H�+FH[�f
�������Θ1�`0DEE-]��Y�(�N��V�����ظlٲ�����������`�N�k���s=

Pp֬Y�
�~DD�3�9�GH8�.--EC�̙�v�!y�…�͟2e�ٳg!��~�)G��8�G�����4)������(T�);�A2Ģɬ��.�IyyyP�!HFO�2���͛�}���"%00)�;n=ݐ3666;;��?�{��!~���l}���J}�###�gt�zȁ&���h;j�{7w����ϳ]�p�����ehh�b�,Y�}�������A���q�l����W'L����VRR�������t�z�/>�u���B1H�ܹO�u������/\�p=��xq���]�v]����͛�x�7~>[��c�����w2�w��h۾���?G�>�c���'� 
FA�A�W�K���p����?;v�Sv��a���_�W8r�ȟ��'d����O~2�|�ϰ�&O�_>*<g<p���uMM
3�a�Ûe�9۩�.Dv�EYY�#yP�S~�Cf㲭8e�,]x��`Q�U�|{8���|||<�twws�,	x����6�`����9���Q<++̈́lCGT
�;99׽����ttt��)l=�g�Q�e��Μ9}��zddd(��z7�@/}�{�íw�}���}�4a�P���|7�"�-z饗�j�_���{#�:ߌnVN��ի�|�����m۶�TB]?��O�Ν�������f&&&B��S����mmmЁ�ѬR�d�	��BAyyyll,�7�¬�Y�l��o��s�����srrP��ŋѫ�|֫袦���������7�񤯯��ѣG�P��X��uf�Єq�K�aX��ꫯ�Ok��`�KJJ��-x��l�a�GX���H�֭[�]}�İ����6����p�`����=�� �	О�W�}�������?����[���^��|0�a�&*��J^yT�,q�+'����yΛ7�xUU����[o��V(<��p&at.\�0===00���������4K�X,'N�X�l;W6"�ݷ�~�����<�sAY��9�>}:���������˗���
_�w���N�b�)S��݋�`P��'׭[�y������f!gժU�	x�ƍlDŽI�&�<�������˜pr�K���G?@ax�� 
:#e���(�t�	[�n�3���<��	>��38�(�~[�h��|AH8x�`ww7RBCC���w��I���	��������,&�e�t˂|��#tF�9�ƘB������J�n����z�>>>�d2���~��G�>.X�=�Q�(	5�q��)���f���۶m�����cxx�96�3�sb0�����^8-�h�ԩ�����И_V	��9r��ĉ�>|ط��,�b������C[PP���g6oc�9s��>~���l�T`����'..�=�H�3��x���� *11�H�x�"U��N�:t�����\v,(�ǝ>}�\h��gϞ�dd�s�����b��	�!�t�8c��x�Z�566FEE�E"۞���Ga$���@f<�� �<wP��
<�H�J��<s�Lk>'
a��P]II	Z���]VV�6��ܹs�)Eh�#�����	b�����(t��9h8�||`L�H�h �����S&q`��0��/Y�_x��]��_�p	@7B8��>ǐ}�m�A#�K���!KC�`������4�^��9��<6ŗK�_�����"�H�HrD`���&
wm$	�&o������i7255�M�g��7v�����˗O�<�Y�̽����0x�fǯ[������������l�2�o���嗑�E�>�/�9�y`yC>�}�;�A6���{�98��3�����O����8J�l�p�)�����^gjC����خ�/��b]]�zBy��?�<���C8簭��������ȏDd�n��t�R�?��q�d�/�[���V�@
t#<T�a��ܸ�&xP�Kdd�/|	5 
r�~��o��o.2�@ᮠ3�t,D�+P)z�E1|�|B���E~T�6�du�nZZ�SO=���0���
�03��v���B�qB�b!'�E��/z�g��f͚�� ���EEE�=�>i��1��N�t����;
��l6��/>�			[�l���?\�;v��"���V�\�䣏>��!����̙3�Q~��ƍ�y�������O=zt׮]�fͺp��)��l�(����/l�y��7׮]���9b��������p�Q���;w�˿��[o�e���0�߿�ӣ�>Z\\?c�O?�tŊh��~�;<�yyyl4A~������׿�c�����3�>��֭[�X��TZZ
%��<yU�-(�ᚭ��l�^�D��h�G�<2�`z��>���Epppzz:�^@���-:u��~��ƞ={�J1�y��zB��?`�pv*�bC���m6�@��Ǐ���kmМ7�x�����a� (A_�G���5--}�n�4m�[��]����#���N\}�嫂:�xt7�S��l߯��[c��;�aR�|�3|�v�W�����l��!Na�/ͬ�|/a[Àe@)�l�6�������S��=�`&�`�k�I��—��|?�&)��������A���i_��s�Ǽkln���e�
��|up��h4�٨���ǵt�R_-W�r	
��_��E�#p��ҳ�	���v�}֬Y�ޑ^1���|�;CCC�W��?��C�������
�#�ĝ;wb$�߾q�F|ԇ��}���
��8�޽{���3g��5;���SO=�{(N�>�1��W_���dٲe�ϟ�>l�<S�JJJ�H�;w.//���~�3�<�����~ڴilg�ȣ:ߤ��{,<<��{���ǣZQQp�������ƚ����1Ag,�z׬Y�6�Y�x��x����?c�;����>���H��l6�:C8Y":�?�я �g?����_y�HF�/���o�q�ȑ��>6B�/�YYYS�L��ӧO��(����GFF|KKP�����S�Pe�V��� (A�@�!�gUM��#��+V���V#>?�KbF_Q���d�m�~���(�L��r޺�|�p����ap�Z��8W��f=z^[������iv���o���������>?{���5e�.:::��622�䡡!���"e������ݍ���N�/*�[,� (��W�b
�3o�,		a)&L��lN����? �OVyy9t{�����P/1���N���a�6���ہ��;v��"�ᮨ���Gn<����/l߾��7����_�bʲ�b��3k#D������ߟ���z��	�DW@�<�R��͌@{q:��Ql�cԅ��@��2�y��W!䭷�:u���/���;�TTT̘1��%���LU����'��������E��;�hA��˰�q���s�"�m��ʕ+�'|5؊�;|~�̙3gϞ}�o&��f��� �Fjkk����|����Hb�|-++cG���3��)��'N���q�0l&WRR���/"þ}��޳ujȉ�==='O�dӚ�?���h����Z�F��ݻ����Bq�J����F�A?p�Ϝ9S^^��v��^�T�*�9[9݂�����;;;�é.--��=a�ijj���G���l����Mnn�֭[����~����pʌvTgWW�ڵk�	��"t�9�E
�N�l�[����ַ��������BBB�?�&N�9������P\\̂����'OF[�~�m�����;�)+J����k_+�:�q޼yH���B���џP�����U�.���{�w�R���x�XXo�/�Dq�#���?�E�Ǹc���׺���]�_^���+����I�/����{����U�w�A��+�z�(q�#��3�4y�Q7��[º�i�D	��c�B�*C��/{79X���[4��p'kxW@S���k�b	���8���D�F����������ou�
�	�ի�Ɲ��ꘘ�%K�������5�X��)))�]��C{{;|ix�k֬As�gff£�������ŋ7n

��}^��`C�EDD?~����m�DH@������ٳ�`[ՠT`` n2� �`0@&:��/q�c�gϞM�6�@)�-++���#�@8;��h��'�I�(���rt:�\3''zB��kעR��lFFFqq1����ŋ�����dt��b�V�&MB_�]C�:;;��F�9x��3gн(5Х'N���,F�����(	(//��˗/g�M�dee��

mذa����‘�����ׇ1yƌl���g���������w��������vM�:!gAA�̙3Q�AG������T�[�K	��aˑ���p޹З�B�N�e{�+9ߦ���9}��^�������]{r��wC�Z��{��}ٌuy�\_�5��zi�p��«�k�&e�����矛	��x+�\k~�[}�}�>�W�~5Sݗ�kɥ��s��?u^j������(.��K�'�'�K��ͪ䅅d�K�6p�o��h|ZR�py8ⶅ��
.���Ƨ�M��WƤJ�>�޿j��7��{���ϻ�w�~��P{��%���NsV}GcңA�	x�tv�GF��F�8��[�Ղ �(���/=�v����N�o��[��fCE�ӝ���6��[����Ñ_}��j�™��?�v�~�ٌN�����h�v��l���x؊����G)��PU��'�S�…�������[�~>|����υ�P%�ҷ�
BP�e�ٖ�/�尹� �u,`͖��s�ᱣv��+Q:mq)�h#.pK���=�`�A$�^��י�	�Q{PPИup��nAu�ras: ��!����>i,t�7�-ǀX�Bf(�z�$\�=/p*�Rv��C�zčE��0�W��d����_�A�t%�K�z�½���\�($�_;�ۗ�
F�x��+���>�Z�@�Z>����<��
F��5�ct�w?�XV�}�ƥ�RfJ����V���~>�7����M�eė�Oacߠ�-QWw,mmm|�O<1fCGf�~��g���^ͅ`e�	�wN,���S�-. �{���F7��g�u<�[�m"�c��w"@�%��zV��9eo`�h/�+--���׭[�>0B��Ꮙ��O�z�4��!�|4
��_�/Z������2*����G�ٙcv8�o�C1_�@�0F���yL��EqL�j� �Y��uE#��V�D���E�$��!]�S�r�8���v�-��{�=`�jC������u��D]l����:���E/^��6췎��Fĝ����9U玂��y衇�ΝK��� ��͌ ���3f�A�f�VkSS;�M��
tuu�NLLd�}}�0���QSRR`гi�c6\hkk��oɒ%�;;;���322`^777����0���O����/_����?��=@T��III�]�$6����÷ @l___```pp02C�]�v�:'''66��6B���"�Ͷa�����h2�������9eM2j����n���ٳ���3g�D�7A��}�R�����N�>��)� ��ĭE�+��$�]���������N�:iҤ��B6;�=������-[�V+�����w�$����ĉ����O�6-  �=�k�`0�ڵ���)""���ӻ���3::Z����F朜��?��$B�m۶=��3&���#;Ӯ��dӦM������۷o�XhUUU����aÆ������{����f͚8q"�̘�i���3g��j��YQQ��AAA}�4���F����?6n�5���Ppǎp	�ȧ�6� � ���1� ��������򘘘�~8==]��͛7oʔ)iiiH���c�"�8p,�;wnIIIuu5���`v���_��h4>��#6l���GAojjb�ETVV��ٳg�Z�
�ĉ�̙Q����א|��A����<��:tw���֯_�eeef���IJe�X�
��ƍEQ�&gΜA��ݻ��_�L&h�z�ꤤ$h�����Ғ���)��	��|�rHKHHطo��錈�X�dɦM�222����7ߤ�	AAq�@3#��������رcpȣ��w��a��CCCٺe��͌0�͸���@�s;���`d���imm�������m�^VV���jٳg�o�������#��`�����MJJ��t---+V�`ۘM�<�����r���ώ��nlnE�Bvv����L����/..njj�3g"1++Z���j�Z�1�й���"##9e�3H`{����o۶��l�Z��ˋ��233�l�IAA� ��)�{��Ž������?s�L8�?���N�ѣGe�ۍl����z��CBB� ӦMc�|rr�K/����^XX��k�-\�>|qq�ʕ+}�u�֡�믿���Z�>�HIJJ:w�\vv6�/^�8a��J�N���;P�^�

*++����-\L�4	B>��.���?��sQQQl�Hx��;:::���*M�>�f̘�f| ��DQ��!!!H)))ٵkWDD���SSSo�E� � ��`A�X����{�=��}}}��cbbBCC�m��d2�c�E`` ��U�V���ݲez�!$��…�.]�����'�|�KKKee%<���N��p��ᶶ6�Bqqq����ꂂ��v������T`g�-[�p�m���4��֭�����Ԅ[N���nwxx��/�x�z�
�A+�oll�n.�˷}���8����'�x�5k�����ǃ � �����d8�]�z��F��R��ϹF�S.8o"�q���׮�RQv�%�d�9�$i�9�+�*y%�3�ƣ����C��z�B�En�8
�$y$���~�w�f(�UW�5��W�}��+R�1�vD��7Y����0�ҥ����Z%�7r������P��l����]UU�����]]]555lVB`` ���>����b����"�<
����·����
~JJ
{i��+**������,^BTjjjOOjg��z��ykS�L�j������Q]?J�����6�
U���lٲ�=��#��X��$==���������oii�� ��>�ݝ�ᑑ73���p˲ZD^�7����#���Ï��x��n�W;r�zx���&�n�m���
�,88�I�f�.]ɂ��k�N2���>o���z����1��|�:�-<k��@�W����g���͏z�_z¨
�3�����\�]c�>d�|��+�]v��u�w�K�_nSF�+e�����n�O<��{�/{��$�A�B��fV\D\H�[�nO�*A豌��kEڜ�^#R��2J�?��L��8g�_� ����'�w'C��M�2ſ,[�1&'�ٳg��.���������СCUUU(^TT��ݽq���ol��e���[5A�>	AA�=#�[�>><8=*�vVЧ9]�&R�_+� �F��^��(���lC
� � ��7�`q�Pfߌ�.�<?nӯde��J}KH�;{��M���|DDĪU��n��p3�


�K	� � �{	
F�I�.�t���hDy��.��V	˲S�z�a�NC͍��r�3	� � �{	
F��M	�����!s]W??�#$Y�k��S�(AAAqA�����kE[.�
���陱ᣛ�~u��uS2�cp�=d���&� � ���`q;�d����p����ӣCo��Y��:�����#�D"
+����o����K��)-ޣ����� � �N��i��(:=��6�(f'D����)�P���ɲl�j��ƅ��r������<;��k�>�����ȑ#qqq�6mjooE������-%%%==]�}�����-\�0++K�VS�AAĝ#�ۄ�sv��dm'�9�Q�jIv�G��nh�I��Z͒�i�a�x9d��hl0�� �7��,��S���=-E1I��O��5��<���v�π���H��('���G��e)�%ɗ��p+|rd���W}2X���w��l6����;w�,���E���������V��9��lܸ�̙38y��3��ӍF#=�AAA���h��u��%@�I�Q��%Y)WW�9p��xw��j�'&(��a��hec}�<��7���#t��^#z5qz$��5dw@�@�A���a��0۝��������a+���Ex�Ψ�t�d�8X�@�#��X3,vװ��:`.Oϕ[c<�l*A�x�@���{�*�Ƅ�jQf���ШĻ����xv�޽m۶'�|rժU���펋�{�gp}�����Œ���4o޼�s�����կPd�ڵ�AA#�oj<B�Nב���"Ct��I�wǀ�K��j�܌�̸�]w�l��o��CH�5�$D�F��E����H�C�5-#��)���a����/�t7�H�Q	3R�R�B�3X��O�^tX��5�%Y)Q�&v���3<�˲bԯ�6��9*�zO�4ߗ��Q_Y��s�� 4*qQvjd�ޭ�cx�w�]��e��=f*�����C�?�G�4�u�Q

l6[cc�m�rrr����(IRZZ��P�������ȿa�d�G� � � (A|�ax�y�Bݼ����p�V�*/�py}C���׀��Q-�MM��s�P���G"<���2/C���8�E!.4H�[ύ=cwI�с��竛z�9e�U��<S;4@�]#�t{�*!�d�2t
��� ��k1�r{d�Z�d��W�x �#�*Q���Y	Q�}�ņa��A�G�E^d�Ć���?X���F�)������o۶-))��j����OII	>p�@|||PP����ޞ��;o޼��pz�� � ���as��W7�<�f�i�z�j[������P/;�q8?�hl�3�|$B�ʡ���"��'k��LJ�5�f��#U��C�Yi	q�A�*!4�u���3e�
��=7�p
��
	A�����;��Ÿ����J���N�J��2'#	:�,�U4�gu��ʂ��,�ږ�t�=׌G�<{/��\�œR�U\�ɤ��l��s����=�Y鉑Aw�
�
���v��S����<~�xgggHH��ի�j����M&Shh(=kAAA���s�y~��:R�(IrzlX�F�brڞ�ږ�a��x�I�]�����f��xusS�8��`a�`�>92�v�����%�k��<�d�xy{�������;��D�N/��\#'�<���P	|\�7�2l�7�
F�jU|��D��	»d��v{���t{S�%r�1��lwz%�>�G������6����5	�؉&V�?�60xW#������r%''oذ��v�t:�ƻ7GRR=bAAA���f<�q�W6h5BrD�N�^�������wH�;	B�U-�Ie;V��}�Z���%�
�海�
�\�j�Z'N���с�ʎ��<��*?EV榳��ޡm�*p��D+������=��c�q�}d��c�Ž������F��T"�A�YS��,��U6�4w^�-b��v��%I��P��%G�S��g�H�^��ﶅ'AAA�����<9�2h4K�S�74t+�kȲ^���v��of�d�;��`Jx��R8��p�_(znF��n�l��d���k�8.�|�S�`��H{�p�)���ą���w���`��]}�神�d�ز�4��#I*^����G]topcNf/���k�7��3f��H�AAAP0� ����N�ޅ.�G-�F�vyN��u]����������,<d�o��y����kP�g��K�4A%���f��DM��f�+t(n��xw��:��w��>z���؈��p�^	Uq!&�Z喤/�������g�����_����+q�������p�����['��Q6�T��>//�%� � ��`A\/��$+�E",�#5M����c�u��씬���M�ɀ�=�#g�[�㢒"�����R̶�^�m\6�q:�ut�Q��n�WfH�t1ʉ���`CrDh�Fd��y�L��ށ��A�y^��@�e��G'w0�n�iF��3;���{[��b�kN�`X�h��%y�js�=~���eSbxpT���G�@� � � �.��W_��9���#Fl�*���V7�u�˲l�jR�BX$�bw�l���?p��}`X��K'�����x,��X�.Bs&&�jx�	a��iq:�J�7�[�5�C=�(�JK�4�Q@�Qt��kTIN�a�7���x�y���	
Ѕtש?D�5b$k5_0��u
���
u
Y�n���;�̶���;C�ٿLIIɹs�S�nwQQQqq1uAAA�
hfq���U��f��*K�v�u�f�(�؝��
#֌�p�J�$��l-jjo�]A�:�{KkW�ņFW��:_;8bnb���GeK��L�~Y�����ء���!]>�B��~����^;-%��zi+s�Yta`Ķ�\Ut��H��o�<RݨDh:;=17)�z���vI_��n`�Ӭ�2ѣ�EZ{�w���� 4DGq�3�A��{�{�'�F|?x�C�e�Nw����b��9u�T_���9{�� S�L�g� � � ��u��ݑ��&%�F+��^z[��� ��nw�OT�n=S���j{QŎ����a�������WVש̏7�g��<��Ճ���=Um�CV;Cx#27�p�5T��S����H�=�weGZtؤ������1xoD !<0<����]4����>ݒ�9lf��#CZ
[⋧�D�/P"���h>�Њ"�]sf�J5*���Zq�U���ݲ�.��
��y�mhhoo�ٳg��
�k�Z���Y~�Dp�>�AAA|5hfq[=CA���eĆ���>^�T�֫��4A�-v���d^:����V�g���!��Y�/6 �?�
!(�Š��>#&��8h���G.����}�.�7�1d�n�04b?Y�(�^��$o���/�lw�pM{�V�rx<�C#�艡�����s�ɞ�H�g�}V�<%��$$�4j��^�F�n`鑤��ޮ���9]����n���eNF���A��BKGT��{~ӈ���������.^��f�<x�j�&$$$''�������t�3f�c944t�ܹ������)S���u�v;n���!'�������򴴴��,H�G� ��I��mv���=OJ��b��7"˳/:/� ��`q/�F��E�&d'Dz<�koYmCϠ�Z�2�o���g��,�^��hL^����|M����A@m.Ij�4�
���<z%�6w��]�2��nI���]�ܥ����7u˝c�+�Bmg���D� ��bw�*�a�Ԣ7�:�FZ�kX`�7Id��:\�(�c9}����bn�t��ٻ�C�$P�2T��~�g�_z$��w��9��Zv�TRRR\\�p8����x����z�F��xDQ��l�%##�����?~�G�/(���������K��l�w�}W�����#�Ν;׮]�x�ⴴ����O?��d2͚5��p'������g�JK�Z[;�6/1ёqq�9��&�昌&��w˥o�� 
Fw7N�6�܌Ĭx�nV���b}c��+��T�[l{/�ޗ�j�2.��|���q���G�k�k.��8E�9���µ�,���Z~��_D�-��].Y@��6���ˠ����p�\;v����x���}�@������dffJ�]SS���n�ٜN'Rrss-Z$����ؿ�…�g��"����͛7����ϟ??gΜ�����䄄�ӧO���kHOKKE��t� �|����{��ٽ���I�R����n��<ln��o=q�\Ll�Y��-��¢~$� (A�������ꝃ��PW�=p3s
?`q�9_{_~F�A7!*d1'�4�
�F��������ϝ;7%%E�R��f3Dv��YZZ�r�J\WWW�D�Vˢ	:�N�$���X������/((�Ǐ������ɓ)Aĝ����[[��<y�4yr.R;;;�;�v�ud��tyg�bM�x���O>�^0}��223F�͹"�AA� �&�LvN���<U�R����f6�dt[vW-�I�6�(gs��&�i�ҥ���?x��֭[�/_>m�4�J������������b��Y��̙3S�L	ܽ{wnn.2�\.����%&&z<������n���g�6]���@��P�q� _9�Nhjl��O����-##�h0�6�
�i���&88R�d��f�X�V+���������c���X�z��5+����$SH� ��`qw׮����8>4p�d:�ҙ����4j�0W��hV�Z5w�\��!B~~~MM͹s�V�^�k׮}��M�:U�R���h�ڪ����V\�Y�e��������?޾};�,[�)S�LY�t)
R'q�%d�z{z���_cK۔�)CCC����G���቙��CBBC�4j��n����k��+�X~��bsS�铟�����5z���� ��`qw�.-:,=&L%�8ɔe�#I�H���Ƥ��������n�[�R}��߶��=��̙�.�V�e׋/f���/����fC~������%��@p��ƕ$���=��y�S�z���{j��QQ�eB8.66�{�p!�t��WUT��ys]m��Sg�CLK�-�h�ԹA#���(�G�V�#L�[n��R⋆���W�f7�/q5z��z� �;�{W������U�a���e���'���+�Y9_:�+:6���+�/:�Ç���LMMI����z� ��a˜���UA��Hr�����n�t{*D��2"��A�7��߿wmM����j���?�?~��K���������ȸD}`��c��U�6��Fu� � �� n!nI*m���%��5�� � ���[o1���*Zk�ߟ�$:&v������
������8q�̲K���>�J�u� �A>qˑ�� �s). �|yyyIIYꄄ���F"$'��/�b��՚�A��s	� �q��AA�J0��mV�{v��+22']��򺑜n�J�v;��B��y�m-�ԿA�B�� ��������v�
� �fx�v/�546i4jٻh���|#�)xA@v��m�\�
�O�#� �q��A|s>p�@ww��b���Odܒ$��r;v�����WA�-�޽��z{�T�r��B\�E\WH����Kr��Cj��؉����� �GhK� �qH�400PTTt��騨�����8q���eӦM���=
YYYȼy�����9s�L�0��$�Ά7��gN��;�F�7��f�;9"�d@fY��N�udD�նw�47'OH�.&� �
F�g�P�
CCC{�쩫����}��`p�����Ĥ�����9r�����'����		���?q�Į]��m������<�Kĝ�Ų���>Qԫ������kܐ���I�x^�%��ry�n^g��o�`A1��2
�P�D�{����cǎ�Ξ1cF\\睊�gee%&&N�6-,,/�N�:gΜ���5yyyiii��մd� �;���,�*�`�jBbb�eɻ(C�N��%�`�P�A�͌ �Y
Щ�arˆ{�����������9z��]�rss,X�r��v�oʃo9Fee%���洴�������@1\� �\Jϗ�-#��|�X^�
�		�+I��#9�NA�5}__?u/A1�P0��rdY�		�h�<� �L&SAAAZZZuuuIIIvvvpp�J���O{�1��Î�2����w�}��Ѣ(R�q'3b�4779%I�%��#�Q�+�,�����t�ۻ����m6�`p4O� �'(A|9�,'�t]CV���^!00pڴi����F��СC�c�…,W�X��4� �����Ǝ��Z���##ݝ�\N'�/ߐ���ؐ��6|��*I�]N��-y$�²A�xA��E~Ƅ�}��n�@������я=�ؘ�:���� �����恁���X�^���"Il~č#��!!�m�.�K'y'Y��.��n���6�$� ���~�#�Y�ƒ���jD�#��!Aq�����r{b�もB�v���t�޼�DQ	�$I�w��t�FFF'u2A1^���z�y971*H�=Y��k����	�Aq�����py2�҆�Q�t��?�N�D"��G�T��h	x<���^�v�,���N&� �
F׋�k?!2$(@��7��3�k�ٜ���I|I?_uuu�J��[�+��Ac�+)�/9�$K4�� �^�28d4���9QP{$nt����D���t�<�G��Z�N������7ς � n
F7�'�^6��ό��"��֎S�u�U�~)��-Y�%%���{/��_z��$��y���ujQ�hR��p8T*�����xA��YD�FsG�|=;}"�5{�N�S��҇� n��֞vsCep�V���S�,���u������RS���V{�����ʢF�㒊�$�]���v:���㎬J7F��lI�l6�9}�}vۘ5d��M� 
F�
I�/��j=� _g0�;?����?�cq�Ke����`�J�7n|p�\�ӟ�.]���sM7�̙3���+V�

���JJJN�<��+�܌����ܜ��~+����h�%Kbcc� [UUU��ٳ�������o���!!!��"�/���<���
�p�>GO���ˠ׫y�ċ&�U+KNQd��e'c�]���(�</z�Ē�N��钜.��f�:��[�8�{���cU��EG�������~���v�4����B��w�T!��ĉj2� 
F���9Z��#�+��#.�Go׏��V�TN����3>>����;::l6���ɫN������I�&���j�����	/���=!!:�����}����[����@{w����Ϗ��r���
u��1(088����������p���5����:��M�eY��j����˥<:�WI�
U˂�bp����X^����D�<�G�{ܜ��r���j�v��c���k5:�N�V���"�u��ڜv�r�m��F^k�:��Eq!����4��A7
��Aqm�E�;wn߾}����������*I��1��V�U��|������"�������oP�n�����/�Ć\^�������qCCC��p8�uhkk���W+0�P��(�|�������Nܪ��}�7���5a$%%=���AAAP�P�E:���}��*D!�?j%����������������_c___aaayy9���ƙ3g�ڵkǎP��<��<��h�̦��={��	�	$�,���� U�{��I6Fx��[v�����J%��-�����N͋Z��
�tN���z^��N����
P�Z�:4$$kbzfzjr|\llLxLBPt�1�$Ψ����*�Z�E7/�Z�3q6+�V!W��J��&nd@����-1fb0a��8u��u�ײo��I0t_g � �k�~}"���Ç_�x�����-�����-[�<��smmm�|�I||<�g��(
�u�̙����,\�P��#n?.���B`xx��l��裏���}�jjj`�?��CgϞ=~�8\z�]�nݤI���>���DX�l�šC�bbb&O���ܼm۶_|6+���a0`z™�6m�4q�D�FA��ݻ�~�ih�zz{{���/��F�A������!
z���͛[[[###���u?�0�U�l�gժU�f�Z}4����233!��F��l'N�`���{�.\���@{ѱ۷oG�gϞ=m�4�@��0���
����a�ܒ`�
���e瑼�.D��%�S�'.��d�V���a
���qi�cQ%{�</��4Q�<N��t���+G�xo�r�Ѫ��5@��������n��s
�Y�j5�2�l���E����H>8��
=�iϞ=EEE�0z$&&�_��+���0�u�֥K�B^b���˖-c[�`��ș���~͚53o]�P/v���� 9w�܂���	j`�w
�vz���3��AW���?�9�A�������L&Ӓ%K���֭[��Y�`��L���h���õ�������?����<\�0���ﯪ��_�q��	&����(�������l�~�)�{����a�3?v�X]]@:�[9�����Ü2����	��ooo����Qv���-JJJZ�vmBB˜v�HCC������B�
W�ĉh4���M��V�XQ]]]__��kЖ��b��=�f"ۆ
���KKK9e�z�������~�=�Ptt4�E�6}�t�
SX����h��!!!���O̘1c�޽���/zzz�cI|C�
%r�)���c�y\�[<�v9���K<�9��E^�%W�e�GrJ����98�Ws��ȩU�w�/*NPs������:#�7�Z��,��&�^�Ѩ�O<�䐜V�d�k�F�C�Z�q��Q���$�[�dN9�ZV�yw����D�>#���҉7o�|���.0b�r~��>P�����C�0h��u
�@�k��r��o����7.���//_����Fڛ��ѣD�͌ ���|~صl���G����Ķ�6�v�5Mxxxzz:[7��
�NZ�����rss'M��kX����ol6N�8166����p����pwٲe�O�lhh��ʂ���%K�|���h�����a%�����G��3  `L�AP�ռBFFZ�?..&/���$Ieee����ɦ*��F�	JM�>���
-���ؽ{7����X|�a��pʏ��������]�Fca��i���aaa��٬����fvt��b�@d`KT���ao<�34@��d��,��x<ɢ���<��#DQV�rʶ,�,N���=42O�F�tA&λ�-In�{��ɒ�PA�y�.Y�T��h�$x\<D� I�7���p�{p�E�Vq��XA��d��>/J�A�$	.�S�ޡ�
�-Rw�3l�6:�V���S�N}������)�М�Qٹ�����@b�0�`� ����h���	&`����d��M��gϞ�/� F����ɓ'c��@�v�b񷵵�FEE566:tC֌3L&����###1�b��>����	��!����҂D��P����������G��(����1tc�����&DN��[__�♙����
�܅>�+�<z�/�-����G� ?���
� 
FA�>`�º=w�\aa�g�}6{�l8��`��~e�4����4�r\��رc0�.\8u�T���8ϟ?+�&���0,���j0!����f�� Ld��s��>�#see%�i�E���A�Z ���~;�G6Mz�c�D]��&�z
�,�w
��9r�瞃����A>�@3CCCa=CI�
VX�r%dΚ5�����0�a��z޼y躿��v�Z��EEEk֬a��.�$��3�',|S�4t�󀞯��@�g�}��A|�p[�����S��bD�F�8�VvI���Vf������9\n}М�sl���Ξ�]=aZ��e��v�5U{'Hxs��؄$��S:��:^Tɼ��$J�C?�ڭ����J�E]nAg4ZG,*���9AT�9�$y�Gv9G�N�Z#��ޭ29STw]c��^���0��myy9%�����ֆ�3::�d2�����w_nn������w_�u)��/_����3F�N��Cӟ��z
�=��s�M��!}�ҥ�p��o����G]��_���0r~���/���y��"##1�}��{��]�P\\����ǘVWW����iӦ������?~MX�j;�o+F钒|A@O����2cl<t��K/�e�x�
���ŋq��[oa8�d{�^�@( z�W�O>�����eee�1��ٳ)�.۷o��p�t|�a�^�`=�AP0� �k�tx��L�o�md��C��޼y�ԩS�;�V���~�ܹs����d?y�`��Ɠ'O�|D�����&M�i�v�3g`��՟={��o�	&#�Q6��Ν;�v;�8�NX��?����&� �y֯_?�M63BqH.����s.8e�2@=Ⱂلgد9990�FBB,i��HD-5550�Q#:aݺu��d
&�0-Zt�����^���+�������
�!�����
�
��Na���@W�9��_�F8Uz#g���5j��ᕈ��H�= N		pn�w�X��MV��#���Ȋ
�H.�nGA��F!d�/s��� H	�dA%x������n�-˜�{��eH-Y%��u9㌂yd��V���=�� d�9���r�UjQ����iM�[��v��t��ފ`���fc��z�=ZUU5gΜ�~�E]��,F�m۶�c���}����)`p0������iiiAqYp�ټ-������_c�|�Q�c�=��ݰaÈ�ٳg����ݻz�j|k��_��(�[X�lYff&R|�̚5�w�1�@���F����h4�v��7�����1r���j���W�;v�+0ޢ�믿�Ё���'44��G�؎l�|���ɓsss���XT����v�`���B`kk+��u A#� �6�ϟ�.���a��0�S�q�Ƌ/�6�E�F$�p$�)�:;h�ezz:J�|�����կY��-������ϗ��[,�g�y���HNN~��Wa��EGA��̙3a�".��dF6x�0a1��ַ�U__C����-�@NhḀQ��n���ٮ0^q�D
�1}�t��������uUW��9��[�eU[��l��
�;��	��C��$C�d�$�M^f�i��|�0���0H%Cb�`��e˶܋$[]����[ko�ZȆ�C���s���{��^����C�0�W_}:,**z�G`np0h�L&өF�dee͟?>|뭷��-�Inn.�a��w��Ǐ%0�P	���+������x����2|�3�ܐQ\a�!�{z�Q�4!!t��cA�̴CFP����q��U��>�r��?�3w�P�ā��<�6��ޥ��q9�
�J���>ʢ�-&c�O���e�ψ���3gJCz��G��,ˌf�L�Ρ��Nm�p5vXp��؁��z�{m
'�*\���3Hݰ�:+���<��J�W*W�cդ�جY��|�,q���	Dqe�ֽ���B��wXHnj5�O��rpV�B+��Z���ի�l�2j�(�I�R�6���G�0O�;;;����F8��Hڊ
�œ���ھ}���?��p
��Ț0����;���/�ܹ��3gT�Kػw/t;v��t� ����(׹aÆ�\�2�H���;MMMpT�e�\>\�Q�%�� ��A�.J%�X�9�p@��rMM
la�	��u�����.SŌ�N�^�&O�ܽZ�?t^^޸q��O�$�N���)�a�`t،�vv�j�jF"��c�]֤�u�����o�y�UWAK�.�ݻwn.�ɇ�	&��;v����꫹��a�;`e\���}�A�ںm���_�U庁'�a�ۍh��0B�@+4l2L�Q�\�aR$'�ϰ�%%GO5���$>�D�*(V�+u-�5&P���<B��M-��a�Պ&�����M�t:���=ѫ�����)��G
��_�Q�m�¶a�e
n��8�phO2��M�pMM��� �_޻TUU���}�߀�$�ze��}�`�q]�Ņ5mٲej)�����X�VWX�A,W�z�R�M��/��/ ؃د�MƬ�n��Ț]���dsssaa�
`A���ka儳999����,8s��ڵk'M�{4�AU�����W�&#�(�����<��%%%�ׯ/++kiiٺu��� ##�|��g7o��u��!X��&o߾]9�(�L�4}�t��%K�@��Xlݺuw�y�1c��S��\s�5;v쀿Y�}	� eA�g��Ν�J�`ߙ��_YY�I�^TT��Ѡv��m_B?�o���ʕ+���Ξ=�G(
�|�A����N���Y�T�2�ƙ�����3�2,���>jt&�PG��n*fdf�l����R�O��?m�QX�=�R�B0��G~Rp��y�R�ğ�ܾ��	�����+��[z���`HKfG��,�65��*�ap3Ĕ�/̎��Gj[[���p�>v`oe���.��
k����'�x7�9<�L��_���ÇÊԿ�o��V������;�� �?��S*�%,����=2e�H?|��2e;f�&�Q�h�.77�wX�A���o��k��vѢEO>�$LVN8�`��?��?���
a2�e�y�o���}�� H��iRݜ6���0a���o���g����w�<y��I�&�>}z�…��d�ƽ{�>��30+X����l^^ޠA��		L��9L�>F߾};�a��̄:��s��/��k�.X�adA�'�~ii�>��w��-]�6��*QO?��j�@�ƃ�r���.<nWS!���_=�+������ʺ�g>�Bٛ>&�/h��F\��}�����OaZ7�(]ƅ����XW���y�,6�i�M�S��Uo]|�L����<�kin�m�uI��g�0�>��O�!�0f&�4��~������{��?�!:�9�a��a�D��G�W���3�Ju+�Go����|2x��wߧ���ڌ��y9�E����p�����1,[m`��B�s��ݤ��7O���8ٻ�Cߺ~İQC�ps��L0]�����)�TQp����Mp-�"�2�zw٢}�)��)
�?y�Ȫ
n��{��a�=#L#���t��������w0k�S�o���ys��a�����-��B!�������	��J	�\6`Sy�P���T��U��_ߠߖ*B�\Uv�t���Ӏ��=c�v<��q 䫶07h�D�
�ӟ�tԨQ7�p�&�x�$�Zu��SJ��~4i7�?��W: �q�yVV�29Q�����Q��%�#l�aV�V���ykk�J��m]�������������jZ�>7�x�/M�ps4�u	g��`]G��L�s�c���w�����E�����e�+�	P��եHR�\{��ӗ����w���Vog�^��7�<q�·KI�݆�{�~_�sbp��i݄w�D��V���_J�&���X��^�&���i���2� �cG�Ϯ��\ҋH�ǎ>x���Q��@���*���&��nf�D�/�r��g �Θi��6ƒ�*�B�L�M�D��0J�%9:�%���.U��L��
�n�\��!;d�̎8���q�5��Y�+&G"�H�4y�$lV-ۂ��b��ჾ�����B{��G��VZ ���D�e��s����R}z��+�C�{fM��V�Xq�ĉ�Ç=z�uݴw���s��=�|���Fz2=����A���Uwo޽rgg�믿�I��۷��ݛ����A\*���I� b�����Q���0Ч��A���[zD��qi---=��	�e��ڎD���6�Gæ븞����;�X��d�C�lo���2L�6�P�YQW��\�O�<���2�|����4L�p�_iJ7
4�P晘;�b�~�sS<瞣���p�6XVV&Ԏ�RmqL!���s�u4u	t�)'O%:|�ÑHfVff4d0qp�G_?�X�5~�����C����z��B�SBff�i�B�L�����{/i�	��Ġ� ���SO=5��ѣG_PV��Μ9s�m�u�R�عs�{���}�Su������d�n��h���K�,�;w�w�;v�8x����~����g���v�ꕿq��놎�I7���F��;�P�Y�Q�0
�	e�*�uaщ����0Z��Cɘ�|T_�*�BY����*#z�Iۈ��I?0�L
�$0.4����Gz�	˶�7��}����n�h��$R^"�„q�MhS������\'��\�/hqq�>�3�u}��>}A|�eAć�봵��\�2�J�8�Ŕ[�z�NGGDZc�ƌ�����~���Jkk����aV����m{ԨQG�ill�qJ�;]_�n۶
�eY�6mڻw��L&5�١7q�kk�o<A��o��֎��{�ゴҽ��ͩ�&'Ô���dI���3��.c�i<U_*d@�'#�H}A��+3Qz^*xd,	鬡�\�֙t�M�0f��̈j���ҒL:��'�O��Fu ��G�M��8�*�ޒ�P�>S5H8�T`e9�p�T=��AD�2� �����c͚5


��{��.]ZTTTYY	�}(��yyy ��d�/��BAA��)ST84MF�F�*;��]	��PҫW/`����&x�DN�>���C����D���YYY�T9��qfd������\�U�ԩS�UII	��ނ�UUU��5�+R��`�޽{gggC�X,�����A�P�
u`2�\���1�歭�Pf�5��N0��\�r֬Y#F���O'N�׾bŊ��������L�v��I�4�SŜ۰a�޽{�M�֯_��'B� >=쯭�lo�?U?oT��i�y �l�3~�"��~0XCf6~v�
��tf��(-�̙T���ɔh:���g�hbd�at��3����)\k�KL�~���R�a�p�X��?ef��ƍV��u���!fZ��rXߒ�xg{���qR�����qB��̽{�>�^b� ��A�� ��رc�Ν rϙ3��%K�;v��W_}�����-ZԿ@Vy��3g.[�����ȑ#G�]PP����X	[�ly뭷�����������|�� �o޼d�ӧOϟ?�ر0�_��מ�r�
��t�Ҳ�������ѣ/���w���۳�>sV!ʚ�����a�w�}w� d'N�x�g***Z[[��7��M���|���vx���s�B����Î����J�����w�q�g�����0��ӧO�4I��(*`{[[ܢu��5�7nРAP%�a���oŊ���;r�ܙ���?��s�L��y0ܴ��΅�N�0�����W���%%�H��_��@��~��fX0L�M��d���pV�
c���3��Ȉ��mM�n��~IXg����(�9`NOT5X�JIǬh��u�a�s�ufa�O�P�Ru��纷̞�WNt�	�4D��>�S���_"�Itt�����t��E�Eu�'jv��v�m�A�� ��@�m��_�rȐ!_�җ@0V� ����+>�`8��A��zӦMJ�߿��?��K/��?��+_�
�G"-"���>{�����ŋC��
r~qq�}��w���w�y��G�۷/H����jee��ի[ZZ~��0��\�L&��mDez�,*C��,@��������=���9s��{�����߻v�6m�̙3�ySS�s�=7o�<�9L�믯����������o���k�B��_��j;v��o;r�������B誤���'����_�`��3ԈЛ�����w�
7�%��Ο?j��y����VÄ5���pE��o�v��W?��C�`�����5{[ZZr#c���0��O�ň�a0Mgf<�LxN<�����$c<��Ng�x�c�Θ����Y!���	O7�iG0�3W�38ƈ@+	�w�ؐ�(��B����2�2�����Q?�j��4|�:�b�.�x)����ζD2����D��h$�����6š[[{�q��MFO��Q6)A)#� �G�>}f͚r���˕����1��'N�0MsܸqP����k֬�������F_�ɯG�Q^^Ǔ'OV�'���a�@Z8z�(��۷/��4i�ҥK;::@���*-����.\��QqΡ\�|Ǝ��JKK�[�0z$�OSTTi2����͋/�~���U*{�U��\T.))��@�pE˖-��07�Ӏ��l4�목�ٻw/��8q"t���R[[{��7�'���544\w�u�Ҡ��͛��G,S~1p{�.x	�y����]�v�nj�k��Ҽ��-<���w��shJ]�l�3���Dnq�����::\�O�1�sT!�:�~ڊD�Hf�{��*?x^�h"��[�
�f�ZB�*�1.�������oklnj�dd���H��"��K1��|�K%�m���	��Ѝ�l�����4͊œ}:xp��϶���_5��ڻx��_4���v�{�L�6��ִrG8+���;j^q}g��*�QE�ek�&d�͘�]z�A�2� �'eee��~��c�v���/�������H$\��ӧl�7m�4~�x�s�믿����Ս3f������B�u�ֵ�����Sԏ?^^^�z��DƑð�PѢEG��ׯ�Rg���@ �C�V�\�"�	tC�߿Dw�a�֭S�L9Ƃy:�s�`��mD�N��a0�{����M{{�ҥK����JG���������9s�9s&�L�$�a[[�̙3����«������oذᮻ�jjj�/--U��cU���{�ƍ�ƍ�µk�B�F�ۋ/.,,�~���AoE���C��룖qݘ��D2���{B��h�ȅ`dRӅ��:�I�����";����&��=�4,� D�H�Ř		��<W^�*ŧ`L��/E���RS�g�����&|���XvNiaI�QևnI���t7��lijom��R
3�F�@�݈fD��-ܰj�ޚ=�6e�H�lŠt1����+��Κ�:c-�G<`�TF������F%���Rˌj��n�'�^_�7���`ZC�[�X�{�ѓ�6l���~@�v� RFA\��������ĉ�������?��7��
�.\�j�*�����B�ԯ��)Z�uL� c�`�P�8�o��;�w�}7������?{�짞z
�H$��~�J�~��������N~~><�;������Ç��0l�S��M7����?����Uyy9���'�x���~Q�-&`����}��ga�y���3�Q���YYY��r\�3�<��&O��K�{R���7ƭ����v��5l�0�Lo��᯼�
<������O��G?�q;;;�*##�����	�;���pR�];w�in�<�j`����T�Mb~L]�J��/T6N��c�i�� �z�
G½z�Q�v����ǚi��p(d^s��	��0ӴB&�p1B����\�@G�!1��q#�@��nX��@g&O�I�y��#�X�K���4td����LC˙����T6
��$�p�w3��(c��wk��޻�rG���tǎ�:UWW����E���	k�y��z���
���<[��(�ê��_��_N�:���@E� '6���Ϗ���EԔ�?�n��
Yڸ1�ef���k��ܜ�U��H�~�m��>���}u�K�F���JKf��mz�A�2� ����T����_��WΜ9�����4���xK��1c��h� ��<y���$s��~xZRR���	���o�]�a��s�B�---}��QF���0"�#�Haa���9�Ͱ��ݻ��p
�����P
�Ba(z��T:�&����7��M����%���[�֩S��aP�=��#J�����M�6M�]>�o߾Pnl�A�Q&�Z�n�|�L��+G�gȐ!0\�_��_�/��<蜲�W2�w�O���</��']Gӝ����.,4 �,��"�V����,�r��
��9�}���x�J�p^ֻLv�8f��0�n2=��&���&�ne�I��	��.&��1C�1B!�+�{�m;2̪�"����������|��҅�%� ���\�^F4�4Vٻ$?j���O$����1z��������.\8{��^xX�`M{�����N�>}뭷>��S���_~��,Y��r�Kܺu�`���_��O~�1��~���c`�9�9��oy���#�mmD��쁦�	`}��9�4
�P2d��ݿ�䩣�?	��� ��A 9��B�K>�>H�#G�������V�Ѓ�1�I��&�@ҽ�P(��6(Ն:(**J�U ctW����{���;w24��a����٧O�t~��*++{��4I�
�����7jԨ9���C��)))QǶm���e�Hә3���dE*����8w��5��`h��x�eE2����\p���2/ׂ�/�ʎ�G�{�f���V8�D��3
�s���ʿ��茁��@~2u4�0�h�=.�hA���bm���}��^2�9ZO$\���x<鸮��&a0L��St������WPZ�khY��CG�9R5l�e�c�N����O�<	�j:oQgg'ܢ�����͛={���{��aXW�\y�=���?�×��ee7��[omذ����f͂E�G.���M��*�~��ro��l�Aজ掸����1����Ic��6d��}s����_��3�W���eUo-���A3����I��� HA�q�a��*!|�ر������w�y��:�m��_=��#���#��;b6˲u�\`LC��mӰ-����\;��n2�{>F�D��1���v�M��h�aٺ�"�0���2B�D{.�dt���0�yj\ph�C�@��=�̢���s�s��]�u���z^�q'�� �W�u4���D����uR�dbl��u�k��].eDff�m��VVV�����)S�A���W����]�j��W]uUaa!\�СC�?�hѢ��f(�����ʂ
{����˛5k����i9�8�p�2���9}�W\�a��鼼�h��vkk��=8Y�!�Ž����޽絀�S�}k��%��]���{��hcQ�������*�7?A�� � >.TĄ��٥�����G�A]]]"�띟i[I7иnb=b[!��-�2�P8��cG3�D,����+t�4&����Z�\�i�4�
�dL� �0����iUp̘�*�i2�NBü��ǘ��*�u��n�D�X�0lL��4�ݺ��V�vTY�~�0��@_hm�xuE�p��\��ƛ�Hh��'??��?�aKK��?��"�,^��G?������

��������oܸ����?�A^^�������˖-۽{�w���{キ����ү��!x���߾ᚿ��ly�}Y~rs�z�S!+�3��v�o}m�5�`��~e��Ꜩ_�r�7i�:td�u�л��ں���eD�Oĕ%N#� ����~CC�i�@�>��zvf$7/'+;#�&C3˲BV$�G,Ӵmˀ6���0Y�	�uR�D��3��N�K%�T�]�s<'�.��<�t!�t���߉^"�υ�>�u}���$4Oh�δd~C����F��0¦�1+����3།A-4]8t�9�xYfQfh�-'O����.�Ju�DH��g�gk׮]�`�/~�իW�V��ٲe��{�O>�s��H$�裏>���\s����N�<ٽgK<p��ѷMs_߲�]p�x�#o7�a,���?ͅ��}J��
O�d�|g;���w�M�����64��Mo~� �p�K-� �Kv�������yyy�Q������Qi).����3g�:�c����b����5�ҩC>���cµ���8q��g-B���;u��4(pS�oZ&���4���est�Hhj(sfYf��#&�*P
\Z LZ�-?0��0-x��=
�cd1D��a8��=E�>� F�����E �Y�����2g��Q�~�A!��nh�e�"�h�k��,��}�s�
}@I���m�VVV�]㈴�Ae,�/_�O��O_���f͚
�N�>����gKKKVVV~~~vv6&�S�N-Z����&=(���+#�	cS�6��S��GDx8Om��̒?�[V5������ÂWZ<T��[?��ȱ_λ���������c�Γ&�,�q�C�A��<��10lޟ{��6�����ʋ/����G߳g���?��Ȇ;w�|��7/�rMM�O~�}��}H��y�f���q���>��%̓ >�4�����nе�@�7&>��a�!5��&����a#Q/�	.�F��#L+"@�����>��|��#���.~u�q*=!�}P蹾�x�+<�/`���A�B�� ���i�?�#:��2�L�-6d
�?B�>����ŋ�lii�\��JB�����d2���WWW����]w����gϞ=cƌ��S�Ly��o���C�.Y����x�_��W[�n}��PE�c��F 6��5rDԺH
�`,<z�m�F�Z��o��{k��s��G�J�M�X������0�:q�?6����o��գ�]R4��A\�eA��޽{�b��7Ž��S�-��)T;}�tQQ������hjj�3gN�^�>�4T�Ћ�	��_����/���!�4>�	&����ٳ���F{{�뺅��j&x衇�oߞ���#g�J����p�.=� �3JJ��Ny���J�&�I#��Ag��9n2np��
��9zDX��/��e4J�Y��Et@5�#��M�b�2���taꞏ�=����B�j&� �)DW
P��=8V���8 �i�ׅ�Yf4�0`\�%��H��-�ʎZ�m8|�P�G^999��wa�Sk��ѣ_y������_�~��v[VVֈ#~�_���k�N�8p��7���n��p��u��}�;�Y�`�Eگ�-����_�k�ia:����[����	�-�
��S<~��l+ҥf�Oɐ�>��̂4j�]�H���w�s���zn��	� e�'FW���+����W�
����B�>{��0Új)�{K6�;K!�����;���y��իW��u���+W�lkk�={6��˗/oii)//Lj��[�w�}�̙3S�N�ꪫ����}��"�θ��5�L�����w��ɾ�8q"�>|x���9~���_}�ժ��Ǐ�F9//��<��8r�H4-**��СC����mٲ��>���F��k��q�cǎ9�#fdd̘1��ʌ���fUVV%���rnn�رc�<xpǎ0�tӃ��]?�&S�LQʈ
6����y��`>�&MjhhX�v-\��Q��{�������}��6m�Oz�W �h�عq���D� 7�
�Џ�Mzu�hn*a��YL��Ќ@g�4_�uC@p�˴L��?�'t�Co����&sj�h� �:d<K�k�B���F n������A2���4��"���LX���3�V(�8I4��� *�	DaVf/C+-듛�w�n,e��sO�X����G������px֬Y�*u�ŏXR8~��D#�&���V�r�M���%��?�'� eħHA7���w·>�.��i �">�w��Ҹ�y'N�],|H��8<vtt����^ڿ?H���A�������U�֭[�F��~2�DI@�jkk_~��S��x�x����Ι3g.[��|�	�}�Ywذao������?r����TWW�<�r�JyaӦM ��d�!C�=z�VUUA��;w�R)G�O���NSS��~��Q�F���۶m��k_��y�…0���n�
=<��c���T7n�ɓ'

ZZZ^}�ձc���õ?�����a,�����k�����`���рK���;��f7�ԩS?���KKKapE�C�O�>7�|��۟�y(�[%�&$��m@����W��ZK�2r2���H�R7T���Ȉ�)x�
�2����5]68ׅ`�)G�����p͇�z�]��:z^`f
t<�M]�L
��~ �YC�Bd�	�M
�����aS��P$E�
�)Ea�:�FՅ�r��!�EVFF4�i����Gi"� RFA|��X���	��k�Q\�63g�lkk�馛���
���o��
%[�l��7l�% �/Y������U����ݫW�[n�Ŷm(���~7e��q@�7o^MM��Ç��o�6�����/N�<$|h�`�h��رC�n#J�S�q-�Z�ti�~�n��V8�<�����|�g�
��̙�ƌ��G��a�0JNNNmm�2UX�f�<PUU��,//oРA�x|�޽�0a�ĉ����۷���ˉD�G�۷o�7D��ӧ�_]]
S�N}�7`г�I�w�y��
7
ڞ8q��'�\�~�~��� �+��޽����y1'�d�v(�����R3LI�ҿ�F��<�a"]ZAp��7q]�*tf�hР�!`	������9�:T,�h���P�X"���"�0Zfpi�310I��t�4a��:���vȴ0�D�pg}ɡ8��K,AsgL���,#� HAq�&Mb���ꫯN�>鬬, -##���6ߥ��Pd�t<���N�W�Z����C���>��𴰰*+'���rι� ��)蹣�#33S�>TTT��]��(((P�@V߳g��A���OM�'2D}��Q�z��B�����L���p	P_
5 ���D*�lM������u��Ap�꒕�ȠA�x�իW��6lؘ1c�,\ѦM�ƍ���7��@?�Pn�1���+R��<}���ݻw��YYY��G�MH\i�'%;u�"����D<p=fR5 �@
��b�?�4r�n�UIh��̂OjD �dA*���
f����8#ƒ.񸻣���2g�U���>zf�g�}T���3��M�{�)/�_C��1M�x�qC��OI�5_�'��I�8AA�� ��dgg_w�u �Y���_���;�P�PR�[o�u�UW�:u���f�ܹ����*���ɓ��
r;�I^�Py{��� �/]�4//�د�)���x���ח�����P*0@�q�$��'�w��=o۶
d{(<x04(�*�?�L�<��95�LxÆ
 ����唕�544�R)emW�0۬���˗O�4	��L�~}}��3�ZSS���8~�8܊���!��{��_�n]NN\��qTnll�~^{�5�c�?܄��V��;��K/����x�UUU�#�X�i�t�{n�g��{ ‹ �1.�
��i��t��2���TJ��#<��AL�
Ęn@��1x��—f
���*R������H��G�2AR� �DH��*�v�A0;�4�e2�T13=�Kw@�[Ɩp0���t��ܣך � eA��DfϞ=e��a#]TTt�UW�X��{�y�G-Zt��I(�;wnAA�'L�p��7w�a�r�ӫ�p�F�=�f����Z��zII�&�!���+Wnݺ�{8��O�������6l�R[̘1�W^y�7z��}�5���
7�T�-[C��?s��iӦ�[�z�
YYYp9uuu�T�����+,,4MSY�x�0��|�+K�,��a�0"\��o�
O�2�LF����3�,%���Pg˖-�ƍK�Sz��77l�0o�<�
�977���p�`�����O����1��M��Z��4
Kh>�4��L��D�`�&CHr&��}0zN�b�LG[Mp�0����kZc[���U�F���:���Lh�5=�L����d�P�3{D�@�����BS�K���8����h$�#K
3����l"d�~���T��KMA(tB�r�=��˘.I�i�*QO?�X�
P	���"���J$ .<nWSif�
Ȫ�ֽ�{ogkh�*��_ڌP���'��e�x_!6
�Φ���iʸVUֹ��%���ϰ?�T��l��T|�L�s^| ��47��m�g�5�i���o�vggg{{�:VI1ϯ�H$�x�	��o��ֵkׂ4�裏B�z�I^
X~
`��:T��5����eA�qT9T����y5�&�Y@�pK�����f��e�&���&� ��k_��W�i$Q�pQ�4$W<8�F��L&a�P
�Q�C@o0.�СC�=�ܴiӮ����/���v�
(QӃ�ӧO�caaa�����V��PPTt��f/܉���a��*#2";�[J��L�R*�˥����q��ҟ��N2Q�++�a#0j%�>X6�a��/?΁�E�Ir�7T|bM�L�N��&�΁adJ<�ǿyo��eDB�r3���v=�����K������k��^e&�aH���1���n�,˔�qd@M��-7|!3m�¹�Jtt�
&?�{�G� >���x������
�hW-�R���S~b*܌���x�g޳y}��J�����Hη����.�l���r���O_�~v����u�����{D�~��$�mh���;'w���Mx?���kh5��j��ω���n28���ر�,#� .
�p��,ɇ�a�_��ɓ'	��*�cz��_�#��Iii�:H������&�1�i{{��A�T�``2��x�vʠbR���O�OU�V�h2�3&L�p���������WD~ʂ 'b�����b>��<
�z�WC��4mKSnR������3�:�r�<��Z{P{�{^�q��	��6	'Wjk�0�6�VȒV�}��5L�d2�S
q�I�&�r��1���0�aٖ+�4��0�k:���u�fAW:�� ���2dHee%lЫ��>�999*ih����[n�岨�Fi�	�2��ZÂ�Em�2BaS`��\�.���<`�a��J��vO��@5�ٯ�t��2�"m<������@FqV�ΩÃ�� @3�1��8�"7��;{O��Kb*��U��A~���uhgt}�f��BcZ ���Pߥ�l/���
#e���\?v� � HA�6�e�?�LrrrT���uQA\6��;Zl[�Cf�e2=� �3f���}.L]�n��!�?�L���*�̏�n��*��uy�\�\���_]�u&]�kƐ4��&�n�.��~����cX
�.4Υa-S97����)
2dB��� (G�ӕ�5,TQ��@�N�2��2AA�2� � �OJ�{N����ma�M��"���a���M��(�c�NC�R���4�.5���qHm�����;��0O%M�Ę����0�ݱ@Z?`@K�I/L��}�h�@h���t@��a!��p�L��=�P�09��t��-�'���F�L� ��A�6��ӧO�<A��ʈv4�u/�$bn c�,o�ip�40$��B�Y2���)�ir�;x�Tc����^��:�"�����T�F?�3�,�BO�N�	����1ڨ@/*�1F��Q�X�*���@<��rں�.s,�GÑ�mZ,eV$J�5AA�� ��=z��߾�;"��F�A|RpΓ�d{"�s#�r]_�J�	�13�n`'+���P�5CQ�B�h�h�r�sR)�^��2t$ׅ�P� ��c`���˥�ltѹn��h^��^=�C��~��h��]��d��	��'�D��﬙ǔ�������m�g
#D�N� ��A��J��;V\\��Slݺ���4�>���&L1b�&��)�馦&xZPP�Q�A���k~�5�;�nqM�*�G�6�:�8zP$�p\��,�3½ib�5+b5~�J������]	�XVضu��!�40�&3�b~!���
nab�$;
�e��WȜn��F�3\5�ƨ�d�Pf��v�c�E��aV�v�\�y*�xaۄC��%� HAĕLGG�ѣGW�Z�������D"q�ԩ9s��ܹs���TJ�G@9�8p l�_��!C��7����GbN� �K���Č��p�0�&�"2l�e0ɘ��*Q7�)c<Ȱ�P��f0�Y����#/�ˌ��oL�B&���LÄnuK�[�@ס{��5�Đ�a�C�
���W�������T�៌%!�4�+���Bf��/t#��0^�{\&��A)#�����v�����1b��ɓU��#G���斗�����;�H@��۷o۶mܸq�H���Pa͚5���zQQ��ѣ+++�J� �ˠ�0�����m$=�;)��9���Z`���a�x�&H����5��?0tt�`�&
�93�!�A��l;7'[p�A&�d����*AZG��>��-�{
�Q[��C���c%܃1N�Z�q�4�VB�At;d��e�&E�;��#�Ak&AA�� �HZ[[_z�%۶|�C��B�qjjj*++#�ȼy���{�u׍9r�ڵ#F��җ�������u�]���/����XQQA�� >:�ad�úd</+$�D2��0P��b"p�L�~&�¶�3��0�E��
(�]��.����4g@e��N`RM<�r��,����5P5�eE-P�d��֐��M�����a@��)0=�d2����:V���6����z��A)#��B)..~�����o�[�nƌlii������k��'	�@�����z���ڵk�m����կ0@�qA|t�%��,��,�S��D<�b��!|?H$<@��i���X�L�sh\G�	M����}顁��ٴ��o��y����2o��%�M�7�<84�L20_����+ߧ7�Du����a
F$
a��h�D�F���0}�k��{���S6
� ��A\�X�UQQѧO�ѣGo޼�w���<P[[�������I�g���ݻ
��<O5ܾ}��]��O�>p���\��A\F2z���tr�\���ȍD�!]0����t��Й�Lv67�l�>**t��n:�58&�����C:`�P�k�nP/�%*p\�����.6�2���jTfh�z@�3!C��opMx&��afX�Хa�p�#֢�WO�W� � eAW:�aϝ;wƌ�okk?~|ײh����{�7v��1j�(˲�f^TWW�S�[I�ǁ�X��Ǐonn�m�-3gZ�ii��y�:���|�0_��	�a�ICm�ɂ���SG7
����>`�ے�f#BHm�p��;�)zkHU��{�|:4�4r,�k�����`2���n�i��p\D–�M��7�H��� ɠW� � eA������7�tS��#$=*�SA+yeG���cK�%cVv�nھ�:;�-�D��|t���j�d��$��Ӹ��R�
�����4v����2@�ʓ���B�>��A��I#pBF���K���)�8B�MSF�3�a<�p'��2�s�h�r]����5��^_� ��A�-��� �O�UcNo\k;�.�\���T<֑r|�0�0d�N-�/���:i��zf(k�:�)6�Y�+M��@)���:��
B�к��z�ޓ��a�r��8B��DC�.G�J�p`�]v�Mi��
\���x,w���z�,�)#� HAA񩄙V���y�q��P(��Y"����0�[`�TH큦�4s�u}5κY����P��5t�ǀ���L\A�&߀�!0>��۶��PȶM�2�a1�K�m<���z �'�h�`��>^�lzq	� RFAA|J);%��l�����1?��`��/�;�z@�q�i.8�b��,��Cyd�6A%�Zp6"�T@�Ƣ+Af��Sm�U�>��#�!14�@?��x��a0۶tðQ1a�a�6�&ӹT�X���3sr���{��z�AA�2� �+�4���� ��v=�6|ߗ���{A|�;3�.�4����9z��ͧO�hks�1�|?���6-�D�)L�M��1�|A�`�&jp3
�y�B����96@
��Ɍ����B���#>GC��SƏ0�4�@-�L>�2�������hvNnq�HNA8';3����&MAA�� �t��ߟ��UZZ�Av��y���o����aٲe�Phƌt	��X�;�N���3
KF^w#��Iy��F
"0tf�.�P�6�@c�؁k������2�v�����|B�%T�OMt;��LZW��A �C��Ai/4�W&�i�:Lɲ
;?�6l�e�GA�� �
��ŋϞ=;�ž://�:'N�صk�ܹs�+#���MHA�Ǎ�&���x2�
<P�
])95|L�)��9]	8UP�ѳ��&c�_p�KU!d?940��Y�i�I	]�d2���۪[ZS^Oa�.�EW&P�']9x�t'��g�p4#��E�e%� HAĕE<_�reIIɘ1c�i]]]NN���.]�H$�nU���3[��𘙙i�&fdd0�͖��moo���2<���`ҤI��� ����A�Jv��$�	XXL�`�u�ǁ)E��J	�r^�䚘�B������YB*���Ï�4�2a�	�=.Sc0��6B�7P]!�NM�9P1���d�NK;�D�s���0�iMtvd�d�0�VH� ��A\8��z��͛7gggWUUi2�������lٲd��#�ȤI��z���N8;cƌѣG�������̙3����;JJJ��?~�&�I�4o��Ɗ������˗oڴ�ꫯ�0aB(D����D8��;�m�L�¼B����^�q��z����5kHs�Ѕ�Ӯĝ2�$�~g�x����d5�z2N%VPm5�w):��Q�P�
yɠ����9t�TZP��d�6)#� RFħ�sѽ.:З��O{��P���s,� �}��-[�/X��w��P� �8q"\��a�Ǚ0a�a�F�*,,ܵk��ŋG�a��Ç�O�>{���˗����=��@Ͽ��o
w����K/}�ߨ���ׯ��7lذjժ9s�;�B]q	����?�5Zi�r�"W�Dtk��rqѽ����ר{��l]%���^\� ���e����AW�1�!��E=vwg��w�v�.V�"Z:���E�mq�P�@�B���>�w���������ӧ*M\���-�*..������D��x{{��]��~gg��y��VWWO�6�4�k������SJ�N����۴iS[[[SSS}}��A����***��={`��#G�2� �K3[�څ�]���w���m���A�3� RF����?|��HskSgҕi��˵M�#~^ɹ3"�5?��8O�!�w�\��f����sj
�{�;v�Z�jӦM���W]u�i����6l�RL���5/��ҙ3g,X��ظx�b
]�YGGG*���̄G��S��N�1''���������������~˖-���P��_��� � � RF�.x��3ێַƒ2�n0F��2"��O���a��'�y�����m���V�$�ׯ߸qc~~~(joo9r�:����z��ݻw{�����Ŏ=�J����cǖ,YRRR�u��!C�8�cF^^^UUUKKKEEEkkk$���Occ�ܹs�N�^� � ��Ht�u/���+r嗞.I����$�ωG��$��+F����Y��2T�&�{7v+����%�V�uA�ˠ(t���C'7:	7�`d��1+#�*#��9.V�eD�S�/�2B��e�5!��Y��Iy���ܜ��ouKQ�1ӃU�СC�㨜�̲�~��H$2bĈ�۷'�޽{��YYY�����֖J��=���3iҤp8��~8;`�h�m۶��挌��Ç���&�I�޷�|�N74}��1�pt:�/�Ř�3�kb�2}�|�.��?�>ž�_Z��0�QJHI�gW)l]�%�0��9����p5e]G���2�m�"���w�������ҕ��£�q����]��Ά
�&מ��n��e�g%�����=��/��@�B2���KI�݆�{�~_�sbp��i݄��颻�V���_J�&�Z?/*�л��2rZb�"�� ����@C��#�d�.�D�
c�px����8ddd\{� ����ӧA�>[*����y��ԩS��'MAAA\�� .���m<x"�餉 >k+݅��eg�9.o�C�PR|J� � �����?q�ll��\�DAAARF��V�	AAA�G�����OR
O� � � �C��bq}RE�R:�b�
�AA�Y��A|�B����� X�fM*��`�t5� � � >=�2� ��B����+W.]��sLu������0y�d��\�mkk���XN��%K��_�
��AAħJ�I�g�ӧO�ڵk�Ν�iN�:U��\�~}߾}����n�ZSS�9omm5��[o-+++,,\�z��M�����O�6AAğ�� �3�|ݺuO<���ÇgΜ����cƌ�r�q���7q�D8nhhؾ};��v�m���^z������[߂ǚ�����'PAP V� � ��SC�� >��)��<�0e�I�������2\��={�ȑ#��7��������P_�uh��AAA�)��t������#�Bp�wc�ƍ������y�w�}��Y�f�=z���ӦMK�<�ǣ��#G�iff�ƍ�{�=(�2eʐ!C����fAAğRF#\�̐=aPYyA矐m�m��SM��=b���3rss'O�<f̘]�v����ܹSQQQѵ��fmm�/�{��;wn(jmm�3gNUU�
$� � �O	�� >^�3á��'*�m��|^�u=�N�0����?{�쬬,u��I�&�1���a����?�w|VǕ����{� ��݀�`���7b'N�l��dw��fS���O6�)^;v��q�cbl0�w�DG��P�>��>��A 0��/X��ܙ3g�̝{~�ΝK�y��h�@ ��
��]8�N��E��Q��n�;�F�y�€L� GTp��,���aРA�?-��j1b�ȑ#�8�@ ����+�z]EC끋�^��Nl$���><9&:8P�GRRRxx���0%,%�@ |�!�A?�fw����04)���|������S�>.=��Nw�B�E���ÝN�D"�@ ��?$!�'T5��44M���e�28�dԟ.��;?���	ӳҼ�FXhniMLh@�,������K� �@ �0�	����WV�}��f�����O�1��ۊG�2�q���2���ʃebg�unj�yKr���;;;<�(���K���)��
�@ �
	F�k�t��3%5G
+n����a�1�ۋG8ub§g�z
�)��)*���^�D_�,˱c�Ν;��<x�`QQ�m�b��O:��gbvv�&��EAA�[o�uq�
6�Y��6��@ �/.C�
z���p-��)(��]���ɓ&�R<�y����9��M&������_(1���q܉g�v��b���d��z%�۩��G��=�g<��Y���?���~�*��N�����Ԅ��
:ݵ+���4^�Q<�MMM��V�}��?�~vuum߾=??���UVVn۶M�hGGG7�m�X�v��nRLG�n)8���B~��I
�kn(���7Eq��,s�@ ��g����x��K�:�~|Z?G��5uv���[�7����7 6l€D�{ę��C�v��p'�́n^������P�u�6��7�շ$��J����z�T7��7U6�܍���u��E�U�^��W��BG�\�`��P����&S|Hb��H�B���m�
���%�ٝ��o��v�#������h�k�����A��sIp�8(�k*���0s��O��ޮs��Lz�}�����w����SO566z{{���TTT0 66�7n�Ϝ9355U+��6)�������t�R\\\rr2�p㼼<��>t�P???��~�С������S�f��<y�YYY�a<b���9���.\�DN����8s��� @@)��gHH���ȤQ�lhh��������ZRR�������D���Q�LY4�Z���.�M�n�g�6774(""BEUh/�ڇQiݹs�h��J���DaH6���P]]�m�6�~�k_Ò4�������'$$�!''�6N�>��,^[[�s�����K�R������d��@ �`�@p��v��(�08t�&
��#��y�57}"�wE"�g
IW��tI���2��~G"T0%35*(�d���79"8!"x��_/���P�XCbDpVbt����z4��N�5^�p����r�����ک����N�+h���K���\}��oJT���K!V��Ly�;l��8g��/
��S��颃��D�=[T����mJ��2bu�Qw_�"�!$|׮]�Q�F�3F��oݺ5??_� 6o��/@�gϞ}��>�?c�ō{��L&H��u�bbb8��C���}��`���~��"##�	O�gMM
�y��Ū.*��/X�`�ĉ}���;��w�	���7n�ԩ�����?����ƪ��9s�<����_�rVV������ϓ��w�������B�
<�R7n|��~�atx��CCC�v;:���K0�7�x#<<�KKK�-[F-���'�����Ǐ��_���]�vmJJ

INN�\��������-**���èuuu˗/���/��(j�UVV��=##�6R/�:�)�Ͷi�&�F����l�B���cto4K��XPP����裏b.t۳g
�Ƥ�d��@ �`�@p���;�G/U�Ƒ)1�&㴬Th�ٲZ�
��9 &l�0׎���\y�R���D"�����C\��V��އ����������gw8�tF���n��3�}�'H,�oi3[\L��0��Z��e�������+.8H�~#��l
��I)�i괒A�i��v�)���e��^�p�U�Z����6�����[�So��;�l��F���?"5v��dP5-"eC��O�r?��S��E���ښ���6�:���k����󄄄���Κ5kժU?��ϖ,Y2e�5�<�<.��fH>�;$$�ރ�C���+W�ܶm�ҥK]o��g�y��l����?~��������>|x{;}ninn��SWjjj`�կ�lذ�w�wW賳�a����テk׮���G
�YyZ[[u�$Ґ��P�'�|2v�ؽ{�&%%-^��l���5kP�Jy�ѣG�377WF�:u��ɓ?����º�����֭[G�F����>}����_z�%F���������v�a^^�U2�9��~ڴi4�T"F~��i�[�~=-ž3f����׿���	^y�'NP|ܸq�����*>d��[�V�>x�#�@ $!ܵx������R��1:-ޠ�O�J���U�|_�ځ.#6lΰ�팼��J�V۝z�~>l`B����ߚ-O�W4��zS���:͞��;?�>�2{؀o_/STp@K���kZ�Wf���:���h4��#><$�ߵ������3+!:6<��۫ӽ{ı�ʣ��6��3Ƅ��b����#^F�ѨW��WZ��|�B�s"Y[��ʹ�
����M�<*9�ڣ���W֜P�����җ��4�W�# �
*---..�÷���]o�8ÇW����Bڡ�~~~����ϟoll�����^�q:���		��̙3[ZZV�X��O½kjj ψ�kd[�_�6r85p�@�B�-��f�a�G��s�fee�⨭�ǡs��Т��'O�mQ�� J� �8===**��aÆ�^�������a̘1*C�;Pڟ���>���4Y3Z}}=�bbb8��K�:::����b���/\��qFFFXXyF����G��6n܈���}���xL��<8t�P��Y;�ϰaAAA�v�څ%���������e����ɓ'��HD
�k��Qj����%�@ �`�@p����bw)��N�
�2�f����{�#�NGFl��!�&�W<�k�\(1[lڎ	w�J0S#B������&���p�W��իW�q�]�l�e�o��<E�{{
O���78,�k����A��R�����\�����6ut�M�j��cQ����k�
����X^�ju���	��I�(EN`�k����y�=�z�ȑ���'N@�'N���s����
�����:t��Gy¬s/7�{�^]]
I��–���4k֬�ӧ����{��B)__ߊ��n�w���)�:�����j�
�>JN�4��[�n�����:u
n4���w��QUUz�ر�����N���#���N�����eee���puR���#""���Au�nO6d�܃5<��T�)))��������c�3g�`7j��iӦ577�߿������Ԉ%��[SS3`�M&������;x� 2dȼy�(B�<��ô����X8((�ܹs[�n�8�Ǐ�FuE���-[�,???;;�o�&�3g�ڵkG��x��͛7�.��@ 	Fw���ּ��Mi�a^F�̡��G
�U<��֣R�&LR�5�7�n<y�}#H�qoNi��*�Z�胪��-����z�]��Y��n�_]���C+��ù�
��ަ��@�ѐ��z�k!��d4d�F�ַ���(���z���n^}4����!Ψ��'�dF��\�]+5�lW�o���ء�=�PAA��
���W�nll�x�ҥ�m��SO=幕#�f͚E�W_}Nc�����srrv��E���á����+V�P�<�������y�
����P�"h�_��bY�j��Z�3f���>��������3f̔)SZZZ�~�mj���A 
�;��ɓ���Zll,��d2\��86n��������s�@�Q��7�D�.Z��A���Dg�
P��j�����~ɒ%؊V�!6l�ڽ��CXX
8p �X�p�G}�|�rt�`FFF���Fyyymm-?��׭[Gu6���g��EH�;w.�=>�;؍�����J~N�6�ԩS���MJJB��Z�@ �#�;��Є�ؐ���Ʀ�7wt�w��p��DŽj��	��_Qwg7a�ȹS���A�MFmʚ���E��/4p��l����ZW��a�i���k�
L6���-�"�z��1��c��WHB���h�ٚWZ�z�
��=��C�����O���������
0�'�x~NE�U������U��_�rMM
�8�
�xtt�+��u����իC`�)))H^�h�����g�ikk��Z����K�B�U����=z4����k�ַ��W;) �����.D �\���`�~mm��` �lv���_VB���QT�5kVff��l�8��n˖-kii�U�$ ���Z�(��テK�,�:�rm��nHpCE�V7�D��3��
�np��C��!��^W�@ H0B �[�-�DŽN�L�2�^�oh��3
32�|����Ɣ��)�����ή`?��Yi�����ۧ+n���t��
NEt}\�]�����nw��Heckm��m�|��O��ڝ$wY\��#�|]F���|e�(U��$E��w�󦠱����]��;�j���Ybs8,fW{��s˪�ۺ��h8:l�`_�c�l4�q��et$y{k߳�R����{~�np�)|��@�]"ƍ�e�����Wg^�)99�z� �V���� 7��������hLJJ�L�)�&���f�}��3  @n^^^ڇK�@ ��r$��H��3l��5�)�9XP:6-aTJ���q���q,>ފ��)��),(#ihb���i��[O�5ߑx�^�o�X:�6%�S#�ϕ�[�v�N�����E�\�Ҿ3���Q�B�|�%��ԗ7�yJ�;M]V�������+>4H�
�j���Р�}^�a�ڛ;�\�u�^z�u^�Зշ�;~�d4�#$�d�X�m�9˿2eă1��� �<LHH?~��BR��@ �#�;{jT��a �0�su��K�6[NaL{DR,\�r$��8SZs�bY�ź7��������={؀-���Z��;@��ʺ�P���Ƀ������aM]]��K���������iXRUO���X^�����(#6��p��hh�9I������V�k�C�bC��Cjt�υR���+��eĆ��_��nn�0[n�����<�}����5����@ 	FwV�}HBԌ!����^,?TX�ޓ�-?t����%.,��ۻ�b�hj-�k�:F��[s/��-���}}9hW^х�:�鳾d��s�u��A�"9�vu�Ū��:�Qo8RX�ЀĝyEZ��y#/sȣE�u���.�Z�7��o벸�
~��g����L)�!�����lj}�b�����9�돝�Xm6o'������@ ������7lvGf|�ÃST$����pQ���4��1ٮsV7*(۟_�߂���Y����Ң�&��#�S������7�8�J��/��x��������z%�����e�/�u:]*
M��J�v�=��lR���Z�,��2�z{uZm��j�ѐ�m��Ua��cW�:�ý����eϋ٭��loq
קC]g��3a�Xrssշ��ӹ��O?����릙Guuuss����y~>�>}�����0cCC�ɓ'�fs����qA,S^^~�l�7�ǎ�u�466�oy�T�MGE_������ZWW���sߙQ ��n@VF�;453U��QPU�=���z+�*Cֻ)�á�r�e��-(7B����
H�	�󙖕�n�T6��>۫���.�KU���^nQN��f���^FcY}�ʃg�z�͡��F�1���������i����v�ԃ�X���Dq9�f��b�_�h�s��o��Wo�
��G�tN���-��uE�M��ũs�wY<�O�8��������]�]c
,S���a�ףC���}7r�;w�8qbTTT����m޼�"�~������������ܸqP�M�6�����L>����U$�dddx~Iԓ�ߥ(���DYY�LLL�x��-[�,Y2p�k�4���`����ڪ��j���C������Դ���:��s�TTT|��dzgϾ��>v�}����������l߾=(((44�Jnj�w3��Q$�@p!+#����L�3l��D�4n?Shu�ޟ仗#�6j�zH��܋%u����=4=>,��t~F���:]���������n�X�(����IbKG��1�9.�ԷutX�Z�f[[�ei�f�P���.�;���Ӭ����������i�ڴD��:I�g����\ɝV�:��nvл7�h�pI���u9������sqq�aþ�/yy�����b7���K�.�9R(\��u7�c���]�vY�֞z~F��U�h����p�?>999??��644p�����B�������Y�fiͿ��oOTK1`�^3gee�=��ٳ=F}}�Z���ё��KΞ�����ޠ���Ϊ�*��ծ�.l�����
f�����9sf۶m��b�@ �7��A?���	�14=,��J$��ḽ'~2����>2|@RDhDP��!i��]��vU��R��n)�o�����ܝ����W��oخ��	��d���=r�oĈ~~~���P����������s�����DGG2���������x8�f�\PP���/�H�"��LJ��ŋ������#����H�������d��NKK��l=)��yyy�9n�8�ZEFF4�ۻ��)(������k0`:�<�PEjj*m������{�����5��3h-$9..�P��ˋl�PH�:��} =�ccc1BAA��ݻG�I۵�t��VpV�j�yss3v<x0B(�b��](	GCdrJ�#�����0�j�
�p�MCY�S��EȰaôO�z���@CCCxx8Jҏ�r���gdd(�i�ٳg��Һ#��Kzz:C�teM2�>|�!�t�RZ�z4|��݇1����tϞ=�w̘1T�AV-�u��!:}ٲe�5#*$$�8p�~EE�.]B�СC���ɓ999S�LA�n���t41��6j0B0�2�|fE �}
�O~�$�&<��go�z��Q�nE/���M��Z��ׄ��M���U��n��bI�15*,4�
��O�������V��1c��^������������e�k�(�n0~Q=�?6u:u���#�c>��o�'�N�Σ�ԕ0j4�z+z��Ǐ�Rτ�nذaݺu��?>;;��C,ٶo�e�lp��Ͱ8���
��B��E}!�u���}���r����ĥ�����f3$�ȑ#0�Q�FAY?��#���2dt�S��m۶A&9�ԦM�<�&�v킄�o�1I��X��ĉh��j���p��'���^�PhT���l�7<�=zt�����1kkk���~���A��=88�����>#`
T�9��=u�"�	

��755�9��7n<p�"�(��+W�Թס@�a�4|ժU��?���G���[oaa�PVV��~�B�?��C*2�L��&''oݺ��?F7������J(�Ui ����RSS���>���15Sc�����(�_�L�09T����E=t���7n�4�O~�1s�L�}���Ǐ�����K����J-���]]]�°�
tF�
'�@�)��#�`p*�?322PrǎhKY������9���/2�����by����>�	�7R�~�'o��S�mm��%�t�M���Ǩw}�X�Ӡ��AO��x��U�}_ <�\�yK���v��=�+��]}��ݧ�d�j�ƪ��>S�L֮��j����mf��*��ښ��9�_�+>��XS������{����<�u��3�輦+=���;�������_Y!�/��D8����u��
-6�Ѡ��ƍm�kr����(v~`#,N'wӇ~x�ܹ��5k�<��p������0��˗O�8�3�������3g�B�1��d
?��A�������y��q%�:u*N]'�ڵkSRR���ܻ��v�X�n��?�>0vc�--D��'���>��3��������������^{���������6�v��Ѿ����͐[hjVVx衇T�jkk_~����Ȟ���󱮯���й��/[�
}��iM�1c�`(Hxff&?i/!`�7~뭷`���7hŔ)SԺ	��������ްa�f̘��7�xc����c�+����1a„G}�c5±3U��G?��;�׿�uĈ�GZ���O��w��� 󞭫��ܹs�7���P;���ދ��x饗8���o�/(�gT��Q���#�o޼����STA��ʨ��������(HO=���Ǿp�U�c"�TUU������<��c�=ۍ�7����…Q�^����@BC-��2�.]Z�t�2#vѢE�\RR�(�0�d7��ك
��{����1N�t[�jUkk�w��]�joڴ�!�-T�@ >o�`��_a�ٻl�Q���F�y�~�i��ݏ���F����'+�!��I!�hv���"�ɝn�¡C�<�qqq�K��{
0F��ر�ԩS㰰���:�s�vE��n�p�Z������)~����*���ɦ^:��������lkk

R�g�c���>š�*MHW� �N7x4��0��0(�MT��s�(.F�	w+[QQ�{����rH��qゃ�ѹ��t„	X�CCCU��݈��ֹ_�@��>�v+���NNN֬
�ǶHV񠤤$2cR2+=�b���<t7|�cEG�Wg���\���J2
��n�c^4��#s��ᩩ���Q$���S��������L�����>5j�

�[����xȐ!dc8)�
w����%K�L�8�"���9s�O�ӌ3�
F�PF��{t%��H��[�n���]�x1B<{V{�����T/�`s���s	�@ H0B ��i��^��twt��d��PJȧ�Ҳ�g�u�ك�B_a��Fh*t��B0ϯ�랢<�������ȑ#iii½{�B��j�g��%��
�F>�mܸ��g��F�E��������- �۶m�5~A��7o޿?TJO��g�~��_%�j����\S�F�4��AAAeee����9w��ԩS��TA��-[@1H��CDz͚5���˖-��}"�?//�=|��رcQR��q��A�lmm��ə?>����j���#G��;nnڴ��������}��ь�,	?G��դ������h&p�رI�&Q�ӦM��S���ǩ������72t�7JTL���*22R�z�͛7y�d�Y�z5F�>}zmm-�Q�#�!7P�l638 ��/V����3f�?��ӛH[�pann.��i�󪗷oߎ�hBvv6�@������%
���a�ѣG��G.\��aʲ�@ �5d����G�ޞ~&SjTH���^�p?R�?睄K���m�({F\?rs?�5�:B�!`���F(|6Vo�C�᥅��T�&d����k�mMX�4�(�%��H"�����,x/t���2����E,u�ݻW����J��|����
=y�$<3--m۶mh�����O���w{���ر�СC


cƌ!�!��t�#Cee��.��ˋ<d&��(�qv�ޭv�D+�B�G��65hiiQ[0B�M&���ՕX��
���^__���4ՐK�.���r�ĉ={��:u��={6}A-��;���			(�o�>�~�����>��6m�ڌlBf��l���~;bĈn��#��-�#�ݶl�Bwp��c��$�v�څ��D�wƍ�%)����H�":���	S��"EšK���P�����=1ggΜ�v��v)��q„	4S0x�͛���h�X,(�
�g�}���?i�$TR{�v�o"�ȑ#�X�����3�wkz�=#�ྂ�q� {F��Ğz�;�tk�����r��y�c�ϗ[�Tzr��>�Ҋr��^�O��3�Sڵ=~%�;/R���i�'��}���rk����dL�S�v�#�f24�v�4
��Z	g�#g/y�=�j��g�v�364p᷽ٔ�DIu�c
�0���e2�R�bC}=Tͫ��J� ����
A��������ڰ�0�X@�v�ۭݾ~�z���/��������Tk���:��j)~KuT$����+h�vy@�������
5)�Ann��]���7T2̄��ܬ=�nll���"	j����h-4U�����A!�T�_O���|0~��Y�f��>0�O?�t��Ő�2��(�}Tc�w.�V�ZH>)�z�?��…�B=���D�Ϛ�}��c,v��1(�v7�������[h�BPe<ɹg'j�G+��[���+V���g�y�g�9�1�}t�Fі��8�ˠ�JiS��qF����Q�y]�nk���]�{��=�����h�g�3q���6���`0�
��F�bѝF�'���-�G��n����*�o���7�-N�Yg4x���ס�/�Ã��li�+pH�����w�F\�<��������b@]o������n0���5�M7�y�pz�n��ѸܕN��V�UZ���{ppW�U�.X
�2\���
Ng���y�F"7��+a�
v4����}g���ӧC��:��w��h4>�)S���շ*4����ڱ��
��M=jԶfT�a(��\{��v%��B$PJqTž|||�q��=MO�����"33R���sou����dv����‚��
1�ONx���<;T�7A�<��c.�R�����5��Vz?^�ܳE��"�[������(
tCf�@ [���2������۹�z����=���3g�������ྃ�����,+#�de�NVF��sncÇ;�@ <a��N���"���1��f�X,=3�X������@ ����+jkkw�������v������oF�3���WVVv�l�������qj�t�ҡC�z-�p8���[SSCK{�����B��A���ʛf�
�]]$8�N��?�؃���\ڇ��r�������.Qx�@��@�O������O��ں9��懙�\������k�aÆ����ܵkWAA��G�����۷o�����j7>�䓻G�q�0�r|�gժU7Ώ����`������*�:���pu��:���m�<S�����wo�X��JJJ������s��1�)��������J���f13�2�x���ݻ>����)��gϞE��).\سgϑ#G���<s�q́ܒ�����S�N�߿����z�.]R�Y�iL�(vg)�ƍ����Q����[[�t�ѣG���n��k��?ܲe����ܼy3f�L��肃zڙn���&i*���~߾}���w�NB`A�@����}����3&
__�n��g��_~�����fϞ�I�{��i��Pn��{������>�H������>}����Z���OFDD466��̃�����>P�NKK�U~��#���K��W��^P��9y�$Luɒ%�}�ٗ)�̈́�<v�Ӆv������+��t��<v}�С���^�nhkk{�װ*3��C&��������555�f��7����]�b��ի�����_2;a�7�|�.�8��w����s	���y�ر?�я�h03���b!�w��݁��a���p��ԩS����Ǐ�����xLh4!&&��7�x~�0g�w���������b6����bcc}nq3u���Ç)���I�.t�)
��a��5q��{���Ο?�H���4lܸ����k�g[�9��Ci_�Z�j]F�������}�k��k^�u��J333������S�e˖M�0�/��Űa�d�$!���˫Eg;��o�^YY	Ӟ={6��^���ƃ/..�`ƌ��x��O���$O}}=�	322�M���<<�B}��p4'O���-=��ٳ��'�����S�&M«C�9spIO�:�>q�L��d���UŁ�"7��GA1|�8�D�N�Ͻ{���� ��G��'u�?�R\j�'
2���wܸq=�J���o޼�l��� �ACp�)�u�VN%''�(�j���0~���C�*R�A
4e�tC
\:�VWWw���1c�`y�mmm��s��MLL����O?�4�vcP�/��.]��d�@�u��*��>�����O�}p�o�̊��S�w+<7�q��EZI��v�.���f\AL)��?(�&x2ӗ*Bq�����
mku55��HS��S�n��-�>i��վ��U0�k���x��%g�a�gΜa���r��5h���6mB�Z@Gff`�����.���Lڊ�Ce��QI�	��1�A_��z�-��P�-[�:Us��o��4�>f3nCL����W͡��`�'�:�:j��g�}\��H���g�5��TH�G�'�|�x�bnU�JHS=E)�Շ���O��U����V�>U�݄P��e��NuF�G����ؖ��jH7�Y����pCY�h��_��*T�~�zn����L�����e<��?��O�|�Mz����_��_n�+��@����� ���v���e͚5���3g����}������y�f�;wnҤI�O�~�w��"""\�
��<C��IY<\LRSS��d~ꩧp��}�]�P����	!eŊ��w�K��҂�gC:Ep�(�3��/��?~���q����?���P����o����ƍ�7���{��H=��p{<W|A���˗�!gqgqL�|�I4��#�<B�i ~�a��1dȐ��F���}���i�͛��o�O37l�Q���S�N-))!gvv6mA<cT����_�:}�t�m�6$���SRRp��c�ڂ�a>�?�<�`��}�{�,�K�L���ɓ��3f��ѣi�p���Çӄ��?--���G�bO��_�ܿ?���ĉ.#_���3\��C�rrr���^�L��\�\�\J�3���\�v-�rQQ�s�=�\�bʂ?ø�̙Õ˥����g�zd�z�� ��:.I�2	���=���\��m����ٳ���uϞ=�f�"��1�)�8Ŕ8~�xf��$̼�(.5����۷�9��Es��;v�6eUUU1�00o<���yf����K_��G7�!3�9DQ�TZ��y�S000�3�fC�a�g.ņH>v�XBB��;�@ee%�ϰa�02�"���̣^�����R���|��	şi/r�����9�����d�[�n���2�"S/Y����\�H7���"�;ʐ�3R�e�� ��r7�t5��V���)P�M�<��P��;~�8���d���G�
�}饗�{�
`jz�)�{?$��QQQ4\[R�H�N�^������Z��…1�9t��u�V�8e�jd��dn���h&���0*����q���Oh/52\ղ~��b�2�)�Xb�`m��`ƶ!!!����r�Jn��b�\�h--q�r;S+��粢��Ɉ�,4#��g���|z���@p�!a?A_�.F�+�o���-F�����w�^W�,2/Ƌ?+�˙6mnd���%�X��ý�C��EF >%N�Vn�q�ȃ?�vy���R)B�(C� \"|,�0|�3f��8p�RxrP�	&����444��Y�⣰z򆇄oD�O��N�¹D�y��QϒJq�PU�~/Cѕ^[�>|^�ǧWO�T)�0�E�Q<0Z�s�N�P�E,0}�t�.�M�������ʷS5*�lРA8�8�67P��h5�W�0u��_�
,@ ���aMj
�
���5D�Ƴg�"�5�x�	2���7�SC x0��b\J�V�9r��!KP�?���p���kޫS0�q����=��C\�j�W�l�9��*���"D�7j��?��i�I�2Kg���^�|9T��O�>���U<��S\�T�2T���������2�~��Lhdf�f�a#�6�R����/�Q�*`�L�hH-0gj|��#"" ���Ѵ��j
��e˖q;@&�0H��%�4�����L����j�Š+h�W��
*S0��9~뭷�lْ���U�۱l�. �Z��m����n��;���{؟I[�m�lI-�v�(��	p/�C��_QE�[6�)���t�t�@��~���R���%-]��ٛ1�%1�%�?��k׮�3v�X4�#0)
p�=��d�XN�<��.۴i�qO�jk��6�03s?��k�41�s��.Y^^Ψ��X��dz?w��ʕ+�50$PsQ/�$c(:mɌ�e����2 c�QA/�3�.\طo��
���4��Q�]F-�9~��
�t�$w.��7����ի�$`|Z��y~~~W�g1/.\�F�СC*\G��[��$FŅ���/)
�w�չ�5Q<K�"��6Tգ'��e�d��<s�ڠ��ӯ��x.����ׯG8n��
���e�[�}��Soh���#N[��>�y�RO �n(�I� S�M6h?>�l׍<�R�f�bZm���"z�UK-�V���i��u#//��b(�T�*d@Yڮ��U�mަ�b:d ����N�C�����~K�+c����cƌQ�h��N�5��� �����~���ʰ<�ӚZ|�]��!<|�ȑ#0:����Ւ	�K	ҥ���
��͠�\t�LP��ɓ'3�@���	=ztee��Ç��-ȇ��Z�111ӧO�R��SO=��9s&��V�{W�*\�Hc�{��`�\��cf�'N��鋲̍�0L���KKK�g�U`�^�B�,X���<a��@EL*��?)eҠ"�!�M���J�d�X����$>�F��P�}Ɯ����BN�۶mC�-T�Ʉ�>�|�Ihh���^�-䁥����/�X�,6�cc�o|��ƍÒ���G�)S�丁�֬YC�����ܹ�H��H��ʢ�t�z׃n����ַ��$���/���ҕd�&H(--]�h��~	;u�6���O<A��1"%%EE�1#�4j�($�"x8�&X�4�&P���
si�B8�رc�Jyn�na?
�
��"�|υ0�ԩSi>��*诳g�2BP�P����0�I�RSS�*dC��*9��Nݾ�`��z����[bb"fa��'�\�Rt�=�hC�_��_^y�lEG��ڷ���:u�c����;C���6���7o�<|~K �`�@��h�6852��.�A��vŊ�v�RO�p��pIW�\���|�r(=���;v�ѩ����S�1U��%��5�sR������]���"7H�@�7n܈@�!~nڴ	ǔSs��ٰa�֭[9��[�v�P�����z�-�\�i�,�N��8�-88��(���)P��3;;�f��u���hr���_��ƑR+��+�����D8)І���oٲ�w�ލ�x~�ݤ���C��bpJ�s��yֈX͋��·���VMF�'�|W�ߎ�ǽV[��.&<����(���:% �}��@�@�:�x겂/����,Y����wT�.��ĄC��/��FT!N=��3�̚5kٲeHx��7���"���}Aw����J�\����r�+	d���e̍hod�⬚����U��Z3��YEC��hH`vR��
dVd�й���D��u3�>���Ԃzݾ���<~�x������%�Cz���=�L�b̓������liiiTWXX�0Rl��Ryh ����>�SHH�׾�5�.��RoF ;`���L�Y�棏>�Jܹh�������u��J�~<�↶*Mu��mwF*�>�,��
R��s$���Uw�����Q^�0G��Z���J瞲j�*Z�D�-��͂��=��3jM��}��>T���B
c�XqSMSW�˔�$��O�Ç���/��n��@ݘT���(�_��1�}���V/k0~��m�Ի!�^�\n�F���?��ϸָ3������6	��@�wDL�L�z���lŻ��
�Q�\=GA�
���|����D|�s��v�<�lϞ=��2�|N!d޼y��d~�G�+6s�L�V���K��ڵV�G����
o����D�4�m���z����R/����x���M�]Cr^^^FFD=..�D������2&&&���s?��<y�z�y�ĉ


4W	���*��i�޾};�Q=���g���8�H>x� ��c�=��
W߶@=ƳW˭��i�2N5*; Ȑ!jg
�X�E$/X�@�k�{Fp"��p�G�ܫt�Ccq��#|Pz
���.T�g�/�C����?fee������-_��I@��s����SVV��]���\�~�!׾��*]��B��J�6��z�VFp���?��!�x�	.�+V0����FDD@�(�U���$lm�R�u׮]�O�ccc#S���Ç���3Y�+�2��
�j��k��W�fnimme�a��!�	S
���>ʜCc��?1{4��&��d޽{7���y�������k̙��$O6&�1c�0�0A��%���Q儦2r��4�����L6���MԼM����T//`:jD�72�c=z�����Y����
����K/���o�M~�,���
�:::� &Lu��8݀�A+�;m�4���ŋj7��JꅾO?����B-���$"|�޽g‡�sQ[q�a��w��������j坶�P�U-�:N�@]]��R��U�)66�tߋ/�H]���o�����W����c���V�***��N����6u�T��3��}�J9V�����3�KF-2��\}ikÆ
��C�%I�FC[~��#�A>e�� �����D�\b?�����/}��}�J \�gz�o�!^�z�h��Q?�s슃�?#�Թ9�@�w�^�����җ�^M�v%��L���9�/*[�UT4��՛N1���z�4����_��z���q^{������La�ݝ��T���2]+`M�=�.�{|C}�k��[�hn%ކZ~�9��j�i��=�ۭy����9��
P��w:�(*�^I�<����k���xW�T�{�UT�U������C0<*�`�S�c�v�jZ=b�|~��<JUJm�ϱ�8U՚ž˰a ��^�<
;(#h5��kjh+]��^;�<��00�W_}��W^��V+l媿�@��TUEFG_���$��l5�mN���`����=�W.7��ГQ�>pŵ�S�mp���0����'&&�9D=??���	���Ɂ��Ǎ�KWӁ �d���Q�Г'OB���*WUU��H�lRR�60m�KKK�VI�sss

 ��I���J�ϥJհ2�����0p.|&�������"��^��A�y�L͞��˃��i����!����EN4����4��<�_�9��P����C��̹s��6��d20����1)�����3g�477C����(8v�Xj�xɣ���c�`��		��GjA��6��>(p��	��4jȐ!i�5ju1���J���%c�NEZ�P��2B�G1&�@���h�c~��
U`iX����&MB���l2���3f�K~J��2228�)�}K��M�
�1y</
ڈb)))����75u�O��OYeffR�ʠ�Z�B�Q��ZRR�����G�$�R��P�V_Q�&hHu����t�"
���	�}GmB�����e4t�5u�Tm�jZ]^^�v����O�!>�?���^������3.�3�lj�|�4�]�Ls��<z��*��kTO;�_�؍<ޑ�@?���M���&��ky��Fy8�Z��W�Xϛ������+��	z�K1Y����O_S�*
��M�A�=�&9݊�5�q�+�JI�ꫴZ�����ݝ$�	F�NG;�e
-Eu
u��M�w�"�:�{#�^���˟���8�QA��
���8�o���K/�������B#4m��=�8�פ�ږ���S�����Y����/]�4++���[��@�z�(�.}��s(ֳ�
�\�t�?7w�!}���r�����`��<!�in��I�!�S�����Sw���Յ�����W���@y�Fpo�������o���O�#T}!Z7���ԍ�5�L111�6��%M�^�-%����'�ۦ˷T�
��T��R},�Yz�3~�@�y�#��W��g�Z%8�=�Z�pm0�q�`���:���"�f������Zp+�/���>��3�o
�@�Y ��@ �M`4վ��@ �ȧ=�@ �%�fsKK��j���-�}	F�@ �38�m۶��?,++;{��~���Z��&��z����ܹ���X:B �	F�@ �;W�`��ꪨ���l---555���w�Ƣ��5k����r|���_��Ww;�!AOȞ�@ �������>>>v���ۛ�C�}��շ3���Ν;g2�ccc�NgAAE������H�`JJJXX�/]�d49���R^^���JbEEExx�
=<���}�ƍ�ׯ���?>�Q�`��S�@ �`�@ ��������eee������>>>&�)''�7�x�W��������f��?���[�f���78���W���o���p��|'%%��W_�����Oz���_����_������GGG������}��ߎ��8p���ڵk333%!�{���@ �+�N�


��կ��?�CLL��j���M
����?~|�С��7,XPTT�bŊ	&��'?��~��666��?�guu��ի)Eq�p`�ۻ�������w���;v$&&Ι3�,Y���������NA��@ �3de�@ A��_VV=a„���)S����;�N�����e����ӗ,Y�o߾�Ǐ/^���ϯ���l�ֹ��())0`��ѣ�If~��fooo�ɤ��^op#++k���)))�����Trrr@@@BB³�>;t�P��@ �3de�@ A����+))���&;;�̙3;w�T߶p8V��n��s„	��������CCC���v�ڕ��w��	�����?�ȑ#���x�bjj����^�/++;u�Աc�,��j��
d�l6�
�uuu��f���:;;�S�@�ϐ��@ ���'�ٳ�w�	

5�L!!!z�����__ߢ��W_}588�b��sРAO?��ʕ+O�<i4�����{�7~��_Y�֤��'�|���gԨQ�W�~��"""�������E����H�`�d@b���6m�8v�X��@ �'����8׿,Z��LQ?�����9v��u��+�cTyg�^.ʁ��*}���$OiWr�������||dp���."����w!-���~�r:�缜Y�p�׫�^�Tu:�'x.5/��x+���:7�ׇ��{y{K����k��"�����/��l5�mN���`���Q��Wݕ?��]]]6�M�=n	�}�~�gcccII���ODDDSSSrr��l���������+++���
8p����ŋ)�n�����ͤ�mJJJhh(iuQQ9ccc������1EEEEtttHH��~���R����!�"qqqT$#\ x��K������o�X���h�L�\������:tQ3��IVˣ� }�":�F����������*[��)n����^m����5[���ajǕ���wŀ=�B��RL֣j}��ה�J�=u�y�w��N�Z)���J�RR��*����=8�+�*cw'I0B�	FH0B H0����@ �	F|���g�@ �@ �~�#�@ �@ �+$!�@ ��_!��@ �@ �
	F�@ �@ �WH0B �@ A�B���A��@ _L��������������}{߾�����I�@�!��@��0�L����Y�!�Gp�t��F�QL!��3B����������'��@ ���=#�@ �@ �+$!�@ ��_!��@ �@ �
	F�@ �@ �WH0B �@ A�B��@ �@ ���@ �@Я0�	�9:::,�^�S|���q�r�t^����t�tzw��S��t�ϝ�>�t�F�������.#N ���t��f��α�h���6���í=X�R��D�[*UVV���<t�P-��pX�Voo�:0�y�ĉA�ߴ���������,�D>o���@ �`����.΍V����`��J0B��`��J0B�@ �s����X�B�y�x��I�|||�X���n���ӧO�����c$��?������G.P���gϞ�F���-[-Z�7��{�}�;��K0�Z��ݛ���p8>��ә3g&&&�h	F�
��;�G%��.�&��k��
�SN�ө�WJ8�z��^�����{�������ŋ�_���O<�D�
EEE�Ν[�`A���>֛����̻w�6lX||��h�(�uINN���
Ҩ>.p 2����y���q���P	F���A\r�a0�ym0�y�`���G����s���������:t�ر���/���9hkk۱cGKKKbb�)SL&Sqqq]]]uuuSSӌ3���ΧN�Z[[�r�����.r!�����������$VTT��秥�M�<�O����V��СCEEE			?���bٻwocc#��9�lv�������ɓ'�͛GJGG��͛������DEE�^__�o�>Β8n�8-��v����$]k2�>|�̃
"3�8z��ŋǘ1c�]���z��w4���L��@ �~�ͦ�cbbJKK����y���򔔔�{��Y��b�;vl���������j��1bҤIpx�:��Ξ=���o�����mnnnPP��ի>�ُ?������ɓ��Ȩ��jmmݶm�ŋ���KJJP@�A�&��.\@ێ� Ouu5�:;;���ֆ����Zs����}���|d=z�����˫��i�ʕ�MKK۹s'�ҹ_�������@2ou3�@ H0B �@p�p����_PPPQQ�lٲ�S�>��S�jmm��GGGO�>}ɒ%���???oo襤����8p��ف��Z�#**j֬Y�X,ӦM{�����g0�ʃ��4w�������κ����J��8�F��ѣ���H:t(r���y�Pk.����Gll�Z@�t(..�t��/�0y��'�|288��455%&&R#�n۶M��O�4�c���@�U0�t��d��@ H�k�@ ���d�쉝={���>%%������OE`��q��B��� ����)Ү�Y�a�!!!����>���TQH��q�ȰgϞ�7����O=�Tvv��͛��/���j�Q�c���ч�6�M�i6�)�cǎO?��*^y��
V{{;���8���T[WR��]�x	�2����/�K\\yT��r�D�3g�.�D ���@ ���߮��=s�Lnn�֭[�}�ݩS����'&&��w��u��%>|>((���گs�:���Bpx(}qq��jU)p~���:�����z�B�)//���<�L[[Dž��III���GNSS�ԠHAAA]]�&�n�wvv:�@�ϟ?���5w����҆�Ui�]�ni����y��U�}_W[�,�{�;v��$@�P�--��S(oo�>�=��@�HB�"˙N�8q��%Y����}-;	��	��'��s���ֽ��s�mh@ƀ�??����9s�$&&fff�h�ј����n�Yz�A�gZAAq��U�Շ�Y�p�ҥKE"Qhh�}��w�ȑ.@��]����+((�m�(�H �=�A$''�߿͚5lE���LLJ�2>>��=f�lb�����ۧR��Ϟ=[ZZ�P(�͛���e8���������
�D�t:��(�ɚ�����Q���|>/�����;;;Q�9s� cTTTvv6"���K�O�yjj*����XX)..���`�+� ����b���<���|6�Oo�Ű�˄]��w���?����K�;����=�9�im<�`RRwZ��W��o��6;��#���՞~J�r��t��s��pH�"mxNĕ�/��ls:%B�������rc�����Q�����ݿ�=V+(��)��F�^���Ϟ�@2���Ia��?a�}||؄��nw}3K$�DF���5d�����b0Pۦahh�.V���ð �ɘM��֑y��j�8SS�"�G-�{:�����ˬ���ix�4���3W鯆 ��{fdd��{�+���"�8s}E	�BN�+�f���4���sep������)��\n]:Ǫ���d];Q)��|���
��EM��u�x^$.�\L�z�M==)߄��M�!�=V�9ݎ��Ϯt2'��'d5o����	��w� nl-.[��[[v?�s�N�N��~���Ǐ��lii�\���={�L����a߾}|$
E~���B__j�Z��������uww�Z+..F�]����vmÆ
���
���Jl�޽���W.�=��1��hgx�8�]���o3�F�.}�Dp�'��Un.�4���
�w�@�Iw��2 ��y��#�-�`�5�b)ق����k|||���	�MO�(����8,R�V#���P.����!�*A�� �&���k�.H����{{{/^��_��Wrr2�}Y����_��k֬��ξ����ڗ^z�����@ާ�z*,,��4�����e�<#ϝ;�u�V��!5�x㍨�(??��K1�Ll�[�����z뭄�������~��_<y��_���;�!wI-
1�U�.�j�s�̹�UUU������kk�=R~���&��>n���͛�}��'�x��~읋�M�o��fHHȕl������Z�v������w�pSS��ӧ-�4��ط����^{���844�u�/�����_�
�G�}��٪�k��j����a�?����yAA\!4�L�M���
b:
z��g������$����2�?>�\����rH�G}499��7�M���د�G.�{F~�Op/��2��-،��	188xɒ%�QIIIZZڗ��e~Bg
F��O�Soo/���<��NY�p�0^YY�i�&�U��ܹs��ǚ=u��]w�u��������o��&?h+�|D�l����6~F�…8���>##�7�����*��g�����bǎ555H���UVVv����D]


���؂�� � ���� ��LF��	�'ԑ���2�4ؑ#G����f�#""�J%4Thyy9����S��
�������������L�"%�H$�;w.?��t,�>�www{��	t`QQ��lNNN�1cFaa�-[ ~�a�Bq�̙��Q����t&�Ξ=��@yB[�
��'N477���Y�f��d2Ad��ǫT*HP��������3z����	fQ���Rx�`��a%644 �#���Ǐ���l���L������NII�([�Fff&��w����"��{/>����z����-B-`
~��P����I��ڪ�j�̞=�;111//�SRR��b1r��Ƣ,t�������ӃOt�hϹ$���!W\\,�^:�.&&��.C)���p�K�.E�{gD�.[��s��1�^dd$ң�:Ա����#��G��8�#H���Z��E��֢���������͛�=�l=99�f޼yl]ɩS�ZZZ��6��:>�g��v��� ��{衇Л۶m�3g{m,��7��������h���,�9}�4�ɒ%��N~l��,*΢;�[� � ���� �f���
��t��A��|�M��O~����K/ABqAٲ���ZЫ����?�!%���/C�A
���n矝�`���	
�k�.��=�����/~����׭[��" ���<����'$+|CJ�O��?���7�x#00�<��s�����2_(�����튊
��g�}��wߕ�尰~�z���?���k�AyB���?>�<<��~�O�UH�hc���
?��Q܆
`v��ꫯ����&p
�CJ8��@�e~�ӟ
�?ΣD$�����f���|�;h
T��'�<y�$Zm�40�Z@c��o~���.���߿?𧭭�?�!�?���^x>��PA$����\���_�3
��W.�,�K��� J�������vC������g?��ޱc�_��$F5��a��������v��_���v����_	
�5�{o6s��	��/�E744��w�c�����9��o~�_����B���.�s����{��E��s׮]{�����1�Q�_|��v{�g��ʐm��xزe�{�OPY|��,..FM��_�/7GAA�A|�N��z衇��/,X��1�Gfh'����ƻロ��>..n����\�z5C��5�B���ۻ��"
���C�A�=���V�Z�bŔ�Y)��---�S�����(1>>Y�����5
�\�)����L��۷��X�lٳ�>=|����=��6��T����|��1c�}�ݷx�bHGH\��f��@�����޽����}��_���￟-�}�L$��Ɂ�{��`�Cy���S���666-����ӦMC��O?�ZC�#1�Y�P��P��[�2'ُ�h��+W���?��c���555𿠠������������&��-++U�2�}�yX�q�'h+xo!�����_��Qӑ�T
�"��CBB�@nn.D;��ڵUF_C����/��O����(���by�:�=zA�
h��7��nX�����˗����5hd��bX��������W�լI1�Z[[�z�%>��5�
f�S���h�3g�ɓ'8o�{�%A{bh�q�r�7�xWT��G���,��@E�������Q8y{�*JAMFA��<���v�PPL�A�B�%''�����j��=�ܱcǦ(4���F�'$1��?����~jF2��ĞD���b�x�6C2`|vuu���C���n�����e^^��o��VO���wީ���Y$3����:|___��&x	�9NAL�T*�h4l�D�S��b z������������ذ̪����GDD��?���ٳg�%������}��a�-�����Ζ��;��{�j!����j(ّ�̙3hH_��xO���"|�2�V�Y��Q}6e�ޱ��)����
�
�[,t({H!44�Ga;h���bg�1e�!�����0�S�sJJ�J�IQ)���	�$�|����������C.[�/7��2k֬��v��˗�
��;\��	
Ecx���=��hp�6�c�Q�F8� z�'?��ٳg�άYX�MYyq�^�AAA�A���W�6c�?�W�3���wuu555=���� 1�A�ޘ�p�BD̜93&&�=�6}��[�B�UUU���6��2����� ���!&ccc�������jH�.@g>���ϟg��W���*++333����^}�����
6tww���&��߿�������oxy��-|`�������ܸq#��ÇO�8᚟�_VVVXXE�m�6x�T7{U`M
�t���^{
��v�`@��������!V"��&B��C`�����iX�7P";3Z������ໃ�b���cx��ڼy3���}�����Ӄ���6���GA����(������.((���,Z�(44>K$6X�I(����'�0ИG����뭷�
����sr
��L��&b�b��0`P��K
�1�7_4k
ϙ&$$`�bx���O6��8}�4�ԩS�Ţ��1c(7""�M��E��gua�/�X�`pp���bk�X��%1V=3AAčA��/\'�S~{�����œ`"����/���O��27a��,'�ݨTL[{�:Ώ<����t��B�SHE��t��\��BY^��KF�q޼yLJuuu͞="�K�P@�A1�-�ɏ?����#���;���;w.ԔV������iiiٴiӹs��j5�'̢����C@B[�ܹ����-����e?>#
��4�L&[�n]qq1D�9s��l߾���޽{!�֮]�|-�������{��!�"4�~�����|^!/���;PA�R���X^�(yԱ��U���c/���8{��}����V�\�j�*�k���HJJbY/^*�
�AKCc8p��KNN�]E��-[�DFF�m�����VPP����w���`���hT�
���ZE�:����pY��h���l�aoo/*�~�hOMM�8ijj����%���&z���j�������;�4��w�˰���B�A���(�����P�z�ĉ���C���P/4��
ңt$���D]�r���(�t(�M��3Ϡ^�Yh{d�/U(m��233��ѧ{hd���СCG���(u�X���창�f��l���w�644�,|@#� ڍu��⊊
���ӧ�������*��޼y3�ES�,hj��� ����X,���l۶
.a��q�>����_����,Yr�w�^��.���-�	��\���p/,◷|R�+T�*C�g�˭�X�Ύ{�1!�6�T��{�tBlMD�jL�q����ȋ��m�'���M�ʉ�L��S“/s�G��d
�}���.��ܥZ���f�oS�y�f����CZsSe���?ܤ�p���_��T���k2�/F���:��p�W\|V��Xr�(Ok�{|<�;-��uw�3?��"��� �8�����])�d�s,1�p��X����O���p���r�ᐈE"�U.�⟀�?b�V+�������*zHMHq�Wr���s�)��%do�a� J!�<����z���������/��8����}�klV�o��󕐃��0y<�h�9�U��k����n�N���hx~X����M������Nj/�ȿR�G��B�K�R���v�_��Sr�=��=��H�G˰c
����dz���g��F#�ƿo����<dOm ;�����L:�x�%d4j�������qJ��e��-� �a�7�<�s y�B�S���
ž�aZ����)>è/{��簹d����Œ�B�×x#���
z�u��"N(r"�4���MF�G���MF�e�mG	� n��K��3W�a��)4DB���X�)t�W2!��NFt�csn�MֵSԾ�Ɉ�'���v�ƺo�/��n.�d/;�t^r2b�o��nB���3Ϯt2'��'d5o����	�N�4A�d�͞��p���W^y%%%�G?���b��77n|��w�瞯~���E�R�dAMF�dMF �F ��T���~�k_��ɹEf"����=�\vv6uAAqB�A��7��K�m�5AA�-�M� � � � �
MFAAAqC��� � � � n(4AAAA�
�6�$nW�fseU�N�OMM
�!� nS<^�FA�h2���X��^g�;��\&�h|�G)e�gJJ,�vH��o��*Aĕ���[[[k0�JeRRR@@����i����ѐ�����A�:4A\{*��N���lv�#22bս+Œ�i:�^��8�F�Q���x�a�j����Q��bU(h2� ���(**ڱc�J�������)--}��G��v����j���WIIIKK�#�<�P(�y	� �[�� �1v�����f�I$�ة��[[��Κ�ᨮ�=z�H$�[0;''�_�:c�t�T�7�
9�<Aq��ҲnݺիW/\��]=����J%��	�B�N'�˥R�����|^��`4�df������y����

���Y@F�X�R�������Aql	�V�ŅU��P�A4A����ihh�@�	X�0���_�d�B �I�	9�Gj��޳�f��v�TJ�NA�^���EGG�{F�:�f%6n�h6�q}��KKK�WՐ����_"��<y�����)<��7oF���>Q�T��.\�	:;;M&Sww��+���-���R�V9�5k�8p���eM�6m�ҥ�)AMF�1}��Z�X,
�-V����K,^�͐^g��5
��|��eMf3⑗MA 044$�r9�ƌF��Ȉ��I�S~ұ�lH�2�̰���DL��z�;�~~v�������_&��_ߋ7���v����+8(P�T�~cA�ա�jpB���bϞ=f�y�ڵ���%%%���_���ԩ�zi�oߎC��)oo�{�?~|�ܹUUU999�����3gNMMM{{�w������]�veff>|�+_�
2�_�^��/_�1K�.���7�#AMF�1����
�����9|��o�6,,tJbD�<u�����Mȵ�B(���
	F���s�8%�jYyEyy�\./(������Rt��b����{����Fgg��3%ݽ�B�oM�	2�ӳ�O���bɺ�{�?�|}5w,]��`��k^��D"QrrRA�,V(���u
��N�1�0��	EIɉ�f�^r�� � >oo���V�Tcll��ի_y啞����\�fϞ�w�^\����q���yv��. ������s��TDD�Z�v�ع/^R�4---(((;;����d2566���%&&��e˶l٢P(px�С���E�Q�A7�l����V���L���zw-��a2����w��]�MMV���p���b���fܙ��7[H�8n�������v�ݽM��7[WW�]]]6���óZ��|�������z���;r�xgg�H(�þ
�,.���70��YSWw�`!R"�D����l1�/+?^tjJ�� �J�6mZ]]��ӧq1R*�qqql����3��0$n���333�/_�����%�A���K�,Y�p�H$•��f1��B��~�B188�k""q�D2��v��'�|rdd���;R�*�K6u
Aqc���5�1==�z��=11Qr�,**���9�'55��$'�,V�ٳ��zR��+==M�����im�����kf�͌����d��\D8K$���i�S�%gq�O�����^���Ʀ&�]����WT�̝��d2wuwg���
������g�-���Q�u-���M��_RRRB�T&mmm=}���l�����κN�.%� >����-X�`�����͡��Z�����m6���S�9s&ζ���� bbb��ӏ?^__�S�ر�#�;$
YF~*D��"''�����<u�b�f���CBB4
��8r�̢�� � z����)��O}����RaN0���Ǘ�a`ҧ�o��0�y�8���i>1��9v�hdĈ[����>>j�X���	=?��GEF�n��llj��Gz�\�`��陙���11~MMm��f��qj4�[�0~�ef���
	fo,���kkk���~���$׺���/465����w��;�bc`67j--��ELJJd;����Z,�ʙ1c��9������V�]�@�EGG�&#L�3%g�7s�;�X�;����А���XC��R�͙����)N��A.�8�T��K����a� ������[ε11��s%���/­��<�Ud�W���z����k��t�6-_�<%%���0v
�OHH����+...""� ��U�p1���Ez�Be����က��� p��u����rss�V�F�A����E��D"�R*�(zpppϞ=999�f
��,��C]vg�=㘐r}��}E������4?!�&"yU5&��bmr��j񶸧4�-܄����T�;%<�2�yč��O���jm�r
[�]�5��i��6%�gjf�9�+=�57UVO>��I+#�k�а��׵�whH�w�=Plttoo/�qKKkDx8[w:00`q?F�V���&^��v�*���1�{�{�ؚU��ί;�$=�},YpP���j����e�Z����C*����ݪL&ML��S��ՙLf�Ⱥ��"o����D"ڷ�@jjJdD���/>��	�(bj���j�;r����t”�=��tOݼJ9�	�����g�/J�]���;��%�۔x7�M�|dJJ
u����o��Ş1��0]��v�R������. �nHJJ¥6�
K���222�=� �@{F׌��F�������qpP;<�Sx���j���f3K���V+n�|5��/����𰰐��UjhxeI�R���&�
��ˋ=I;��y�	�f=����F�nX�OKKq�,p�^r����[���κ�����;l6;���A^��y����k�ށ��f��zբ��eɟ��:8tE*] 8Vۜ��?}��]�V۔�Um���WaM�{%����v�����VM�O_��ξ;��cU
W��h��x㾗��{�$&�e���z�gdk�v��:TYO���nLx��Ǽ�����������ꫡ����{����w�u׍YBA�3��V@{�ջԋX,����?���1�͝�]��ulJN�I��k�ӭ\�k'?e#r��b�>��Ș�G>O$��i�YV^nra�U�����̙-�h|RDB��������}� 1�}`豿�[��w,99��'���
��M�,\�!���
gD�~s�,�d�w��d>Y�ܹ��:h(�i�^�M�Ceuyg���}eƧn@��\S�4�(�*�Ζ����G++���R��2)�j��n陝Mq=

}ꩧp	�e��c~�k�
5Aqà�ĵ����8�'u�{t3l�=��B�����<r�k�-�Cw��Y���?z�7�*i i����"�fu�ގ�jo�O,�E�̌�ի�_�`~V��X�S�q��mmm�Wǽ��-����}&�����~�w�S��=Z]CO�q|��n�dr��6;�Ǥ�1lm�1��~����o@?"p/�5�����N��S#��Q�kf�l���L��p}w���ޡ��	><��֟�,5�1�2��jo�Л�|��!]]W�i�*���-��%&�9�f����!��v��a�EB�D�ϑ��
6����	�Ƨ6FٓD�V�Јq��_|���!p5B2�d�������
Zl6T�6�W;�-h����g��6��nOFʦ���Y�n���{�����4`0�+�H$TH%����#����~-��,�H�Y��!]SϠ�HdR~��_�R��F�զ�(��P4�f�� ��
�J�%g"� ��C+#�kCEU��b�;���a��)r�J�C8uvvC�k4j�L��Z�vh���A�z��1�
/�׬��*�ҳ��Q�G�G����������>��*_k:88�78�D�'ݗ�j�����B!����?f�®��D���;�h.���~����y��_�p����'VF�k^�|�3�:N��%��������ےc"�wg����?8��D��
�w�J_�s���H�J~�
���-�%&�wW-Z���آ�Y�M��~���.�֢Yc#�d����i�A�[>gKIŮsU�?���7
��l�~�~�cUM�y�&I����,Y�:���_���o����
	̈
�,�]��}h$�G���Vd��n�
�4b�Z*�������~~u�	s[������������^es�?3�{�8�sR�P�5��j���v����c+OV5�w��_��P���x�e�^2���H������:����/.�]Ri�����}��Aު�\�]�L�V���W.OrO��^�w�HMK����?<'@��V��ˈ�Bn�`|v���~�͞���wX�:���gG�ܨ�7���\SǏ>�'K8��{�/���%���rG{��W��™?Z�������x�O+q:W$D~w�R�\�f.����%��vĪRĪ+�[8l4�zӾSm�������;{^�q� ����-��������W�͡�%� � n_heq
0���;\��I�����ť���T*��ycs�GEFzyy9��0r�D��C��x��l]]}]]�N�
�vp�Ei���

����H���]VQ�~B.>Sb�X`!(0���208�s���{?ܱk�vh�^__�{��啗�~b�z�"B��g���g��J^�����s?�}웋g�㑻�8�O[��X�g[�kz��G7����8�k�������Ң�j�0��V.���w����w�;�g����u/�=zd�[;���csLvDZ���^��-Z���n��V������rz���l��G�	�������rW�H���39zeV���:��1/�^�����⊃U
�o_�����r�վ�h	[$�V�)�5_�=-/.���6��|yAοv�{�r�|8�%����b��W[����;�k|�7�7�l�S��ai��yKIe�Z�g=x�N�j���~0;�+���re����n;�؜��X��z��0���.Ե�l�xzQ��/?���Ʈ�r�X�Z�$PH�����z8ڛN5t��ֵ~o�����ʵ�i�z�ٴ� 1��_�';.���o\�t-�����%����:�5�e��?>t�O�]��3�X$��#�z�ްEN���+6��a4y�eo.^WV����fɖڶ[l�]g*��^�,+��F����i&� � ⶆVF׀ֶ6�ѵ|���+"b�F�J/����s[SSs��i�&5%�t�Y�������M"��f���ׂB�$'%��wB���*�
�V�e�vo�*7'':*�b7"���kj��v{���*�Db2�FFFز����b�'{ V�����Ӷ�;#"��bqww�V;������'byV��j��3R%"ѱ��aA�̛��J�f��v���*��˽���K&�ߵ��;�dw<��`fB����|yk��'��
�	
��nK%+����L*�l���*�������O�D�R��I���#����s�Z$�l�H���;�u�����ە>=<H㭊	Ȉ���y�������?�)n�Ս�v�<�vU�PR�~�j��wQzT�����Ĩ`�����ܱ(%�v;{��9%8�c&B`�۷���Ą�������g9uᗫ��N�)�m=X��Ut�~P\֯Rd'��
��R���)
\>=E"
>8Pӣm��{+����W�PI����O�.�z��-�y0ǵ����8S~��<����6�������e�nw�]���֎T��ks��
�m�%�]"��|O5�&�@�23iuv�\(<|��mp�|S�W��3-YNVԗ�4��е���o��j{rq~\�o����sU赚���A��t}�M]C�\Q��B����Ѯ���k%bz�� � �&#��7N����Ѡ3@�k4>���@ �����wX,V�V���?-3�4j������j��)%IB\\rR"�DFHppddDOO��Ŝ�C�y�db��p�I���D��fZ��6�5�L̬P(R*�rsr؛;=�v���-�~�Q�.���q�~dxxX��1�(�ryA���n�������}}�竛:t��޵m=��B*�$��
&s���js��ҍ7����7�d��f��#!�g_��?_�ˮ���/!q��M89��I�7��[�
6�X���,5�/�N>�����b�����'�h5r�J��sc��;/����t���p`�(����yٱ�~=:}b��b|�J�`�یf+��GU�ރJui�=Æ>*���zh�`��	�8?����#D{]G�R����5-�Gmb�ˏ��솽_Y��3�c��*���9�K��7��is�#�#�ξ䈠��>��$N��Y�q��=�C:�XT���V!`�ڥB�'ν�q�߾��\,�zY��S)�FM���	A���'�KWOO�/'�C�SKe�J*�y�P��S'��V�*:�����Qsy{O��7���ӕ˥�6[]w_���l[��A(*��x�sK�}�g�uӣ�Kۻ��u�m����;c|����CAA�����
�-�S=^��Iltt��qT$���D2g��𰚚ڑ���H$�Ia!>.�so��{ْ�u�
��]6�M&�y�T,>*2�b�y$V/_��������l6C��%b�R��==�b��K1�7�T*E�C���h�+�2��E���i4gK/
��P�����J3��#4�ΛYS��n�	�}��a�Cw�U��^��H)_hh�����tN����^Q^��|����=�o;�~Y]����΍mÀO�pbP)d��	�o�@.;S٨�KG��_n+4�l���@�������^\��>X��쬙��|�Yq��_�����E-NN�ނa���'��aQNT؉֎��+n�a�Q"�W�~傗���Ky{�M��9Y��k��Տ�
�__������W7Ȥ��ږ�\�ى�=��L�ЬH�޶�ؒ�V�(d�j��g��cS
��j_����c�y���DJLic�����r�d݅�GM�#�-��}b�`���*��K����g�Po��ifFBZ|�ycslh�H"���~iQ޺�FFO����������&��D��]s��ޞ�76�GM}C����LN���	�rv���=/5�T{��l�-�=R߆N�x����+�n�U)��ʞ��?{����;���AA���^�N���|c�)^*�~�s_���I���en¼�Y�z���6�cH$���JMINNJ��d�B���N�����j4		��IIq�1�驩))~~��R)���BC��$&$�7bh||���2�A	�P�ĉ��+232��b�l�R)���`->.����K��τ�x9t����e������i11�7}Cr�GN��p���r�B*���#���rW����|T�c|U�o�Yi	}�&����3�0gCnt�H,����b�#C�{1%"a~j��\6�I	Z����2��8_�����,��&DE��%����H�T��N�	sJD*��9��"r���RIeG��\�2"B�$EIҚ��Y1�f�('�Cnd0��K�����%��y�s�§G��J�0�z㲴�;�e�+#DBA��Wn\d�Z5-:,"Կ�w0+2�7��o�|&F�kT��1a��KR�zeb��_|�t�c�^�@ͽ3����}�A�a+���
�X(
�Cer٬�Y������O�L
�_0=1P,�Q(���v�<�7-L�#����L		H�	��b���N���ק !rF|���OC���Ը�i�s�"c4K���#�=?>jvB$Z���>mVD�#�2�T^�,%*$.�O$�h�b���"�Z��4��Y�0)�aw:��9	�)�����&�������М������:�Ͷ67car�L,
�$F����ר������%N��"��ϟ��㹒���ޥȵ�檾�\���� ��j�^]F���\��pc۸��`�	X�}��[���q�d�69�b�x[le0[�	Y9Q���wJx�e����|��>Vks�S��R��MN3շ)�<S3��I]�!����z�y�n�P�X,���㍌�u>���X;�LصG�Xm��O��+.>�ؒo�xr�(Ok�{|<�;-2}y7ef�y�kMY�s��3'8���{�����uN��:ϱ1�)���U�3�V|�vD�n��(�=ڴ?59F��ց�	�~��j��+n�b}����U�?|u55q���l�9��P�	EBN䞆^��|/�L&��vu�"���I�g�������J�8�f��O^�
�BN�+輒��gw2�Kg�+pHn������MF�N��	lm��&��
x�\�ts1%{����S|x�w�m_4s��ٕN�$_���s�?��]Q�?A�g�@o��Ѐ��e���Ѐ���6!pOK����R��!�tAAq��� ��2A>�?^��f����J�҉��2����p��f"� � �MFA|Ƒ�D/�%OyI�x� � �&@��AAAqC��� � � � n(4AAAA�
�&#� � � �����AA7��a��%�g�Fw,�"��\�kb1ˆ
���ɧG�!��J�Rn��	� �V�&#� � n(&���ѣ���			84�ͅ��v�]�V�>}Z$Y�V��u�6}�t�!���qv֬Y8k�X��߯���t�^�h�B���&� nY�1
� � ��T*ްa���KJJ��ۧP(JKK���q����f�r��\.����Y��)p/�`)�5�Q��HVTT��ܬ�h����5AqkB+#� � n��X|�}���W�ڷo߼y�m��C���q�S���mmm����-
D����+�J6� �HT*{�C�ڀ***RSS��N�{��ѣG�&''�����tvuuUWW{yy͘1Yt:��b��������RRRP:uAA�AA�Ad2ك>�nݺ�����Ԝ��{�����=��>����"~eDYYYbb��6����j��ׯW*�0XZZ��O"��?D�����җ��ϭ[������Ç�����C�=��S����AA����AA����SSS;::֮]��OUp�p8L&��b���n��,��ӧ{zz���˗�#G�h4�{�w֬Y�����壣�f�Y�V#ͣ�>���>mڴ'�x��˫���MyA�u�VFAA���(�ʏMi�XfΜ���+#6n�8<<|ɔ8;00��ۻg��ͦR�`���k˖-b�X&�	�/�gpp�Z����

�)___��̖fP�A��� � ��9@��L&��΂�)X,~���n7��
�,̧�AzX@���P??��˗K����������������?����nP:{���(ہ1�[sAA��� � ��9���FEE񇁁�V�����r��J�씿��L&c���9��������
����z������("%%e���---o��$'';�N�����H$111l�DXXX@@=�AA�8��r
�y^�����g��b��e®e��+aX~��ˊ�t�����6�B0)�;�C P�/�q�p^��sx;'�A����G:���+���s,1�p��X����O���p�j�r�ᐈE"z�AW�8�f����"N(r"΅�ɮʟ���
6���~��D^^^7�5FGG᪯�/;4�T�T�*	�^�V��lY;���|z{{{Z�H$�ydooo���AAA,�֍���P(D�
C�T�2"�X,��t��a�'��^�W\E^�Sh��c��m*9���K�q�_�|�C�8^��nr��xM�7�.��cUqHn������}>_mn���󢇦v�ƺo�/��n.�d=�榞��oB{�&��.I�MԀ9���J's�/zBV��9
P�(ZAAqsP���\�-j�='pw虒����3{LL��Y_7�s.l5���j��:� ��1Џ�A�4L&���������ݎ��q�r�@q�����a�
��?�pJ̧���ڊϛ�H�b�LV��h4^`���|�@�?�OA�&#��9@]o߾�����J}Ot:ݮ]��/}O�<y�k�8�'���������nӦM6�m�Ν�/�+**ڿ?����ݻa����̙3��v���uYOO϶m��ɻt��!��ާ7��,,,���2Z�:MĠ
p���΀'� ���� >wtww���o��&4����?�U�>}�������(��b�J�p��ٳ���600�x844��Ҳr�J�^���KKK���Se����ayy9��e�cW⠑�;688x].�Babb���GFF�ϟ � ��� ����V����{{{��gΜ���
!���~��HИ����|���YYYUUU}}}��H�L��v����ζ�6(�e˖!=T%&$$̛72����P��0.��/^�ґz����İ�0�gy�y�\gΜIJJ�JGbx=y��a�#!!!P��֖,Yٌ4f�Y���g��!r�������.ۈ�>}:*��ގJ���655�<y��0%%�*
HY&��!r�6QT��t�:u
����Ξ={��h
���Br#
d���/�!R������TTT���A����3**J.��>����n�
�֬Y���û�d����f�LKK���@���;w.z���G��(�S�gφ�l}}="�.]����΢P�ڧ���YC��`�k�_$;r�N�C��3P�+��	��]W���B4���ߝwމ�@C�[�Űy�wP��~��gD�aTtuu���E�R��D6��j�B��Z�v����/R�����@��.�TAA��ZA������:1Pneeeu{��>�Y�Í7BpN�6�������?������|yy���dz�����E)-
��CCC�w�lmmݴiSll,-$(�ڵkT1����z=���`���w���W(P����0�}��i$ؿ?$hVV�lmm-��9sP�\�Ѹe��������ܹsgRR�>|��G�`*&&歷�BzTN";43�|xx8�bZn�J��*��m���=��h%�!�7�0�d�ܹH��V��ba-u�FF3�8��c�4�
uD��9�C�&�St
j���			����j�LNN>s��{ff&ңM���|4�֭[���٣1��T*U*����b***�5�8	

� AF�D2c�����J��޽{��/�z9//��_�nrssь���2�Uh=x�Z#,�j�<s�L4ѡC�О�2"a���_G3�d2����a8�*��-�͆`�џ?AA����@{\��Lj���?���|��~���pN$�_�9�jO?�jOw�T$����&A�������A��%���'�nTTT���Q__����NH;�N$�P�>}���s:��!}���!�!�7�
����}HHȬY��r��Z!򛚚������������CxCC$�7
�%��u���.'�9�|�w@�www_�p�8��i.\(���`��:X��N�T*�
���
��]*Qk�N�k�y~?@c�CT
��yx�������<LII�҆111eee�ݹs��!�>*�ڡy=��Gh�P7l��n�h4P�����]=�|�E���.@�����+++�![���*Z�SSS���kkk���@�utt�����:��@��� #���҂*���&�P;��H)**����)���Մ�H������.��f�
�
t1ңD6R\\<w�\�+00	%zfA]`��kjj`y��"�sFF|+--���C#����f�xXX�Bb�M�S���K� � �� n2��"6�c��_|e�f����c��/�H233����!�!D�!���$�w�	ټiӦ��������=::2��,�XeS{�N�:}��3�<���ʶ$dS���CFB�CBB��:���%&$$�Yx� ���y!ba	"##w��y��(L��iӦA���v�7& ����Q_�)Q"\b�A�^�����
��(�h��!ea'>>a�Çå��Xx��Ԅ�q��H�{���,///��$"�͋�EC��%�A�����Aklݺ�!�!�!��,Na�2������(1++�`U`/��f��5�����B�3d?{J�۷o��ǩ7P�:�v.\��n۶M�բP߸�84�d˖-��REq�N]]F��իKKK;::�r9�UUU�֭{ꩧP���A�������=z����A���Bq|W����j�FFWnn.���E|�A�#� ��Ɉ[B��ǘ��3�te�w�
�� ֵ,b|���%��;�"���>��t8�[XX���4't ���޽*�
��򯢢�H	=u��)��a����+� �ɓ'Q_hf�g����ٯ�J��)))���eee�Bff&�5���A�:u�[1�
���
�
#дl�K�gT��X	GGGCң,�
		����c8d��U'񙘘�(�%`5B<{2��0��e���aQQQLLKa�� ��k�.�O΢�2x~��Bk����(�ȑ#H�Ȉ����S^^>{�l����hI#�������M�Z
мpn�_�v��O�rmmmII����M��o��-g0H`a�<x�����S�ghh��
�����U!H��Z��300p��!���h@t4��|ă�� ����VVV�gX�l���P�^݃d�&¨)�]AA�s�k��:�{,v#���c1��2aׯLn��dr�%����6�ܱ��OW�ω(Ok�)������Wy�Ž�	�Uӽ)q�'#U�O�����O��x�'�����ϟ?�"�"����ߘj���A��H6�L���>��H	��x�GJDB�
"1d'�f�J�=�d��.�,G.(|�-7l�a�z�j����A���]]]�#�y���	a,p?u�����];��z��i�'���,�E2�Ѱ�08	g`
��la�+s	1�/�G$>�w=��?��d��U��O��F֬Y���F� �2
�!췶�VTT�����4''^���Ec�	�!Z���GО555l��=>P:*�\,��"�&���g6Y�&>q
Π�Q|C��y睻�;33�ц�ׯGx�ܹ�F�P65���ؚ6k��d0�2(�
X>w�\Eq��!--
>�%d���S(Y���f��� d�YT��R������p�}8��8�Z������C���_YY��o~s�c �7�š7�mN'�2E�P$�D�?�w-.�蔫~�m�B&� n��K�W۫��,	�ę��T8r
]A��%�
�O�y�>W�K=>�M��"��fWB�����$7Y�NT�㮞�67��=/zB��-=K�o����%��)Y�����'囐���	<�;[��͜qxv��9�=!�y�w�O(vwMF����� &O=8/9�����|$���`{F����3�=� 
��O�굘�@F�Y�����O* !q}e��?��744���@��R���'�N�.E^�j���S�k�
�䫫��������/t8��@�C�_�H��kii�J@��ڱ���V�ooo7��$���𪫫�=���R���®0/|�`�A>�W}yy�F����)MF�dAMF�dMF�d�͙� ��51��s21b��&#���:��R�|no�.��L����� �������'#�՞A�Ln)mFB����L��#� ���� � � � n(4AAAA�
�&#��i


^ݣ�:�����j���Z�������322ru���[[[ob�L&|�RG�\�C�����_����ק��=+�!w�]s��x�����=����a�� � �MFqs��z�w���Z��8q����#�~�x����f����P񖖖~�|A�Ν۲e��h�:��N���4(��n?������ݻ�������ڵ�c[�r {GG�G����hj	�'�;�ѭ��ܴi/�׭[�9=qK�ޱcG__ߔ���~�=e�� � �&#� >1Z�V$���3!
im0����D$18D���GJhK���`�����'�@�!כo�	�S�Efee�,���E�/�Y��cw�+v�iQ������A���Ʉ�����v����|A�_V
N9�a������9˂"P����)S-|��,��,�mְ(�Md�1�
��5
��s����!==����}61�zY��avú�/����JgN�i�npXZZ��{�1;S&X��+��)RSSccc����U���-�H�P����pPPPpp03��Cȳ����J��<�w)g��W���η+��>d�Y�*8%}LL�\.�x�� � �ELM@�MA�r����P&�uuu%%%���777WVV"
­�����Г���ӦM��ܿ�`��Hb�y�O����[RR�y�ر��&�@��?)W�Z	�
�744�w��aH������h�����={vZZZ}}�ٳg��8���}��A�'CCCg̘���{��)�47�˪��s�8q��dE)s�́���b�V��y��O���@��juKKˑ#G|||���?88x�…�Ⱒ�������<}��F�Y�b�BZ؄ʅ{˖-�,�M����D)�)�)���D��D��s,����jT$//͈~�|����V!Z�����D��%K�J%jgP5f���颢�



N�����Qe�^MM
�"���U\g���M�"@�$���c�7l��Ļ��&����}?�f��͖d7��l�8�$n�q��`�t0�QMTQ�n�yw��h�*W���sgΜ��̝��sO�7���ӧO����t‡�ڹs�&N��[OG�����aۊ+`��	*k�xBB�}��#����̦�����{��x�>������E�]�r�B-�:Ta���8�*�	��;���
�M�<�#��Q�{��z�� Ȯ]��(\?8ZTT�6�P6pñ�Pe��g������D،��A!���#�BH��\\\<r�H�`��v�3g4������Rh�/��b�̙�p��9��]�jm���P������G���j*n�ܹ8�>--mҤI�\�@�A�B�n۶
jJ�B�CgnذZ�BQ#�M����?t�\�����C������؀���8Ev%��Y�tl�۷5//�r͚5


(�ҥK&L@�8r����7nD�(%&&&77W��G>Ǐ��E�3֭[k!�!J���P;��k��@�ñ��������H7� hi�C�{��a�̙3�@�#��?�%"s���UF�PeTf#Tc��;`$�%�q�F�`��O�CK��"41��-|2f�x�@��⨗��|>?�ZC��H�;Z
�#�ɓ'�L�y�СY�fa�g��S�NE�H��
�KJJ`$�-((�%��<#QX~��U��������G����.؃w�څo���p/�	>��S\�'O��4:RN�2�ݹs��(����@u`�@q����0��hw\lh\�999��U��*���C!�2pa�Bȭ�Rm�̙w�uvBC[>|ƌб���ܹs!��!� �_y��x�/��bU�ϡ��>�0��bt�ߺu+$_BB��h�X
��B�C��E����a	Y�4Ѝ�������w���;�B���"Hh��ѣG���G���l#åK�N�6
�!�!Y���`D&��O?�
T��7߄��^�jND)(�b�3���Ԡ�/���Q�c�˰a��7T߬�-Z�AQ#M\\d��#�ɡ���
^YY�a�p��i�m�IOOG>(�/�؀18
��,Y2�����P<�:����}�{p5
����Y0� 4rC��-��	����s�4N�oǍ��h���Ǝ��^{�58?;;[�(�t��3��4il��8m�r��
9�C�/�u���l�W�W ��Fh)�6R"l�.�m����'r�Eu��q�W�t�l��*�V����0��^����8799����)���CV(�9u�T���,\~�. �tڨ{��B!��C�3�r�̃������s�;�UPPq�3@2(�'N@�A��/D&���ۡ�e�UU!��!��j����xP����EEE�q�R���Cg���N���s�N�Œ��?hQ��O>�B�СC8�=YYY���f͂��*F&n�� O�̜��.U����!
�B2l�llC#�/��U�Y(e׮]�UC2�^T"�;!�SSSq��…r��KNp �����'�ӦMCEP5�QE�R���C�Rh��ӧϘ1#))	6����H3j�(8���&�`�g�Vp:��Jze�m۶�*4٘1c�vh_Xx�����m�s��@f#7$F�UVV�<�N��%��աA��[�nE�yyH�G�	y��Ջ/���ƍC�̞=WKnnnCCJ�=�M����Rp�)SpVYYNDM�?,�����������hPy]��P�ɓ'�8\��[XX�R�뭹�YqL�#F���p:��@��h�6��0�ØÇ#C8633a-cKj�C!�2�����z����7���X?��-�֝r[t^�%����f΢5{�Q��
��>���;�����[.rU�X���K5����Bt5�Rh9xH83�҆�_�h�1a�h<�;HtH��B*C6C� =@7B�A�C�#qNN�@��ٳ�@�'&&B=B�Bl�	�L�(b�b�
�������R�A%"%t8-�<z�(t5t&2��H�Q���3�_ǀjU�%��A&(b�<��C�
%�/�2*]
�Q�ʕ+��ӱ�"1�Ĺ0�"J�)���G����jE�
^��χ��hN���������ljRrgdd��p#�	S��eɞ&���(���&�я`��_�/��^��CVh�|d��8!}�}��9`նm�`'�A[�T�B8
�@��ܹ����05��!�R(����
.���zJDP"��#QA���2e
�r��1x�f��ᚚ�Ο?��U�X�E�A8]^'s��G9���?�WԡC��%��a�A�(����Mv��
������CnIIIYYY���8�
y��.x�������a2���b�-[6|�p9���|Ty�0�uG����P4̐So�{�����
"��g���"���"!���&�!�t���_~�3���ݴ��R�G9IV��j�i��'B�Z��H�(�c���*+[k.yöCs�O"�2��E�Z[���і7Eh�p���YS�����Hk.�C�����K�w��� ���{̚����F�`mui'6D���<�oK{
ź˚[h��i�ot�%��#�ݰ�=��5E7�M7?R�`�ޒXh��B���쑩���fh���!���@��׿^�x1��ڵk����*��Ð�3����֟����s����C����
]�d�Wg�q��_n�={��䣏>���Җ�_g��͛7Cƿ��K�*c�ί}�ko���ܹs�P�HQ$�A��fM�S������~



��nj#W		��銎1k��B�/_�\Z�~}ii飏>�m�6��3gvP#�<�a�G&�r]]���������F�:y��Y�d���%��9�y��H���瞓�4�
�4r�I�y�וy
�q׬Y��ϧ���/=�s\�����(k������Ԧ+�U0� e��/~���O>�$�x��p�s�}��PU�Pm����{�9$GF��q:"l�B����n���U<��Vl�%Р�l�j`S�&��`ĵ��X�! E��
S�zD0B6���Wk����:0B.��.�d�
F�z���0��xHr�Zi�fmJ]i�*���E���*��.��O�5����Z�JN%`�S�f�0!-�Q�&9��222����?���f��…���.�K�� �.�1z��y���Ν;7>>r�{r(r}�ȐAdݭ�8����\HV���yT�S���J'O�lZ�|9d<�������D_����VYvӐR�:����A�&�65��dԨQ���2����6�]'a�yf�K(�6�<�9a�9�)l�����[l�tE�ei��{�19]!�B��=#�� ��!�3����F�༅���677����)MMM欍�9�h_�\ g���Z�Kt����G���q�`��=#!���˩�3I]=��׫��UHw��%�BXp5
B!�B!��)FB!�B!�Oa0�rk�u����������o�x<���


���ڢ�"��f?����رc�&����x���5M�v�ZYYY{M���>}gY��������Pw�N�z�� ��!�B
FBn
���k֬�r������7<{��ݶm�yhÆ
�W��˗/oڴ��dUUUHVRRb~���O�_��^z�}׮]����=p�X����^� �.�w�֭/^��������B!�����Bȭ���:&&&77W����=���t钔�~����I	N���8��Ho�}p��
S����?�[illD�2[��8]&.--�f�
ɪ�8�n��# g��6�VTT�\��~��;����dɒ�W�����y��ɉkjjp����-O��{�^���@f�Hv��TM:�ؚ�	j�嶜I[�ZzUUU��i�%��
�u��e�I�&�7�t#r@-rrr�d�6�I�]�V__g�v	�h���^����Y_�ouWdEpԴ
U����(��_��ĉa��y=��a��>��KKK4�0B!���W� �� h�v;4!D�ڵk!8!z�!��>��l6ۃ>�r�>���o~󛥥�;v�X�bŶm۠r���!b�qڴi{��9t�N���X�remm�;�3bĈ�/"�ܹs��UWW#C�R(�'�|���l�ƍ���YYY�����_��ױg���P���3f̸��۷o��������������~��g���C�G����VG���/�-
���G&�F�;��\�~���̙3g޼y(nԨQ,���o��6T�=z4�3��Z�
����)8�lذ��fx�g���!z��y���/�>}�رc��{/C�'%%����ݺu+�F��˖-��׭[�C�?�pff�b�%af+�(��Cz����������Դ��x�…��7�����I�p�R�0����}ꩧ�]�v!C����_|�.��'.]�t���uuuhh�2,y��a!6
�-.
��9s�#�<RTTt���;��U}}����e�e]�Z'!�B�-�=#!��T�̱c�B�=z�ܹs��7 MG�	)>y���>%%z��ڵk��86|>�����^�z���P�.\عs'$�/���C�y�ޫW�B~���<x��=HHH��_�x1�8D,CCO�:����>���P˰��{��g���fa	�b
@��؀��5k����̜9��B�����T��	 �!�KKKQ~���Q��/���O�~�PYYYSS�]p:d3>>�HcN�8
QM�ܰa��YP�/�����ÆB@��hqq1
�&���gϞ�D�aٳCv4@]������;>>~ݺu�W#؃�0 666&&G����#��={�`��_��=�܃ӡ�QS41��D���jۂ&L��裏��6mZ�b*�nٲŚ{6n�8cƌ�_~yѢEqqqK�,�mh�S�N��+W���+W�ą��h���e�4VUU��i0uڴiK�.�`jVVV~~~�y�B!��B� ���jBBT"�(dpjj*�rFF�.��ɓ!wǏ��
hN9�N�S�L�4���H�w�\�ƍC�)))P�H?l�0HSd��!P�}�Yaa���!$9r$r�)P�0Y�К��T����f��
pf`�?�� ��711��3NIJJBb�. ױ�v�,d�C���ѣqnuu��&ɟ�nj��H������S&N��<��ґ!�6H�Cxo۶���z�]�nԸ����T��+ ڡ��ߏ�a�bv�We��Ɂ�O�^�~�����'��`���̄͊1�Δ�C¦���(ٺ�n�
�#%�Z'�P�4��͹���c0l�ڵ(�q"�EӠ��H۬=8�#�^7�i���Q�����
f��"!�B!FB'Т�Ǐ/++kjj��Ɂ>l���S�n޼�ԩS�A��z��'OB�C7B'�ٳ��ٳ_|��(�%T�-[��#79;��V �>rƞ��<�Rd%'���农E"++���⫯�ڷo�C;��cǎ��K�.a�<QN܀���6@?��F�Bn0�@�3��Hs����7n����޽�BMa۹s砺e��G�E��0¾������iii(ȜL!L�ÞiӦ:t:?##g!Cd�d�qJll,*�:Œ��b�(e�̙�'O�?�b�/@K!N�P
N���8}�t�˅�c?29q��	Y!�Y�f9r��߿�
S��h��p
NOMMݹs�I��s�Z�����t\�n�7p��6�V�c.PnX�����֢Qd�H�6K'�7nGjB!��=�W_}�才>*֏mm�u����h� ����h��zT(x�w�9����~�r��-�*D�����͟�mF����)�8u�Աcǎ9����2++:VN���d��{{QQ���3�}��q�p��C��{/�*R"}yy9�#C���
Z9C�ʉ���3ˎ��ٓ&MJLLD�H��� �qt,�,X�SV�X�Ç/--���3g���Rd�	�Gb�SVV6j�(X�,X k�{�n(|�^���_��R�M��<!����/_.�;@Y��0a,���N�_�l�Ⱦ�ϟ��0)))	UC5cccQ��7�5��G)�N��8�������Q5����T��!�ܹs�����t���q�F!$S��6Ξ=�����X�
΄a��q��Ř���3g�9���O\\��ٳaF��43f���Ɂ=����܅s����p����8
�����`T-+;�쑭��쑑 ���A)�W\'����U؉�9���}@H_޻<~��W!��?�h�����@�8W�uB��.���?�[�T�n�r�H)㣱�"�Zw���EĉP��3R-�����*+[k.yöCs�O"�2��E�Z[���і7Eh�p���YS�����Hk.�C�����KA��ko������&-{��v���[j�K;�!�W\�ؐ[�S(�]��B[<��H�7�x��/!}Y�\�P��C�`[St�(�t�c ��-��8.��i�����ZK��_�=0����@��[��w�y'^���O��(Ĥ��5ģ��?���X��ˉ0�
a�:u
�a*���wߍd�/C4�pst�����^�H�.��X�t�ܹu��˗/?��S��av��/s�:�s��W^yE�n`&�c@"���߱c�����!�'N�)�"k��r���t~~~��={�x�	9Cmm�'�|�&���"s�a�h��4�������8}Ĉf�� �BJ\�2���!777///���U��>}�B�p5���^9a�۷���W�NKK�-�/������CUmB���f�!��F��w䈪n��oe\\[�2�_/u]��Սs=��Vl�%Р�l�j`S�&��`ĵ��X�! E��
S�zD0B6���Wk����:0B.��.�d�
F�z���0��x7�T��ڔ�4�,�UV����oU�F0A��u��Xr���%��iӦq��A�G�^.�h�w#W��]������j*���>�.@Z?��Cѫ/sQR�3tx���K@�����SxvU���1�����z��
���q�2��k�1DŽ|v�՝6�����`��#�`0��#�C(ѓ�̠�/�]�܊��#!��#e0�3#BCd�As�<!�B!���F!�B!��>��B!�B!��)FB!�B!�Oa0�B!�B!}
��B!�B�S� �B!�BH��`!�B!�B�#!�B!�ҧ0A!�B!��>��B!�B!��)FB!�B!�Oa0�B!�B!}
��B!�B�S� �B!�BH��`!�B!�B�#!�B!�ҧ0A!�B!��>��B!�B!��)FB!�B!�Oa0�B!�B!}
���[���y++���]���jj�M��7�S|>ߙ3g���;MVPPPWW�U�p���;�4�y��v755�m�׋�r���QZRQQQ\\\VV�%��=��,//��:M�z�Fh8�������_~0&�~���#!�B� �6�Μ��O���������'�E�Ò�^o��P��j��A{G����棏>����R�BsB=�ۿ�[UUU����?������U��}��7+**:N��޽{w�����'N����Rro߾�r|ܲe�ƍ;��~���?�����_�˿�ˁ�m<����W���o��_�����Mz<ym�ih�>��؋6�]���O���_���W_Eybmm�5k`�M��kJB!�#!oYŅu��W/�����q��F4^�X}옯.�sn����}��|�Zk�|�r�>omm@�j���R7t�b�¬c�6ĕ�#�n 7"����1�߸qCnKŋC�?q�PM�+�������B
9r�<���ښ3���
hQ�;k�,��V�U�i������B4��j�لa��Z��da���`U�Y�;�Ngdzi��	6��	&N�(�7Z��̄���F��ٳR�C�lق�*�/��F�Z}e�5]�n�ʕ+����>�������-H#K7�/�'�
*���	�RUU�L ���������q���gΜ��*P��/���+�W�NMM5�u�Uo��Ɨ_~	W����.]����3g<l^���^��I�"���|��5]��g�"ۗ^z���̙3e���t21[M�N~MbbbfϞ�+ʚU
�,B!��`�!}����J����ۿv�m��T��)l��7~u���]sc�Es��������G��_8�Sb�;�����Q��_�UU۾�?g��?��c������<�*�+$�;���+Ȱ��ڴi�7o9r�…���Ν;777WZ�d�`˖-KOO߸qcCC��Z��ԩS����G��o~�Ç���?��>���1cƘ1c�\����_�|y߾}8k�����)))�&Mڹs''Nt8(��x�	���C�B�N�<i S�����4䖑�kquy衇f͚��;�@6'$$<��6�6��&L���{J�D�Ш�12�~�Ǥ$F!,7lذv��y��'H�Z [�����_�f
�0�Q���o"���$�Q|D��~���aÐ��W�s���999(�'���6m�Ѳ�2�q�CY�j
�](�.]�gϞݻwCo�h؏�`��k�P�#�<����B��ld�*�p|?ñh��^�@qq�#\.���8p��8<116=z_x�X��������Ÿ�Z��q��Hp��/Z�Ơ�؉�E��t!����~�\�bŸq�䅁�p�իW�:8Q�Д��t:�
T�/�(**:|�0�
���ͨ8J���48�^�����
�۰ꮻ�a.��S�"sT���?�Ǖ+W��2~#a��E�e��[QQ�
�={��v㒆�>��C\�8N���qE!8�W	M����K�w-B!��.�A���_(�9?��Ghg~�O�*l��Շ���9o�����^شa�Ïǎ9�ߌ��Տ~�3a��o�����S{JJr�Hg|����ĉ%%%l�mТP}�>�,���o�
1	͏���P}�,��O>�B��'��N���{�`�n�
ň�
!��?��3y
T�믿>s���{"
�:??B���|�wBcO2@�P�8e�ر/���>��s<h�;��bi �a	�9x�`ss3L�5k���B�BfC	�lK3 �a�%�E�9998y���R�B`�Y����-:jԨx`Æ
H�駟���B�B��WqqqP�p�޽{!�a$��}ڴi��v�ƍP��<��ݴi2߽{7�)�#�� 1�?d<���->{�lx���z~ɒ%h $�=�,��ŋ�XH��׮][YY���o��BQ���,�SP�/�ȐʡC�l6�ߵkWzz���>�
��Hv��i4�ɓ'���?^h�� ԟx�	4(�ې�,HKKC�s��E�0~�7�%�׀���lٲ�_~9;;�g?��k��&�/`?����{��(�Ď;V�^
��y���)S�,\�����]�bELL.���y(��pN�pIc'��F�p�J'$%%�~T
>�����ر��:�NB�}��y���|��a4
j�FAuPM\-h5\E�3>>~߾}MMM0u���9�
�Q3rG!��`!d��S��-���u��_/��36���wѥI/c��O�����K����m�I�o[䈍��w���ْ��M��#l6��E�����o��M�8qƌ����w�&�߄	 /!��������̎�gϞ�<��4ir���������7n�@z����_^^�z�f�D����G����j�„VLLL;v,�� ����q*����a;''9��P��J�k����	�P#ؿa�)˥NHH���.���EA��χ���P8����@d��l�1�΄�,((�A��/^��S�9����ԩSp�D��
_����H
�#ChTSe���a��i���ln䆊C�ʨ,j�;o�<Tj�ȑ���ӧ:t����(t���8��F.��:��cn��6�O�A 99��x� �\�c0����v�ACCCQQ
B�+**�
B(���fx`�…�ƍ�KϜ9���J^?����������h8�ͱjժ���(wݺu(�…[�lAY��؉����������4����jkk�TWH^^�O���?��s�	�����pq‡f[�aJO>��w���������1u�T�
�����o߾s�β�2l�B�{*���x�`|��&B!���a��[��ll��?~��s���cjk�-L��w��l��o�?�'c��U7�����yy�w{��#V=w�����p�p�S����]�J1~��x��O~2b������{�B�C9CVAU�5���84����;v�Xjj*���gϞ�x�bhf3��]1FΛ3&���A=nݺR�>���됬���Є����P��/����Zq�ƍ��Ǐ���r�>�PD�k����^��DJHM��Ε+Wb;%%EjW��7��Lp.�`&A�"�ҥK�0��(Q�\ +��
�[RR�
���C=��>|x���(��ŋ�����aRqq�u�i9@A�.^���>���p��s���ռv�ڡC�`*�����Q4�_�r������O?�zG�w�;Y�Yњ�6##�C�(��!�Yk��e�9��}��WQQ�|P��S훐�p��G�:&&F�����	G͚5��M'�2@��WP�28�Q_��4EEEyyy0��̔3��*l����1cv�ލ���ĉ3f�HOO��׾��{�mذ�;��bL�����x�w��7]�z!���Α�c[zI,pq���_��_�ծ]���H&[PZ��#� 
�������B!=�ꫯޤ��_���X?��-�֝r[t^�%����f΢5{�Q���3LC�;z�þz�x�E��ts�F����t����]x9�ѕq�G'M��--1o��'�H�Urx���Z1��o�Fg)��Jϟ1w����\ۼ�x�&��)s�=BUˏ�X�$){�&X�v�E� � �����s�̙{�w��ِ����PSs�Ε}�G�	����w��y���}19:g�Tz�:
�ˁ��p�x;v�@J(�e˖�9c����!#q;!k�-�18���C���ƍ�b���	Z177����݋�a0t;�2z�h9u����رc؃!VadpNN��_��C��h9g�\�~}ڴi����1��0���~h]8���~��F�O�c�LEΰ%B�c�f�k����.��jf��Q
���� �]w���	>,Gm�Z�
�0����+W���]p�֭[Q)�y�|�rx��ѣp>���R(�3&O��lq��y����eە��"gԥ��F��ꫯ�p�G�=�͔���	�e���h��Ǐ#Zޓ�D��~����6�_��¹hh�TWW�{��.�P4�p��A\�H�|h2x�Lff&.?4*;�mX��5�x����v8P^�?LE)acXP�d^XX�Q}8G&2��[pbR"g|��p,̀3qa�"G��7oơŋ�?��qb�#p��.c!��?�h��a�TPY!���cv!��M�V���W��-B*p7m�E�����k[�;MU�"�D�X���@pl��#Zeekm�%o�v�c�I_�C5��Tk���"��Mn[X:kj��Ҕi-�eu�q�r)������X�=fMZ�ȏ�l#M�����}�e��
���=�b�e�-�ŃI��xC�}�$��"�ݡ�=��5E7��n~����%��Dž�c"-��#Su]3$Y�Ms�C�z��5-�;���{}�����n�ۑ������\��н>Om�35U����m����o��ַ��mH>�j
���.���u�zo��H��h�� �]r��*n�"
�W*+��S� 7�ɜ�/��\�	d)�"�)w�~?N�E@4&&&�I_�Q1�EK�%�W���6�k�B�G�
��$,����hBB
5��rd铰�d�hhh���\~B�6�R�i'�$3
 ����Yh���a՗^
�V.�j�C1kM]p�7a^ch���SVV6+.<9L#�*�)(((--�8q�K�>���o}�[�F}c
��~�"�1|F��afnm9�	<y�%Zp-�]j�N������CUmB���f�]�`ꅆ��ܽ`nf{B�~��u<t�7�Σ�nŦZ
j˖�6�h���
F\��o�R���0��G#�������Zp������m�K*�v���f0"�6%�8�Z73�6�M�K#͢[e����h�V��`����[��u����x�Y�f-_��:U!�K�.�[��������o��;�'��'FB�F0�`����A��x����3A��cSSи�S$��Ba0��#dBΌ@@<$%%�dp�g�]A!���
��$�B!�BH��`!�B!�B�#!�B!�ҧ0A!�B!��>��B!�B!��)FB!�B!�Oa0�B!�B!}
��B!�B�S� �B!�BH��`!�B!�B�#!�B!�ҧ0A!�B!��>��B!�B!��)FB!�B!�Oa0�B!�B!}
��B!�B�S� �B!�BH��`!�B!�B�#!�B!�ҧ0A!�B!��>��B!�B!��)FB!�B!�Oa0�B!�B!}
��B!�B�S� �B!�BH��`!�B!�B�#!�D(�f�#�B!��.�`!���?t!�۷��B�0A!��>E��eB!C;]@鞖Ѓ����.�A�h'$��	!�2D`�BH�� ���| �t]���#A!�I)A!=�2�ҕ�M � �B�0�A龢�,RB�L���!$x�h�]h2!���W&!��!����1��M�uͯ���� ��1]�n�\�Gՠ�!��!���.*
c�w�WMC<�ů뚢k@Q4#�LȨ��#��SEa�F al+�SG��K%�x+#�#!��2��-;\�*��`B��b�0,=#���؄��d�M��j��A_�H��BH�Յb�%a3���B��>�!�C���B��P��T��h*!�r�a0��ua���
��۲_p�!�r���5l��
��$�B�$FB�.*�|�H
T6]7��QQWUUn�e��ۅb��#t����ΐ���BR0A��˯���h]G���ٓb�t��5"x1o!{!�24`0��M��˃:f�ߠ�!�;F�g�!!��!
���^Pz���� �D!�B�P��B��R�A�.A!��!��jB!�BH����B!�B�K� �B!�BH��`!�B!�B�#!�B!�ҧpKB!�BH�(6զ��SawMӽ~�΅�H?����B!��~�P�v{S��ReM}�Gpm�.�+�MUG$ǏNM�j�_c@��_� �B!����f+�^��{�_�l�u�"��A]��bX|��,��z�dU�$H��B!�Bȭ�aS+����Gg�s8T�P����߯�����M��%��;=[���?a0�B!�r��'����o*���r:m�F�t���Z���#Kr��m*�F��	W� �B!��j��*��4Ժ�vF"z��`�]�Q��q�
�oa0�B!�Bz`
	B�-FB!�B!�Oa0�B!�B!}
��B!�B�S� �B!�BH��`!�B!�B�#!�B!�ҧ0A!�B!��>��B!�B!��)v��B!���'M�6�*'逾#�3�E�_.](��wM���)s�OׅHl�cS����L�dr�̤��ö�
؃��t�%wk�0A!�2�P�pل.�
�_�)�_�G��]��{����jB:�ѧ9T��r����>����� ~�b��k5n���]v|����f�y|�Z��ء$9v!�^�ݎ�fPů�n��n�?�Ok���8��O��xl��)J���T�:�W�$�]���m��R�f����ل��4#��#��&$FB!�5lB��8Q�t��;�i�N�M��a�1v���7v�|�̬D��C�ᰉ�z�k�J�W7�x�ؙ���^�&EH����ӒVϟ�lꄔ����_�(����gBZҳ��/����XY[����:_U;,��G��;�ry���r��1ަ����f����nzd��n�k�b���;�%7��/?yb���Lg��ۛ�ϭX�=�����m)��w)�<p���^ys}QU�+���|����J��O����b�����9�o�]�p�n������Z[�9�?�8g!�BH�q���9�}���wx�;��_��8�n�a�-=‚z�v{��G��V\���+���@�����P��>r��^.�*DY����P�]6Q� C�f���ѣw~k�"aS�W&��,�8ʣiI1�?�oݷ(!&�tIi���{���G�L�q�4mܰ����wM�~z���ϯ�c��L�沋�چW��=�F��ĹΔ�_���R�d
KK�k��%���8w��n�^��t}LzҤ��X�]UĨ��Ķ/0�J�;:=eXB>�:m�F�WTVu�ZUIU���Thd����B!-8U��˵/~Z��E�+geT�x�A���_��sF�+����5]��۠p��@�aUm�=��a�
��-G[���Pm6�)��5�#ޮB�8�J�WGY��+0ND�GY�ik�j�l��?y,�Ji�7�>���O��7�tc0������I�u��z���J��	t�_���s���Ϗ�}���e
ͣ�]v����tj��3���梚�qI���C��M|v���}TӴ��&���♇���?_��Y!Ŀ���_}wޔ�zv����X��p4y<������K�kJmcs�ǻzQ�֜����I����~�/��n}F�&ٹI��N_){�nx}�.�XNA� �BbbF(eu�ٻ`\��1IJ�ߓ���4��fߧ�j�W{&&;���S\#�8�r����7gxL��~��a��:蟇��G&:�x�C�ݗ�,��;"�k�}���F��TU��8灒�y#Ʀ��\�9|�1=ƶbBJF��v��7�6��q��q㵆����R\�]v���J�G��͗�M���̻�$��f�a4!C	��'�mSG�gG
��6$:W�U��Ьq�^�o���*��'��ߨݚ_�`���;�D�ڦ�O������;�J��&{(؅�S�M�1�,��h�$��w{>�w�.�油�/^�}#:�5�_3,�ǫ����5+P,3n�`!�B�F������ħ?9�;�5OMI����P�~�/�]�~�.%�q��i����-���
3�%�摜�f�?l�R�������K#�c=M�:R���'��x��@cl�?�O;�d$;?����8���V4-[sfJ�����G&.���W��c��x����v�U��y��҆F�A��x�Z����6�_g��‘����x6%3�s�/��i��16[b�KӴ��f���9md�309K�1�'�5
M�/��nSU]��]�
�n��l�;Ǐt�Z�r��R�͈�S�=4�$Ǹ6�(��=jQ���󦺽�(m�k�aI	Oݖ�����+��!�Ѐ#�!�BZ���I�ݺ*瑱I_�,��7'���BU��a/-��'s^h����_g*���M��܍�zwau�^�}zZ���+��$��D�?>:1�F�?�f����s��+�~��x^N��g|�Ԕ�IN�;���]�������F%�9!�g�r���o/u��>���W�d��{ajں��|ev�M��w�~�щ�6�7�z�/�����~vJ�C�~�̒�NV6���G����v����j��������zm��H��6��{�)�q8%06C�p���&�/����Ӌg��6�?�x��t�%<>߿o;d��y	.�ק�Ƅ0B	�/P�ׯ�������b��n?[R���?x���{���撟�z�3�B!���쒺~�����|�F�k{K�=P�tb�˳���h������k֠�k���fd�;\���ZG�O�i��S/׺m����U�j5��a˯�ґ�MU�U�<����H�u&���ҿ(��uc�P��brZ��f�V\�0�b}ms�"n�J�GO�s$��x�-#�YVﱫ"=֑��k��~��T����mֲm��X���5�2����>�*l?0kҗJ*������9��u�/^�f��ӳ/������M�u��2���BhBQm�-�.o:~�Y�7��z�p��EW7=�ȼi����	]x�������Y�\-Ms9sF�#}5�!�ܞ�Jʮy�N�0��MI� �$�]��BH��B�h�Z����)���=t�Σ}U�����l�������;��^�����|��8!~gbJn��T��Jї���,��_������ܣE��.t}wY��3��Rz�Q��@�  H��4������Gľ�"�\e�_��)�to`f>��׽~�I�8-ؓ�&�ۯ�u��_��W��RꖯM���0�r�J�B�r3뎟_9o�#��ff��5���PQ��;���r�Q˦M|��W_��16=e���Ϗ�����q�ͦ�:��z��퇖L7"%���
�u�������p�ݦbgਪ��”��Uޘ̉F�n7<�Ͼ*X1+��/{t��8�s���=������;�q�2e��5����|�����osX�^JC���G5���΋�M��L�_~q����]�OU�Hv��T��+�8^�q^��(�\i�d�M}~ڰ��:��%�TM��zjr���%�tM�/�����!o�~���-75'��v^�Ѭ�4���UrV����f�b�+5U�+������W�<]�+z�ǯ�sRfĻ���{U�}/M!P�r���ɩo���M�����F؂
J�16���W�b����r�fO��m<ZTi_��۟�R�tʸ��a�5�����w��v{�Ǻ.�WiƷ&��ȿ~���:���i�i���Q��|�j���j&p��Zuݩ��u�.U�XY벻�Z��v��Ưv}��ҹ��٫%��.���-�͛2aD�ϧ�����\�k|U=��WJ���a�ȸ��a���������	,K�k�y��`'s�9��e���ζ�������Nۿ���bC�m��X(�]��,?$[��-�ǻ\�8H_���%�^�z�=�n�'�-[zp��Yh�~�-_.�����
'�Z4Mknn��|�w
�QV���.��ɮ?�-�1ɍ^�����˙�$���̄c5�?[8bZF\y��;;��\�.�L���[���å?)��V�_�)ߞ3<9�e"I�M-��W_�Z�а��G'|Q��%��ݾ?�{��e.����j���R��lv������/��'{�.L�ynz�M�o�,����U���U�5g5x��x�C�r�@B�,ߑ��<�u{�b�?T�6��o���x�^�|�R���4ȀD��n��Y����k���&_`�M`��q6;޵p'1^�{T�WёF5^�������~��nSD�?��n@���p�t��'�����e���x�
L�i�E�R����-ܼz%���M����y8!�Ս�u<��V�˦��P��]��[��=U"��_5tU�-U^��āp�^���*������R��|��"���d<}��Q;�L?���B��J�R�?r^��ڦXĻ��͢�1��)ui�Yt��6�
�ߪ؍]F0A� �#Lb�*��뇆�qf��7P�]��4�5�z.���8s{`�~�n��Z���H�pؼ���r�&r���j���F���pؑC`aB��;�Bܵ5���@�M�x
H��ט@���
�*0TU�!���{�W׹�'j��H����PC^��l��L��[�<�ܣ��BDM�ג��g��2���0��w'��[j�E={��(F�+�"#���� d=���S�f�ꪟsJBHf�պ�f���T�B��~h�XVu�R5��;�G��v� 
K�j�ť���O��І=TZ�w�>򣔈j��)%�L���<��xǀ@m���0A��BZ�_W
n4_�����$�!lڣ㔝��+	�B����DŽ�����sp��m� d?=!��
x�*�6m�mP�\F�k���iBH_�|F����
���{�1@+���"�΂KBHW	��9X:!3A�U�]�;���0A�����5!��
x�q\B��Tt��JH��t!��ܠ/!�B�M{����H�`0����Dik�!B!�B����`���h�^��B��� ���(>?!�BHO�c��ɟ�H�"�B!�B��
�'0AȠ���6�!�BȐ���n��*�0A�`&l!!t!W٠k!��ϴ3�c��T�����hzr��Ի���(�	9�n¥=	l��}
.NG!����"fd���H=t�b��ɥ��[Ӛ��;s�Ĺ~���m6D�R�t#E�n$�"���@]� �*���B!��S�~����?\��O>�u���Z���:�.�]���l�s����d�d�����h36�����B'ְ�HB!����ϯ͟��ӧ�=XTR��$8���ݩ�&�L�3wl�����.���}ay��r��X`0��A��1a��sh!�B�'�Z�ڔQæd
�cJ��U~M�A$"�M2��2p�o���0A� ��i#�Qu�� �BH���z@E��m*�ߧ�z ��1l'�m� d6UD�N�t!�B���;ͭ}��q����^.�I�@��ȇG佞3B!��.a�ѵ�L��7HTB��/���6�?�ɍu��zB!��d�hT�o�"���h__�!C=�e7��;�\���?a,��P�2��z��5!�B�U��q�^AӋl����D.��Ʈ�@Uz)��`D�7N�{͹���3���xd�O��D!�B�V����T����xa�k^�|�Û�>܈+B7��WHw/-��%�$9d�>!D�v�C�B!��N�Q'��`rˆ��r"�`��lp@Jw�ȡ����,�b��'���g[�|B!���dGc4��{8�N�9�� ����G*��!؄�G	�f2p�A!��,ng*�6:G�1@!�B:y�4"ac4D�ˤ��|Z�ш|Yt��u�Ja�E�ـ��ۡ�-��UԱ�R�� �{���g�%J�o!�B�6g��X�=��O���!�[}h)T�����.�C`�Fˤ��k�B:��e�� �B!]��Jh��;zcA������@�|��)̃���D	F��*������4t� �B!�},�"�x#U����|9U��hh�!7sm������gDK7^�dP^�-ݮ�I�X;G0:G!�B�W�a/���.u�����ၛ1UD $q�#�X1냮gGc�!N�#�&�B!�Z���STF��9�Ѓ�Y�:����SU�cp�>
�$�ʔ�
2`����C�K:�<3Zv�.�F!�B�����5�F"�[���1��><�<�
?�W%�#���n�XD�}"�U~�p���-�`�G�<!�B�	�a��.Z#�a.hئ�v���B��f/n�0;/B�]�����ʈ��t�6o9�2�ь��xC#���_C�f��4g�m�ގ%qT?����zˤ�=�9B3�	�vH�3L>E�z�z/\#��ݜ���*TEh��`-w��*8b͘�R^���ް.bH��Xª��t���?�h���6�!�/�K!d��"\kC���="�9zW���Ѝ7I5r��`Vm�E���ډH_����́=]4�rz�烐C*�^�,��4!�	"����(����֬�J��1C�ȘFpq䐻�ޚe���K7B!��m��X@����8�;�A$Bik�o�V��艈���{{o}G�˰2�[�~��U?�A��������o�û�w�6��Z��Y#���#�����B�cFo=Yf`�H�	-,aS��y#�n
;�S"ov"2>A!�Bz�/���Q������h�3Ek$�[;�D쟩Z~��P�FL�ݘ3"(��[']e<���H�`������� ������ڊGD��?BiA!Gu�)Zp�Gkd$��XpGhw�v�f�	B!�ғ������Dd�"2!#a�E�ښ=4��ې"LEv���l��_E׊���w�������x���QpL;P��6:Gt|y�'I�4�z�
K<"pO�[�f�A>�t����9]��A!���׿�c��[^7��I"���J;�y�i�_DC��t�����zpA�`��+�yB߻��vr��y�`�n$sS.��ْ�x�p�F7�&���#,�k��#�cI�ϧ6C!Q��Jdl��7RB!��Qܡ�D��6�J�����7�v"��сJp>��U|蜔��-ߺFFT�6xFW�o��{m�eY�	,� ���N�|T�c���6��-R����_K�t��I(�w��|�£B0A!�ҳ�����c�� ��mF"�M��E��h�Q�*r��Q�Ԯx���D4Q���`p�n��G�{���	��L����ș#"�a�G���_�C]a!	%���y�SڋM�]��B!��L�v���ڟsC��>dF""���i$"J��-�?�N$߹#t�4�� D����$�FK�dAT#�����a��>f""����0vm��)�m.���Ao�-q�؆Nji�%akYM�幤�O�+:~@�9*��#�B�V<BD�&��e����"4�Xҷ1�#�I+�Yγ���@k��QϝZo�X�N!:�_"*��䈏n���ME����0D��&����������Li���>׎��%$�N�[����B!�t�0�W��z@��ڰ�!ڜ�2�HD�+�7������"�Y$#��	��]]�C�z,I���_�T7aa���JH?�:�7쨃x�����#�u:C&�����L����u�#!�Bz!��f���ф!�С��$���J�D�}c��v:o�h�D��gr���ź�Q�N�r	������ND�-ˇLψ��r�4]\����J��%Z��
�G(!IXB֌�LD� �B!Q����t�Xm.�:.C	_5#2��DD�.�9@uZ�c4��w�NG^�u=�N���ԝ�uM�|M׃�tG���`�9���2�r��� ��N�n���m���X揈��R�X��I�����\׳�{d���6#�B!����Qi�6W��6;D�<ѥ�"U봾�6��R��j��t��2hb���S�]��XdIF�����#d>���PB�y$�>�[>�����e
=E}�E޶�?8	!�BHW�
m�6W�Q�˂F,j�f�A"��������	Jt���k��+s�K~����J��NQ5dw���膵t%���?�M�����=��{��G(��#�µ�QœN¼�N�<�6B!��D����("���I$"�4�v�E�؅h�����ܺ4�F;jV�D:�NW�~q���i=:��������=:�P�]ҏ6QFʢ�G��	�e�%�ZY�/z���"��ʼnZ!�Bn�n�ձ���F���"�ߓHĀ֛�W�\����xs}
s��6%��d��!��G�r]��[wMPè��ޙm9��P�����zv޴%�$@�<�˲�)t���?��3崂�]6DŒ��w+�/��#n�#D���*�\,��Dߛ8z��k��
v��vdxAkCTwl�o��*�휽��M�W�߬9/��#ŭMX']��ƯJ�����V1?4^��9(�0���/W?±-R.��\��Q��`���f��QLQ��� �똘L�H�o�>o��}�D�o��D~s眗���^^F����n�>R�S��hD%��;-�5�S�	v�֫�95�HKϏX�����5&�����a�e��~MĉN���l�>9��öJ�fM�eh<w
c:}?��nm%��f�顕�:
�.s�q;:�A궧�^RO٨.p��T��≱��p�31P��?�ٜ�����{�ة�7�,���D�wAn�kw�F�lwS:t'9��jHt���5�[n§%���ڒ0[6�%!�PB��W�w�0&Df.���n�5 v���nZ��@�s�q�#�����ȋU�V4;F�`7��32"S#�1#�g/�	^����Q]:����w#�J���w�,���KpI�A�l����Et>�6V����0�|�Y��*:�)�>��G^w�0��Ȑ���NЈ��zk���K�1�\�t*ӡ�$��8�O#<X6���:Ƣ!����z	���Y���\��d�dlTn{_y��ś���Ó%��,�'���a{�8B�y�����9�݊�w��)'xa��2 ��B'$"�N�Ra-yɱ,ڴ����{;�r�Q�|�e�F��s?��^���Gѕi��3b\�@A��!�0�ꬿۣˡ���J�r��^���e4
���蚸3�UCL�$��ov�.K�C*��[�hԙ��=U�wT-����wB4s=�����#E��ߌH�s�
�����#$\"!~���h�o�^���˙�X�a�w �R��U}�Q���:;��M����=y��*�Ғ��Q�_[�v��կ�G��M��'���s���굶���#.�3~�6�ƍ�e��M�F�I���=�:'�#�NteY��M��s*<�����|�Sc5��6Y_ٷ�™���k
�t������܏m��oi��k*�'�iU���J$�KFo�ρ��YO��kk�!�u">�,���\M�fD�Q*�l�մ�b�
�}����;ScVtCF�>��[��$�r�~�yjbN���e��/�9�8�?�p�����ik�Wi^ht�V�Vkp���z��)��`��k7�ͮl�p}����&�������Dt:7ȏ����?�յf�e����Ž6��������(Қ�_KmѕŽq67�]�-����T�usE0��j����њ��A�R��4+����>�)��r ��
,�<>�IJx%]�|��W�U�2vC�z8�AH8!�󜈴�l�O�<u7�
��U�^�ΌX�e�7�z�ݿ>��1���,�%*�v���JN����u%�Q~�L�H���g{��y�]w�1���M�7;uq���b��ѕ��on�s�q�%��m�����i�-=���ΚӔ���񪝰�����lY3R	�#���ȟ:f�<�k�€��t)�r)'S)6˹y�!t��=�r����w���b���}��^��Pz��Gd[�����o ��O-�W?�'�$����?q��y7x����:�s"TYD����͏HM�eH��Ő�=���+��p���f��[�m�̎U��vB(���7��M���$�؈�����鲾_����`S�k��q/!�MMĖ��f5#Ԗ�W�w����54t)G�1�_��
�}̈���nm�#�--		wm�ן|�I���v��>k����FQ��~D����jt�>^gF��Sy����c!�d�"�
��-���nے��?/~��K�d�? ��]����Ε��� �PPݝ��A�Gl��z,�m��գ����pπ(4����Kۅ��ԗ�־nl��ɑ޶T+��c���c�	~D�y��a|�q��n%���+n�����r�#���*��b.ֿ�C���E�z�M�L�.����i'�֏�e���pL�o@l8j�}v2�Z-x�Ɩ��1}�"�É7�_E�Gi�v��O��z\�t��,k�C.�rӁq�z��ס���-.R�s���?�;wC+����i�ꐉ�+0�W�����bR|��Qlϵ,��^����&z�Oݣ��*'���&�oW�jXy�܍T5��&fĤA�3"wO;��ڂVA���������*��\��V�����N�\�R<+���?�&�:��+n�Ew�kMDjk"��Y�H�}�^fDJ���;58��;����m7��7��u1 ������a��X�"�Xͫ��d|���]��%�[Z�5l#�w^�'�j��YeX�q�B
�7<+��Ab�*7�������1��r[���Չ�g.��iU�?���+�S��"�(�|+,P�:�&�͹Hi4�#��g��Z��MT����a�v4�26���P�b|�m�Йw��Yl�5-"/����(:�C:�~�J�tz4���s����"�c��#�֒�޹x���j�u
^k�Jg&g�,9�F[J��)���
�f1�"W�	�(��ԥ�%"n�W��R�ǒ�_�+�F���H]T��?Mc�����Z"�Ķ���c��!Fۄ�
��2�s1U�F��<u�ƭ;#o�<�*F��k�����G�P�*rq*f~
�X޿,N�/���:��ocF�vR�5�E���9q����P��2��'K��bl5����&R�Qq7(�^F�,����,��L�G���H]�f��U�|�!��hb#h����T1����D��"���I!��!g�/(�"�’К^�Ql��
)�F����
o	m@���,o��ϥ{(瘪���zN��
F�e��$���4�j�(4~��{MD^�"��b��,U
yCѶi�2
];�L�Usn�q3�S*�W��-���4�s-�+�eF�yT��)׉�"~˲�u��ڝ�X[Y��5X��>+�[����ֱ�U=�[?Bʨ�G�+��Q�mF��Qr�*�{QQ���kne۠QZ����4�[�qKgh�M���.k������0z:�~����jv��}Rz]ɫ�ɴw���uJ����U��n�fy���[AĽ8�n�Ȳt[l���,o)��ð�].��2��aa���x��,�;6�#o~DJR=�ι�M8��f�9�dl)�� �zŹ|��I8ѱ��_�"�
Y�"d��W%,NYD*݆U��Mc+�Xm�G��#�9?e��jC8ߐυ��fodC��pe�.�����?{�tj@OnV
�V���e����VJ��
e2�j�\�ɷ��~�MCG�G�C4�ў���F�
��2#�_�{#^}���	��&V�N�m�d�[y[�^��`�&�]��.���"��n`D�G�s@čbL!Y�a�
�4z���G@O��,�UQ��U!fn�V�z/n&C�GlO�/�j"�5��E�-�͆�Y~�C=A1�Ա�ǟ���FT��S��!{�$80��Uh� �n,Q��"�r+���,��YG]����ȇ��X�+R�a��#���,"�ZL��;U�<U3�	n�e���4���QQ����A���VQ
�\H�r�e�F���I�Ef�`Yk�ֆ(���z���E��̈Sfv�C#%�i���%�;C�VV�<ͻ��P���fB�E����,�ȷ�4u��h,k�uf�}��&�R�lĵ1��m5�=m�6m�X�D�����3the[��=�����T�>א�6��M[YDc.$W�6@*3#���_��<"9_���:q���Y$Ԧ�����Xɹ]U�f��ף���NDN[�Ai�
$���q�J�V�0�v
ra.��V:�j��bu�=�Q���Z�qR��ԛ^�V�� ���ʈ#
�նm#�n�w��8����,�**B�]�^��֩��]�'�o)���KcM��z4���eF���$V`��1���!�+h��k̰�[��\�[�m25�
��Wh�����%)B��(�"�qi��e��_)^���*�r��J٭Gc�!�8�"��G�_��Αɽ~�6��+-���D�~lD��7J]n�D4�3��s��*Z˲�m�F��-ոP�,BT+����dF���o��r�ƭɣ�ҵ|N�̮Ÿ�'�ej�����#��wi"i*W�\��-�=`ʉp�g�0�4r1Ac����{�Cn�-5�ElC=���4�+�s4J����s�����8V���ڒ�X��f0��eP߸�4������PC���q��̡S�~�UC�U��o���/p��X>]3Gõ!rk9�0o3b�50:52M0�G���(�HʉHk���V�-PFE���T7ck�Pe��O +���h�3����X�D�:�U݃��lFY�yG�C2G�X�L� P�R:�����D,�2��������9��M�ȸK��Y0�y�Y�ڏX�"�.p�z4~���,���Q�i�2;��WFT5�BϕHjg�a	���W��AV5�H�͏Hi��Y�fx4���,�ϭ��"Դ�bٛ�>T��ʉ�n���~��)�fD�RiY	��+�[�N
�5#�y*�a�θ5a�N����B+����/]�:��0	����S(z4~���+]{�	Lhz4�߬�	�y|���I�F�,\j�D���ډ(�gX��im�X�&Q�Z4j�|kƄ��('z�ŏآ+����:ڗ��,ˆ��G�������%;����{�Ϗ(S�:�S��Չ�͉X�։�Kǖ[��:9c�[��E�6��u�dZ\��[�䵐�r"TY��p��<�83BE���Mh� ��Qwj�f,*��mE%Aާx�2as"��i�V�4TŚ��ɭ,�"��J�,B����j��G��(�u��Rlz4��4�Q�jI���^�#���yw"d��hy���[�F�t�`9#�u�E�Ə��pn"r*?��m����<<ٌ�_+QyTՐR�j#e!6��d�^a'Vު��i�V�QK�ƒ���E(o�Z��)�)�,JÈ�,�z6��P��^eDS�r"�+�t��p"$���ʡ�i�V6c?='B�
���¿X�"the1DC��#�)��
jO����.Vu&�0�R�ô%awjP��LK]���O�'cv�7��fND9�Ӌ��t�D�g��<���"��W��������$Ȧ��h�g��lw�gkH;p$���y��dy3n�� L'b�Q�V���պ5 ʲY�"twƽ�C}��vc�,�m�n�S�|�ѓ���LM�tx=�3�5����XB+רӉ=�h��eY�nӸ�k��͏��r6�7�1���]�NfD3�~��ܔj+��8�z���� �s"D
��j"����JQ�<�	uN�.���V��5���D����4�h�1���~3�r��a�F�'�9���]�S3Dڱk{��D,z>WE}'"U������6�*�a-��U=��j�a��,"d�s͈|��8|�?������	`ӟi+Nh���J��3$K�C"zN�j-��enBV-�,"�e��k3��]�+e��6Sj�!�t�����{�2�������̑���J�bF`|���-6e[���z��^�TA����o_>��3b`@���IS�;I��߉��xӉX=�{QZb
J'��!�е;�M��˓s�]l9kneV�4�o�h��C֗(�A��ɣ=�‰��A����+�CI���5�j;K,����K<ݜ��J�y�D�G�_K��)�v.[3T�F�T�]��B�YfĹ�Fk��"�M#�ᡖ�Sle�h}w~���������*U�t":QUk�\Q��e�FҚm�X�"���H�B�kY�-��w���ü�)F��Y:7E%�
�M�[�;����%�NDZ��%u)�:GC?��)e��:TT=������"�=��?��k���mS�ΡS���H�����ɚ=�s"DbN����f��݃hs+WB������i-�H�NYDz'3��؈!�6�X@OK�r��=(B"�Zk��Dxr=;��jh�Dlu
�!:*B��L�7R�
�^s������7�du����w�d_Fk@�Oq얭�W�E����i�EG�ފpM�j,6����m�X�~ۦ���j;�3#����G�XY��̈^BDp�{��;5��)ih%m[qk�HFk��AK��p"n�Y"Dڢ�z��έ��"JW!W��W�uZDe6,	�ZY�ҳ̈�{�55����w�
b,`,����M�'�B"d�^|�Q�f���uvFZ� ڨ�\��(��2#��(2*��f�"�m2#�����%�����2 n�{/�X�ƒ3v8mY�M��[be�;5���5�N��.CDG<�u��͈u jl_��k:H����b�'�#�u_�*K����M���Ɖ�gy�"Tne�X����Y=�u0��*#&�$F!��1Z��X���5X�ʄ�Edja�!:#<Ot"̨=AC�����8O;-Bu"Tj:Rl�_͌��_Ȩ"c	!���]�H��γ�Q�*�WB����+Y�O�Q�E8J;])/mF�1#���SC��J{��C��$a�]�5c�!UM��`���[��e�b{/�8���� �@�����,`Н��A�uS%��Fb�Ԅ� "�D�tM�V�p���B+���$���%a��,>��ԫ��*�����nO:�T�39�>���ێ�����-�,�+����m{��a�?eE�o���cq)�͊WdӐ���rU"�I��-�<��?��V�O�Y��Ԝ0ޣ���b�>�-���o��F���H��?{�YC��<�s%��mm�Q��Rɾ~TD�Ԓ���l4h�J����\}��g����(�pqĺW�
��\E;u�J�$�;u
)Yɮ)�"w��J�)��m=Ɓ�k�˨�q���8��R}����j�-I�������Ҏ�\��=��߻���u�˔ײ�?�<^�o����?I�m_��`��r^m�bRF�
a�$R
�k͐���Ah����k��%xs-�ղ�|��% ����
[�'����=m����P�V���)w�:X���u}D�m/�p̕qkm*+����ٵ�e���i5�Jߡ����̓����P�q(�ü���H��9�5��lX��U:�Y��J�.�kDe[
��ER�"��Pz3�X)��Zr�T�<MWD��_��Tk��� �����$�V���Š�ߏ�|
ǏP'C�7�˻�WmeE�ǡ]ĪZI��О+�Ø����e�=�­`n+�c���sj~ȥ� ��P��㰪�܌��xRN��vVf���RJj ���B�+�mZ9��SDE4��-��U�J�^8]ئ�NR]��Q��z�H�7�At�S�,�(�a
çhX(�ԢlF5�1m�ȯ�5�-<��U�Ak�S<o�~=��TO�]:+,J�&�=U�|������*�B�y���/2�nL��
Oĭ�-+S�;�ZYNаb����1����cӜ��P){4���ˎ�>�X
?9B�:�
x�җj��y���#Rկы�X���(��%��d94�3l����ix�0�5�=]���]송T񾰮D�/R�!�ٷ܊T+%���Ȇ����:�MwF�DXS��2��ԪV�F?-BfFRz��C�4VSj�V�|���:�:��9vr��]S>�5T�P�q�ˏȥ���[6��#KBw�Y�X\C.U��_�b��چH�32�՞	g�ƃ�
�JX�"w���cm�05�J�h�'�`͆Ք�HU���5C���Abe;>����^`�}M.e����q�p^��VFxSNv7�n��H�^)E[�fiר�#������>d�ҔHH�k��$����J\��:!S��;�J'2i��AU
1���0e�]ʝ��[�Dj�!DB��vBDӚ��ʈ���։��cSt�V�)����6h���OeDdZHy��.�Ї~2����F�r��Y%!�e�V}��6�P�,�[6n�ݒ�p)����zh�M�?�7Uyg�I�1�"�ST]u�^i��{�V;��d�N�2R!�S1iC��O5)c�&[bXфD���L�l�3��U5��ԖD��
qٕ-'�ϫ��⍗}�����c
�<��W��6�j�U��K%R�Gܚ5���m�,��Z�f�v�%lI��S�C�:͓�XP�bB�$ݙٞ3��O1 vܽ�r����X4��jĐ�+�T���zƂ�y�v_�ҁzh��0�~�E	ND�XY��R��]��:���t�yF�IG��y��zt\��@�*�/�}W�n�GX{]�ćb�g�GHS����Ƅ1~�1h����qkcH��l~n�szU+�3�sϥ^D�y���4P�u���
��h� �A��	��K}�SNL�r�#�2;ډ�
�h�a�D�����VC�QƷ����ۢ�\��~��_Ɍ�����++�D�8���f�m��6�d�,�#������ʵ����������ңNÈ��p�
�(�zND��͛H�Z9f=E\���
x��P߫'k��(���z[��v<����C�W��)fm���zd���R2�%��)+��P�D�ֆ�tV6B)�ϭL]c��f�V�[�u`��
|o"����^T�>�.����\�W������G��
��$Z�,�JhI���$�n���อ��i^`E��Quswz��A�XŬԇVq��u��b�r)�Li���
![_�%�!ҝ�є‡���M�͌�4��*�6��7���q+R���� V�s��vP�R�C+���M���ʑʏX���QXEH�85�̶�sKj�$"7�=��Q��0+�ڑ���
�uBG���|_)^�k�]��j�F^�_T��W������%��+.
��j06��L��H��5CtHDW�S�D��QN��ND��7C�,��qh���n������Fh�g�w���57��zu������\9?=���,�f�6�
�ȶ)�,�۠ɭ2b3&�	�5���Vk�o�%���V��;Z>N݀cgLtvtu��Uϐj/d�
x�1s[V5�j�U��'ʙB���P?�u�
!���U'�N��qu��<���r�g��
����xB��D6�����e�Hg�FkE^�h��mxD���p
g�4e���DHH1ec9���t�ٵ��P�6�l��ĹX�D܉0w}��\�����C%�uo�c&[��~�}݂!�P��DՄo7e�H)���FV��B"Dj'b�����N��Nı=^�S/7Mc�U��-)�#�;��R��UN֨�,�f��Ψ����#E��$� 	s6g'�]�4Y(aY�o¶'�k?�\jG�;A�ͣ����>h7c�[ϥ,�;2*��������	��D�ND7'�X� �R.�T�/4�)������4Z=�i���~#
��,(�2v�X�=
��`�k��upl~տ�^Su�U-��𜈾%����|��0
˱�sux/N��=��_J��@��Z1Y�����Z3D���}�m��B+�<��B�I98�/����<p�:R���~�"eCFy 9������8���� ݲ!��O�+ړ���M��p�Nľ\	�8._ʵ�R��^��j��Qw+�I_Ȃ�O��u^*6d������&��h��N�Z36%h;��7�[M�(��
WRL�XӥuYDJ^��t|��lF'9B7k���YC������%����#L?"�~D�Q,?�ֲ�Zhe����Re[V�.�h\�l�^�%�{B�2��
���x����W��Uw�7y�����^1S!D̎����چ�"ĘNp�ak��ksTNĪ��O\��xv��Bۼͭl�ض�ߪ2";[E�9��Ǜ��#
á�#ʇ�6�n���G��C���,�XS$KBt�De��#9�B	�sivrRG�pO�%3�O�qn����E�	��%k���ه[)D%��Ⱦ\�*E��� B�֌�Q'VJ�fX�AN���?�:�i��u���kx��3,��j��9<s��n�X��?G�(�����{�P�+��Z�Wѻ�W(a��1�/6&f�J��7&�;�K��1c}�M;F[
����֫�!
��/��f~g)�5���8:T�5�Ȍ�,B��,�yu��釙�X���K�3ɲ���7��P��
���̳�N�/�-���j�UބcIl�t"�T�l�[ZGklj�Λʐd�!�̩���w'�akʰd�]!�֌��4+��YugH]015��lШTp���0���1�N��Y��v��U��{�n��M�̳l�j�HˢD�2�n��=KBg[Jo9<�B���}�ٞ�W
���C<i�@HS!R�b�uZ
�* ��[���S*���Xm�$vA���.��i&h��X�9v�C�����Y���*#����8���1�29�S�����j��,���eCF%��OJK��&�o�X��>�~e�y�f��7lL
ʄ�h�V�v�KO�J!�_
!N<Ī��k�(���*��|��Q�q[��tY�t�y��ѷ$&��k�8�G��G��?�gn�A�Vm��:g��/-	�fAD��4vDט�_/�&V��
Q0v
%�A���	R�Btl)�!D�;K��s"��o_h��DȨA���.f��S�:Y�8B��9�>"��N��;��:��*K�:�}5>��6"�D�N:Æ�/8O�v����j�_]��%&v�/�D�l��X�Z��Y��(��ND���5R�ED�"�-3#&-39B׍�d
i�fTg�����ݦ{�Gs��v̚"Q%�����l-�f�u8�V�D�!A'bP���bO��A`@<M�uo�ͯ��Թ�V}�������`,�p����ߴ�l�nҩQ)M_F[�$D���{��3z}q'B,'B��r_5f�'TF�\����)�5<�hЯ!E~�4u,9`zy)�WI�ո!��
Ϥp;5:��٦������{�	t��)L
2/�Y�1Lk�U
!nB����ۂ��aug쫉���ퟖHu3"�ccfDߏ�!~SM �R�-L��2HB��
���}�m�"fC�쉡a���}���M~W&�%�S=����Ʀ��&D�\k�+e� O	DENċ���sf�LGȁ��ʳt��Ʈ�_"!f��i�t�$:���JH�9�<?�;����)qIxE���g$��5F_��$O�AH�#ó!�)r�e�.�h�c�%R�kڝX)���E���4<K�h��_1Q%Y��a�2�אP�F�G�HuF�=�I�4ϥ��N��y�&�<Ƿ���	D�#��?�wD��^g�`�Z�(�hőiI��&�Ӕ!ue�{h�e� $Bz�rvh�����6?3B��)Nx���G�e6A?Bz%���c�OW��qCڄK�p%�-��F̺	��5g��ȳ�Ğ��ݒ��}I]� Vy�,	V�E)�!�ZO���q"LWb�!�	��gF�
��2s��~���ꨲ�k��-R��S$�qˤ�����G�J�ʕ�ob�KmwO��"�m>xo�J��|���)^�8��&KLyҶ���e��"�Q[�O��"����5#�ԩ�b��f�Y?B���	ˏ7EB:nY3��~3^��Е!�?08���q���`�F=&vh��Cb�!M0D�!��W��`�Z;�o&l!��4h�
�#�9�YCF���#D:�D���Ȇ�N�j�8���'7ۯkC�D���am��.|��r(���C�r%Z�!(s������
�ɷ:�"u;�{W:C-����D}3�<��IvGt������is&��6���L�l-	�J�S+4&�s��'�� �����W��0~�?!(~ԣ�B�����ˆ��7sƂ�!f�UN�gF�9�oF��s�!�9�>B�	�+��P׆��q�f�`}c"�MT���O3�3x�G1?�?��,ɗ?�%�)�plW��e�_![H�\НqЉx33�],�di�ޜ.yް�v˛�X�e�v���1g]�q�t��8�]߆�A��b?�o~�A�]W=�D�?7���<��,"�Ĕ�zٵ$��S6����܄Zzc�pMD�;�0#���f�?�@x�쭏�`ˆJ$ę��X2[(q%ķ��<oBFUA�bdX�;��C����Ǿ��-���VѤ��{2Q
��b�ːAA��Z3会��m��5#d��L6Z6d�"!n׆�$Df�ٯ���\m��=���F���_z7�O�;��[����[)z_�F��Ả�4zn���r�5CF9Q'�̈��c�9/?B��T����]ҫ۩�-Ef�9��hm�>�ۇ�&E���rOu(���G�B%(;b��/iK8���SaA��'"d��9�Ds"v;�6����Ӭ!��#�ܖ
�B���&n�xG�Q��4���й�'L�bx�=��r�F��V��/�B#��iw�Ak@2*(�����`���ؚQ��LM��4��fD�d�8�?Bv�G�Ӧ-��Z��z�QW�oL��&<"��а�wxk�����+��2]b���qlTg7�bTщ���;s"�N�ۘ����O�(�\?b`IȸJB����c�1���"R%a^M��Ŕ�2�0���ءbb����2�э��Bz	�q"&��˙!��Yl����~�슐�~��tgm�,	'J�u�4s���6������ބ�w��W"��q�ei��j�@5�Hh���]�D���ۘr�8B��Y^�G�Wq�%!����XG{��ˉ�i����Ws�
|��!(@�Gb'�JD�N�J�r� b։���ʗ0#��ľ�9!�rl�gǒtmx��LJ8��t�%����':�	�W�&*�N�Q�R
a�a��q�R��l�W�rI_��#<eGND؉�'�i���۩�ӏ��<K9/BBu5sU�J,���4d�1��ה}�����"���/X�h���N)��UC�I}���)ߑ���ü��K�?"�P׏�+[6$޵!�U�#�D��iNΈe8�'BE�t
��6
��xo%�Af�Ih���c����D��{�K[3�;�C>���u
q����a\�-��*�W^�H��鿪��b��Ҥ�����6n�.�������"����j�u{;;$��5P7�Xu6q�~�]��
fO��AZ���ri��D���w\� Ѧ9�/#�DTʷ�Dw�����G�����1�ҟ�!C��:f��ȳ_)V��UF���GȎ���6K�*x�""�wh���d��Fڰ��zmʐc}�fH�&�� �W0#��1�d)�0K�nb1�5d2B⡖����g�ߘ8�}H.F�<E�qK�s�D:��zv�Ltd\gC�|H�D�3�������=�P}�w�Ht��~�~Kb�+1mL����=1��-��{��S8��}�|��'yu��Cl�Ӝ�I�9�K���r�>��ĩ�DȘ蟨a��逿�
��	�C�ґ<�Ө~��xB���h�溶76#��#vY}K��G�kIH4b*18b�g�a=$1�eN/��_��u8�>�i䏉��� vDăp�Y����6��C"�6��n�V��^Œ�X��'~��#�D>�����؄�`{ϴ�`Z��qf_��i7�S�"�VR��#�8���.�t�&ޑUu"f�v��|ˑ��)�y��!k䧔S?ՌO�c�Ȭ
=���Z�v��kL�1��.{�c:�ȼ��-G��+�#�B��u��,���h�G���:�'�T�1'B>�2B��rV}��%^m�u]�#�[E�%d��2�;|����]�(�x�ݽ��S�n+���?˃�]}�j"�̌x?Bf�@.�$��}cbx���������/v��l��y�S���
Bf/<҉�+�_ȌZ�f���)gFZF��y�ľ�<jLD�	���	��FC��#8O�|����ˢ�P�s=��
qԉ�-�����̈}�ĵ~īZ�gp���'�gX>'��*	��e�+��W�s�ch=�d�>���)�b�2'�-͈�rB��+Xr���r/ ���?3=���n�=1��9
=��Zβ!�֌I'�͈�%��;�A~��)��@^�E����pI�	kT?��_h���TN��Xa�rU=�#l���<� bމxW3�oI��#d�gyl�D�6�U���PNe�9�O�*κ������7����.�0"nCD���J,���8�gF�<��Ԯ��%q�+!��cDgh�<y�]w9����2☎��7r���tBb�rJ_�-<��_Ԍx�!�l�-��C�Z�s)8@c���.4�x���WfݾQ��Ufw4�NQyeAĄ�3�Z?�Έum�yx�D�G���82C㈳@a��p�
�>1�;����+��x<�am,����5#��Ď0K9�>b��0�#VW#�B����N��4�܊S.g�ɷ������U1��K���qR���ҟu"�+#�f��~��j�%��5�20C૸H��&�����AL��d`�Qq���͈�%�Ϗ�#%rf��閄<�Y�Y��x_�H<؃8׆��2��8eCT��1�$��#dw�Į�:U%[�%\�W�}j">�K�+|9k�`������sj�Y�=̈S��s,���%�Y2r�"���p��>C�j�����AD��W�-��UܟfF<8ђ���
9�V�ō�ӯJ��w�A	6[!;:2N�!�r"�Ɍ8ˏ�͏�=e�����M�����M���0��&S!v[ab�j�63BΎ���%�Ӌ2_tG�D�w6���!n@��:��6�1I{�
�~fĬ%q�!�wm��H����%�%o��t�dK��m�#N��'��q�!����C�Z	9Ø�o�=�g=���,=Di>�/�z�WYt%���O韓�3�]L�}��v�q�
q��fĬ%qď�ܒ�ƕ�=E{���	<<���8��/tg�3��Yx�
1+��،��HȮ�wM�H�\xʘ�������p��8"�f�Wz�r��
���6#^ď<wv�O�[�C!�N�<�'�53�<�St�)2gO�ƼMpB)�쩆�‰�3�t?�і�L:X;��~KO�܋�?��u�c�����;��Yvk�t��;KH^jCt��	f�~�\$�?8�j����8K��B:`d
�ي�>�c@<L6^1\ɇ�!`~�
W��C:�����g��;����wog(<E����J�5Db:(OQӟdFȤ!O�$���?1�g/g�F
�/�Yj"Z=1�VvW�����03B��#䉖��`:�\����_@]��	�ǃ�2��bJ<~�!�~Ĺ[��>��Дs��#�Y��n���+�"u�fd�	"�ʯ����l��j?Ҍع-��);,����D)]��{��7�x�~�&5����b#�ѡ�F���f�\Y"q���WiSn��K�{�DY�8Mt�j{T��u6ĺ�7#n�W~Z�lj���s�k�ҋ�P�.O��DQ��o�����ʿŒ�-_�
'%�;�8�O�]p��{�<9]s=\]���/�-fĉ�쬗89�2�G8=����#���9[��?���6��_eFȁ
�tY��%e0禿>L���+L�bWh�������4�ێ���wغ������G���m���&:uP��
�/��.nr�(�aG�E���#��%!׸S���&"'O��v{dKȫ]��̅s5ŕSvx�� �/�盏�ݖ�<Е�ʜ7�9="�Q�����J|�k�D��zQ�_B�.���N�)����v����rx�D?����A<{�_}I�_�;���ʊ}cJc@�=�̈z���;\	�e��Mt�g5\<�_mz0��k�l�|���\8�r�?,f��)�쒃���1�ϛ�/<��
�^8x+s�t~����ď��۬��>W�}���0�}��O8pϺ(`7`"\,�X���'�@��
fDh��J�acb�9š�}b~��Fx���Z
=���ꍆ1�я��#]޳Fo^t���i�	�s�`y5���M��7���Mt�xb5�SN�D<��y׽��1̈v�Y;������O�Q^�hx�\����<R�aF���N<&�U�ud\�S<�����,x�|Ǎ�,%�q�<��97��ȁ��W
2&��U�t͋|�����|Ł�Y�u��^r�ux� z�����ң��y�wQ�Z���3��<؞��B�k�廀�rxӳ�㯋��1���`3���IEND�B`�PK`x1\����assets/images/wpspin_light.gifnu�[���GIF89a�������������������������������������������������������Ž�����������������������������������������������������������������������{{{{{{sssss!�NETSCAPE2.0!�	,@���p��X�S�1�"�Ȋ�d���s�X �TJt)�q2�X2��G	&Sa�$&)

%M!(!"+�,t$JC+%p"&-MB*�}
)�C!%�}!v!]*�)f!+�ZTC++)�&�C*%%(Rlm'+�st-x)npr"+��E(H�LCA!�,@���0��X�S�1�&���X	�UD�h<H��(@ RL�%��|Dp�'.L��B�@%&)%M"W(!"k+]-uB,%ro'-M�+}*�C!%
�}"u!�
*])e!O�RTVX+)P'�C!��[�k)+�"�*w)mop%+��E(H�LCA!�	,@w��pH,
-H�p@ '��P%4Ta���J �1N���h3��I�\K�̇ELFs^%JEjJ'QhjlD"q+FVGIt�y(F"�v,\D)D*^��"��BA!�,@���p��X�S�1�>���d��Ude�xM*U��@,T�PJ��x($\�R�H��h,'&)'M$X
(!%",})tB-'%)M�+"y
+�CF^z}%t!$�+}*d!�Q+TCVX+) �)�C"�(,�l*�)v�$�"��E(H�LCA!�,@u��PH�L"�P(j.�CC��t���bq��`L@��(�zr�4���
 f5JBOlK,�+Bn
�"r~XMJuw�'M%uQB*bd�C*cyKA!�,@y����*|,��pX�4�C)�D"�r5i<�"�@@(P�'��P&�H�$����b�\
`S*C+kmH(K�(++&rUuxi^$'yz{()P
SCcf�P�e�BA!�	,@s��pH,
��8h4"C��C�L��Ѐ�5x�Q�d2�X���ES$RV�*�XP�^
LD&"gbLSfhVE$"FsZM�LP�EN�)x�K}F]_���A!�,@���0��X�S�1����d�"��U� XD��
��X,+fHD0����Q
	�UI�|2*&)M'(!)

*
vB��p+M�-'$~"%,�C!)|}f�!�-��g"!+QRTC,�Z�Q"�C%X()�"**%�Wx$op&��E(H�LCA!�,@z��0�*D��i(\��i2�,�!�d}2㰁@,��$�����Ш��"$C�L"�
rH"+C)n�Ct,Y!z(O�Q,}�Q+"Cefh
�&zgkLA!�,@r��p�� ���a0��C��#$�Bч�|,
G$b��A�(��æa�d2T��hV&�eCO�OP)Yo\VgX[ MtXwv|*PR�$_
c�Xt`�BA!�	,@y��pH,
�Q�i
U
�>��GTlx#���BF�X��
�aم��"b�d2K!a�tCj)Kkj*CrF%#"'BIJKv\�FW[C

|+BoC'`ac���A!�	,@���0��X�S�1��Ŋ�d�D�UD�@�T*d+f��Lޖ��3.L����"&)	$M)o%(!

+�,�!C+"%,MB*�|)�C!$�{~~�!]
)��J+QRTCV'"$+��%�C�X"(Zm'++(�,w'pqt��E(H�LCA;PK`x1\��[����assets/images/video-thumb.jpgnu�[������JFIF��Adobed��C��C��:���
	��p
!1"AQa�2�ST	�q���BR�#3������brC�$4��U���7�csD5u�6VWw
񢲃d%�³tefv��ㄤ&F�(8��	��\

"2�BRbr�3!1Q����#SAa�Cs��4Tt5q�����c�$��%��d6D7񔤴Uu&��?ך�G����P
@(��P
@(��P
@(��P
@(��P
@(��P
@(��P
@(��P
@(��P
@(��P
@(��P
@(��P
@(��P
@(��P
@(��P
@(��P
@(��P
@(��P
@(��P
@(��P
@(��P
@(��P
@(��P
@(��P
@(��P
@(��P
@(��P
@(��P
@(��P
@(��P
@(��P
@(��P
@(��P
@(��P
@(��P
@(��P
@(��P
@(��P
@(��P
@(��P
@(��P
@(��P
@(��P
@(�4�߁]��y�mU����ś�-�*�K�~u���Wr���`�&]g'Oٷ(�/ՏR�yaNu�N'SP�\������s�����&W5�{Z*�%���qk%"���k'�P�e�!�Nf�z��o�ިu����U��)s%w��
J
����k��j�rH����H�������7��s/�b�Mo����z�p�I0����&{%*�{��u�
.��A����?��ZD�Hϵ�r��U-4M4�5�%���D�P�5K�Y�]�s��Ցg�.�Nl�m�H�ܪB*�SU�NS�S�@��褛���D�Q�V�Ǻ�~[?x��,r��m#��C�2��D�?)͗R��ߟ��,r��m#��C�2�7��qԱ}��������H������DM��u,_i���|�InI���YRօ�o]
]��rY�	[���V�<Bz%�H��%�;��T�u�Sq���:�'�����^1jb��S��4�Q%�udm&N�Y���;z���H(��P
@(��P
@(��P
@(��P
@(��P
@(��P
@(��P
@(��P
@(��P
@(���jG�^�?HUeyi+����2��T��vJǙoO��o�4u���i�����}<���M��RIB�;�W�?��icZ�)�Z�B����u4m��[����t2'S��o����p�h�'��ʤ"��骄\ŵ9b���d�)LZ��+��E��k�p������|���-Ѝ/B����Q���m�b�x���.9A3�<T��͗�	��VOkP#��bk,��3|m]��3~��'�zz��2n>d�+b�ltk� ��,����юަr�u"u����ܳ˘�1L[	'C�W^rS[MY���,?�U�2�l�rn�Lev�p]O�Y��m�~ų�������4�}�h�O�@�9̞SHod�Q�kV�(�]��_��I�R�.:�̑?
�m6k2�[�:l㛰��m3d���!nebx��P�P�oNc��&�IS�|���kkeo�}'�3|"p��jj�[��sn�fQ�e��
˹!4h��I)b5f��T�|L���$e�����ފʟ9L���)�U�Y,mUy��)Xu���LH�$�_���uw�u�����3�/�*[��[v�i$��c�#�6q�䘠eu9!3��Y���n��|u
Q��c�dROI�K��_Iʩ�6V�oX��m��(��P
@(r��s7+�(9�t�T�}��e��ʫ����H�3��Ƭ����Jɹ�K�l��E��d�x��� R�r��*�zm�	#�Oԗ1����,�Y6��K~�"�ܼU��؝�O����J���k�ls� |�؝�O����J�����A�!�'p��D��:ҧ���=v�;�r�m��$�?iN���l�]�����t:�$�7iN���l�]�����tB��I�"`<��J�����A�>D�>�%����iS����c��9襇�$��M��4�J�����A�>~ElN�'��N���l�]�����-bw	?�O�*u�Ogxz�w ��k�I�"�S�*x;��ls� �
���2���J�����A�>�E,1�ė�'��u�Ogxz�w �a�V���H��:ҧ���=v�;�r��~�'�Ȝ?�S�*x;��ls� ��
�����G�)֕<
���9܃�>ClN�'�Ju�Ogxz�w ����I�"~ҝiS����c��9�6�����ZT�6w����r@�
�;���'�)֕<
���9܃�>ClN�'�Ju�Ogxz�w ����I�"~ҝiS����c��9�6�����ZT�6w����r@�
�;���'�)֕<
���9܃�>ClN�'�Ju�Ogxz�w ����I�"~ҝiS����c��9�6�����ZT�6w����r@�
�;���'�)֕<
���9܃�>ClN�'�Ju�Ogxz�w ����I�"~ҝiS����c��9�6�����ZT�6w����r@�
�;���'�)֕<
���9܃�>ClN�'�Ju�Ogxz�w ����I�"~ҝiS����c��9�6�����ZT�6w����r@�
�;���'�)֕<
���9܃�>ClN�'�Ju�Ogxz�w ����I�"~ҝiS����c��9�6�����ZT�6w����r@�
�;���'�)֕<
���9܃�>ClN�'�Ju�Ogxz�w ����I�"~ҝiS����c��9�6�����ZT�6w����r@�
�;���'�)֕<
���9܃�>ClN�'�Ju�Ogxz�w ����I�"~ҝiS����c��9�6�����ZT�6w����r@�
�;���'�)֕<
���9܃�>ClN�'�Ju�Ogxz�w ����I�"~ҝiS����c��9�6�����ZT�6w����r@�
�;���'�)֕<
���9܃�t¤a�P
@(�W��S����t����?֣�6��MW��'�T�w��K�\��)?�;y2�I�����G��W�n�|է�֗k�וa��X�]q��ɦ����-�:9姠�ƙXk�S-9.��ATĉ�Ԭ�YI��U�
n��/b�j�[,�{��jd��X�*��EK�j�|Rge7��+�HS�a�F�c�+�/�v�ǀSY�ؔ�TMV^k����0'�i��(=�^[yW]�sf�$�-c�l)R_S��'��
�E�Y��Qʙz���Yq�N ָ�;�S?4���#�<�-���mk2������n�*�2o�3��#W
��۷�l�㜄SԚ�x���W7��[����&�>6�)[�;�k�E�s��Ңr�eِB`�>��VY�`�&w�o�
�Ȭ�Qw؀�E,:�I��y[�U��M틖��T����;�z��i��Ng7�����E@���_LZ�[$Qa��@z�Z=PW�����f[�6w�vkZ&Z��
�pI��)��NJr'4��tl6����k_H�t��i�uk���K����=o��(��P
@(:�/���O��k��h����!܋�FN.�r�$“��I��H��D�g_t�C�)xޮ��UU�����R�����ZW
ƛ�m2���I��ٷ�'zY4�j�zi�W;W��W����2Y��I��n�_O��bՌ������.�䱲���X&�cpS`�kK
�#�z�^Ke^o9��@y8I�K�\G�[v�m�_j��!7��vY�roK\V}��%��+�~���h��ƻ��4�o:�6Q���=>�"�.+,���� :�t�PK�6��5%�(�]��T�,]"�NJ���^�}ƯIJ̫}�y���:��PP��0��ZM=�f�E{��VɅtl�s�� YR�s���FFI� ;���a*�M'[���'.@�_)K��ū��;W��_ǵ+ű����
���2�c�&���͓��2rL�������B��Tʡ�*qȑD��{����LʅE�8�g��B=OK@R��`l�,��^w��3x�B��A �hB4�3��٠>y4oy��)��P��4?�3��\(B!�L�� ��;h
�7���,��N������b��Y��źC�!@U��gx3�]!����P.�
�2��sa�H�	b/�B��	(�W�6ꢧL��^&�!Gv����@[�Ѩ�Lp.\D�1��������pK�Р��pK�Р��pK�Р��pK�Р��pK�Р��pK�Р��pK�Р��pK�Р��pK�Р��pK�Р(ܨű�AlC�K�@���^�L��I:nR���SJ\��
�mk��P
@(��P
@(��P
@y�S#��P
@(���6���j�S„���P��&�5�f\�2��K�g-c���/�4�Y8�r��y't9�^-�Y���i�l�U-�L��K���.al���Pޓ|P7
j�X�ʲo�&��2��X�ؕ.�K����5HuQ�HD;8�[�iTT8B�Wz�a,�7g�{�!�=��5�����|�Z�z�Xf_�e�o'�_�=�-X�������#?�6�[C�rW�$8��$|�2�7bN2}�f�e3S�r�n�Ә��,�N!�E����|]�O9�[i�Y�����ܓ,�(�^�ᩎv�lEs�E5�)�1�E�~ȹK[��^���C�k��*�5ژ�[�X�}��N�a߫b��yp��"o"P�`��˗��.����Dnjb�S�l2���<.���7�!�M:�����¼�w��ْt�M5�~��5���ҳ
�-��eA˷�tG�
��t�v��d���&^�ƭ��5>��N1L���2n]�pn��y�IZ2u3:��x܅3#�1`�ˆ����+�$�""%�NQ�ҔkSfSkhݼ��Rq�$X&�:2�+��v�����5�.ɵG�:2NA<�nɄsU�� Sg���3����n6cV�x��7����
չ�鹴��������a%�P
@(���V�gZ�k"�1Uc�!	�v�ɍ�d�z�1��F��T�AX@@X, ;R�����
��V���AJ�R�,R�� ��|j�V��*wi����J�",��K���D����7���v�D�,��*��(P1Db�bf/bn7G��41N�%Tx�YG+��x��@ȶH�QQPK�G>�ϰO���l�ߦ��Ҡ-�>v�@p
�G᷌`�82�����~Q�&,�4	�}0��8�á@|r����ڀ���<�Dh`~QÌo+>~8P	�{!��(
����6��G`��}1����y�
�m��ʚ��SfL�6S��v�Π.���d7��8����`��8yT�FnX�M3�Lq!��`_K�m�V�����^;-��]���o�@9��[��(!w��u���.��n�Р��{-����e��B�r}�[�PBv�}
�]���o�@R8�UɊu�ˉ��M�م̤S�"d�� �!}�ir�#��(�ˁ���m����m�C�@<-����P�w��b���r��X����x/�/m@<-����P�w��b���r��X����x/�/m@<-����P�w��b���r��X����x/�/m@<-����P�w��b���r��X����x/�/m@<-����P�w��b���r��X����x/�/m@<-����P\���x��P
@(�%�]�̒r�6l��%/p@IƎ��tb�v�wG*�(��*�.��ȬB����M
N�}WD���*=�u�Vٜ��p����vΪC��*"�U��2�[!�dU�Zܭ�1�ح�?��::��r�k���Q=��h��J~[��Z����Dꫵ���7�\��>���R��ֈ2�r8�bi�Q��My�
�CU=����X���zb��Tڕ-����QCA�ɞ�5/Ҝh�Й��
�x�pg;p/	r�"�<T��DEJ��`���2۞�b�֭L�����ů��y֖�=�ލ�feٜIm
!.p��ZJ���˺���Ix塮y�֧�k�u�t�,�-Y��P��"ۼ��U�j��9���ɋ[�^��P�%B:�VEkѫd޻}['�t�����j��]��'Ykw��o(͹�^���C����V�*�?�:]��'!��sX}%�I���nE�Gi��)#6�x���o5>�S���GC7c/I�j��u���R��N�Y�Sm�ܩE�meT�6+2<H��(���ܳ^ff���0�d��@(��P
@(��_��7���2B�1�1֟�~���:��Wd]�/�T	�V��#���t�b�R����'����J�SL$S���U�T�;���l�F�X��㒬��1{,ho�@�*(@6C	eJ���#���L6e$�.��8e)�8b����buho=�#����s �ɒj@�X�I��E�$hWj��Ȋ�1�.N9�\ٍ���@�(\�dSMTH��D��r�gE=�^!9�_I@N�B81lL6��)�c����F� �L#z�҅A�F�8r�u�9H�#�UU8��Dh�i��מ&����5�SY��)�I\�"%�g�Vm/|-nŬ���Uuh�۞#�}������6q��dnMK�t�8��m]H��5��/�;剙KǛkSdn׽� ��8	�m(p�st8�z��W�#�291;7�<`
�E_�:*f8�X��b#�i�m�/?;)5���{��8��f^v=ʢ�b#��es|bSg�a���Z��ڡ�ny&����Ӄv�/k:�
��iE��Y��
�2f1L@D(hGw�|vJ#��(F�Y>T~��~�yA�`��<8;%;~�{n�,�����vx��Ej�=�)��d�"�����v�h
�D����fS����
!�3O�)�����4�r���,_y�����b��?\�o@<�i��;z�X��O�)����~�Nހx/���v���}柮S����4�r���,_y�����b��?\�o@<�i��;z�X��O�)����~�Nހx/���v���}柮S����4�r���,_y�����b��?\�o@<�i��;z�X��O�)����~�Nހx/���v���}柮S����4�r���,_y�����b��?\�o@<�i��;z�X��O�)����SrF�+P9���E�eL�2d�)��E��Z�n-�v"�tA5�x�1�@���1�v
�UL�G�@(��P
@(�����M��bT�7:Ȯ�!�y\#�r3<�S��	�⮞G$���OJ��n#�Pb�ܬ_t��"��3s��M�ҊJU�6P�5f��N��51�!�hE�m�M�)s.j��,fU4/MN��_��o��d
@(��P
@(��4�j͛�����d�bbSb=�6��~���2��6�U��$�DG�"i(�E�U)U!ȹɕT��9?sQ���,c"a1c㣙*�i�����ّ/ʑ�)}�C/��@PH� �h��T�Q$�2y�]������$w)��0�J)���z|4<��~/d�C\á0r�$،��1��)43�Վr����R��U&r�˚��4�w:�vJD;ҭ<�i`��
��]@t�޲M�ʊ�#8�'7[�NL��%����(m�69���[56r���{�Y�K�Uŷ���HÁ�j���-yK�J��r�=|�m�o�|��~��ts6f���F������%$�����*��e��+�C�[IUp���=����r�����IFʓa����ַC��@~��e8tB��������ӊy���J&�li�v����/;��T��(��1z���UiN���;�f��PC�E4��@r��z��'��|�^��؜�!D�P�kX2
I���i�|��>�bj�6?�{��z(�e��͖�l�_5��	�+.�R�o�xEG��������6�ĹOM�;K5r!�C�Z�/y"�Q	h�_�x�Ur�D�8�;(�k�����&�Ğ�Fi����Z@t�EU�Trxx��Y�N�PsG�nTm�i�Þr^"mv�Ĥ..n�|f���o\ї#K;Q�7.'Z���nc��DLr��]S`T��Å�%�ri��'f���U�����)��1��6I�ghgL@@�"@R5�#�}��y��t���5�#�}��:#�@H�\Q������Р/hO��Z�y��p�$�#��8�c��(
���ǖ#�B����g~#�B�xb3�돡@<1߈��Р���z��PFw�=q�(�#;�������\}
��G�>���g~#�B�xb3�돡@<1߈��Р���z��PFw�=q�(�#;�������\}
��G�>���g~#�B�xb3�돡@<1߈��Р���z��PFw�=q�(�#;�������\}
��G�>���g~#�B�xb3�돡@<1߈��Р���z��P�FW�3�r�ΐ����Q!�%���g7�Ԡ>g$���Ƞ�u���<R�1�l6�2=(��P
@(��P
@(��P
@(�ɍ�|>{����f�u��n�tL�d�!TU>26ܺ�`d�S���)�*��>��l�#���XE�p|e=Xs
P�����߄�T`�v��qq��u>�}���A�iw�-���lt(|۴��7�A�~F鶏X�w��(9��1gEk�"k�NJ8v�l+C*]�j���(�1�>��m5̯�u��,H��r1�ݪ����3�Kj� ��H
j_��6 e�+�V b�6�Pu��_7>i�I
_���!�X�ݜ����jМ��[ḃMYE�$dʎ���Ű�UH�@
|9�x��"�Y�5�9���s
�6�u�5�b#�{j�Y[J�G#�&�0p�Dp<J�=y�^q
H�^���
�oӍ���
n1W6�M���[f�}�F�&;p�0�v�`��O��yC��N����p�T��+�X�̩�t���=�a��}�

��l��P�?����m�p�ю�k��_�^�ݳ�1����}-(�b�e%(���K��Y�ƫ������!C��g7�=�o�b�u=ޯ�-2��~Qz��.ݵ�r�ft���$��1�N�����˛.��l��Ny��n�&��9M6�v|�E�"‚�9�.Ճt�@��Sp�߾qӹ��Dz���
�{�U�W��X����A�|����zĜ�
�,*m�UU���Ebl5F���t�>j�����OY49�����<��c0(�Q5��C�cD�˱(�!�p�"�
a�n����a�()��-��
6�$��bGPS��q�[Sѡ�n�R�&p�]O�_~A�iB
p�YN���߄�]���h6Pzn���h}۴�vCL�߯�	�۴|\��e>��Mݣ��?{)���h6�!��O�_�A�h����}���
�G��~�S����m�>.C���~��&�n��r������4v��!Dž��:O�C�ݠ-�p�l�ޛǿ�Pm�>.C���~��&�ݻG��~�S����m�>.C���~��&�n��r������4v�����߯�	�۴|\��e>��Mݣ��?{)���h6�!��O�_�A�h����}���
�G��~�S����m�>.C���~��&�n��r������4v�����߯�	�۴|\��e>��Mݣ��?{)���h6�!��O�_�A�h����}���
�G��~�S����m�>.C���~��&�n��r������4v�
T��p��P
@(�:Lݮ\�5r�Cfd�UB�Ⓜ������*�cX�KRۙ����fA��Ԧ�������)ĢgH�ES:g�)���VΎ���j�'����Z&Y���%�����CR��oYn��Y���(P:l�� r7T�7��%Gj��S�*Z���"�O�����^3��q9�^i�7���IL %)�J`��1MR�Y�f������2���E})�P
@T�����҄��S����
Q�*^��0�z��j��NK2����E���g��K2��1�bJr��(�b��S}Eo��*��ZfG��Yr���a:4mq�䂫)*y���̙qϸW�<�*7붦t����gM�wEҠ�^�ݿz��|V��S��&�Jj��@p
���u+�j›mڰ����˭�8����bj�1�6�����j<��ט��t�*2q� ��ޟG��Z�ʹ�j�=��VrF�4��_�O�h��v�E�S�0D���O[��X� � ��"�*���r�š�t�[OM"#�f,�+{_W�ap\�F�QWw�s.F�&��T)=���pE$��P*s��ߵ�^cK���9y�DtƻJ�#��k�2J�M��$f�*$}���L��%A��̛�[;��"攼��z�'\��{��y11 ��gߪ���2�͕2�ރ/��֠/��l�c�ƀ��é�����:_7&/��x1��#ǩ�4�}/�P*�:}q�(Z�0Nj��x�e�a��&�<h�s<���i$�6؜R�ҞQ�WH���ۂ���t���ٟYr�f9�V`-�T�ܶs����>M	�g�1��"��f����\Gn�𵎶T���s#5o����"�Tl�b�M�� W�ǼN��3�����@s-xh�iex�u)`6
�X�G0���@pG@j�b��|�6I����K�~��4z��EN��o�*k�t�t�C��)�r�DB��2{���t|��
-f�6�	�����g��45��P
@(��P
@(��P
�C€�[C_<Q��T�)��F�����*��W4 ����C���˷ۿ��H�Z���z��vR)7�3g�Wt�̒.�1��=�&Q"8*g~(���cU9@�Q�7�V�����(��*�n���c,��ݲ
��"�V���RE|��T� �^.Z��@(
�dz<P
@(��P�(Бv �'@
���7�%���!���mB�}.�X�k���h�RMwu�\��I�e���U�U��f�,��oW��U��B��&)
\�)K�JR�B��_�5UU5�
WW+�S#�gvffm�5��o|�H�؉e�ԧvɳ�
nS"��(��'Ӧol%o�_\u�S+��W�^	wK�rY��3[�]�+u�m%G��^?�^+n{ŵ�'p3�J9�;�!�eͳ);P�WD�onz�4�@��~r�L̺f��פ�4m�v+�ֻ&�8�az���ri��j/�nw�w7�]����\H���1'-Uv@)\�!����D��M��@�Z�?�_h���k%6�U�﫵�h�[�f��h��I6��sr��˕����J�[��%���\�on�'tc��Dž���ۑi�T�.d1JB�:ݗ��'^w���&�T��5w�ȱ�A�E�!�\�76J�fj��n�u�m��X��_V����]�I���xJdO���^
fkZ�g�{�Ѭ���0�������S�қ��_�Mj�J�'��v�om�e�'=�;�f�h��x=-��<��K�o՛�)�aG���8ي�a��} y���lٯ�5<�tLo�M[vߕl��y��jba��az�S��������3z䤈��щn�A !"� ^((
)T��2�^���=��
���b�<�O�#6SFѭ���5f_G����<�]pH������p��oq�mlR^�9��sW�|��|��in�L���l��eII���ff�+���7DgZ��b�����O�p�=O �*4q��\ƹ�_���u6]���-$�CP�.�����c�
�7{u��J=�#����Uu�N�ОfzX����n�il����*(��)�'�d��f�u������:P��S�%��gƙ~s����}74����5��m
@Y������-�o�ALK*�g�8�*b�S�&8{��ra���$mQ
�k��̠/�"P�cÆ�3evH�����}�2����g}P������D!;�Ї��86t��9A$ǁ����@"�:����t#��|�
�TC��y{��V��.�w��?���So�7(ߵ�>�=t�?k��t�֞je�����i��?f^��¾���:�ݷP8��\�n�=�"d��pE[:D�MR�1D
˼[^3�;��	,+�8�'�U�+��D����f�r���*L�3��1�]�b����#ƹ��i���\�4
6���G���؉�W"%�g���)�5�b)�Yn
�r��
JۿQ��Ef�Y%��(�B*���!�Q3��!�@@@(	{	@��.z^�o�Р%�$�@=����
��P�@=�����_2����{C�C���\�;��p=�A�{��*���@9Pw^�zʃ�:��T�׸�r������pu���;��p=�A�{��*���@9Pw^�zʃ�:��T�׸�r������pu���;��p=�A�{��*���@9Pw^�zʃ�:��T�׸�r������pu���;��p=�A�{�����ܸÆ&D�)z��@TP�T��x��P���5[�A��
�_�u��j}����O�x?���ҏأU����'N���>�z���:�J}(��5[�A��
�_�t�j}���ǯx?���ҏأU����'N���>�z���:�J}(��5[�A��
�_�t�j}���ǯx?���Җ+�@/]&�����ݐc ��yO�Mж\v���#��X�6S>�,�s�I�a�N)
����Oq�X�?��W�Q��^-_W�Si���d[�.R�2�i��)���P
@}�����}���qI�����EhW�o�jgM��2�S9��Jj��0:�o���h�'Z�{3,���2�vp�R/�؜N���Tm�������w���j���O���D��s������<�����y)�(�o���+q~�ӭ����������J?b�V��i�·�:ڟx�<1����y)�(�o���+q~�ӭ����������J?b�V��i�·�:ڟx�<1����y)�^��˯H�`��^�L,�v�a~�؍
���ti���
b�Q����j�Yu��Eڤ�����~��we:ˇc�4�zD��k̯w6DU\�m�m�}y��B�P
=s8"Q�HG��鐥��Hr�cy�B���`58���ӱG�S�#���Ѽ��m#��lCu֪:|���euU�]Y��]��p
����R���6���K[�����M����ߖˬ�h��f�1�J��6��֛v�I��)�&���#U���hє�oyt�Y�r��hR�Ĭ��&��B�F"��j�Lb������Q��|��'7M.�e�0�ii�Ʉ-��~��eE�j�$�3#����*��gM�TRb��)�h���x�<c3<�/���M�_Fss�e�,+rf�jd�#���3��"�'!��\� ap�J�šyV͘�Cfϛ�(	c&<����>�a��:[(�M�\6ux8~�Z��(�M�y�-�c@sR��z�Ѡ*�8q/`|��@T�RC��G�P��,x|���tC�<�:�Pn,<�0�
�C���=Z��8��i��C��C`�7�p�g�@h�^�t�ꁽ��;^�ZM[��N�J*Q���gmW'�`�J`(AS	h
ܼ[<�-�{ZVt����
Y3ԫ]�����PA��m6	�ߜX�"�9�d�fl��y��#dʽ煣�b�H��nƷ���$�z�Ѻ%Ȍ]�R�(	ɨ��nV����%|��6`��z�Lx|�Z�lp���|D���>W[�@UP
@(��P
@(��P
@(��P
@(
�dz<P
@(
�jy�P
@(��mF����,A394����u�m�ghf��X�P�Kҭ��:ς��x����%��YJۙ���f�c���&�ƫ5w��m��^��t��e�<������w2��TDTf�9Zȱ1�?lcl9��1M�
����W�5?��W�&cmdțy2G�o�Z�۔���՝eõ�
��[!��u���fR�)��%��RTPJR�1�ce)J^��5e���bQ�����Jꨊ����UT�;��ԣ�e|#�zfT�J�
@���w����S��-~�{'�c��Y�j����Qޝ��kw&�+���X��_h�c4Uq��tT���d6W��^3����Р�P�RlF:�k��tb�u�D�1sr	4H� ��vh(C�5��8q��k��k��K��m�S���U��[5�-��v�%z��U:��NJŗO�,~�6�^7i������[fY�$�3��`��p��veY#�v듌���9k�����#x�a{��_�{��e+v�v��ܸF-A�a�b�l�Z9������.�V��
�u�l���r�4˘�n�ks�`x���`�,O6!P�UW�m�s5��\���
HZ���@��b�I$��cf*e�"���d?��ҏfڅC�WW�ˮ;S'����{�ƻܬ�fn���5�%�)�&5ޯ�ۯ�Ω�i}�c�S`yuM��m-��N�|��֙+@��X,�ǁI���|:U�]�Vٺ#:�o�,�����%Nf	h֎��}�	j~�F"��G�]��L��<�M1s"�]��0�ؑ�p!�P4t�GV||1�=<�O��x3�՞fI=p�A�&"����I; ��Hf�+*�	L���	Ȼ��
h�$���&��D��ʑ*�W+2H����pU��08,d���cyuvY�
N�b�`���x��@А�n)R8Y#����
q)��n
S
{YRNܰcrE8p�Y�U�h&��'�{Pv�H�Gn��yQ*���/mi��l��Wdk��=�9�ۃ�R1x��(,�-���V�lUPpT� ����@��|Y��;!�-��I��J7�\��<�j+�TdCpuD2^ ���,��@؀�q1�hq��pl<�.��$����������d�}7W�(�@p�y�]vIp6v��@V�<8|� �9�g��W����a&�d
WEp��)ʊ[���P��0gƀ�Z��zE2�Q��F�&�L�|�9yA7�TH�!���rP��E93�b�Yc�]0�U�GI b���2K#u��@�O@C.�v�lZ�
 ��6��$8�������tˆ;(��n��	\\��h�3�fP�\E�jg͋�5�ͧW�\t՛��rud�Vv�QR�ӄ�3���B�S���d��dP���'�Ȧb��Κj����xĶiu�n�YoK@�5�ӕl��g�H�*RQ�e!���a!�2�@���69�g|�o=|��v�N[�M�ޔ�V���VR�"dr�-DV�|r����P �D�G��v��&�W�.�'��@J)�^���У�y[(�@(��P
@(��P
@(��P
@(
�dz<P
@(
�jy�P
@(��+Pa�8�2�$�W�A]��Q�:fć�t0��~���uv/�^nU�"m���^[r[k�ٺIu[[1}Q�z~������z�x�����v�iUѧ.�(�2�	Y�4L�b�M�i�����Jt}���C����Q��1�p�o5S���{cz9?����"���z����S�H�E�*���m_H�%�m��Ô$e�Wv�p��?PR�u�X��ω&�S�F"��^��٨��fk�aUYMCTU��Jc�yŤDQK2-v'��؝^��k�^�}�a~��\J��V��eI�p�Ύ��%��n
�Ӑk�Tb�ѩ����7���~�t�@�?8ck�����c�U��_�p�"p1@(%�4�݀���-`�e܆`&d#Y��B�Ħ�'"8c��E�:Ǿ/S@�U1�G�;��09�7mc\Y�+�-�_-��N�3l&E7շ���.ρ��D��;k5�R���I#�U��d�z[��t�-�2��~#uI��)=nHA%�F7,[�p�h�'ɠ����E#�(��
$��d���^��枻
z8���h������^�U{��R�Rc�OK�f���8܀.[�DO�ܔr���H�����\�_}���Cr���/��W)x-g�G��[�e$ړ�x���_��s�6kp�{'��^���������&E#���I�FH�������͕Rzb׈��S5�Sk�7�2EʆO����k��*��՝n�5����ޓk.6ɒ>2���m���������^2���:#Uj��k��vaZ��Nܒ6LP��I;J���6�Y��7�%G�A�k��oWg�cyIgjc@��6�7�LoVz��o��u�\����<�K&Spc�q�wY�3d��x�?U�˗�D����o��ܖ��F��P�b>N�|���Qop�,~�ͪm-5����|����{OK�N�����h�˛���j۴�#
9��BE� �ۍ�5(�%��^L���u�b�[e��m�r�ȶ�ʉ�ʭn�=�e����o�e����Ϋ_�ni<�/�_�lč�t���p�F��n��N"̶�o�2L�ʪ�VܔE��T�!�>r���긿ש���S�8��+���ԉ�gI�Y��:�gy$��r�f�yvE&B
��e�\0�e��̳��\���K9Uv�DoR�����μB���At����I4��RH��2�t�}f3��A�p���ߎ�l�F�e�B�Z�z�Yt��e��H�d1w�F*dw����K�����'1thi6R�$\9�s&���f�A�g�Dgb�7SFdU��rF$�r���i�`�%u<�4	�e�[��h��;I(����G�*n:�l��r�	͞�E��lW�qb�����p��|E�?��&�T��!�S�4�P;o��k
R���IYI1���zo�22�E�0�.�ke�^RE� ݼ��(�ST(fh����k�2�u�nx�޺J��6���i���TWPJ�>�d&p�͟Xrs�\��g2J��6�x~������"?���1�)��ï��Pr%0fݾN� E�
��Ne�|>���ŕ�/kO(R��Y�Vh��5�L�-��ίf6��nMb�]r����t��\}"�6Z<�S�~�#�6p�&��.����-۴�fK��L���P9Ql��m��e���
Lhr��2Cz䉩%WWE��>R}G�����������b�KW�5C��;�]T�I��.� a����� ��� "���v~-����瘎�kM����җ�5���ߦ�vG����b)�(��zg ��ۍ19Ę�F7E2	�h`|u<Ә�6�֘d��w74�nF�PlSȿ�)33
C�JPP[ŷb�h�I8��@�sb���C���@NX-���Lh	�5q����M�ya�>��@(��P
@(��P
@(��P
@(��L�G�@(�
CO8
@(����^��y�6ՙ������`d햪`!WS^�|���q�ὓ.\��HWM7�����:X0�u�q%��������siP9��o�2Y�;�Gv۷���틢=g��k�~:�|��	v�
B�ZT�d�%O��[{��,>cW*���lY*��}$m���c/:h�A���5A�G	�
]"���`�$�
��Ct@�!ԭ]U%-lIWr�J�Ylee�2�a��=E,�QL�B[yYZ�-�_�x&�뷆)��u���1�J=)����WuKV�J	)�r�H�{�w9���y���o]�5n���N�ez���˚SԄ�'�M���O��፫u<ļG5���v��s�*��P
� ��Q��A�K��ma�2����9�����+&��-��Fcs��V5_��_	W'��)����j%��nꌁE�E�
l@N�mC/u7])CB'*r'?�!]�NP݁�f��G5��M����M�N%*�ԕ�/Q�H�}�G��ysYw%𶭿���d��bщ������YC��J�^<t�U\�xt"���C���Rս#��ی��1���Ű���Zז��U�����r���X�t�z�ջ�.�3.�+���t>o�E%ʃ�0�]4t�V!�G
�L�L�$6Ь:�'����^j(d�/G"�[r�m�Y��曽[�����J�*�*b�^:���[{x��ˇJ��U:����'`B}MI�]�uc\/W钖�7+�36T�‘��G~����'�5r;ɳ7{�U�1O���(U7�T�[kKB������֖G��l
���7�+4��ƣ󯟍�qw��͜�t�TCK4���s.�S�@'�
yb:!x��!��(a��e�%�Y�]����s-o��Zգ[r"�n�3v2�|6�o�9�MJӾk�/�B��r�~�ALH��s4]���<DJ��h���l���tD����1C�����(�V��i�^"�fɬ���p��ڥlԥH� �~�R&]��á@r0�����k*b�rD�)�?%�;�>"� 9�)3��q����H��:M���N�;�1nE
�lQv��R!�fb�9�c��h������M�g�	�zXp��`"+ �b*�'fl�N�7(ig��zcó��P/�܎<�y���g�@��W���G��Ўv膓�nXx��ߛd�6fm�YX�h�i�L$�_$�7�ܤa*�*C�(
b<`�"�8Nj�1�{'�s��%d@�Pq2��˂Ip��
"�^��ag@j�*��hO���d<��r�?q9oOǼ����h��u) �w�^6T�S��
r` @IbnR�K����LJ����6*x��~=7C��'�e@�^7VPVΓ8���p)�L����@]�Q<ـ`�N���n8���b��>�(	T��8؏N��t�5
$!�e(��R��p
�PI�9�2	�\�a(f080�� �٦`�'a�(d��l��`PV��;`]��i�R�.{�ߖl#��d�E� ��;g�Hpb��@B�K[��7�=�&�<�uf�j�j
@l���f�U�k:���3)<�XD(����/�.�<���GW�Q�8�5��Dw�	2�7fȮa에�d��� 
���@b�{�n��ôh	�x6���F��66 O/oP����P
@(��P
@(��P
@(����G��������g^v��x�2�m坔E�c��Ⱥ�fGT�Vz%-}�֥�W�]Zz����7�.��y]��r~�b����|4z@"w�N�f��P:� LaK�����u;b
y��S���>��mLITm%^�z	���(���Xs.����H�� ?���B&dS1�����*~{.]�����p��Yr���J��kW;���-���g�1L�m#�T�6v�[y4����
.��'*N�Y����ă��+�N>��U��;ߩk�7$�6]Y+VcsY����]��U�]U/�F�����|L<�ZZ�on:iI���+�qf��vk�/p��\�#���7R�_�1q�b�*l>{#�;�wo6�+s����X����G��?�o֮��g�m[��%�9��?����+��TD�b���W��g�ny�g��(��0Ai)ٗ=�̊�|���\��9�]�r8���<>������f�U�7iH\|U�v�PW��͝�	k�##o��,��Ҏ��;�{�E5F)���;TRf��L�p&.Z�kE41eHۯ$ϒj**Yp�y�&��&j�뱮sv{��Ac/7wF�Y3P�+6���o�J��#HL��0s�
F�x�/6�1Yu���b�R�����]$l�u�{�l&�JL���R�D�n䬙J���5�빷{cY.i�~$X��i#�B�~gG�u4��e����Cv�gZ+�������tT�毴��ݿ񷔫���EmKI��IbU\۹���f���;=XH�ڳ��Կ��ܒ���\u�&��b��1x�xR㾊�A�C奵q��y<Ъ--1fpn4}
���
�=�~�.9��d$��`��r
��z�b7j�˴�8YB��
�a
��}�pƑ���Z�Ň��淣0\��莈 �&Qz/�V��1""MI[��o���x���v�s�(�c
��I���i��j-�������oz�{w��s�շ�����o�YA��៎M|£+}G�7�b�?	n�jԀ;@��
[1�z<<�6W�&��ǃ������5n�q�4�l& B�<�y�B��*ic�D�)ٓ�@;"��P	�"�L�.B��)�ñ���8��;|�
k��<���&&��sz m�ͫ��~}�h�?/7N~PK<����F,9-�����s�ܥ��m���l���89#���	��Z��c��<nb�幃ޥ��K`�l�Wʶ��n�#�
=�S(D�o(tSR�+t�e�ߕ��tʪ8w����=�����p������q�R�ȑ�l�����2��6�`�S6Ez��N��"�0���v�I��=�Q�҆ =.ʀ�>��J��K���%�v^Ħϥ��	~�wjz����h
��@Zԥϡڱ��n���*�Y�V���j�+gB�4�D�>跞8TC�RL3vE�:���"[�٣Z��VڑdJY��A0�k�O$Pv����ʤ n����2� xK�1MM�l�;al���}�Q��j`�qcWhz��}7N���� �Whz����%}hv�z=�_Z�ޏrWևm@7�ܕ���P
�%}hv�z=�_Z�ޏrWևm@7�ܕ���P
�%}hv�z=�_Z�ޏrWևm@7�ܕ���P
�%}hv�z=�_Z�ޏrWևm@7�ܕ���P
�%}hv�z=�_Z�ޏrWևm@7�ܕ���P
�%}hv�z=�_Z�ޏrWևm@}��2�Sa������2=(��5
<�a-X�!�V������U�Bfe�4Y[0�l��T�EO~�Ź���<%L�Y4��/L�z$����+%}Do->�s�m�yM�R���Ц��1�5�q��J�V�$����b����nL��(p1��B<x�(l������[�^��&�I�+������W4�9n6R�����.K��&�4$;�/K�䁌<��K�5\�}t7$'�9j����q�|�2R�j�,���CK�f]v/	��+c��7�Н���r���V.6�	sgnI�Г�l�$��Wš&*i��j�mBC�M���Ó����&M�YS�8�_F�\��\X�M%�Z)�+j��n�eI�kM�̐�&���V�N^)x�Ɣvު[ݧ��j�I�E���F�1K��E���bN�E���Hf��B�]k���¸�1G�ES^��ْY��Y��>i��c�Gg�eJ�j
�dz<P�&�j��f~p�պ�b^#��c�K��DN(���U�ZX����w�շ5!��IWV�ͻJ6���=��bżl&!;��Lj�J�K��ع��ٜM�ҩd����P]�廕Ƒ��n2��W�FO�[�ٴyg�˲�n&�n�1���M�����RQ�0�š\��l�f���Uil�~զ���+)���#�E��&���xMuK���2l���m�
�t]1Q#�j�go�[�-�b1:���&�o�.a1�,|�9��k%V�C6�6�:�U�MCG�8��̑�ˑ���	qm�vkE�Ż�-d2-�pޭ�C��E�`��WÆdb�'��ClR�X��J��fU�)��IE���X��R?�k���^�x�vf�H���g�W���%W)����M�
��/�b����}
�_
m-K��#��U6�X��<5M����g��I����3m>r�$#��KJ�`ro{�k+�s����-������5�R� {x?��i1��><�v-��e���l�����-�Ji72rw���i����$Q	=Et�Oc�7r���E��#���4"b�8lǃg���Pf	�t�ya@]�-���F(��Qv���
n�&T�ˤS�[o?�*l8�h
fze�#$�t�
����,B�G��d��.L�w��/g���C]<�R9nY� ��	6QB$�v���:Cv�gL�b�^̥1�	B����>/9YDŽ�~
B9$�D�n���9X�d�[:��3E �S`cP��A.�[q�th	3gC�t�1.=�;.n���ͬpP�j�P
�Zubjś=���h�Ցs�<|��s�5���jq���MD�d)TER�U�U1NR��O�������u9�C��s:�ʲz�i�.e�6�Ȯaq���G�a�L�!S4��0�
zb��v�|�.X?b�foX�EV��j��r��U�E��l�E8�`�2�$�p �� ��"�3�p7�@OY:����0�$)1p�y<�!�)��0�7o�:A>��:"A>�W���#}FV����:�YjΙ�֟'9�MI(�'
�.gi:L��8p�엏SO�u�-kx&��K�^̸N�Q��)K�q7�Aԝ����"P�Ǜ�:�&�����e4dl@��P��(y86PT�P
@(��P
@(��P
@(����G��������<�$��0�R�(`RI�3~P�JWI*_U���/ESQO����kT�|�i�|�'6~��B����\�3�s��3:���N�ʿ�H#m�v@���F���b�@��~�E!¨����Ě�����ߌ���,O��j��=d�Z�f��6t��fEv�PX�IdL�)�b�LQ�vUV[w�T�����]J��MȊ$"I$B��i��I��!
P�B�T�-��m�ݳ���_���I�Z�i� Y��1�n������"����{�Q��M���/_?���8�>�X�%����)؉�XC�1c,s��)���U�5���a����bXa�ͦm�F��fVe�O���BKM�,�Y�dQ���#t�D�����]R&��%�"�6�C-��g>�C�G_X�yM�l��{�0����D�Ii_v���$��r[˯��UQ��U�h��ۉ̡�vr9�P�����K{,�����1��ifO���f�\�Q�����7����;	cډY�X�PyVq';0�eq7?$����p��:9��H����Xr�}�{�g�jꦚŻj.�5�^�2�f��g�W���%W)����M�
��/�b����}�+�
|���и�4=���ULJ����w��]h%sxҬ����E�7���}n'`��#��(�&!��ѬBݪ{}���$O[d��2�[?=��me��յ���PI�$&�s��-�sa�E�����	�z`�"�ǡZd�nƷ����?Yͩ�❭�Ee��x�I�1��*يJv�)�J"�@D%��m*����.zYKv�swI��{RA�r�#�%cʒ2I���Mw>��S�tQ��j2�G��v�Mӷh�婜�L̡>�L�s�f�rr�dJ^.�����I�x��,��XW|G/Eg��3v��G�\6pr;�|��„!��y��/D-�v\Vm9j��-�e9X�
I#�,���M�a&���?���.\@�ܪ*��Sh�?����e���T� <�C9��rٜ #���1����G����}����m�
�vz�nF$fc�S�c���s5F�@�($Y̔�b�=�dR�K�s��u������8�ekI��6��t6+�+R$�y Zȹ��&R�4sc*�
�M�(*;��Z�hN5p���rƲN9Ud�h��(��Y�)�Ab��S�2��E���_�.�Q� ��>0
̈7s�(�9�'��ƈ�8�$��T{���7��󔇅h
f���M̻���l#�~
� �x�D�R��s�/dSPn�"�%�p]�`����cpI��A�x�ю�f��3:��nɻ*EUN%ً��޲i����Iq��t�E�K�!�Qb�^B2Y��i��eU�BV�'h�{M����������O}������ne7Hk5�k	
��E��B�Ͻ7�N͸�@n�8��u�	�;`��t{���U���p�r*e6���)��!���I@�T�`F�Ȏ�E
Ъu��߁C����P��XD�ȷPR����qO8f&l�\��D|�s�ª�r��n�)7y�R��D���\����y�4h�@(��P
@(��P
@(��P
@k�S#��P
@lP���P
@(�5�����@O�������V�y�x�k1��*��/��U8��P
@c�Y�U�_�y~nIU�n~.:��e�~1K���u<?�q�EN�Gʯ���h_�y�:��K
�,�U��6E�*�D�x�Ye��w�������@؈����^�:<5��y�8����V�a��ξ+����ڤ�i�C>��:�v���Yh�"�n�p#���cZ���8�x�Z;?����+���ap��
�k��DS_)TfCm.�b���}qN��PR2o�)���:c��;�M�bM��:�M@@�� %S8�ڡ�1�€��;40P2��}9�Mՠ.���L����`Q���x�ô5����m�?���P
뎁��9==�ҽr�{Q�is��Xi�����7*�c=&�Ж��H�X�i%�g�N"d� �4�^1��ꆆ5���jR�j���l�u�1�oU4Q��o�AO�F.�-P�b�KxU�� ����FL�z x�7wR\ћ�m1p'�
�K���vړk2��l�Tަ��`ݳ+��
�*EO.j&J����	�Sv�Y����m.�̄�,zvʼno��G�]���N�P���c��52k#��KQ�׭������;}��v��E�f�R:��W�:��w6�.]2�2��x�S)A3�}�7��ȭ�o�p���ˆn:&q96�L���]����xؾ)�[�rݹ��
�1r�_���˛�Nt��K"��s��y�bqLNvz�m�6&�3�Lt�UK�1s��޻�+$dy��h�:'�ѮJ���������H	��)��t���y�6�r
5k&D\r#,P�1���<lp1�Θ��)r��h	��j�Eȡ,�2P�P*���U��A�GI@:p(��n1����@f(a:�.��Q��)`)Nm��r�ͳPBv!�Ѡ>���P
@(��P
@(��P
@(��L�G�@(����5�s�O>�>|��z���Z^[���4���|n~�ө��'�o�=D�-/-��~�Y��P>	�?J�������b�����F?m�,�A�۟�t�y�����Q1KK���Ɩ~ ��m�Һu<��m�G������я�cK?j�6��]:�}�|6�#�L_���������5�s�O>�>|��&/�iyo�c�������M��WN��|�
�H���3�ߝdPk&i��z�7��Y��4�&�H�Tm,��6*��@먃ce)�)3�b�%�D�gm���`z�>zh��`u�-�я�cK?j�6��]h��}�|6�'2���1�lig�
@�&�+�SϾO��$z���Z^[���4���|n~�ө��'�o�=D�-/-��~�Y��P>	�?J�������b�����F?m�,�A�۟�t�y�����Q1KK���Ɩ~ ��m�Һu<��m�G������я�cK?j�6��]:�}�|6�#�L_�����ȵ���M�K*�B^�>�-��Vj���M�n�b]�n���r8\�Ȼ��1S9��SUqas����!�nL�?R�ZZ�j^H4qL��ۖ��<���N�Gʯ���h_�y�:��KYW�j�KlE�W�Ģ|d�35��{S��(�슷�t��!�At���-k�6���5�������ore��5��؛���*��[��6�La�y�@��H�WBu��0�>����1ې�pyH#mS�/v?4��Lj�H0|�Z�`&A�s�,��h�6	l(oVۇ����b_m[��.�N� �*����P)�x�{*ݐ�/�@`۝�{"��Ԡ.|���̬s�]so�7KY,���
�^�
@(�,��o�R�E�9m[p,\JM��H�����h������dśt�Lu9HP�Y�}<ђVgJy��r6�xɭ}�`$U`��8OL`d��A)f$�&͊ ��_֯df���|�NVU�9)+=# �s�z���Q÷�ܪeQC�9���'�������:���<P�`=�Π"��7W�%��a��l�3?3���s��@r�p�:+�C�m@�t����@��(
�9�J�
̛�S�*��1@#�Rvؐ�H�YՑ.��Y�d^��Π&��*jñ/PCР$��C��@}P
@(��P
@(��P
@(��P
_���P
@(�lsd]�c��Q@kL������j�͏�-�W&(�t�6lw�;�f�Ƭ�Y�[i�a2�5�IF�z�3xFFo
�eL ��E��cz�2�~�`5�w��<~��f�j��H�F����oq��ۄv*]\�)b�$���R*�ܦ�Y%�m���ۗ��=����ӧ�L>��Z���떮ΐ�u�������I���[I{7m6��SS���g�^�Q�������-LmSg�(\�"H�2��2�ئ�������S-2��,.�N��z���^\Պ�rE�36�Yrt˔hp�Em-�]�Ҿj�ͽ��)&$Tje�P�dH���2����U~�=��Ե\��&��oG<��"�;9$�<�U���^Eo�l�+=�d�� ���1�R��7�u=Qk�^�=��8� ����iqln�Sv�Hʻzn�޻;N�ۭzF[�Mi�zzxÖ�&r���n��9�E����D�����D����S,~�u��i��W���e���Dž�ʍ��iyoe-<9�f]�3^XW7%�L���V����j�ϩD�8��.��w�9��(5�� ���:y��{N��-U�m�bzK���yV?�V�;��N�f�����_&���G�mt�QV8A%h�1�&n�#�C�W���u�����p�}^�M�����ѭ�d^j�.�F"XƤC"鰌�=f��-��^)�k�DG�U���+t����V�^��w��5)z�ϲ�TI���^T��"�>�QҮ���ߋ_�o'�^O��šJ!����3�ñ9H��+�Q�P��ET��cX�J�䓼�Ԭ��$��X,��Ԑ�6�:�1����p����	���d��{�������ҭZ�Z�IwN���ٳG�k����ಜ�Y���^�9m���[��C�+'Z��M�*������z��
�Tt�Ʒ́g��e��Q4���V�4��ao�@V�KCn�Z���k�ڷ�f�K�͵�[��5��l��5���y�j���?ӹ�P�'�0�E�q�s�o�[w�v�H!��46[����r�{R�[;L�_��Q�+���G�Il�0?c�`?�.TeTA�A�"(�1�$\��::�s��.������੗��+��1:v��߷VM⺩�*�!w|���`1�\��.�s78X�-�(V
Pfeޤ�K139x�\��컄��
9�)ht�~�X�
��;d���*�޽H�Q�'��!ܗ��!O�j	��s���E��a6�+���`C(U�lb��[)���7�ĸbjI̢B|������(�RW��7!p��1�!����C�{����ٲ�����P
@tW�ߌC�0�@&5v���,�WV�Z�5���B��I�Q�Y4�mҸ!���� ̙D�e� p4���8�/���U+�D�>���6��گ]��b)R7C�$���s"L>�vR ��ţf�P�:�n�1@�۔��(8l�����
Q*0l�U�މ8<�t��(}�O/|n���a@s�(����Q�ctv��(����1�~n���!O��}����X��s@w��%j/�����)�����IP0�ɒ�����j�M�C�pr4�qLz6�⯄�޵���6�SH+/}�����DDm�צ�n�h
"ؾP2��0��}ǂ���~�w	�wcu����1�Wf
���zY�$�W(}��G����4ׄ��t���a�W��s}��xM^�O���5{�?w7�h���t���a�W��s}��xM^�O���5{�?w7�h���t���a�W��s}��xM^�O���5{�?w7�h���t���a�W��s}��xM^�O���5{�?w7�h���t���a�W��s}��xM^�O���5{�?w7�h���t���a�W��s}��xM^�O����øP�2`@)slS?��������2=(���U�M@����j�I�ҧ,�u���o�_,|�j��i����m:L�9c�0���|�c�U�M@����i�`��q�}���W�$ګ��j�e�N��NX�#�t�:�X�&�_��P?#.��t�=*r�\ak����˴e�v�	�Z�n;y7"�m����M…�T�U�v�\�O)�Rג������XZ�������`���]�]��ֿ���)�i��k�5ܽ﹚\��'X�P�]�uY�l�ǏI�Y3h���z�E�6��@�]w�,R��.s��S�f�~�0X��2.%��p��'&8�����Ur�=Ȭ��)��[>?�M��ݦ�~F\?ѵ�{�`��<��G��u|��M��ݦ�~F\?Ѵ�0zT厸�>�M�叒mU��5�2��I�ҧ,u���o�_,|�j��i����m:L�9c�0���|�c�U�M@����i�`��q�}���W�$,�e��gb$��
,�	x�Q�%�X�v��Il�&<Se���o�<��k�v���Sh��,��I�^;ƤUR�j�QʓE�.�++ei_{�h�,L�B�9A�bf.��:dMJo<�Ok�ukn!^��I���x�?يB��*�{jF��yU�x��r�c��^޴�,YW/������M��4���{
��-[��H"Im;�Y�dM��1.�Q7�G��v����"�KR�v�l5��YSK%=��F_�ͣ��j��z��Wl��j�\��d�
�Q��l�k0�b��M#>I�J@JS�
�[fջV��m����v�O�l�вO�$�*�N)��K�*��1\�]�T�r����S@B��O����
D�z)j0ZA�/+C*��#��hL�S�::F�LD��$�t[��*�L�12A� `.��I3Js4����Z�R1+��d��
⫤�ةɌ���݃����K@c�ۆ3�C,�T8��2�MCDK�U *y�V��){3�P�3���j�Ą:�(
�Dʠ&cb���5#�X��ϻ�j�m�C��7!���k�#��(�}@(J��(�n�d]���`�w�߽p�Vl��H�v���M͛ CEb���5���ױO;�|����>S7�Ϛ�'���ᙺ�Ө����s�I.Q�L�!�$�g��j�\w�����+��o��gS�����n	;��1*>��t��h��f�$��E#���(x�oU�x4o4�٤ZE4�$QE�����Q0Wɸ�C�QM�����\���|�O�7l�y=�ā�R1Db�wrI8h�k�Pr�Aۨu���O*N2��Š2ݯ12�2B)�t�!��"�L��M&u��Y��H"*)�ِ��Jj�P!�����0a���4��.!��Ja��9K��8���n�P�t�ˡ*���p��w�o��&�~��F���g�|�)LS-qwj*�\TӢ�M��SG�*Q�4�h���"d��ft_`)�.l�Ɵ���[����p��qA&�*ʰ-
<�ޝ���ޡ�-�t��N�\躶гPj��A=�}�v��:�p�:S��E�8\��[���i��/��{�O.�y��o�\s8b!�h
c����w"��.Y6]��(2v�e3���9����j"�&^�8p�:4��x:�z!@^C�<����� WL���[Z�r7f�E�.�8]�s:+���9u�0��!��^>���S5her�c��\l6Q������Y�n���m��.���r��7&~�E/r�Jnƀ�wu�yi���_D�Ã�oܕ�C,!�|��ȱRm��q�Dr�M�˜	m�1rI:�Jv��ڶ�Z9���p��טm���">M���1h	}����e���/�/��5!�(��Q���BEv�]��,Ne
UDO��b��\��G�^�DQ]r���	�8�Fr�3�n9Y�Q")���ܤ���M�.Z��F���Ѵ�&��$.fJ�(��ͼr+lI�b9I3���B�|�o�b�T�2j��=Ϩ�;���F�܉��Tx��,k��I߰K��2�͟�Q���ؒ�$А��m_�&�MEj����#��\຋���Ard!�8���	=��P
@(
��oS� �l(��5�����@(�6�i�@(�1��X�j
�!*R)���%&ا�CzD$��9�)�
����	���6��m�͹�sl��q]mdkw7�m[v�a�����Q❖�o7:�l��n�<��`�-���3|�ڻj�r���M�B��C���mVU%
tm\N����˜���h�k�c��t��T������(�����A}V�H���Z�f��QR�1���i����m{�e6	�K���w1
�gZh�:8[:F�K�w{�]^1�7Y�"���A.���\l�u���Ws<�(�Vy�i��Z�3q^R���7Hʻ�)��WL�ڢ�j��d�oRP�=�s�9��6=h��#D��˺h3�Y‰�7��٭��U;���u��}[�^�
[ލ��,ٷ��]���]x���.p�/'��ǦU^�p
�)���1��QCmȚ!�sz���Uf7�A��-�ʇ������e7�Mn'�R�4�U�v���=�[����.�{n�;�m:�X"ڨ�U�Y*�[�@�ܮ�s�X��h^1�'�]���uUas�}nM�V;����yO��﬏'��9�	�g�q;(+ zH�6Fk�fBݽ�X�$��f]D�J�/bC?J=���=z��W�������\|j��,��ѯ��\��5�.����X�ƫ��eɋ��7���άq0�8�S(u>��M�m��>���r��� ;LZ���XF���TZc=����s�G���_��������}U�9o5�)5��Q�"��ft�HI%N~1�z8��cՑ�Cw-�n͟�l��I�1YV�6��g�n�nݝ�]�6������,��[SV�OX�U�T��G��&%E#2�I�qM��Z�4��L�.޷��4�` f��R5�R!���aH�&(){1͗����ږ�D�m�$��H�[vtVQ5TMp2�@eR)��7��@V?�-GHH�;Б$x�+�2�.H�	c�b�!́�r�P�b0��n�
�
����-�C�$.�!2(R�?��1t�����h�w�!(��*bS�S$s��.j'�/`����J@('λ���r��OW�����%(�>v��s)�5^/f�et����tYR��o��(�6ж�.dS�B,�S!�T!��D�PDx��m\�������G9���+&���;˭�*��>����u91�UKB#�� �
��:8nA�\����ppy�(	�m<������gʟ[�߷�"۵#�X�Yњ�S�RY�7*f�.5}��KZ)$y��[:a&��W�r�&X�Q��ɼ�Y�ҏ#e�f��&r.Ԅ�1
zv�t�Y����n����y_����?��&�"JA#7�_"�aÅC}�U�S�R�H#���`ݹZ���sXd!$�U�����P���9�N��m�L�L�;E�)"��ce.P'K�2I�9�)HP1�2[��l����RP�\�\9~��2��V9��	�q����kez���.����
�P����.dzrYv"��ե�kΒ�ʺ_d���\�&d,h��(���9Q`�G5����A���-��<��b&'H"TMbn'��[�HGM�9�̎n��dLv��������{?֠&�cݎ_`��}lsP��]��t�����Tˑ����m@9���v������m@9���v������m@9���v������m@9���v������m@9���v������m@9���v������m@9���v������m@9���v������m@9���v������m@9���v������m@9���v������m@9���v�c뤩̢y
)�1M�͏�0�J@k�S#��P
@lP���P
@a�YZZ�M�n«z^R��3C4�B-�qN���H�8n�Y)�3V�(B�Nc&A)��
.�Zgk���;z�V�����&����Uޮ�5�c��o�o�����x���n�~�9�.�[Wc(�@�Up˗�ݘ�Wڟ�:]o^��nS�&w�λ���f�O�-۽Ru��Y���#{od�h�|d;�m�~+^��9�I{vE�<�{���ʻW$�b��H~�v�1!�C�E�>)�b%|�n'�[�L�ط�۱���.ڵ�J֩�/��%�pɒj'�%����V�+Yc.�V��/B5q�GWd�ᜈ��߭�_{���֍y���R7��P���6�˭���wu&��\-��+)jt���������^���%�9���*��/��U8��P
���C���Zg�
�e-��ۛ�U�"e�Fj_�>�:�ǵb�kK�Z��Ԕ��MN��Cg�{��G�7�����:�'k&*�����K���!�1�r50��0�!�l�)�n��.��oq�]OG���d��z6��#G�G��xY06"J��ek}�a�7����i�Mo/�Fv��b�v�$5�t6R��{����|�xǔ�>�wL�9�x�&B���m�өv6�EK�y:5M�ư��(J���l}m-�1��
pN��F���{
�?����W�sP9�]rFF��#�E�J�V��6FIfh�TZ��a�YA�8�d�@Lp�n%�vKgmm�o�[m������kW:+v�⵻_���M��v<֕��l�jݱ���oN_�*t���t�M$�T�1Y5��qI� @̮�)�M:�/�|�}�@~�%�i\BJG��r��x\�QA�J�u��S����&���|���U�/�_SZǝF�`�/Ɍ��٩��'@��t�-WM�xS(�1�7��.�{y���G,�GNDʠ�"%`T���0o�<��S�ΏݑJ\�rI�!!쮊e3v��2�9�E!��ɗ1������f*7���ʁ���O�k�s��~���n���~SI@�ͤa�%��P�dDD@��"=
��g��M���sJ��%
��Ѐ8�����?ҝ;|\�,
�b�.6G9%����t:2�(�i�z��|�cT���5��P��.t�L��dS4�F:���lŒH3lQʚd
��*�1D�k��ٹS��m�2tU�b�Gp���T�=(4��9���YWg\�*R�8����k@^Rjr�eo+r�C�1�p
�-�p�]�Q�P�J(>Ʒ�+�a@B��p� ERP�v�� ��rK��(oJq(�
b��%1GLr��;��#�+�v��4�K�h��kG�u9�{¦�Om�-�͢��v�\(�Su#��C(@
���5nm����d�l{UD-(|���F�~	BY0�K&V�g]�"��GrЪ)�*c����ɩY+�zL���HJɽpS9���xgN�r�͉�=z��7D�0��	|z=��8:]�&����y��$@�u��P�U@(��P
@(�8���y�>�>L�s���C�ݗ����+��QY5�5��5
�ESL�G��=1xB�(�d5㐧!��r�)����9LQ�6�bЪ�l����P
j������j���V͖n���3�l�W��"۲ț�`�v(�*wM��Nj�0a�3$S=����:��9�Rx�^3��?e�B��l�$�3!�wQ�\��s�.m�Û��֢�3�aЧ�]X�����OnNK�V�ͻ��{�Q���\f�ն� ���դ㒠�,�׎���,��\˟"$�ƪ���3_٦*MW2�{������1Ə;��ȨT-�Us"�Ζі�V���٥H��M��i�-�q������泎!�y�у����[�����z����|W���
���7K9�]׮���S�q�;c4��4	߳q�ʐ�W��0V�b�0�jU�-25�?�:��aX'[���.ۥ�z��V��w��t(��L�G�@(�
CO8
@@��H�l�ڱ���(�fP���LN� ��x��dE���)�vUz(%�܅3��AY��.s5�^Sm)�.}oNM�=�f&��(����%lG�6fZL�盰���|����|��(e6Lt�oM.TI��74z��I+��MEU؝di899��m�#Z��Iw��l�6n�]f��G�ϧ�j���9�r���Cfވ��U�K&U�ߍ�\�G2VU2ԥ#�EQ�ķceU\��&l�x{�f��;���.(�a��a����ţ��0�&ᕒ��99�#(nRv��.���5�M�~����4�`��H��^k�=�j�W��ɼf+�O�{��2�cʲ����E��	66�3GbS�N��9N���!��z����E�1�/�ٵ��4''�ג�v�em�ά�v=�u}'��6tm��e��˹c�9�܁7En��
#�S�f?��¬{?�!�ڋU֮ψcK'��EUXWs��)t�鲛���2���5����"�z{3�[;���*�c��EI��~�t�@�?8cj�O1/�f1�E_ݥ�\�
�'\�~����๭9����f�D��r�s72�ʫ揺Y��R�N�]� L�݉M�7C��:��Խ��I&�
��4uOR�i]U�[��ʋt�Y�}�\1�Ǽ�I�N�H�>��<f��r�Uov,�� �Ce7dqi����nR�\X,�$�I�h����A���"�7���Ch�����K��F!���!�\32
g�;xS*�2�c��6lT�,W6�W^5ۥ`4��kSK+[u^W����m���������YN��FJ&I���"��!�b�
tVD�����L�b��`�th��ȽE4�5Jڒ���,�v�/��m[��331�`m٩�{$C†��p��d�̛�W���e�0�Q���V��n�g�X�=�~4\�s|�y6IƼ�d��.�t��X5v�*�H�^d]��^n�m��S�{(��C��Ik�e͕2�0)�OkO������T��s�^�vz|+�Ή��N��e&�s�5��f��C�<v����Z�Y7QsW-yM���}B-�{�xh\��û��?_���9eס�t�)�@���u���up(�@��>��M��1 ����zsz�*�X��O����*�Lf���.ˏOy��=�hI�
uY��{vU��|�T��s��S�]7(�M�N\J  "�]�Vٺ#:�g�,�����ֵ���{���ը��cy�+zZ�oP��$1���"���Uj���%�(r�
��\���
4�c��d��󍝵�9
*��yxi������t�����&�J�O��K�+(ۓ98�(��u�]�.��4�һ����q�Ԧ=p$�(��@wY�v�a�/J�>g�z�j:��(ġ���ۛ�����4R.��kli��ie�q�l�W�[@ڗ��Æ�۔˺]�
���0@F��w?�^�s�,ƛ�r�z5�n�vN�Z���G�2F��6�a,tC�1ðS���1��2R�e���[oh�����]���;I�gRoPf���2&�5�9JuuѬ:�F���J�#�{j��ߘ̣�k��t(^[�o]^�溿vk&�ӻ��6�nwQ$)�҃�m#�Js�2r��:�!�C(�5r:�id��ZE[�\}��}m4QQ-;;*��ys���!�G�z�pVM��dٔh�����W�Ih�g�(��C�>~Θ�F0<����
���'�€�=vޟ�o
�w÷�#@u��Z��c?�@�k�DSUʮ�1��Cz�z���0��@n��`��4.o
_W����yN*�S�,�Bδ@��Ct\%`A��$��Pv���,���_9��Ϩ��4�:�ch��n]Gsk�ye�A�@N:wHQY;	��p)��I�*�;b���OfΚ��ad_�2�IgH,�O���y�����T�cL�}��R��q�	�}'�Q-�.+�ۀ�t�
�)Z�jco2ب�(�ݖ�7��ѭy;v�oTQE4�U��Uwe)AEO�s��q7N��&�e�@(o�h��l��\�.�����3݃�
�@�&���'(js�	�Š1��t|��W�2�fu����8���&�Y�^D���‰����u
e*�Z�رe &זww�� ���X��.�TI�n�wJ���B��S���B��tK��P
@c{�M����*�w)r�I�4�-�
eh�UK�-�	��y�dp�)����b�r�L�}�%�j~�����VC[H�WA+D���y˼��^µ�<����mX��m�1�-����{�n�q�<�2rf,cd2m��u�.౳W�K���`�O%E%n-I+����x�;�,�mr�n�#���[ےkfXq�9�ž�r�r�Бt��=H�X"�&� �fG|�q>u�cf�U)�kp�V����mOC�g��m#+]��w+Gb�ݽ�ׯe꬐�@a^pq3S�5}E[�of�G4�Q�MG�To-��6"����� ca�1��̉P���C�UT�z�ISX�EL�e3{�,y�		�6܉���ӝAa8��H)����pE�tk<��e�R�O����C5�͘v:�KQ���ī*�z�{�<웭yw;�g��c�t�H.uA&,��I@0x�����B�$��p�D8����'�j���D��|�q=N�4]3M$W�&We���wI��˹��m���k�����]�Ĩ4�fd�NAw��3�h��"V������QCV"%�_�f��#�T�Oy*qD���Vꮏ*7�m���oH�٪S���U�[E�wL�j�P��en��Yb��dK%"��ɛ)s��f�R�sYE"\�l�l��&�C�"T��fo9�ʽ�����ޗ���\����t�z�h�2�s'"�1�d2��jٳV�H�Q[u�!3�c��zu�����j����XUJKj<WW)����Z��5�8Р��2=(��5
<�(��p�Ѵn[�����#sR�Y�UVE����X�'�W![e�c��֙t4�:�*OJ꿜���җT���JvZ8��
6�O�:4u�|^�1��_C��C��F�b���42$?eY�̑��^��z��1-�����x�G�@��0�]V���I�y�I��gV3��ў���EO��&�nr�k��c^*�e�o�%em��)N��C�.nʫM.���7,���~�W�U�"U|ULQh��٪�UVH�5���X6�� �޾���4�p��QGE�䨠�jڸ/5�-��lT��g$2�f�Ʒ;�+��nI/��LJ�65��c�WU��oG��#��el��'l�Z�(
�dz<P�&�j��f~p�պ�b^#��c�K��DNc�L��[���!W��^3�m��*�ٌ݁�����"����
�Wi��K�ͮS~Cg�ѭeg���K����;��� e���!#���obZ_��r�'���A��<DZ=6F	����)�u����)�������qw���b�f�Z��Z��IwsN��׍⪜��ʍ�nC�)i��*��mE�f��<���Go�BZ�a�ԋ����{3��Ke<��l���򷩱�+:\��wZ�L���Y��n��5��ie�t���sA�X3'��)2{*Cu1t�E?ax��,�	s�W �D��mg._�]�l������-�2��*�_��]�nKM�9/c����ٶ����5*�r��:Ͻ2�V׬a��%�q���/�56b�_dE�̣^�3xK�/�SS�
�4ҥEl\�n��з�rv�5]2*�ȪJ��&�f�B1!�p✇/ּ��f�Kv�����/�?��7$��7?I������^:�P�}�o���L~o�V��2_�C������z_pƥ5/�UJn9�2�"RDS�j�*B��!�\�42��ǽ�9�2hgY��:�$�7W6�	Ͱ᝴�г���%M%"�(xR`�R�Ue�Q��8�1SΏd����6�V$��Z�[��M�6?[E���M�_$�w/5�[+����$�VMp-\�@�򊢖s3d�G�5Q~�#E���^ȹ�k35E٣D��L����f��7�by~lڃn)8s�8vݩ�:�l�u$SE4�����?%r�vIO�̡�>=`��}
��{�ɖ��C$���ru�t�|�L+rn�&h
9���>�5��s_
bW}U�n�δY��=�_�)�G�?�"|յ�m4�9~G���"Ō÷k	X��czʛr�-�V��6\(l������ߟ/4?�����Œ���{�L/Eީk^
ۜ�YD�uշ��0��D�������P9�Q���ѫ���MG�yl�vT��k��r���adQ{���᫔�Ⱥl�H�!�a�ٝ�1��pI2�z<J)3xB�6@6�l�:a�z#�8c��z�P�S� 8�O���h
����q�8Pih��d0
�C��b�±g�R�Y��<��GHG�h}=��s�[�,��U���c
"تbƱ_&S�7��Z��zy�L=���u[+*黠����1(iٖ�a��/��&�Dǭ$�\%̓ä�͎$*ʬ��_hɹR]T��'���Hb�70����Cֱ�F�"�2��'�w��=<�ۅ��g{�
۬����I���lc�OK���ʩ-���Hn�8*�A�e[��Q4�v@9�L�K�@N�P(�.���هC��@[Wt�ޟ��@Gݽo���5ܚJ���"���Īؘ���r�	z!@D޻�ͳn�Р=��;x�V�k�?�֮�	�oN抽�*�E�����.G���� Q���$#od"/=��sׂ�U��7;g�j���}��3��������[�bH��%Ȳ�n�LArS1;����%.	�O&''d�LL�H;3��r�n�{! �Ңu\<z�c���"c��"8�$`��_a�`}p�4v�@L���a�/���P$7��:�����������u���Р���_B�g[�{�}
�n���(u������_B�g[�{�}
�n���(u������_B�g[�{�}
�n���(u������_B�g[�{�}
�n���(u������_B�g[�{�}
�n���(u������_B�g[�{�}
�n���(���<d�O1G�Pt���G���������
h�#��}���a
r]n�{5$�[B
�{�deSQI5��r&i�)�%QL�>m,,�t����>���72�Ѣ|�U��6�x;��H�_���I�0�SM�S�=�o��
�x�D��qp���w7d��۽n��)!1�����{���/����b��8VDI���&9#f�����6���t���,yx	V�����$����-e�oo9?��:�1�%��a��
PH�u�Ƥ)*������xa�؍=J�d�"�2��e�^m�5�e�5μ�cѸ�h�\7$�3��^w*ӡ��`��l�H�S�s �T��V�n
ƫk/*/i�cC�̖�$M~*xn^ܳ^f���z�$�Ռi��L�G� i!}T�\�e���JR�QٍV�y�x�kq��*��/��58�u�+���	[j{����J����$F�n��<|�t�I�{wR)o�1N	saY��Z��o'�o0��T�Y.�iYov�h�+�l���\.$�K�쬋�"=��ҭ��[�f��9
�~+�ދ�����l˝�ݏc���H�[v��'fI��W���h��+=նUK��*�7f��szó
]7zջ֪�v��I�u�H��UT���0V�]"��ڏ������kf�xU�WrN��g��;���%��C��p~1�s�sl-\H쑮��2�(���B�b���͚�����+�T��Q�[�}r"�r-�Y��n�d�Mo�D�J�-,��M�b)�f�~>C5e�X���l��k�I:��%Y�J�s|�"]]��eW�F��fRG��R:JԹ�V�+�U���Ӫu#-�"`���H���m�ɐ�1�7x�j�j�̶?9je~]�F��,5�t�K+Z�t�wR^u��X�d
Y�U�_�y~nIU�n~.:��]�~1K���u:�dh]�b:��j���?y�˗�������0Mb1#s���R�3����7�u��eZ�/�L��o[�V�+B�4Ϲ3i�S�͏�8}QC�ZsTB�
�b�/K)�U0U<�8f1DG�CXh
5��Xi`<T+S9>�P #؉@k�����?`���Z�g�L�Uf����kr`��(m�
���e}gul
�����L3l'
GN>m�w�{D@�H�9��R����,�/H���v����yca�}���@v��{�ڃ�c������ّGBٗp)3��a��GAc].��zs�-�3]CA�*s&���ק7E�f�6���x[2�a'�馊����d�G-]�X�0(�%P�(��.,�a��7��&�z��Ώ�y|4=�R�As�$6߅�;8�=h��>IGdϜ�G_&�y�Yʡ���@2�U��p�p��cנ-rBQY�#���{"�@6�X�g)�k~C�NI\W��Ƌ�o���5��t9�SPdZ�4��1i��!�܍(U
�'!3f6��֮�e�zXad�%[:��V���7�]+IMYS5�:��^�;�]���ӯ���V��jB�v��nZ�Y����![�e8����3�eE̳#�ҝ,�TL�����沢*�#zFF��]e�V\�6�T��H�tSC]�I*D�^V�k��{��l�Z�v�;u���=�p���m�*�K�ǧ��j�I�uܙ��,��
<awG?+��ʫw3�����c��v���ު�Ȼ'����Pq�
d�mt�o8��E���F�b��h8�L�4K�����"�E$�"��EH;��|P8�\�3t�m�kW�"���if�"E"U^Y�(ê՜Ҋ@�ݗ����U�$�~4��{=6�N3�SP�%��*��(��jQ�}$��p�5�Hr*��1M���0<�j��mB(��M�e%2%�l�V�+!�b۵ܼx�NU�,>\�sa�6�]<Y�*�j��t6��Yh^kV����c��1}��\K<*�H����H���M�8l
��RvMԍ�g����&�iu��&݅n�+6��߳�Hê�_MJ(�Pl���c	�YB&UU( ��K�\���սOXF��8�2�#���.ȰZ�h�;y��A�(~Ieݨ�ѓ!�8TVʑLTA����4�EW	��*��T�CnϽL�'��6n�&ɂ�4D���E�I2�#\�90\�6&�J���G6y=
�p�6y���P
@(��P
@|��!D�)J�ð�= 
l��mڳ�S�r����8ARgIdE�P��t�L�C��*�d{/�^��,r�#C:�J���-�v�3��r܊fD��*�O��1.S��c��_V!_-�%k�ˤ��RA<��Ev�+sn�;��uM (r��B���9RL�p�Ce/O��v��,��4檏��P����D�~�&e[��@T)����LQٟ�@AR�.5���#�C1L��,�f/f
%��݇��8	z�(۵TC,qI�ݢ\3�|�q&nʀ��>l�60��8�%p\�/dcfX�	@~|x���6�x>�q�wj�s�HK���!�pe��5�Q���� �� P
@k�S#��P
@lP��%�+�fϴ�u�e�#-񸥈���R�]3\R�M%�n�B2g.�~�{�ɚ�)cY%��r��EO[[����$F{��%��_�a��B�	�^�����>�+�����].���I��n��]ө]�w%!H|������]xY�-V���]�Z:�6Jخ�������V8��-$��k�}�s��.m�NΈ��۲Uh��}db3s?'9vҌa]#9�j�{��qL5�g���_��m��&%��-Ei�f��K�QǕͪ�K7�o�17a�ɶ�Q����#gc%vN��#��UX�6��f��݊��
��G����)��#��،�55��S�rƋ�ƺL�-�Ka9aY�`��{7$��]ӧ�o�:v�ҫ9]@␙� D�R��Z���g�5ul�%��EU��Pc�_��9۶Q���
�ٜ{���[m�/i;t��F���o�G1��~00��������c��T��_�g*.p��påp�M����Л���Yt�JE���#��L�f/T*�{��^���jc�N�:�'�bi��p����Ԍel@ODĻ�S�t�I�պ����H7`�!�F/� Ig$:ۿf)Sr-�$���m�w_���:
m#Q,�$�#���M��]���5��NN䬋��G����a�$�-�8�I�ö�2m F�ꨩ�u�%���Ѧ�f������<*�f��l�;���_���+'m��55y����x�Z0�@��YHGmv��W )%�^�)�
�-4�Ȼ-�>Y��C�IIbI*\��f޷i��$&�^-�����\-->��})��SiA5r���J6\��WI˞R9�R��5}y�kη�]��v���f����tk{;+9�9+w�2�bC���E�9ji	E����<�pu�2�f̓l�ĥ "`BU��i���W�bU�OI��������J}Y�U�_�y~nIU4�\u�%��_���[�Z�
���L�4�Pj��@x�RgX�9
 B�����70��uy;[gR���$"��gC�l0)��9,8låX5�Wb1��gQ�o�S����g��:u9)�E�k%��t�{�0~�uZ<d���p��7H5�:l�e9C�9@J !@m����Bk�P|�9�ͱ��h����iQe��"eI�'�Sm���
C�c�ʹ�����[U�fө��������Զl�D�P@����"����r��-�0�@�Oz�p4��nZ��f�u�Z�g>������]ۗLbJn�5j�$Pc5����1P9�k���t�#l�8�C���������Pt���:0�C�@q�2˨��1�����.�`��V<���t�ؿ�����[�QDq��ƌz1RQ��rU���Q�g#�Yf)�6L�!LQ��ˠ�ñ1xq:k�Ʃu�f�w;)xYD����W*0:��T4�$r*޽���]�nr���s)i�N�H,E���e�9'p���o�v�N.��˖�`�l�zU,��v�Y�f��u���'�������n��Ww��2a��&0��֭�E�>O!�6͸��υ�����ۀ��y7�6|��,n_��'Go�����x&ۏ�.�����t�5���󛏚ӽ5�����o�Kj"U�)t�ʹ3��/���M����jV�s4�0�.�6���M��
!�v�PȢ���[B�$���ѷM�(��UC�UR���>�}��ϋR	/.G�������n��U�Ke�S<���BR�@\v�<@�s�D�m����#�\��8(���6%9>\��R�Q�P,4�ܓ{'".���H��å�fŪ��گR)hX���ٸ��@Nh�g�s�(����Ր�'�|�	*��j��C�*E ��2��_d�.�{QT�Dv�6#L�]�@� VO��Ŝ�����ݘ�7R�����nUTE4AU�*.��&u�Î���ct�
�@(o�di����z�Y:fW�^�3�N�^3TH}۶��l�P�M3|`�o)f�kG�d6i%m�BJ���$�觿'���UZ��ӵm���F럕"�'�.�p��P4���&�Ŗ9��b�Ϝ�6�/�ɔ�P
@[$�Kƿ�xQ;In�:)2g3wH���"���v�X����	)��FV��ط�4us�U�]Mة��E�^V������}��yT�v�J��,�F��%]�F&�lPp��>�2��ët�-R4�E{��oe^k����f�ݭ��OS��UP�tz7KR���&�&�zNq�n��fm�1�M&��ւiuN��[�+J�VT�I�v�D�9g�A��
ى�FƏV0�E��կ_˳Gzź�˜ٻ������
QG��dI"�k趦ei/G�ך5ν�����_H-�*�G�N���L��S0&j�!�b�?dG!�P�a1x�K�"\ijt{K�v�ۻ���r?h��2�����t��_��zE�וs�(�ɐL���]�$U�[��f�k[�rUG�@G��]��6f��r�)�&P2�U�9�\�!q���(F]͐]�O�I��U)N�G9��bS��>�Š>��ݱ�1�B�
�SMb�FjDS6pC9�&��t�Uo�`"�e��;��ٽ�ؕrBc��_PNƀ�IKԢ}��S:fL��fd�`˙%Rrs���E�<[��2Q��!�xe�?'M-�!HR$��a��h�5�����@(�6�i���rl���6n����v��DY���v���b(��0��0`!_l��R�G#��,MvE��_�v��!���'p�6�N�����x�Ξ6~H�)S9;��H�M3V���7d)̡K�s-�k�qnJ��I�Zj:3%<Il�䋺�/*��L�d�".~�
@(
�C@���a��L�E���ٳr����0�ct~�J�Ykֱ<҇)8ԭ=�q-�i�%�o�ѫUKv�1��Q�	����+��TX�B�P
@(��g�W���%W)����M�
��/�b�Ա���ȘL�U��%D��@(�<R9k���Z��3�6D��i���r����Xx��T�F5�ͬ
�C��1�Q��G��x�>��P�1���$
�s��nS�L�L�*���D� ��r�� !���4ž/����&�s�{)q��x�w\��w$r�QA��3D����&�I4�=�7bqU 6��כ�<
'ox��z˥�[2�K3v�Y��ɝ$gm+��<��H�b�).N1�	� ka���]�z~����Re]Y��+:6����j\*&PP��?!��DL�!��|8�4۹>'<,��n�~BԾ-��Ϲ���+7�mݼ��h��sm���6P�I�j�y[��F���,M�U���/k�*�,�*�i���d�R������O�e=�o���ybp�.=a[oC��*�n�v~����-�Jz*���Ac�;�͗�g:>v����u$��]pM֦�I;��e8����=jen[@o��D��v�Ds-�B�5բo��s����r��rF$��i�*�Rʹ;�
����'�r� (���p���>e��]e�ua�=���6��U��
��h��tD�!f��	�<�����Z�r%1@
9����~x��k�V�VQ��Fϱ�Rz�β#\(S�a�\��*d�O�2�]��PHD�@:����UzX[��t��&f�"�;�eAp�e�1�=j�U_bimH���9�����mܣ������.@1ܣ��U����7=�\�i@<&縣��(��}r���⏮W��s�Q����n{�>�^ҀxM�qG�+�P	��(��{J�7=�\�i@<&縣��(��}r���⏮W��s�Q����n{�>�^ҀxM�qG�+�P	��(��{J�7=�\�i@<&縣��(��}r���⏮W��s�Q����n{�>�^ҀxM�qG�+�P	��(��{J�7=�\�i@<&縣��(
��]C�L	��7OM�
_���P
���+���������F��?&Ӂu61�Z��$|��_�����V��:4���6���>�S�O䏕�+��������F��?&�����j~i����^��Y[��T��'��:��-O�?�>Vt�����+s�J�D��GSce����G�Ε�yz�enIS�O蟓h�lc�?4�H�Yҿ�/O�,���*ti��mM�}����+:W���啹�%N�?�~M�������'��.;��b"��d�#Y��ɒ|���^���N�*�
Z�g6�ÇK��Ȋ-�&c�6B���d�xƷ��
�%[�<��z�򟦿�%��[o�Q��?�~M��|[��?6�I�:��e1���b"7m���:<���6��ž�S�O�_+:W���啹�%_:4���6�u61�Z��$|��_�����V��:4���6���>�S�O�e�=1P3'��!���}�`�G
�ѧ�Oɴ���o�T��''�~��x�?�m��}:<���6��ž�S�o䏔�5��,���ty��mO�}�����1�jf�<�}B�g�.�Yc6���pN:v�A&�6I��Yu�8�)s�*�<TF�_j��}�a��X�x�4�M:Ƴŕ�}��Lo
�K%#�<sq��TS1�ߕ�G}�&�A}�2F9+I6���+�"W6�G-Վ�{�#�^6���d�T$�u�S\��JC������B,Z��M=+ܙnHk�����5+rB�˚�`���kj����V=�u�8rT��EE�TJ�	��N��6R}m2UV#3\@�;5�1�8m,��t�Ɯ���PͣX�|g�d�$�u"�������8#$�+�#o�I-NJ�{��:�GD;͉5r���tC�6�����7w�D_[;8�{�>2����8����x�Π1��X�>��gC�h�L��?�;<����y���w9˴��[�÷�w?��!V��.#����x��!J/��f�JR�V�@٫�ώ��&�%n�����P��7Q;��=ә7C�EH���6�H�se���U�0��ީ�?7�sֳ6ڥ���ۯ���/3�tݛ��կwŪ��I\� �{�D�#�h5��	��:��3U�M)x�uQ���m��H���ђ�uo��6
��(^
��fj7�ߟ�����=Zd\�m�R�BID�ؕ�@ii3A��;ݮN��k�������h�d���k�0����.(��Z��U
�2�����f�b����p��Y����΅��nm�����D��CMd�"b�N�����Qn4۲�v�����>�[f�[go���8�g<�nby�s�rS��4(��~�Ცa��nj�Q-΃?��.y��-tہ�X���>|: �50�@w�J?��Ҫ�w���d���*�!��b��P��f���%��v��/�(��8m�=s�/�2�U��4�MX�
j's��/
ۂ`m�[T���v�M`����B���"h5۝o6�j�	��
K�lr�Ⱦ��P�r-�Ov�*'s�Z�)SHحĻ�.�\�w><�O�t��k0��\Uj��O���*�وcðH^��]#�g!���N0<,�w3q�HO\�S�������|�NVM��EW/�$����*q2��s��"#@\Z0���'h�6t�6����ͳnCu�7����" �G�0����(	1
��Ϡ9(��P
@(��P
@(��P
@(�+㽼���P�@k�S#��P
@(��P
@(,h��$��f7T��˫M�1^�͵�5Qh��>�3e ~���s�ѮQ��I��GYB�@��~����k�J�H��D�ؐ�>�}1��v�Km��G=TP({��,~��6S��Wl��Y�e���n�Z���$a߫,wl�QT�p,m�Y
c"t���L�c7��Z�h�YӜ4��UQC�OSL�*R�W��z��VU��c`m�Q�Eu�f�\���UOeX��r����-Sߛ)�7Q�bU-����B�኎hf�٢i�c.n0�&\s��H7���U�"�#X�n�W
��w���|�Eb�%Jn>!�����k�VW֫_I-��
&�ԫ��XF3R4Z�"���<�5��!�9ϻ߹1�*����R��8v�]��������=�+:�ʯ����ى�W,2��2ot���n�q��֯��<OXTO@z=�F�2[�C�O�@c�m@��8��
�p��Xc����}q����,k�a�|�Ϛ4s�>t��9��)�����\��Y�J�z�6&^F͛JJՐ\�Cx�3�DC�=w�޶[�j�[tj�Ԇɔ��r̔��ˀ��4t������t#�7e�=��{��.Pj���U���K��%���@-�X��,����3�>��gT�i���m�[m����6��|�i�w�Mh@�v�+}���Z7;��j�����S 
�Pv�|�Ec�v���oj�vݮ���.Y��=�m��Yk[gf�,�ݫ-��sn��l�7��R��u`s��w��	�����3�P͈�n�,�GD�T)Lp(��U�rZķ��ٷe���j�-���v�ԯ?�d�銮��hR��S�����x����PÀ�㳆������g���Z\^���.že�W}�Iݿo"/C�����֨�'K��r�Ft��\`t��j$�%��%p��|o�xx��h&eٜ��1e厷x��k:n�c/���\��4V�E�oȝbT�{�M�����1پf��8�Ê���ٙ�)��'w#-.�̔��Je�|�E��p��GP�0�F��o�8�N3�
~l���4��0�:��h�
�0�@s�k �xb�lC��|C��@u�l�gE�$8�a�������]�HW*/�k�%�%�e�*�:Bo;
�P
@(��P
@(��P
@(��P
�;����%y���2=(��P
@(���n��t���(�O��۶|����Ljɂ(|�v���1L!�k�e�dyX�R ��>��To6�^�ȶ�RHѡ��*n��K��Z���;�ⶅ�@p��$���1�>�/�^�]�^b!W�ïz�|^}�o��n���v�9ôd-��)��W,�1^F9l��R.˰9�UQ*�y�5��,ɡ�o��� �W8O��Y?�>����=D��K՘_١���y���E}o�儽��R�E2�9�����I�>�f��C�K�/�����#�_��A��z��4?4�A��n��}K�坹���ڏn	��O��UQf��l����|��`B����"�!�ãXWC
܍7+�ve�y�U`��R�e?�u���3�KT�o7�k$0Rh�mLV
w՛f�kO�3�>2����t�G��C�
*��8��� q���'�@\L�!Nٔ
�|�€�.�x��<�egY��:~X���%�.��?�UR���-�����~,�nsq�e�{Zb����
�nU�
��zCc����4��)~+l��ys�p�k;%h��F�/��{4���w6�4���X5t囧�n7i�U 9�l�!M���Vze��N����r�#6�ɷ�)�h�ݲ 譹۱�d�������Xu�w|1��Cf��;u͖R]'��y��鄉�A�R�|M��̎b+��6�j��ɥ��*�哃e�婬��c��*/��m�[��ײ����(�Y&uê4Nъݲ��� é�*���[>zZ��Y��222�o $Y�V���B�l�J?b\���(�Ä8
����.��Y�w�3#X�nՉ�H����U�'�K�9]w��A�oݬ��-�ȧdZE}x�d��jH9ղĈ��c(�dƆU̱�͗�(|�+c��$�M��J>�t��&��"�3��C
�3DگFf�mt�<��dI�I��fl�}���
�d��c[7Muz�o��]�KE�!��l�KM���p�O�㜷u6�j�
�troE�57��u�z֔���~�	t#M�)���\Δj��r�a�b��(�1�L�����ۂؾ��nE.9H��U���n:��A���+��ɞ$�.�,ԫ��"�S�S8Lh
�8=[��J:�c2����+��-\FD��%~RQ̫۱NL~RB}���)w�f�$���mUS��9���ȘSq�7	�2J�!���(	���0��TLa�Gvn���S��{��S��{��S��{��S��{��S��{��S��{��S��{��S��{��S��{��S��{��S��{��S��{��S��{��S��{��S��{��S��{��S��{��S��{��S��{��S��{��S��{��S��{��S��{��S��{��S��{��S��{��S��{��
��0.l�0{��D�<rt���5�����@(�=>����|-n~�V��'ާ�o�ro^�EK���>�~?�����Ju��-�x����?�؟K?�����:�}�|�C׼_�R���O�����ks�R�q>�>|���/�y�'�����)N��z��P���T���A��g�@�Z��\O�O��(z���*^C� ����|-n~�S�'ާ�o�={�/!��~�Y��P>�?E)��S�������Hy�[󬕱�����P�5|l�ܹ�J���\7}��E�g9qBD:U��M�M��3\�TU"k�E��1NL��Ս+��g�p���w����>y v����M?__
@~�֟�gާ�o�s�^1GM�o,~��i��R�f�k>�>|���/��-��L��?	�~�ӭf�'�o�=wŽ7%���i�����Hњu���-����䷖?c�4�y}|)�3N��z��P���tܖ���}���/�� ?Fiֳ�S���b�����Y·3�2Y#$i��6\D�����Ml��K1I��O��l׌Zϋ����Ú�[���p4���ynM̴Eܜڬ�.1��tT-�˝�� \�T!���Z�'P�Z��3��Z�UVAJ�y�st�p��Ȕ��`HB��-��_���'sg���W�ؠa�����\��|�����t.S�u��(r$\�LR�z��!+�e��!�y�~�,��f�6�+
�ꭳvh5��	�OX*<q�@XfP�,8�L��������`�`)�3$9G�p���ȣlz�<�P
��tF��*LJg���4�F<]����]UR2I�)Hb��R�1��ǂ��Ff�/D�[x�r6������BVH�я��-�D�n���yA����!L"��M�1t5�U�c����QU����v�Z��gf��XC��FQ#A]��Ek��%�_6�s&��Ռr�ՙ1n�O3�(�����j��\�c_H*��ʱ��*���W0:
��J��jݕ�ѶigZqZ,Vz9iͥQ����ȫ�����9�8����t�Ae����U�<%�z*��V��_,0�P�0���p���&@N+�.)��7��P�@��OF��*xu<����@Ye��C�St�Ih
��mJ#©����B�p��P
@(��P
@(��P
@(��P
@(
�dz<P
@(
�jy�P
@(���2=T2Tr��8��Mţv�^���36�~�4�|��+������b߅T��O�d�.p�@(����a.��I�8��b�Hŷd�<��M���Se�~/I���u5����4A�a1�i��6��*Vݳ�Vg)�+�`P
���&��QO�JP�1�"җo���Y��X��	LDñ.Z�W�66%��;/��mf�AĦRh�?Jkj^���Vm��1��T�2��t�B��t�.���D1/����9mˌ��U8���6ܻh	 ���P�^�:b��$1�"H�"Tp�MLgi�u���۽
���������@S�d���������e���n�r��(�p5q�?f�?w�������9z��'�ˏ��3{@s�t��}������4A$�����€�+����h��a�9�A ��PnC��@}��a��y�-��4����Z�4����Z�c�6����@�������.�(@:�u��@(��P
@(��P
@(��P
@(����G����������n���%l}6�coG�ɢ[�s���˺��[pQΎH�2 LΎ����ˁN\�e�QE��*��_�$4�8}����75�>��:�|c��՛j�����oz�
�t�"�%��*],�o8)�A�9@Q�@��2�5_^�$��Nf�k0j�:J�|>ǩ������s����YsCj���9Ŀ���AE�8WOl"�����L��K�2��x�8�KVQ��$�3��]l�MM����yKU����t%�V<=$��e��,;`��"ꬤ{9Q�#e�;�*)��9�M����FK"�{��]��V���J+��t�,��Wo^\�+i����9VD������ ��1�����U�Eb�
�U8�9J0�Ƭj�t-���f�|[��D��[Ѷ�|��.���_��K�7�S����,��7dR��/�*�R�bN#��i�j��_�m�&pa@a�jD�������V�e�f/.9��Ų���:N�D>Q�����Y3&�����2�k"�W�5�~76aP�ƭ�O���qSI&�u�mUyW�'!u6V<E�ӦZ���?bVT��w.���77R�[2D���]S�tut�	�-ɓk�Y����)cںUp,؝���M���Q�-������zj2D�Z[k�%�Q�(!۶��=&�%i�>J��r��“k\�/m�Y�A�s�-d�������rYR5�z������d��j��io�ף,�a�:e4�QC~��2Y[���W��2���j��R����rJ�Ss�q��,�_��㩬��XῙK�PwR�흪�9LT��3���X��M�PiU/l�G��k��;́ҟ-v3a�&egr��LKk��Xx��J�7Do[�����2��Td₀P�&ۥbl"����(�@��}��S�OO���/�B�›�PE!͎R��C`\�va���"\1q.�7B�e(�>w̠���Ѡ���Ѡ���Ѡ���Ѡ?p�u�����P
�Se�<4�)����လ0L>�Շ���@(��P
@(��P
@(��P
@(��P�T��x��P�4�^�}mGF��$���h�ˑ'3�נp>X���9O���(�M�E4J�}����76d�SW��i������5�e��6�v=E\�,�e$�3ə��d�(c���_:0�1�);�Q4�4���ī�Īڥ�lܮ�w+�.��vE/qIJ��t*�z�UO9@wj�;Et��(��rb!T#25���5r�E3�J���;�Ѝ1�~�H�.$W�P�ţ;;;>�,���:bI�"?Hs&c�҈U������k6�b�D��lK:ꪳxJ���XƐ��wa�5֨N�#[#�(`�7�)%RK�I�d��$~��'�)r�2��2t7�x��$x<����Om�m��,�1�c$X�G���r���=b��t��EY�7E5>!��#X��X�����̷e[n��uLOF
�߭]4�,��ڷS�K�sY�~W�i|W=¨���_�R��Z
F¸��|�]���h��tVN����q|��M�*�2���|��6�$1�]����#J���|&���tnT��-��am[�V�����
*yW+���G3f�%W�@�\�*����ʯ��L5k�}�%�����ؙ?�g�/3�����L�fl۹�\��^�&��Q��h��e]r^�/[��K�Kʬ����P1�l�V��2�:�yٛ)S�cQ#�׬GF�3��>AEn����]^�6��m��9{��&���F�GL-��Y��Yd�ID�T�]	�,��}w\M�c�!0��G)���r
�x����/�]26e]0"��v�z���/d܎��L��j�շ�u���;��6�����6�-F�h�8���͠�m�s>�n8��T�vb�
�@�R̭=ϋ|�m�ȧ������Qz)e�Fɒ�cGu����a⤚�F�K1Pc*���50�ƯP#���U
�k.��t�MA+B��$�j��R����rJ������3�o�)~����:��c��e/�A�K[�v���0URX�κ�c��e7�A�T���s�����<�^v'𳿚�u��}M�n�޶�Q�5Ob*0qA@(%�*�3�0Ǥ=T(�
��L���r����9P�����Nsc��yT"��;�NVƑ���f\�J8:�'y�m%x�4�dg^!(��T�;$UV-t�~�ϼED}��jМ�-�~

-�9�����SH�,�#��hk�ݖH����"EJ[{�H~2�[y���2W�nKT$V��k=��sr���n$3$�!�N�Y��f��DܒL��n^}ڈ��Z�QƼ-sI��o��Z�f�)c��9F6�Rn!6�&]྘���y�z�l䈕�T͔�N4����O�mJ�x��"�"�%��l�/`�[��.��ɽW}�ܬs&�dJSP�@(���9����N��d�Δ��qP�<���
Rl�?h��P
@(��P
@(��P
@(��P
@k�S#��P
@lP��Tu{L���__� ��8'Q,#���Y��f%qp�֝�AT�Y�;9U���YN)Lb)v�Cc]��[�L0<Z5�\5d�ٯ���k?f����E������F�t���z�տp�.%"\�V�K9<(Ki�ts$��r�b�l�O%�X��K�/q�6�n
-K����4�lk��u��]�9w�w���8ש9}#��⟻��i��_0r�7��y6	�9@�Y3����;F�h�V�Dnզ�W!����^6|��f��5e�+�i[GPc�/���x��2�b�5���h��|�g�JDH
�Đ�8nʉw���i��"&�n��KV
:f�O�ʗ�vʛ�a]�.���N�i-�!��z6�RnE���$����	yA� �\�:�+f���Nc^ĺʙ�io��v5�E�Wt���wxMwt�#�
��P#H�mPӅ{%~Zz��6RU���q��M����_�nj&pC^A�5GG��6D��ͺ���<v�0�D.�N��D94�5��m��sCe�&�m��I�{�铻�Ⴖ!��\��k�ET���t �,[�D���۵�M�s�#�Z�G��vMu%5Ud�
*��������S���$`l-I�����I��}[��U�tB&ҳ�N4��� �vާ1�[�n�;G�|�U%�5�4RCSSJ��%�e�&���ɏ+uj�k44�[�����AK��vld틢�cx�M2��HE3%�Ǖ	W1/ >�c�Z�z׊�L�-˻�k�)B�I���l��Vh4YJ�ͣޭ��ٽ��l��|�`�壤x@J��X� %Ī$�
�V�4�eF����z�.�[(c)�N[�Ø��ڸ��#���%_������7:�g��Ͽ���V��?��K��/��*������������^:��������u-n�ګ3��UI`P
:���g����R���y�v���3<�a�y؟��kM�&!�7ٺ#z�G���=�����#��r��P��~�Ҏ���
2`Q��!�`�.;<��Z��
֊>���f�t#r��twKM/��]�\���ׄ]E�y�%L5[UY"�ާC$N�7o^�{��."^0H��*vmL��X�z{�D�Vt�s�ٻ�[ܕw��t�l���)_f4��t�9��-����Xv�E�!M\�#�UaS���Zn0c|i$�,D��
�](ݙϾ��˓�Pd���I4�Q�۹�{7(��u�\7=w�QB�06�ʗ���"�.o���ξé�/�������L�Z��OjϏn���G�뫢궭���-�;
w��\��&�&|��(���6\��Z�g��XfW��n��]�*�ѭ뷴����*��v�|)"�u�A{N�wM*�z�*��L�
�*�S{I�6�?ƇsMN̩V�A���L���_��&L��o���X��J{*:E��۷np}�'�7��dQ{W������bY��fu��v��9�jKy;��7�V���j�.�d	)>1�`���΃G�&T�P�EoJa��G�#����v�i^�Wi�����R�S�q��mr���-o0�E��8�zFSG��r�t�d�V�֛%�⵾��d.X �FH��1c�b�\��3`r
ܯ.L�L��M�SXY���Z=�u�z��;'|p�k~�"�a�	�0յtoE�F�E�4���zL�u��
C�4��TA��/Ox'I���*6S*d��:����:R�rئ!&��ҽ��Vvf�����Ob����(�}J�[��K���kOO���A����G�fX[���.@L�=Nj���S��E�uJEe]LQ�ӳ]�:��%�v��Ɂ�{��j�t�^[i`yn�*���^�jx;,q$< gE��r
�Xv(���o�Ӈ)-��J�PN���V6?<��'���H��~���	���\�����L���N�$n�S'�D�@sP
@(��P
@(��P
@(��P
@(��P�T��x��P�4�0�}ףr~��~��.�l���߿f��~Կ%oo�$�.en�����3�a��@a>q��=@�jm�V���?���7گ��?�V2������V~�o񟺿�W=c���N��9��;���_f��2=(Ǥ?�
5�?��c��{﫬j�j^#�|k�꯺���E�b������:��~��	��^����dE�Y|wE�w�~M�?�?�m쿔濖��_p)�'���]�ʮ���lo�L�+�lC����v�>��ՈGT��4��_�d����?ܪ�+���j.r�˰s非��ݽ�{����U�9���/݋W?���\��]��ٲ�q�ߌI���S����Wh_���uv~�q����3������YoŰ�X�����w���/�?��7$��7?I��~1K���u5����7�)��Zݳ�Vg)�����u�?���)��
*�����u}6fy���?���֛�LC�o�tF���
���{Q��
@(d��G����>�@uo���_�������Z���Ku#����W����"�:���m�?s^��X�X�����+��?�V3��_)���z�8�{9�~����y�׮[��&��b�R���m<�O��!�Y����d��G��3�O��Y���g�O���Q��?+"�nc�~��Us�����ku;��G?W��G�����`���?�=�r}]���c���}g�/3��ľw�f�ݼ�/��߆�s�}k����e??�����_���>���/���	�V�p�4�蟳��ֵ����.o9�Q�{�-7W���F�U��?���h�O�w�$�uo�5|��k>S7�Q�o�^���_�v���p��%�/�����_���5�e�~��>��^��G��n^�֟�Q�����H��M/�g(4������i�%(�]���}~�q컝O��/�s�evw���x7M��sK��MW;���舥��}ӿ�~���+�������+[����o���.���
޸��=�Tgq~/�>��;E��t�~�k��>����~�5~��/2[/�}��E�O���>���4�7�b�_���|����P
@(��P
@(��P
@(��P
@(����PK`x1\Cߧ
RR(assets/images/jquery.selectBox-arrow.pngnu�[����PNG


IHDR.i�M�tEXtSoftwareAdobe ImageReadyq�e<"iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS6 (Windows)" xmpMM:InstanceID="xmp.iid:8B961221747C11E4B6A9E2BCD367C620" xmpMM:DocumentID="xmp.did:8B961222747C11E4B6A9E2BCD367C620"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:8B96121F747C11E4B6A9E2BCD367C620" stRef:documentID="xmp.did:8B961220747C11E4B6A9E2BCD367C620"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>z�\��IDATx�b���?�PLC�:|��D|�s��E�z@�0���d�-���Lt�h�'5B�> �'�Y@!��"+�VR�bM ��,*9�O�">��S��B@\�įba*9�	��"��q#�2g=�C����xu<4�y�l��JYP9j�i�d�+�^�@3$}���I���fTF�+`m��:|�; �o�&����IEND�B`�PK`x1\��)O����license.txtnu�[���Copyright 2013-2021 Your Inspiration Solutions (email : plugins@yithemes.com)

This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA

YITH WooCommerce Wishlist is released under the GPL

=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=

  GNU GENERAL PUBLIC LICENSE
                       Version 3, 29 June 2007

 Copyright © 2007 Free Software Foundation, Inc. <https://fsf.org/>
 Everyone is permitted to copy and distribute verbatim copies
 of this license document, but changing it is not allowed.

                            Preamble

  The GNU General Public License is a free, copyleft license for
software and other kinds of works.

  The licenses for most software and other practical works are designed
to take away your freedom to share and change the works.  By contrast,
the GNU General Public License is intended to guarantee your freedom to
share and change all versions of a program--to make sure it remains free
software for all its users.  We, the Free Software Foundation, use the
GNU General Public License for most of our software; it applies also to
any other work released this way by its authors.  You can apply it to
your programs, too.

  When we speak of free software, we are referring to freedom, not
price.  Our General Public Licenses are designed to make sure that you
have the freedom to distribute copies of free software (and charge for
them if you wish), that you receive source code or can get it if you
want it, that you can change the software or use pieces of it in new
free programs, and that you know you can do these things.

  To protect your rights, we need to prevent others from denying you
these rights or asking you to surrender the rights.  Therefore, you have
certain responsibilities if you distribute copies of the software, or if
you modify it: responsibilities to respect the freedom of others.

  For example, if you distribute copies of such a program, whether
gratis or for a fee, you must pass on to the recipients the same
freedoms that you received.  You must make sure that they, too, receive
or can get the source code.  And you must show them these terms so they
know their rights.

  Developers that use the GNU GPL protect your rights with two steps:
(1) assert copyright on the software, and (2) offer you this License
giving you legal permission to copy, distribute and/or modify it.

  For the developers' and authors' protection, the GPL clearly explains
that there is no warranty for this free software.  For both users' and
authors' sake, the GPL requires that modified versions be marked as
changed, so that their problems will not be attributed erroneously to
authors of previous versions.

  Some devices are designed to deny users access to install or run
modified versions of the software inside them, although the manufacturer
can do so.  This is fundamentally incompatible with the aim of
protecting users' freedom to change the software.  The systematic
pattern of such abuse occurs in the area of products for individuals to
use, which is precisely where it is most unacceptable.  Therefore, we
have designed this version of the GPL to prohibit the practice for those
products.  If such problems arise substantially in other domains, we
stand ready to extend this provision to those domains in future versions
of the GPL, as needed to protect the freedom of users.

  Finally, every program is threatened constantly by software patents.
States should not allow patents to restrict development and use of
software on general-purpose computers, but in those that do, we wish to
avoid the special danger that patents applied to a free program could
make it effectively proprietary.  To prevent this, the GPL assures that
patents cannot be used to render the program non-free.

  The precise terms and conditions for copying, distribution and
modification follow.

                       TERMS AND CONDITIONS

  0. Definitions.

  "This License" refers to version 3 of the GNU General Public License.

  "Copyright" also means copyright-like laws that apply to other kinds of
works, such as semiconductor masks.

  "The Program" refers to any copyrightable work licensed under this
License.  Each licensee is addressed as "you".  "Licensees" and
"recipients" may be individuals or organizations.

  To "modify" a work means to copy from or adapt all or part of the work
in a fashion requiring copyright permission, other than the making of an
exact copy.  The resulting work is called a "modified version" of the
earlier work or a work "based on" the earlier work.

  A "covered work" means either the unmodified Program or a work based
on the Program.

  To "propagate" a work means to do anything with it that, without
permission, would make you directly or secondarily liable for
infringement under applicable copyright law, except executing it on a
computer or modifying a private copy.  Propagation includes copying,
distribution (with or without modification), making available to the
public, and in some countries other activities as well.

  To "convey" a work means any kind of propagation that enables other
parties to make or receive copies.  Mere interaction with a user through
a computer network, with no transfer of a copy, is not conveying.

  An interactive user interface displays "Appropriate Legal Notices"
to the extent that it includes a convenient and prominently visible
feature that (1) displays an appropriate copyright notice, and (2)
tells the user that there is no warranty for the work (except to the
extent that warranties are provided), that licensees may convey the
work under this License, and how to view a copy of this License.  If
the interface presents a list of user commands or options, such as a
menu, a prominent item in the list meets this criterion.

  1. Source Code.

  The "source code" for a work means the preferred form of the work
for making modifications to it.  "Object code" means any non-source
form of a work.

  A "Standard Interface" means an interface that either is an official
standard defined by a recognized standards body, or, in the case of
interfaces specified for a particular programming language, one that
is widely used among developers working in that language.

  The "System Libraries" of an executable work include anything, other
than the work as a whole, that (a) is included in the normal form of
packaging a Major Component, but which is not part of that Major
Component, and (b) serves only to enable use of the work with that
Major Component, or to implement a Standard Interface for which an
implementation is available to the public in source code form.  A
"Major Component", in this context, means a major essential component
(kernel, window system, and so on) of the specific operating system
(if any) on which the executable work runs, or a compiler used to
produce the work, or an object code interpreter used to run it.

  The "Corresponding Source" for a work in object code form means all
the source code needed to generate, install, and (for an executable
work) run the object code and to modify the work, including scripts to
control those activities.  However, it does not include the work's
System Libraries, or general-purpose tools or generally available free
programs which are used unmodified in performing those activities but
which are not part of the work.  For example, Corresponding Source
includes interface definition files associated with source files for
the work, and the source code for shared libraries and dynamically
linked subprograms that the work is specifically designed to require,
such as by intimate data communication or control flow between those
subprograms and other parts of the work.

  The Corresponding Source need not include anything that users
can regenerate automatically from other parts of the Corresponding
Source.

  The Corresponding Source for a work in source code form is that
same work.

  2. Basic Permissions.

  All rights granted under this License are granted for the term of
copyright on the Program, and are irrevocable provided the stated
conditions are met.  This License explicitly affirms your unlimited
permission to run the unmodified Program.  The output from running a
covered work is covered by this License only if the output, given its
content, constitutes a covered work.  This License acknowledges your
rights of fair use or other equivalent, as provided by copyright law.

  You may make, run and propagate covered works that you do not
convey, without conditions so long as your license otherwise remains
in force.  You may convey covered works to others for the sole purpose
of having them make modifications exclusively for you, or provide you
with facilities for running those works, provided that you comply with
the terms of this License in conveying all material for which you do
not control copyright.  Those thus making or running the covered works
for you must do so exclusively on your behalf, under your direction
and control, on terms that prohibit them from making any copies of
your copyrighted material outside their relationship with you.

  Conveying under any other circumstances is permitted solely under
the conditions stated below.  Sublicensing is not allowed; section 10
makes it unnecessary.

  3. Protecting Users' Legal Rights From Anti-Circumvention Law.

  No covered work shall be deemed part of an effective technological
measure under any applicable law fulfilling obligations under article
11 of the WIPO copyright treaty adopted on 20 December 1996, or
similar laws prohibiting or restricting circumvention of such
measures.

  When you convey a covered work, you waive any legal power to forbid
circumvention of technological measures to the extent such circumvention
is effected by exercising rights under this License with respect to
the covered work, and you disclaim any intention to limit operation or
modification of the work as a means of enforcing, against the work's
users, your or third parties' legal rights to forbid circumvention of
technological measures.

  4. Conveying Verbatim Copies.

  You may convey verbatim copies of the Program's source code as you
receive it, in any medium, provided that you conspicuously and
appropriately publish on each copy an appropriate copyright notice;
keep intact all notices stating that this License and any
non-permissive terms added in accord with section 7 apply to the code;
keep intact all notices of the absence of any warranty; and give all
recipients a copy of this License along with the Program.

  You may charge any price or no price for each copy that you convey,
and you may offer support or warranty protection for a fee.

  5. Conveying Modified Source Versions.

  You may convey a work based on the Program, or the modifications to
produce it from the Program, in the form of source code under the
terms of section 4, provided that you also meet all of these conditions:

    a) The work must carry prominent notices stating that you modified
    it, and giving a relevant date.

    b) The work must carry prominent notices stating that it is
    released under this License and any conditions added under section
    7.  This requirement modifies the requirement in section 4 to
    "keep intact all notices".

    c) You must license the entire work, as a whole, under this
    License to anyone who comes into possession of a copy.  This
    License will therefore apply, along with any applicable section 7
    additional terms, to the whole of the work, and all its parts,
    regardless of how they are packaged.  This License gives no
    permission to license the work in any other way, but it does not
    invalidate such permission if you have separately received it.

    d) If the work has interactive user interfaces, each must display
    Appropriate Legal Notices; however, if the Program has interactive
    interfaces that do not display Appropriate Legal Notices, your
    work need not make them do so.

  A compilation of a covered work with other separate and independent
works, which are not by their nature extensions of the covered work,
and which are not combined with it such as to form a larger program,
in or on a volume of a storage or distribution medium, is called an
"aggregate" if the compilation and its resulting copyright are not
used to limit the access or legal rights of the compilation's users
beyond what the individual works permit.  Inclusion of a covered work
in an aggregate does not cause this License to apply to the other
parts of the aggregate.

  6. Conveying Non-Source Forms.

  You may convey a covered work in object code form under the terms
of sections 4 and 5, provided that you also convey the
machine-readable Corresponding Source under the terms of this License,
in one of these ways:

    a) Convey the object code in, or embodied in, a physical product
    (including a physical distribution medium), accompanied by the
    Corresponding Source fixed on a durable physical medium
    customarily used for software interchange.

    b) Convey the object code in, or embodied in, a physical product
    (including a physical distribution medium), accompanied by a
    written offer, valid for at least three years and valid for as
    long as you offer spare parts or customer support for that product
    model, to give anyone who possesses the object code either (1) a
    copy of the Corresponding Source for all the software in the
    product that is covered by this License, on a durable physical
    medium customarily used for software interchange, for a price no
    more than your reasonable cost of physically performing this
    conveying of source, or (2) access to copy the
    Corresponding Source from a network server at no charge.

    c) Convey individual copies of the object code with a copy of the
    written offer to provide the Corresponding Source.  This
    alternative is allowed only occasionally and noncommercially, and
    only if you received the object code with such an offer, in accord
    with subsection 6b.

    d) Convey the object code by offering access from a designated
    place (gratis or for a charge), and offer equivalent access to the
    Corresponding Source in the same way through the same place at no
    further charge.  You need not require recipients to copy the
    Corresponding Source along with the object code.  If the place to
    copy the object code is a network server, the Corresponding Source
    may be on a different server (operated by you or a third party)
    that supports equivalent copying facilities, provided you maintain
    clear directions next to the object code saying where to find the
    Corresponding Source.  Regardless of what server hosts the
    Corresponding Source, you remain obligated to ensure that it is
    available for as long as needed to satisfy these requirements.

    e) Convey the object code using peer-to-peer transmission, provided
    you inform other peers where the object code and Corresponding
    Source of the work are being offered to the general public at no
    charge under subsection 6d.

  A separable portion of the object code, whose source code is excluded
from the Corresponding Source as a System Library, need not be
included in conveying the object code work.

  A "User Product" is either (1) a "consumer product", which means any
tangible personal property which is normally used for personal, family,
or household purposes, or (2) anything designed or sold for incorporation
into a dwelling.  In determining whether a product is a consumer product,
doubtful cases shall be resolved in favor of coverage.  For a particular
product received by a particular user, "normally used" refers to a
typical or common use of that class of product, regardless of the status
of the particular user or of the way in which the particular user
actually uses, or expects or is expected to use, the product.  A product
is a consumer product regardless of whether the product has substantial
commercial, industrial or non-consumer uses, unless such uses represent
the only significant mode of use of the product.

  "Installation Information" for a User Product means any methods,
procedures, authorization keys, or other information required to install
and execute modified versions of a covered work in that User Product from
a modified version of its Corresponding Source.  The information must
suffice to ensure that the continued functioning of the modified object
code is in no case prevented or interfered with solely because
modification has been made.

  If you convey an object code work under this section in, or with, or
specifically for use in, a User Product, and the conveying occurs as
part of a transaction in which the right of possession and use of the
User Product is transferred to the recipient in perpetuity or for a
fixed term (regardless of how the transaction is characterized), the
Corresponding Source conveyed under this section must be accompanied
by the Installation Information.  But this requirement does not apply
if neither you nor any third party retains the ability to install
modified object code on the User Product (for example, the work has
been installed in ROM).

  The requirement to provide Installation Information does not include a
requirement to continue to provide support service, warranty, or updates
for a work that has been modified or installed by the recipient, or for
the User Product in which it has been modified or installed.  Access to a
network may be denied when the modification itself materially and
adversely affects the operation of the network or violates the rules and
protocols for communication across the network.

  Corresponding Source conveyed, and Installation Information provided,
in accord with this section must be in a format that is publicly
documented (and with an implementation available to the public in
source code form), and must require no special password or key for
unpacking, reading or copying.

  7. Additional Terms.

  "Additional permissions" are terms that supplement the terms of this
License by making exceptions from one or more of its conditions.
Additional permissions that are applicable to the entire Program shall
be treated as though they were included in this License, to the extent
that they are valid under applicable law.  If additional permissions
apply only to part of the Program, that part may be used separately
under those permissions, but the entire Program remains governed by
this License without regard to the additional permissions.

  When you convey a copy of a covered work, you may at your option
remove any additional permissions from that copy, or from any part of
it.  (Additional permissions may be written to require their own
removal in certain cases when you modify the work.)  You may place
additional permissions on material, added by you to a covered work,
for which you have or can give appropriate copyright permission.

  Notwithstanding any other provision of this License, for material you
add to a covered work, you may (if authorized by the copyright holders of
that material) supplement the terms of this License with terms:

    a) Disclaiming warranty or limiting liability differently from the
    terms of sections 15 and 16 of this License; or

    b) Requiring preservation of specified reasonable legal notices or
    author attributions in that material or in the Appropriate Legal
    Notices displayed by works containing it; or

    c) Prohibiting misrepresentation of the origin of that material, or
    requiring that modified versions of such material be marked in
    reasonable ways as different from the original version; or

    d) Limiting the use for publicity purposes of names of licensors or
    authors of the material; or

    e) Declining to grant rights under trademark law for use of some
    trade names, trademarks, or service marks; or

    f) Requiring indemnification of licensors and authors of that
    material by anyone who conveys the material (or modified versions of
    it) with contractual assumptions of liability to the recipient, for
    any liability that these contractual assumptions directly impose on
    those licensors and authors.

  All other non-permissive additional terms are considered "further
restrictions" within the meaning of section 10.  If the Program as you
received it, or any part of it, contains a notice stating that it is
governed by this License along with a term that is a further
restriction, you may remove that term.  If a license document contains
a further restriction but permits relicensing or conveying under this
License, you may add to a covered work material governed by the terms
of that license document, provided that the further restriction does
not survive such relicensing or conveying.

  If you add terms to a covered work in accord with this section, you
must place, in the relevant source files, a statement of the
additional terms that apply to those files, or a notice indicating
where to find the applicable terms.

  Additional terms, permissive or non-permissive, may be stated in the
form of a separately written license, or stated as exceptions;
the above requirements apply either way.

  8. Termination.

  You may not propagate or modify a covered work except as expressly
provided under this License.  Any attempt otherwise to propagate or
modify it is void, and will automatically terminate your rights under
this License (including any patent licenses granted under the third
paragraph of section 11).

  However, if you cease all violation of this License, then your
license from a particular copyright holder is reinstated (a)
provisionally, unless and until the copyright holder explicitly and
finally terminates your license, and (b) permanently, if the copyright
holder fails to notify you of the violation by some reasonable means
prior to 60 days after the cessation.

  Moreover, your license from a particular copyright holder is
reinstated permanently if the copyright holder notifies you of the
violation by some reasonable means, this is the first time you have
received notice of violation of this License (for any work) from that
copyright holder, and you cure the violation prior to 30 days after
your receipt of the notice.

  Termination of your rights under this section does not terminate the
licenses of parties who have received copies or rights from you under
this License.  If your rights have been terminated and not permanently
reinstated, you do not qualify to receive new licenses for the same
material under section 10.

  9. Acceptance Not Required for Having Copies.

  You are not required to accept this License in order to receive or
run a copy of the Program.  Ancillary propagation of a covered work
occurring solely as a consequence of using peer-to-peer transmission
to receive a copy likewise does not require acceptance.  However,
nothing other than this License grants you permission to propagate or
modify any covered work.  These actions infringe copyright if you do
not accept this License.  Therefore, by modifying or propagating a
covered work, you indicate your acceptance of this License to do so.

  10. Automatic Licensing of Downstream Recipients.

  Each time you convey a covered work, the recipient automatically
receives a license from the original licensors, to run, modify and
propagate that work, subject to this License.  You are not responsible
for enforcing compliance by third parties with this License.

  An "entity transaction" is a transaction transferring control of an
organization, or substantially all assets of one, or subdividing an
organization, or merging organizations.  If propagation of a covered
work results from an entity transaction, each party to that
transaction who receives a copy of the work also receives whatever
licenses to the work the party's predecessor in interest had or could
give under the previous paragraph, plus a right to possession of the
Corresponding Source of the work from the predecessor in interest, if
the predecessor has it or can get it with reasonable efforts.

  You may not impose any further restrictions on the exercise of the
rights granted or affirmed under this License.  For example, you may
not impose a license fee, royalty, or other charge for exercise of
rights granted under this License, and you may not initiate litigation
(including a cross-claim or counterclaim in a lawsuit) alleging that
any patent claim is infringed by making, using, selling, offering for
sale, or importing the Program or any portion of it.

  11. Patents.

  A "contributor" is a copyright holder who authorizes use under this
License of the Program or a work on which the Program is based.  The
work thus licensed is called the contributor's "contributor version".

  A contributor's "essential patent claims" are all patent claims
owned or controlled by the contributor, whether already acquired or
hereafter acquired, that would be infringed by some manner, permitted
by this License, of making, using, or selling its contributor version,
but do not include claims that would be infringed only as a
consequence of further modification of the contributor version.  For
purposes of this definition, "control" includes the right to grant
patent sublicenses in a manner consistent with the requirements of
this License.

  Each contributor grants you a non-exclusive, worldwide, royalty-free
patent license under the contributor's essential patent claims, to
make, use, sell, offer for sale, import and otherwise run, modify and
propagate the contents of its contributor version.

  In the following three paragraphs, a "patent license" is any express
agreement or commitment, however denominated, not to enforce a patent
(such as an express permission to practice a patent or covenant not to
sue for patent infringement).  To "grant" such a patent license to a
party means to make such an agreement or commitment not to enforce a
patent against the party.

  If you convey a covered work, knowingly relying on a patent license,
and the Corresponding Source of the work is not available for anyone
to copy, free of charge and under the terms of this License, through a
publicly available network server or other readily accessible means,
then you must either (1) cause the Corresponding Source to be so
available, or (2) arrange to deprive yourself of the benefit of the
patent license for this particular work, or (3) arrange, in a manner
consistent with the requirements of this License, to extend the patent
license to downstream recipients.  "Knowingly relying" means you have
actual knowledge that, but for the patent license, your conveying the
covered work in a country, or your recipient's use of the covered work
in a country, would infringe one or more identifiable patents in that
country that you have reason to believe are valid.

  If, pursuant to or in connection with a single transaction or
arrangement, you convey, or propagate by procuring conveyance of, a
covered work, and grant a patent license to some of the parties
receiving the covered work authorizing them to use, propagate, modify
or convey a specific copy of the covered work, then the patent license
you grant is automatically extended to all recipients of the covered
work and works based on it.

  A patent license is "discriminatory" if it does not include within
the scope of its coverage, prohibits the exercise of, or is
conditioned on the non-exercise of one or more of the rights that are
specifically granted under this License.  You may not convey a covered
work if you are a party to an arrangement with a third party that is
in the business of distributing software, under which you make payment
to the third party based on the extent of your activity of conveying
the work, and under which the third party grants, to any of the
parties who would receive the covered work from you, a discriminatory
patent license (a) in connection with copies of the covered work
conveyed by you (or copies made from those copies), or (b) primarily
for and in connection with specific products or compilations that
contain the covered work, unless you entered into that arrangement,
or that patent license was granted, prior to 28 March 2007.

  Nothing in this License shall be construed as excluding or limiting
any implied license or other defenses to infringement that may
otherwise be available to you under applicable patent law.

  12. No Surrender of Others' Freedom.

  If conditions are imposed on you (whether by court order, agreement or
otherwise) that contradict the conditions of this License, they do not
excuse you from the conditions of this License.  If you cannot convey a
covered work so as to satisfy simultaneously your obligations under this
License and any other pertinent obligations, then as a consequence you may
not convey it at all.  For example, if you agree to terms that obligate you
to collect a royalty for further conveying from those to whom you convey
the Program, the only way you could satisfy both those terms and this
License would be to refrain entirely from conveying the Program.

  13. Use with the GNU Affero General Public License.

  Notwithstanding any other provision of this License, you have
permission to link or combine any covered work with a work licensed
under version 3 of the GNU Affero General Public License into a single
combined work, and to convey the resulting work.  The terms of this
License will continue to apply to the part which is the covered work,
but the special requirements of the GNU Affero General Public License,
section 13, concerning interaction through a network will apply to the
combination as such.

  14. Revised Versions of this License.

  The Free Software Foundation may publish revised and/or new versions of
the GNU General Public License from time to time.  Such new versions will
be similar in spirit to the present version, but may differ in detail to
address new problems or concerns.

  Each version is given a distinguishing version number.  If the
Program specifies that a certain numbered version of the GNU General
Public License "or any later version" applies to it, you have the
option of following the terms and conditions either of that numbered
version or of any later version published by the Free Software
Foundation.  If the Program does not specify a version number of the
GNU General Public License, you may choose any version ever published
by the Free Software Foundation.

  If the Program specifies that a proxy can decide which future
versions of the GNU General Public License can be used, that proxy's
public statement of acceptance of a version permanently authorizes you
to choose that version for the Program.

  Later license versions may give you additional or different
permissions.  However, no additional obligations are imposed on any
author or copyright holder as a result of your choosing to follow a
later version.

  15. Disclaimer of Warranty.

  THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
APPLICABLE LAW.  EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE.  THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
IS WITH YOU.  SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.

  16. Limitation of Liability.

  IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
SUCH DAMAGES.

  17. Interpretation of Sections 15 and 16.

  If the disclaimer of warranty and limitation of liability provided
above cannot be given local legal effect according to their terms,
reviewing courts shall apply local law that most closely approximates
an absolute waiver of all civil liability in connection with the
Program, unless a warranty or assumption of liability accompanies a
copy of the Program in return for a fee.

                     END OF TERMS AND CONDITIONS

            How to Apply These Terms to Your New Programs

  If you develop a new program, and you want it to be of the greatest
possible use to the public, the best way to achieve this is to make it
free software which everyone can redistribute and change under these terms.

  To do so, attach the following notices to the program.  It is safest
to attach them to the start of each source file to most effectively
state the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is found.

    <one line to give the program's name and a brief idea of what it does.>
    Copyright © <year>  <name of author>

    This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program.  If not, see <https://www.gnu.org/licenses/>.

Also add information on how to contact you by electronic and paper mail.

  If the program does terminal interaction, make it output a short
notice like this when it starts in an interactive mode:

    <program>  Copyright © <year>  <name of author>
    This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
    This is free software, and you are welcome to redistribute it
    under certain conditions; type `show c' for details.

The hypothetical commands `show w' and `show c' should show the appropriate
parts of the General Public License.  Of course, your program's commands
might be different; for a GUI interface, you would use an "about box".

  You should also get your employer (if you work as a programmer) or school,
if any, to sign a "copyright disclaimer" for the program, if necessary.
For more information on this, and how to apply and follow the GNU GPL, see
<https://www.gnu.org/licenses/>.

  The GNU General Public License does not permit incorporating your program
into proprietary programs.  If your program is a subroutine library, you
may consider it more useful to permit linking proprietary applications with
the library.  If this is what you want to do, use the GNU Lesser General
Public License instead of this License.  But first, please read
<https://www.gnu.org/philosophy/why-not-lgpl.html>.PK`x1\ګ
|�|�)languages/yith-woocommerce-wishlist-hr.ponu�[���# Copyright (C) 2019 YITH WooCommerce Wishlist
# This file is distributed under the same license as the YITH WooCommerce Wishlist package.
msgid ""
msgstr ""
"Project-Id-Version: YITH WooCommerce Wishlist\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/yith-woocommerce-"
"wishlist\n"
"POT-Creation-Date: 2021-11-11 13:53:53+00:00\n"
"PO-Revision-Date: 2020-10-16 14:05+0200\n"
"Last-Translator: \n"
"Language-Team: Your Inspiration Themes <plugins@yithemes.com>\n"
"Language: hr_HR\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 2.4.1\n"
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;_n:1,2;__ngettext:1,2;"
"__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;"
"_nx_noop:4c,1,2\n"
"X-Poedit-Basepath: .\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Poedit-SourceCharset: UTF-8\n"
"X-Poedit-SearchPath-0: ..\n"
"X-Poedit-SearchPathExcluded-0: ../plugin-fw\n"

#: includes/class-yith-wcwl-admin.php:126
#, fuzzy
msgid "Wishlist Page"
msgstr "Privatna lista želja"

#: includes/class-yith-wcwl-admin.php:148
msgid "General settings"
msgstr ""

#: includes/class-yith-wcwl-admin.php:149
msgid "Add to wishlist options"
msgstr ""

#: includes/class-yith-wcwl-admin.php:150
msgid "Wishlist page options"
msgstr ""

#: includes/class-yith-wcwl-admin.php:151
msgid "Premium Version"
msgstr "Premium verzija"

#: includes/class-yith-wcwl-admin.php:249
#: includes/class-yith-wcwl-install.php:342
msgid "Wishlist"
msgstr "Lista želja"

#: includes/class-yith-wcwl-admin.php:251
msgid ""
"Allows your customers to create and share lists of products that they want "
"to purchase on your e-commerce."
msgstr ""

#: includes/class-yith-wcwl-ajax-handler.php:75
#: templates/add-to-wishlist-remove.php:59
msgid "View &rsaquo;"
msgstr ""

#: includes/class-yith-wcwl-ajax-handler.php:76
#: templates/add-to-wishlist-remove.php:58
msgid "or"
msgstr ""

#: includes/class-yith-wcwl-ajax-handler.php:77
msgid "Close"
msgstr ""

#: includes/class-yith-wcwl-ajax-handler.php:155
#: includes/class-yith-wcwl-ajax-handler.php:195
msgid "Product successfully removed."
msgstr "Proizvod uspješno obrisan."

#: includes/class-yith-wcwl-form-handler.php:156
msgid "Please, make sure to enter a valid title"
msgstr ""

#: includes/class-yith-wcwl-frontend.php:461
msgid ""
"We are sorry, but this feature is available only if cookies on your browser "
"are enabled."
msgstr ""

#: includes/class-yith-wcwl-frontend.php:462
msgid "Product added to cart successfully"
msgstr ""

#: includes/class-yith-wcwl-frontend.php:725
#: includes/class-yith-wcwl-shortcode.php:239
#: plugin-options/wishlist_page-options.php:240
#: templates/wishlist-view-footer-mobile.php:46
#: templates/wishlist-view-footer.php:46
msgid "Add to cart"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:52
msgid "While you visit our site, we’ll track:"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:54
msgid ""
"Products you’ve added to the wishlist: we’ll use this to show you and other "
"users your favourite products, and to create targeted email campaigns."
msgstr ""

#: includes/class-yith-wcwl-privacy.php:55
msgid ""
"Wishlists you’ve created: we’ll keep track of the wishlists you create, and "
"make them visible to the store staff"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:57
msgid ""
"We’ll also use cookies to keep track of wishlist contents while you’re "
"browsing our site."
msgstr ""

#: includes/class-yith-wcwl-privacy.php:60
msgid ""
"Members of our team have access to the information you provide us with. For "
"example, both Administrators and Shop Managers can access:"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:62
msgid ""
"Wishlist details, such as products added, date of addition, name and privacy "
"settings of your wishlists"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:64
msgid ""
"Our team members have access to this information to offer you better deals "
"for the products you love."
msgstr ""

#: includes/class-yith-wcwl-privacy.php:84
#: includes/class-yith-wcwl-privacy.php:100
msgid "Customer wishlists"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:137 plugin-options/lists-options.php:25
#: plugin-options/lists-options.php:32
msgid "Wishlists"
msgstr "Lista želja"

#. Translators: %s Order number.
#: includes/class-yith-wcwl-privacy.php:199
msgid "Removed wishlist %s."
msgstr "Moja lista želja na %s"

#. Translators: %s Order number.
#: includes/class-yith-wcwl-privacy.php:203
msgid "Wishlist %s has been retained."
msgstr ""

#: includes/class-yith-wcwl-privacy.php:227
msgid "Token"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:228
msgid "Wishlist URL"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:229
msgid "Title"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:231
msgid "Visibility"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:232
msgid "Items added"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:58
msgid ""
"ID of the product to add to the wishlist (leave empty to use the global "
"product)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:63
msgid "URL of the wishlist page (leave empty to use the default settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:68
msgid "Button label (leave empty to use the default settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:73
msgid "\"Browse wishlist\" label (leave empty to use the default settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:78
msgid ""
"\"Product already in wishlist\" label (leave empty to use the default "
"settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:83
msgid ""
"\"Product added to wishlist\" label (leave empty to use the default settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:88
msgid ""
"Icon for the button (use any FontAwesome valid class, or leave empty to use "
"the default settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:93
msgid ""
"Additional CSS classes for the button (leave empty to use the default "
"settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:107
msgid "Choose whether to paginate items in the wishlist or show them all"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:110
#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:118
msgid "Paginate"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:111
#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:119
msgid "Do not paginate"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:116
msgid "Number of items to show per page"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:121
msgid "ID of the wishlist to show (e.g. K6EOWXB888ZD)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:414
msgid "Share on:"
msgstr "Podijeli na:"

#: includes/class-yith-wcwl-shortcode.php:438
#: plugin-options/wishlist_page-options.php:138
msgid "Share on Facebook"
msgstr "Podijeli na Facebooku"

#: includes/class-yith-wcwl-shortcode.php:455
#: plugin-options/wishlist_page-options.php:147
msgid "Tweet on Twitter"
msgstr "Tweet-aj na Twitteru"

#: includes/class-yith-wcwl-shortcode.php:473
#: plugin-options/wishlist_page-options.php:156
msgid "Pin on Pinterest"
msgstr "Pinaj na Pinterestu"

#: includes/class-yith-wcwl-shortcode.php:487
msgid "Share via email"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:510
#: plugin-options/wishlist_page-options.php:174
msgid "Share on WhatsApp"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:621
msgid "Remove from list"
msgstr ""

#: includes/class-yith-wcwl-wishlist-item.php:189
msgid "Free!"
msgstr "Besplatno!"

#: includes/class-yith-wcwl.php:164
msgid "The item cannot be added to this wishlist"
msgstr ""

#: includes/class-yith-wcwl.php:168 includes/class-yith-wcwl.php:174
msgid "An error occurred while adding the products to the wishlist."
msgstr ""

#: includes/class-yith-wcwl.php:235 includes/class-yith-wcwl.php:241
msgid "Error. Unable to remove the product from the wishlist."
msgstr "Greška. Proizvod se ne može obrisati iz liste želja."

#: includes/data-stores/class-yith-wcwl-wishlist-data-store.php:152
#: includes/data-stores/class-yith-wcwl-wishlist-data-store.php:174
msgid "Invalid wishlist."
msgstr ""

#: includes/data-stores/class-yith-wcwl-wishlist-item-data-store.php:119
msgid "Invalid wishlist item."
msgstr ""

#. translators: 1. Number of users.
#: includes/functions-yith-wcwl.php:249
msgid "%d user"
msgid_plural "%d users"
msgstr[0] ""
msgstr[1] ""
msgstr[2] ""

#: includes/functions-yith-wcwl.php:250
msgid "has this item in wishlist"
msgid_plural "have this item in wishlist"
msgstr[0] ""
msgstr[1] ""
msgstr[2] ""

#: includes/functions-yith-wcwl.php:252
msgid "You're the first"
msgstr ""

#: includes/functions-yith-wcwl.php:253
msgid "to add this item in wishlist"
msgstr ""

#. translators: 1. Count of users when many, or "another" when only one.
#: includes/functions-yith-wcwl.php:257
msgid "You and %s user"
msgid_plural "You and %d users"
msgstr[0] ""
msgstr[1] ""
msgstr[2] ""

#: includes/functions-yith-wcwl.php:257
msgid "another"
msgstr ""

#: includes/functions-yith-wcwl.php:258
msgid "have this item in wishlist"
msgstr ""

#: includes/functions-yith-wcwl.php:425
msgid "None"
msgstr ""

#: includes/functions-yith-wcwl.php:426
#, fuzzy
msgid "Custom"
msgstr "Prilagođeni CSS"

#: includes/functions-yith-wcwl.php:447
msgid "Shared"
msgstr "Podijeljeno"

#: includes/functions-yith-wcwl.php:451
msgid "Only people with a link to this list can see it"
msgstr ""

#: includes/functions-yith-wcwl.php:457
msgid "Private"
msgstr "Privatno"

#: includes/functions-yith-wcwl.php:461
msgid "Only you can see this list"
msgstr ""

#: includes/functions-yith-wcwl.php:467
msgid "Public"
msgstr "Javno"

#: includes/functions-yith-wcwl.php:471
msgid "Anyone can search for and see this list"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:118
#: plugin-options/add_to_wishlist-options.php:127
msgid "Add to wishlist"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:128
#: plugin-options/add_to_wishlist-options.php:143
msgid "Browse wishlist"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:138
#, fuzzy
msgid "Product already in wishlist"
msgstr "Tekst za \"Proizvod je već dodan u listu želja\""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:148
#, fuzzy
msgid "Product added to wishlist"
msgstr "Tekst za \"Proizvod je već dodan u listu želja\""

#: init.php:160
#, fuzzy
msgid "is enabled but not effective. It requires WooCommerce to work."
msgstr ""
"YITH WooCommerce Lista želja je uključena ali nije omogućena. Zahtjeva "
"WooCommerce dodatak da bi mogla raditi."

#: init.php:176
msgid "You can't activate the free version of"
msgstr ""

#: init.php:176
msgid "while you are using the premium one."
msgstr ""

#: plugin-options/add_to_wishlist-options.php:20
#: plugin-options/settings-options.php:27
msgid "General Settings"
msgstr "Osnovne postavke"

#: plugin-options/add_to_wishlist-options.php:27
msgid "After product is added to wishlist"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:28
msgid ""
"Choose the look of the Wishlist button when the product has already been "
"added to a wishlist"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:32
#, fuzzy
msgid "Show \"Add to wishlist\" button"
msgstr "Tekst za \"Proizvod je već dodan u listu želja\""

#: plugin-options/add_to_wishlist-options.php:33
msgid "Show \"View wishlist\" link"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:34
msgid "Show \"Remove from list\" link"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:48
msgid "Loop settings"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:50
msgid ""
"Loop options will be visible on Shop page, category pages, product "
"shortcodes, products sliders, and all the other places where the WooCommerce "
"products' loop is used"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:55
msgid "Show \"Add to wishlist\" in loop"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:56
msgid "Enable the \"Add to wishlist\" feature in WooCommerce products' loop"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:64
msgid "Position of \"Add to wishlist\" in loop"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:65
msgid ""
"Choose where to show \"Add to wishlist\" button or link in WooCommerce "
"products' loop. <span class=\"addon\">Copy this shortcode <span class=\"code"
"\"><code>[yith_wcwl_add_to_wishlist]</code></span> and paste it where you "
"want to show the \"Add to wishlist\" link or button</span>"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:72
msgid "On top of the image"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:73
msgid "Before \"Add to cart\" button"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:74
msgid "After \"Add to cart\" button"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:75
#: plugin-options/add_to_wishlist-options.php:107
msgid "Use shortcode"
msgstr "Koristi shorcode"

#: plugin-options/add_to_wishlist-options.php:89
msgid "Product page settings"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:96
msgid "Position of \"Add to wishlist\" on product page"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:97
msgid ""
"Choose where to show \"Add to wishlist\" button or link on the product page. "
"<span class=\"addon\">Copy this shortcode <span class=\"code"
"\"><code>[yith_wcwl_add_to_wishlist]</code></span> and paste it where you "
"want to show the \"Add to wishlist\" link or button</span>"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:104
msgid "After \"Add to cart\""
msgstr "Nakon \"Dodaj u košaricu\""

#: plugin-options/add_to_wishlist-options.php:105
msgid "After thumbnails"
msgstr "Nakon minijatura"

#: plugin-options/add_to_wishlist-options.php:106
msgid "After summary"
msgstr "Nakon sažetka"

#: plugin-options/add_to_wishlist-options.php:117
#: plugin-options/wishlist_page-options.php:222
msgid "Text customization"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:124
msgid "\"Add to wishlist\" text"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:125
msgid "Enter a text for \"Add to wishlist\" button"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:132
msgid "\"Product added\" text"
msgstr "Tekst za \"Proizvod je dodan\""

#: plugin-options/add_to_wishlist-options.php:133
msgid ""
"Enter the text of the message displayed when the user adds a product to the "
"wishlist"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:135
msgid "Product added!"
msgstr "Proizvod je dodan!"

#: plugin-options/add_to_wishlist-options.php:140
msgid "\"Browse wishlist\" text"
msgstr "Tekst za \"Pregledaj listu želja\""

#: plugin-options/add_to_wishlist-options.php:141
msgid "Enter a text for the \"Browse wishlist\" link on the product page"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:148
msgid "\"Product already in wishlist\" text"
msgstr "Tekst za \"Proizvod je već dodan u listu želja\""

#: plugin-options/add_to_wishlist-options.php:149
msgid ""
"Enter the text for the message displayed when the user views a product that "
"is already in the wishlist"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:151
msgid "The product is already in your wishlist!"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:161
msgid "Style & Color customization"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:168
msgid "Style of \"Add to wishlist\""
msgstr ""

#: plugin-options/add_to_wishlist-options.php:169
msgid ""
"Choose if you want to show a textual \"Add to wishlist\" link or a button"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:172
#: plugin-options/wishlist_page-options.php:261
msgid "Textual (anchor)"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:173
#: plugin-options/wishlist_page-options.php:262
msgid "Button with theme style"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:174
#: plugin-options/wishlist_page-options.php:263
msgid "Button with custom style"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:182
msgid "\"Add to wishlist\" button style"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:188
msgid "Choose colors for the \"Add to wishlist\" button"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:190
#: plugin-options/wishlist_page-options.php:279
#: plugin-options/wishlist_page-options.php:368
#: plugin-options/wishlist_page-options.php:417
#: plugin-options/wishlist_page-options.php:465
#: plugin-options/wishlist_page-options.php:552
#: plugin-options/wishlist_page-options.php:592
#: plugin-options/wishlist_page-options.php:632
#: plugin-options/wishlist_page-options.php:672
#: plugin-options/wishlist_page-options.php:712
msgid "Background"
msgstr "Pozadina"

#: plugin-options/add_to_wishlist-options.php:195
#: plugin-options/wishlist_page-options.php:284
#: plugin-options/wishlist_page-options.php:373
#: plugin-options/wishlist_page-options.php:422
#: plugin-options/wishlist_page-options.php:470
#: plugin-options/wishlist_page-options.php:507
msgid "Text"
msgstr "Tekst"

#: plugin-options/add_to_wishlist-options.php:200
#: plugin-options/wishlist_page-options.php:289
#: plugin-options/wishlist_page-options.php:378
#: plugin-options/wishlist_page-options.php:427
#: plugin-options/wishlist_page-options.php:475
msgid "Border"
msgstr "Obrub"

#: plugin-options/add_to_wishlist-options.php:206
msgid "Choose colors for the \"Add to wishlist\" button on hover state"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:208
#: plugin-options/wishlist_page-options.php:297
#: plugin-options/wishlist_page-options.php:386
#: plugin-options/wishlist_page-options.php:435
msgid "Background Hover"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:213
#: plugin-options/wishlist_page-options.php:302
#: plugin-options/wishlist_page-options.php:391
#: plugin-options/wishlist_page-options.php:440
msgid "Text Hover"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:218
#: plugin-options/wishlist_page-options.php:307
#: plugin-options/wishlist_page-options.php:396
#: plugin-options/wishlist_page-options.php:445
msgid "Border Hover"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:231
#: plugin-options/wishlist_page-options.php:320
msgid "Border radius"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:232
msgid "Choose radius for the \"Add to wishlist\" button"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:246
msgid "\"Add to wishlist\" icon"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:247
msgid "Select an icon for the \"Add to wishlist\" button (optional)"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:257
msgid "\"Add to wishlist\" custom icon"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:258
#: plugin-options/add_to_wishlist-options.php:282
msgid ""
"Upload an icon you'd like to use for \"Add to wishlist\" button (suggested "
"32px x 32px)"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:270
msgid "\"Added to wishlist\" icon"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:271
msgid "Select an icon for the \"Added to wishlist\" button (optional)"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:277
msgid "Same used for Add to wishlist"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:281
msgid "\"Added to wishlist\" custom icon"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:294
msgid "Custom CSS"
msgstr "Prilagođeni CSS"

#: plugin-options/add_to_wishlist-options.php:295
msgid "Enter custom CSS to be applied to Wishlist elements (optional)"
msgstr ""

#: plugin-options/lists-options.php:34
#, fuzzy
msgid "Search list"
msgstr "Pretraga listi želja"

#. translators: 1. Anchor to Frequently Bought Together landing page on
#. yithemes.com.
#: plugin-options/settings-options.php:19
msgid ""
"If you want to take advantage of this feature, you could consider purchasing "
"the %s."
msgstr ""

#: plugin-options/settings-options.php:34
msgid "Enable AJAX loading"
msgstr ""

#: plugin-options/settings-options.php:35
msgid "Load any cacheable wishlist item via AJAX"
msgstr ""

#: plugin-options/settings-options.php:48
msgid "YITH WooCommerce Frequently Bought Together Integration"
msgstr "YITH WooCommerse skupna Integracija"

#. translators: 1. Url to Frequently Bought Together landing page on
#. yithemes.com.
#: plugin-options/settings-options.php:51
msgid ""
"In order to use this integration you have to install and activate YITH "
"WooCommerce Frequently Bought Together. <a href=\"%s\">Learn more</a>"
msgstr ""

#: plugin-options/settings-options.php:56
msgid "Enable slider in wishlist"
msgstr "Omogući slider u listi želja"

#. translators: 1. Example image of the integration. 2. CTA to buy Frequently
#. Bought Together.
#: plugin-options/settings-options.php:58
msgid ""
"Enable the slider with linked products on the Wishlist page (<a href=\"%1$s"
"\" class=\"thickbox\">Example</a>). %2$s"
msgstr ""

#: plugin-options/wishlist_page-options.php:19
msgid "All your wishlists"
msgstr ""

#: plugin-options/wishlist_page-options.php:26
msgid "Wishlist page"
msgstr ""

#: plugin-options/wishlist_page-options.php:27
msgid ""
"Pick a page as the main Wishlist page; make sure you add the <span class="
"\"code\"><code>[yith_wcwl_wishlist]</code></span> shortcode into the page "
"content"
msgstr ""

#: plugin-options/wishlist_page-options.php:40
msgid "Wishlist Detail Page"
msgstr ""

#: plugin-options/wishlist_page-options.php:47
#: plugin-options/wishlist_page-options.php:56
#: plugin-options/wishlist_page-options.php:65
#: plugin-options/wishlist_page-options.php:74
#: plugin-options/wishlist_page-options.php:83
#: plugin-options/wishlist_page-options.php:92
#: plugin-options/wishlist_page-options.php:101
msgid "In wishlist table show"
msgstr ""

#: plugin-options/wishlist_page-options.php:48
msgid "Product variations selected by the user (example: size or color)"
msgstr ""

#: plugin-options/wishlist_page-options.php:57
msgid "Product price"
msgstr ""

#: plugin-options/wishlist_page-options.php:66
msgid "Product stock (show if the product is available or not)"
msgstr ""

#: plugin-options/wishlist_page-options.php:75
msgid "Date on which the product was added to the wishlist"
msgstr ""

#: plugin-options/wishlist_page-options.php:84
msgid "Add to cart option for each product"
msgstr ""

#: plugin-options/wishlist_page-options.php:93
msgid ""
"Icon to remove the product from the wishlist - to the left of the product"
msgstr ""

#: plugin-options/wishlist_page-options.php:102
msgid ""
"Button to remove the product from the wishlist - to the right of the product"
msgstr ""

#: plugin-options/wishlist_page-options.php:110
msgid "Redirect to cart"
msgstr "Preusmjeri na košaricu"

#: plugin-options/wishlist_page-options.php:111
msgid ""
"Redirect users to the cart page when they add a product to the cart from the "
"wishlist page"
msgstr ""

#: plugin-options/wishlist_page-options.php:119
msgid "Remove if added to the cart"
msgstr "Obriši ako je dodan u košaricu"

#: plugin-options/wishlist_page-options.php:120
msgid ""
"Remove the product from the wishlist after it has been added to the cart"
msgstr ""

#: plugin-options/wishlist_page-options.php:128
msgid "Share wishlist"
msgstr ""

#: plugin-options/wishlist_page-options.php:129
msgid "Enable this option to let users share their wishlist on social media"
msgstr ""

#: plugin-options/wishlist_page-options.php:137
#: plugin-options/wishlist_page-options.php:146
#: plugin-options/wishlist_page-options.php:155
#: plugin-options/wishlist_page-options.php:164
#: plugin-options/wishlist_page-options.php:173
msgid "Share on social media"
msgstr ""

#: plugin-options/wishlist_page-options.php:165
msgid "Share by email"
msgstr ""

#: plugin-options/wishlist_page-options.php:182
msgid "Share by URL"
msgstr ""

#: plugin-options/wishlist_page-options.php:183
msgid "Show \"Share URL\" field on wishlist page"
msgstr ""

#: plugin-options/wishlist_page-options.php:191
msgid "Sharing title"
msgstr ""

#: plugin-options/wishlist_page-options.php:192
msgid "Wishlist title used for sharing (only used on Twitter and Pinterest)"
msgstr ""

#. translators: 1. Blog name.
#: plugin-options/wishlist_page-options.php:195
msgid "My wishlist on %s"
msgstr "Moja lista želja na %s"

#: plugin-options/wishlist_page-options.php:200
msgid "Social text"
msgstr "Tekst za objavu"

#: plugin-options/wishlist_page-options.php:201
msgid ""
"Type the message you want to publish when you share your wishlist on Twitter "
"and Pinterest"
msgstr ""

#: plugin-options/wishlist_page-options.php:209
msgid "Social image URL"
msgstr "Link na sliku za objave"

#: plugin-options/wishlist_page-options.php:210
msgid "It will be used to pin the wishlist on Pinterest."
msgstr ""

#: plugin-options/wishlist_page-options.php:229
msgid "Default wishlist name"
msgstr ""

#: plugin-options/wishlist_page-options.php:230
msgid ""
"Enter a name for the default wishlist. This is the wishlist that will be "
"automatically generated for all users if they do not create any custom one"
msgstr ""

#: plugin-options/wishlist_page-options.php:232
#, fuzzy
msgid "My wishlist"
msgstr "Moja lista želja na %s"

#: plugin-options/wishlist_page-options.php:237
msgid "\"Add to cart\" text"
msgstr ""

#: plugin-options/wishlist_page-options.php:238
msgid "Enter a text for the \"Add to cart\" button"
msgstr ""

#: plugin-options/wishlist_page-options.php:250
msgid "Style & color customization"
msgstr ""

#: plugin-options/wishlist_page-options.php:257
msgid "Style of \"Add to cart\""
msgstr ""

#: plugin-options/wishlist_page-options.php:258
msgid "Choose whether to show a textual \"Add to cart\" link or a button"
msgstr ""

#: plugin-options/wishlist_page-options.php:271
msgid "\"Add to cart\" button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:277
msgid "Choose the colors for the \"Add to cart\" button"
msgstr ""

#: plugin-options/wishlist_page-options.php:295
msgid "Choose colors for the \"Add to cart\" button on hover state"
msgstr ""

#: plugin-options/wishlist_page-options.php:321
msgid "Set the radius for the \"Add to cart\" button"
msgstr ""

#: plugin-options/wishlist_page-options.php:335
msgid "\"Add to cart\" icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:336
msgid "Select an icon for the \"Add to cart\" button (optional)"
msgstr ""

#: plugin-options/wishlist_page-options.php:351
msgid "\"Add to cart\" custom icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:352
msgid ""
"Upload an icon you'd like to use for the \"Add to cart\" button (suggested "
"32px x 32px)"
msgstr ""

#: plugin-options/wishlist_page-options.php:360
msgid "Primary button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:366
msgid ""
"Choose colors for the primary button<br/><small>This style will be applied "
"to \"Edit title\" button on Wishlist view, \"Submit Changes\" button on "
"Manage view and \"Search wishlist\" button on Search view</small>"
msgstr ""

#: plugin-options/wishlist_page-options.php:384
msgid ""
"Choose colors for the primary button on hover state<br/><small>This style "
"will be applied to \"Edit title\" button on Wishlist view, \"Submit Changes"
"\" button on Manage view and \"Search wishlist\" button on Search view</"
"small>"
msgstr ""

#: plugin-options/wishlist_page-options.php:409
msgid "Secondary button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:415
#: plugin-options/wishlist_page-options.php:433
msgid ""
"Choose colors of the secondary button<br/><small>This style will be applied "
"to the buttons that allow showing and hiding the Edit title form on Wishlist "
"view and \"Create new Wishlist\" button on Manage view</small>"
msgstr ""

#: plugin-options/wishlist_page-options.php:458
msgid "Wishlist table style"
msgstr ""

#: plugin-options/wishlist_page-options.php:459
msgid ""
"Choose the colors for the wishlist table (when set to \"Traditional\" layout)"
msgstr ""

#: plugin-options/wishlist_page-options.php:487
msgid "Highlight color"
msgstr ""

#: plugin-options/wishlist_page-options.php:488
msgid ""
"Choose the color for all sections with background<br/><small>This color will "
"be used as background for the wishlist table heading and footer (when set to "
"\"Traditional\" layout), and for various form across wishlist views</small>"
msgstr ""

#: plugin-options/wishlist_page-options.php:500
msgid "Share button text color"
msgstr ""

#: plugin-options/wishlist_page-options.php:501
msgid "Choose colors for share buttons text"
msgstr ""

#: plugin-options/wishlist_page-options.php:512
msgid "Text hover"
msgstr ""

#: plugin-options/wishlist_page-options.php:525
msgid "Facebook share button icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:526
msgid "Select an icon for the Facebook share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:536
msgid "Facebook share button custom icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:537
msgid ""
"Upload an icon you'd like to use for Facebook share button (suggested 32px x "
"32px)"
msgstr ""

#: plugin-options/wishlist_page-options.php:545
msgid "Facebook share button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:546
msgid "Choose colors for Facebook share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:557
#: plugin-options/wishlist_page-options.php:597
#: plugin-options/wishlist_page-options.php:637
#: plugin-options/wishlist_page-options.php:677
#: plugin-options/wishlist_page-options.php:717
msgid "Background hover"
msgstr ""

#: plugin-options/wishlist_page-options.php:565
msgid "Twitter share button icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:566
msgid "Select an icon for the Twitter share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:576
msgid "Twitter share button custom icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:577
msgid ""
"Upload an icon you'd like to use for Twitter share button (suggested 32px x "
"32px)"
msgstr ""

#: plugin-options/wishlist_page-options.php:585
msgid "Twitter share button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:586
msgid "Choose colors for Twitter share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:605
msgid "Pinterest share button icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:606
msgid "Select an icon for the Pinterest share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:616
msgid "Pinterest share button custom icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:617
msgid ""
"Upload an icon you'd like to use for Pinterest share button (suggested 32px "
"x 32px)"
msgstr ""

#: plugin-options/wishlist_page-options.php:625
msgid "Pinterest share button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:626
msgid "Choose colors for Pinterest share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:645
msgid "Email share button icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:646
msgid "Select an icon for the Email share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:656
msgid "Email share button custom icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:657
msgid ""
"Upload an icon you'd like to use for the Email share button (suggested 32px "
"x 32px)"
msgstr ""

#: plugin-options/wishlist_page-options.php:665
msgid "Email share button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:666
msgid "Choose colors for the Email share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:685
msgid "WhatsApp share button icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:686
msgid "Select an icon for the WhatsApp share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:696
msgid "WhatsApp share button custom icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:697
msgid ""
"Upload an icon you'd like to use for WhatsApp share button (suggested 32px x "
"32px)"
msgstr ""

#: plugin-options/wishlist_page-options.php:705
msgid "WhatsApp share button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:706
msgid "Choose colors for WhatsApp share button"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:168
#: templates/admin/wishlist-panel-premium.php:309
msgid ""
"Upgrade to the %1$spremium version%2$s%3$sof %1$sYITH WooCommerce Wishlist"
"%2$s to benefit from all features!"
msgstr ""
"Nadogradite na %1$spremium verziju%2$s%3$s %1$sYITH WooCommerce Listu želja"
"%2$s "

#: templates/admin/wishlist-panel-premium.php:170
#: templates/admin/wishlist-panel-premium.php:311
msgid "Upgrade"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:176
msgid "Premium Features"
msgstr "Premium dodaci"

#: templates/admin/wishlist-panel-premium.php:180
msgid "Allow your customers to create multiple wishlists"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:182
msgid ""
"Christmas, Birthday... users will be able to create and manage multiple "
"wishlists, in case they prefer to keep the products sorted by category or "
"other parameters."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:185
msgid "Multiple Wishlist"
msgstr "Višestruka Lista želja"

#: templates/admin/wishlist-panel-premium.php:192
msgid "Wishlist Private"
msgstr "Privatna lista želja"

#: templates/admin/wishlist-panel-premium.php:196
msgid "A transparent privacy management"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:198
msgid ""
"Your customers can set a privacy option for each wishlist and choose whether "
"sharing the wishlist or making it private."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:206
msgid ""
"Allow your customers to ask for an estimate, directly from their wishlist "
"page"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:208
msgid ""
"And give only registered users the privilege to use the wishlist "
"functionalities."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:211
msgid "Estimate Cost"
msgstr "Procjena troška"

#: templates/admin/wishlist-panel-premium.php:218
msgid "Admin Panel"
msgstr "Upravljačka ploča Admina"

#: templates/admin/wishlist-panel-premium.php:222
msgid "An advanced and more versatile management of the wishlist"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:224
msgid ""
"Your customers can sort the products in the wishlist thanks to the drag&drop "
"option, move products from one wishlist to another, manage product quantity, "
"download the wishlist content to a .pdf file, share the wishlist on their "
"social networks, and much more!"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:232
msgid "Monitor your customers’ wishlists and the popular products"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:234
msgid ""
"You can see your customers’ wishlists, gain insight into the products they "
"are more interested in and plan targeted marketing strategies."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:237
msgid "Search Wishlists"
msgstr "Pretraga listi želja"

#: templates/admin/wishlist-panel-premium.php:244
msgid "'ADD TO CART'"
msgstr "'DODAJ U KOŠARICU'"

#: templates/admin/wishlist-panel-premium.php:248
msgid ""
"Send promotional emails for products in wishlists to push customers to buy"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:250
msgid ""
"Just three clicks to send promotional emails with discount coupons to "
"customers who have added specific products to their wishlist and push them "
"to buy."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:258
msgid "Let users buy the product right from the wishlist page"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:260
msgid ""
"Let them move products from one wishlist to the cart in one click, keeping "
"also the information about the size, colour or quantity selected when added "
"to the wishlist."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:263
msgid "DISABLE WISHLIST"
msgstr "ONEMOGUĆI LISTU ŽELJA"

#: templates/admin/wishlist-panel-premium.php:271
msgid "Choose a charming layout for your wishlist page"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:273
msgid ""
"The wishlist is one of the most used functionalities in an ecommerce store "
"but often the page layout is not enhanced enough and looks unattractive to "
"the user. With our plugin, you can choose among some alternative layouts and "
"offer an even more interesting experience to users who creates a wishlist on "
"your website."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:276
msgid "UNLOGGED USERS"
msgstr "NEPRIJAVLJENI KORISNICI"

#: templates/admin/wishlist-panel-premium.php:284
msgid "Wishlist widgets for the header and sidebars"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:286
msgid ""
"Increase the wishlist visibility through our modern widgets that you can use "
"in the header, in the sidebars, wherever you want."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:289
msgid "POPULAR TABLE"
msgstr "TABLICA POPULARNOSTI"

#: templates/admin/wishlist-panel-premium.php:296
msgid "FUNCTIONALITIES"
msgstr "FUNKCIONALNOSTI"

#: templates/admin/wishlist-panel-premium.php:300
msgid "Allow users to monitor the price of the products in their wishlist"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:302
msgid ""
"We took inspiration from one of the most interesting features of Amazon "
"product pages: from now on, users can realise what’s the best time to buy a "
"product and how much they can save when there’s a promotion running or a "
"discount on the product they’ve added to the wishlist."
msgstr ""

#: templates/share.php:51 templates/share.php:52
msgid "Facebook"
msgstr ""

#: templates/share.php:59 templates/share.php:60
msgid "Twitter"
msgstr ""

#: templates/share.php:67 templates/share.php:68
msgid "Pinterest"
msgstr ""

#: templates/share.php:75 templates/share.php:76
msgid "Email"
msgstr ""

#: templates/share.php:83
msgid "WhatsApp"
msgstr ""

#: templates/share.php:84
msgid "Whatsapp"
msgstr ""

#: templates/share.php:93
msgid "(Now"
msgstr ""

#: templates/share.php:93
msgid "copy"
msgstr ""

#: templates/share.php:93
msgid "this wishlist link and share it anywhere)"
msgstr ""

#: templates/wishlist-view-footer-mobile.php:44
#: templates/wishlist-view-footer.php:44
msgid "Apply this action to all the selected items:"
msgstr ""

#: templates/wishlist-view-footer-mobile.php:49
#: templates/wishlist-view-footer.php:49
msgid "Remove from wishlist"
msgstr ""

#. translators: 1. Wishlist formatted name.
#: templates/wishlist-view-footer-mobile.php:67
#: templates/wishlist-view-footer.php:67
msgid "Move to %s"
msgstr ""

#: templates/wishlist-view-footer-mobile.php:73
#: templates/wishlist-view-footer.php:73
msgid "Apply"
msgstr ""

#: templates/wishlist-view-footer-mobile.php:81
#: templates/wishlist-view-footer.php:81
msgid "Update"
msgstr ""

#: templates/wishlist-view-footer-mobile.php:87
#: templates/wishlist-view-footer.php:103
msgid "Add all to cart"
msgstr ""

#: templates/wishlist-view-header.php:48
msgid "Edit title"
msgstr "Uredi naslov"

#: templates/wishlist-view-mobile.php:136
msgid "Added on:"
msgstr ""

#: templates/wishlist-view-mobile.php:147
msgid "Price:"
msgstr ""

#: templates/wishlist-view-mobile.php:174
msgid "Quantity:"
msgstr ""

#: templates/wishlist-view-mobile.php:189
msgid "Stock:"
msgstr ""

#: templates/wishlist-view-mobile.php:192 templates/wishlist-view.php:229
msgid "Out of stock"
msgstr ""

#: templates/wishlist-view-mobile.php:192 templates/wishlist-view.php:229
msgid "In Stock"
msgstr "Na zalihi"

#: templates/wishlist-view-mobile.php:212 templates/wishlist-view.php:262
msgid "Move"
msgstr "Premjesti"

#: templates/wishlist-view-mobile.php:233 templates/wishlist-view.php:283
msgid "Move to another list &rsaquo;"
msgstr ""

#: templates/wishlist-view-mobile.php:241 templates/wishlist-view.php:157
#: templates/wishlist-view.php:293
msgid "Remove this product"
msgstr "Obriši ovaj proizvod"

#: templates/wishlist-view-mobile.php:252 templates/wishlist-view.php:313
msgid "No products added to the wishlist"
msgstr ""

#: templates/wishlist-view.php:79
msgid "Product name"
msgstr ""

#: templates/wishlist-view.php:87
msgid "Unit price"
msgstr ""

#: templates/wishlist-view.php:96
msgid "Quantity"
msgstr ""

#: templates/wishlist-view.php:105
msgid "Stock status"
msgstr ""

#: templates/wishlist-view.php:123
msgid "Arrange"
msgstr ""

#. translators: date added label: 1 date added.
#: templates/wishlist-view.php:243
msgid "Added on: %s"
msgstr ""

#: templates/wishlist-view.php:293
msgid "Remove"
msgstr "Obriši"

#. Description of the plugin/theme
msgid ""
"<code><strong>YITH WooCommerce Wishlist</strong></code> gives your users the "
"possibility to create, fill, manage and share their wishlists allowing you "
"to analyze their interests and needs to improve your marketing strategies. "
"<a href=\"https://yithemes.com/\" target=\"_blank\">Get more plugins for "
"your e-commerce on <strong>YITH</strong></a>"
msgstr ""

#: includes/class-yith-wcwl-admin.php:261
msgctxt "[HELP TAB] Video title"
msgid ""
"Check this video to learn how to <b>configure wishlist and customize options:"
"</b>"
msgstr ""

#: includes/class-yith-wcwl-install.php:340
msgctxt "page_slug"
msgid "wishlist"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:230
msgctxt "date when wishlist was created"
msgid "Created on"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:52
msgctxt "[gutenberg]: block name"
msgid "YITH Add to wishlist"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:101
msgctxt "[gutenberg]: block name"
msgid "YITH Wishlist"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:53
msgctxt "[gutenberg]: block description"
msgid "Shows Add to wishlist button"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:102
msgctxt "[gutenberg]: block description"
msgid "Shows a list of products in wishlist"
msgstr ""

#. translators: 1. % of reduction/increase in price.
#: includes/class-yith-wcwl-wishlist-item.php:428
msgctxt ""
"Part of the template that shows price variation since addition to list; "
"placeholder will be replaced with a percentage"
msgid "Price is %1$s%%"
msgstr ""

#. translators: 2: original product price.
#: includes/class-yith-wcwl-wishlist-item.php:430
msgctxt ""
"Part of the template that shows price variation since addition to list; "
"placeholder will be replaced with a price"
msgid "(Was %2$s when added  in list)"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:45
msgctxt "Elementor widget name"
msgid "YITH Wishlist Add button"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:45
#, fuzzy
msgctxt "Elementor widget name"
msgid "YITH Wishlist"
msgstr "Lista želja"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:87
#, fuzzy
msgctxt "Elementor section title"
msgid "Product"
msgstr "Proizvod je dodan!"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:107
msgctxt "Elementor section title"
msgid "Labels"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:157
msgctxt "Elementor section title"
msgid "Advanced"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:87
#, fuzzy
msgctxt "Elementor section title"
msgid "Wishlist"
msgstr "Lista želja"

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:107
msgctxt "Elementor section title"
msgid "Pagination"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:95
#, fuzzy
msgctxt "Elementor control label"
msgid "Product ID"
msgstr "Proizvod je dodan!"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:115
msgctxt "Elementor control label"
msgid "Button label"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:125
#, fuzzy
msgctxt "Elementor control label"
msgid "\"Browse wishlist\" label"
msgstr "Tekst za \"Pregledaj listu želja\""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:135
#, fuzzy
msgctxt "Elementor control label"
msgid "\"Product already in wishlist\" label"
msgstr "Tekst za \"Proizvod je već dodan u listu želja\""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:145
#, fuzzy
msgctxt "Elementor control label"
msgid "\"Product added to wishlist\" label"
msgstr "Tekst za \"Proizvod je već dodan u listu želja\""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:165
msgctxt "Elementor control label"
msgid "URL of the wishlist page"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:175
msgctxt "Elementor control label"
msgid "Icon for the button"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:185
msgctxt "Elementor control label"
msgid "Additional CSS classes for the button"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:95
#, fuzzy
msgctxt "Elementor control label"
msgid "Wishlist ID"
msgstr "Lista želja"

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:115
msgctxt "Elementor control label"
msgid "Paginate items"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:128
msgctxt "yith-woocommerce-wishlist"
msgid "Items per page"
msgstr ""

#~ msgid "My wishlist on "
#~ msgstr "Moja lista želja na %s"

#~ msgid "YITH WooCommerce Wishlist"
#~ msgstr "YITH WooCommerce Lista želja"

#~ msgid "Save"
#~ msgstr "Spremi"

#~ msgid "Cancel"
#~ msgstr "Odustani"

#~ msgid "Ask for an estimate"
#~ msgstr "Zatraži procjenu cijene"
PK`x1\����
�
,languages/yith-woocommerce-wishlist-es_AR.monu�[�����)���"�
"
3
>6I����	����!5J	\fm~�
���	��� /Pf��_�	
+	9	S	j	�	'�	�	'�	�	
 

6

D
R
p
�
�
�
'�
�
	

"Browse wishlist" text"Product added" text"Product already in wishlist" textAfter "Add to cart"After summaryAfter thumbnailsCustom CSSEdit titleError. Unable to remove the product from the wishlist.General SettingsIn StockMy wishlist on %sPin on PinterestPinterestProduct added!Product successfully removed.Redirect to cartRemove if added to the cartRemove this productRemoved wishlist %s.Share on FacebookShare on:SharedSocial image URLSocial textTweet on TwitterUse shortcodeWishlistWishlist %s has been retained.WishlistsProject-Id-Version: YITH WooCommerce Wishlist
Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/yith-woocommerce-wishlist
POT-Creation-Date: 2021-11-11 13:53:53+00:00
PO-Revision-Date: 2020-10-16 14:04+0200
Last-Translator: YIThemes <support@yithemes.com>
Language-Team: Your Inspiration Themes <plugins@yithemes.com>
Language: es_AR
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Generator: Poedit 2.4.1
X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;_n:1,2;__ngettext:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2
X-Poedit-Basepath: .
Plural-Forms: nplurals=2; plural=n!=1;
X-Poedit-SourceCharset: UTF-8
X-Poedit-SearchPath-0: ..
X-Poedit-SearchPathExcluded-0: ../plugin-fw
Ir a la Lista de deseos¡Agregado!Ya está en tu lista de deseos!Después de "Agregar al carrito"Después del resúmenDespués de las miniaturasCSS personalizadoTítulo de la Lista de deseos¡Ups! Ha ocurrido un error al eliminar el producto de tu lista. Intenta nuevamente, por favor.Configuraciones generales¡Disponible!Mi lista de deseos en  %sCompartir en PinterestCompartir en Pinterest¡Agregado!Bien, lo hemos eliminado de tu lista...Redireccionar al carritoEliminar después de agregar al carritoYa no lo quieroMi lista de deseos en  %sCompartir en FacebookCompartir en:Compartir en:URL de las imágenes socialesTexto de socialesTuitear en TwitterUsar shortcodeLista de deseosTexto de la tabla de la Lista de DeseosLista de deseosPK`x1\鹵>��,languages/yith-woocommerce-wishlist-da_DK.monu�[������h
itz������	����	�f�
IW^	fpu	|����
���
	
Edit titleEmailFree!In StockMovePrivatePublicRemoveRemove this productShare on:SharedTitleWishlistWishlistsProject-Id-Version: YITH WCWL
Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/yith-woocommerce-wishlist
POT-Creation-Date: 2021-11-11 13:53:53+00:00
PO-Revision-Date: 2020-10-16 14:04+0200
Last-Translator: Morten Ruus <altombasketball@gmail.com>
Language-Team: Your Inspiration Themes <support@yithemes.com>
Language: da_DK
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Generator: Poedit 2.4.1
X-Poedit-KeywordsList: __;_e;_x
X-Poedit-Basepath: ..
Plural-Forms: nplurals=2; plural=(n != 1);
X-Poedit-SearchPath-0: .
X-Poedit-SearchPathExcluded-0: plugin-fw
Rediger titelE-mailGratis!På lagerFlytPrivatOffentligFjernFjern denne vareDel på:DeltTitel feltØnskelisteØnskelistePK`x1\�՚&����,languages/yith-woocommerce-wishlist-zh_CN.ponu�[���# Copyright (C) 2019 YITH WooCommerce Wishlist
# This file is distributed under the same license as the YITH WooCommerce Wishlist package.
msgid ""
msgstr ""
"Project-Id-Version: YITH WooCommerce Wishlist\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/yith-woocommerce-"
"wishlist\n"
"POT-Creation-Date: 2021-11-11 13:53:53+00:00\n"
"PO-Revision-Date: 2020-10-16 14:07+0200\n"
"Last-Translator: 李明軒 <eggeggxuan@gmail.com>\n"
"Language-Team: Your Inspiration Themes <plugins@yithemes.com>\n"
"Language: zh_CN\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 2.4.1\n"
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;_n:1,2;__ngettext:1,2;"
"__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;"
"_nx_noop:4c,1,2\n"
"X-Poedit-Basepath: .\n"
"Plural-Forms: nplurals=2; plural=n!=1;\n"
"X-Poedit-SourceCharset: UTF-8\n"
"X-Poedit-SearchPath-0: ..\n"
"X-Poedit-SearchPathExcluded-0: ../plugin-fw\n"

#: includes/class-yith-wcwl-admin.php:126
#, fuzzy
msgid "Wishlist Page"
msgstr "愿望清单"

#: includes/class-yith-wcwl-admin.php:148
msgid "General settings"
msgstr ""

#: includes/class-yith-wcwl-admin.php:149
msgid "Add to wishlist options"
msgstr ""

#: includes/class-yith-wcwl-admin.php:150
msgid "Wishlist page options"
msgstr ""

#: includes/class-yith-wcwl-admin.php:151
msgid "Premium Version"
msgstr ""

#: includes/class-yith-wcwl-admin.php:249
#: includes/class-yith-wcwl-install.php:342
msgid "Wishlist"
msgstr "愿望清单"

#: includes/class-yith-wcwl-admin.php:251
msgid ""
"Allows your customers to create and share lists of products that they want "
"to purchase on your e-commerce."
msgstr ""

#: includes/class-yith-wcwl-ajax-handler.php:75
#: templates/add-to-wishlist-remove.php:59
msgid "View &rsaquo;"
msgstr ""

#: includes/class-yith-wcwl-ajax-handler.php:76
#: templates/add-to-wishlist-remove.php:58
msgid "or"
msgstr ""

#: includes/class-yith-wcwl-ajax-handler.php:77
msgid "Close"
msgstr ""

#: includes/class-yith-wcwl-ajax-handler.php:155
#: includes/class-yith-wcwl-ajax-handler.php:195
msgid "Product successfully removed."
msgstr "成功移除商品。"

#: includes/class-yith-wcwl-form-handler.php:156
msgid "Please, make sure to enter a valid title"
msgstr ""

#: includes/class-yith-wcwl-frontend.php:461
msgid ""
"We are sorry, but this feature is available only if cookies on your browser "
"are enabled."
msgstr ""

#: includes/class-yith-wcwl-frontend.php:462
msgid "Product added to cart successfully"
msgstr ""

#: includes/class-yith-wcwl-frontend.php:725
#: includes/class-yith-wcwl-shortcode.php:239
#: plugin-options/wishlist_page-options.php:240
#: templates/wishlist-view-footer-mobile.php:46
#: templates/wishlist-view-footer.php:46
msgid "Add to cart"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:52
msgid "While you visit our site, we’ll track:"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:54
msgid ""
"Products you’ve added to the wishlist: we’ll use this to show you and other "
"users your favourite products, and to create targeted email campaigns."
msgstr ""

#: includes/class-yith-wcwl-privacy.php:55
msgid ""
"Wishlists you’ve created: we’ll keep track of the wishlists you create, and "
"make them visible to the store staff"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:57
msgid ""
"We’ll also use cookies to keep track of wishlist contents while you’re "
"browsing our site."
msgstr ""

#: includes/class-yith-wcwl-privacy.php:60
msgid ""
"Members of our team have access to the information you provide us with. For "
"example, both Administrators and Shop Managers can access:"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:62
msgid ""
"Wishlist details, such as products added, date of addition, name and privacy "
"settings of your wishlists"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:64
msgid ""
"Our team members have access to this information to offer you better deals "
"for the products you love."
msgstr ""

#: includes/class-yith-wcwl-privacy.php:84
#: includes/class-yith-wcwl-privacy.php:100
msgid "Customer wishlists"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:137 plugin-options/lists-options.php:25
#: plugin-options/lists-options.php:32
msgid "Wishlists"
msgstr "愿望清单"

#. Translators: %s Order number.
#: includes/class-yith-wcwl-privacy.php:199
msgid "Removed wishlist %s."
msgstr ""

#. Translators: %s Order number.
#: includes/class-yith-wcwl-privacy.php:203
msgid "Wishlist %s has been retained."
msgstr ""

#: includes/class-yith-wcwl-privacy.php:227
msgid "Token"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:228
msgid "Wishlist URL"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:229
msgid "Title"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:231
msgid "Visibility"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:232
msgid "Items added"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:58
msgid ""
"ID of the product to add to the wishlist (leave empty to use the global "
"product)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:63
msgid "URL of the wishlist page (leave empty to use the default settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:68
msgid "Button label (leave empty to use the default settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:73
msgid "\"Browse wishlist\" label (leave empty to use the default settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:78
msgid ""
"\"Product already in wishlist\" label (leave empty to use the default "
"settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:83
msgid ""
"\"Product added to wishlist\" label (leave empty to use the default settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:88
msgid ""
"Icon for the button (use any FontAwesome valid class, or leave empty to use "
"the default settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:93
msgid ""
"Additional CSS classes for the button (leave empty to use the default "
"settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:107
msgid "Choose whether to paginate items in the wishlist or show them all"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:110
#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:118
msgid "Paginate"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:111
#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:119
msgid "Do not paginate"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:116
msgid "Number of items to show per page"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:121
msgid "ID of the wishlist to show (e.g. K6EOWXB888ZD)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:414
msgid "Share on:"
msgstr "分享:"

#: includes/class-yith-wcwl-shortcode.php:438
#: plugin-options/wishlist_page-options.php:138
msgid "Share on Facebook"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:455
#: plugin-options/wishlist_page-options.php:147
msgid "Tweet on Twitter"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:473
#: plugin-options/wishlist_page-options.php:156
msgid "Pin on Pinterest"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:487
msgid "Share via email"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:510
#: plugin-options/wishlist_page-options.php:174
msgid "Share on WhatsApp"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:621
msgid "Remove from list"
msgstr ""

#: includes/class-yith-wcwl-wishlist-item.php:189
msgid "Free!"
msgstr "免费!"

#: includes/class-yith-wcwl.php:164
msgid "The item cannot be added to this wishlist"
msgstr ""

#: includes/class-yith-wcwl.php:168 includes/class-yith-wcwl.php:174
msgid "An error occurred while adding the products to the wishlist."
msgstr ""

#: includes/class-yith-wcwl.php:235 includes/class-yith-wcwl.php:241
msgid "Error. Unable to remove the product from the wishlist."
msgstr "错误。无法从「愿望清单」移除这个商品。"

#: includes/data-stores/class-yith-wcwl-wishlist-data-store.php:152
#: includes/data-stores/class-yith-wcwl-wishlist-data-store.php:174
msgid "Invalid wishlist."
msgstr ""

#: includes/data-stores/class-yith-wcwl-wishlist-item-data-store.php:119
msgid "Invalid wishlist item."
msgstr ""

#. translators: 1. Number of users.
#: includes/functions-yith-wcwl.php:249
msgid "%d user"
msgid_plural "%d users"
msgstr[0] ""
msgstr[1] ""

#: includes/functions-yith-wcwl.php:250
msgid "has this item in wishlist"
msgid_plural "have this item in wishlist"
msgstr[0] ""
msgstr[1] ""

#: includes/functions-yith-wcwl.php:252
msgid "You're the first"
msgstr ""

#: includes/functions-yith-wcwl.php:253
msgid "to add this item in wishlist"
msgstr ""

#. translators: 1. Count of users when many, or "another" when only one.
#: includes/functions-yith-wcwl.php:257
msgid "You and %s user"
msgid_plural "You and %d users"
msgstr[0] ""
msgstr[1] ""

#: includes/functions-yith-wcwl.php:257
msgid "another"
msgstr ""

#: includes/functions-yith-wcwl.php:258
msgid "have this item in wishlist"
msgstr ""

#: includes/functions-yith-wcwl.php:425
msgid "None"
msgstr ""

#: includes/functions-yith-wcwl.php:426
msgid "Custom"
msgstr ""

#: includes/functions-yith-wcwl.php:447
msgid "Shared"
msgstr "分享:"

#: includes/functions-yith-wcwl.php:451
msgid "Only people with a link to this list can see it"
msgstr ""

#: includes/functions-yith-wcwl.php:457
msgid "Private"
msgstr ""

#: includes/functions-yith-wcwl.php:461
msgid "Only you can see this list"
msgstr ""

#: includes/functions-yith-wcwl.php:467
msgid "Public"
msgstr ""

#: includes/functions-yith-wcwl.php:471
msgid "Anyone can search for and see this list"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:118
#: plugin-options/add_to_wishlist-options.php:127
msgid "Add to wishlist"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:128
#: plugin-options/add_to_wishlist-options.php:143
msgid "Browse wishlist"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:138
#, fuzzy
msgid "Product already in wishlist"
msgstr "商品已经加入收藏在「愿望清单」裡面。"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:148
#, fuzzy
msgid "Product added to wishlist"
msgstr "商品已经加入收藏在「愿望清单」裡面。"

#: init.php:160
msgid "is enabled but not effective. It requires WooCommerce to work."
msgstr ""

#: init.php:176
msgid "You can't activate the free version of"
msgstr ""

#: init.php:176
msgid "while you are using the premium one."
msgstr ""

#: plugin-options/add_to_wishlist-options.php:20
#: plugin-options/settings-options.php:27
msgid "General Settings"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:27
msgid "After product is added to wishlist"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:28
msgid ""
"Choose the look of the Wishlist button when the product has already been "
"added to a wishlist"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:32
#, fuzzy
msgid "Show \"Add to wishlist\" button"
msgstr "商品已经加入收藏在「愿望清单」裡面。"

#: plugin-options/add_to_wishlist-options.php:33
msgid "Show \"View wishlist\" link"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:34
msgid "Show \"Remove from list\" link"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:48
msgid "Loop settings"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:50
msgid ""
"Loop options will be visible on Shop page, category pages, product "
"shortcodes, products sliders, and all the other places where the WooCommerce "
"products' loop is used"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:55
msgid "Show \"Add to wishlist\" in loop"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:56
msgid "Enable the \"Add to wishlist\" feature in WooCommerce products' loop"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:64
msgid "Position of \"Add to wishlist\" in loop"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:65
msgid ""
"Choose where to show \"Add to wishlist\" button or link in WooCommerce "
"products' loop. <span class=\"addon\">Copy this shortcode <span class=\"code"
"\"><code>[yith_wcwl_add_to_wishlist]</code></span> and paste it where you "
"want to show the \"Add to wishlist\" link or button</span>"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:72
msgid "On top of the image"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:73
msgid "Before \"Add to cart\" button"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:74
msgid "After \"Add to cart\" button"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:75
#: plugin-options/add_to_wishlist-options.php:107
msgid "Use shortcode"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:89
msgid "Product page settings"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:96
msgid "Position of \"Add to wishlist\" on product page"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:97
msgid ""
"Choose where to show \"Add to wishlist\" button or link on the product page. "
"<span class=\"addon\">Copy this shortcode <span class=\"code"
"\"><code>[yith_wcwl_add_to_wishlist]</code></span> and paste it where you "
"want to show the \"Add to wishlist\" link or button</span>"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:104
msgid "After \"Add to cart\""
msgstr ""

#: plugin-options/add_to_wishlist-options.php:105
msgid "After thumbnails"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:106
msgid "After summary"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:117
#: plugin-options/wishlist_page-options.php:222
msgid "Text customization"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:124
msgid "\"Add to wishlist\" text"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:125
msgid "Enter a text for \"Add to wishlist\" button"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:132
msgid "\"Product added\" text"
msgstr "加入收藏!"

#: plugin-options/add_to_wishlist-options.php:133
msgid ""
"Enter the text of the message displayed when the user adds a product to the "
"wishlist"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:135
msgid "Product added!"
msgstr "加入收藏!"

#: plugin-options/add_to_wishlist-options.php:140
msgid "\"Browse wishlist\" text"
msgstr "浏览「愿望清单」"

#: plugin-options/add_to_wishlist-options.php:141
msgid "Enter a text for the \"Browse wishlist\" link on the product page"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:148
msgid "\"Product already in wishlist\" text"
msgstr "商品已经加入收藏在「愿望清单」裡面。"

#: plugin-options/add_to_wishlist-options.php:149
msgid ""
"Enter the text for the message displayed when the user views a product that "
"is already in the wishlist"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:151
msgid "The product is already in your wishlist!"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:161
msgid "Style & Color customization"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:168
msgid "Style of \"Add to wishlist\""
msgstr ""

#: plugin-options/add_to_wishlist-options.php:169
msgid ""
"Choose if you want to show a textual \"Add to wishlist\" link or a button"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:172
#: plugin-options/wishlist_page-options.php:261
msgid "Textual (anchor)"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:173
#: plugin-options/wishlist_page-options.php:262
msgid "Button with theme style"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:174
#: plugin-options/wishlist_page-options.php:263
msgid "Button with custom style"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:182
msgid "\"Add to wishlist\" button style"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:188
msgid "Choose colors for the \"Add to wishlist\" button"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:190
#: plugin-options/wishlist_page-options.php:279
#: plugin-options/wishlist_page-options.php:368
#: plugin-options/wishlist_page-options.php:417
#: plugin-options/wishlist_page-options.php:465
#: plugin-options/wishlist_page-options.php:552
#: plugin-options/wishlist_page-options.php:592
#: plugin-options/wishlist_page-options.php:632
#: plugin-options/wishlist_page-options.php:672
#: plugin-options/wishlist_page-options.php:712
msgid "Background"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:195
#: plugin-options/wishlist_page-options.php:284
#: plugin-options/wishlist_page-options.php:373
#: plugin-options/wishlist_page-options.php:422
#: plugin-options/wishlist_page-options.php:470
#: plugin-options/wishlist_page-options.php:507
msgid "Text"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:200
#: plugin-options/wishlist_page-options.php:289
#: plugin-options/wishlist_page-options.php:378
#: plugin-options/wishlist_page-options.php:427
#: plugin-options/wishlist_page-options.php:475
msgid "Border"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:206
msgid "Choose colors for the \"Add to wishlist\" button on hover state"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:208
#: plugin-options/wishlist_page-options.php:297
#: plugin-options/wishlist_page-options.php:386
#: plugin-options/wishlist_page-options.php:435
msgid "Background Hover"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:213
#: plugin-options/wishlist_page-options.php:302
#: plugin-options/wishlist_page-options.php:391
#: plugin-options/wishlist_page-options.php:440
msgid "Text Hover"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:218
#: plugin-options/wishlist_page-options.php:307
#: plugin-options/wishlist_page-options.php:396
#: plugin-options/wishlist_page-options.php:445
msgid "Border Hover"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:231
#: plugin-options/wishlist_page-options.php:320
msgid "Border radius"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:232
msgid "Choose radius for the \"Add to wishlist\" button"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:246
msgid "\"Add to wishlist\" icon"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:247
msgid "Select an icon for the \"Add to wishlist\" button (optional)"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:257
msgid "\"Add to wishlist\" custom icon"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:258
#: plugin-options/add_to_wishlist-options.php:282
msgid ""
"Upload an icon you'd like to use for \"Add to wishlist\" button (suggested "
"32px x 32px)"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:270
msgid "\"Added to wishlist\" icon"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:271
msgid "Select an icon for the \"Added to wishlist\" button (optional)"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:277
msgid "Same used for Add to wishlist"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:281
msgid "\"Added to wishlist\" custom icon"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:294
msgid "Custom CSS"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:295
msgid "Enter custom CSS to be applied to Wishlist elements (optional)"
msgstr ""

#: plugin-options/lists-options.php:34
msgid "Search list"
msgstr ""

#. translators: 1. Anchor to Frequently Bought Together landing page on
#. yithemes.com.
#: plugin-options/settings-options.php:19
msgid ""
"If you want to take advantage of this feature, you could consider purchasing "
"the %s."
msgstr ""

#: plugin-options/settings-options.php:34
msgid "Enable AJAX loading"
msgstr ""

#: plugin-options/settings-options.php:35
msgid "Load any cacheable wishlist item via AJAX"
msgstr ""

#: plugin-options/settings-options.php:48
msgid "YITH WooCommerce Frequently Bought Together Integration"
msgstr ""

#. translators: 1. Url to Frequently Bought Together landing page on
#. yithemes.com.
#: plugin-options/settings-options.php:51
msgid ""
"In order to use this integration you have to install and activate YITH "
"WooCommerce Frequently Bought Together. <a href=\"%s\">Learn more</a>"
msgstr ""

#: plugin-options/settings-options.php:56
msgid "Enable slider in wishlist"
msgstr ""

#. translators: 1. Example image of the integration. 2. CTA to buy Frequently
#. Bought Together.
#: plugin-options/settings-options.php:58
msgid ""
"Enable the slider with linked products on the Wishlist page (<a href=\"%1$s"
"\" class=\"thickbox\">Example</a>). %2$s"
msgstr ""

#: plugin-options/wishlist_page-options.php:19
msgid "All your wishlists"
msgstr ""

#: plugin-options/wishlist_page-options.php:26
msgid "Wishlist page"
msgstr ""

#: plugin-options/wishlist_page-options.php:27
msgid ""
"Pick a page as the main Wishlist page; make sure you add the <span class="
"\"code\"><code>[yith_wcwl_wishlist]</code></span> shortcode into the page "
"content"
msgstr ""

#: plugin-options/wishlist_page-options.php:40
msgid "Wishlist Detail Page"
msgstr ""

#: plugin-options/wishlist_page-options.php:47
#: plugin-options/wishlist_page-options.php:56
#: plugin-options/wishlist_page-options.php:65
#: plugin-options/wishlist_page-options.php:74
#: plugin-options/wishlist_page-options.php:83
#: plugin-options/wishlist_page-options.php:92
#: plugin-options/wishlist_page-options.php:101
msgid "In wishlist table show"
msgstr ""

#: plugin-options/wishlist_page-options.php:48
msgid "Product variations selected by the user (example: size or color)"
msgstr ""

#: plugin-options/wishlist_page-options.php:57
msgid "Product price"
msgstr ""

#: plugin-options/wishlist_page-options.php:66
msgid "Product stock (show if the product is available or not)"
msgstr ""

#: plugin-options/wishlist_page-options.php:75
msgid "Date on which the product was added to the wishlist"
msgstr ""

#: plugin-options/wishlist_page-options.php:84
msgid "Add to cart option for each product"
msgstr ""

#: plugin-options/wishlist_page-options.php:93
msgid ""
"Icon to remove the product from the wishlist - to the left of the product"
msgstr ""

#: plugin-options/wishlist_page-options.php:102
msgid ""
"Button to remove the product from the wishlist - to the right of the product"
msgstr ""

#: plugin-options/wishlist_page-options.php:110
msgid "Redirect to cart"
msgstr ""

#: plugin-options/wishlist_page-options.php:111
msgid ""
"Redirect users to the cart page when they add a product to the cart from the "
"wishlist page"
msgstr ""

#: plugin-options/wishlist_page-options.php:119
msgid "Remove if added to the cart"
msgstr ""

#: plugin-options/wishlist_page-options.php:120
msgid ""
"Remove the product from the wishlist after it has been added to the cart"
msgstr ""

#: plugin-options/wishlist_page-options.php:128
msgid "Share wishlist"
msgstr ""

#: plugin-options/wishlist_page-options.php:129
msgid "Enable this option to let users share their wishlist on social media"
msgstr ""

#: plugin-options/wishlist_page-options.php:137
#: plugin-options/wishlist_page-options.php:146
#: plugin-options/wishlist_page-options.php:155
#: plugin-options/wishlist_page-options.php:164
#: plugin-options/wishlist_page-options.php:173
msgid "Share on social media"
msgstr ""

#: plugin-options/wishlist_page-options.php:165
msgid "Share by email"
msgstr ""

#: plugin-options/wishlist_page-options.php:182
msgid "Share by URL"
msgstr ""

#: plugin-options/wishlist_page-options.php:183
msgid "Show \"Share URL\" field on wishlist page"
msgstr ""

#: plugin-options/wishlist_page-options.php:191
msgid "Sharing title"
msgstr ""

#: plugin-options/wishlist_page-options.php:192
msgid "Wishlist title used for sharing (only used on Twitter and Pinterest)"
msgstr ""

#. translators: 1. Blog name.
#: plugin-options/wishlist_page-options.php:195
msgid "My wishlist on %s"
msgstr ""

#: plugin-options/wishlist_page-options.php:200
msgid "Social text"
msgstr ""

#: plugin-options/wishlist_page-options.php:201
msgid ""
"Type the message you want to publish when you share your wishlist on Twitter "
"and Pinterest"
msgstr ""

#: plugin-options/wishlist_page-options.php:209
msgid "Social image URL"
msgstr ""

#: plugin-options/wishlist_page-options.php:210
msgid "It will be used to pin the wishlist on Pinterest."
msgstr ""

#: plugin-options/wishlist_page-options.php:229
msgid "Default wishlist name"
msgstr ""

#: plugin-options/wishlist_page-options.php:230
msgid ""
"Enter a name for the default wishlist. This is the wishlist that will be "
"automatically generated for all users if they do not create any custom one"
msgstr ""

#: plugin-options/wishlist_page-options.php:232
#, fuzzy
msgid "My wishlist"
msgstr "愿望清单"

#: plugin-options/wishlist_page-options.php:237
msgid "\"Add to cart\" text"
msgstr ""

#: plugin-options/wishlist_page-options.php:238
msgid "Enter a text for the \"Add to cart\" button"
msgstr ""

#: plugin-options/wishlist_page-options.php:250
msgid "Style & color customization"
msgstr ""

#: plugin-options/wishlist_page-options.php:257
msgid "Style of \"Add to cart\""
msgstr ""

#: plugin-options/wishlist_page-options.php:258
msgid "Choose whether to show a textual \"Add to cart\" link or a button"
msgstr ""

#: plugin-options/wishlist_page-options.php:271
msgid "\"Add to cart\" button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:277
msgid "Choose the colors for the \"Add to cart\" button"
msgstr ""

#: plugin-options/wishlist_page-options.php:295
msgid "Choose colors for the \"Add to cart\" button on hover state"
msgstr ""

#: plugin-options/wishlist_page-options.php:321
msgid "Set the radius for the \"Add to cart\" button"
msgstr ""

#: plugin-options/wishlist_page-options.php:335
msgid "\"Add to cart\" icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:336
msgid "Select an icon for the \"Add to cart\" button (optional)"
msgstr ""

#: plugin-options/wishlist_page-options.php:351
msgid "\"Add to cart\" custom icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:352
msgid ""
"Upload an icon you'd like to use for the \"Add to cart\" button (suggested "
"32px x 32px)"
msgstr ""

#: plugin-options/wishlist_page-options.php:360
msgid "Primary button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:366
msgid ""
"Choose colors for the primary button<br/><small>This style will be applied "
"to \"Edit title\" button on Wishlist view, \"Submit Changes\" button on "
"Manage view and \"Search wishlist\" button on Search view</small>"
msgstr ""

#: plugin-options/wishlist_page-options.php:384
msgid ""
"Choose colors for the primary button on hover state<br/><small>This style "
"will be applied to \"Edit title\" button on Wishlist view, \"Submit Changes"
"\" button on Manage view and \"Search wishlist\" button on Search view</"
"small>"
msgstr ""

#: plugin-options/wishlist_page-options.php:409
msgid "Secondary button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:415
#: plugin-options/wishlist_page-options.php:433
msgid ""
"Choose colors of the secondary button<br/><small>This style will be applied "
"to the buttons that allow showing and hiding the Edit title form on Wishlist "
"view and \"Create new Wishlist\" button on Manage view</small>"
msgstr ""

#: plugin-options/wishlist_page-options.php:458
msgid "Wishlist table style"
msgstr ""

#: plugin-options/wishlist_page-options.php:459
msgid ""
"Choose the colors for the wishlist table (when set to \"Traditional\" layout)"
msgstr ""

#: plugin-options/wishlist_page-options.php:487
msgid "Highlight color"
msgstr ""

#: plugin-options/wishlist_page-options.php:488
msgid ""
"Choose the color for all sections with background<br/><small>This color will "
"be used as background for the wishlist table heading and footer (when set to "
"\"Traditional\" layout), and for various form across wishlist views</small>"
msgstr ""

#: plugin-options/wishlist_page-options.php:500
msgid "Share button text color"
msgstr ""

#: plugin-options/wishlist_page-options.php:501
msgid "Choose colors for share buttons text"
msgstr ""

#: plugin-options/wishlist_page-options.php:512
msgid "Text hover"
msgstr ""

#: plugin-options/wishlist_page-options.php:525
msgid "Facebook share button icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:526
msgid "Select an icon for the Facebook share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:536
msgid "Facebook share button custom icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:537
msgid ""
"Upload an icon you'd like to use for Facebook share button (suggested 32px x "
"32px)"
msgstr ""

#: plugin-options/wishlist_page-options.php:545
msgid "Facebook share button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:546
msgid "Choose colors for Facebook share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:557
#: plugin-options/wishlist_page-options.php:597
#: plugin-options/wishlist_page-options.php:637
#: plugin-options/wishlist_page-options.php:677
#: plugin-options/wishlist_page-options.php:717
msgid "Background hover"
msgstr ""

#: plugin-options/wishlist_page-options.php:565
msgid "Twitter share button icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:566
msgid "Select an icon for the Twitter share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:576
msgid "Twitter share button custom icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:577
msgid ""
"Upload an icon you'd like to use for Twitter share button (suggested 32px x "
"32px)"
msgstr ""

#: plugin-options/wishlist_page-options.php:585
msgid "Twitter share button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:586
msgid "Choose colors for Twitter share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:605
msgid "Pinterest share button icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:606
msgid "Select an icon for the Pinterest share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:616
msgid "Pinterest share button custom icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:617
msgid ""
"Upload an icon you'd like to use for Pinterest share button (suggested 32px "
"x 32px)"
msgstr ""

#: plugin-options/wishlist_page-options.php:625
msgid "Pinterest share button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:626
msgid "Choose colors for Pinterest share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:645
msgid "Email share button icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:646
msgid "Select an icon for the Email share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:656
msgid "Email share button custom icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:657
msgid ""
"Upload an icon you'd like to use for the Email share button (suggested 32px "
"x 32px)"
msgstr ""

#: plugin-options/wishlist_page-options.php:665
msgid "Email share button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:666
msgid "Choose colors for the Email share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:685
msgid "WhatsApp share button icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:686
msgid "Select an icon for the WhatsApp share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:696
msgid "WhatsApp share button custom icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:697
msgid ""
"Upload an icon you'd like to use for WhatsApp share button (suggested 32px x "
"32px)"
msgstr ""

#: plugin-options/wishlist_page-options.php:705
msgid "WhatsApp share button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:706
msgid "Choose colors for WhatsApp share button"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:168
#: templates/admin/wishlist-panel-premium.php:309
msgid ""
"Upgrade to the %1$spremium version%2$s%3$sof %1$sYITH WooCommerce Wishlist"
"%2$s to benefit from all features!"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:170
#: templates/admin/wishlist-panel-premium.php:311
msgid "Upgrade"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:176
msgid "Premium Features"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:180
msgid "Allow your customers to create multiple wishlists"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:182
msgid ""
"Christmas, Birthday... users will be able to create and manage multiple "
"wishlists, in case they prefer to keep the products sorted by category or "
"other parameters."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:185
msgid "Multiple Wishlist"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:192
msgid "Wishlist Private"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:196
msgid "A transparent privacy management"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:198
msgid ""
"Your customers can set a privacy option for each wishlist and choose whether "
"sharing the wishlist or making it private."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:206
msgid ""
"Allow your customers to ask for an estimate, directly from their wishlist "
"page"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:208
msgid ""
"And give only registered users the privilege to use the wishlist "
"functionalities."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:211
msgid "Estimate Cost"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:218
msgid "Admin Panel"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:222
msgid "An advanced and more versatile management of the wishlist"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:224
msgid ""
"Your customers can sort the products in the wishlist thanks to the drag&drop "
"option, move products from one wishlist to another, manage product quantity, "
"download the wishlist content to a .pdf file, share the wishlist on their "
"social networks, and much more!"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:232
msgid "Monitor your customers’ wishlists and the popular products"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:234
msgid ""
"You can see your customers’ wishlists, gain insight into the products they "
"are more interested in and plan targeted marketing strategies."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:237
msgid "Search Wishlists"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:244
msgid "'ADD TO CART'"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:248
msgid ""
"Send promotional emails for products in wishlists to push customers to buy"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:250
msgid ""
"Just three clicks to send promotional emails with discount coupons to "
"customers who have added specific products to their wishlist and push them "
"to buy."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:258
msgid "Let users buy the product right from the wishlist page"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:260
msgid ""
"Let them move products from one wishlist to the cart in one click, keeping "
"also the information about the size, colour or quantity selected when added "
"to the wishlist."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:263
msgid "DISABLE WISHLIST"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:271
msgid "Choose a charming layout for your wishlist page"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:273
msgid ""
"The wishlist is one of the most used functionalities in an ecommerce store "
"but often the page layout is not enhanced enough and looks unattractive to "
"the user. With our plugin, you can choose among some alternative layouts and "
"offer an even more interesting experience to users who creates a wishlist on "
"your website."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:276
msgid "UNLOGGED USERS"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:284
msgid "Wishlist widgets for the header and sidebars"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:286
msgid ""
"Increase the wishlist visibility through our modern widgets that you can use "
"in the header, in the sidebars, wherever you want."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:289
msgid "POPULAR TABLE"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:296
msgid "FUNCTIONALITIES"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:300
msgid "Allow users to monitor the price of the products in their wishlist"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:302
msgid ""
"We took inspiration from one of the most interesting features of Amazon "
"product pages: from now on, users can realise what’s the best time to buy a "
"product and how much they can save when there’s a promotion running or a "
"discount on the product they’ve added to the wishlist."
msgstr ""

#: templates/share.php:51 templates/share.php:52
msgid "Facebook"
msgstr ""

#: templates/share.php:59 templates/share.php:60
msgid "Twitter"
msgstr ""

#: templates/share.php:67 templates/share.php:68
msgid "Pinterest"
msgstr ""

#: templates/share.php:75 templates/share.php:76
msgid "Email"
msgstr ""

#: templates/share.php:83
msgid "WhatsApp"
msgstr ""

#: templates/share.php:84
msgid "Whatsapp"
msgstr ""

#: templates/share.php:93
msgid "(Now"
msgstr ""

#: templates/share.php:93
msgid "copy"
msgstr ""

#: templates/share.php:93
msgid "this wishlist link and share it anywhere)"
msgstr ""

#: templates/wishlist-view-footer-mobile.php:44
#: templates/wishlist-view-footer.php:44
msgid "Apply this action to all the selected items:"
msgstr ""

#: templates/wishlist-view-footer-mobile.php:49
#: templates/wishlist-view-footer.php:49
msgid "Remove from wishlist"
msgstr ""

#. translators: 1. Wishlist formatted name.
#: templates/wishlist-view-footer-mobile.php:67
#: templates/wishlist-view-footer.php:67
msgid "Move to %s"
msgstr ""

#: templates/wishlist-view-footer-mobile.php:73
#: templates/wishlist-view-footer.php:73
msgid "Apply"
msgstr ""

#: templates/wishlist-view-footer-mobile.php:81
#: templates/wishlist-view-footer.php:81
msgid "Update"
msgstr ""

#: templates/wishlist-view-footer-mobile.php:87
#: templates/wishlist-view-footer.php:103
msgid "Add all to cart"
msgstr ""

#: templates/wishlist-view-header.php:48
msgid "Edit title"
msgstr ""

#: templates/wishlist-view-mobile.php:136
msgid "Added on:"
msgstr ""

#: templates/wishlist-view-mobile.php:147
msgid "Price:"
msgstr ""

#: templates/wishlist-view-mobile.php:174
msgid "Quantity:"
msgstr ""

#: templates/wishlist-view-mobile.php:189
msgid "Stock:"
msgstr ""

#: templates/wishlist-view-mobile.php:192 templates/wishlist-view.php:229
msgid "Out of stock"
msgstr ""

#: templates/wishlist-view-mobile.php:192 templates/wishlist-view.php:229
msgid "In Stock"
msgstr "有货"

#: templates/wishlist-view-mobile.php:212 templates/wishlist-view.php:262
msgid "Move"
msgstr ""

#: templates/wishlist-view-mobile.php:233 templates/wishlist-view.php:283
msgid "Move to another list &rsaquo;"
msgstr ""

#: templates/wishlist-view-mobile.php:241 templates/wishlist-view.php:157
#: templates/wishlist-view.php:293
msgid "Remove this product"
msgstr "移除这个商品"

#: templates/wishlist-view-mobile.php:252 templates/wishlist-view.php:313
msgid "No products added to the wishlist"
msgstr ""

#: templates/wishlist-view.php:79
msgid "Product name"
msgstr ""

#: templates/wishlist-view.php:87
msgid "Unit price"
msgstr ""

#: templates/wishlist-view.php:96
msgid "Quantity"
msgstr ""

#: templates/wishlist-view.php:105
msgid "Stock status"
msgstr ""

#: templates/wishlist-view.php:123
msgid "Arrange"
msgstr ""

#. translators: date added label: 1 date added.
#: templates/wishlist-view.php:243
msgid "Added on: %s"
msgstr ""

#: templates/wishlist-view.php:293
msgid "Remove"
msgstr ""

#. Description of the plugin/theme
msgid ""
"<code><strong>YITH WooCommerce Wishlist</strong></code> gives your users the "
"possibility to create, fill, manage and share their wishlists allowing you "
"to analyze their interests and needs to improve your marketing strategies. "
"<a href=\"https://yithemes.com/\" target=\"_blank\">Get more plugins for "
"your e-commerce on <strong>YITH</strong></a>"
msgstr ""

#: includes/class-yith-wcwl-admin.php:261
msgctxt "[HELP TAB] Video title"
msgid ""
"Check this video to learn how to <b>configure wishlist and customize options:"
"</b>"
msgstr ""

#: includes/class-yith-wcwl-install.php:340
msgctxt "page_slug"
msgid "wishlist"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:230
msgctxt "date when wishlist was created"
msgid "Created on"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:52
msgctxt "[gutenberg]: block name"
msgid "YITH Add to wishlist"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:101
msgctxt "[gutenberg]: block name"
msgid "YITH Wishlist"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:53
msgctxt "[gutenberg]: block description"
msgid "Shows Add to wishlist button"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:102
msgctxt "[gutenberg]: block description"
msgid "Shows a list of products in wishlist"
msgstr ""

#. translators: 1. % of reduction/increase in price.
#: includes/class-yith-wcwl-wishlist-item.php:428
msgctxt ""
"Part of the template that shows price variation since addition to list; "
"placeholder will be replaced with a percentage"
msgid "Price is %1$s%%"
msgstr ""

#. translators: 2: original product price.
#: includes/class-yith-wcwl-wishlist-item.php:430
msgctxt ""
"Part of the template that shows price variation since addition to list; "
"placeholder will be replaced with a price"
msgid "(Was %2$s when added  in list)"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:45
msgctxt "Elementor widget name"
msgid "YITH Wishlist Add button"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:45
#, fuzzy
msgctxt "Elementor widget name"
msgid "YITH Wishlist"
msgstr "愿望清单"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:87
#, fuzzy
msgctxt "Elementor section title"
msgid "Product"
msgstr "加入收藏!"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:107
msgctxt "Elementor section title"
msgid "Labels"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:157
msgctxt "Elementor section title"
msgid "Advanced"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:87
#, fuzzy
msgctxt "Elementor section title"
msgid "Wishlist"
msgstr "愿望清单"

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:107
msgctxt "Elementor section title"
msgid "Pagination"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:95
#, fuzzy
msgctxt "Elementor control label"
msgid "Product ID"
msgstr "加入收藏!"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:115
msgctxt "Elementor control label"
msgid "Button label"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:125
#, fuzzy
msgctxt "Elementor control label"
msgid "\"Browse wishlist\" label"
msgstr "浏览「愿望清单」"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:135
#, fuzzy
msgctxt "Elementor control label"
msgid "\"Product already in wishlist\" label"
msgstr "商品已经加入收藏在「愿望清单」裡面。"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:145
#, fuzzy
msgctxt "Elementor control label"
msgid "\"Product added to wishlist\" label"
msgstr "商品已经加入收藏在「愿望清单」裡面。"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:165
msgctxt "Elementor control label"
msgid "URL of the wishlist page"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:175
msgctxt "Elementor control label"
msgid "Icon for the button"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:185
msgctxt "Elementor control label"
msgid "Additional CSS classes for the button"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:95
#, fuzzy
msgctxt "Elementor control label"
msgid "Wishlist ID"
msgstr "愿望清单"

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:115
msgctxt "Elementor control label"
msgid "Paginate items"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:128
msgctxt "yith-woocommerce-wishlist"
msgid "Items per page"
msgstr ""

#~ msgid "My wishlist on "
#~ msgstr "愿望清单"

#~ msgid "YITH WooCommerce Wishlist"
#~ msgstr "浏览「愿望清单」"
PK`x1\Cn��
�
,languages/yith-woocommerce-wishlist-pt_BR.monu�[�����)���"�
"
3
>6I��������#8	JT[lx�
���	���� 1Q`q�?���
�		1	O	!l	�	�	�	�	�	�	
+
>
F
U
f
�
	

"Browse wishlist" text"Product added" text"Product already in wishlist" textAfter "Add to cart"After summaryAfter thumbnailsCustom CSSEdit titleError. Unable to remove the product from the wishlist.FacebookGeneral SettingsIn StockMy wishlist on %sProduct added!Product successfully removed.Redirect to cartRemove if added to the cartRemove this productRemoved wishlist %s.Share on FacebookShare on:SharedSocial image URLSocial textTweet on TwitterTwitterUse shortcodeWishlistWishlist %s has been retained.WishlistsProject-Id-Version: YITH WooCommerce Wishlist
Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/yith-woocommerce-wishlist
POT-Creation-Date: 2021-11-11 13:53:53+00:00
PO-Revision-Date: 2020-10-16 14:06+0200
Last-Translator: YIThemes <support@yithemes.com>
Language-Team: Your Inspiration Themes <plugins@yithemes.com>
Language: pt_BR
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Generator: Poedit 2.4.1
X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;_n:1,2;__ngettext:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2
X-Poedit-Basepath: .
Plural-Forms: nplurals=2; plural=n!=1;
X-Poedit-SourceCharset: UTF-8
X-Poedit-SearchPath-0: ..
X-Poedit-SearchPathExcluded-0: ../plugin-fw
Veja sua lista de desejos!Produto adicionado!Produto já na lista de desejos.Após " Adicionar ao carrinho "Após sumárioApós miniaturasCSS CustomizadoTitulo da lista de desejosErro. Não foi possível remover o produto da lista de desejos.FacebookOpções geraisEm estoqueMinha lista de desejos em %sProduto adicionado!Produto removida com sucesso.Redirecionar para o carrinhoRemover se adicionado ao carrinhoRemover este produtoMinha lista de desejos em %sCompartilhar no FacebookCompartilhar em:Compartilhar em:Url para compartilhamentoTexto Mídias SociaisTweetar no TwitterTwitterUsar shortcodeLista de DesejosTexto da tabela de desejosLista de DesejosPK`x1\���듯��,languages/yith-woocommerce-wishlist-uk_UA.ponu�[���# Copyright (C) 2019 YITH WooCommerce Wishlist
# This file is distributed under the same license as the YITH WooCommerce Wishlist package.
msgid ""
msgstr ""
"Project-Id-Version: YITH WooCommerce Wishlist\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/yith-woocommerce-"
"wishlist\n"
"POT-Creation-Date: 2021-11-11 13:53:53+00:00\n"
"PO-Revision-Date: 2020-10-16 14:07+0200\n"
"Last-Translator: Valentyn Zubenko <valentyn.zubenko@gmail.com>\n"
"Language-Team: Your Inspiration Themes <plugins@yithemes.com>\n"
"Language: uk_UA\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 2.4.1\n"
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;_n:1,2;__ngettext:1,2;"
"__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;"
"_nx_noop:4c,1,2\n"
"X-Poedit-Basepath: .\n"
"Plural-Forms: nplurals=2; plural=n!=1;\n"
"X-Poedit-SourceCharset: UTF-8\n"
"X-Poedit-SearchPath-0: ..\n"
"X-Poedit-SearchPathExcluded-0: ../plugin-fw\n"

#: includes/class-yith-wcwl-admin.php:126
#, fuzzy
msgid "Wishlist Page"
msgstr "Мій обраний список в %s"

#: includes/class-yith-wcwl-admin.php:148
msgid "General settings"
msgstr ""

#: includes/class-yith-wcwl-admin.php:149
msgid "Add to wishlist options"
msgstr ""

#: includes/class-yith-wcwl-admin.php:150
msgid "Wishlist page options"
msgstr ""

#: includes/class-yith-wcwl-admin.php:151
msgid "Premium Version"
msgstr ""

#: includes/class-yith-wcwl-admin.php:249
#: includes/class-yith-wcwl-install.php:342
msgid "Wishlist"
msgstr ""

#: includes/class-yith-wcwl-admin.php:251
msgid ""
"Allows your customers to create and share lists of products that they want "
"to purchase on your e-commerce."
msgstr ""

#: includes/class-yith-wcwl-ajax-handler.php:75
#: templates/add-to-wishlist-remove.php:59
msgid "View &rsaquo;"
msgstr ""

#: includes/class-yith-wcwl-ajax-handler.php:76
#: templates/add-to-wishlist-remove.php:58
msgid "or"
msgstr ""

#: includes/class-yith-wcwl-ajax-handler.php:77
msgid "Close"
msgstr ""

#: includes/class-yith-wcwl-ajax-handler.php:155
#: includes/class-yith-wcwl-ajax-handler.php:195
msgid "Product successfully removed."
msgstr ""

#: includes/class-yith-wcwl-form-handler.php:156
msgid "Please, make sure to enter a valid title"
msgstr ""

#: includes/class-yith-wcwl-frontend.php:461
msgid ""
"We are sorry, but this feature is available only if cookies on your browser "
"are enabled."
msgstr ""

#: includes/class-yith-wcwl-frontend.php:462
msgid "Product added to cart successfully"
msgstr ""

#: includes/class-yith-wcwl-frontend.php:725
#: includes/class-yith-wcwl-shortcode.php:239
#: plugin-options/wishlist_page-options.php:240
#: templates/wishlist-view-footer-mobile.php:46
#: templates/wishlist-view-footer.php:46
msgid "Add to cart"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:52
msgid "While you visit our site, we’ll track:"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:54
msgid ""
"Products you’ve added to the wishlist: we’ll use this to show you and other "
"users your favourite products, and to create targeted email campaigns."
msgstr ""

#: includes/class-yith-wcwl-privacy.php:55
msgid ""
"Wishlists you’ve created: we’ll keep track of the wishlists you create, and "
"make them visible to the store staff"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:57
msgid ""
"We’ll also use cookies to keep track of wishlist contents while you’re "
"browsing our site."
msgstr ""

#: includes/class-yith-wcwl-privacy.php:60
msgid ""
"Members of our team have access to the information you provide us with. For "
"example, both Administrators and Shop Managers can access:"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:62
msgid ""
"Wishlist details, such as products added, date of addition, name and privacy "
"settings of your wishlists"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:64
msgid ""
"Our team members have access to this information to offer you better deals "
"for the products you love."
msgstr ""

#: includes/class-yith-wcwl-privacy.php:84
#: includes/class-yith-wcwl-privacy.php:100
msgid "Customer wishlists"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:137 plugin-options/lists-options.php:25
#: plugin-options/lists-options.php:32
msgid "Wishlists"
msgstr "Мій обраний список в %s"

#. Translators: %s Order number.
#: includes/class-yith-wcwl-privacy.php:199
msgid "Removed wishlist %s."
msgstr "Мій обраний список в %s"

#. Translators: %s Order number.
#: includes/class-yith-wcwl-privacy.php:203
msgid "Wishlist %s has been retained."
msgstr ""

#: includes/class-yith-wcwl-privacy.php:227
msgid "Token"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:228
msgid "Wishlist URL"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:229
msgid "Title"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:231
msgid "Visibility"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:232
msgid "Items added"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:58
msgid ""
"ID of the product to add to the wishlist (leave empty to use the global "
"product)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:63
msgid "URL of the wishlist page (leave empty to use the default settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:68
msgid "Button label (leave empty to use the default settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:73
msgid "\"Browse wishlist\" label (leave empty to use the default settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:78
msgid ""
"\"Product already in wishlist\" label (leave empty to use the default "
"settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:83
msgid ""
"\"Product added to wishlist\" label (leave empty to use the default settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:88
msgid ""
"Icon for the button (use any FontAwesome valid class, or leave empty to use "
"the default settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:93
msgid ""
"Additional CSS classes for the button (leave empty to use the default "
"settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:107
msgid "Choose whether to paginate items in the wishlist or show them all"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:110
#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:118
msgid "Paginate"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:111
#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:119
msgid "Do not paginate"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:116
msgid "Number of items to show per page"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:121
msgid "ID of the wishlist to show (e.g. K6EOWXB888ZD)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:414
msgid "Share on:"
msgstr "Поширити в:"

#: includes/class-yith-wcwl-shortcode.php:438
#: plugin-options/wishlist_page-options.php:138
msgid "Share on Facebook"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:455
#: plugin-options/wishlist_page-options.php:147
msgid "Tweet on Twitter"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:473
#: plugin-options/wishlist_page-options.php:156
msgid "Pin on Pinterest"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:487
msgid "Share via email"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:510
#: plugin-options/wishlist_page-options.php:174
msgid "Share on WhatsApp"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:621
msgid "Remove from list"
msgstr ""

#: includes/class-yith-wcwl-wishlist-item.php:189
msgid "Free!"
msgstr ""

#: includes/class-yith-wcwl.php:164
msgid "The item cannot be added to this wishlist"
msgstr ""

#: includes/class-yith-wcwl.php:168 includes/class-yith-wcwl.php:174
msgid "An error occurred while adding the products to the wishlist."
msgstr ""

#: includes/class-yith-wcwl.php:235 includes/class-yith-wcwl.php:241
msgid "Error. Unable to remove the product from the wishlist."
msgstr ""

#: includes/data-stores/class-yith-wcwl-wishlist-data-store.php:152
#: includes/data-stores/class-yith-wcwl-wishlist-data-store.php:174
msgid "Invalid wishlist."
msgstr ""

#: includes/data-stores/class-yith-wcwl-wishlist-item-data-store.php:119
msgid "Invalid wishlist item."
msgstr ""

#. translators: 1. Number of users.
#: includes/functions-yith-wcwl.php:249
msgid "%d user"
msgid_plural "%d users"
msgstr[0] ""
msgstr[1] ""

#: includes/functions-yith-wcwl.php:250
msgid "has this item in wishlist"
msgid_plural "have this item in wishlist"
msgstr[0] ""
msgstr[1] ""

#: includes/functions-yith-wcwl.php:252
msgid "You're the first"
msgstr ""

#: includes/functions-yith-wcwl.php:253
msgid "to add this item in wishlist"
msgstr ""

#. translators: 1. Count of users when many, or "another" when only one.
#: includes/functions-yith-wcwl.php:257
msgid "You and %s user"
msgid_plural "You and %d users"
msgstr[0] ""
msgstr[1] ""

#: includes/functions-yith-wcwl.php:257
msgid "another"
msgstr ""

#: includes/functions-yith-wcwl.php:258
msgid "have this item in wishlist"
msgstr ""

#: includes/functions-yith-wcwl.php:425
msgid "None"
msgstr ""

#: includes/functions-yith-wcwl.php:426
msgid "Custom"
msgstr ""

#: includes/functions-yith-wcwl.php:447
msgid "Shared"
msgstr "Поширити в:"

#: includes/functions-yith-wcwl.php:451
msgid "Only people with a link to this list can see it"
msgstr ""

#: includes/functions-yith-wcwl.php:457
msgid "Private"
msgstr ""

#: includes/functions-yith-wcwl.php:461
msgid "Only you can see this list"
msgstr ""

#: includes/functions-yith-wcwl.php:467
msgid "Public"
msgstr ""

#: includes/functions-yith-wcwl.php:471
msgid "Anyone can search for and see this list"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:118
#: plugin-options/add_to_wishlist-options.php:127
msgid "Add to wishlist"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:128
#: plugin-options/add_to_wishlist-options.php:143
msgid "Browse wishlist"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:138
msgid "Product already in wishlist"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:148
#, fuzzy
msgid "Product added to wishlist"
msgstr "Назва продукту"

#: init.php:160
msgid "is enabled but not effective. It requires WooCommerce to work."
msgstr ""

#: init.php:176
msgid "You can't activate the free version of"
msgstr ""

#: init.php:176
msgid "while you are using the premium one."
msgstr ""

#: plugin-options/add_to_wishlist-options.php:20
#: plugin-options/settings-options.php:27
msgid "General Settings"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:27
msgid "After product is added to wishlist"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:28
msgid ""
"Choose the look of the Wishlist button when the product has already been "
"added to a wishlist"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:32
#, fuzzy
msgid "Show \"Add to wishlist\" button"
msgstr "Назва продукту"

#: plugin-options/add_to_wishlist-options.php:33
msgid "Show \"View wishlist\" link"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:34
msgid "Show \"Remove from list\" link"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:48
msgid "Loop settings"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:50
msgid ""
"Loop options will be visible on Shop page, category pages, product "
"shortcodes, products sliders, and all the other places where the WooCommerce "
"products' loop is used"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:55
msgid "Show \"Add to wishlist\" in loop"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:56
msgid "Enable the \"Add to wishlist\" feature in WooCommerce products' loop"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:64
msgid "Position of \"Add to wishlist\" in loop"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:65
msgid ""
"Choose where to show \"Add to wishlist\" button or link in WooCommerce "
"products' loop. <span class=\"addon\">Copy this shortcode <span class=\"code"
"\"><code>[yith_wcwl_add_to_wishlist]</code></span> and paste it where you "
"want to show the \"Add to wishlist\" link or button</span>"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:72
msgid "On top of the image"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:73
msgid "Before \"Add to cart\" button"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:74
msgid "After \"Add to cart\" button"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:75
#: plugin-options/add_to_wishlist-options.php:107
msgid "Use shortcode"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:89
msgid "Product page settings"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:96
msgid "Position of \"Add to wishlist\" on product page"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:97
msgid ""
"Choose where to show \"Add to wishlist\" button or link on the product page. "
"<span class=\"addon\">Copy this shortcode <span class=\"code"
"\"><code>[yith_wcwl_add_to_wishlist]</code></span> and paste it where you "
"want to show the \"Add to wishlist\" link or button</span>"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:104
msgid "After \"Add to cart\""
msgstr "After \"Додати в кошик\""

#: plugin-options/add_to_wishlist-options.php:105
msgid "After thumbnails"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:106
msgid "After summary"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:117
#: plugin-options/wishlist_page-options.php:222
msgid "Text customization"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:124
msgid "\"Add to wishlist\" text"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:125
msgid "Enter a text for \"Add to wishlist\" button"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:132
msgid "\"Product added\" text"
msgstr "Назва продукту"

#: plugin-options/add_to_wishlist-options.php:133
msgid ""
"Enter the text of the message displayed when the user adds a product to the "
"wishlist"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:135
msgid "Product added!"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:140
msgid "\"Browse wishlist\" text"
msgstr "\"Додати в кошик\" button text"

#: plugin-options/add_to_wishlist-options.php:141
msgid "Enter a text for the \"Browse wishlist\" link on the product page"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:148
msgid "\"Product already in wishlist\" text"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:149
msgid ""
"Enter the text for the message displayed when the user views a product that "
"is already in the wishlist"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:151
msgid "The product is already in your wishlist!"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:161
msgid "Style & Color customization"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:168
msgid "Style of \"Add to wishlist\""
msgstr ""

#: plugin-options/add_to_wishlist-options.php:169
msgid ""
"Choose if you want to show a textual \"Add to wishlist\" link or a button"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:172
#: plugin-options/wishlist_page-options.php:261
msgid "Textual (anchor)"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:173
#: plugin-options/wishlist_page-options.php:262
msgid "Button with theme style"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:174
#: plugin-options/wishlist_page-options.php:263
msgid "Button with custom style"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:182
msgid "\"Add to wishlist\" button style"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:188
msgid "Choose colors for the \"Add to wishlist\" button"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:190
#: plugin-options/wishlist_page-options.php:279
#: plugin-options/wishlist_page-options.php:368
#: plugin-options/wishlist_page-options.php:417
#: plugin-options/wishlist_page-options.php:465
#: plugin-options/wishlist_page-options.php:552
#: plugin-options/wishlist_page-options.php:592
#: plugin-options/wishlist_page-options.php:632
#: plugin-options/wishlist_page-options.php:672
#: plugin-options/wishlist_page-options.php:712
msgid "Background"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:195
#: plugin-options/wishlist_page-options.php:284
#: plugin-options/wishlist_page-options.php:373
#: plugin-options/wishlist_page-options.php:422
#: plugin-options/wishlist_page-options.php:470
#: plugin-options/wishlist_page-options.php:507
msgid "Text"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:200
#: plugin-options/wishlist_page-options.php:289
#: plugin-options/wishlist_page-options.php:378
#: plugin-options/wishlist_page-options.php:427
#: plugin-options/wishlist_page-options.php:475
msgid "Border"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:206
msgid "Choose colors for the \"Add to wishlist\" button on hover state"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:208
#: plugin-options/wishlist_page-options.php:297
#: plugin-options/wishlist_page-options.php:386
#: plugin-options/wishlist_page-options.php:435
msgid "Background Hover"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:213
#: plugin-options/wishlist_page-options.php:302
#: plugin-options/wishlist_page-options.php:391
#: plugin-options/wishlist_page-options.php:440
msgid "Text Hover"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:218
#: plugin-options/wishlist_page-options.php:307
#: plugin-options/wishlist_page-options.php:396
#: plugin-options/wishlist_page-options.php:445
msgid "Border Hover"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:231
#: plugin-options/wishlist_page-options.php:320
msgid "Border radius"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:232
msgid "Choose radius for the \"Add to wishlist\" button"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:246
msgid "\"Add to wishlist\" icon"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:247
msgid "Select an icon for the \"Add to wishlist\" button (optional)"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:257
msgid "\"Add to wishlist\" custom icon"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:258
#: plugin-options/add_to_wishlist-options.php:282
msgid ""
"Upload an icon you'd like to use for \"Add to wishlist\" button (suggested "
"32px x 32px)"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:270
msgid "\"Added to wishlist\" icon"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:271
msgid "Select an icon for the \"Added to wishlist\" button (optional)"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:277
msgid "Same used for Add to wishlist"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:281
msgid "\"Added to wishlist\" custom icon"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:294
msgid "Custom CSS"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:295
msgid "Enter custom CSS to be applied to Wishlist elements (optional)"
msgstr ""

#: plugin-options/lists-options.php:34
msgid "Search list"
msgstr ""

#. translators: 1. Anchor to Frequently Bought Together landing page on
#. yithemes.com.
#: plugin-options/settings-options.php:19
msgid ""
"If you want to take advantage of this feature, you could consider purchasing "
"the %s."
msgstr ""

#: plugin-options/settings-options.php:34
msgid "Enable AJAX loading"
msgstr ""

#: plugin-options/settings-options.php:35
msgid "Load any cacheable wishlist item via AJAX"
msgstr ""

#: plugin-options/settings-options.php:48
msgid "YITH WooCommerce Frequently Bought Together Integration"
msgstr ""

#. translators: 1. Url to Frequently Bought Together landing page on
#. yithemes.com.
#: plugin-options/settings-options.php:51
msgid ""
"In order to use this integration you have to install and activate YITH "
"WooCommerce Frequently Bought Together. <a href=\"%s\">Learn more</a>"
msgstr ""

#: plugin-options/settings-options.php:56
msgid "Enable slider in wishlist"
msgstr ""

#. translators: 1. Example image of the integration. 2. CTA to buy Frequently
#. Bought Together.
#: plugin-options/settings-options.php:58
msgid ""
"Enable the slider with linked products on the Wishlist page (<a href=\"%1$s"
"\" class=\"thickbox\">Example</a>). %2$s"
msgstr ""

#: plugin-options/wishlist_page-options.php:19
msgid "All your wishlists"
msgstr ""

#: plugin-options/wishlist_page-options.php:26
msgid "Wishlist page"
msgstr ""

#: plugin-options/wishlist_page-options.php:27
msgid ""
"Pick a page as the main Wishlist page; make sure you add the <span class="
"\"code\"><code>[yith_wcwl_wishlist]</code></span> shortcode into the page "
"content"
msgstr ""

#: plugin-options/wishlist_page-options.php:40
msgid "Wishlist Detail Page"
msgstr ""

#: plugin-options/wishlist_page-options.php:47
#: plugin-options/wishlist_page-options.php:56
#: plugin-options/wishlist_page-options.php:65
#: plugin-options/wishlist_page-options.php:74
#: plugin-options/wishlist_page-options.php:83
#: plugin-options/wishlist_page-options.php:92
#: plugin-options/wishlist_page-options.php:101
msgid "In wishlist table show"
msgstr ""

#: plugin-options/wishlist_page-options.php:48
msgid "Product variations selected by the user (example: size or color)"
msgstr ""

#: plugin-options/wishlist_page-options.php:57
msgid "Product price"
msgstr ""

#: plugin-options/wishlist_page-options.php:66
msgid "Product stock (show if the product is available or not)"
msgstr ""

#: plugin-options/wishlist_page-options.php:75
msgid "Date on which the product was added to the wishlist"
msgstr ""

#: plugin-options/wishlist_page-options.php:84
msgid "Add to cart option for each product"
msgstr ""

#: plugin-options/wishlist_page-options.php:93
msgid ""
"Icon to remove the product from the wishlist - to the left of the product"
msgstr ""

#: plugin-options/wishlist_page-options.php:102
msgid ""
"Button to remove the product from the wishlist - to the right of the product"
msgstr ""

#: plugin-options/wishlist_page-options.php:110
msgid "Redirect to cart"
msgstr ""

#: plugin-options/wishlist_page-options.php:111
msgid ""
"Redirect users to the cart page when they add a product to the cart from the "
"wishlist page"
msgstr ""

#: plugin-options/wishlist_page-options.php:119
msgid "Remove if added to the cart"
msgstr ""

#: plugin-options/wishlist_page-options.php:120
msgid ""
"Remove the product from the wishlist after it has been added to the cart"
msgstr ""

#: plugin-options/wishlist_page-options.php:128
msgid "Share wishlist"
msgstr ""

#: plugin-options/wishlist_page-options.php:129
msgid "Enable this option to let users share their wishlist on social media"
msgstr ""

#: plugin-options/wishlist_page-options.php:137
#: plugin-options/wishlist_page-options.php:146
#: plugin-options/wishlist_page-options.php:155
#: plugin-options/wishlist_page-options.php:164
#: plugin-options/wishlist_page-options.php:173
msgid "Share on social media"
msgstr ""

#: plugin-options/wishlist_page-options.php:165
msgid "Share by email"
msgstr ""

#: plugin-options/wishlist_page-options.php:182
msgid "Share by URL"
msgstr ""

#: plugin-options/wishlist_page-options.php:183
msgid "Show \"Share URL\" field on wishlist page"
msgstr ""

#: plugin-options/wishlist_page-options.php:191
msgid "Sharing title"
msgstr ""

#: plugin-options/wishlist_page-options.php:192
msgid "Wishlist title used for sharing (only used on Twitter and Pinterest)"
msgstr ""

#. translators: 1. Blog name.
#: plugin-options/wishlist_page-options.php:195
msgid "My wishlist on %s"
msgstr "Мій обраний список в %s"

#: plugin-options/wishlist_page-options.php:200
msgid "Social text"
msgstr ""

#: plugin-options/wishlist_page-options.php:201
msgid ""
"Type the message you want to publish when you share your wishlist on Twitter "
"and Pinterest"
msgstr ""

#: plugin-options/wishlist_page-options.php:209
msgid "Social image URL"
msgstr ""

#: plugin-options/wishlist_page-options.php:210
msgid "It will be used to pin the wishlist on Pinterest."
msgstr ""

#: plugin-options/wishlist_page-options.php:229
msgid "Default wishlist name"
msgstr ""

#: plugin-options/wishlist_page-options.php:230
msgid ""
"Enter a name for the default wishlist. This is the wishlist that will be "
"automatically generated for all users if they do not create any custom one"
msgstr ""

#: plugin-options/wishlist_page-options.php:232
#, fuzzy
msgid "My wishlist"
msgstr "Мій обраний список в %s"

#: plugin-options/wishlist_page-options.php:237
msgid "\"Add to cart\" text"
msgstr ""

#: plugin-options/wishlist_page-options.php:238
msgid "Enter a text for the \"Add to cart\" button"
msgstr ""

#: plugin-options/wishlist_page-options.php:250
msgid "Style & color customization"
msgstr ""

#: plugin-options/wishlist_page-options.php:257
msgid "Style of \"Add to cart\""
msgstr ""

#: plugin-options/wishlist_page-options.php:258
msgid "Choose whether to show a textual \"Add to cart\" link or a button"
msgstr ""

#: plugin-options/wishlist_page-options.php:271
msgid "\"Add to cart\" button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:277
msgid "Choose the colors for the \"Add to cart\" button"
msgstr ""

#: plugin-options/wishlist_page-options.php:295
msgid "Choose colors for the \"Add to cart\" button on hover state"
msgstr ""

#: plugin-options/wishlist_page-options.php:321
msgid "Set the radius for the \"Add to cart\" button"
msgstr ""

#: plugin-options/wishlist_page-options.php:335
msgid "\"Add to cart\" icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:336
msgid "Select an icon for the \"Add to cart\" button (optional)"
msgstr ""

#: plugin-options/wishlist_page-options.php:351
msgid "\"Add to cart\" custom icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:352
msgid ""
"Upload an icon you'd like to use for the \"Add to cart\" button (suggested "
"32px x 32px)"
msgstr ""

#: plugin-options/wishlist_page-options.php:360
msgid "Primary button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:366
msgid ""
"Choose colors for the primary button<br/><small>This style will be applied "
"to \"Edit title\" button on Wishlist view, \"Submit Changes\" button on "
"Manage view and \"Search wishlist\" button on Search view</small>"
msgstr ""

#: plugin-options/wishlist_page-options.php:384
msgid ""
"Choose colors for the primary button on hover state<br/><small>This style "
"will be applied to \"Edit title\" button on Wishlist view, \"Submit Changes"
"\" button on Manage view and \"Search wishlist\" button on Search view</"
"small>"
msgstr ""

#: plugin-options/wishlist_page-options.php:409
msgid "Secondary button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:415
#: plugin-options/wishlist_page-options.php:433
msgid ""
"Choose colors of the secondary button<br/><small>This style will be applied "
"to the buttons that allow showing and hiding the Edit title form on Wishlist "
"view and \"Create new Wishlist\" button on Manage view</small>"
msgstr ""

#: plugin-options/wishlist_page-options.php:458
msgid "Wishlist table style"
msgstr ""

#: plugin-options/wishlist_page-options.php:459
msgid ""
"Choose the colors for the wishlist table (when set to \"Traditional\" layout)"
msgstr ""

#: plugin-options/wishlist_page-options.php:487
msgid "Highlight color"
msgstr ""

#: plugin-options/wishlist_page-options.php:488
msgid ""
"Choose the color for all sections with background<br/><small>This color will "
"be used as background for the wishlist table heading and footer (when set to "
"\"Traditional\" layout), and for various form across wishlist views</small>"
msgstr ""

#: plugin-options/wishlist_page-options.php:500
msgid "Share button text color"
msgstr ""

#: plugin-options/wishlist_page-options.php:501
msgid "Choose colors for share buttons text"
msgstr ""

#: plugin-options/wishlist_page-options.php:512
msgid "Text hover"
msgstr ""

#: plugin-options/wishlist_page-options.php:525
msgid "Facebook share button icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:526
msgid "Select an icon for the Facebook share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:536
msgid "Facebook share button custom icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:537
msgid ""
"Upload an icon you'd like to use for Facebook share button (suggested 32px x "
"32px)"
msgstr ""

#: plugin-options/wishlist_page-options.php:545
msgid "Facebook share button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:546
msgid "Choose colors for Facebook share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:557
#: plugin-options/wishlist_page-options.php:597
#: plugin-options/wishlist_page-options.php:637
#: plugin-options/wishlist_page-options.php:677
#: plugin-options/wishlist_page-options.php:717
msgid "Background hover"
msgstr ""

#: plugin-options/wishlist_page-options.php:565
msgid "Twitter share button icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:566
msgid "Select an icon for the Twitter share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:576
msgid "Twitter share button custom icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:577
msgid ""
"Upload an icon you'd like to use for Twitter share button (suggested 32px x "
"32px)"
msgstr ""

#: plugin-options/wishlist_page-options.php:585
msgid "Twitter share button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:586
msgid "Choose colors for Twitter share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:605
msgid "Pinterest share button icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:606
msgid "Select an icon for the Pinterest share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:616
msgid "Pinterest share button custom icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:617
msgid ""
"Upload an icon you'd like to use for Pinterest share button (suggested 32px "
"x 32px)"
msgstr ""

#: plugin-options/wishlist_page-options.php:625
msgid "Pinterest share button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:626
msgid "Choose colors for Pinterest share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:645
msgid "Email share button icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:646
msgid "Select an icon for the Email share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:656
msgid "Email share button custom icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:657
msgid ""
"Upload an icon you'd like to use for the Email share button (suggested 32px "
"x 32px)"
msgstr ""

#: plugin-options/wishlist_page-options.php:665
msgid "Email share button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:666
msgid "Choose colors for the Email share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:685
msgid "WhatsApp share button icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:686
msgid "Select an icon for the WhatsApp share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:696
msgid "WhatsApp share button custom icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:697
msgid ""
"Upload an icon you'd like to use for WhatsApp share button (suggested 32px x "
"32px)"
msgstr ""

#: plugin-options/wishlist_page-options.php:705
msgid "WhatsApp share button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:706
msgid "Choose colors for WhatsApp share button"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:168
#: templates/admin/wishlist-panel-premium.php:309
msgid ""
"Upgrade to the %1$spremium version%2$s%3$sof %1$sYITH WooCommerce Wishlist"
"%2$s to benefit from all features!"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:170
#: templates/admin/wishlist-panel-premium.php:311
msgid "Upgrade"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:176
msgid "Premium Features"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:180
msgid "Allow your customers to create multiple wishlists"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:182
msgid ""
"Christmas, Birthday... users will be able to create and manage multiple "
"wishlists, in case they prefer to keep the products sorted by category or "
"other parameters."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:185
msgid "Multiple Wishlist"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:192
msgid "Wishlist Private"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:196
msgid "A transparent privacy management"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:198
msgid ""
"Your customers can set a privacy option for each wishlist and choose whether "
"sharing the wishlist or making it private."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:206
msgid ""
"Allow your customers to ask for an estimate, directly from their wishlist "
"page"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:208
msgid ""
"And give only registered users the privilege to use the wishlist "
"functionalities."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:211
msgid "Estimate Cost"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:218
msgid "Admin Panel"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:222
msgid "An advanced and more versatile management of the wishlist"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:224
msgid ""
"Your customers can sort the products in the wishlist thanks to the drag&drop "
"option, move products from one wishlist to another, manage product quantity, "
"download the wishlist content to a .pdf file, share the wishlist on their "
"social networks, and much more!"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:232
msgid "Monitor your customers’ wishlists and the popular products"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:234
msgid ""
"You can see your customers’ wishlists, gain insight into the products they "
"are more interested in and plan targeted marketing strategies."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:237
msgid "Search Wishlists"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:244
msgid "'ADD TO CART'"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:248
msgid ""
"Send promotional emails for products in wishlists to push customers to buy"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:250
msgid ""
"Just three clicks to send promotional emails with discount coupons to "
"customers who have added specific products to their wishlist and push them "
"to buy."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:258
msgid "Let users buy the product right from the wishlist page"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:260
msgid ""
"Let them move products from one wishlist to the cart in one click, keeping "
"also the information about the size, colour or quantity selected when added "
"to the wishlist."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:263
msgid "DISABLE WISHLIST"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:271
msgid "Choose a charming layout for your wishlist page"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:273
msgid ""
"The wishlist is one of the most used functionalities in an ecommerce store "
"but often the page layout is not enhanced enough and looks unattractive to "
"the user. With our plugin, you can choose among some alternative layouts and "
"offer an even more interesting experience to users who creates a wishlist on "
"your website."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:276
msgid "UNLOGGED USERS"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:284
msgid "Wishlist widgets for the header and sidebars"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:286
msgid ""
"Increase the wishlist visibility through our modern widgets that you can use "
"in the header, in the sidebars, wherever you want."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:289
msgid "POPULAR TABLE"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:296
msgid "FUNCTIONALITIES"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:300
msgid "Allow users to monitor the price of the products in their wishlist"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:302
msgid ""
"We took inspiration from one of the most interesting features of Amazon "
"product pages: from now on, users can realise what’s the best time to buy a "
"product and how much they can save when there’s a promotion running or a "
"discount on the product they’ve added to the wishlist."
msgstr ""

#: templates/share.php:51 templates/share.php:52
msgid "Facebook"
msgstr ""

#: templates/share.php:59 templates/share.php:60
msgid "Twitter"
msgstr ""

#: templates/share.php:67 templates/share.php:68
msgid "Pinterest"
msgstr ""

#: templates/share.php:75 templates/share.php:76
msgid "Email"
msgstr ""

#: templates/share.php:83
msgid "WhatsApp"
msgstr ""

#: templates/share.php:84
msgid "Whatsapp"
msgstr ""

#: templates/share.php:93
msgid "(Now"
msgstr ""

#: templates/share.php:93
msgid "copy"
msgstr ""

#: templates/share.php:93
msgid "this wishlist link and share it anywhere)"
msgstr ""

#: templates/wishlist-view-footer-mobile.php:44
#: templates/wishlist-view-footer.php:44
msgid "Apply this action to all the selected items:"
msgstr ""

#: templates/wishlist-view-footer-mobile.php:49
#: templates/wishlist-view-footer.php:49
msgid "Remove from wishlist"
msgstr ""

#. translators: 1. Wishlist formatted name.
#: templates/wishlist-view-footer-mobile.php:67
#: templates/wishlist-view-footer.php:67
msgid "Move to %s"
msgstr ""

#: templates/wishlist-view-footer-mobile.php:73
#: templates/wishlist-view-footer.php:73
msgid "Apply"
msgstr ""

#: templates/wishlist-view-footer-mobile.php:81
#: templates/wishlist-view-footer.php:81
msgid "Update"
msgstr ""

#: templates/wishlist-view-footer-mobile.php:87
#: templates/wishlist-view-footer.php:103
msgid "Add all to cart"
msgstr ""

#: templates/wishlist-view-header.php:48
msgid "Edit title"
msgstr ""

#: templates/wishlist-view-mobile.php:136
msgid "Added on:"
msgstr ""

#: templates/wishlist-view-mobile.php:147
msgid "Price:"
msgstr ""

#: templates/wishlist-view-mobile.php:174
msgid "Quantity:"
msgstr ""

#: templates/wishlist-view-mobile.php:189
msgid "Stock:"
msgstr ""

#: templates/wishlist-view-mobile.php:192 templates/wishlist-view.php:229
msgid "Out of stock"
msgstr ""

#: templates/wishlist-view-mobile.php:192 templates/wishlist-view.php:229
msgid "In Stock"
msgstr "в наявності"

#: templates/wishlist-view-mobile.php:212 templates/wishlist-view.php:262
msgid "Move"
msgstr ""

#: templates/wishlist-view-mobile.php:233 templates/wishlist-view.php:283
msgid "Move to another list &rsaquo;"
msgstr ""

#: templates/wishlist-view-mobile.php:241 templates/wishlist-view.php:157
#: templates/wishlist-view.php:293
msgid "Remove this product"
msgstr ""

#: templates/wishlist-view-mobile.php:252 templates/wishlist-view.php:313
msgid "No products added to the wishlist"
msgstr ""

#: templates/wishlist-view.php:79
msgid "Product name"
msgstr ""

#: templates/wishlist-view.php:87
msgid "Unit price"
msgstr ""

#: templates/wishlist-view.php:96
msgid "Quantity"
msgstr ""

#: templates/wishlist-view.php:105
msgid "Stock status"
msgstr ""

#: templates/wishlist-view.php:123
msgid "Arrange"
msgstr ""

#. translators: date added label: 1 date added.
#: templates/wishlist-view.php:243
msgid "Added on: %s"
msgstr ""

#: templates/wishlist-view.php:293
msgid "Remove"
msgstr ""

#. Description of the plugin/theme
msgid ""
"<code><strong>YITH WooCommerce Wishlist</strong></code> gives your users the "
"possibility to create, fill, manage and share their wishlists allowing you "
"to analyze their interests and needs to improve your marketing strategies. "
"<a href=\"https://yithemes.com/\" target=\"_blank\">Get more plugins for "
"your e-commerce on <strong>YITH</strong></a>"
msgstr ""

#: includes/class-yith-wcwl-admin.php:261
msgctxt "[HELP TAB] Video title"
msgid ""
"Check this video to learn how to <b>configure wishlist and customize options:"
"</b>"
msgstr ""

#: includes/class-yith-wcwl-install.php:340
msgctxt "page_slug"
msgid "wishlist"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:230
msgctxt "date when wishlist was created"
msgid "Created on"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:52
msgctxt "[gutenberg]: block name"
msgid "YITH Add to wishlist"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:101
msgctxt "[gutenberg]: block name"
msgid "YITH Wishlist"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:53
msgctxt "[gutenberg]: block description"
msgid "Shows Add to wishlist button"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:102
msgctxt "[gutenberg]: block description"
msgid "Shows a list of products in wishlist"
msgstr ""

#. translators: 1. % of reduction/increase in price.
#: includes/class-yith-wcwl-wishlist-item.php:428
msgctxt ""
"Part of the template that shows price variation since addition to list; "
"placeholder will be replaced with a percentage"
msgid "Price is %1$s%%"
msgstr ""

#. translators: 2: original product price.
#: includes/class-yith-wcwl-wishlist-item.php:430
msgctxt ""
"Part of the template that shows price variation since addition to list; "
"placeholder will be replaced with a price"
msgid "(Was %2$s when added  in list)"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:45
msgctxt "Elementor widget name"
msgid "YITH Wishlist Add button"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:45
#, fuzzy
msgctxt "Elementor widget name"
msgid "YITH Wishlist"
msgstr "Мій обраний список в %s"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:87
msgctxt "Elementor section title"
msgid "Product"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:107
msgctxt "Elementor section title"
msgid "Labels"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:157
msgctxt "Elementor section title"
msgid "Advanced"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:87
#, fuzzy
msgctxt "Elementor section title"
msgid "Wishlist"
msgstr "Мій обраний список в %s"

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:107
msgctxt "Elementor section title"
msgid "Pagination"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:95
msgctxt "Elementor control label"
msgid "Product ID"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:115
msgctxt "Elementor control label"
msgid "Button label"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:125
#, fuzzy
msgctxt "Elementor control label"
msgid "\"Browse wishlist\" label"
msgstr "\"Додати в кошик\" button text"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:135
msgctxt "Elementor control label"
msgid "\"Product already in wishlist\" label"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:145
#, fuzzy
msgctxt "Elementor control label"
msgid "\"Product added to wishlist\" label"
msgstr "Назва продукту"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:165
msgctxt "Elementor control label"
msgid "URL of the wishlist page"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:175
msgctxt "Elementor control label"
msgid "Icon for the button"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:185
msgctxt "Elementor control label"
msgid "Additional CSS classes for the button"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:95
#, fuzzy
msgctxt "Elementor control label"
msgid "Wishlist ID"
msgstr "Мій обраний список в %s"

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:115
msgctxt "Elementor control label"
msgid "Paginate items"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:128
msgctxt "yith-woocommerce-wishlist"
msgid "Items per page"
msgstr ""

#~ msgid "My wishlist on "
#~ msgstr "Мій обраний список в %s"

#~ msgid "YITH WooCommerce Wishlist"
#~ msgstr "Мій обраний список в %s"
PK`x1\{[�Ԣ���,languages/yith-woocommerce-wishlist-zh_TW.ponu�[���# Copyright (C) 2019 YITH WooCommerce Wishlist
# This file is distributed under the same license as the YITH WooCommerce Wishlist package.
msgid ""
msgstr ""
"Project-Id-Version: YITH WooCommerce Wishlist\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/yith-woocommerce-"
"wishlist\n"
"POT-Creation-Date: 2021-11-11 13:53:53+00:00\n"
"PO-Revision-Date: 2020-10-16 14:07+0200\n"
"Last-Translator: 李明軒 <eggeggxuan@gmail.com>\n"
"Language-Team: Your Inspiration Themes <plugins@yithemes.com>\n"
"Language: zh_TW\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 2.4.1\n"
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;_n:1,2;__ngettext:1,2;"
"__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;"
"_nx_noop:4c,1,2\n"
"X-Poedit-Basepath: .\n"
"Plural-Forms: nplurals=2; plural=n!=1;\n"
"X-Poedit-SourceCharset: UTF-8\n"
"X-Poedit-SearchPath-0: ..\n"
"X-Poedit-SearchPathExcluded-0: ../plugin-fw\n"

#: includes/class-yith-wcwl-admin.php:126
#, fuzzy
msgid "Wishlist Page"
msgstr "願望清單"

#: includes/class-yith-wcwl-admin.php:148
msgid "General settings"
msgstr ""

#: includes/class-yith-wcwl-admin.php:149
msgid "Add to wishlist options"
msgstr ""

#: includes/class-yith-wcwl-admin.php:150
msgid "Wishlist page options"
msgstr ""

#: includes/class-yith-wcwl-admin.php:151
msgid "Premium Version"
msgstr ""

#: includes/class-yith-wcwl-admin.php:249
#: includes/class-yith-wcwl-install.php:342
msgid "Wishlist"
msgstr "願望清單"

#: includes/class-yith-wcwl-admin.php:251
msgid ""
"Allows your customers to create and share lists of products that they want "
"to purchase on your e-commerce."
msgstr ""

#: includes/class-yith-wcwl-ajax-handler.php:75
#: templates/add-to-wishlist-remove.php:59
msgid "View &rsaquo;"
msgstr ""

#: includes/class-yith-wcwl-ajax-handler.php:76
#: templates/add-to-wishlist-remove.php:58
msgid "or"
msgstr ""

#: includes/class-yith-wcwl-ajax-handler.php:77
msgid "Close"
msgstr ""

#: includes/class-yith-wcwl-ajax-handler.php:155
#: includes/class-yith-wcwl-ajax-handler.php:195
msgid "Product successfully removed."
msgstr "成功移除商品。"

#: includes/class-yith-wcwl-form-handler.php:156
msgid "Please, make sure to enter a valid title"
msgstr ""

#: includes/class-yith-wcwl-frontend.php:461
msgid ""
"We are sorry, but this feature is available only if cookies on your browser "
"are enabled."
msgstr ""

#: includes/class-yith-wcwl-frontend.php:462
msgid "Product added to cart successfully"
msgstr ""

#: includes/class-yith-wcwl-frontend.php:725
#: includes/class-yith-wcwl-shortcode.php:239
#: plugin-options/wishlist_page-options.php:240
#: templates/wishlist-view-footer-mobile.php:46
#: templates/wishlist-view-footer.php:46
msgid "Add to cart"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:52
msgid "While you visit our site, we’ll track:"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:54
msgid ""
"Products you’ve added to the wishlist: we’ll use this to show you and other "
"users your favourite products, and to create targeted email campaigns."
msgstr ""

#: includes/class-yith-wcwl-privacy.php:55
msgid ""
"Wishlists you’ve created: we’ll keep track of the wishlists you create, and "
"make them visible to the store staff"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:57
msgid ""
"We’ll also use cookies to keep track of wishlist contents while you’re "
"browsing our site."
msgstr ""

#: includes/class-yith-wcwl-privacy.php:60
msgid ""
"Members of our team have access to the information you provide us with. For "
"example, both Administrators and Shop Managers can access:"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:62
msgid ""
"Wishlist details, such as products added, date of addition, name and privacy "
"settings of your wishlists"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:64
msgid ""
"Our team members have access to this information to offer you better deals "
"for the products you love."
msgstr ""

#: includes/class-yith-wcwl-privacy.php:84
#: includes/class-yith-wcwl-privacy.php:100
msgid "Customer wishlists"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:137 plugin-options/lists-options.php:25
#: plugin-options/lists-options.php:32
msgid "Wishlists"
msgstr "願望清單"

#. Translators: %s Order number.
#: includes/class-yith-wcwl-privacy.php:199
msgid "Removed wishlist %s."
msgstr ""

#. Translators: %s Order number.
#: includes/class-yith-wcwl-privacy.php:203
msgid "Wishlist %s has been retained."
msgstr ""

#: includes/class-yith-wcwl-privacy.php:227
msgid "Token"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:228
msgid "Wishlist URL"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:229
msgid "Title"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:231
msgid "Visibility"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:232
msgid "Items added"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:58
msgid ""
"ID of the product to add to the wishlist (leave empty to use the global "
"product)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:63
msgid "URL of the wishlist page (leave empty to use the default settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:68
msgid "Button label (leave empty to use the default settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:73
msgid "\"Browse wishlist\" label (leave empty to use the default settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:78
msgid ""
"\"Product already in wishlist\" label (leave empty to use the default "
"settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:83
msgid ""
"\"Product added to wishlist\" label (leave empty to use the default settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:88
msgid ""
"Icon for the button (use any FontAwesome valid class, or leave empty to use "
"the default settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:93
msgid ""
"Additional CSS classes for the button (leave empty to use the default "
"settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:107
msgid "Choose whether to paginate items in the wishlist or show them all"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:110
#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:118
msgid "Paginate"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:111
#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:119
msgid "Do not paginate"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:116
msgid "Number of items to show per page"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:121
msgid "ID of the wishlist to show (e.g. K6EOWXB888ZD)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:414
msgid "Share on:"
msgstr "分享:"

#: includes/class-yith-wcwl-shortcode.php:438
#: plugin-options/wishlist_page-options.php:138
msgid "Share on Facebook"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:455
#: plugin-options/wishlist_page-options.php:147
msgid "Tweet on Twitter"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:473
#: plugin-options/wishlist_page-options.php:156
msgid "Pin on Pinterest"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:487
msgid "Share via email"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:510
#: plugin-options/wishlist_page-options.php:174
msgid "Share on WhatsApp"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:621
msgid "Remove from list"
msgstr ""

#: includes/class-yith-wcwl-wishlist-item.php:189
msgid "Free!"
msgstr "免費!"

#: includes/class-yith-wcwl.php:164
msgid "The item cannot be added to this wishlist"
msgstr ""

#: includes/class-yith-wcwl.php:168 includes/class-yith-wcwl.php:174
msgid "An error occurred while adding the products to the wishlist."
msgstr ""

#: includes/class-yith-wcwl.php:235 includes/class-yith-wcwl.php:241
msgid "Error. Unable to remove the product from the wishlist."
msgstr "錯誤。無法從「願望清單」移除這個商品。"

#: includes/data-stores/class-yith-wcwl-wishlist-data-store.php:152
#: includes/data-stores/class-yith-wcwl-wishlist-data-store.php:174
msgid "Invalid wishlist."
msgstr ""

#: includes/data-stores/class-yith-wcwl-wishlist-item-data-store.php:119
msgid "Invalid wishlist item."
msgstr ""

#. translators: 1. Number of users.
#: includes/functions-yith-wcwl.php:249
msgid "%d user"
msgid_plural "%d users"
msgstr[0] ""
msgstr[1] ""

#: includes/functions-yith-wcwl.php:250
msgid "has this item in wishlist"
msgid_plural "have this item in wishlist"
msgstr[0] ""
msgstr[1] ""

#: includes/functions-yith-wcwl.php:252
msgid "You're the first"
msgstr ""

#: includes/functions-yith-wcwl.php:253
msgid "to add this item in wishlist"
msgstr ""

#. translators: 1. Count of users when many, or "another" when only one.
#: includes/functions-yith-wcwl.php:257
msgid "You and %s user"
msgid_plural "You and %d users"
msgstr[0] ""
msgstr[1] ""

#: includes/functions-yith-wcwl.php:257
msgid "another"
msgstr ""

#: includes/functions-yith-wcwl.php:258
msgid "have this item in wishlist"
msgstr ""

#: includes/functions-yith-wcwl.php:425
msgid "None"
msgstr ""

#: includes/functions-yith-wcwl.php:426
msgid "Custom"
msgstr ""

#: includes/functions-yith-wcwl.php:447
msgid "Shared"
msgstr "分享:"

#: includes/functions-yith-wcwl.php:451
msgid "Only people with a link to this list can see it"
msgstr ""

#: includes/functions-yith-wcwl.php:457
msgid "Private"
msgstr ""

#: includes/functions-yith-wcwl.php:461
msgid "Only you can see this list"
msgstr ""

#: includes/functions-yith-wcwl.php:467
msgid "Public"
msgstr ""

#: includes/functions-yith-wcwl.php:471
msgid "Anyone can search for and see this list"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:118
#: plugin-options/add_to_wishlist-options.php:127
msgid "Add to wishlist"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:128
#: plugin-options/add_to_wishlist-options.php:143
msgid "Browse wishlist"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:138
#, fuzzy
msgid "Product already in wishlist"
msgstr "商品已經加入收藏在「願望清單」裡面。"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:148
#, fuzzy
msgid "Product added to wishlist"
msgstr "商品已經加入收藏在「願望清單」裡面。"

#: init.php:160
msgid "is enabled but not effective. It requires WooCommerce to work."
msgstr ""

#: init.php:176
msgid "You can't activate the free version of"
msgstr ""

#: init.php:176
msgid "while you are using the premium one."
msgstr ""

#: plugin-options/add_to_wishlist-options.php:20
#: plugin-options/settings-options.php:27
msgid "General Settings"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:27
msgid "After product is added to wishlist"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:28
msgid ""
"Choose the look of the Wishlist button when the product has already been "
"added to a wishlist"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:32
#, fuzzy
msgid "Show \"Add to wishlist\" button"
msgstr "商品已經加入收藏在「願望清單」裡面。"

#: plugin-options/add_to_wishlist-options.php:33
msgid "Show \"View wishlist\" link"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:34
msgid "Show \"Remove from list\" link"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:48
msgid "Loop settings"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:50
msgid ""
"Loop options will be visible on Shop page, category pages, product "
"shortcodes, products sliders, and all the other places where the WooCommerce "
"products' loop is used"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:55
msgid "Show \"Add to wishlist\" in loop"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:56
msgid "Enable the \"Add to wishlist\" feature in WooCommerce products' loop"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:64
msgid "Position of \"Add to wishlist\" in loop"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:65
msgid ""
"Choose where to show \"Add to wishlist\" button or link in WooCommerce "
"products' loop. <span class=\"addon\">Copy this shortcode <span class=\"code"
"\"><code>[yith_wcwl_add_to_wishlist]</code></span> and paste it where you "
"want to show the \"Add to wishlist\" link or button</span>"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:72
msgid "On top of the image"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:73
msgid "Before \"Add to cart\" button"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:74
msgid "After \"Add to cart\" button"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:75
#: plugin-options/add_to_wishlist-options.php:107
msgid "Use shortcode"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:89
msgid "Product page settings"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:96
msgid "Position of \"Add to wishlist\" on product page"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:97
msgid ""
"Choose where to show \"Add to wishlist\" button or link on the product page. "
"<span class=\"addon\">Copy this shortcode <span class=\"code"
"\"><code>[yith_wcwl_add_to_wishlist]</code></span> and paste it where you "
"want to show the \"Add to wishlist\" link or button</span>"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:104
msgid "After \"Add to cart\""
msgstr ""

#: plugin-options/add_to_wishlist-options.php:105
msgid "After thumbnails"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:106
msgid "After summary"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:117
#: plugin-options/wishlist_page-options.php:222
msgid "Text customization"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:124
msgid "\"Add to wishlist\" text"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:125
msgid "Enter a text for \"Add to wishlist\" button"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:132
msgid "\"Product added\" text"
msgstr "加入收藏!"

#: plugin-options/add_to_wishlist-options.php:133
msgid ""
"Enter the text of the message displayed when the user adds a product to the "
"wishlist"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:135
msgid "Product added!"
msgstr "加入收藏!"

#: plugin-options/add_to_wishlist-options.php:140
msgid "\"Browse wishlist\" text"
msgstr "瀏覽「願望清單」"

#: plugin-options/add_to_wishlist-options.php:141
msgid "Enter a text for the \"Browse wishlist\" link on the product page"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:148
msgid "\"Product already in wishlist\" text"
msgstr "商品已經加入收藏在「願望清單」裡面。"

#: plugin-options/add_to_wishlist-options.php:149
msgid ""
"Enter the text for the message displayed when the user views a product that "
"is already in the wishlist"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:151
msgid "The product is already in your wishlist!"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:161
msgid "Style & Color customization"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:168
msgid "Style of \"Add to wishlist\""
msgstr ""

#: plugin-options/add_to_wishlist-options.php:169
msgid ""
"Choose if you want to show a textual \"Add to wishlist\" link or a button"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:172
#: plugin-options/wishlist_page-options.php:261
msgid "Textual (anchor)"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:173
#: plugin-options/wishlist_page-options.php:262
msgid "Button with theme style"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:174
#: plugin-options/wishlist_page-options.php:263
msgid "Button with custom style"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:182
msgid "\"Add to wishlist\" button style"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:188
msgid "Choose colors for the \"Add to wishlist\" button"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:190
#: plugin-options/wishlist_page-options.php:279
#: plugin-options/wishlist_page-options.php:368
#: plugin-options/wishlist_page-options.php:417
#: plugin-options/wishlist_page-options.php:465
#: plugin-options/wishlist_page-options.php:552
#: plugin-options/wishlist_page-options.php:592
#: plugin-options/wishlist_page-options.php:632
#: plugin-options/wishlist_page-options.php:672
#: plugin-options/wishlist_page-options.php:712
msgid "Background"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:195
#: plugin-options/wishlist_page-options.php:284
#: plugin-options/wishlist_page-options.php:373
#: plugin-options/wishlist_page-options.php:422
#: plugin-options/wishlist_page-options.php:470
#: plugin-options/wishlist_page-options.php:507
msgid "Text"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:200
#: plugin-options/wishlist_page-options.php:289
#: plugin-options/wishlist_page-options.php:378
#: plugin-options/wishlist_page-options.php:427
#: plugin-options/wishlist_page-options.php:475
msgid "Border"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:206
msgid "Choose colors for the \"Add to wishlist\" button on hover state"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:208
#: plugin-options/wishlist_page-options.php:297
#: plugin-options/wishlist_page-options.php:386
#: plugin-options/wishlist_page-options.php:435
msgid "Background Hover"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:213
#: plugin-options/wishlist_page-options.php:302
#: plugin-options/wishlist_page-options.php:391
#: plugin-options/wishlist_page-options.php:440
msgid "Text Hover"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:218
#: plugin-options/wishlist_page-options.php:307
#: plugin-options/wishlist_page-options.php:396
#: plugin-options/wishlist_page-options.php:445
msgid "Border Hover"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:231
#: plugin-options/wishlist_page-options.php:320
msgid "Border radius"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:232
msgid "Choose radius for the \"Add to wishlist\" button"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:246
msgid "\"Add to wishlist\" icon"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:247
msgid "Select an icon for the \"Add to wishlist\" button (optional)"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:257
msgid "\"Add to wishlist\" custom icon"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:258
#: plugin-options/add_to_wishlist-options.php:282
msgid ""
"Upload an icon you'd like to use for \"Add to wishlist\" button (suggested "
"32px x 32px)"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:270
msgid "\"Added to wishlist\" icon"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:271
msgid "Select an icon for the \"Added to wishlist\" button (optional)"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:277
msgid "Same used for Add to wishlist"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:281
msgid "\"Added to wishlist\" custom icon"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:294
msgid "Custom CSS"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:295
msgid "Enter custom CSS to be applied to Wishlist elements (optional)"
msgstr ""

#: plugin-options/lists-options.php:34
msgid "Search list"
msgstr ""

#. translators: 1. Anchor to Frequently Bought Together landing page on
#. yithemes.com.
#: plugin-options/settings-options.php:19
msgid ""
"If you want to take advantage of this feature, you could consider purchasing "
"the %s."
msgstr ""

#: plugin-options/settings-options.php:34
msgid "Enable AJAX loading"
msgstr ""

#: plugin-options/settings-options.php:35
msgid "Load any cacheable wishlist item via AJAX"
msgstr ""

#: plugin-options/settings-options.php:48
msgid "YITH WooCommerce Frequently Bought Together Integration"
msgstr ""

#. translators: 1. Url to Frequently Bought Together landing page on
#. yithemes.com.
#: plugin-options/settings-options.php:51
msgid ""
"In order to use this integration you have to install and activate YITH "
"WooCommerce Frequently Bought Together. <a href=\"%s\">Learn more</a>"
msgstr ""

#: plugin-options/settings-options.php:56
msgid "Enable slider in wishlist"
msgstr ""

#. translators: 1. Example image of the integration. 2. CTA to buy Frequently
#. Bought Together.
#: plugin-options/settings-options.php:58
msgid ""
"Enable the slider with linked products on the Wishlist page (<a href=\"%1$s"
"\" class=\"thickbox\">Example</a>). %2$s"
msgstr ""

#: plugin-options/wishlist_page-options.php:19
msgid "All your wishlists"
msgstr ""

#: plugin-options/wishlist_page-options.php:26
msgid "Wishlist page"
msgstr ""

#: plugin-options/wishlist_page-options.php:27
msgid ""
"Pick a page as the main Wishlist page; make sure you add the <span class="
"\"code\"><code>[yith_wcwl_wishlist]</code></span> shortcode into the page "
"content"
msgstr ""

#: plugin-options/wishlist_page-options.php:40
msgid "Wishlist Detail Page"
msgstr ""

#: plugin-options/wishlist_page-options.php:47
#: plugin-options/wishlist_page-options.php:56
#: plugin-options/wishlist_page-options.php:65
#: plugin-options/wishlist_page-options.php:74
#: plugin-options/wishlist_page-options.php:83
#: plugin-options/wishlist_page-options.php:92
#: plugin-options/wishlist_page-options.php:101
msgid "In wishlist table show"
msgstr ""

#: plugin-options/wishlist_page-options.php:48
msgid "Product variations selected by the user (example: size or color)"
msgstr ""

#: plugin-options/wishlist_page-options.php:57
msgid "Product price"
msgstr ""

#: plugin-options/wishlist_page-options.php:66
msgid "Product stock (show if the product is available or not)"
msgstr ""

#: plugin-options/wishlist_page-options.php:75
msgid "Date on which the product was added to the wishlist"
msgstr ""

#: plugin-options/wishlist_page-options.php:84
msgid "Add to cart option for each product"
msgstr ""

#: plugin-options/wishlist_page-options.php:93
msgid ""
"Icon to remove the product from the wishlist - to the left of the product"
msgstr ""

#: plugin-options/wishlist_page-options.php:102
msgid ""
"Button to remove the product from the wishlist - to the right of the product"
msgstr ""

#: plugin-options/wishlist_page-options.php:110
msgid "Redirect to cart"
msgstr ""

#: plugin-options/wishlist_page-options.php:111
msgid ""
"Redirect users to the cart page when they add a product to the cart from the "
"wishlist page"
msgstr ""

#: plugin-options/wishlist_page-options.php:119
msgid "Remove if added to the cart"
msgstr ""

#: plugin-options/wishlist_page-options.php:120
msgid ""
"Remove the product from the wishlist after it has been added to the cart"
msgstr ""

#: plugin-options/wishlist_page-options.php:128
msgid "Share wishlist"
msgstr ""

#: plugin-options/wishlist_page-options.php:129
msgid "Enable this option to let users share their wishlist on social media"
msgstr ""

#: plugin-options/wishlist_page-options.php:137
#: plugin-options/wishlist_page-options.php:146
#: plugin-options/wishlist_page-options.php:155
#: plugin-options/wishlist_page-options.php:164
#: plugin-options/wishlist_page-options.php:173
msgid "Share on social media"
msgstr ""

#: plugin-options/wishlist_page-options.php:165
msgid "Share by email"
msgstr ""

#: plugin-options/wishlist_page-options.php:182
msgid "Share by URL"
msgstr ""

#: plugin-options/wishlist_page-options.php:183
msgid "Show \"Share URL\" field on wishlist page"
msgstr ""

#: plugin-options/wishlist_page-options.php:191
msgid "Sharing title"
msgstr ""

#: plugin-options/wishlist_page-options.php:192
msgid "Wishlist title used for sharing (only used on Twitter and Pinterest)"
msgstr ""

#. translators: 1. Blog name.
#: plugin-options/wishlist_page-options.php:195
msgid "My wishlist on %s"
msgstr ""

#: plugin-options/wishlist_page-options.php:200
msgid "Social text"
msgstr ""

#: plugin-options/wishlist_page-options.php:201
msgid ""
"Type the message you want to publish when you share your wishlist on Twitter "
"and Pinterest"
msgstr ""

#: plugin-options/wishlist_page-options.php:209
msgid "Social image URL"
msgstr ""

#: plugin-options/wishlist_page-options.php:210
msgid "It will be used to pin the wishlist on Pinterest."
msgstr ""

#: plugin-options/wishlist_page-options.php:229
msgid "Default wishlist name"
msgstr ""

#: plugin-options/wishlist_page-options.php:230
msgid ""
"Enter a name for the default wishlist. This is the wishlist that will be "
"automatically generated for all users if they do not create any custom one"
msgstr ""

#: plugin-options/wishlist_page-options.php:232
#, fuzzy
msgid "My wishlist"
msgstr "願望清單"

#: plugin-options/wishlist_page-options.php:237
msgid "\"Add to cart\" text"
msgstr ""

#: plugin-options/wishlist_page-options.php:238
msgid "Enter a text for the \"Add to cart\" button"
msgstr ""

#: plugin-options/wishlist_page-options.php:250
msgid "Style & color customization"
msgstr ""

#: plugin-options/wishlist_page-options.php:257
msgid "Style of \"Add to cart\""
msgstr ""

#: plugin-options/wishlist_page-options.php:258
msgid "Choose whether to show a textual \"Add to cart\" link or a button"
msgstr ""

#: plugin-options/wishlist_page-options.php:271
msgid "\"Add to cart\" button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:277
msgid "Choose the colors for the \"Add to cart\" button"
msgstr ""

#: plugin-options/wishlist_page-options.php:295
msgid "Choose colors for the \"Add to cart\" button on hover state"
msgstr ""

#: plugin-options/wishlist_page-options.php:321
msgid "Set the radius for the \"Add to cart\" button"
msgstr ""

#: plugin-options/wishlist_page-options.php:335
msgid "\"Add to cart\" icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:336
msgid "Select an icon for the \"Add to cart\" button (optional)"
msgstr ""

#: plugin-options/wishlist_page-options.php:351
msgid "\"Add to cart\" custom icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:352
msgid ""
"Upload an icon you'd like to use for the \"Add to cart\" button (suggested "
"32px x 32px)"
msgstr ""

#: plugin-options/wishlist_page-options.php:360
msgid "Primary button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:366
msgid ""
"Choose colors for the primary button<br/><small>This style will be applied "
"to \"Edit title\" button on Wishlist view, \"Submit Changes\" button on "
"Manage view and \"Search wishlist\" button on Search view</small>"
msgstr ""

#: plugin-options/wishlist_page-options.php:384
msgid ""
"Choose colors for the primary button on hover state<br/><small>This style "
"will be applied to \"Edit title\" button on Wishlist view, \"Submit Changes"
"\" button on Manage view and \"Search wishlist\" button on Search view</"
"small>"
msgstr ""

#: plugin-options/wishlist_page-options.php:409
msgid "Secondary button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:415
#: plugin-options/wishlist_page-options.php:433
msgid ""
"Choose colors of the secondary button<br/><small>This style will be applied "
"to the buttons that allow showing and hiding the Edit title form on Wishlist "
"view and \"Create new Wishlist\" button on Manage view</small>"
msgstr ""

#: plugin-options/wishlist_page-options.php:458
msgid "Wishlist table style"
msgstr ""

#: plugin-options/wishlist_page-options.php:459
msgid ""
"Choose the colors for the wishlist table (when set to \"Traditional\" layout)"
msgstr ""

#: plugin-options/wishlist_page-options.php:487
msgid "Highlight color"
msgstr ""

#: plugin-options/wishlist_page-options.php:488
msgid ""
"Choose the color for all sections with background<br/><small>This color will "
"be used as background for the wishlist table heading and footer (when set to "
"\"Traditional\" layout), and for various form across wishlist views</small>"
msgstr ""

#: plugin-options/wishlist_page-options.php:500
msgid "Share button text color"
msgstr ""

#: plugin-options/wishlist_page-options.php:501
msgid "Choose colors for share buttons text"
msgstr ""

#: plugin-options/wishlist_page-options.php:512
msgid "Text hover"
msgstr ""

#: plugin-options/wishlist_page-options.php:525
msgid "Facebook share button icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:526
msgid "Select an icon for the Facebook share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:536
msgid "Facebook share button custom icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:537
msgid ""
"Upload an icon you'd like to use for Facebook share button (suggested 32px x "
"32px)"
msgstr ""

#: plugin-options/wishlist_page-options.php:545
msgid "Facebook share button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:546
msgid "Choose colors for Facebook share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:557
#: plugin-options/wishlist_page-options.php:597
#: plugin-options/wishlist_page-options.php:637
#: plugin-options/wishlist_page-options.php:677
#: plugin-options/wishlist_page-options.php:717
msgid "Background hover"
msgstr ""

#: plugin-options/wishlist_page-options.php:565
msgid "Twitter share button icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:566
msgid "Select an icon for the Twitter share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:576
msgid "Twitter share button custom icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:577
msgid ""
"Upload an icon you'd like to use for Twitter share button (suggested 32px x "
"32px)"
msgstr ""

#: plugin-options/wishlist_page-options.php:585
msgid "Twitter share button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:586
msgid "Choose colors for Twitter share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:605
msgid "Pinterest share button icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:606
msgid "Select an icon for the Pinterest share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:616
msgid "Pinterest share button custom icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:617
msgid ""
"Upload an icon you'd like to use for Pinterest share button (suggested 32px "
"x 32px)"
msgstr ""

#: plugin-options/wishlist_page-options.php:625
msgid "Pinterest share button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:626
msgid "Choose colors for Pinterest share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:645
msgid "Email share button icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:646
msgid "Select an icon for the Email share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:656
msgid "Email share button custom icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:657
msgid ""
"Upload an icon you'd like to use for the Email share button (suggested 32px "
"x 32px)"
msgstr ""

#: plugin-options/wishlist_page-options.php:665
msgid "Email share button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:666
msgid "Choose colors for the Email share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:685
msgid "WhatsApp share button icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:686
msgid "Select an icon for the WhatsApp share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:696
msgid "WhatsApp share button custom icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:697
msgid ""
"Upload an icon you'd like to use for WhatsApp share button (suggested 32px x "
"32px)"
msgstr ""

#: plugin-options/wishlist_page-options.php:705
msgid "WhatsApp share button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:706
msgid "Choose colors for WhatsApp share button"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:168
#: templates/admin/wishlist-panel-premium.php:309
msgid ""
"Upgrade to the %1$spremium version%2$s%3$sof %1$sYITH WooCommerce Wishlist"
"%2$s to benefit from all features!"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:170
#: templates/admin/wishlist-panel-premium.php:311
msgid "Upgrade"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:176
msgid "Premium Features"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:180
msgid "Allow your customers to create multiple wishlists"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:182
msgid ""
"Christmas, Birthday... users will be able to create and manage multiple "
"wishlists, in case they prefer to keep the products sorted by category or "
"other parameters."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:185
msgid "Multiple Wishlist"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:192
msgid "Wishlist Private"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:196
msgid "A transparent privacy management"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:198
msgid ""
"Your customers can set a privacy option for each wishlist and choose whether "
"sharing the wishlist or making it private."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:206
msgid ""
"Allow your customers to ask for an estimate, directly from their wishlist "
"page"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:208
msgid ""
"And give only registered users the privilege to use the wishlist "
"functionalities."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:211
msgid "Estimate Cost"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:218
msgid "Admin Panel"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:222
msgid "An advanced and more versatile management of the wishlist"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:224
msgid ""
"Your customers can sort the products in the wishlist thanks to the drag&drop "
"option, move products from one wishlist to another, manage product quantity, "
"download the wishlist content to a .pdf file, share the wishlist on their "
"social networks, and much more!"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:232
msgid "Monitor your customers’ wishlists and the popular products"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:234
msgid ""
"You can see your customers’ wishlists, gain insight into the products they "
"are more interested in and plan targeted marketing strategies."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:237
msgid "Search Wishlists"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:244
msgid "'ADD TO CART'"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:248
msgid ""
"Send promotional emails for products in wishlists to push customers to buy"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:250
msgid ""
"Just three clicks to send promotional emails with discount coupons to "
"customers who have added specific products to their wishlist and push them "
"to buy."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:258
msgid "Let users buy the product right from the wishlist page"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:260
msgid ""
"Let them move products from one wishlist to the cart in one click, keeping "
"also the information about the size, colour or quantity selected when added "
"to the wishlist."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:263
msgid "DISABLE WISHLIST"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:271
msgid "Choose a charming layout for your wishlist page"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:273
msgid ""
"The wishlist is one of the most used functionalities in an ecommerce store "
"but often the page layout is not enhanced enough and looks unattractive to "
"the user. With our plugin, you can choose among some alternative layouts and "
"offer an even more interesting experience to users who creates a wishlist on "
"your website."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:276
msgid "UNLOGGED USERS"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:284
msgid "Wishlist widgets for the header and sidebars"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:286
msgid ""
"Increase the wishlist visibility through our modern widgets that you can use "
"in the header, in the sidebars, wherever you want."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:289
msgid "POPULAR TABLE"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:296
msgid "FUNCTIONALITIES"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:300
msgid "Allow users to monitor the price of the products in their wishlist"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:302
msgid ""
"We took inspiration from one of the most interesting features of Amazon "
"product pages: from now on, users can realise what’s the best time to buy a "
"product and how much they can save when there’s a promotion running or a "
"discount on the product they’ve added to the wishlist."
msgstr ""

#: templates/share.php:51 templates/share.php:52
msgid "Facebook"
msgstr ""

#: templates/share.php:59 templates/share.php:60
msgid "Twitter"
msgstr ""

#: templates/share.php:67 templates/share.php:68
msgid "Pinterest"
msgstr ""

#: templates/share.php:75 templates/share.php:76
msgid "Email"
msgstr ""

#: templates/share.php:83
msgid "WhatsApp"
msgstr ""

#: templates/share.php:84
msgid "Whatsapp"
msgstr ""

#: templates/share.php:93
msgid "(Now"
msgstr ""

#: templates/share.php:93
msgid "copy"
msgstr ""

#: templates/share.php:93
msgid "this wishlist link and share it anywhere)"
msgstr ""

#: templates/wishlist-view-footer-mobile.php:44
#: templates/wishlist-view-footer.php:44
msgid "Apply this action to all the selected items:"
msgstr ""

#: templates/wishlist-view-footer-mobile.php:49
#: templates/wishlist-view-footer.php:49
msgid "Remove from wishlist"
msgstr ""

#. translators: 1. Wishlist formatted name.
#: templates/wishlist-view-footer-mobile.php:67
#: templates/wishlist-view-footer.php:67
msgid "Move to %s"
msgstr ""

#: templates/wishlist-view-footer-mobile.php:73
#: templates/wishlist-view-footer.php:73
msgid "Apply"
msgstr ""

#: templates/wishlist-view-footer-mobile.php:81
#: templates/wishlist-view-footer.php:81
msgid "Update"
msgstr ""

#: templates/wishlist-view-footer-mobile.php:87
#: templates/wishlist-view-footer.php:103
msgid "Add all to cart"
msgstr ""

#: templates/wishlist-view-header.php:48
msgid "Edit title"
msgstr ""

#: templates/wishlist-view-mobile.php:136
msgid "Added on:"
msgstr ""

#: templates/wishlist-view-mobile.php:147
msgid "Price:"
msgstr ""

#: templates/wishlist-view-mobile.php:174
msgid "Quantity:"
msgstr ""

#: templates/wishlist-view-mobile.php:189
msgid "Stock:"
msgstr ""

#: templates/wishlist-view-mobile.php:192 templates/wishlist-view.php:229
msgid "Out of stock"
msgstr ""

#: templates/wishlist-view-mobile.php:192 templates/wishlist-view.php:229
msgid "In Stock"
msgstr "有貨"

#: templates/wishlist-view-mobile.php:212 templates/wishlist-view.php:262
msgid "Move"
msgstr ""

#: templates/wishlist-view-mobile.php:233 templates/wishlist-view.php:283
msgid "Move to another list &rsaquo;"
msgstr ""

#: templates/wishlist-view-mobile.php:241 templates/wishlist-view.php:157
#: templates/wishlist-view.php:293
msgid "Remove this product"
msgstr "移除這個商品"

#: templates/wishlist-view-mobile.php:252 templates/wishlist-view.php:313
msgid "No products added to the wishlist"
msgstr ""

#: templates/wishlist-view.php:79
msgid "Product name"
msgstr ""

#: templates/wishlist-view.php:87
msgid "Unit price"
msgstr ""

#: templates/wishlist-view.php:96
msgid "Quantity"
msgstr ""

#: templates/wishlist-view.php:105
msgid "Stock status"
msgstr ""

#: templates/wishlist-view.php:123
msgid "Arrange"
msgstr ""

#. translators: date added label: 1 date added.
#: templates/wishlist-view.php:243
msgid "Added on: %s"
msgstr ""

#: templates/wishlist-view.php:293
msgid "Remove"
msgstr ""

#. Description of the plugin/theme
msgid ""
"<code><strong>YITH WooCommerce Wishlist</strong></code> gives your users the "
"possibility to create, fill, manage and share their wishlists allowing you "
"to analyze their interests and needs to improve your marketing strategies. "
"<a href=\"https://yithemes.com/\" target=\"_blank\">Get more plugins for "
"your e-commerce on <strong>YITH</strong></a>"
msgstr ""

#: includes/class-yith-wcwl-admin.php:261
msgctxt "[HELP TAB] Video title"
msgid ""
"Check this video to learn how to <b>configure wishlist and customize options:"
"</b>"
msgstr ""

#: includes/class-yith-wcwl-install.php:340
msgctxt "page_slug"
msgid "wishlist"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:230
msgctxt "date when wishlist was created"
msgid "Created on"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:52
msgctxt "[gutenberg]: block name"
msgid "YITH Add to wishlist"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:101
msgctxt "[gutenberg]: block name"
msgid "YITH Wishlist"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:53
msgctxt "[gutenberg]: block description"
msgid "Shows Add to wishlist button"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:102
msgctxt "[gutenberg]: block description"
msgid "Shows a list of products in wishlist"
msgstr ""

#. translators: 1. % of reduction/increase in price.
#: includes/class-yith-wcwl-wishlist-item.php:428
msgctxt ""
"Part of the template that shows price variation since addition to list; "
"placeholder will be replaced with a percentage"
msgid "Price is %1$s%%"
msgstr ""

#. translators: 2: original product price.
#: includes/class-yith-wcwl-wishlist-item.php:430
msgctxt ""
"Part of the template that shows price variation since addition to list; "
"placeholder will be replaced with a price"
msgid "(Was %2$s when added  in list)"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:45
msgctxt "Elementor widget name"
msgid "YITH Wishlist Add button"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:45
#, fuzzy
msgctxt "Elementor widget name"
msgid "YITH Wishlist"
msgstr "願望清單"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:87
#, fuzzy
msgctxt "Elementor section title"
msgid "Product"
msgstr "加入收藏!"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:107
msgctxt "Elementor section title"
msgid "Labels"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:157
msgctxt "Elementor section title"
msgid "Advanced"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:87
#, fuzzy
msgctxt "Elementor section title"
msgid "Wishlist"
msgstr "願望清單"

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:107
msgctxt "Elementor section title"
msgid "Pagination"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:95
#, fuzzy
msgctxt "Elementor control label"
msgid "Product ID"
msgstr "加入收藏!"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:115
msgctxt "Elementor control label"
msgid "Button label"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:125
#, fuzzy
msgctxt "Elementor control label"
msgid "\"Browse wishlist\" label"
msgstr "瀏覽「願望清單」"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:135
#, fuzzy
msgctxt "Elementor control label"
msgid "\"Product already in wishlist\" label"
msgstr "商品已經加入收藏在「願望清單」裡面。"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:145
#, fuzzy
msgctxt "Elementor control label"
msgid "\"Product added to wishlist\" label"
msgstr "商品已經加入收藏在「願望清單」裡面。"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:165
msgctxt "Elementor control label"
msgid "URL of the wishlist page"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:175
msgctxt "Elementor control label"
msgid "Icon for the button"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:185
msgctxt "Elementor control label"
msgid "Additional CSS classes for the button"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:95
#, fuzzy
msgctxt "Elementor control label"
msgid "Wishlist ID"
msgstr "願望清單"

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:115
msgctxt "Elementor control label"
msgid "Paginate items"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:128
msgctxt "yith-woocommerce-wishlist"
msgid "Items per page"
msgstr ""

#~ msgid "My wishlist on "
#~ msgstr "願望清單"

#~ msgid "YITH WooCommerce Wishlist"
#~ msgstr "瀏覽「願望清單」"
PK`x1\���r�r,languages/yith-woocommerce-wishlist-it_IT.monu�[�������Q� !<Vi|����A bKy�M�"(K\aq#}��	��O�0D
_m~j�<�'9a,g�
������
�6LN��'�(�&'D$l9�.�=�(8�a�?G.V��.iK�\�A Q!AW"?�"
�"�"3�"+#A#
Q#\#b#�#�#�#�#B�#D#$�h$)�$)&%?P%>�%f�%T6&6�&�&!�&�&'$'*';'L'P\'.�'a�'I>(T�(�(��(q)�)�)1�)�))�)�*
�*��*U+Z+x+!�+ �+�+/�+,e,,�,�,��,A-	R-"\--�-(�-%�--.5.E.L.a."i.�.�.�.
�.7�./@"/�c/�/0	
00Z%0�0�0�0�0H�01&1;1Y16p1:�1<�1)2,I2-v2+�2,�2+�2)3A3N3]3o3�3	�3�3�3�3
�3�3�3'494S4d4p4}4�4�4�4�4�4
�4�4
55)-5(W5�5�5�5�5 �5�5�5Z�5BV6
�6�6U�6R7ST7Q�7R�7UM8S�8
�8
9
9X9]w9�9!�9::7:(@:i:r:�:�:g�:
;);?;DT;	�;t�;7< P<q<�<4�<�<�<)�<=!=%<@/b@�@�@$�@.�@ A<A.XA�AO�A&�AbB}B_�B;�B7CKCPCkC0�C �C�C�C�C_DkD'�D�D�D�Dv�DQ\E+�E�E)�EFFF+F):FdF
jF
xF
�FH�FS�F%1GWG;vGE�GC�GD<H8�HR�H2
IQ@I>�I �I�JL�KJAL(�L3�M]�MeGN&�N�OJ�PM;Q�Q�QA�Q�Q
R!R1R17R"iR"�R�R*�RO�R`FS��S8ET9~TA�TN�TvIUf�UC'VkV3tV$�V$�V	�V�VW(Wi;W-�W��WRXX:�X�X��X�Y �Y�Y3�YZRZ�iZD[�V[�[!�[\79\)q\�\E�\ �\h]|]�]��]L^	c^4m^%�^%�^�^+	_85_n__�_�_*�_�_
�_�_`E&`l`G�`��`|a	�a
�a�an�a!b)b=bQbFqb�b�b,�bcE6cD|cF�c<d>Ed?�d=�d>eKAe"�e�e�e�e�ef
f#f7f	JfTf%of$�fA�f�fg3gFgbg g �g�g�gh
hh
,h:h;Lh$�h�h�h�h�h2�h#
i#.i]Ri]�ijjg'jm�jn�jllkm�khGlg�lm
.m<m^Hmn�mn3n$Sn$xn�n1�n�n*�n#o0o�Go�o!�o p`:p�p�p<.q)kq�q�q\�q6r<r#Cr8gr84����b�Ij�t�p��~.�������v�������-�P�_)( N*&�����q�}3
B�n6H���`�w��U^���S�k��L;\2$����Q>�i������C����s�x/�����,�����F@�|[G��ael��m�J�!y��M����z�9%	�7
��o:�5�����Z�#����dYc=����VXR�1KuE�+���fW<'�rA�gD��T�]���������h"���O�{?0"Add to cart" button style"Add to cart" custom icon"Add to cart" icon"Add to cart" text"Add to wishlist" button style"Add to wishlist" custom icon"Add to wishlist" icon"Add to wishlist" text"Added to wishlist" custom icon"Added to wishlist" icon"Browse wishlist" label (leave empty to use the default settings)"Browse wishlist" text"Product added to wishlist" label (leave empty to use the default settings)"Product added" text"Product already in wishlist" label (leave empty to use the default settings)"Product already in wishlist" text%d user%d users(NowAdd all to cartAdd to cartAdd to cart option for each productAdd to wishlistAdd to wishlist optionsAdded on:Added on: %sAdditional CSS classes for the button (leave empty to use the default settings)After "Add to cart"After "Add to cart" buttonAfter summaryAfter thumbnailsAll your wishlistsAllows your customers to create and share lists of products that they want to purchase on your e-commerce.An error occurred while adding the products to the wishlist.Anyone can search for and see this listApplyApply this action to all the selected items:ArrangeBackgroundBackground HoverBackground hoverBefore "Add to cart" buttonBorderBorder HoverBorder radiusBrowse wishlistButton label (leave empty to use the default settings)Button to remove the product from the wishlist - to the right of the productButton with custom styleButton with theme styleChoose colors for Facebook share buttonChoose colors for Pinterest share buttonChoose colors for Twitter share buttonChoose colors for WhatsApp share buttonChoose colors for share buttons textChoose colors for the "Add to cart" button on hover stateChoose colors for the "Add to wishlist" buttonChoose colors for the "Add to wishlist" button on hover stateChoose colors for the Email share buttonChoose colors for the primary button on hover state<br/><small>This style will be applied to "Edit title" button on Wishlist view, "Submit Changes" button on Manage view and "Search wishlist" button on Search view</small>Choose colors for the primary button<br/><small>This style will be applied to "Edit title" button on Wishlist view, "Submit Changes" button on Manage view and "Search wishlist" button on Search view</small>Choose if you want to show a textual "Add to wishlist" link or a buttonChoose radius for the "Add to wishlist" buttonChoose the color for all sections with background<br/><small>This color will be used as background for the wishlist table heading and footer (when set to "Traditional" layout), and for various form across wishlist views</small>Choose the colors for the "Add to cart" buttonChoose the colors for the wishlist table (when set to "Traditional" layout)Choose the look of the Wishlist button when the product has already been added to a wishlistChoose where to show "Add to wishlist" button or link in WooCommerce products' loop. <span class="addon">Copy this shortcode <span class="code"><code>[yith_wcwl_add_to_wishlist]</code></span> and paste it where you want to show the "Add to wishlist" link or button</span>Choose where to show "Add to wishlist" button or link on the product page. <span class="addon">Copy this shortcode <span class="code"><code>[yith_wcwl_add_to_wishlist]</code></span> and paste it where you want to show the "Add to wishlist" link or button</span>Choose whether to paginate items in the wishlist or show them allChoose whether to show a textual "Add to cart" link or a buttonCustom CSSCustomer wishlistsDate on which the product was added to the wishlistDefault wishlist nameDo not paginateEdit titleEmailEmail share button custom iconEmail share button iconEmail share button styleEnable AJAX loadingEnable slider in wishlistEnable the "Add to wishlist" feature in WooCommerce products' loopEnable this option to let users share their wishlist on social mediaEnter a name for the default wishlist. This is the wishlist that will be automatically generated for all users if they do not create any custom oneEnter a text for "Add to wishlist" buttonEnter a text for the "Add to cart" buttonEnter a text for the "Browse wishlist" link on the product pageEnter custom CSS to be applied to Wishlist elements (optional)Enter the text for the message displayed when the user views a product that is already in the wishlistEnter the text of the message displayed when the user adds a product to the wishlistError. Unable to remove the product from the wishlist.FacebookFacebook share button custom iconFacebook share button iconFacebook share button styleFree!General SettingsGeneral settingsHighlight colorID of the product to add to the wishlist (leave empty to use the global product)ID of the wishlist to show (e.g. K6EOWXB888ZD)Icon for the button (use any FontAwesome valid class, or leave empty to use the default settings)Icon to remove the product from the wishlist - to the left of the productIf you want to take advantage of this feature, you could consider purchasing the %s.In StockIn order to use this integration you have to install and activate YITH WooCommerce Frequently Bought Together. <a href="%s">Learn more</a>In wishlist table showInvalid wishlist item.Invalid wishlist.It will be used to pin the wishlist on Pinterest.Items addedLoad any cacheable wishlist item via AJAXLoop options will be visible on Shop page, category pages, product shortcodes, products sliders, and all the other places where the WooCommerce products' loop is usedLoop settingsMembers of our team have access to the information you provide us with. For example, both Administrators and Shop Managers can access:MoveMove to another list &rsaquo;My wishlist on %sNo products added to the wishlistNumber of items to show per pageOn top of the imageOnly people with a link to this list can see itOnly you can see this listOur team members have access to this information to offer you better deals for the products you love.Out of stockPaginatePick a page as the main Wishlist page; make sure you add the <span class="code"><code>[yith_wcwl_wishlist]</code></span> shortcode into the page contentPin on PinterestPinterestPinterest share button custom iconPinterest share button iconPinterest share button stylePlease, make sure to enter a valid titlePosition of "Add to wishlist" in loopPosition of "Add to wishlist" on product pagePremium VersionPrice:Primary button stylePrivateProduct added to cart successfullyProduct added!Product nameProduct page settingsProduct priceProduct stock (show if the product is available or not)Product successfully removed.Product variations selected by the user (example: size or color)Products you’ve added to the wishlist: we’ll use this to show you and other users your favourite products, and to create targeted email campaigns.PublicQuantityQuantity:Redirect to cartRedirect users to the cart page when they add a product to the cart from the wishlist pageRemoveRemove from listRemove from wishlistRemove if added to the cartRemove the product from the wishlist after it has been added to the cartRemove this productRemoved wishlist %s.Same used for Add to wishlistSecondary button styleSelect an icon for the "Add to cart" button (optional)Select an icon for the "Add to wishlist" button (optional)Select an icon for the "Added to wishlist" button (optional)Select an icon for the Email share buttonSelect an icon for the Facebook share buttonSelect an icon for the Pinterest share buttonSelect an icon for the Twitter share buttonSelect an icon for the WhatsApp share buttonSet the radius for the "Add to cart" buttonShare button text colorShare by URLShare by emailShare on FacebookShare on WhatsAppShare on social mediaShare on:Share via emailShare wishlistSharedSharing titleShow "Add to wishlist" in loopShow "Remove from list" linkShow "Share URL" field on wishlist pageShow "View wishlist" linkSocial image URLSocial textStock statusStock:Style & Color customizationStyle & color customizationStyle of "Add to cart"Style of "Add to wishlist"TextText HoverText customizationText hoverTextual (anchor)The item cannot be added to this wishlistThe product is already in your wishlist!TitleTokenTweet on TwitterTwitterTwitter share button custom iconTwitter share button iconTwitter share button styleType the message you want to publish when you share your wishlist on Twitter and PinterestURL of the wishlist page (leave empty to use the default settings)Unit priceUpdateUpload an icon you'd like to use for "Add to wishlist" button (suggested 32px x 32px)Upload an icon you'd like to use for Facebook share button (suggested 32px x 32px)Upload an icon you'd like to use for Pinterest share button (suggested 32px x 32px)Upload an icon you'd like to use for Twitter share button (suggested 32px x 32px)Upload an icon you'd like to use for WhatsApp share button (suggested 32px x 32px)Upload an icon you'd like to use for the "Add to cart" button (suggested 32px x 32px)Upload an icon you'd like to use for the Email share button (suggested 32px x 32px)Use shortcodeView &rsaquo;VisibilityWe are sorry, but this feature is available only if cookies on your browser are enabled.We’ll also use cookies to keep track of wishlist contents while you’re browsing our site.WhatsAppWhatsApp share button custom iconWhatsApp share button iconWhatsApp share button styleWhatsappWhile you visit our site, we’ll track:WishlistWishlist %s has been retained.Wishlist Detail PageWishlist URLWishlist details, such as products added, date of addition, name and privacy settings of your wishlistsWishlist pageWishlist page optionsWishlist table styleWishlist title used for sharing (only used on Twitter and Pinterest)WishlistsWishlists you’ve created: we’ll keep track of the wishlists you create, and make them visible to the store staffYITH WooCommerce Frequently Bought Together IntegrationYou and %s userYou and %d usersYou're the firstcopyhas this item in wishlisthave this item in wishlisthave this item in wishlistorthis wishlist link and share it anywhere)to add this item in wishlistProject-Id-Version: YITH WooCommerce Wishlist
Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/yith-woocommerce-wishlist
POT-Creation-Date: 2021-11-11 13:53:53+00:00
PO-Revision-Date: 2020-10-16 14:05+0200
Last-Translator: Nicola Mustone <mail@nicolamustone.it>
Language-Team: Your Inspiration Themes <plugins@yithemes.com>
Language: it_IT
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Generator: Poedit 2.4.1
X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;_n:1,2;__ngettext:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2
X-Poedit-Basepath: .
Plural-Forms: nplurals=2; plural=(n != 1);
X-Poedit-SourceCharset: UTF-8
X-Poedit-SearchPath-0: ..
X-Poedit-SearchPathExcluded-0: ../plugin-fw
Stile pulsante 'Aggiungi al carrello'Icona personalizzata per 'Aggiungi al carrello'Icona 'Aggiungi al carrello'Testo 'Aggiungi al carrello'Stile pulsante 'Aggiungi alla lista'Icona personalizzata per 'Aggiungi alla lista'Icona 'Aggiungi alla lista'Testo 'Aggiungi alla lista'Icona personalizzata per 'Aggiungi alla lista'Icona 'Aggiungi alla lista'Testo 'Sfoglia liste' (lascia vuoto per utilizzare le impostazioni predefinite)Testo per "Vedi la lista dei desideri"Testo per 'Prodotto aggiunto alla lista' (lascia vuoto per utilizzare le impostazioni predefinite)Testo per "Articolo aggiunto"Testo per 'Prodotto già nella lista' (lascia vuoto per utilizzare le impostazioni predefinite)Testo per "Articolo già presente nella lista dei desideri"%s utente%d utenti(OraAggiungi tutti al carrelloAggiungi al carrelloOpzione 'Aggiungi al carrello' per ogni prodottoAggiungi alla lista dei desideriOpzioni Aggiungi alla listaAggiunto il:Aggiunto il: %sClassi CSS aggiuntive per il pulsante (lascia vuoto per utilizzare le impostazioni predefinite)Dopo "Aggiungi al carrello"Dopo il pulsante 'Aggiungi al carrello'Dopo il sommarioDopo le miniatureTutte le tue listePermette ai tuoi clienti di creare e condividere delle liste di prodotti che desiderano acquistare sul tuo e-commerce.Si è verificato un errore mentre si cercava di aggiungere i prodotti alla lista.Tutti possono cercare e vedere questa listaApplicaApplica a tutti gli articoli selezionati:RiordinaSfondoColore - hoverColore - hoverPrima del pulsante 'Aggiungi al carrello'BordoBordo - hoverBorder radiusVedi la listaTesto pulsante (lascia vuoto per utilizzare le impostazioni predefinite)Pulsante per rimuovere il prodotto dalla Lista dei desideri - a destra del prodottoPulsante con uno stile personalizzatoPulsante con lo stile del temaScegli i colori per il pulsante di condivisione su FacebookScegli i colori del testo per i pulsanti di condivisione su PinterestScegli i colori del testo per i pulsanti di condivisione su TwitterScegli i colori del testo per i pulsanti di condivisione su WhatsAppScegli i colori del testo per i pulsanti di condivisioneScegli i colori del pulsante 'Aggiungi al carrello' al passaggio del mouse (hover)Scegli i colori del pulsante 'Aggiungi alla lista'Scegli i colori del pulsante 'Aggiungi alla lista' al passaggio del mouse (hover)Scegli i colori del testo per i pulsanti di condivisione emailScegli i colori del pulsante principale al passaggio del mouse (hover)<br/><small>Questo stile si applicherà al pulsante 'Modifica titolo' in modalità Lista dei desideri, al pulsante 'Applica modifiche' in modalità Gestisci liste e al pulsante 'Cerca lista' in modalità Cerca.</small>Scegli i colori del pulsante principale<br/><small>Questo stile si applicherà al pulsante 'Modifica titolo' in modalità Lista dei desideri, al pulsante 'Applica modifiche' in modalità Gestisci liste e al pulsante 'Cerca lista' in modalità Cerca.</small>Scegli se mostrare un link testuale 'Aggiungi alla lista' oppure un pulsanteImposta il raggio del bordo arrotondato del pulsante 'Aggiungi alla lista'Scegli il colore per tutte le sezioni con un colore di sfondo<br/><small>Questo colore sarà applicato allo sfondo dell'intestazione della tabella Lista dei desideri e al footer (quando impostata su layout 'Tradizionale') e per i vari moduli nelle modalità di visualizzazione delle liste</small>Scegli i colori del pulsante 'Aggiungi al carrello'Scegli i colori della tabella Lista dei desideri (quando impostata sul layout 'Tradizionale')Personalizza lo stile che deve avere il pulsante quando il prodotto è stato già aggiunto alla listaScegli dove mostrare il pulsante o link 'Aggiungi alla lista' nel loop prodotti di WooCommerce. <span class="addon">Copia questo shortcode <span class="code"><code>[yith_wcwl_add_to_wishlist]</code></span> e incollalo dove vuoi tu per mostrare il link o il pulsante 'Aggiungi alla lista'</span>Scegli dove mostrare il pulsante o link 'Aggiungi alla lista' nella pagina prodotto. <span class="addon">Copia questo shortcode <span class="code"><code>[yith_wcwl_add_to_wishlist]</code></span> e incollalo dove vuoi tu per mostrare il link o il pulsante 'Aggiungi alla lista'</span>Scegli se paginare gli elementi nella lista dei desideri o mostrarli tuttiScegli se mostrare un link testuale 'Aggiungi al carrello' oppure un pulsanteCSS personalizzatoListe dei clientiData in cui il prodotto è stato aggiunto alla lista dei desideriNome predefinito della listaNessuna paginazioneModifica titoloEmailIcona personalizzata pulsante Condividi per emailIcona pulsante Condividi per emailStile pulsante Condividi per emailAbilita caricamento in AJAXAbilita lo slider nella lista dei desideriAbilita la funzionalità 'Aggiungi alla lista' nel loop prodotti di WooCommerceAbilita quest'opzione per permettere agli utenti di condividere la lista dei desideri sui socialInserisci un nome predefinito per la lista. Questa è la lista che viene generata in automatico per ogni utente quando non ne viene creata una personalizzataInserisci un testo per il pulsante 'Aggiungi alla lista'Personalizza il testo del pulsante 'Aggiungi al carrello'Inserisci il testo del link 'Vedi la lista' nella pagina prodottoInserisci il tuo codice CSS da applicare agli elementi della lista (opzionale)Inserisci il testo del messaggio mostrato quando l'utente visualizza un prodotto che è già stato aggiunto alla listaInserisci il testo del messaggio mostrato quando l'utente aggiunge il prodotto alla lista dei desideriErrore. Impossibile rimuovere il prodotto dalla lista dei desideri.FacebookIcona personalizzata pulsante Condividi su FacebookIcona pulsante Condividi su FacebookStile pulsante Condividi su FacebookGratuito!Impostazioni generaliImpostazioni generaliColore in evidenzaL'ID del prodotto da aggiungere alla lista dei desideri (lascia vuoto per utilizzare il prodotto globale)ID della lista da mostrare (es. K6EOWXB888ZD)Icona del pulsante (utilizza una qualsiasi classe FontAwesome valida oppure lascia vuoto per utilizzare le impostazioni predefinite)Icona per rimuovere il prodotto dalla lista dei desideri - a sinistra del prodottoSe vuoi usufruire di questa funzionalità, acquista la %s.DisponibilePer utilizzare quest'integrazione devi aver installato e attivato YITH WooCommerce Frequently Bought Together. <a href="%s">Maggiori dettagli qui</a>Nella tabella mostraElemento della lista non valido.Lista non valida.Sarà utilizzato per salvare la lista su Pinterest.Articoli aggiuntiCarica in AJAX qualsiasi elemento di YITH Wishlist che possa essere messo in cacheLe opzioni loop saranno visibili nella pagina Negozio, nelle pagine categoria, negli shortcode che mostrano i prodotti, slider di prodotti e tutti gli altri casi in cui viene utilizzato il loop dei prodotti WooCommerceImpostazioni loopI membri del nostro team hanno accesso alle informazioni che ci fornisci. Per esempio, sia l'amministratore che i Gestori del Negozio possono accedere a:SpostaSposta in un'altra lista &rsaquo;La mia lista dei desideri su %sNon è stato ancora aggiunto nessun prodotto alla listaNumero di articoli da mostrare per paginaSopra l'immagineSolo le persone con cui condividi il link della lista possono vederlaSolo tu puoi vedere questa listaIl nostro team ha accesso a queste informazioni per offrirti le migliori offerte per i prodotti che ami.EsauritoPaginazioneScegli una pagina da utilizzare per le Liste dei desideri; assicurati di aver aggiunto lo shortcode <span class="code"><code>[yith_wcwl_wishlist]</code></span> nel contenuto della paginaCondividi su PinterestPinterestIcona personalizzata pulsante Condividi su PinterestIcona pulsante Condividi su PinterestStile pulsante Condividi su PinterestInserisci un valido titoloPosizione di 'Aggiungi alla lista' nel loopPosizione di 'Aggiungi alla lista' nella pagina prodottoVersione premiumPrezzo:Stile pulsante principalePrivataProdotto aggiunto al carrello con successoArticolo aggiunto!Nome prodottoImpostazioni pagina prodottoPrezzo del prodottoDisponibilità prodotto (mostra se il prodotto è disponibile o meno)Prodotto rimosso con successo.Le variazioni di prodotto selezionate dall'utente (es. taglia o colore)Prodotti aggiunti alla lista dei desideri: useremo questa informazione per mostrare a te e ad altri utenti i tuoi prodotti preferiti e per creare campagne email mirate.PubblicaQuantitàQuantità:Reindirizza al carrelloReindirizza gli utenti alla pagina Carrello quando aggiungono un prodotto della lista dei desideri al carrelloRimuoviRimuovi dalla listaRimuovi dalla listaRimuovi se aggiunto al carrelloRimuovi il prodotto dalla lista dopo che è stato aggiunto al carrelloRimuovi questo prodottoLista dei desideri %s rimossa.La stessa utilizzata per Aggiungi alla listaStile pulsante secondarioSeleziona un'icona per il pulsante 'Aggiungi al carrello' (opzionale)Seleziona un'icona per il pulsante 'Aggiungi alla lista' (opzionale)Selezionare un'icona per il pulsante "Aggiungi alla lista" (opzionale)Seleziona un'icona per il pulsante di condivisione per emailSeleziona un'icona per il pulsante di condivisione su FacebookSeleziona un'icona per il pulsante di condivisione su PinterestSeleziona un'icona per il pulsante di condivisione su TwitterSeleziona un'icona per il pulsante di condivisione su WhatsAppImposta il raggio del bordo arrotondato del pulsante 'Aggiungi al carrello'Colore testo pulsante condivisioneCondividi l'URLCondividi per emailCondividi su FacebookCondividi su WhatsAppCondividi sui socialCondividi su:Condividi per emailCondividi la listaCondivisaTitolo per la condivisioneMostra 'Aggiungi alla lista' nel loopMostra il link 'Rimuovi dalla lista'Mostra il campo 'Condividi l'URL' nella pagina Lista dei desideriMostra il link 'Vedi la lista'URL per immagine socialTesto per i socialDisponibilità in magazzinoDisponibilità in magazzino:Personalizzazione stile e coloriPersonalizzazione stile e coloriStile di 'Aggiungi al carrello'Stile di 'Aggiungi alla lista'TestoTesto - hoverPersonalizzazione testiTesto - hoverTestuale (ancora)L'elemento non può essere aggiunto alla lista dei desideriIl prodotto è già nella tua lista!TitoloTokenCondividi su TwitterTwitterIcona personalizzata pulsante Condividi su TwitterIcona pulsante Condividi su TwitterStile pulsante Condividi su TwitterInserisci qui il messaggio da pubblicare quando condividi la tua lista su Twitter e PinterestURL della pagina Lista dei desideri (lascia vuoto per utilizzare le impostazioni predefinite)Prezzo unitarioAggiornaCarica un'icona da utilizzare per il pulsante 'Aggiungi alla lista' (dimensione consigliata 32 x 32 px)Carica un'icona da utilizzare per il pulsante di condivisione su Facebook (dimensione consigliata 32 x 32 px)Carica un'icona da utilizzare per il pulsante di condivisione su Pinterest (dimensione consigliata 32 x 32 px)Carica un'icona da utilizzare per il pulsante di condivisione su Twitter (dimensione consigliata 32 x 32 px)Carica un'icona da utilizzare per il pulsante di condivisione su WhatsApp (dimensione consigliata 32 x 32 px)Carica un'icona da utilizzare per il pulsante 'Aggiungi al carrello' (dimensione consigliata 32 x 32 px)Carica un'icona da utilizzare per il pulsante di condivisione email (dimensione consigliata 32 x 32 px)Utilizza lo shortcodeVedi &rsaquo;VisibilitàSpiacenti, questa funzionalità è disponibile solo se hai abilitato i cookie nel tuo browser.Useremo anche i cookie per tenere traccia dei contenuti delle liste dei desideri mentre visiti il nostro sito.WhatsAppIcona personalizzata pulsante Condividi su WhatsAppIcona pulsante Condividi su WhatsAppStile pulsante Condividi su WhatsAppWhatsappMentre visiti il nostro sito, terremo traccia di:WishlistLa lista dei desideri %s è stata salvata.Pagina dettaglio Lista dei desideriURL lista dei desideriDettagli della lista dei desideri, come ad esempio i prodotti aggiunti, la data, il nome e le impostazioni sulla privacy delle tue liste dei desideriPagina Lista dei desideriOpzioni pagina Lista dei desideriStile tabella Lista dei desideriTitolo della lista utilizzato specificatamente per la condivisione (solo su Twitter e Pinterest)Liste dei desideriLe liste dei desideri che hai creato: terremo traccia delle liste da te create che saranno visibili allo staff del nostro storeIntegrazione con YITH WooCommerce Frequently Bought TogetherTu e un altro utenteTu e altri %d utentiSei il primocopiaha aggiunto questo prodotto alla sua listahanno aggiunto questo prodotto alla propria listaavete aggiunto questo prodotto alla lista dei desiderioppurequesto URL e condividilo dove vuoi)ad aver aggiunto questo prodotto alla lista dei desideriPK`x1\Z��N�N�,languages/yith-woocommerce-wishlist-ko_KR.ponu�[���# Copyright (C) 2019 YITH WooCommerce Wishlist
# This file is distributed under the same license as the YITH WooCommerce Wishlist package.
msgid ""
msgstr ""
"Project-Id-Version: YITH WooCommerce Wishlist\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/yith-woocommerce-"
"wishlist\n"
"POT-Creation-Date: 2021-11-11 13:53:53+00:00\n"
"PO-Revision-Date: 2020-10-16 14:05+0200\n"
"Last-Translator: Valentyn Zubenko <valentyn.zubenko@gmail.com>\n"
"Language-Team: Your Inspiration Themes <plugins@yithemes.com>\n"
"Language: uk_UA\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 2.4.1\n"
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;_n:1,2;__ngettext:1,2;"
"__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;"
"_nx_noop:4c,1,2\n"
"X-Poedit-Basepath: .\n"
"Plural-Forms: nplurals=2; plural=n!=1;\n"
"X-Poedit-SourceCharset: UTF-8\n"
"X-Poedit-SearchPath-0: ..\n"
"X-Poedit-SearchPathExcluded-0: ../plugin-fw\n"

#: includes/class-yith-wcwl-admin.php:126
#, fuzzy
msgid "Wishlist Page"
msgstr "개인 위시리스트  "

#: includes/class-yith-wcwl-admin.php:148
msgid "General settings"
msgstr ""

#: includes/class-yith-wcwl-admin.php:149
msgid "Add to wishlist options"
msgstr ""

#: includes/class-yith-wcwl-admin.php:150
msgid "Wishlist page options"
msgstr ""

#: includes/class-yith-wcwl-admin.php:151
msgid "Premium Version"
msgstr "프리미엄 버전 "

#: includes/class-yith-wcwl-admin.php:249
#: includes/class-yith-wcwl-install.php:342
msgid "Wishlist"
msgstr "위시리스"

#: includes/class-yith-wcwl-admin.php:251
msgid ""
"Allows your customers to create and share lists of products that they want "
"to purchase on your e-commerce."
msgstr ""

#: includes/class-yith-wcwl-ajax-handler.php:75
#: templates/add-to-wishlist-remove.php:59
msgid "View &rsaquo;"
msgstr ""

#: includes/class-yith-wcwl-ajax-handler.php:76
#: templates/add-to-wishlist-remove.php:58
msgid "or"
msgstr ""

#: includes/class-yith-wcwl-ajax-handler.php:77
msgid "Close"
msgstr ""

#: includes/class-yith-wcwl-ajax-handler.php:155
#: includes/class-yith-wcwl-ajax-handler.php:195
msgid "Product successfully removed."
msgstr "상품이 성공적으로 제거 되었습니다."

#: includes/class-yith-wcwl-form-handler.php:156
msgid "Please, make sure to enter a valid title"
msgstr ""

#: includes/class-yith-wcwl-frontend.php:461
msgid ""
"We are sorry, but this feature is available only if cookies on your browser "
"are enabled."
msgstr ""

#: includes/class-yith-wcwl-frontend.php:462
msgid "Product added to cart successfully"
msgstr ""

#: includes/class-yith-wcwl-frontend.php:725
#: includes/class-yith-wcwl-shortcode.php:239
#: plugin-options/wishlist_page-options.php:240
#: templates/wishlist-view-footer-mobile.php:46
#: templates/wishlist-view-footer.php:46
msgid "Add to cart"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:52
msgid "While you visit our site, we’ll track:"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:54
msgid ""
"Products you’ve added to the wishlist: we’ll use this to show you and other "
"users your favourite products, and to create targeted email campaigns."
msgstr ""

#: includes/class-yith-wcwl-privacy.php:55
msgid ""
"Wishlists you’ve created: we’ll keep track of the wishlists you create, and "
"make them visible to the store staff"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:57
msgid ""
"We’ll also use cookies to keep track of wishlist contents while you’re "
"browsing our site."
msgstr ""

#: includes/class-yith-wcwl-privacy.php:60
msgid ""
"Members of our team have access to the information you provide us with. For "
"example, both Administrators and Shop Managers can access:"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:62
msgid ""
"Wishlist details, such as products added, date of addition, name and privacy "
"settings of your wishlists"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:64
msgid ""
"Our team members have access to this information to offer you better deals "
"for the products you love."
msgstr ""

#: includes/class-yith-wcwl-privacy.php:84
#: includes/class-yith-wcwl-privacy.php:100
msgid "Customer wishlists"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:137 plugin-options/lists-options.php:25
#: plugin-options/lists-options.php:32
msgid "Wishlists"
msgstr "위시리스"

#. Translators: %s Order number.
#: includes/class-yith-wcwl-privacy.php:199
msgid "Removed wishlist %s."
msgstr "나의 위시리스트 목록 @ %s"

#. Translators: %s Order number.
#: includes/class-yith-wcwl-privacy.php:203
msgid "Wishlist %s has been retained."
msgstr ""

#: includes/class-yith-wcwl-privacy.php:227
msgid "Token"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:228
msgid "Wishlist URL"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:229
msgid "Title"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:231
msgid "Visibility"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:232
msgid "Items added"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:58
msgid ""
"ID of the product to add to the wishlist (leave empty to use the global "
"product)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:63
msgid "URL of the wishlist page (leave empty to use the default settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:68
msgid "Button label (leave empty to use the default settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:73
msgid "\"Browse wishlist\" label (leave empty to use the default settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:78
msgid ""
"\"Product already in wishlist\" label (leave empty to use the default "
"settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:83
msgid ""
"\"Product added to wishlist\" label (leave empty to use the default settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:88
msgid ""
"Icon for the button (use any FontAwesome valid class, or leave empty to use "
"the default settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:93
msgid ""
"Additional CSS classes for the button (leave empty to use the default "
"settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:107
msgid "Choose whether to paginate items in the wishlist or show them all"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:110
#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:118
msgid "Paginate"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:111
#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:119
msgid "Do not paginate"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:116
msgid "Number of items to show per page"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:121
msgid "ID of the wishlist to show (e.g. K6EOWXB888ZD)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:414
msgid "Share on:"
msgstr "공유: "

#: includes/class-yith-wcwl-shortcode.php:438
#: plugin-options/wishlist_page-options.php:138
msgid "Share on Facebook"
msgstr "페이스북에 공유"

#: includes/class-yith-wcwl-shortcode.php:455
#: plugin-options/wishlist_page-options.php:147
msgid "Tweet on Twitter"
msgstr "트위터에 트윗하기"

#: includes/class-yith-wcwl-shortcode.php:473
#: plugin-options/wishlist_page-options.php:156
msgid "Pin on Pinterest"
msgstr "핀레스트에 핀하기"

#: includes/class-yith-wcwl-shortcode.php:487
msgid "Share via email"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:510
#: plugin-options/wishlist_page-options.php:174
msgid "Share on WhatsApp"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:621
msgid "Remove from list"
msgstr ""

#: includes/class-yith-wcwl-wishlist-item.php:189
msgid "Free!"
msgstr "프리!"

#: includes/class-yith-wcwl.php:164
msgid "The item cannot be added to this wishlist"
msgstr ""

#: includes/class-yith-wcwl.php:168 includes/class-yith-wcwl.php:174
msgid "An error occurred while adding the products to the wishlist."
msgstr ""

#: includes/class-yith-wcwl.php:235 includes/class-yith-wcwl.php:241
msgid "Error. Unable to remove the product from the wishlist."
msgstr "에러, 위시리스트에서 상품제거 불가능 "

#: includes/data-stores/class-yith-wcwl-wishlist-data-store.php:152
#: includes/data-stores/class-yith-wcwl-wishlist-data-store.php:174
msgid "Invalid wishlist."
msgstr ""

#: includes/data-stores/class-yith-wcwl-wishlist-item-data-store.php:119
msgid "Invalid wishlist item."
msgstr ""

#. translators: 1. Number of users.
#: includes/functions-yith-wcwl.php:249
msgid "%d user"
msgid_plural "%d users"
msgstr[0] ""
msgstr[1] ""

#: includes/functions-yith-wcwl.php:250
msgid "has this item in wishlist"
msgid_plural "have this item in wishlist"
msgstr[0] ""
msgstr[1] ""

#: includes/functions-yith-wcwl.php:252
msgid "You're the first"
msgstr ""

#: includes/functions-yith-wcwl.php:253
msgid "to add this item in wishlist"
msgstr ""

#. translators: 1. Count of users when many, or "another" when only one.
#: includes/functions-yith-wcwl.php:257
msgid "You and %s user"
msgid_plural "You and %d users"
msgstr[0] ""
msgstr[1] ""

#: includes/functions-yith-wcwl.php:257
msgid "another"
msgstr ""

#: includes/functions-yith-wcwl.php:258
msgid "have this item in wishlist"
msgstr ""

#: includes/functions-yith-wcwl.php:425
msgid "None"
msgstr ""

#: includes/functions-yith-wcwl.php:426
#, fuzzy
msgid "Custom"
msgstr "커스텀 CSS"

#: includes/functions-yith-wcwl.php:447
msgid "Shared"
msgstr "공유됨 "

#: includes/functions-yith-wcwl.php:451
msgid "Only people with a link to this list can see it"
msgstr ""

#: includes/functions-yith-wcwl.php:457
msgid "Private"
msgstr "개인 "

#: includes/functions-yith-wcwl.php:461
msgid "Only you can see this list"
msgstr ""

#: includes/functions-yith-wcwl.php:467
msgid "Public"
msgstr "공용 "

#: includes/functions-yith-wcwl.php:471
msgid "Anyone can search for and see this list"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:118
#: plugin-options/add_to_wishlist-options.php:127
msgid "Add to wishlist"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:128
#: plugin-options/add_to_wishlist-options.php:143
msgid "Browse wishlist"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:138
#, fuzzy
msgid "Product already in wishlist"
msgstr "\"위시리스트에 이미 있습니다\" 텍스트"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:148
#, fuzzy
msgid "Product added to wishlist"
msgstr "\"위시리스트에 이미 있습니다\" 텍스트"

#: init.php:160
#, fuzzy
msgid "is enabled but not effective. It requires WooCommerce to work."
msgstr ""
"YITH WooCommerce Wishlist가 활성화 되었으나 사용 불가능. 사용하기 위해서는 우"
"커머스가 필요합니다."

#: init.php:176
msgid "You can't activate the free version of"
msgstr ""

#: init.php:176
msgid "while you are using the premium one."
msgstr ""

#: plugin-options/add_to_wishlist-options.php:20
#: plugin-options/settings-options.php:27
msgid "General Settings"
msgstr "일반 설정 "

#: plugin-options/add_to_wishlist-options.php:27
msgid "After product is added to wishlist"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:28
msgid ""
"Choose the look of the Wishlist button when the product has already been "
"added to a wishlist"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:32
#, fuzzy
msgid "Show \"Add to wishlist\" button"
msgstr "\"위시리스트에 이미 있습니다\" 텍스트"

#: plugin-options/add_to_wishlist-options.php:33
msgid "Show \"View wishlist\" link"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:34
msgid "Show \"Remove from list\" link"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:48
msgid "Loop settings"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:50
msgid ""
"Loop options will be visible on Shop page, category pages, product "
"shortcodes, products sliders, and all the other places where the WooCommerce "
"products' loop is used"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:55
msgid "Show \"Add to wishlist\" in loop"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:56
msgid "Enable the \"Add to wishlist\" feature in WooCommerce products' loop"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:64
msgid "Position of \"Add to wishlist\" in loop"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:65
msgid ""
"Choose where to show \"Add to wishlist\" button or link in WooCommerce "
"products' loop. <span class=\"addon\">Copy this shortcode <span class=\"code"
"\"><code>[yith_wcwl_add_to_wishlist]</code></span> and paste it where you "
"want to show the \"Add to wishlist\" link or button</span>"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:72
msgid "On top of the image"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:73
msgid "Before \"Add to cart\" button"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:74
msgid "After \"Add to cart\" button"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:75
#: plugin-options/add_to_wishlist-options.php:107
msgid "Use shortcode"
msgstr "숏코드를 사용 "

#: plugin-options/add_to_wishlist-options.php:89
msgid "Product page settings"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:96
msgid "Position of \"Add to wishlist\" on product page"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:97
msgid ""
"Choose where to show \"Add to wishlist\" button or link on the product page. "
"<span class=\"addon\">Copy this shortcode <span class=\"code"
"\"><code>[yith_wcwl_add_to_wishlist]</code></span> and paste it where you "
"want to show the \"Add to wishlist\" link or button</span>"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:104
msgid "After \"Add to cart\""
msgstr "장바구니 담기 뒤에"

#: plugin-options/add_to_wishlist-options.php:105
msgid "After thumbnails"
msgstr "썸네일 뒤에"

#: plugin-options/add_to_wishlist-options.php:106
msgid "After summary"
msgstr "써머리 뒤에"

#: plugin-options/add_to_wishlist-options.php:117
#: plugin-options/wishlist_page-options.php:222
msgid "Text customization"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:124
msgid "\"Add to wishlist\" text"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:125
msgid "Enter a text for \"Add to wishlist\" button"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:132
msgid "\"Product added\" text"
msgstr "\"상품 추가\" 텍스트 "

#: plugin-options/add_to_wishlist-options.php:133
msgid ""
"Enter the text of the message displayed when the user adds a product to the "
"wishlist"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:135
msgid "Product added!"
msgstr "상품이 추가됨!"

#: plugin-options/add_to_wishlist-options.php:140
msgid "\"Browse wishlist\" text"
msgstr "\"위시리스트 둘러보기\" 텍스트"

#: plugin-options/add_to_wishlist-options.php:141
msgid "Enter a text for the \"Browse wishlist\" link on the product page"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:148
msgid "\"Product already in wishlist\" text"
msgstr "\"위시리스트에 이미 있습니다\" 텍스트"

#: plugin-options/add_to_wishlist-options.php:149
msgid ""
"Enter the text for the message displayed when the user views a product that "
"is already in the wishlist"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:151
msgid "The product is already in your wishlist!"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:161
msgid "Style & Color customization"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:168
msgid "Style of \"Add to wishlist\""
msgstr ""

#: plugin-options/add_to_wishlist-options.php:169
msgid ""
"Choose if you want to show a textual \"Add to wishlist\" link or a button"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:172
#: plugin-options/wishlist_page-options.php:261
msgid "Textual (anchor)"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:173
#: plugin-options/wishlist_page-options.php:262
msgid "Button with theme style"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:174
#: plugin-options/wishlist_page-options.php:263
msgid "Button with custom style"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:182
msgid "\"Add to wishlist\" button style"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:188
msgid "Choose colors for the \"Add to wishlist\" button"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:190
#: plugin-options/wishlist_page-options.php:279
#: plugin-options/wishlist_page-options.php:368
#: plugin-options/wishlist_page-options.php:417
#: plugin-options/wishlist_page-options.php:465
#: plugin-options/wishlist_page-options.php:552
#: plugin-options/wishlist_page-options.php:592
#: plugin-options/wishlist_page-options.php:632
#: plugin-options/wishlist_page-options.php:672
#: plugin-options/wishlist_page-options.php:712
msgid "Background"
msgstr "백그라운드 "

#: plugin-options/add_to_wishlist-options.php:195
#: plugin-options/wishlist_page-options.php:284
#: plugin-options/wishlist_page-options.php:373
#: plugin-options/wishlist_page-options.php:422
#: plugin-options/wishlist_page-options.php:470
#: plugin-options/wishlist_page-options.php:507
msgid "Text"
msgstr "텍스트 "

#: plugin-options/add_to_wishlist-options.php:200
#: plugin-options/wishlist_page-options.php:289
#: plugin-options/wishlist_page-options.php:378
#: plugin-options/wishlist_page-options.php:427
#: plugin-options/wishlist_page-options.php:475
msgid "Border"
msgstr "경계 "

#: plugin-options/add_to_wishlist-options.php:206
msgid "Choose colors for the \"Add to wishlist\" button on hover state"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:208
#: plugin-options/wishlist_page-options.php:297
#: plugin-options/wishlist_page-options.php:386
#: plugin-options/wishlist_page-options.php:435
msgid "Background Hover"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:213
#: plugin-options/wishlist_page-options.php:302
#: plugin-options/wishlist_page-options.php:391
#: plugin-options/wishlist_page-options.php:440
msgid "Text Hover"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:218
#: plugin-options/wishlist_page-options.php:307
#: plugin-options/wishlist_page-options.php:396
#: plugin-options/wishlist_page-options.php:445
msgid "Border Hover"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:231
#: plugin-options/wishlist_page-options.php:320
msgid "Border radius"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:232
msgid "Choose radius for the \"Add to wishlist\" button"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:246
msgid "\"Add to wishlist\" icon"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:247
msgid "Select an icon for the \"Add to wishlist\" button (optional)"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:257
msgid "\"Add to wishlist\" custom icon"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:258
#: plugin-options/add_to_wishlist-options.php:282
msgid ""
"Upload an icon you'd like to use for \"Add to wishlist\" button (suggested "
"32px x 32px)"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:270
msgid "\"Added to wishlist\" icon"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:271
msgid "Select an icon for the \"Added to wishlist\" button (optional)"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:277
msgid "Same used for Add to wishlist"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:281
msgid "\"Added to wishlist\" custom icon"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:294
msgid "Custom CSS"
msgstr "커스텀 CSS"

#: plugin-options/add_to_wishlist-options.php:295
msgid "Enter custom CSS to be applied to Wishlist elements (optional)"
msgstr ""

#: plugin-options/lists-options.php:34
#, fuzzy
msgid "Search list"
msgstr "위시리스트 찾기 "

#. translators: 1. Anchor to Frequently Bought Together landing page on
#. yithemes.com.
#: plugin-options/settings-options.php:19
msgid ""
"If you want to take advantage of this feature, you could consider purchasing "
"the %s."
msgstr ""

#: plugin-options/settings-options.php:34
msgid "Enable AJAX loading"
msgstr ""

#: plugin-options/settings-options.php:35
msgid "Load any cacheable wishlist item via AJAX"
msgstr ""

#: plugin-options/settings-options.php:48
msgid "YITH WooCommerce Frequently Bought Together Integration"
msgstr "YITH WooCommerce 와  함께 자주 구매되는 연결"

#. translators: 1. Url to Frequently Bought Together landing page on
#. yithemes.com.
#: plugin-options/settings-options.php:51
msgid ""
"In order to use this integration you have to install and activate YITH "
"WooCommerce Frequently Bought Together. <a href=\"%s\">Learn more</a>"
msgstr ""

#: plugin-options/settings-options.php:56
msgid "Enable slider in wishlist"
msgstr "위시리스트내 슬라이더 사용 "

#. translators: 1. Example image of the integration. 2. CTA to buy Frequently
#. Bought Together.
#: plugin-options/settings-options.php:58
msgid ""
"Enable the slider with linked products on the Wishlist page (<a href=\"%1$s"
"\" class=\"thickbox\">Example</a>). %2$s"
msgstr ""

#: plugin-options/wishlist_page-options.php:19
msgid "All your wishlists"
msgstr ""

#: plugin-options/wishlist_page-options.php:26
msgid "Wishlist page"
msgstr ""

#: plugin-options/wishlist_page-options.php:27
msgid ""
"Pick a page as the main Wishlist page; make sure you add the <span class="
"\"code\"><code>[yith_wcwl_wishlist]</code></span> shortcode into the page "
"content"
msgstr ""

#: plugin-options/wishlist_page-options.php:40
msgid "Wishlist Detail Page"
msgstr ""

#: plugin-options/wishlist_page-options.php:47
#: plugin-options/wishlist_page-options.php:56
#: plugin-options/wishlist_page-options.php:65
#: plugin-options/wishlist_page-options.php:74
#: plugin-options/wishlist_page-options.php:83
#: plugin-options/wishlist_page-options.php:92
#: plugin-options/wishlist_page-options.php:101
msgid "In wishlist table show"
msgstr ""

#: plugin-options/wishlist_page-options.php:48
msgid "Product variations selected by the user (example: size or color)"
msgstr ""

#: plugin-options/wishlist_page-options.php:57
msgid "Product price"
msgstr ""

#: plugin-options/wishlist_page-options.php:66
msgid "Product stock (show if the product is available or not)"
msgstr ""

#: plugin-options/wishlist_page-options.php:75
msgid "Date on which the product was added to the wishlist"
msgstr ""

#: plugin-options/wishlist_page-options.php:84
msgid "Add to cart option for each product"
msgstr ""

#: plugin-options/wishlist_page-options.php:93
msgid ""
"Icon to remove the product from the wishlist - to the left of the product"
msgstr ""

#: plugin-options/wishlist_page-options.php:102
msgid ""
"Button to remove the product from the wishlist - to the right of the product"
msgstr ""

#: plugin-options/wishlist_page-options.php:110
msgid "Redirect to cart"
msgstr "장바구니로 다시돌리기"

#: plugin-options/wishlist_page-options.php:111
msgid ""
"Redirect users to the cart page when they add a product to the cart from the "
"wishlist page"
msgstr ""

#: plugin-options/wishlist_page-options.php:119
msgid "Remove if added to the cart"
msgstr "장바구니에 담고나면 제거"

#: plugin-options/wishlist_page-options.php:120
msgid ""
"Remove the product from the wishlist after it has been added to the cart"
msgstr ""

#: plugin-options/wishlist_page-options.php:128
msgid "Share wishlist"
msgstr ""

#: plugin-options/wishlist_page-options.php:129
msgid "Enable this option to let users share their wishlist on social media"
msgstr ""

#: plugin-options/wishlist_page-options.php:137
#: plugin-options/wishlist_page-options.php:146
#: plugin-options/wishlist_page-options.php:155
#: plugin-options/wishlist_page-options.php:164
#: plugin-options/wishlist_page-options.php:173
msgid "Share on social media"
msgstr ""

#: plugin-options/wishlist_page-options.php:165
msgid "Share by email"
msgstr ""

#: plugin-options/wishlist_page-options.php:182
msgid "Share by URL"
msgstr ""

#: plugin-options/wishlist_page-options.php:183
msgid "Show \"Share URL\" field on wishlist page"
msgstr ""

#: plugin-options/wishlist_page-options.php:191
msgid "Sharing title"
msgstr ""

#: plugin-options/wishlist_page-options.php:192
msgid "Wishlist title used for sharing (only used on Twitter and Pinterest)"
msgstr ""

#. translators: 1. Blog name.
#: plugin-options/wishlist_page-options.php:195
msgid "My wishlist on %s"
msgstr "나의 위시리스트 목록 @ %s"

#: plugin-options/wishlist_page-options.php:200
msgid "Social text"
msgstr "소셜 텍스트 "

#: plugin-options/wishlist_page-options.php:201
msgid ""
"Type the message you want to publish when you share your wishlist on Twitter "
"and Pinterest"
msgstr ""

#: plugin-options/wishlist_page-options.php:209
msgid "Social image URL"
msgstr "소셜 이미지 URL"

#: plugin-options/wishlist_page-options.php:210
msgid "It will be used to pin the wishlist on Pinterest."
msgstr ""

#: plugin-options/wishlist_page-options.php:229
msgid "Default wishlist name"
msgstr ""

#: plugin-options/wishlist_page-options.php:230
msgid ""
"Enter a name for the default wishlist. This is the wishlist that will be "
"automatically generated for all users if they do not create any custom one"
msgstr ""

#: plugin-options/wishlist_page-options.php:232
#, fuzzy
msgid "My wishlist"
msgstr "나의 위시리스트 목록 @ %s"

#: plugin-options/wishlist_page-options.php:237
msgid "\"Add to cart\" text"
msgstr ""

#: plugin-options/wishlist_page-options.php:238
msgid "Enter a text for the \"Add to cart\" button"
msgstr ""

#: plugin-options/wishlist_page-options.php:250
msgid "Style & color customization"
msgstr ""

#: plugin-options/wishlist_page-options.php:257
msgid "Style of \"Add to cart\""
msgstr ""

#: plugin-options/wishlist_page-options.php:258
msgid "Choose whether to show a textual \"Add to cart\" link or a button"
msgstr ""

#: plugin-options/wishlist_page-options.php:271
msgid "\"Add to cart\" button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:277
msgid "Choose the colors for the \"Add to cart\" button"
msgstr ""

#: plugin-options/wishlist_page-options.php:295
msgid "Choose colors for the \"Add to cart\" button on hover state"
msgstr ""

#: plugin-options/wishlist_page-options.php:321
msgid "Set the radius for the \"Add to cart\" button"
msgstr ""

#: plugin-options/wishlist_page-options.php:335
msgid "\"Add to cart\" icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:336
msgid "Select an icon for the \"Add to cart\" button (optional)"
msgstr ""

#: plugin-options/wishlist_page-options.php:351
msgid "\"Add to cart\" custom icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:352
msgid ""
"Upload an icon you'd like to use for the \"Add to cart\" button (suggested "
"32px x 32px)"
msgstr ""

#: plugin-options/wishlist_page-options.php:360
msgid "Primary button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:366
msgid ""
"Choose colors for the primary button<br/><small>This style will be applied "
"to \"Edit title\" button on Wishlist view, \"Submit Changes\" button on "
"Manage view and \"Search wishlist\" button on Search view</small>"
msgstr ""

#: plugin-options/wishlist_page-options.php:384
msgid ""
"Choose colors for the primary button on hover state<br/><small>This style "
"will be applied to \"Edit title\" button on Wishlist view, \"Submit Changes"
"\" button on Manage view and \"Search wishlist\" button on Search view</"
"small>"
msgstr ""

#: plugin-options/wishlist_page-options.php:409
msgid "Secondary button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:415
#: plugin-options/wishlist_page-options.php:433
msgid ""
"Choose colors of the secondary button<br/><small>This style will be applied "
"to the buttons that allow showing and hiding the Edit title form on Wishlist "
"view and \"Create new Wishlist\" button on Manage view</small>"
msgstr ""

#: plugin-options/wishlist_page-options.php:458
msgid "Wishlist table style"
msgstr ""

#: plugin-options/wishlist_page-options.php:459
msgid ""
"Choose the colors for the wishlist table (when set to \"Traditional\" layout)"
msgstr ""

#: plugin-options/wishlist_page-options.php:487
msgid "Highlight color"
msgstr ""

#: plugin-options/wishlist_page-options.php:488
msgid ""
"Choose the color for all sections with background<br/><small>This color will "
"be used as background for the wishlist table heading and footer (when set to "
"\"Traditional\" layout), and for various form across wishlist views</small>"
msgstr ""

#: plugin-options/wishlist_page-options.php:500
msgid "Share button text color"
msgstr ""

#: plugin-options/wishlist_page-options.php:501
msgid "Choose colors for share buttons text"
msgstr ""

#: plugin-options/wishlist_page-options.php:512
msgid "Text hover"
msgstr ""

#: plugin-options/wishlist_page-options.php:525
msgid "Facebook share button icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:526
msgid "Select an icon for the Facebook share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:536
msgid "Facebook share button custom icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:537
msgid ""
"Upload an icon you'd like to use for Facebook share button (suggested 32px x "
"32px)"
msgstr ""

#: plugin-options/wishlist_page-options.php:545
msgid "Facebook share button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:546
msgid "Choose colors for Facebook share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:557
#: plugin-options/wishlist_page-options.php:597
#: plugin-options/wishlist_page-options.php:637
#: plugin-options/wishlist_page-options.php:677
#: plugin-options/wishlist_page-options.php:717
msgid "Background hover"
msgstr ""

#: plugin-options/wishlist_page-options.php:565
msgid "Twitter share button icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:566
msgid "Select an icon for the Twitter share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:576
msgid "Twitter share button custom icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:577
msgid ""
"Upload an icon you'd like to use for Twitter share button (suggested 32px x "
"32px)"
msgstr ""

#: plugin-options/wishlist_page-options.php:585
msgid "Twitter share button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:586
msgid "Choose colors for Twitter share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:605
msgid "Pinterest share button icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:606
msgid "Select an icon for the Pinterest share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:616
msgid "Pinterest share button custom icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:617
msgid ""
"Upload an icon you'd like to use for Pinterest share button (suggested 32px "
"x 32px)"
msgstr ""

#: plugin-options/wishlist_page-options.php:625
msgid "Pinterest share button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:626
msgid "Choose colors for Pinterest share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:645
msgid "Email share button icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:646
msgid "Select an icon for the Email share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:656
msgid "Email share button custom icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:657
msgid ""
"Upload an icon you'd like to use for the Email share button (suggested 32px "
"x 32px)"
msgstr ""

#: plugin-options/wishlist_page-options.php:665
msgid "Email share button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:666
msgid "Choose colors for the Email share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:685
msgid "WhatsApp share button icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:686
msgid "Select an icon for the WhatsApp share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:696
msgid "WhatsApp share button custom icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:697
msgid ""
"Upload an icon you'd like to use for WhatsApp share button (suggested 32px x "
"32px)"
msgstr ""

#: plugin-options/wishlist_page-options.php:705
msgid "WhatsApp share button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:706
msgid "Choose colors for WhatsApp share button"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:168
#: templates/admin/wishlist-panel-premium.php:309
msgid ""
"Upgrade to the %1$spremium version%2$s%3$sof %1$sYITH WooCommerce Wishlist"
"%2$s to benefit from all features!"
msgstr ""
"%1$s프리미업 버전%2$s%3$s %1$sYITH WooCommerce Wishlist%2$s 모든 기능의 장점"
"을 사용하기위해 업그레이드 하십시요!"

#: templates/admin/wishlist-panel-premium.php:170
#: templates/admin/wishlist-panel-premium.php:311
msgid "Upgrade"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:176
msgid "Premium Features"
msgstr "프리미엄 기능 "

#: templates/admin/wishlist-panel-premium.php:180
msgid "Allow your customers to create multiple wishlists"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:182
msgid ""
"Christmas, Birthday... users will be able to create and manage multiple "
"wishlists, in case they prefer to keep the products sorted by category or "
"other parameters."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:185
msgid "Multiple Wishlist"
msgstr "다중 관심상품 "

#: templates/admin/wishlist-panel-premium.php:192
msgid "Wishlist Private"
msgstr "개인 위시리스트  "

#: templates/admin/wishlist-panel-premium.php:196
msgid "A transparent privacy management"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:198
msgid ""
"Your customers can set a privacy option for each wishlist and choose whether "
"sharing the wishlist or making it private."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:206
msgid ""
"Allow your customers to ask for an estimate, directly from their wishlist "
"page"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:208
msgid ""
"And give only registered users the privilege to use the wishlist "
"functionalities."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:211
msgid "Estimate Cost"
msgstr "견적 가격 "

#: templates/admin/wishlist-panel-premium.php:218
msgid "Admin Panel"
msgstr "관리자 패널 "

#: templates/admin/wishlist-panel-premium.php:222
msgid "An advanced and more versatile management of the wishlist"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:224
msgid ""
"Your customers can sort the products in the wishlist thanks to the drag&drop "
"option, move products from one wishlist to another, manage product quantity, "
"download the wishlist content to a .pdf file, share the wishlist on their "
"social networks, and much more!"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:232
msgid "Monitor your customers’ wishlists and the popular products"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:234
msgid ""
"You can see your customers’ wishlists, gain insight into the products they "
"are more interested in and plan targeted marketing strategies."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:237
msgid "Search Wishlists"
msgstr "위시리스트 찾기 "

#: templates/admin/wishlist-panel-premium.php:244
msgid "'ADD TO CART'"
msgstr "'장바구니 담기'"

#: templates/admin/wishlist-panel-premium.php:248
msgid ""
"Send promotional emails for products in wishlists to push customers to buy"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:250
msgid ""
"Just three clicks to send promotional emails with discount coupons to "
"customers who have added specific products to their wishlist and push them "
"to buy."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:258
msgid "Let users buy the product right from the wishlist page"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:260
msgid ""
"Let them move products from one wishlist to the cart in one click, keeping "
"also the information about the size, colour or quantity selected when added "
"to the wishlist."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:263
msgid "DISABLE WISHLIST"
msgstr "위시리스트 사용 불가능"

#: templates/admin/wishlist-panel-premium.php:271
msgid "Choose a charming layout for your wishlist page"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:273
msgid ""
"The wishlist is one of the most used functionalities in an ecommerce store "
"but often the page layout is not enhanced enough and looks unattractive to "
"the user. With our plugin, you can choose among some alternative layouts and "
"offer an even more interesting experience to users who creates a wishlist on "
"your website."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:276
msgid "UNLOGGED USERS"
msgstr "비로그인 사용자 "

#: templates/admin/wishlist-panel-premium.php:284
msgid "Wishlist widgets for the header and sidebars"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:286
msgid ""
"Increase the wishlist visibility through our modern widgets that you can use "
"in the header, in the sidebars, wherever you want."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:289
msgid "POPULAR TABLE"
msgstr "인기상품 나타내기"

#: templates/admin/wishlist-panel-premium.php:296
msgid "FUNCTIONALITIES"
msgstr "기능들 "

#: templates/admin/wishlist-panel-premium.php:300
msgid "Allow users to monitor the price of the products in their wishlist"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:302
msgid ""
"We took inspiration from one of the most interesting features of Amazon "
"product pages: from now on, users can realise what’s the best time to buy a "
"product and how much they can save when there’s a promotion running or a "
"discount on the product they’ve added to the wishlist."
msgstr ""

#: templates/share.php:51 templates/share.php:52
msgid "Facebook"
msgstr "페이스북 "

#: templates/share.php:59 templates/share.php:60
msgid "Twitter"
msgstr "트위터 "

#: templates/share.php:67 templates/share.php:68
msgid "Pinterest"
msgstr "핀테레스트 "

#: templates/share.php:75 templates/share.php:76
msgid "Email"
msgstr "이메일 "

#: templates/share.php:83
msgid "WhatsApp"
msgstr ""

#: templates/share.php:84
msgid "Whatsapp"
msgstr ""

#: templates/share.php:93
msgid "(Now"
msgstr ""

#: templates/share.php:93
msgid "copy"
msgstr ""

#: templates/share.php:93
msgid "this wishlist link and share it anywhere)"
msgstr ""

#: templates/wishlist-view-footer-mobile.php:44
#: templates/wishlist-view-footer.php:44
msgid "Apply this action to all the selected items:"
msgstr ""

#: templates/wishlist-view-footer-mobile.php:49
#: templates/wishlist-view-footer.php:49
msgid "Remove from wishlist"
msgstr ""

#. translators: 1. Wishlist formatted name.
#: templates/wishlist-view-footer-mobile.php:67
#: templates/wishlist-view-footer.php:67
msgid "Move to %s"
msgstr ""

#: templates/wishlist-view-footer-mobile.php:73
#: templates/wishlist-view-footer.php:73
msgid "Apply"
msgstr ""

#: templates/wishlist-view-footer-mobile.php:81
#: templates/wishlist-view-footer.php:81
msgid "Update"
msgstr ""

#: templates/wishlist-view-footer-mobile.php:87
#: templates/wishlist-view-footer.php:103
msgid "Add all to cart"
msgstr ""

#: templates/wishlist-view-header.php:48
msgid "Edit title"
msgstr "타이틀 편집 "

#: templates/wishlist-view-mobile.php:136
msgid "Added on:"
msgstr ""

#: templates/wishlist-view-mobile.php:147
msgid "Price:"
msgstr ""

#: templates/wishlist-view-mobile.php:174
msgid "Quantity:"
msgstr ""

#: templates/wishlist-view-mobile.php:189
msgid "Stock:"
msgstr ""

#: templates/wishlist-view-mobile.php:192 templates/wishlist-view.php:229
msgid "Out of stock"
msgstr ""

#: templates/wishlist-view-mobile.php:192 templates/wishlist-view.php:229
msgid "In Stock"
msgstr "재고 있음 "

#: templates/wishlist-view-mobile.php:212 templates/wishlist-view.php:262
msgid "Move"
msgstr "이동 "

#: templates/wishlist-view-mobile.php:233 templates/wishlist-view.php:283
msgid "Move to another list &rsaquo;"
msgstr ""

#: templates/wishlist-view-mobile.php:241 templates/wishlist-view.php:157
#: templates/wishlist-view.php:293
msgid "Remove this product"
msgstr "이 상품 제거 "

#: templates/wishlist-view-mobile.php:252 templates/wishlist-view.php:313
msgid "No products added to the wishlist"
msgstr ""

#: templates/wishlist-view.php:79
msgid "Product name"
msgstr ""

#: templates/wishlist-view.php:87
msgid "Unit price"
msgstr ""

#: templates/wishlist-view.php:96
msgid "Quantity"
msgstr ""

#: templates/wishlist-view.php:105
msgid "Stock status"
msgstr ""

#: templates/wishlist-view.php:123
msgid "Arrange"
msgstr ""

#. translators: date added label: 1 date added.
#: templates/wishlist-view.php:243
msgid "Added on: %s"
msgstr ""

#: templates/wishlist-view.php:293
msgid "Remove"
msgstr "제거 "

#. Description of the plugin/theme
msgid ""
"<code><strong>YITH WooCommerce Wishlist</strong></code> gives your users the "
"possibility to create, fill, manage and share their wishlists allowing you "
"to analyze their interests and needs to improve your marketing strategies. "
"<a href=\"https://yithemes.com/\" target=\"_blank\">Get more plugins for "
"your e-commerce on <strong>YITH</strong></a>"
msgstr ""

#: includes/class-yith-wcwl-admin.php:261
msgctxt "[HELP TAB] Video title"
msgid ""
"Check this video to learn how to <b>configure wishlist and customize options:"
"</b>"
msgstr ""

#: includes/class-yith-wcwl-install.php:340
msgctxt "page_slug"
msgid "wishlist"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:230
msgctxt "date when wishlist was created"
msgid "Created on"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:52
msgctxt "[gutenberg]: block name"
msgid "YITH Add to wishlist"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:101
msgctxt "[gutenberg]: block name"
msgid "YITH Wishlist"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:53
msgctxt "[gutenberg]: block description"
msgid "Shows Add to wishlist button"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:102
msgctxt "[gutenberg]: block description"
msgid "Shows a list of products in wishlist"
msgstr ""

#. translators: 1. % of reduction/increase in price.
#: includes/class-yith-wcwl-wishlist-item.php:428
msgctxt ""
"Part of the template that shows price variation since addition to list; "
"placeholder will be replaced with a percentage"
msgid "Price is %1$s%%"
msgstr ""

#. translators: 2: original product price.
#: includes/class-yith-wcwl-wishlist-item.php:430
msgctxt ""
"Part of the template that shows price variation since addition to list; "
"placeholder will be replaced with a price"
msgid "(Was %2$s when added  in list)"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:45
msgctxt "Elementor widget name"
msgid "YITH Wishlist Add button"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:45
#, fuzzy
msgctxt "Elementor widget name"
msgid "YITH Wishlist"
msgstr "위시리스"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:87
#, fuzzy
msgctxt "Elementor section title"
msgid "Product"
msgstr "상품이 추가됨!"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:107
msgctxt "Elementor section title"
msgid "Labels"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:157
msgctxt "Elementor section title"
msgid "Advanced"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:87
#, fuzzy
msgctxt "Elementor section title"
msgid "Wishlist"
msgstr "위시리스"

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:107
msgctxt "Elementor section title"
msgid "Pagination"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:95
#, fuzzy
msgctxt "Elementor control label"
msgid "Product ID"
msgstr "상품이 추가됨!"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:115
msgctxt "Elementor control label"
msgid "Button label"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:125
#, fuzzy
msgctxt "Elementor control label"
msgid "\"Browse wishlist\" label"
msgstr "\"위시리스트 둘러보기\" 텍스트"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:135
#, fuzzy
msgctxt "Elementor control label"
msgid "\"Product already in wishlist\" label"
msgstr "\"위시리스트에 이미 있습니다\" 텍스트"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:145
#, fuzzy
msgctxt "Elementor control label"
msgid "\"Product added to wishlist\" label"
msgstr "\"위시리스트에 이미 있습니다\" 텍스트"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:165
msgctxt "Elementor control label"
msgid "URL of the wishlist page"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:175
msgctxt "Elementor control label"
msgid "Icon for the button"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:185
msgctxt "Elementor control label"
msgid "Additional CSS classes for the button"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:95
#, fuzzy
msgctxt "Elementor control label"
msgid "Wishlist ID"
msgstr "위시리스"

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:115
msgctxt "Elementor control label"
msgid "Paginate items"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:128
msgctxt "yith-woocommerce-wishlist"
msgid "Items per page"
msgstr ""

#~ msgid "My wishlist on "
#~ msgstr "나의 위시리스트 목록 @ %s"

#~ msgid "YITH WooCommerce Wishlist"
#~ msgstr "YITH WooCommerce Wishlist"

#~ msgid "Save"
#~ msgstr "저장 "

#~ msgid "Cancel"
#~ msgstr "취소 "

#~ msgid "Ask for an estimate"
#~ msgstr "견적가 요청 "
PK`x1\�dL�n�n,languages/yith-woocommerce-wishlist-nl_NL.monu�[�������Q�,FYl�����ARKi�M�";LQa#m��	��O� 4
O]nj�<�')Q,W�
������
��6L>��'�(�&
'4$\9�.�=�((�Q�/G�.F�u.YK�\�1 A!AG"?�"
�"�"3�"#1#
A#L#R#q#�#�#�#B�#D$�X$)�$)%?@%>�%f�%T&&6{&�&!�&�&�&''+'<'PL'.�'a�'I.(Tx(�(��(a)x)�)1�)�)��)
�*��*+ +>+!P+ r+�+/�+�+e�+X,e,�n,-	-""-E-a-(~-%�--�-�-..'."/.R.a.n.
�.7�.�.@�.�)/�/�/	�/�/Z�/F0M0^0s0H�0�0�011661:m1<�1)�1,2-<2+j2,�2+�2�233#353G3	]3g3w3�3
�3�3�3'�3�34*464C4J4f4�4�4�4
�4�4
�4�4)�4(5F5L5R5c5 k5�5�5Z�5B6
_6j6Uq6R�6S7Qn7R�7U8Si8
�8
�8
�8X�8]=9�9!�9�9�9�9(:/:8:W:l:gy:
�:�:;D;	_;ti;7�; <7<H<4M<�<�<)�<�<��<&�?+@!/@!Q@'s@,�@"�@"�@,A";AP^A�A`�A(B`CB1�B�B
�B�BC26CiC!�C�C�CY�C!D&@DgD
wD�D^�DT�D=NE	�E1�E�E�E�E�E(F,F1F=FIF?]F[�F�FG%(G&NG$uG(�G#�GR�G8:HTsH#�H�H��IQ�J:<KwK7|LS�L_M2hM+�NS�OQP
mPxP:�P�P�P�PQ'
Q5QRQoQ#�QM�QT�Q�OR5�R7*SFbSQ�S��St�TA�T8U(AUjU�U�U�U�U�Ue�U3RVs�V\�VFWW�W��W6XQXmX>�X�X��X�Y��Y/Z*;ZfZ-~Z(�Z�Z:�Z$[qB[�[
�[��[{\	�\)�\�\�\&]0']:X]�]�]�]�],�]�]^^*^=7^u^K�^��^�_�_�_�_w�_H`T`j`/�`O�`aa2:amaHaI�aIb-\b/�b0�b.�b/c9Jc�c
�c�c�c�c�c	�c�cd#d+d)7d!ad,�d�d�d�d�d	e
e&e%?e'ee�e�e�e�e�e9�e1	f;fAfGfXf'`f�f�f]�fS"g
vg	�gg�gX�gYOhW�hXigZiV�ij+j
;jTIjk�j
k(k<k[kzk(�k�k#�k�k�kxl�l�l�l`�l)m�6m6�m$�mn)nDHn"�n�n�n#�n84����b�Ij�s�p��}.�������u�������-�P�_)( N*&�����q�|3
B�n6H���`�v��U^���S�k��L;\2$����Q>�i������C����r�w/�����,����F@�{[G��ael��m�J!x��M����y�9%	�7
��o:�5�����Z�#����d~Yc=����VXR�1KtE�+���fW<'��A�gD��T�]���������h"���O�z?0"Add to cart" button style"Add to cart" custom icon"Add to cart" icon"Add to cart" text"Add to wishlist" button style"Add to wishlist" custom icon"Add to wishlist" icon"Add to wishlist" text"Added to wishlist" custom icon"Added to wishlist" icon"Browse wishlist" label (leave empty to use the default settings)"Browse wishlist" text"Product added to wishlist" label (leave empty to use the default settings)"Product added" text"Product already in wishlist" label (leave empty to use the default settings)"Product already in wishlist" text%d user%d users(NowAdd all to cartAdd to cartAdd to cart option for each productAdd to wishlistAdd to wishlist optionsAdded on:Added on: %sAdditional CSS classes for the button (leave empty to use the default settings)After "Add to cart"After "Add to cart" buttonAfter summaryAfter thumbnailsAll your wishlistsAllows your customers to create and share lists of products that they want to purchase on your e-commerce.An error occurred while adding the products to the wishlist.Anyone can search for and see this listApplyApply this action to all the selected items:ArrangeBackgroundBackground HoverBackground hoverBefore "Add to cart" buttonBorderBorder HoverBorder radiusBrowse wishlistButton label (leave empty to use the default settings)Button to remove the product from the wishlist - to the right of the productButton with custom styleButton with theme styleChoose colors for Facebook share buttonChoose colors for Pinterest share buttonChoose colors for Twitter share buttonChoose colors for WhatsApp share buttonChoose colors for share buttons textChoose colors for the "Add to cart" button on hover stateChoose colors for the "Add to wishlist" buttonChoose colors for the "Add to wishlist" button on hover stateChoose colors for the Email share buttonChoose colors for the primary button on hover state<br/><small>This style will be applied to "Edit title" button on Wishlist view, "Submit Changes" button on Manage view and "Search wishlist" button on Search view</small>Choose colors for the primary button<br/><small>This style will be applied to "Edit title" button on Wishlist view, "Submit Changes" button on Manage view and "Search wishlist" button on Search view</small>Choose if you want to show a textual "Add to wishlist" link or a buttonChoose radius for the "Add to wishlist" buttonChoose the color for all sections with background<br/><small>This color will be used as background for the wishlist table heading and footer (when set to "Traditional" layout), and for various form across wishlist views</small>Choose the colors for the "Add to cart" buttonChoose the colors for the wishlist table (when set to "Traditional" layout)Choose the look of the Wishlist button when the product has already been added to a wishlistChoose where to show "Add to wishlist" button or link in WooCommerce products' loop. <span class="addon">Copy this shortcode <span class="code"><code>[yith_wcwl_add_to_wishlist]</code></span> and paste it where you want to show the "Add to wishlist" link or button</span>Choose where to show "Add to wishlist" button or link on the product page. <span class="addon">Copy this shortcode <span class="code"><code>[yith_wcwl_add_to_wishlist]</code></span> and paste it where you want to show the "Add to wishlist" link or button</span>Choose whether to paginate items in the wishlist or show them allChoose whether to show a textual "Add to cart" link or a buttonCustom CSSCustomer wishlistsDate on which the product was added to the wishlistDefault wishlist nameDo not paginateEdit titleEmailEmail share button custom iconEmail share button iconEmail share button styleEnable AJAX loadingEnable slider in wishlistEnable the "Add to wishlist" feature in WooCommerce products' loopEnable this option to let users share their wishlist on social mediaEnter a name for the default wishlist. This is the wishlist that will be automatically generated for all users if they do not create any custom oneEnter a text for "Add to wishlist" buttonEnter a text for the "Add to cart" buttonEnter a text for the "Browse wishlist" link on the product pageEnter custom CSS to be applied to Wishlist elements (optional)Enter the text for the message displayed when the user views a product that is already in the wishlistEnter the text of the message displayed when the user adds a product to the wishlistError. Unable to remove the product from the wishlist.FacebookFacebook share button custom iconFacebook share button iconFacebook share button styleFree!General SettingsGeneral settingsHighlight colorID of the product to add to the wishlist (leave empty to use the global product)ID of the wishlist to show (e.g. K6EOWXB888ZD)Icon for the button (use any FontAwesome valid class, or leave empty to use the default settings)Icon to remove the product from the wishlist - to the left of the productIf you want to take advantage of this feature, you could consider purchasing the %s.In StockIn order to use this integration you have to install and activate YITH WooCommerce Frequently Bought Together. <a href="%s">Learn more</a>In wishlist table showInvalid wishlist item.Invalid wishlist.It will be used to pin the wishlist on Pinterest.Items addedLoop options will be visible on Shop page, category pages, product shortcodes, products sliders, and all the other places where the WooCommerce products' loop is usedLoop settingsMembers of our team have access to the information you provide us with. For example, both Administrators and Shop Managers can access:MoveMove to another list &rsaquo;My wishlist on %sNo products added to the wishlistNumber of items to show per pageOn top of the imageOnly people with a link to this list can see itOnly you can see this listOur team members have access to this information to offer you better deals for the products you love.Out of stockPaginatePick a page as the main Wishlist page; make sure you add the <span class="code"><code>[yith_wcwl_wishlist]</code></span> shortcode into the page contentPin on PinterestPinterestPinterest share button custom iconPinterest share button iconPinterest share button stylePlease, make sure to enter a valid titlePosition of "Add to wishlist" in loopPosition of "Add to wishlist" on product pagePremium VersionPrice:Primary button stylePrivateProduct added to cart successfullyProduct added!Product nameProduct page settingsProduct priceProduct stock (show if the product is available or not)Product successfully removed.Product variations selected by the user (example: size or color)Products you’ve added to the wishlist: we’ll use this to show you and other users your favourite products, and to create targeted email campaigns.PublicQuantityQuantity:Redirect to cartRedirect users to the cart page when they add a product to the cart from the wishlist pageRemoveRemove from listRemove from wishlistRemove if added to the cartRemove the product from the wishlist after it has been added to the cartRemove this productRemoved wishlist %s.Same used for Add to wishlistSecondary button styleSelect an icon for the "Add to cart" button (optional)Select an icon for the "Add to wishlist" button (optional)Select an icon for the "Added to wishlist" button (optional)Select an icon for the Email share buttonSelect an icon for the Facebook share buttonSelect an icon for the Pinterest share buttonSelect an icon for the Twitter share buttonSelect an icon for the WhatsApp share buttonSet the radius for the "Add to cart" buttonShare button text colorShare by URLShare by emailShare on FacebookShare on WhatsAppShare on social mediaShare on:Share via emailShare wishlistSharedSharing titleShow "Add to wishlist" in loopShow "Remove from list" linkShow "Share URL" field on wishlist pageShow "View wishlist" linkSocial image URLSocial textStock statusStock:Style & Color customizationStyle & color customizationStyle of "Add to cart"Style of "Add to wishlist"TextText HoverText customizationText hoverTextual (anchor)The item cannot be added to this wishlistThe product is already in your wishlist!TitleTokenTweet on TwitterTwitterTwitter share button custom iconTwitter share button iconTwitter share button styleType the message you want to publish when you share your wishlist on Twitter and PinterestURL of the wishlist page (leave empty to use the default settings)Unit priceUpdateUpload an icon you'd like to use for "Add to wishlist" button (suggested 32px x 32px)Upload an icon you'd like to use for Facebook share button (suggested 32px x 32px)Upload an icon you'd like to use for Pinterest share button (suggested 32px x 32px)Upload an icon you'd like to use for Twitter share button (suggested 32px x 32px)Upload an icon you'd like to use for WhatsApp share button (suggested 32px x 32px)Upload an icon you'd like to use for the "Add to cart" button (suggested 32px x 32px)Upload an icon you'd like to use for the Email share button (suggested 32px x 32px)Use shortcodeView &rsaquo;VisibilityWe are sorry, but this feature is available only if cookies on your browser are enabled.We’ll also use cookies to keep track of wishlist contents while you’re browsing our site.WhatsAppWhatsApp share button custom iconWhatsApp share button iconWhatsApp share button styleWhatsappWhile you visit our site, we’ll track:WishlistWishlist %s has been retained.Wishlist Detail PageWishlist URLWishlist details, such as products added, date of addition, name and privacy settings of your wishlistsWishlist pageWishlist page optionsWishlist table styleWishlist title used for sharing (only used on Twitter and Pinterest)WishlistsWishlists you’ve created: we’ll keep track of the wishlists you create, and make them visible to the store staffYITH WooCommerce Frequently Bought Together IntegrationYou and %s userYou and %d usersYou're the firstcopyhas this item in wishlisthave this item in wishlisthave this item in wishlistorthis wishlist link and share it anywhere)to add this item in wishlistProject-Id-Version: YITH WooCommerce Wishlist
Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/yith-woocommerce-wishlist
POT-Creation-Date: 2021-11-11 13:53:53+00:00
PO-Revision-Date: 2020-10-16 14:06+0200
Last-Translator: 
Language-Team: Your Inspiration Themes <plugins@yithemes.com>
Language: nl_NL
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Generator: Poedit 2.4.1
X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;_n:1,2;__ngettext:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2
X-Poedit-Basepath: .
Plural-Forms: nplurals=2; plural=(n != 1);
X-Poedit-SourceCharset: UTF-8
X-Poedit-SearchPath-0: ..
X-Poedit-SearchPathExcluded-0: ../plugin-fw
"Toevoegen aan winkelwagen" knop stijl"Toevoegen aan winkelwagen" aangepast icoon"Toevoegen aan winkelwagen" icoon"Toevoegen aan winkelwagen" tekst"Toevoegen aan verlanglijst" knop stijl"Toevoegen aan verlanglijst" aangepast icoon"Toevoegen aan verlanglijst" icoon"Toevoegen aan verlanglijst" tekst"Toevoegen aan verlanglijst" aangepast icoon"Toevoegen aan verlanglijst" icoon"Browse verlanglijst" label (laat leeg om de standaardinstellingen te gebruiken)"Browse wishlist" tekst"Product toegevoegd aan verlanglijst" label (laat leeg om de standaardinstellingen te gebruiken)"Product toegevoegd" tekst"Product al toegevoegd aan verlanglijst" label (laat leeg om standaardinstellingen te gebruiken)"Product is al toegevoegd aan verlanglijst" tekst%d gebruiker%d gebruikers(U kunt nuAllen toevoegen aan winkelwagenToevoegen aan winkelwagenToevoegen aan winkelwagen optie voor ieder productToevoegen aan verlanglijstToevoegen aan verlanglijst optiesToegevoegd op:Toegevoegd op: %sAanvullende CSS klassen voor de knop (laat leeg om de standaardinstellingen te gebruiken)Na "Toevoegen aan winkelwagen"Na de "Toevoegen aan winkelwagen" knopNa samenvattingNa ThumbnailsAl uw verlanglijstenLaat uw klanten een lijst met producten die zij willen kopen in uw e-commerce, maken en delen.Er is een fout opgetreden tijdens het toevoegen van het product aan de verlanglijst.Iedereen kan zoeken naar deze verlanglijst en deze lijst zienToepassenDeze actie toepassen op alle geselecteerde items:SchikkenAchtergrondAchtergrond zwevenAchtergrond zwevenVoor de "Toevoegen aan winkelwagen" knopRandRand zwevenRand RadiusBrowse verlanglijstKnop label (laat leeg om de standaardinstellingen te gebruiken)Knop om het product uit de verlanglijst te verwijderen - aan de rechterkant van het productKnop met aangepaste stijlKnop met stijl themaKies kleuren voor Facebook delen knopKies kleuren voor Pinterest delen knopKies kleuren voor Twitter delen knopKies kleuren voor de WhatsApp delen knopKies tekst kleur voor delen knoppenKies de kleuren van de "Toevoegen aan winkelwagen" knop bij erover zweven met muisKies de kleuren van de "Toevoegen aan verlanglijst" knopKies de kleuren voor de "Toevoegen aan verlanglijst" knop bij erover zweven met muisKies kleuren voor e-mail delen knopKies de kleuren voor de eerste knop bij erover zweven met muist <br/><small>Deze stijl wordt toegepast op de "Bewerk titel" knop in de verlanglijst weergave, "Wijzigingen indienen" knop in de Beheren weergave en "Verlanglijst zoeken" knop in de Zoeken weergave</small>Kies de kleuren voor de eerste knop <br/><small>Deze stijl wordt toegepast op de "Bewerk titel" knop in de verlanglijst weergave, "Wijzigingen indienen" knop in de Beheren weergave en "Verlanglijst zoeken" knop in de Zoeken weergave</small>Bepaal of u de tekstuele "Toevoegen aan verlanglijst" link of knop wilt weergevenBepaal de radius voor de "Toevoegen aan verlanglijst" knopKies een kleur voor alle secties met achtergrond<br/><small>Deze kleur zal worden gebruikt als achtergrond voor het verlanglijst tabelhoofd en footer (bij instellen op "Traditionele" lay-out), en voor verschillende formulieren in verlanglijst weergaven</small>Kies de kleuren van de "Toevoegen aan winkelwagen" knopKies de kleuren van de verlanglijst tabel (bij instellen op "Traditionele" lay-out)Kies de look van de verlanglijst knop, wanneer het product al is toegevoegd aan de verlanglijstBepaal waar u de "Toevoegen aan verlanglijst" knop of link wilt weergeven in WooCommerce product loop. <span class="addon">Kopieer deze shortcode <span class="code"><code>[yith_wcwl_add_to_wishlist]</code></span> en plak het waar u wilt om de "Toevoegen aan verlanglijst" link of knop wilt weergeven</span>Bepaal waar u de "Toevoegen aan verlanglijst" knop of link wilt weergeven op de product pagina. <span class="addon">Kopieer deze shortcode <span class="code"><code>[yith_wcwl_add_to_wishlist]</code></span> en plak het waar u wilt om de "Toevoegen aan verlanglijst" link of knop wilt weergeven</span>Kies of items in de verlanglijst moeten worden gepagineerd of laat ze allemaal zienBepaal of u een tekstuele "Toevoegen aan winkelwagen" link of knop wilt weergevenCustom CSSVerlanglijsten klantDatum waarop het product is toegevoegd aan de verlanglijstStandaard naam verlanglijstItems niet paginerenBewerk titelE-mailAangepaste icoon voor e-mail delen knopIcoon voor e-mail delen knopStijl voor e-mail delen knopAJAX loading inschakelenSlider in verlanglijst  inschakelenDe "Toevoegen aan verlanglijst" optie inschakelen in WooCommerce product loopDeze optie inschakelen om gebruikers hun verlanglijst te laten delen op social mediaNaam invoeren voor de standaard verlanglijst. Dit is de verlanglijst die automatisch wordt gegenereerd voor alle gebruikers, als zij geen aangepaste lijst aanmaken.Tekst invoeren voor "Toevoegen aan verlanglijst" knopTekst invoeren voor de "Toevoegen aan winkelwagen" knopTekst invoeren voor de "Browse verlanglijst" link op de product paginaAangepaste CSS invoeren om toe te passen op de verlanglijst elementen (optioneel)Tekst invoeren voor het bericht dat wordt weergegeven wanneer een gebruiker een product ziet dat al is toegevoegd aan de verlanglijstTekst invoeren voor het bericht dat wordt weergegeven wanneer een gebruiker een product toevoegt aan de verlanglijstFout. Het product kon niet van de verlanglijst worden verwijderd.FacebookAangepast icoon voor Facebook delen knopIcoon voor Facebook delen knopStijl voor Facebook delen knopGratis!Algemene InstellingenAlgemene instellingenHighlight kleurID van het product om toe te voegen aan verlanglijst (laat leeg om een algemeen product te gebruiken)Verlanglijst ID om weer te geven (vb. K6EOWXB888ZD)Icoon voor de knop (Gebruik een FontAwesome valid class, of laat het leeg om de standaardinstellingen te gebruiken)Icoon om het product uit de verlanglijst te verwijderen - aan de rechterkant van het productAls u wilt profiteren van deze optie, kunt u overwegen de %s te kopen.Op voorraadOm deze integratie te gebriuken moet u YITH WooCommerce Frequently Bought Together instaleren en activeren <a href="%s">Meer informatie</a>Toon in verlanglijst tabelOngeldig verlanglijst item.Ongeldige verlanglijst.Zal worden gebruikt om de verlanglijst te pinnen op Pinterest.Items toegevoegdLoop opties zullen zichtbaar blijven in de winkelpagina, categorie pagina, product shortcodes, product sliders, en alle andere plaatsen waar de WooCommerce product loop wordt gebruiktLoop instellingenOnze teamleden hebben toegang tot de informatie die u met ons deelt. Bijvoorbeeld. zowel administrateurs en winkel managers hebben toegang tot:VerplaatsenVerplaatsen naar een andere lijst &rsaquo;Mijn verlanglijst op %sGeen producten toegevoegd aan de verlanglijstAantal items om weer te geven per paginaBoven de afbeeldingAlleen mensen met een link naar deze lijst kunnen hem zienAlleen u kunt deze lijst zienOnze teamleden hebben toegang tot deze informatie om u betere deals te bieden voor de producten waar u van houdt.Niet op voorraadPagineringSelecteer een pagina als de hoofd verlanglijst pagina; Let op dat u de  <span class="code"><code>[yith_wcwl_wishlist]</code></span> shortcode toevoegt in de pagina inhoudPin op PinterestPinterestAangepast icoon voor Pinterest delen knopIcoon voor Pinterest delen knopStijl voor Pinterest delen knoplet op dat u een geldige titel invoertPositie van "Toevoegen aan verlanglijst" in loopPositie van "Toevoegen aan verlanglijst" op product paginaPremium versiePrijs:Eerste knop stijlPriveProduct succesvol toegevoegd aan winkelwagenProduct toegevoegd!ProductnaamProduct pagina instellingenProductprijsProduct voorraad (toon of een product beschikbaar is of niet)Product succesvol verwijderd.Product variaties geselecteerd door de gebruiker (voorbeeld: maat of kleur)Producten die u aan de verlanglijst hebt toegevoegd: we gebruiken dit om u en andere gebruikers onze favoriete producten te laten zien en om gerichte e-mailcampagnes te maken.OpenbaarHoeveelheidHoeveelheid:Doorverwijzen naar winkelwagenGebruikers doorsturen naar de winkelwagen pagina, wanneer zij een product van de verlanglijst toevoegen aan winkelwagenVerwijderenVerwijderen van lijstVerwijderen van verlanglijstVerwijder als het toegevoegd is aan winkelwagenProduct verwijderen van verlanglijst nadat het is toegevoegd aan de winkelwagenVerwijder dit productVerwijderde verlanglijst %s.Hetzelfde gebruikt voor Toevoegen aan verlanglijstTweede knop stijlSelecteer een icoon voor de "Toevoegen aan winkelwagen" knop (optioneel)Selecteer een icoon voor de "Toevoegen aan verlanglijst" knop (optioneel)Selecteer een icoon voor de "Toevoegen aan verlanglijst" knop (optioneel)Selecteer een icoon voor de e-mail delen knopSelecteer een icoon voor de Facebook delen knopSelecteer een icoon voor de Pinterest delen knopSelecteer een icoon voor de Twitter delen knopSelecteer een icoon voor de WhatsApp delen knopBepaal de radius voor de "Toevoegen aan winkelwagen" knopDelen knop tekst kleurDelen via URLDelen via e-mailDelen op FacebookDelen via WhatsAppDelen op social mediaDelen op:Delen via e-mailVerlanglijst delenGedeeldDelen titelToon "Toevoegen aan verlanglijst" in loopToon "Van lijst verwijderen" linkToon "URL delen" veld op verlanglijst paginaToon "Bekijk verlanglijst" linkSocial afbeelding URLSocial tekstVoorraad statusVoorraad:Stijl & kleur aanpassingStijl & kleur aanpassingStijl van "Toevoegen aan winkelwagen"Stijl van "Toevoegen aan verlanglijst"vTekstTekst zwevenTekst aanpassenTekst zwevenTekstueel (anker)Het item kan niet worden toegevoegd aan deze verlanglijstHet product is al toegevoegd aan uw verlanglijst!TitelTokenTweet op TwitterTwitterAangepast icoon voor Twitter delen knopIcoon voor Twitter delen knopStijl voor Twitter delen knopTyp het bericht dat u wilt publiceren wanneer u uw verlanglijst deelt op Twitter en PinterestURL van de verlanglijst pagina (laat leeg om de standaardinstellingen te gebruiken)EenheidsprijsBijwerkenUpload een icoon die je wilt gebruiken voor de "Toevoegen aan verlanglijst" knop (aanbevolen 32 x 32px)Upload een icoon dat u wilt gebruiken voor de Facebook delen knop (aanbevolen 32 x 32px)Upload een icoon dat u wilt gebruiken voor de Pinterest delen knop (aanbevolen 32 x 32px)Upload een icoon dat u wilt gebruiken voor de Twitter delen knop (aanbevolen 32 x 32px)Upload een icoon dat u wilt gebruiken voor de WhatsApp delen knop (aanbevolen 32 x 32px)Een icoon uploaden dat u wilt gebruiken voor de "Toevoegen aan winkelwagen" knop (aanbevolen 32 x 32px)Upload een icoon dat u wilt gebruiken voor de e-mail delen knop (aanbevolen 32 x 32px)Gebruik shortcodeBekijk &rsaquo;ZichtbaarheidSorry, deze optie is alleen beschikbaar als cookies in uw browser zijn ingeschakeld.We zullen ook cookies gebruiken om de inhoud van uw verlanglijst bij te houden terwijl u onze site bezoekt.WhatsAppAangepast icoon voor WhatsApp delen knopIcoon voor WhatsApp delen knopStijl voor WhatsApp delen knopWhatsappTerwijl u onze site bezoekt, volgen wij:VerlanglijstVerlanglijst%s is bewaard gebleven.Verlanglijst detailpaginaURL verlanglijstVerlanglijstdetails, zoals toegevoegde producten, datum van toevoeging, naam en privacy-instellingen van uw verlanglijstVerlanglijst paginaVerlanglijst pagina optiesTabelstijl verlanglijstVerlanglijst titel die wordt gebruikt voor delen (wordt alleen gebruikt op Twitter en Pinterest)VerlanglijstVerlanglijst die u heeft gemaakt: we houden de verlanglijst bij die u heeft gemaakt, en maken deze zichtbaar voor het winkelpersoneelYITH WooCommerce Frequently Bought Together IntegratieU en %s gebruikerU en %s gebruikersU bent de eerstede verlanglijst link kopiërenheeft dit item in de verlanglijsthebben dit item in de verlanglijsthebben dit item in de verlanglijstofen overal delen)dit item toevoegen aan verlanglijstPK`x1\.��D
D
,languages/yith-woocommerce-wishlist-de_DE.monu�[�����.�=���"@
Tb
s~
�
���6��� 2	CM]et�������	*6;AR
Zhq	�7����	�	,
-
E
^
t
�
�
�
�
 �
A�

 +	DNZs	�������	�),>W
kv~���������7
'-,#).( "&%	*
+!
$"Browse wishlist" text"Product added" text"Product already in wishlist" textAfter "Add to cart"After summaryAfter thumbnailsBackgroundBorderCustom CSSEdit titleEmailEnable slider in wishlistError. Unable to remove the product from the wishlist.FacebookFree!General SettingsIn StockMoveMy wishlist on %sPin on PinterestPinterestPremium VersionPrivateProduct added!Product successfully removed.PublicRedirect to cartRemoveRemove if added to the cartRemove this productRemoved wishlist %s.Share on FacebookShare on:SharedSocial image URLSocial textTextTitleTweet on TwitterTwitterUse shortcodeWishlistWishlist %s has been retained.WishlistsYITH WooCommerce Frequently Bought Together IntegrationProject-Id-Version: YITH WooCommerce Wishlist
Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/yith-woocommerce-wishlist
POT-Creation-Date: 2021-11-11 13:53:53+00:00
PO-Revision-Date: 2020-10-16 14:04+0200
Last-Translator: 
Language-Team: Your Inspiration Themes <plugins@yithemes.com>
Language: de_DE
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Generator: Poedit 2.4.1
X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;_n:1,2;__ngettext:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2
X-Poedit-Basepath: .
Plural-Forms: nplurals=2; plural=(n != 1);
X-Poedit-SourceCharset: UTF-8
X-Poedit-SearchPath-0: ..
X-Poedit-SearchPathExcluded-0: ../plugin-fw
"Wunschliste durchsuchen" TextArtikel hinzugefügt TextArtikel ist bereits auf der Wunschliste TextNach "in den Warenkorb"Nach der ZusammenfassungNach dem VorschaubildHintergrundRandBenutzerdefiniertes CSSTitel bearbeitenEMailSlider in Wunschliste aktivierenFehler: Artikel konnte nicht von der Wunschliste entfernt werden.FacebookKostenlos!Allgemeine EinstellungenAuf LagerVerschiebenMeine Wunschliste bei %sAuf Pinterest teilenPinterestPremium VersionPrivatArtikel hinzugefügt!Artikel entfernt.ÖffentlichZum Warenkorb weiterleitenEntfernenEntfernen wenn zum Warenkorb hinzugefügtArtikel entfernenMeine Wunschliste bei %sAuf Facebook teilenTeile auf:geteiltSocial Bild URLSocial TextTextTitel:Auf Twitter teilenTwitterBenutze ShortcodesWunschlisteWunschliste "Angebot anfragen"WunschlistenYITH WooCommerce Frequently Bought Together integrationPK`x1\1��[�[�,languages/yith-woocommerce-wishlist-es_ES.ponu�[���# Copyright (C) 2019 YITH WooCommerce Wishlist
# This file is distributed under the same license as the YITH WooCommerce Wishlist package.
msgid ""
msgstr ""
"Project-Id-Version: YITH WooCommerce Wishlist\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/yith-woocommerce-"
"wishlist\n"
"POT-Creation-Date: 2021-11-11 13:53:53+00:00\n"
"PO-Revision-Date: 2020-10-16 14:04+0200\n"
"Last-Translator: Nicola Mustone <mail@nicolamustone.it>\n"
"Language-Team: Your Inspiration Themes <plugins@yithemes.com>\n"
"Language: es_ES\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 2.4.1\n"
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;_n:1,2;__ngettext:1,2;"
"__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;"
"_nx_noop:4c,1,2\n"
"X-Poedit-Basepath: .\n"
"Plural-Forms: nplurals=2; plural=n!=1;\n"
"X-Poedit-SourceCharset: UTF-8\n"
"X-Poedit-SearchPath-0: ..\n"
"X-Poedit-SearchPathExcluded-0: ../plugin-fw\n"

#: includes/class-yith-wcwl-admin.php:126
#, fuzzy
msgid "Wishlist Page"
msgstr "Página de Lista de deseos"

#: includes/class-yith-wcwl-admin.php:148
msgid "General settings"
msgstr "Ajustes generales"

#: includes/class-yith-wcwl-admin.php:149
msgid "Add to wishlist options"
msgstr "Opciones de Añadir a la lista de deseos"

#: includes/class-yith-wcwl-admin.php:150
msgid "Wishlist page options"
msgstr "Opciones de la página Lista de deseos"

#: includes/class-yith-wcwl-admin.php:151
msgid "Premium Version"
msgstr "Versión premium"

#: includes/class-yith-wcwl-admin.php:249
#: includes/class-yith-wcwl-install.php:342
msgid "Wishlist"
msgstr "Wishlist"

#: includes/class-yith-wcwl-admin.php:251
msgid ""
"Allows your customers to create and share lists of products that they want "
"to purchase on your e-commerce."
msgstr ""
"Permitir a tus clientes crear y compartir productos que quieran comprar en "
"tu comercio electrónico."

#: includes/class-yith-wcwl-ajax-handler.php:75
#: templates/add-to-wishlist-remove.php:59
msgid "View &rsaquo;"
msgstr "Ver &rsaquo;"

#: includes/class-yith-wcwl-ajax-handler.php:76
#: templates/add-to-wishlist-remove.php:58
msgid "or"
msgstr "o"

#: includes/class-yith-wcwl-ajax-handler.php:77
msgid "Close"
msgstr ""

#: includes/class-yith-wcwl-ajax-handler.php:155
#: includes/class-yith-wcwl-ajax-handler.php:195
msgid "Product successfully removed."
msgstr "Producto eliminado satisfactoriamente."

#: includes/class-yith-wcwl-form-handler.php:156
msgid "Please, make sure to enter a valid title"
msgstr "Por favor, asegúrate de haber introducido un título válido"

#: includes/class-yith-wcwl-frontend.php:461
msgid ""
"We are sorry, but this feature is available only if cookies on your browser "
"are enabled."
msgstr ""
"Lo siento, pero esta característica solo está disponible si las cookies de "
"tu navegador están habilitadas."

#: includes/class-yith-wcwl-frontend.php:462
msgid "Product added to cart successfully"
msgstr "Producto añadido al carrito con éxito"

#: includes/class-yith-wcwl-frontend.php:725
#: includes/class-yith-wcwl-shortcode.php:239
#: plugin-options/wishlist_page-options.php:240
#: templates/wishlist-view-footer-mobile.php:46
#: templates/wishlist-view-footer.php:46
msgid "Add to cart"
msgstr "Añadir al carrito"

#: includes/class-yith-wcwl-privacy.php:52
msgid "While you visit our site, we’ll track:"
msgstr "Mientras visitas nuestro sitio, nosotros rastrearemos:"

#: includes/class-yith-wcwl-privacy.php:54
msgid ""
"Products you’ve added to the wishlist: we’ll use this to show you and other "
"users your favourite products, and to create targeted email campaigns."
msgstr ""
"Productos que has agregado a la lista de deseos: lo usaremos para mostrarte "
"a ti y a otros usuarios tus productos favoritos y para crear campañas de "
"correo electrónico específicas."

#: includes/class-yith-wcwl-privacy.php:55
msgid ""
"Wishlists you’ve created: we’ll keep track of the wishlists you create, and "
"make them visible to the store staff"
msgstr ""
"Listas de deseos que has creado: recopilaremos las listas de deseos que "
"crees y las haremos visibles al personal de la tienda"

#: includes/class-yith-wcwl-privacy.php:57
msgid ""
"We’ll also use cookies to keep track of wishlist contents while you’re "
"browsing our site."
msgstr ""
"También usaremos cookies para realizar un seguimiento del contenido de la "
"lista de deseos mientras navegas por nuestro sitio."

#: includes/class-yith-wcwl-privacy.php:60
msgid ""
"Members of our team have access to the information you provide us with. For "
"example, both Administrators and Shop Managers can access:"
msgstr ""
"Miembros de nuestro equipo tienen acceso a la información que nos "
"proporcionas. Por ejemplo, tanto los administradores como los gerentes de "
"tienda pueden acceder a:"

#: includes/class-yith-wcwl-privacy.php:62
msgid ""
"Wishlist details, such as products added, date of addition, name and privacy "
"settings of your wishlists"
msgstr ""
"Detalles de la lista de deseos, como productos agregados, fecha de adición, "
"nombre y configuración de privacidad de tus listas de deseos"

#: includes/class-yith-wcwl-privacy.php:64
msgid ""
"Our team members have access to this information to offer you better deals "
"for the products you love."
msgstr ""
"Los miembros de nuestro equipo tienen acceso a esta información para "
"ofrecerte mejores ofertas para los productos que te gusten."

#: includes/class-yith-wcwl-privacy.php:84
#: includes/class-yith-wcwl-privacy.php:100
msgid "Customer wishlists"
msgstr "Listas de deseos del cliente"

#: includes/class-yith-wcwl-privacy.php:137 plugin-options/lists-options.php:25
#: plugin-options/lists-options.php:32
msgid "Wishlists"
msgstr "Listas de deseos"

#. Translators: %s Order number.
#: includes/class-yith-wcwl-privacy.php:199
msgid "Removed wishlist %s."
msgstr "Eliminada lista de deseos %s."

#. Translators: %s Order number.
#: includes/class-yith-wcwl-privacy.php:203
msgid "Wishlist %s has been retained."
msgstr "La lista de deseos %s ha sido retenida."

#: includes/class-yith-wcwl-privacy.php:227
msgid "Token"
msgstr "Token"

#: includes/class-yith-wcwl-privacy.php:228
msgid "Wishlist URL"
msgstr "URL de la lista de deseos"

#: includes/class-yith-wcwl-privacy.php:229
msgid "Title"
msgstr "Título"

#: includes/class-yith-wcwl-privacy.php:231
msgid "Visibility"
msgstr "Visibilidad"

#: includes/class-yith-wcwl-privacy.php:232
msgid "Items added"
msgstr "Artículos añadidos"

#: includes/class-yith-wcwl-shortcode.php:58
msgid ""
"ID of the product to add to the wishlist (leave empty to use the global "
"product)"
msgstr ""
"ID del producto a añadir a la lista de deseos (déjalo vacío para usar el "
"producto global)"

#: includes/class-yith-wcwl-shortcode.php:63
msgid "URL of the wishlist page (leave empty to use the default settings)"
msgstr ""
"URL de la página de lista de deseos (déjalo vacío para usar los ajustes "
"predeterminados)"

#: includes/class-yith-wcwl-shortcode.php:68
msgid "Button label (leave empty to use the default settings)"
msgstr ""
"Etiqueta del botón (déjalo vacío para usar los ajustes predeterminados)"

#: includes/class-yith-wcwl-shortcode.php:73
msgid "\"Browse wishlist\" label (leave empty to use the default settings)"
msgstr ""
"Etiqueta ''Echar un vistazo a la lista de deseos'' (déjalo vacío para usar "
"los ajustes predeterminados)"

#: includes/class-yith-wcwl-shortcode.php:78
msgid ""
"\"Product already in wishlist\" label (leave empty to use the default "
"settings)"
msgstr ""
"Etiqueta ''El producto ya está en la lista de deseos'' (déjalo vacío para "
"usar los ajustes predeterminados)"

#: includes/class-yith-wcwl-shortcode.php:83
msgid ""
"\"Product added to wishlist\" label (leave empty to use the default settings)"
msgstr ""
"Etiqueta ''Producto añadido a la lista de deseos'' (déjalo vacío para usar "
"los ajustes predeterminados)"

#: includes/class-yith-wcwl-shortcode.php:88
msgid ""
"Icon for the button (use any FontAwesome valid class, or leave empty to use "
"the default settings)"
msgstr ""
"Icono para el botón (utiliza cualquier clase válida de FontAwesome, o déjalo "
"vacío para usar los ajustes predeterminados)"

#: includes/class-yith-wcwl-shortcode.php:93
msgid ""
"Additional CSS classes for the button (leave empty to use the default "
"settings)"
msgstr ""
"Botón para clases CSS adicionales (déjalo vacío para usar los ajustes "
"predeterminados)"

#: includes/class-yith-wcwl-shortcode.php:107
msgid "Choose whether to paginate items in the wishlist or show them all"
msgstr ""
"Elige si paginar los artículos en la lista de deseos o mostrarlos todos"

#: includes/class-yith-wcwl-shortcode.php:110
#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:118
msgid "Paginate"
msgstr "Paginar"

#: includes/class-yith-wcwl-shortcode.php:111
#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:119
msgid "Do not paginate"
msgstr "No paginar"

#: includes/class-yith-wcwl-shortcode.php:116
msgid "Number of items to show per page"
msgstr "Número de artículos a mostrar por página"

#: includes/class-yith-wcwl-shortcode.php:121
msgid "ID of the wishlist to show (e.g. K6EOWXB888ZD)"
msgstr "ID de la lista de deseos a mostrar (ej: K6EOWXB888ZD)"

#: includes/class-yith-wcwl-shortcode.php:414
msgid "Share on:"
msgstr "Compartir en:"

#: includes/class-yith-wcwl-shortcode.php:438
#: plugin-options/wishlist_page-options.php:138
msgid "Share on Facebook"
msgstr "Compartir en Facebook"

#: includes/class-yith-wcwl-shortcode.php:455
#: plugin-options/wishlist_page-options.php:147
msgid "Tweet on Twitter"
msgstr "Twittear en Twitter"

#: includes/class-yith-wcwl-shortcode.php:473
#: plugin-options/wishlist_page-options.php:156
msgid "Pin on Pinterest"
msgstr "Pinear en Pinterest"

#: includes/class-yith-wcwl-shortcode.php:487
msgid "Share via email"
msgstr "Compartir por correo electrónico"

#: includes/class-yith-wcwl-shortcode.php:510
#: plugin-options/wishlist_page-options.php:174
msgid "Share on WhatsApp"
msgstr "Compartir en WhatsApp"

#: includes/class-yith-wcwl-shortcode.php:621
msgid "Remove from list"
msgstr "Eliminar de la lista"

#: includes/class-yith-wcwl-wishlist-item.php:189
msgid "Free!"
msgstr "¡Gratis!"

#: includes/class-yith-wcwl.php:164
msgid "The item cannot be added to this wishlist"
msgstr "El artículo no puede ser añadido a la lista de deseos"

#: includes/class-yith-wcwl.php:168 includes/class-yith-wcwl.php:174
msgid "An error occurred while adding the products to the wishlist."
msgstr ""
"Ha ocurrido un error mientras se añadían los productos a la lista de deseos."

#: includes/class-yith-wcwl.php:235 includes/class-yith-wcwl.php:241
msgid "Error. Unable to remove the product from the wishlist."
msgstr "Error. No hemos podido eliminar el producto de la lista de deseos."

#: includes/data-stores/class-yith-wcwl-wishlist-data-store.php:152
#: includes/data-stores/class-yith-wcwl-wishlist-data-store.php:174
msgid "Invalid wishlist."
msgstr "Lista de deseos no válida."

#: includes/data-stores/class-yith-wcwl-wishlist-item-data-store.php:119
msgid "Invalid wishlist item."
msgstr "Artículo de lista de deseos no válido."

#. translators: 1. Number of users.
#: includes/functions-yith-wcwl.php:249
msgid "%d user"
msgid_plural "%d users"
msgstr[0] "%d usuario"
msgstr[1] "%d usuarios"

#: includes/functions-yith-wcwl.php:250
msgid "has this item in wishlist"
msgid_plural "have this item in wishlist"
msgstr[0] "tiene este artículo en la lista de deseos"
msgstr[1] "tiene este artículo en la lista de deseos"

#: includes/functions-yith-wcwl.php:252
msgid "You're the first"
msgstr "Eres el primero"

#: includes/functions-yith-wcwl.php:253
msgid "to add this item in wishlist"
msgstr "en añadir este artículo a la lista de deseos"

#. translators: 1. Count of users when many, or "another" when only one.
#: includes/functions-yith-wcwl.php:257
msgid "You and %s user"
msgid_plural "You and %d users"
msgstr[0] "Tú y el usuario %s"
msgstr[1] "Tú y los usuarios %d"

#: includes/functions-yith-wcwl.php:257
msgid "another"
msgstr ""

#: includes/functions-yith-wcwl.php:258
msgid "have this item in wishlist"
msgstr "tienen este artículo en la lista de deseos"

#: includes/functions-yith-wcwl.php:425
msgid "None"
msgstr ""

#: includes/functions-yith-wcwl.php:426
#, fuzzy
msgid "Custom"
msgstr "Personalizar CSS"

#: includes/functions-yith-wcwl.php:447
msgid "Shared"
msgstr "Compartidas"

#: includes/functions-yith-wcwl.php:451
msgid "Only people with a link to this list can see it"
msgstr "Solo gente con un enlace a esta lista puede verla"

#: includes/functions-yith-wcwl.php:457
msgid "Private"
msgstr "Privada"

#: includes/functions-yith-wcwl.php:461
msgid "Only you can see this list"
msgstr "Solo tú puedes ver esta lista"

#: includes/functions-yith-wcwl.php:467
msgid "Public"
msgstr "Pública"

#: includes/functions-yith-wcwl.php:471
msgid "Anyone can search for and see this list"
msgstr "Cualquiera puede buscar y ver esta lista"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:118
#: plugin-options/add_to_wishlist-options.php:127
msgid "Add to wishlist"
msgstr "Añadir a la lista de deseos"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:128
#: plugin-options/add_to_wishlist-options.php:143
msgid "Browse wishlist"
msgstr "Echar un vistazo a la lista de deseos"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:138
#, fuzzy
msgid "Product already in wishlist"
msgstr "Texto para \"El producto ya está en la lista de deseos\""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:148
#, fuzzy
msgid "Product added to wishlist"
msgstr "Cuando el producto es añadido a la lista de deseos"

#: init.php:160
msgid "is enabled but not effective. It requires WooCommerce to work."
msgstr ""

#: init.php:176
msgid "You can't activate the free version of"
msgstr ""

#: init.php:176
msgid "while you are using the premium one."
msgstr ""

#: plugin-options/add_to_wishlist-options.php:20
#: plugin-options/settings-options.php:27
msgid "General Settings"
msgstr "Ajustes Generales"

#: plugin-options/add_to_wishlist-options.php:27
#, fuzzy
msgid "After product is added to wishlist"
msgstr "Cuando el producto es añadido a la lista de deseos"

#: plugin-options/add_to_wishlist-options.php:28
msgid ""
"Choose the look of the Wishlist button when the product has already been "
"added to a wishlist"
msgstr ""
"Elige la apariencia del botón Lista de deseos cuando el producto ya ha sido "
"añadido a la lista de deseos"

#: plugin-options/add_to_wishlist-options.php:32
#, fuzzy
msgid "Show \"Add to wishlist\" button"
msgstr "Mostrar el botón ''Añadir a la lista de deseos''"

#: plugin-options/add_to_wishlist-options.php:33
msgid "Show \"View wishlist\" link"
msgstr "Mostrar enlace a ''Ver lista de deseos''"

#: plugin-options/add_to_wishlist-options.php:34
msgid "Show \"Remove from list\" link"
msgstr "Mostrar enlace a ''Eliminar de la lista''"

#: plugin-options/add_to_wishlist-options.php:48
msgid "Loop settings"
msgstr "Ajustes de loop"

#: plugin-options/add_to_wishlist-options.php:50
msgid ""
"Loop options will be visible on Shop page, category pages, product "
"shortcodes, products sliders, and all the other places where the WooCommerce "
"products' loop is used"
msgstr ""
"Las opciones del bucle serán visibles en la página Tienda, en página de "
"categoría, shortcodes de producto, carruseles y todos los demás lugares en "
"los que el bucle de los productos de WooCommerce es usado"

#: plugin-options/add_to_wishlist-options.php:55
msgid "Show \"Add to wishlist\" in loop"
msgstr "Mostrar el bucle ''Añadir a la lista de deseos''"

#: plugin-options/add_to_wishlist-options.php:56
msgid "Enable the \"Add to wishlist\" feature in WooCommerce products' loop"
msgstr ""
"Activar la característica ''Añadir a la lista de deseos'' en el bucle de los "
"productos de WooCommerce"

#: plugin-options/add_to_wishlist-options.php:64
msgid "Position of \"Add to wishlist\" in loop"
msgstr "Posición de ''Añadir a la lista de deseos'' en bucle"

#: plugin-options/add_to_wishlist-options.php:65
msgid ""
"Choose where to show \"Add to wishlist\" button or link in WooCommerce "
"products' loop. <span class=\"addon\">Copy this shortcode <span class=\"code"
"\"><code>[yith_wcwl_add_to_wishlist]</code></span> and paste it where you "
"want to show the \"Add to wishlist\" link or button</span>"
msgstr ""
"Elige donde mostrar el botón o enlace de \"Añadir a la lista de deseos\" en "
"el bucle de los productos de WooCommerce. <span class=\"addon\">Copia este "
"shortcode <span class=\"code\"><code>[yith_wcwl_add_to_wishlist]</code></"
"span> y pégalo donde quieras mostrar el botón o enlace ''Añadir a la lista "
"de deseos''</span>"

#: plugin-options/add_to_wishlist-options.php:72
msgid "On top of the image"
msgstr "En la parte superior de la imagen"

#: plugin-options/add_to_wishlist-options.php:73
msgid "Before \"Add to cart\" button"
msgstr "Antes del botón ''Añadir al carrito''"

#: plugin-options/add_to_wishlist-options.php:74
msgid "After \"Add to cart\" button"
msgstr "Despuésl botón ''Añadir al carrito''"

#: plugin-options/add_to_wishlist-options.php:75
#: plugin-options/add_to_wishlist-options.php:107
msgid "Use shortcode"
msgstr "Usar shortcode"

#: plugin-options/add_to_wishlist-options.php:89
msgid "Product page settings"
msgstr "Ajustes de página de producto"

#: plugin-options/add_to_wishlist-options.php:96
msgid "Position of \"Add to wishlist\" on product page"
msgstr "Posición de ''Añadir a la lista de deseos'' en la página del producto"

#: plugin-options/add_to_wishlist-options.php:97
msgid ""
"Choose where to show \"Add to wishlist\" button or link on the product page. "
"<span class=\"addon\">Copy this shortcode <span class=\"code"
"\"><code>[yith_wcwl_add_to_wishlist]</code></span> and paste it where you "
"want to show the \"Add to wishlist\" link or button</span>"
msgstr ""
"Escoge donde mostrar el botón o enlace ''Añadir a la lista de deseos\"Add to "
"wishlist\" en la página de producto. <span class=\"addon\">Copia este "
"shortcode <span class=\"code\"><code>[yith_wcwl_add_to_wishlist]</code></"
"span> y pégalo donde quieras mostrar el botón o enlace ''Añadir al "
"carrito''</span>"

#: plugin-options/add_to_wishlist-options.php:104
msgid "After \"Add to cart\""
msgstr "Después de \"Añadir al carrito\""

#: plugin-options/add_to_wishlist-options.php:105
msgid "After thumbnails"
msgstr "Después de las miniaturas"

#: plugin-options/add_to_wishlist-options.php:106
msgid "After summary"
msgstr "Después del resumen"

#: plugin-options/add_to_wishlist-options.php:117
#: plugin-options/wishlist_page-options.php:222
msgid "Text customization"
msgstr "Personalización de texto"

#: plugin-options/add_to_wishlist-options.php:124
msgid "\"Add to wishlist\" text"
msgstr "Texto ''Añadir a la lista de deseos''"

#: plugin-options/add_to_wishlist-options.php:125
msgid "Enter a text for \"Add to wishlist\" button"
msgstr "Introduce un texto para el botón ''Añadir a la lista de deseos''"

#: plugin-options/add_to_wishlist-options.php:132
msgid "\"Product added\" text"
msgstr "Texto de \"Producto añadido\""

#: plugin-options/add_to_wishlist-options.php:133
msgid ""
"Enter the text of the message displayed when the user adds a product to the "
"wishlist"
msgstr ""
"Introduce el texto del mensaje mostrado cuando el usuario añade un producto "
"a la lista de deseos"

#: plugin-options/add_to_wishlist-options.php:135
msgid "Product added!"
msgstr "¡Producto añadido!"

#: plugin-options/add_to_wishlist-options.php:140
msgid "\"Browse wishlist\" text"
msgstr "Texto para \"Echar un vistazo a la lista de deseos\""

#: plugin-options/add_to_wishlist-options.php:141
msgid "Enter a text for the \"Browse wishlist\" link on the product page"
msgstr ""
"Introduce el texto para el enlace ''Echas un vistazo a la lista de deseos'' "
"en la página de producto"

#: plugin-options/add_to_wishlist-options.php:148
msgid "\"Product already in wishlist\" text"
msgstr "Texto para \"El producto ya está en la lista de deseos\""

#: plugin-options/add_to_wishlist-options.php:149
msgid ""
"Enter the text for the message displayed when the user views a product that "
"is already in the wishlist"
msgstr ""
"Introduce el texto para el mensaje mostrado cuando el usuario ve un producto "
"que ya está en su lista de deseos"

#: plugin-options/add_to_wishlist-options.php:151
msgid "The product is already in your wishlist!"
msgstr "¡El producto ya está en tu lista de deseos!"

#: plugin-options/add_to_wishlist-options.php:161
msgid "Style & Color customization"
msgstr "Personalización de estilo y color"

#: plugin-options/add_to_wishlist-options.php:168
msgid "Style of \"Add to wishlist\""
msgstr "Estilo del ''Añadir a la lista de deseos''"

#: plugin-options/add_to_wishlist-options.php:169
msgid ""
"Choose if you want to show a textual \"Add to wishlist\" link or a button"
msgstr ""
"Elige si quieres mostrar un enlace textual o un botón de ''Añadir a la lista "
"de deseos''"

#: plugin-options/add_to_wishlist-options.php:172
#: plugin-options/wishlist_page-options.php:261
msgid "Textual (anchor)"
msgstr "Textual (anclaje)"

#: plugin-options/add_to_wishlist-options.php:173
#: plugin-options/wishlist_page-options.php:262
msgid "Button with theme style"
msgstr "Botón con estilo del tema"

#: plugin-options/add_to_wishlist-options.php:174
#: plugin-options/wishlist_page-options.php:263
msgid "Button with custom style"
msgstr "Botón con estilo personalizado"

#: plugin-options/add_to_wishlist-options.php:182
msgid "\"Add to wishlist\" button style"
msgstr "Estilo del botón ''Añadir a la lista de deseos''"

#: plugin-options/add_to_wishlist-options.php:188
msgid "Choose colors for the \"Add to wishlist\" button"
msgstr "Elige los colores para el botón ''Añadir a la lista de deseos''"

#: plugin-options/add_to_wishlist-options.php:190
#: plugin-options/wishlist_page-options.php:279
#: plugin-options/wishlist_page-options.php:368
#: plugin-options/wishlist_page-options.php:417
#: plugin-options/wishlist_page-options.php:465
#: plugin-options/wishlist_page-options.php:552
#: plugin-options/wishlist_page-options.php:592
#: plugin-options/wishlist_page-options.php:632
#: plugin-options/wishlist_page-options.php:672
#: plugin-options/wishlist_page-options.php:712
msgid "Background"
msgstr "Fondo"

#: plugin-options/add_to_wishlist-options.php:195
#: plugin-options/wishlist_page-options.php:284
#: plugin-options/wishlist_page-options.php:373
#: plugin-options/wishlist_page-options.php:422
#: plugin-options/wishlist_page-options.php:470
#: plugin-options/wishlist_page-options.php:507
msgid "Text"
msgstr "Texto"

#: plugin-options/add_to_wishlist-options.php:200
#: plugin-options/wishlist_page-options.php:289
#: plugin-options/wishlist_page-options.php:378
#: plugin-options/wishlist_page-options.php:427
#: plugin-options/wishlist_page-options.php:475
msgid "Border"
msgstr "Borde"

#: plugin-options/add_to_wishlist-options.php:206
msgid "Choose colors for the \"Add to wishlist\" button on hover state"
msgstr ""
"Elige colores para el botón ''Añadir a la lista de deseos'' al pasar el "
"cursor"

#: plugin-options/add_to_wishlist-options.php:208
#: plugin-options/wishlist_page-options.php:297
#: plugin-options/wishlist_page-options.php:386
#: plugin-options/wishlist_page-options.php:435
msgid "Background Hover"
msgstr "Al pasar el cursor por el fondo"

#: plugin-options/add_to_wishlist-options.php:213
#: plugin-options/wishlist_page-options.php:302
#: plugin-options/wishlist_page-options.php:391
#: plugin-options/wishlist_page-options.php:440
msgid "Text Hover"
msgstr "Al pasar el cursor por el texto"

#: plugin-options/add_to_wishlist-options.php:218
#: plugin-options/wishlist_page-options.php:307
#: plugin-options/wishlist_page-options.php:396
#: plugin-options/wishlist_page-options.php:445
msgid "Border Hover"
msgstr "Al pasar el cursor por el borde"

#: plugin-options/add_to_wishlist-options.php:231
#: plugin-options/wishlist_page-options.php:320
msgid "Border radius"
msgstr "Radio del borde"

#: plugin-options/add_to_wishlist-options.php:232
msgid "Choose radius for the \"Add to wishlist\" button"
msgstr "Elige un radio para el botón ''Añadir a la lista de deseos''"

#: plugin-options/add_to_wishlist-options.php:246
msgid "\"Add to wishlist\" icon"
msgstr "Icono de ''Añadir a la lista de deseos''"

#: plugin-options/add_to_wishlist-options.php:247
msgid "Select an icon for the \"Add to wishlist\" button (optional)"
msgstr ""
"Selecciona un icono para el botón ''Añadir a la lista de deseos'' (opcional)"

#: plugin-options/add_to_wishlist-options.php:257
msgid "\"Add to wishlist\" custom icon"
msgstr "Icono personalizado de ''Añadir a la lista de deseos''"

#: plugin-options/add_to_wishlist-options.php:258
#: plugin-options/add_to_wishlist-options.php:282
msgid ""
"Upload an icon you'd like to use for \"Add to wishlist\" button (suggested "
"32px x 32px)"
msgstr ""
"Sube un icono que te gustaría usar para el botón ''Añadir a la lista de "
"deseos'' (sugerencia: 32px x 32px)"

#: plugin-options/add_to_wishlist-options.php:270
msgid "\"Added to wishlist\" icon"
msgstr "Icono de ''Añadido a la lista de deseos''"

#: plugin-options/add_to_wishlist-options.php:271
msgid "Select an icon for the \"Added to wishlist\" button (optional)"
msgstr ""
"Selecciona un icono para el botón ''Añadido a la lista de deseos'' (opcional)"

#: plugin-options/add_to_wishlist-options.php:277
msgid "Same used for Add to wishlist"
msgstr "El mismo usado para Añadir a la lista de deseos"

#: plugin-options/add_to_wishlist-options.php:281
msgid "\"Added to wishlist\" custom icon"
msgstr "Icono personalizado de ''Añadido a la lista de deseos''"

#: plugin-options/add_to_wishlist-options.php:294
msgid "Custom CSS"
msgstr "Personalizar CSS"

#: plugin-options/add_to_wishlist-options.php:295
msgid "Enter custom CSS to be applied to Wishlist elements (optional)"
msgstr ""
"Introduce el CSS personalizado a aplicar en los elementos de la Lista de "
"deseos (opcional)"

#: plugin-options/lists-options.php:34
#, fuzzy
msgid "Search list"
msgstr "Compartir lista de deseos"

#. translators: 1. Anchor to Frequently Bought Together landing page on
#. yithemes.com.
#: plugin-options/settings-options.php:19
msgid ""
"If you want to take advantage of this feature, you could consider purchasing "
"the %s."
msgstr ""
"Si quieres beneficiarte de esta característica, podrías considerar la compra "
"de la %s."

#: plugin-options/settings-options.php:34
msgid "Enable AJAX loading"
msgstr "Activar carga de AJAX"

#: plugin-options/settings-options.php:35
msgid "Load any cacheable wishlist item via AJAX"
msgstr "Cargar cualquier artículo de lista de deseos cacheable via AJX"

#: plugin-options/settings-options.php:48
msgid "YITH WooCommerce Frequently Bought Together Integration"
msgstr ""
"Integración de productos YITH WooCommerce comprados juntos frecuentemente"

#. translators: 1. Url to Frequently Bought Together landing page on
#. yithemes.com.
#: plugin-options/settings-options.php:51
msgid ""
"In order to use this integration you have to install and activate YITH "
"WooCommerce Frequently Bought Together. <a href=\"%s\">Learn more</a>"
msgstr ""
"Para usar esta integración debes instalar y activar YITH WooCommerce "
"Frequently Bought Together. <a href=\"%s\">Leer más</a>"

#: plugin-options/settings-options.php:56
msgid "Enable slider in wishlist"
msgstr "Habilitar deslizador en la lista de deseos"

#. translators: 1. Example image of the integration. 2. CTA to buy Frequently
#. Bought Together.
#: plugin-options/settings-options.php:58
#, fuzzy
msgid ""
"Enable the slider with linked products on the Wishlist page (<a href=\"%1$s"
"\" class=\"thickbox\">Example</a>). %2$s"
msgstr ""
"Activa el carrusel con los productos relacionados en la página de Lista de "
"deseos (<a href=\"%s\" class=\"thickbox\">Ejemplo</a>). %s"

#: plugin-options/wishlist_page-options.php:19
msgid "All your wishlists"
msgstr "Todas tus listas de deseos"

#: plugin-options/wishlist_page-options.php:26
msgid "Wishlist page"
msgstr "Página de Lista de deseos"

#: plugin-options/wishlist_page-options.php:27
msgid ""
"Pick a page as the main Wishlist page; make sure you add the <span class="
"\"code\"><code>[yith_wcwl_wishlist]</code></span> shortcode into the page "
"content"
msgstr ""
"Escoge una página como la página de Lista de deseos predeterminada; "
"asegúrate de añadir el <span class=\"code\"><code>[yith_wcwl_wishlist]</"
"code></span> shortcode en el contenido de la página"

#: plugin-options/wishlist_page-options.php:40
msgid "Wishlist Detail Page"
msgstr "Página de detalles de la lista de deseos"

#: plugin-options/wishlist_page-options.php:47
#: plugin-options/wishlist_page-options.php:56
#: plugin-options/wishlist_page-options.php:65
#: plugin-options/wishlist_page-options.php:74
#: plugin-options/wishlist_page-options.php:83
#: plugin-options/wishlist_page-options.php:92
#: plugin-options/wishlist_page-options.php:101
msgid "In wishlist table show"
msgstr "Mostrar en la tabla de la lista de deseos"

#: plugin-options/wishlist_page-options.php:48
msgid "Product variations selected by the user (example: size or color)"
msgstr ""
"Variaciones de producto seleccionada por el usuario (ejemplo: talla o color)"

#: plugin-options/wishlist_page-options.php:57
msgid "Product price"
msgstr "Precio de producto"

#: plugin-options/wishlist_page-options.php:66
msgid "Product stock (show if the product is available or not)"
msgstr "Inventario de producto (muestra si el producto está disponible o no)"

#: plugin-options/wishlist_page-options.php:75
msgid "Date on which the product was added to the wishlist"
msgstr "Fecha en la que el producto fue añadido a la lista de deseos"

#: plugin-options/wishlist_page-options.php:84
msgid "Add to cart option for each product"
msgstr "Opción de añadir al carrito para cada producto"

#: plugin-options/wishlist_page-options.php:93
msgid ""
"Icon to remove the product from the wishlist - to the left of the product"
msgstr ""
"Icono para eliminar el producto de la lista de deseos - a la izquierda del "
"producto"

#: plugin-options/wishlist_page-options.php:102
msgid ""
"Button to remove the product from the wishlist - to the right of the product"
msgstr ""
"Botón para eliminar el producto de la lista de deseos - a la derecha del "
"producto"

#: plugin-options/wishlist_page-options.php:110
msgid "Redirect to cart"
msgstr "Redirigir al carrito"

#: plugin-options/wishlist_page-options.php:111
msgid ""
"Redirect users to the cart page when they add a product to the cart from the "
"wishlist page"
msgstr ""
"Redireccionar a los usuarios a la página de carrito cuando añaden un "
"producto al carrito desde la página de la lista de deseos"

#: plugin-options/wishlist_page-options.php:119
msgid "Remove if added to the cart"
msgstr "Quitar si se añade al carrito"

#: plugin-options/wishlist_page-options.php:120
msgid ""
"Remove the product from the wishlist after it has been added to the cart"
msgstr ""
"Eliminar el producto de la lista de deseos tras haber sido añadido al carrito"

#: plugin-options/wishlist_page-options.php:128
msgid "Share wishlist"
msgstr "Compartir lista de deseos"

#: plugin-options/wishlist_page-options.php:129
msgid "Enable this option to let users share their wishlist on social media"
msgstr ""
"Activa esta opción para permitir a los usuarios compartir su lista de deseos "
"en redes sociales"

#: plugin-options/wishlist_page-options.php:137
#: plugin-options/wishlist_page-options.php:146
#: plugin-options/wishlist_page-options.php:155
#: plugin-options/wishlist_page-options.php:164
#: plugin-options/wishlist_page-options.php:173
msgid "Share on social media"
msgstr "Compartir en redes sociales"

#: plugin-options/wishlist_page-options.php:165
msgid "Share by email"
msgstr "Compartir por correo electrónico"

#: plugin-options/wishlist_page-options.php:182
msgid "Share by URL"
msgstr "Compartir por URL"

#: plugin-options/wishlist_page-options.php:183
msgid "Show \"Share URL\" field on wishlist page"
msgstr "Mostrar el campo ''Compartir URL'' en la página de la lista de deseos"

#: plugin-options/wishlist_page-options.php:191
msgid "Sharing title"
msgstr "Título a compartir"

#: plugin-options/wishlist_page-options.php:192
msgid "Wishlist title used for sharing (only used on Twitter and Pinterest)"
msgstr ""
"Título de la lista de deseos usado para compartir (solo en Twitter y "
"Pinterest)"

#. translators: 1. Blog name.
#: plugin-options/wishlist_page-options.php:195
msgid "My wishlist on %s"
msgstr "Mi lista de deseos en %s"

#: plugin-options/wishlist_page-options.php:200
msgid "Social text"
msgstr "Texto social"

#: plugin-options/wishlist_page-options.php:201
msgid ""
"Type the message you want to publish when you share your wishlist on Twitter "
"and Pinterest"
msgstr ""
"Introduce el mensaje que quieres publicar cuando compartes una lista de "
"deseos en Twitter y Pinterest"

#: plugin-options/wishlist_page-options.php:209
msgid "Social image URL"
msgstr "URL de imagen social"

#: plugin-options/wishlist_page-options.php:210
msgid "It will be used to pin the wishlist on Pinterest."
msgstr "Será usado para fijar la lista de deseos en Pinterest."

#: plugin-options/wishlist_page-options.php:229
msgid "Default wishlist name"
msgstr "Nombre predeterminado de lista de deseos"

#: plugin-options/wishlist_page-options.php:230
msgid ""
"Enter a name for the default wishlist. This is the wishlist that will be "
"automatically generated for all users if they do not create any custom one"
msgstr ""
"Introduce el nombre para la lista de deseos predeterminada. Esta es la lista "
"de deseos que se creará automáticamente si los usuarios no crean una "
"personalizada"

#: plugin-options/wishlist_page-options.php:232
#, fuzzy
msgid "My wishlist"
msgstr "Mi lista de deseos en "

#: plugin-options/wishlist_page-options.php:237
msgid "\"Add to cart\" text"
msgstr "Texto ''Añadir al carrito''"

#: plugin-options/wishlist_page-options.php:238
msgid "Enter a text for the \"Add to cart\" button"
msgstr "Introduce un texto para el botón ''Añadir al carrito''"

#: plugin-options/wishlist_page-options.php:250
msgid "Style & color customization"
msgstr "Personalización de estilo y color"

#: plugin-options/wishlist_page-options.php:257
msgid "Style of \"Add to cart\""
msgstr "Estilo de ''Añadir al carrito''"

#: plugin-options/wishlist_page-options.php:258
msgid "Choose whether to show a textual \"Add to cart\" link or a button"
msgstr "Elige si mostrar un enlace textual o un botón de ''Añadir al carrito''"

#: plugin-options/wishlist_page-options.php:271
msgid "\"Add to cart\" button style"
msgstr "Estilo del botón ''Añadir al carrito''"

#: plugin-options/wishlist_page-options.php:277
msgid "Choose the colors for the \"Add to cart\" button"
msgstr "Elige colores para el botón ''Añadir al carrito''"

#: plugin-options/wishlist_page-options.php:295
msgid "Choose colors for the \"Add to cart\" button on hover state"
msgstr "Elige colores para el botón ''Añadir al carrito'' al pasar el cursor"

#: plugin-options/wishlist_page-options.php:321
msgid "Set the radius for the \"Add to cart\" button"
msgstr "Configura el radio para el botón ''Añadir al carrito''"

#: plugin-options/wishlist_page-options.php:335
msgid "\"Add to cart\" icon"
msgstr "Icono de ''Añadir al carrito''"

#: plugin-options/wishlist_page-options.php:336
msgid "Select an icon for the \"Add to cart\" button (optional)"
msgstr "Selecciona un icono para el botón ''Añadir al carrito'' (opcional)"

#: plugin-options/wishlist_page-options.php:351
msgid "\"Add to cart\" custom icon"
msgstr "Icono personalizado de ''Añadir al carrito''"

#: plugin-options/wishlist_page-options.php:352
msgid ""
"Upload an icon you'd like to use for the \"Add to cart\" button (suggested "
"32px x 32px)"
msgstr ""
"Sube un icono que te gustaría usar para el botón ''Añadir al "
"carrito'' (sugerencia: 32px x 32px)"

#: plugin-options/wishlist_page-options.php:360
msgid "Primary button style"
msgstr "Estilo de botón primario"

#: plugin-options/wishlist_page-options.php:366
msgid ""
"Choose colors for the primary button<br/><small>This style will be applied "
"to \"Edit title\" button on Wishlist view, \"Submit Changes\" button on "
"Manage view and \"Search wishlist\" button on Search view</small>"
msgstr ""
"Elige colores para el botón primario<br/><small>Este estilo será aplicado al "
"botón \"Editar título\" en la vista de Lista de deseos, en el botón "
"\"Guardar cambios\" en la vista de Administrar y el botón \"Buscar lista de "
"deseos\" en la vista de Buscar</small>"

#: plugin-options/wishlist_page-options.php:384
msgid ""
"Choose colors for the primary button on hover state<br/><small>This style "
"will be applied to \"Edit title\" button on Wishlist view, \"Submit Changes"
"\" button on Manage view and \"Search wishlist\" button on Search view</"
"small>"
msgstr ""
"Elige colores para el botón primario al pasar el cursor<br/><small>Este "
"estilo será aplicado al botón ''Editar título'' en la vista de Lista de "
"deseos, en el botón ''Guardar cambios'' en la vista Administrar y en el "
"botón ''buscar lista de deseos'' en la vista Buscar</small>"

#: plugin-options/wishlist_page-options.php:409
msgid "Secondary button style"
msgstr "Estilo de botón secundario"

#: plugin-options/wishlist_page-options.php:415
#: plugin-options/wishlist_page-options.php:433
msgid ""
"Choose colors of the secondary button<br/><small>This style will be applied "
"to the buttons that allow showing and hiding the Edit title form on Wishlist "
"view and \"Create new Wishlist\" button on Manage view</small>"
msgstr ""

#: plugin-options/wishlist_page-options.php:458
msgid "Wishlist table style"
msgstr "Estilo de la tabla de la lista de deseos"

#: plugin-options/wishlist_page-options.php:459
msgid ""
"Choose the colors for the wishlist table (when set to \"Traditional\" layout)"
msgstr ""
"Elige los colores para la tabla de la lista de deseos (cuando se establece "
"el estilo ''Tradicional'')"

#: plugin-options/wishlist_page-options.php:487
msgid "Highlight color"
msgstr "Destacar color"

#: plugin-options/wishlist_page-options.php:488
msgid ""
"Choose the color for all sections with background<br/><small>This color will "
"be used as background for the wishlist table heading and footer (when set to "
"\"Traditional\" layout), and for various form across wishlist views</small>"
msgstr ""
"Elige el color para todas las secciones con fondo<br/><small>Este color será "
"usado como fondo para el encabezado de la tabla de la lista de deseos y el "
"pie de página (cuando se establece el estilo \"Tradicional\"), y para varios "
"formularios sobre las visitas de la lista de deseos</small>"

#: plugin-options/wishlist_page-options.php:500
msgid "Share button text color"
msgstr "Color de texto de botón para compartir"

#: plugin-options/wishlist_page-options.php:501
msgid "Choose colors for share buttons text"
msgstr "Elige los colores para el texto de los botones para compartir"

#: plugin-options/wishlist_page-options.php:512
msgid "Text hover"
msgstr "Al pasar el cursor por el texto"

#: plugin-options/wishlist_page-options.php:525
msgid "Facebook share button icon"
msgstr "Icono del botón para compartir en Facebook"

#: plugin-options/wishlist_page-options.php:526
msgid "Select an icon for the Facebook share button"
msgstr "Selecciona un icono para el botón para compartir en Facebook"

#: plugin-options/wishlist_page-options.php:536
msgid "Facebook share button custom icon"
msgstr "Icono personalizado del botón para compartir en Facebook"

#: plugin-options/wishlist_page-options.php:537
msgid ""
"Upload an icon you'd like to use for Facebook share button (suggested 32px x "
"32px)"
msgstr ""
"Sube un icono que te gustaría usar para el botón para compartir en Facebook "
"(sugerencia: 32px x 32px)"

#: plugin-options/wishlist_page-options.php:545
msgid "Facebook share button style"
msgstr "Estilo del botón para compartir en Facebook"

#: plugin-options/wishlist_page-options.php:546
msgid "Choose colors for Facebook share button"
msgstr "Elige los colores para el botón para compartir en Facebook"

#: plugin-options/wishlist_page-options.php:557
#: plugin-options/wishlist_page-options.php:597
#: plugin-options/wishlist_page-options.php:637
#: plugin-options/wishlist_page-options.php:677
#: plugin-options/wishlist_page-options.php:717
msgid "Background hover"
msgstr "Fondo al pasar el cursor"

#: plugin-options/wishlist_page-options.php:565
msgid "Twitter share button icon"
msgstr "Icono del botón para compartir en Twitter"

#: plugin-options/wishlist_page-options.php:566
msgid "Select an icon for the Twitter share button"
msgstr "Selecciona un icono para el botón para compartir en Twitter"

#: plugin-options/wishlist_page-options.php:576
msgid "Twitter share button custom icon"
msgstr "Icono personalizado para compartir en Twitter"

#: plugin-options/wishlist_page-options.php:577
msgid ""
"Upload an icon you'd like to use for Twitter share button (suggested 32px x "
"32px)"
msgstr ""
"Sube un icono que te gustaría usar para el botón para compartir en Twitter "
"(sugerencia:: 32px x 32px)"

#: plugin-options/wishlist_page-options.php:585
msgid "Twitter share button style"
msgstr "Estilo del botón para compartir en Twitter"

#: plugin-options/wishlist_page-options.php:586
msgid "Choose colors for Twitter share button"
msgstr "Elige los colores para el botón para compartir en Twitter"

#: plugin-options/wishlist_page-options.php:605
msgid "Pinterest share button icon"
msgstr "Icono para compartir por Pinterest"

#: plugin-options/wishlist_page-options.php:606
msgid "Select an icon for the Pinterest share button"
msgstr "Selecciona un icono para el botón para compartir por Pinterest"

#: plugin-options/wishlist_page-options.php:616
msgid "Pinterest share button custom icon"
msgstr "Icono personalizado del botón para compartir por Pinterest"

#: plugin-options/wishlist_page-options.php:617
msgid ""
"Upload an icon you'd like to use for Pinterest share button (suggested 32px "
"x 32px)"
msgstr ""
"Sube un icono que te gustaría usar para el botón para compartir por "
"Pinterest (sugerencia: 32px x 32px)"

#: plugin-options/wishlist_page-options.php:625
msgid "Pinterest share button style"
msgstr "Estilo del botón para compartir por Pinterest"

#: plugin-options/wishlist_page-options.php:626
msgid "Choose colors for Pinterest share button"
msgstr "Elige colores para el botón para compartir por Pinterest"

#: plugin-options/wishlist_page-options.php:645
msgid "Email share button icon"
msgstr "Icono para compartir por Correo electrónico"

#: plugin-options/wishlist_page-options.php:646
msgid "Select an icon for the Email share button"
msgstr ""
"Selecciona un icono para el botón para compartir por Correo electrónico"

#: plugin-options/wishlist_page-options.php:656
msgid "Email share button custom icon"
msgstr "Icono personalizado del botón para compartir por Correo electrónico"

#: plugin-options/wishlist_page-options.php:657
msgid ""
"Upload an icon you'd like to use for the Email share button (suggested 32px "
"x 32px)"
msgstr ""
"Sube un icono que te gustaría usar para el botón para compartir por Correo "
"electrónico (sugerencia: 32px x 32px)"

#: plugin-options/wishlist_page-options.php:665
msgid "Email share button style"
msgstr "Estilo del botón para compartir por Correo electrónico"

#: plugin-options/wishlist_page-options.php:666
msgid "Choose colors for the Email share button"
msgstr "Elige los colores para el botón para compartir por Correo electrónico"

#: plugin-options/wishlist_page-options.php:685
msgid "WhatsApp share button icon"
msgstr "Icono de botón para compartir por WhatsApp"

#: plugin-options/wishlist_page-options.php:686
msgid "Select an icon for the WhatsApp share button"
msgstr "Selecciona un icono para el botón para compartir por WhatsApp"

#: plugin-options/wishlist_page-options.php:696
msgid "WhatsApp share button custom icon"
msgstr "Icono personalizado del botón para compartir por WhatsApp"

#: plugin-options/wishlist_page-options.php:697
msgid ""
"Upload an icon you'd like to use for WhatsApp share button (suggested 32px x "
"32px)"
msgstr ""
"Sube un icono que te gustaría usar para el botón para compartir por WhatsApp "
"(sugerencia: 32px x 32px)"

#: plugin-options/wishlist_page-options.php:705
msgid "WhatsApp share button style"
msgstr "Estilo del botón para compartir por WhatsApp"

#: plugin-options/wishlist_page-options.php:706
msgid "Choose colors for WhatsApp share button"
msgstr "Elige los colores para el botón para compartir por WhatsApp"

#: templates/admin/wishlist-panel-premium.php:168
#: templates/admin/wishlist-panel-premium.php:309
msgid ""
"Upgrade to the %1$spremium version%2$s%3$sof %1$sYITH WooCommerce Wishlist"
"%2$s to benefit from all features!"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:170
#: templates/admin/wishlist-panel-premium.php:311
msgid "Upgrade"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:176
msgid "Premium Features"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:180
msgid "Allow your customers to create multiple wishlists"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:182
msgid ""
"Christmas, Birthday... users will be able to create and manage multiple "
"wishlists, in case they prefer to keep the products sorted by category or "
"other parameters."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:185
msgid "Multiple Wishlist"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:192
msgid "Wishlist Private"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:196
msgid "A transparent privacy management"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:198
msgid ""
"Your customers can set a privacy option for each wishlist and choose whether "
"sharing the wishlist or making it private."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:206
msgid ""
"Allow your customers to ask for an estimate, directly from their wishlist "
"page"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:208
msgid ""
"And give only registered users the privilege to use the wishlist "
"functionalities."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:211
msgid "Estimate Cost"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:218
msgid "Admin Panel"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:222
msgid "An advanced and more versatile management of the wishlist"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:224
msgid ""
"Your customers can sort the products in the wishlist thanks to the drag&drop "
"option, move products from one wishlist to another, manage product quantity, "
"download the wishlist content to a .pdf file, share the wishlist on their "
"social networks, and much more!"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:232
msgid "Monitor your customers’ wishlists and the popular products"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:234
msgid ""
"You can see your customers’ wishlists, gain insight into the products they "
"are more interested in and plan targeted marketing strategies."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:237
msgid "Search Wishlists"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:244
msgid "'ADD TO CART'"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:248
msgid ""
"Send promotional emails for products in wishlists to push customers to buy"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:250
msgid ""
"Just three clicks to send promotional emails with discount coupons to "
"customers who have added specific products to their wishlist and push them "
"to buy."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:258
msgid "Let users buy the product right from the wishlist page"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:260
msgid ""
"Let them move products from one wishlist to the cart in one click, keeping "
"also the information about the size, colour or quantity selected when added "
"to the wishlist."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:263
msgid "DISABLE WISHLIST"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:271
msgid "Choose a charming layout for your wishlist page"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:273
msgid ""
"The wishlist is one of the most used functionalities in an ecommerce store "
"but often the page layout is not enhanced enough and looks unattractive to "
"the user. With our plugin, you can choose among some alternative layouts and "
"offer an even more interesting experience to users who creates a wishlist on "
"your website."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:276
msgid "UNLOGGED USERS"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:284
msgid "Wishlist widgets for the header and sidebars"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:286
msgid ""
"Increase the wishlist visibility through our modern widgets that you can use "
"in the header, in the sidebars, wherever you want."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:289
msgid "POPULAR TABLE"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:296
msgid "FUNCTIONALITIES"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:300
msgid "Allow users to monitor the price of the products in their wishlist"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:302
msgid ""
"We took inspiration from one of the most interesting features of Amazon "
"product pages: from now on, users can realise what’s the best time to buy a "
"product and how much they can save when there’s a promotion running or a "
"discount on the product they’ve added to the wishlist."
msgstr ""

#: templates/share.php:51 templates/share.php:52
msgid "Facebook"
msgstr "Facebook"

#: templates/share.php:59 templates/share.php:60
msgid "Twitter"
msgstr "Twitter"

#: templates/share.php:67 templates/share.php:68
msgid "Pinterest"
msgstr "Pinterest"

#: templates/share.php:75 templates/share.php:76
msgid "Email"
msgstr "Email"

#: templates/share.php:83
msgid "WhatsApp"
msgstr "WhatsApp"

#: templates/share.php:84
msgid "Whatsapp"
msgstr "WhatsApp"

#: templates/share.php:93
msgid "(Now"
msgstr "(Ahora"

#: templates/share.php:93
msgid "copy"
msgstr "copiar"

#: templates/share.php:93
msgid "this wishlist link and share it anywhere)"
msgstr "este enlace a la lista de deseos y compártelo en cualquier parte)"

#: templates/wishlist-view-footer-mobile.php:44
#: templates/wishlist-view-footer.php:44
msgid "Apply this action to all the selected items:"
msgstr "Aplicar esta acción a todos los artículos seleccionados:"

#: templates/wishlist-view-footer-mobile.php:49
#: templates/wishlist-view-footer.php:49
msgid "Remove from wishlist"
msgstr "Eliminar de la lista de deseos"

#. translators: 1. Wishlist formatted name.
#: templates/wishlist-view-footer-mobile.php:67
#: templates/wishlist-view-footer.php:67
msgid "Move to %s"
msgstr ""

#: templates/wishlist-view-footer-mobile.php:73
#: templates/wishlist-view-footer.php:73
msgid "Apply"
msgstr "Aplicar"

#: templates/wishlist-view-footer-mobile.php:81
#: templates/wishlist-view-footer.php:81
msgid "Update"
msgstr "Actualizar"

#: templates/wishlist-view-footer-mobile.php:87
#: templates/wishlist-view-footer.php:103
msgid "Add all to cart"
msgstr "Añadir todo al carrito"

#: templates/wishlist-view-header.php:48
msgid "Edit title"
msgstr "Editar título"

#: templates/wishlist-view-mobile.php:136
msgid "Added on:"
msgstr "Añadido el:"

#: templates/wishlist-view-mobile.php:147
msgid "Price:"
msgstr "Precio:"

#: templates/wishlist-view-mobile.php:174
msgid "Quantity:"
msgstr "Cantidad:"

#: templates/wishlist-view-mobile.php:189
msgid "Stock:"
msgstr "En inventario:"

#: templates/wishlist-view-mobile.php:192 templates/wishlist-view.php:229
msgid "Out of stock"
msgstr "Agotado"

#: templates/wishlist-view-mobile.php:192 templates/wishlist-view.php:229
msgid "In Stock"
msgstr "En stock"

#: templates/wishlist-view-mobile.php:212 templates/wishlist-view.php:262
msgid "Move"
msgstr "Mover"

#: templates/wishlist-view-mobile.php:233 templates/wishlist-view.php:283
msgid "Move to another list &rsaquo;"
msgstr "Mover a otra lista &rsaquo;"

#: templates/wishlist-view-mobile.php:241 templates/wishlist-view.php:157
#: templates/wishlist-view.php:293
msgid "Remove this product"
msgstr "Eliminar este producto"

#: templates/wishlist-view-mobile.php:252 templates/wishlist-view.php:313
msgid "No products added to the wishlist"
msgstr "No se han añadido productos a la lista de deseos"

#: templates/wishlist-view.php:79
msgid "Product name"
msgstr "Nombre del producto"

#: templates/wishlist-view.php:87
msgid "Unit price"
msgstr "Precio por unidad"

#: templates/wishlist-view.php:96
msgid "Quantity"
msgstr "Cantidad"

#: templates/wishlist-view.php:105
msgid "Stock status"
msgstr "Estado de inventario"

#: templates/wishlist-view.php:123
msgid "Arrange"
msgstr "Ordenar"

#. translators: date added label: 1 date added.
#: templates/wishlist-view.php:243
msgid "Added on: %s"
msgstr "Añadido el: %s"

#: templates/wishlist-view.php:293
msgid "Remove"
msgstr "Quitar"

#. Description of the plugin/theme
msgid ""
"<code><strong>YITH WooCommerce Wishlist</strong></code> gives your users the "
"possibility to create, fill, manage and share their wishlists allowing you "
"to analyze their interests and needs to improve your marketing strategies. "
"<a href=\"https://yithemes.com/\" target=\"_blank\">Get more plugins for "
"your e-commerce on <strong>YITH</strong></a>"
msgstr ""

#: includes/class-yith-wcwl-admin.php:261
msgctxt "[HELP TAB] Video title"
msgid ""
"Check this video to learn how to <b>configure wishlist and customize options:"
"</b>"
msgstr ""

#: includes/class-yith-wcwl-install.php:340
msgctxt "page_slug"
msgid "wishlist"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:230
msgctxt "date when wishlist was created"
msgid "Created on"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:52
msgctxt "[gutenberg]: block name"
msgid "YITH Add to wishlist"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:101
msgctxt "[gutenberg]: block name"
msgid "YITH Wishlist"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:53
msgctxt "[gutenberg]: block description"
msgid "Shows Add to wishlist button"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:102
msgctxt "[gutenberg]: block description"
msgid "Shows a list of products in wishlist"
msgstr ""

#. translators: 1. % of reduction/increase in price.
#: includes/class-yith-wcwl-wishlist-item.php:428
msgctxt ""
"Part of the template that shows price variation since addition to list; "
"placeholder will be replaced with a percentage"
msgid "Price is %1$s%%"
msgstr ""

#. translators: 2: original product price.
#: includes/class-yith-wcwl-wishlist-item.php:430
msgctxt ""
"Part of the template that shows price variation since addition to list; "
"placeholder will be replaced with a price"
msgid "(Was %2$s when added  in list)"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:45
msgctxt "Elementor widget name"
msgid "YITH Wishlist Add button"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:45
#, fuzzy
msgctxt "Elementor widget name"
msgid "YITH Wishlist"
msgstr "Wishlist"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:87
#, fuzzy
msgctxt "Elementor section title"
msgid "Product"
msgstr "Nombre del producto"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:107
msgctxt "Elementor section title"
msgid "Labels"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:157
msgctxt "Elementor section title"
msgid "Advanced"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:87
#, fuzzy
msgctxt "Elementor section title"
msgid "Wishlist"
msgstr "Wishlist"

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:107
#, fuzzy
msgctxt "Elementor section title"
msgid "Pagination"
msgstr "Paginar"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:95
#, fuzzy
msgctxt "Elementor control label"
msgid "Product ID"
msgstr "Nombre del producto"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:115
msgctxt "Elementor control label"
msgid "Button label"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:125
#, fuzzy
msgctxt "Elementor control label"
msgid "\"Browse wishlist\" label"
msgstr "Texto para \"Echar un vistazo a la lista de deseos\""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:135
#, fuzzy
msgctxt "Elementor control label"
msgid "\"Product already in wishlist\" label"
msgstr "Texto para \"El producto ya está en la lista de deseos\""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:145
#, fuzzy
msgctxt "Elementor control label"
msgid "\"Product added to wishlist\" label"
msgstr "Texto para \"El producto ya está en la lista de deseos\""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:165
#, fuzzy
msgctxt "Elementor control label"
msgid "URL of the wishlist page"
msgstr "Página de Lista de deseos"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:175
#, fuzzy
msgctxt "Elementor control label"
msgid "Icon for the button"
msgstr ""
"Selecciona un icono para el botón para compartir por Correo electrónico"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:185
#, fuzzy
msgctxt "Elementor control label"
msgid "Additional CSS classes for the button"
msgstr ""
"Botón para clases CSS adicionales (déjalo vacío para usar los ajustes "
"predeterminados)"

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:95
#, fuzzy
msgctxt "Elementor control label"
msgid "Wishlist ID"
msgstr "Wishlist"

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:115
#, fuzzy
msgctxt "Elementor control label"
msgid "Paginate items"
msgstr "Paginar"

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:128
#, fuzzy
msgctxt "yith-woocommerce-wishlist"
msgid "Items per page"
msgstr "Artículos añadidos"

#~ msgid "My wishlist on "
#~ msgstr "Mi lista de deseos en "

#~ msgid "YITH WooCommerce Wishlist"
#~ msgstr "YITH WooCommerce Wishlist"

#~ msgid "Save"
#~ msgstr "Guardar"

#~ msgid "Cancel"
#~ msgstr "Cancelar"

#~ msgid "Ask for an estimate"
#~ msgstr "Solicitar una estimación"
PK`x1\! ���,languages/yith-woocommerce-wishlist-he_IL.ponu�[���# Copyright (C) 2019 YITH WooCommerce Wishlist
# This file is distributed under the same license as the YITH WooCommerce Wishlist package.
msgid ""
msgstr ""
"Project-Id-Version: YITH WooCommerce Wishlist\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/yith-woocommerce-"
"wishlist\n"
"POT-Creation-Date: 2021-11-11 13:53:53+00:00\n"
"PO-Revision-Date: 2020-10-16 14:05+0200\n"
"Last-Translator: Nicola Mustone <mail@nicolamustone.it>\n"
"Language-Team: Your Inspiration Themes <plugins@yithemes.com>\n"
"Language: he_IL\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 2.4.1\n"
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;_n:1,2;__ngettext:1,2;"
"__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;"
"_nx_noop:4c,1,2\n"
"X-Poedit-Basepath: .\n"
"Plural-Forms: nplurals=2; plural=n!=1;\n"
"X-Poedit-SourceCharset: UTF-8\n"
"X-Poedit-SearchPath-0: ..\n"
"X-Poedit-SearchPathExcluded-0: ../plugin-fw\n"

#: includes/class-yith-wcwl-admin.php:126
#, fuzzy
msgid "Wishlist Page"
msgstr "רשימת משאלות"

#: includes/class-yith-wcwl-admin.php:148
msgid "General settings"
msgstr ""

#: includes/class-yith-wcwl-admin.php:149
msgid "Add to wishlist options"
msgstr ""

#: includes/class-yith-wcwl-admin.php:150
msgid "Wishlist page options"
msgstr ""

#: includes/class-yith-wcwl-admin.php:151
msgid "Premium Version"
msgstr ""

#: includes/class-yith-wcwl-admin.php:249
#: includes/class-yith-wcwl-install.php:342
msgid "Wishlist"
msgstr "רשימת משאלות"

#: includes/class-yith-wcwl-admin.php:251
msgid ""
"Allows your customers to create and share lists of products that they want "
"to purchase on your e-commerce."
msgstr ""

#: includes/class-yith-wcwl-ajax-handler.php:75
#: templates/add-to-wishlist-remove.php:59
msgid "View &rsaquo;"
msgstr ""

#: includes/class-yith-wcwl-ajax-handler.php:76
#: templates/add-to-wishlist-remove.php:58
msgid "or"
msgstr ""

#: includes/class-yith-wcwl-ajax-handler.php:77
msgid "Close"
msgstr ""

#: includes/class-yith-wcwl-ajax-handler.php:155
#: includes/class-yith-wcwl-ajax-handler.php:195
msgid "Product successfully removed."
msgstr "המוצר הוסר מהרשימה בהצלחה."

#: includes/class-yith-wcwl-form-handler.php:156
msgid "Please, make sure to enter a valid title"
msgstr ""

#: includes/class-yith-wcwl-frontend.php:461
msgid ""
"We are sorry, but this feature is available only if cookies on your browser "
"are enabled."
msgstr ""

#: includes/class-yith-wcwl-frontend.php:462
msgid "Product added to cart successfully"
msgstr ""

#: includes/class-yith-wcwl-frontend.php:725
#: includes/class-yith-wcwl-shortcode.php:239
#: plugin-options/wishlist_page-options.php:240
#: templates/wishlist-view-footer-mobile.php:46
#: templates/wishlist-view-footer.php:46
msgid "Add to cart"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:52
msgid "While you visit our site, we’ll track:"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:54
msgid ""
"Products you’ve added to the wishlist: we’ll use this to show you and other "
"users your favourite products, and to create targeted email campaigns."
msgstr ""

#: includes/class-yith-wcwl-privacy.php:55
msgid ""
"Wishlists you’ve created: we’ll keep track of the wishlists you create, and "
"make them visible to the store staff"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:57
msgid ""
"We’ll also use cookies to keep track of wishlist contents while you’re "
"browsing our site."
msgstr ""

#: includes/class-yith-wcwl-privacy.php:60
msgid ""
"Members of our team have access to the information you provide us with. For "
"example, both Administrators and Shop Managers can access:"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:62
msgid ""
"Wishlist details, such as products added, date of addition, name and privacy "
"settings of your wishlists"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:64
msgid ""
"Our team members have access to this information to offer you better deals "
"for the products you love."
msgstr ""

#: includes/class-yith-wcwl-privacy.php:84
#: includes/class-yith-wcwl-privacy.php:100
msgid "Customer wishlists"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:137 plugin-options/lists-options.php:25
#: plugin-options/lists-options.php:32
msgid "Wishlists"
msgstr "רשימת משאלות"

#. Translators: %s Order number.
#: includes/class-yith-wcwl-privacy.php:199
msgid "Removed wishlist %s."
msgstr "רשימת המשאלות שלי ב-%s"

#. Translators: %s Order number.
#: includes/class-yith-wcwl-privacy.php:203
msgid "Wishlist %s has been retained."
msgstr "טקסט בטבלת הרשימה"

#: includes/class-yith-wcwl-privacy.php:227
msgid "Token"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:228
msgid "Wishlist URL"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:229
msgid "Title"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:231
msgid "Visibility"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:232
msgid "Items added"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:58
msgid ""
"ID of the product to add to the wishlist (leave empty to use the global "
"product)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:63
msgid "URL of the wishlist page (leave empty to use the default settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:68
msgid "Button label (leave empty to use the default settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:73
msgid "\"Browse wishlist\" label (leave empty to use the default settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:78
msgid ""
"\"Product already in wishlist\" label (leave empty to use the default "
"settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:83
msgid ""
"\"Product added to wishlist\" label (leave empty to use the default settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:88
msgid ""
"Icon for the button (use any FontAwesome valid class, or leave empty to use "
"the default settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:93
msgid ""
"Additional CSS classes for the button (leave empty to use the default "
"settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:107
msgid "Choose whether to paginate items in the wishlist or show them all"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:110
#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:118
msgid "Paginate"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:111
#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:119
msgid "Do not paginate"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:116
msgid "Number of items to show per page"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:121
msgid "ID of the wishlist to show (e.g. K6EOWXB888ZD)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:414
msgid "Share on:"
msgstr "שתף ברשת:"

#: includes/class-yith-wcwl-shortcode.php:438
#: plugin-options/wishlist_page-options.php:138
msgid "Share on Facebook"
msgstr "שתף בפייסבוק"

#: includes/class-yith-wcwl-shortcode.php:455
#: plugin-options/wishlist_page-options.php:147
msgid "Tweet on Twitter"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:473
#: plugin-options/wishlist_page-options.php:156
msgid "Pin on Pinterest"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:487
msgid "Share via email"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:510
#: plugin-options/wishlist_page-options.php:174
msgid "Share on WhatsApp"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:621
msgid "Remove from list"
msgstr ""

#: includes/class-yith-wcwl-wishlist-item.php:189
msgid "Free!"
msgstr ""

#: includes/class-yith-wcwl.php:164
msgid "The item cannot be added to this wishlist"
msgstr ""

#: includes/class-yith-wcwl.php:168 includes/class-yith-wcwl.php:174
msgid "An error occurred while adding the products to the wishlist."
msgstr ""

#: includes/class-yith-wcwl.php:235 includes/class-yith-wcwl.php:241
msgid "Error. Unable to remove the product from the wishlist."
msgstr "שגיאה. לא הצלחנו להסיר את המוצר מרשימת המשאלות."

#: includes/data-stores/class-yith-wcwl-wishlist-data-store.php:152
#: includes/data-stores/class-yith-wcwl-wishlist-data-store.php:174
msgid "Invalid wishlist."
msgstr ""

#: includes/data-stores/class-yith-wcwl-wishlist-item-data-store.php:119
msgid "Invalid wishlist item."
msgstr ""

#. translators: 1. Number of users.
#: includes/functions-yith-wcwl.php:249
msgid "%d user"
msgid_plural "%d users"
msgstr[0] ""
msgstr[1] ""

#: includes/functions-yith-wcwl.php:250
msgid "has this item in wishlist"
msgid_plural "have this item in wishlist"
msgstr[0] ""
msgstr[1] ""

#: includes/functions-yith-wcwl.php:252
msgid "You're the first"
msgstr ""

#: includes/functions-yith-wcwl.php:253
msgid "to add this item in wishlist"
msgstr ""

#. translators: 1. Count of users when many, or "another" when only one.
#: includes/functions-yith-wcwl.php:257
msgid "You and %s user"
msgid_plural "You and %d users"
msgstr[0] ""
msgstr[1] ""

#: includes/functions-yith-wcwl.php:257
msgid "another"
msgstr ""

#: includes/functions-yith-wcwl.php:258
msgid "have this item in wishlist"
msgstr ""

#: includes/functions-yith-wcwl.php:425
msgid "None"
msgstr ""

#: includes/functions-yith-wcwl.php:426
#, fuzzy
msgid "Custom"
msgstr "הכנס שורות CSS משלך"

#: includes/functions-yith-wcwl.php:447
msgid "Shared"
msgstr "שתף ברשת:"

#: includes/functions-yith-wcwl.php:451
msgid "Only people with a link to this list can see it"
msgstr ""

#: includes/functions-yith-wcwl.php:457
msgid "Private"
msgstr ""

#: includes/functions-yith-wcwl.php:461
msgid "Only you can see this list"
msgstr ""

#: includes/functions-yith-wcwl.php:467
msgid "Public"
msgstr ""

#: includes/functions-yith-wcwl.php:471
msgid "Anyone can search for and see this list"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:118
#: plugin-options/add_to_wishlist-options.php:127
msgid "Add to wishlist"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:128
#: plugin-options/add_to_wishlist-options.php:143
msgid "Browse wishlist"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:138
#, fuzzy
msgid "Product already in wishlist"
msgstr "המוצר עדיין נמצא ברשימת המשאלות שלך."

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:148
#, fuzzy
msgid "Product added to wishlist"
msgstr "המוצר עדיין נמצא ברשימת המשאלות שלך."

#: init.php:160
msgid "is enabled but not effective. It requires WooCommerce to work."
msgstr ""

#: init.php:176
msgid "You can't activate the free version of"
msgstr ""

#: init.php:176
msgid "while you are using the premium one."
msgstr ""

#: plugin-options/add_to_wishlist-options.php:20
#: plugin-options/settings-options.php:27
msgid "General Settings"
msgstr "הגדרות כלליות"

#: plugin-options/add_to_wishlist-options.php:27
msgid "After product is added to wishlist"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:28
msgid ""
"Choose the look of the Wishlist button when the product has already been "
"added to a wishlist"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:32
#, fuzzy
msgid "Show \"Add to wishlist\" button"
msgstr "המוצר עדיין נמצא ברשימת המשאלות שלך."

#: plugin-options/add_to_wishlist-options.php:33
msgid "Show \"View wishlist\" link"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:34
msgid "Show \"Remove from list\" link"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:48
msgid "Loop settings"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:50
msgid ""
"Loop options will be visible on Shop page, category pages, product "
"shortcodes, products sliders, and all the other places where the WooCommerce "
"products' loop is used"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:55
msgid "Show \"Add to wishlist\" in loop"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:56
msgid "Enable the \"Add to wishlist\" feature in WooCommerce products' loop"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:64
msgid "Position of \"Add to wishlist\" in loop"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:65
msgid ""
"Choose where to show \"Add to wishlist\" button or link in WooCommerce "
"products' loop. <span class=\"addon\">Copy this shortcode <span class=\"code"
"\"><code>[yith_wcwl_add_to_wishlist]</code></span> and paste it where you "
"want to show the \"Add to wishlist\" link or button</span>"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:72
msgid "On top of the image"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:73
msgid "Before \"Add to cart\" button"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:74
msgid "After \"Add to cart\" button"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:75
#: plugin-options/add_to_wishlist-options.php:107
msgid "Use shortcode"
msgstr "השתמש בקוד מקוצר"

#: plugin-options/add_to_wishlist-options.php:89
msgid "Product page settings"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:96
msgid "Position of \"Add to wishlist\" on product page"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:97
msgid ""
"Choose where to show \"Add to wishlist\" button or link on the product page. "
"<span class=\"addon\">Copy this shortcode <span class=\"code"
"\"><code>[yith_wcwl_add_to_wishlist]</code></span> and paste it where you "
"want to show the \"Add to wishlist\" link or button</span>"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:104
msgid "After \"Add to cart\""
msgstr "לאחר \"הוספה לסל\""

#: plugin-options/add_to_wishlist-options.php:105
msgid "After thumbnails"
msgstr "אחרי התמונות המוקטנות"

#: plugin-options/add_to_wishlist-options.php:106
msgid "After summary"
msgstr "אחרי תיאור מוצר"

#: plugin-options/add_to_wishlist-options.php:117
#: plugin-options/wishlist_page-options.php:222
msgid "Text customization"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:124
msgid "\"Add to wishlist\" text"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:125
msgid "Enter a text for \"Add to wishlist\" button"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:132
msgid "\"Product added\" text"
msgstr "המוצר נשמר!"

#: plugin-options/add_to_wishlist-options.php:133
msgid ""
"Enter the text of the message displayed when the user adds a product to the "
"wishlist"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:135
msgid "Product added!"
msgstr "המוצר נשמר!"

#: plugin-options/add_to_wishlist-options.php:140
msgid "\"Browse wishlist\" text"
msgstr "צפה ברשימת השמורים שלך"

#: plugin-options/add_to_wishlist-options.php:141
msgid "Enter a text for the \"Browse wishlist\" link on the product page"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:148
msgid "\"Product already in wishlist\" text"
msgstr "המוצר עדיין נמצא ברשימת המשאלות שלך."

#: plugin-options/add_to_wishlist-options.php:149
msgid ""
"Enter the text for the message displayed when the user views a product that "
"is already in the wishlist"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:151
msgid "The product is already in your wishlist!"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:161
msgid "Style & Color customization"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:168
msgid "Style of \"Add to wishlist\""
msgstr ""

#: plugin-options/add_to_wishlist-options.php:169
msgid ""
"Choose if you want to show a textual \"Add to wishlist\" link or a button"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:172
#: plugin-options/wishlist_page-options.php:261
msgid "Textual (anchor)"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:173
#: plugin-options/wishlist_page-options.php:262
msgid "Button with theme style"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:174
#: plugin-options/wishlist_page-options.php:263
msgid "Button with custom style"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:182
msgid "\"Add to wishlist\" button style"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:188
msgid "Choose colors for the \"Add to wishlist\" button"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:190
#: plugin-options/wishlist_page-options.php:279
#: plugin-options/wishlist_page-options.php:368
#: plugin-options/wishlist_page-options.php:417
#: plugin-options/wishlist_page-options.php:465
#: plugin-options/wishlist_page-options.php:552
#: plugin-options/wishlist_page-options.php:592
#: plugin-options/wishlist_page-options.php:632
#: plugin-options/wishlist_page-options.php:672
#: plugin-options/wishlist_page-options.php:712
msgid "Background"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:195
#: plugin-options/wishlist_page-options.php:284
#: plugin-options/wishlist_page-options.php:373
#: plugin-options/wishlist_page-options.php:422
#: plugin-options/wishlist_page-options.php:470
#: plugin-options/wishlist_page-options.php:507
msgid "Text"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:200
#: plugin-options/wishlist_page-options.php:289
#: plugin-options/wishlist_page-options.php:378
#: plugin-options/wishlist_page-options.php:427
#: plugin-options/wishlist_page-options.php:475
msgid "Border"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:206
msgid "Choose colors for the \"Add to wishlist\" button on hover state"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:208
#: plugin-options/wishlist_page-options.php:297
#: plugin-options/wishlist_page-options.php:386
#: plugin-options/wishlist_page-options.php:435
msgid "Background Hover"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:213
#: plugin-options/wishlist_page-options.php:302
#: plugin-options/wishlist_page-options.php:391
#: plugin-options/wishlist_page-options.php:440
msgid "Text Hover"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:218
#: plugin-options/wishlist_page-options.php:307
#: plugin-options/wishlist_page-options.php:396
#: plugin-options/wishlist_page-options.php:445
msgid "Border Hover"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:231
#: plugin-options/wishlist_page-options.php:320
msgid "Border radius"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:232
msgid "Choose radius for the \"Add to wishlist\" button"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:246
msgid "\"Add to wishlist\" icon"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:247
msgid "Select an icon for the \"Add to wishlist\" button (optional)"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:257
msgid "\"Add to wishlist\" custom icon"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:258
#: plugin-options/add_to_wishlist-options.php:282
msgid ""
"Upload an icon you'd like to use for \"Add to wishlist\" button (suggested "
"32px x 32px)"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:270
msgid "\"Added to wishlist\" icon"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:271
msgid "Select an icon for the \"Added to wishlist\" button (optional)"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:277
msgid "Same used for Add to wishlist"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:281
msgid "\"Added to wishlist\" custom icon"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:294
msgid "Custom CSS"
msgstr "הכנס שורות CSS משלך"

#: plugin-options/add_to_wishlist-options.php:295
msgid "Enter custom CSS to be applied to Wishlist elements (optional)"
msgstr ""

#: plugin-options/lists-options.php:34
msgid "Search list"
msgstr ""

#. translators: 1. Anchor to Frequently Bought Together landing page on
#. yithemes.com.
#: plugin-options/settings-options.php:19
msgid ""
"If you want to take advantage of this feature, you could consider purchasing "
"the %s."
msgstr ""

#: plugin-options/settings-options.php:34
msgid "Enable AJAX loading"
msgstr ""

#: plugin-options/settings-options.php:35
msgid "Load any cacheable wishlist item via AJAX"
msgstr ""

#: plugin-options/settings-options.php:48
msgid "YITH WooCommerce Frequently Bought Together Integration"
msgstr ""

#. translators: 1. Url to Frequently Bought Together landing page on
#. yithemes.com.
#: plugin-options/settings-options.php:51
msgid ""
"In order to use this integration you have to install and activate YITH "
"WooCommerce Frequently Bought Together. <a href=\"%s\">Learn more</a>"
msgstr ""

#: plugin-options/settings-options.php:56
msgid "Enable slider in wishlist"
msgstr ""

#. translators: 1. Example image of the integration. 2. CTA to buy Frequently
#. Bought Together.
#: plugin-options/settings-options.php:58
msgid ""
"Enable the slider with linked products on the Wishlist page (<a href=\"%1$s"
"\" class=\"thickbox\">Example</a>). %2$s"
msgstr ""

#: plugin-options/wishlist_page-options.php:19
msgid "All your wishlists"
msgstr ""

#: plugin-options/wishlist_page-options.php:26
msgid "Wishlist page"
msgstr ""

#: plugin-options/wishlist_page-options.php:27
msgid ""
"Pick a page as the main Wishlist page; make sure you add the <span class="
"\"code\"><code>[yith_wcwl_wishlist]</code></span> shortcode into the page "
"content"
msgstr ""

#: plugin-options/wishlist_page-options.php:40
msgid "Wishlist Detail Page"
msgstr ""

#: plugin-options/wishlist_page-options.php:47
#: plugin-options/wishlist_page-options.php:56
#: plugin-options/wishlist_page-options.php:65
#: plugin-options/wishlist_page-options.php:74
#: plugin-options/wishlist_page-options.php:83
#: plugin-options/wishlist_page-options.php:92
#: plugin-options/wishlist_page-options.php:101
msgid "In wishlist table show"
msgstr ""

#: plugin-options/wishlist_page-options.php:48
msgid "Product variations selected by the user (example: size or color)"
msgstr ""

#: plugin-options/wishlist_page-options.php:57
msgid "Product price"
msgstr ""

#: plugin-options/wishlist_page-options.php:66
msgid "Product stock (show if the product is available or not)"
msgstr ""

#: plugin-options/wishlist_page-options.php:75
msgid "Date on which the product was added to the wishlist"
msgstr ""

#: plugin-options/wishlist_page-options.php:84
msgid "Add to cart option for each product"
msgstr ""

#: plugin-options/wishlist_page-options.php:93
msgid ""
"Icon to remove the product from the wishlist - to the left of the product"
msgstr ""

#: plugin-options/wishlist_page-options.php:102
msgid ""
"Button to remove the product from the wishlist - to the right of the product"
msgstr ""

#: plugin-options/wishlist_page-options.php:110
msgid "Redirect to cart"
msgstr "הפנייה לסל הקניות"

#: plugin-options/wishlist_page-options.php:111
msgid ""
"Redirect users to the cart page when they add a product to the cart from the "
"wishlist page"
msgstr ""

#: plugin-options/wishlist_page-options.php:119
msgid "Remove if added to the cart"
msgstr "הסר מהרשימה אם הוסף לסל"

#: plugin-options/wishlist_page-options.php:120
msgid ""
"Remove the product from the wishlist after it has been added to the cart"
msgstr ""

#: plugin-options/wishlist_page-options.php:128
msgid "Share wishlist"
msgstr ""

#: plugin-options/wishlist_page-options.php:129
msgid "Enable this option to let users share their wishlist on social media"
msgstr ""

#: plugin-options/wishlist_page-options.php:137
#: plugin-options/wishlist_page-options.php:146
#: plugin-options/wishlist_page-options.php:155
#: plugin-options/wishlist_page-options.php:164
#: plugin-options/wishlist_page-options.php:173
msgid "Share on social media"
msgstr ""

#: plugin-options/wishlist_page-options.php:165
msgid "Share by email"
msgstr ""

#: plugin-options/wishlist_page-options.php:182
msgid "Share by URL"
msgstr ""

#: plugin-options/wishlist_page-options.php:183
msgid "Show \"Share URL\" field on wishlist page"
msgstr ""

#: plugin-options/wishlist_page-options.php:191
msgid "Sharing title"
msgstr ""

#: plugin-options/wishlist_page-options.php:192
msgid "Wishlist title used for sharing (only used on Twitter and Pinterest)"
msgstr ""

#. translators: 1. Blog name.
#: plugin-options/wishlist_page-options.php:195
msgid "My wishlist on %s"
msgstr "רשימת המשאלות שלי ב-%s"

#: plugin-options/wishlist_page-options.php:200
msgid "Social text"
msgstr ""

#: plugin-options/wishlist_page-options.php:201
msgid ""
"Type the message you want to publish when you share your wishlist on Twitter "
"and Pinterest"
msgstr ""

#: plugin-options/wishlist_page-options.php:209
msgid "Social image URL"
msgstr ""

#: plugin-options/wishlist_page-options.php:210
msgid "It will be used to pin the wishlist on Pinterest."
msgstr ""

#: plugin-options/wishlist_page-options.php:229
msgid "Default wishlist name"
msgstr ""

#: plugin-options/wishlist_page-options.php:230
msgid ""
"Enter a name for the default wishlist. This is the wishlist that will be "
"automatically generated for all users if they do not create any custom one"
msgstr ""

#: plugin-options/wishlist_page-options.php:232
#, fuzzy
msgid "My wishlist"
msgstr "רשימת המשאלות שלי ב-%s"

#: plugin-options/wishlist_page-options.php:237
msgid "\"Add to cart\" text"
msgstr ""

#: plugin-options/wishlist_page-options.php:238
msgid "Enter a text for the \"Add to cart\" button"
msgstr ""

#: plugin-options/wishlist_page-options.php:250
msgid "Style & color customization"
msgstr ""

#: plugin-options/wishlist_page-options.php:257
msgid "Style of \"Add to cart\""
msgstr ""

#: plugin-options/wishlist_page-options.php:258
msgid "Choose whether to show a textual \"Add to cart\" link or a button"
msgstr ""

#: plugin-options/wishlist_page-options.php:271
msgid "\"Add to cart\" button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:277
msgid "Choose the colors for the \"Add to cart\" button"
msgstr ""

#: plugin-options/wishlist_page-options.php:295
msgid "Choose colors for the \"Add to cart\" button on hover state"
msgstr ""

#: plugin-options/wishlist_page-options.php:321
msgid "Set the radius for the \"Add to cart\" button"
msgstr ""

#: plugin-options/wishlist_page-options.php:335
msgid "\"Add to cart\" icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:336
msgid "Select an icon for the \"Add to cart\" button (optional)"
msgstr ""

#: plugin-options/wishlist_page-options.php:351
msgid "\"Add to cart\" custom icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:352
msgid ""
"Upload an icon you'd like to use for the \"Add to cart\" button (suggested "
"32px x 32px)"
msgstr ""

#: plugin-options/wishlist_page-options.php:360
msgid "Primary button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:366
msgid ""
"Choose colors for the primary button<br/><small>This style will be applied "
"to \"Edit title\" button on Wishlist view, \"Submit Changes\" button on "
"Manage view and \"Search wishlist\" button on Search view</small>"
msgstr ""

#: plugin-options/wishlist_page-options.php:384
msgid ""
"Choose colors for the primary button on hover state<br/><small>This style "
"will be applied to \"Edit title\" button on Wishlist view, \"Submit Changes"
"\" button on Manage view and \"Search wishlist\" button on Search view</"
"small>"
msgstr ""

#: plugin-options/wishlist_page-options.php:409
msgid "Secondary button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:415
#: plugin-options/wishlist_page-options.php:433
msgid ""
"Choose colors of the secondary button<br/><small>This style will be applied "
"to the buttons that allow showing and hiding the Edit title form on Wishlist "
"view and \"Create new Wishlist\" button on Manage view</small>"
msgstr ""

#: plugin-options/wishlist_page-options.php:458
msgid "Wishlist table style"
msgstr ""

#: plugin-options/wishlist_page-options.php:459
msgid ""
"Choose the colors for the wishlist table (when set to \"Traditional\" layout)"
msgstr ""

#: plugin-options/wishlist_page-options.php:487
msgid "Highlight color"
msgstr ""

#: plugin-options/wishlist_page-options.php:488
msgid ""
"Choose the color for all sections with background<br/><small>This color will "
"be used as background for the wishlist table heading and footer (when set to "
"\"Traditional\" layout), and for various form across wishlist views</small>"
msgstr ""

#: plugin-options/wishlist_page-options.php:500
msgid "Share button text color"
msgstr ""

#: plugin-options/wishlist_page-options.php:501
msgid "Choose colors for share buttons text"
msgstr ""

#: plugin-options/wishlist_page-options.php:512
msgid "Text hover"
msgstr ""

#: plugin-options/wishlist_page-options.php:525
msgid "Facebook share button icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:526
msgid "Select an icon for the Facebook share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:536
msgid "Facebook share button custom icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:537
msgid ""
"Upload an icon you'd like to use for Facebook share button (suggested 32px x "
"32px)"
msgstr ""

#: plugin-options/wishlist_page-options.php:545
msgid "Facebook share button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:546
msgid "Choose colors for Facebook share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:557
#: plugin-options/wishlist_page-options.php:597
#: plugin-options/wishlist_page-options.php:637
#: plugin-options/wishlist_page-options.php:677
#: plugin-options/wishlist_page-options.php:717
msgid "Background hover"
msgstr ""

#: plugin-options/wishlist_page-options.php:565
msgid "Twitter share button icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:566
msgid "Select an icon for the Twitter share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:576
msgid "Twitter share button custom icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:577
msgid ""
"Upload an icon you'd like to use for Twitter share button (suggested 32px x "
"32px)"
msgstr ""

#: plugin-options/wishlist_page-options.php:585
msgid "Twitter share button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:586
msgid "Choose colors for Twitter share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:605
msgid "Pinterest share button icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:606
msgid "Select an icon for the Pinterest share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:616
msgid "Pinterest share button custom icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:617
msgid ""
"Upload an icon you'd like to use for Pinterest share button (suggested 32px "
"x 32px)"
msgstr ""

#: plugin-options/wishlist_page-options.php:625
msgid "Pinterest share button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:626
msgid "Choose colors for Pinterest share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:645
msgid "Email share button icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:646
msgid "Select an icon for the Email share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:656
msgid "Email share button custom icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:657
msgid ""
"Upload an icon you'd like to use for the Email share button (suggested 32px "
"x 32px)"
msgstr ""

#: plugin-options/wishlist_page-options.php:665
msgid "Email share button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:666
msgid "Choose colors for the Email share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:685
msgid "WhatsApp share button icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:686
msgid "Select an icon for the WhatsApp share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:696
msgid "WhatsApp share button custom icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:697
msgid ""
"Upload an icon you'd like to use for WhatsApp share button (suggested 32px x "
"32px)"
msgstr ""

#: plugin-options/wishlist_page-options.php:705
msgid "WhatsApp share button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:706
msgid "Choose colors for WhatsApp share button"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:168
#: templates/admin/wishlist-panel-premium.php:309
msgid ""
"Upgrade to the %1$spremium version%2$s%3$sof %1$sYITH WooCommerce Wishlist"
"%2$s to benefit from all features!"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:170
#: templates/admin/wishlist-panel-premium.php:311
msgid "Upgrade"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:176
msgid "Premium Features"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:180
msgid "Allow your customers to create multiple wishlists"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:182
msgid ""
"Christmas, Birthday... users will be able to create and manage multiple "
"wishlists, in case they prefer to keep the products sorted by category or "
"other parameters."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:185
msgid "Multiple Wishlist"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:192
msgid "Wishlist Private"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:196
msgid "A transparent privacy management"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:198
msgid ""
"Your customers can set a privacy option for each wishlist and choose whether "
"sharing the wishlist or making it private."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:206
msgid ""
"Allow your customers to ask for an estimate, directly from their wishlist "
"page"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:208
msgid ""
"And give only registered users the privilege to use the wishlist "
"functionalities."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:211
msgid "Estimate Cost"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:218
msgid "Admin Panel"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:222
msgid "An advanced and more versatile management of the wishlist"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:224
msgid ""
"Your customers can sort the products in the wishlist thanks to the drag&drop "
"option, move products from one wishlist to another, manage product quantity, "
"download the wishlist content to a .pdf file, share the wishlist on their "
"social networks, and much more!"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:232
msgid "Monitor your customers’ wishlists and the popular products"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:234
msgid ""
"You can see your customers’ wishlists, gain insight into the products they "
"are more interested in and plan targeted marketing strategies."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:237
msgid "Search Wishlists"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:244
msgid "'ADD TO CART'"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:248
msgid ""
"Send promotional emails for products in wishlists to push customers to buy"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:250
msgid ""
"Just three clicks to send promotional emails with discount coupons to "
"customers who have added specific products to their wishlist and push them "
"to buy."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:258
msgid "Let users buy the product right from the wishlist page"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:260
msgid ""
"Let them move products from one wishlist to the cart in one click, keeping "
"also the information about the size, colour or quantity selected when added "
"to the wishlist."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:263
msgid "DISABLE WISHLIST"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:271
msgid "Choose a charming layout for your wishlist page"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:273
msgid ""
"The wishlist is one of the most used functionalities in an ecommerce store "
"but often the page layout is not enhanced enough and looks unattractive to "
"the user. With our plugin, you can choose among some alternative layouts and "
"offer an even more interesting experience to users who creates a wishlist on "
"your website."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:276
msgid "UNLOGGED USERS"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:284
msgid "Wishlist widgets for the header and sidebars"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:286
msgid ""
"Increase the wishlist visibility through our modern widgets that you can use "
"in the header, in the sidebars, wherever you want."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:289
msgid "POPULAR TABLE"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:296
msgid "FUNCTIONALITIES"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:300
msgid "Allow users to monitor the price of the products in their wishlist"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:302
msgid ""
"We took inspiration from one of the most interesting features of Amazon "
"product pages: from now on, users can realise what’s the best time to buy a "
"product and how much they can save when there’s a promotion running or a "
"discount on the product they’ve added to the wishlist."
msgstr ""

#: templates/share.php:51 templates/share.php:52
msgid "Facebook"
msgstr "פייסבוק"

#: templates/share.php:59 templates/share.php:60
msgid "Twitter"
msgstr "טוויטר"

#: templates/share.php:67 templates/share.php:68
msgid "Pinterest"
msgstr ""

#: templates/share.php:75 templates/share.php:76
msgid "Email"
msgstr ""

#: templates/share.php:83
msgid "WhatsApp"
msgstr ""

#: templates/share.php:84
msgid "Whatsapp"
msgstr ""

#: templates/share.php:93
msgid "(Now"
msgstr ""

#: templates/share.php:93
msgid "copy"
msgstr ""

#: templates/share.php:93
msgid "this wishlist link and share it anywhere)"
msgstr ""

#: templates/wishlist-view-footer-mobile.php:44
#: templates/wishlist-view-footer.php:44
msgid "Apply this action to all the selected items:"
msgstr ""

#: templates/wishlist-view-footer-mobile.php:49
#: templates/wishlist-view-footer.php:49
msgid "Remove from wishlist"
msgstr ""

#. translators: 1. Wishlist formatted name.
#: templates/wishlist-view-footer-mobile.php:67
#: templates/wishlist-view-footer.php:67
msgid "Move to %s"
msgstr ""

#: templates/wishlist-view-footer-mobile.php:73
#: templates/wishlist-view-footer.php:73
msgid "Apply"
msgstr ""

#: templates/wishlist-view-footer-mobile.php:81
#: templates/wishlist-view-footer.php:81
msgid "Update"
msgstr ""

#: templates/wishlist-view-footer-mobile.php:87
#: templates/wishlist-view-footer.php:103
msgid "Add all to cart"
msgstr ""

#: templates/wishlist-view-header.php:48
msgid "Edit title"
msgstr "כותרת רשימת משאלות"

#: templates/wishlist-view-mobile.php:136
msgid "Added on:"
msgstr ""

#: templates/wishlist-view-mobile.php:147
msgid "Price:"
msgstr ""

#: templates/wishlist-view-mobile.php:174
msgid "Quantity:"
msgstr ""

#: templates/wishlist-view-mobile.php:189
msgid "Stock:"
msgstr ""

#: templates/wishlist-view-mobile.php:192 templates/wishlist-view.php:229
msgid "Out of stock"
msgstr ""

#: templates/wishlist-view-mobile.php:192 templates/wishlist-view.php:229
msgid "In Stock"
msgstr "קיים במלאי"

#: templates/wishlist-view-mobile.php:212 templates/wishlist-view.php:262
msgid "Move"
msgstr ""

#: templates/wishlist-view-mobile.php:233 templates/wishlist-view.php:283
msgid "Move to another list &rsaquo;"
msgstr ""

#: templates/wishlist-view-mobile.php:241 templates/wishlist-view.php:157
#: templates/wishlist-view.php:293
msgid "Remove this product"
msgstr "הסרת מוצר מהרשימה"

#: templates/wishlist-view-mobile.php:252 templates/wishlist-view.php:313
msgid "No products added to the wishlist"
msgstr ""

#: templates/wishlist-view.php:79
msgid "Product name"
msgstr ""

#: templates/wishlist-view.php:87
msgid "Unit price"
msgstr ""

#: templates/wishlist-view.php:96
msgid "Quantity"
msgstr ""

#: templates/wishlist-view.php:105
msgid "Stock status"
msgstr ""

#: templates/wishlist-view.php:123
msgid "Arrange"
msgstr ""

#. translators: date added label: 1 date added.
#: templates/wishlist-view.php:243
msgid "Added on: %s"
msgstr ""

#: templates/wishlist-view.php:293
msgid "Remove"
msgstr ""

#. Description of the plugin/theme
msgid ""
"<code><strong>YITH WooCommerce Wishlist</strong></code> gives your users the "
"possibility to create, fill, manage and share their wishlists allowing you "
"to analyze their interests and needs to improve your marketing strategies. "
"<a href=\"https://yithemes.com/\" target=\"_blank\">Get more plugins for "
"your e-commerce on <strong>YITH</strong></a>"
msgstr ""

#: includes/class-yith-wcwl-admin.php:261
msgctxt "[HELP TAB] Video title"
msgid ""
"Check this video to learn how to <b>configure wishlist and customize options:"
"</b>"
msgstr ""

#: includes/class-yith-wcwl-install.php:340
msgctxt "page_slug"
msgid "wishlist"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:230
msgctxt "date when wishlist was created"
msgid "Created on"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:52
msgctxt "[gutenberg]: block name"
msgid "YITH Add to wishlist"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:101
msgctxt "[gutenberg]: block name"
msgid "YITH Wishlist"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:53
msgctxt "[gutenberg]: block description"
msgid "Shows Add to wishlist button"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:102
msgctxt "[gutenberg]: block description"
msgid "Shows a list of products in wishlist"
msgstr ""

#. translators: 1. % of reduction/increase in price.
#: includes/class-yith-wcwl-wishlist-item.php:428
msgctxt ""
"Part of the template that shows price variation since addition to list; "
"placeholder will be replaced with a percentage"
msgid "Price is %1$s%%"
msgstr ""

#. translators: 2: original product price.
#: includes/class-yith-wcwl-wishlist-item.php:430
msgctxt ""
"Part of the template that shows price variation since addition to list; "
"placeholder will be replaced with a price"
msgid "(Was %2$s when added  in list)"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:45
msgctxt "Elementor widget name"
msgid "YITH Wishlist Add button"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:45
#, fuzzy
msgctxt "Elementor widget name"
msgid "YITH Wishlist"
msgstr "רשימת משאלות"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:87
#, fuzzy
msgctxt "Elementor section title"
msgid "Product"
msgstr "המוצר נשמר!"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:107
msgctxt "Elementor section title"
msgid "Labels"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:157
msgctxt "Elementor section title"
msgid "Advanced"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:87
#, fuzzy
msgctxt "Elementor section title"
msgid "Wishlist"
msgstr "רשימת משאלות"

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:107
msgctxt "Elementor section title"
msgid "Pagination"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:95
#, fuzzy
msgctxt "Elementor control label"
msgid "Product ID"
msgstr "המוצר נשמר!"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:115
msgctxt "Elementor control label"
msgid "Button label"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:125
#, fuzzy
msgctxt "Elementor control label"
msgid "\"Browse wishlist\" label"
msgstr "צפה ברשימת השמורים שלך"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:135
#, fuzzy
msgctxt "Elementor control label"
msgid "\"Product already in wishlist\" label"
msgstr "המוצר עדיין נמצא ברשימת המשאלות שלך."

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:145
#, fuzzy
msgctxt "Elementor control label"
msgid "\"Product added to wishlist\" label"
msgstr "המוצר עדיין נמצא ברשימת המשאלות שלך."

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:165
msgctxt "Elementor control label"
msgid "URL of the wishlist page"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:175
msgctxt "Elementor control label"
msgid "Icon for the button"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:185
msgctxt "Elementor control label"
msgid "Additional CSS classes for the button"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:95
#, fuzzy
msgctxt "Elementor control label"
msgid "Wishlist ID"
msgstr "רשימת משאלות"

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:115
msgctxt "Elementor control label"
msgid "Paginate items"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:128
msgctxt "yith-woocommerce-wishlist"
msgid "Items per page"
msgstr ""

#~ msgid "My wishlist on "
#~ msgstr "רשימת המשאלות שלי ב-%s"

#~ msgid "YITH WooCommerce Wishlist"
#~ msgstr "הוסף לרשימת המשאלות"
PK`x1\�ȉ�

,languages/yith-woocommerce-wishlist-tr_TR.monu�[�����",/<��"%H
\j
{
�6������	-K\x��	������
�	0:Om}���	��1	=	
F	
Q	_	f	�	�	�	!�	�	�	

3
G
`
y
�
�
�
�
�
�
�
 
!	"
"Browse wishlist" text"Product added" text"Product already in wishlist" textAfter "Add to cart"After summaryAfter thumbnailsCustom CSSEdit titleError. Unable to remove the product from the wishlist.FacebookFree!General SettingsIn StockMy wishlist on %sPin on PinterestPinterestProduct added!Product successfully removed.Redirect to cartRemove if added to the cartRemove this productRemoved wishlist %s.Share on FacebookShare on:SharedSocial image URLSocial textTweet on TwitterTwitterUse shortcodeWishlistWishlist %s has been retained.WishlistsProject-Id-Version: YITH WooCommerce Wishlist
Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/yith-woocommerce-wishlist
POT-Creation-Date: 2021-11-11 13:53:53+00:00
PO-Revision-Date: 2020-10-16 14:06+0200
Last-Translator: Caner Öncel <caneroncel@gmail.com>
Language-Team: Caner Öncel (@egonomik) <caneroncel@gmail.com>
Language: tr_TR
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;_n:1,2;__ngettext:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2
X-Poedit-Basepath: .
Plural-Forms: nplurals=2; plural=n!=1;
X-Poedit-SourceCharset: UTF-8
X-Generator: Poedit 2.4.1
X-Poedit-SearchPath-0: ..
X-Poedit-SearchPathExcluded-0: ../plugin-fw
İstek Listesini GörüntüleÜrün eklendi!Ürün zaten istek listenizde."Sepete Ekle"den sonraÖzet bilgisinden sonraKüçük resimlerden sonraÖzel CSSİstek listesi başlığıHata. Ürün istek listenizden kaldırılamadı. FacebookÜcretsiz!Genel AyarlarStokta%s üzerinde istek listemPinterest'te PinlePinterest'te PinleÜrün eklendi!Ürün başarıyla kaldırıldı.Sepete yönlendirSepete eklenmişse kaldırBu ürünü kaldır%s üzerinde istek listemFacebook'ta PaylaşPaylaşım seçenekleri:Paylaşım seçenekleri:Sosyal medya resim URL'iSosyal medya metniTwitter'da TweetleTwitterKısa kod kullanİstek Listesiİstek listesi tablo metniİstek ListesiPK`x1\U��,ԬԬ'languages/yith-woocommerce-wishlist.potnu�[���# Copyright (C) 2021 YITH
# This file is distributed under the same license as the YITH WooCommerce Wishlist package.
msgid ""
msgstr ""
"Project-Id-Version: YITH WooCommerce Wishlist Premium\n"
"Report-Msgid-Bugs-To: "
"https://wordpress.org/support/plugin/yith-woocommerce-wishlist\n"
"POT-Creation-Date: 2021-11-11 13:53:53+00:00\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"PO-Revision-Date: 2021-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: YITH <plugins@yithemes.com>\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;_n:1,2;__ngettext:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_"
"x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;esc_attr__;esc_attr_e;esc_html__"
";esc_html_e\n"
"X-Poedit-Basepath: ..\n"
"X-Poedit-SearchPath-0: .\n"
"X-Poedit-Bookmarks: \n"
"X-Textdomain-Support: yes\n"
"X-Poedit-SearchPathExcluded-0: plugin-fw\n"
"X-Poedit-SearchPathExcluded-1: plugin-upgrade\n"
"X-Poedit-SearchPathExcluded-2: node_modules\n"
"X-Generator: grunt-wp-i18n 1.0.3\n"

#: includes/class-yith-wcwl-admin.php:126
msgid "Wishlist Page"
msgstr ""

#: includes/class-yith-wcwl-admin.php:148
msgid "General settings"
msgstr ""

#: includes/class-yith-wcwl-admin.php:149
msgid "Add to wishlist options"
msgstr ""

#: includes/class-yith-wcwl-admin.php:150
msgid "Wishlist page options"
msgstr ""

#: includes/class-yith-wcwl-admin.php:151
msgid "Premium Version"
msgstr ""

#: includes/class-yith-wcwl-admin.php:249
#: includes/class-yith-wcwl-install.php:342
msgid "Wishlist"
msgstr ""

#: includes/class-yith-wcwl-admin.php:251
msgid ""
"Allows your customers to create and share lists of products that they want "
"to purchase on your e-commerce."
msgstr ""

#: includes/class-yith-wcwl-ajax-handler.php:75
#: templates/add-to-wishlist-remove.php:59
msgid "View &rsaquo;"
msgstr ""

#: includes/class-yith-wcwl-ajax-handler.php:76
#: templates/add-to-wishlist-remove.php:58
msgid "or"
msgstr ""

#: includes/class-yith-wcwl-ajax-handler.php:77
msgid "Close"
msgstr ""

#: includes/class-yith-wcwl-ajax-handler.php:155
#: includes/class-yith-wcwl-ajax-handler.php:195
msgid "Product successfully removed."
msgstr ""

#: includes/class-yith-wcwl-form-handler.php:156
msgid "Please, make sure to enter a valid title"
msgstr ""

#: includes/class-yith-wcwl-frontend.php:461
msgid ""
"We are sorry, but this feature is available only if cookies on your browser "
"are enabled."
msgstr ""

#: includes/class-yith-wcwl-frontend.php:462
msgid "Product added to cart successfully"
msgstr ""

#: includes/class-yith-wcwl-frontend.php:725
#: includes/class-yith-wcwl-shortcode.php:239
#: plugin-options/wishlist_page-options.php:240
#: templates/wishlist-view-footer-mobile.php:46
#: templates/wishlist-view-footer.php:46
msgid "Add to cart"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:52
msgid "While you visit our site, we’ll track:"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:54
msgid ""
"Products you’ve added to the wishlist: we’ll use this to show you and other "
"users your favourite products, and to create targeted email campaigns."
msgstr ""

#: includes/class-yith-wcwl-privacy.php:55
msgid ""
"Wishlists you’ve created: we’ll keep track of the wishlists you create, and "
"make them visible to the store staff"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:57
msgid ""
"We’ll also use cookies to keep track of wishlist contents while you’re "
"browsing our site."
msgstr ""

#: includes/class-yith-wcwl-privacy.php:60
msgid ""
"Members of our team have access to the information you provide us with. For "
"example, both Administrators and Shop Managers can access:"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:62
msgid ""
"Wishlist details, such as products added, date of addition, name and "
"privacy settings of your wishlists"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:64
msgid ""
"Our team members have access to this information to offer you better deals "
"for the products you love."
msgstr ""

#: includes/class-yith-wcwl-privacy.php:84
#: includes/class-yith-wcwl-privacy.php:100
msgid "Customer wishlists"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:137 plugin-options/lists-options.php:25
#: plugin-options/lists-options.php:32
msgid "Wishlists"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:199
#. Translators: %s Order number.
msgid "Removed wishlist %s."
msgstr ""

#: includes/class-yith-wcwl-privacy.php:203
#. Translators: %s Order number.
msgid "Wishlist %s has been retained."
msgstr ""

#: includes/class-yith-wcwl-privacy.php:227
msgid "Token"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:228
msgid "Wishlist URL"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:229
msgid "Title"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:231
msgid "Visibility"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:232
msgid "Items added"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:58
msgid ""
"ID of the product to add to the wishlist (leave empty to use the global "
"product)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:63
msgid "URL of the wishlist page (leave empty to use the default settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:68
msgid "Button label (leave empty to use the default settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:73
msgid "\"Browse wishlist\" label (leave empty to use the default settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:78
msgid ""
"\"Product already in wishlist\" label (leave empty to use the default "
"settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:83
msgid ""
"\"Product added to wishlist\" label (leave empty to use the default "
"settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:88
msgid ""
"Icon for the button (use any FontAwesome valid class, or leave empty to use "
"the default settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:93
msgid ""
"Additional CSS classes for the button (leave empty to use the default "
"settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:107
msgid "Choose whether to paginate items in the wishlist or show them all"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:110
#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:118
msgid "Paginate"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:111
#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:119
msgid "Do not paginate"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:116
msgid "Number of items to show per page"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:121
msgid "ID of the wishlist to show (e.g. K6EOWXB888ZD)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:414
msgid "Share on:"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:438
#: plugin-options/wishlist_page-options.php:138
msgid "Share on Facebook"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:455
#: plugin-options/wishlist_page-options.php:147
msgid "Tweet on Twitter"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:473
#: plugin-options/wishlist_page-options.php:156
msgid "Pin on Pinterest"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:487
msgid "Share via email"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:510
#: plugin-options/wishlist_page-options.php:174
msgid "Share on WhatsApp"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:621
msgid "Remove from list"
msgstr ""

#: includes/class-yith-wcwl-wishlist-item.php:189
msgid "Free!"
msgstr ""

#: includes/class-yith-wcwl.php:164
msgid "The item cannot be added to this wishlist"
msgstr ""

#: includes/class-yith-wcwl.php:168 includes/class-yith-wcwl.php:174
msgid "An error occurred while adding the products to the wishlist."
msgstr ""

#: includes/class-yith-wcwl.php:235 includes/class-yith-wcwl.php:241
msgid "Error. Unable to remove the product from the wishlist."
msgstr ""

#: includes/data-stores/class-yith-wcwl-wishlist-data-store.php:152
#: includes/data-stores/class-yith-wcwl-wishlist-data-store.php:174
msgid "Invalid wishlist."
msgstr ""

#: includes/data-stores/class-yith-wcwl-wishlist-item-data-store.php:119
msgid "Invalid wishlist item."
msgstr ""

#: includes/functions-yith-wcwl.php:249
#. translators: 1. Number of users.
msgid "%d user"
msgid_plural "%d users"
msgstr[0] ""
msgstr[1] ""

#: includes/functions-yith-wcwl.php:250
msgid "has this item in wishlist"
msgid_plural "have this item in wishlist"
msgstr[0] ""
msgstr[1] ""

#: includes/functions-yith-wcwl.php:252
msgid "You're the first"
msgstr ""

#: includes/functions-yith-wcwl.php:253
msgid "to add this item in wishlist"
msgstr ""

#: includes/functions-yith-wcwl.php:257
#. translators: 1. Count of users when many, or "another" when only one.
msgid "You and %s user"
msgid_plural "You and %d users"
msgstr[0] ""
msgstr[1] ""

#: includes/functions-yith-wcwl.php:257
msgid "another"
msgstr ""

#: includes/functions-yith-wcwl.php:258
msgid "have this item in wishlist"
msgstr ""

#: includes/functions-yith-wcwl.php:425
msgid "None"
msgstr ""

#: includes/functions-yith-wcwl.php:426
msgid "Custom"
msgstr ""

#: includes/functions-yith-wcwl.php:447
msgid "Shared"
msgstr ""

#: includes/functions-yith-wcwl.php:451
msgid "Only people with a link to this list can see it"
msgstr ""

#: includes/functions-yith-wcwl.php:457
msgid "Private"
msgstr ""

#: includes/functions-yith-wcwl.php:461
msgid "Only you can see this list"
msgstr ""

#: includes/functions-yith-wcwl.php:467
msgid "Public"
msgstr ""

#: includes/functions-yith-wcwl.php:471
msgid "Anyone can search for and see this list"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:118
#: plugin-options/add_to_wishlist-options.php:127
msgid "Add to wishlist"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:128
#: plugin-options/add_to_wishlist-options.php:143
msgid "Browse wishlist"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:138
msgid "Product already in wishlist"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:148
msgid "Product added to wishlist"
msgstr ""

#: init.php:160
msgid "is enabled but not effective. It requires WooCommerce to work."
msgstr ""

#: init.php:176
msgid "You can't activate the free version of"
msgstr ""

#: init.php:176
msgid "while you are using the premium one."
msgstr ""

#: plugin-options/add_to_wishlist-options.php:20
#: plugin-options/settings-options.php:27
msgid "General Settings"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:27
msgid "After product is added to wishlist"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:28
msgid ""
"Choose the look of the Wishlist button when the product has already been "
"added to a wishlist"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:32
msgid "Show \"Add to wishlist\" button"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:33
msgid "Show \"View wishlist\" link"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:34
msgid "Show \"Remove from list\" link"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:48
msgid "Loop settings"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:50
msgid ""
"Loop options will be visible on Shop page, category pages, product "
"shortcodes, products sliders, and all the other places where the "
"WooCommerce products' loop is used"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:55
msgid "Show \"Add to wishlist\" in loop"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:56
msgid "Enable the \"Add to wishlist\" feature in WooCommerce products' loop"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:64
msgid "Position of \"Add to wishlist\" in loop"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:65
msgid ""
"Choose where to show \"Add to wishlist\" button or link in WooCommerce "
"products' loop. <span class=\"addon\">Copy this shortcode <span "
"class=\"code\"><code>[yith_wcwl_add_to_wishlist]</code></span> and paste it "
"where you want to show the \"Add to wishlist\" link or button</span>"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:72
msgid "On top of the image"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:73
msgid "Before \"Add to cart\" button"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:74
msgid "After \"Add to cart\" button"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:75
#: plugin-options/add_to_wishlist-options.php:107
msgid "Use shortcode"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:89
msgid "Product page settings"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:96
msgid "Position of \"Add to wishlist\" on product page"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:97
msgid ""
"Choose where to show \"Add to wishlist\" button or link on the product "
"page. <span class=\"addon\">Copy this shortcode <span "
"class=\"code\"><code>[yith_wcwl_add_to_wishlist]</code></span> and paste it "
"where you want to show the \"Add to wishlist\" link or button</span>"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:104
msgid "After \"Add to cart\""
msgstr ""

#: plugin-options/add_to_wishlist-options.php:105
msgid "After thumbnails"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:106
msgid "After summary"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:117
#: plugin-options/wishlist_page-options.php:222
msgid "Text customization"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:124
msgid "\"Add to wishlist\" text"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:125
msgid "Enter a text for \"Add to wishlist\" button"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:132
msgid "\"Product added\" text"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:133
msgid ""
"Enter the text of the message displayed when the user adds a product to the "
"wishlist"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:135
msgid "Product added!"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:140
msgid "\"Browse wishlist\" text"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:141
msgid "Enter a text for the \"Browse wishlist\" link on the product page"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:148
msgid "\"Product already in wishlist\" text"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:149
msgid ""
"Enter the text for the message displayed when the user views a product that "
"is already in the wishlist"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:151
msgid "The product is already in your wishlist!"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:161
msgid "Style & Color customization"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:168
msgid "Style of \"Add to wishlist\""
msgstr ""

#: plugin-options/add_to_wishlist-options.php:169
msgid "Choose if you want to show a textual \"Add to wishlist\" link or a button"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:172
#: plugin-options/wishlist_page-options.php:261
msgid "Textual (anchor)"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:173
#: plugin-options/wishlist_page-options.php:262
msgid "Button with theme style"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:174
#: plugin-options/wishlist_page-options.php:263
msgid "Button with custom style"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:182
msgid "\"Add to wishlist\" button style"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:188
msgid "Choose colors for the \"Add to wishlist\" button"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:190
#: plugin-options/wishlist_page-options.php:279
#: plugin-options/wishlist_page-options.php:368
#: plugin-options/wishlist_page-options.php:417
#: plugin-options/wishlist_page-options.php:465
#: plugin-options/wishlist_page-options.php:552
#: plugin-options/wishlist_page-options.php:592
#: plugin-options/wishlist_page-options.php:632
#: plugin-options/wishlist_page-options.php:672
#: plugin-options/wishlist_page-options.php:712
msgid "Background"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:195
#: plugin-options/wishlist_page-options.php:284
#: plugin-options/wishlist_page-options.php:373
#: plugin-options/wishlist_page-options.php:422
#: plugin-options/wishlist_page-options.php:470
#: plugin-options/wishlist_page-options.php:507
msgid "Text"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:200
#: plugin-options/wishlist_page-options.php:289
#: plugin-options/wishlist_page-options.php:378
#: plugin-options/wishlist_page-options.php:427
#: plugin-options/wishlist_page-options.php:475
msgid "Border"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:206
msgid "Choose colors for the \"Add to wishlist\" button on hover state"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:208
#: plugin-options/wishlist_page-options.php:297
#: plugin-options/wishlist_page-options.php:386
#: plugin-options/wishlist_page-options.php:435
msgid "Background Hover"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:213
#: plugin-options/wishlist_page-options.php:302
#: plugin-options/wishlist_page-options.php:391
#: plugin-options/wishlist_page-options.php:440
msgid "Text Hover"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:218
#: plugin-options/wishlist_page-options.php:307
#: plugin-options/wishlist_page-options.php:396
#: plugin-options/wishlist_page-options.php:445
msgid "Border Hover"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:231
#: plugin-options/wishlist_page-options.php:320
msgid "Border radius"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:232
msgid "Choose radius for the \"Add to wishlist\" button"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:246
msgid "\"Add to wishlist\" icon"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:247
msgid "Select an icon for the \"Add to wishlist\" button (optional)"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:257
msgid "\"Add to wishlist\" custom icon"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:258
#: plugin-options/add_to_wishlist-options.php:282
msgid ""
"Upload an icon you'd like to use for \"Add to wishlist\" button (suggested "
"32px x 32px)"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:270
msgid "\"Added to wishlist\" icon"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:271
msgid "Select an icon for the \"Added to wishlist\" button (optional)"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:277
msgid "Same used for Add to wishlist"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:281
msgid "\"Added to wishlist\" custom icon"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:294
msgid "Custom CSS"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:295
msgid "Enter custom CSS to be applied to Wishlist elements (optional)"
msgstr ""

#: plugin-options/lists-options.php:34
msgid "Search list"
msgstr ""

#: plugin-options/settings-options.php:19
#. translators: 1. Anchor to Frequently Bought Together landing page on
#. yithemes.com.
msgid ""
"If you want to take advantage of this feature, you could consider "
"purchasing the %s."
msgstr ""

#: plugin-options/settings-options.php:34
msgid "Enable AJAX loading"
msgstr ""

#: plugin-options/settings-options.php:35
msgid "Load any cacheable wishlist item via AJAX"
msgstr ""

#: plugin-options/settings-options.php:48
msgid "YITH WooCommerce Frequently Bought Together Integration"
msgstr ""

#: plugin-options/settings-options.php:51
#. translators: 1. Url to Frequently Bought Together landing page on
#. yithemes.com.
msgid ""
"In order to use this integration you have to install and activate YITH "
"WooCommerce Frequently Bought Together. <a href=\"%s\">Learn more</a>"
msgstr ""

#: plugin-options/settings-options.php:56
msgid "Enable slider in wishlist"
msgstr ""

#: plugin-options/settings-options.php:58
#. translators: 1. Example image of the integration. 2. CTA to buy Frequently
#. Bought Together.
msgid ""
"Enable the slider with linked products on the Wishlist page (<a "
"href=\"%1$s\" class=\"thickbox\">Example</a>). %2$s"
msgstr ""

#: plugin-options/wishlist_page-options.php:19
msgid "All your wishlists"
msgstr ""

#: plugin-options/wishlist_page-options.php:26
msgid "Wishlist page"
msgstr ""

#: plugin-options/wishlist_page-options.php:27
msgid ""
"Pick a page as the main Wishlist page; make sure you add the <span "
"class=\"code\"><code>[yith_wcwl_wishlist]</code></span> shortcode into the "
"page content"
msgstr ""

#: plugin-options/wishlist_page-options.php:40
msgid "Wishlist Detail Page"
msgstr ""

#: plugin-options/wishlist_page-options.php:47
#: plugin-options/wishlist_page-options.php:56
#: plugin-options/wishlist_page-options.php:65
#: plugin-options/wishlist_page-options.php:74
#: plugin-options/wishlist_page-options.php:83
#: plugin-options/wishlist_page-options.php:92
#: plugin-options/wishlist_page-options.php:101
msgid "In wishlist table show"
msgstr ""

#: plugin-options/wishlist_page-options.php:48
msgid "Product variations selected by the user (example: size or color)"
msgstr ""

#: plugin-options/wishlist_page-options.php:57
msgid "Product price"
msgstr ""

#: plugin-options/wishlist_page-options.php:66
msgid "Product stock (show if the product is available or not)"
msgstr ""

#: plugin-options/wishlist_page-options.php:75
msgid "Date on which the product was added to the wishlist"
msgstr ""

#: plugin-options/wishlist_page-options.php:84
msgid "Add to cart option for each product"
msgstr ""

#: plugin-options/wishlist_page-options.php:93
msgid "Icon to remove the product from the wishlist - to the left of the product"
msgstr ""

#: plugin-options/wishlist_page-options.php:102
msgid "Button to remove the product from the wishlist - to the right of the product"
msgstr ""

#: plugin-options/wishlist_page-options.php:110
msgid "Redirect to cart"
msgstr ""

#: plugin-options/wishlist_page-options.php:111
msgid ""
"Redirect users to the cart page when they add a product to the cart from "
"the wishlist page"
msgstr ""

#: plugin-options/wishlist_page-options.php:119
msgid "Remove if added to the cart"
msgstr ""

#: plugin-options/wishlist_page-options.php:120
msgid "Remove the product from the wishlist after it has been added to the cart"
msgstr ""

#: plugin-options/wishlist_page-options.php:128
msgid "Share wishlist"
msgstr ""

#: plugin-options/wishlist_page-options.php:129
msgid "Enable this option to let users share their wishlist on social media"
msgstr ""

#: plugin-options/wishlist_page-options.php:137
#: plugin-options/wishlist_page-options.php:146
#: plugin-options/wishlist_page-options.php:155
#: plugin-options/wishlist_page-options.php:164
#: plugin-options/wishlist_page-options.php:173
msgid "Share on social media"
msgstr ""

#: plugin-options/wishlist_page-options.php:165
msgid "Share by email"
msgstr ""

#: plugin-options/wishlist_page-options.php:182
msgid "Share by URL"
msgstr ""

#: plugin-options/wishlist_page-options.php:183
msgid "Show \"Share URL\" field on wishlist page"
msgstr ""

#: plugin-options/wishlist_page-options.php:191
msgid "Sharing title"
msgstr ""

#: plugin-options/wishlist_page-options.php:192
msgid "Wishlist title used for sharing (only used on Twitter and Pinterest)"
msgstr ""

#: plugin-options/wishlist_page-options.php:195
#. translators: 1. Blog name.
msgid "My wishlist on %s"
msgstr ""

#: plugin-options/wishlist_page-options.php:200
msgid "Social text"
msgstr ""

#: plugin-options/wishlist_page-options.php:201
msgid ""
"Type the message you want to publish when you share your wishlist on "
"Twitter and Pinterest"
msgstr ""

#: plugin-options/wishlist_page-options.php:209
msgid "Social image URL"
msgstr ""

#: plugin-options/wishlist_page-options.php:210
msgid "It will be used to pin the wishlist on Pinterest."
msgstr ""

#: plugin-options/wishlist_page-options.php:229
msgid "Default wishlist name"
msgstr ""

#: plugin-options/wishlist_page-options.php:230
msgid ""
"Enter a name for the default wishlist. This is the wishlist that will be "
"automatically generated for all users if they do not create any custom one"
msgstr ""

#: plugin-options/wishlist_page-options.php:232
msgid "My wishlist"
msgstr ""

#: plugin-options/wishlist_page-options.php:237
msgid "\"Add to cart\" text"
msgstr ""

#: plugin-options/wishlist_page-options.php:238
msgid "Enter a text for the \"Add to cart\" button"
msgstr ""

#: plugin-options/wishlist_page-options.php:250
msgid "Style & color customization"
msgstr ""

#: plugin-options/wishlist_page-options.php:257
msgid "Style of \"Add to cart\""
msgstr ""

#: plugin-options/wishlist_page-options.php:258
msgid "Choose whether to show a textual \"Add to cart\" link or a button"
msgstr ""

#: plugin-options/wishlist_page-options.php:271
msgid "\"Add to cart\" button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:277
msgid "Choose the colors for the \"Add to cart\" button"
msgstr ""

#: plugin-options/wishlist_page-options.php:295
msgid "Choose colors for the \"Add to cart\" button on hover state"
msgstr ""

#: plugin-options/wishlist_page-options.php:321
msgid "Set the radius for the \"Add to cart\" button"
msgstr ""

#: plugin-options/wishlist_page-options.php:335
msgid "\"Add to cart\" icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:336
msgid "Select an icon for the \"Add to cart\" button (optional)"
msgstr ""

#: plugin-options/wishlist_page-options.php:351
msgid "\"Add to cart\" custom icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:352
msgid ""
"Upload an icon you'd like to use for the \"Add to cart\" button (suggested "
"32px x 32px)"
msgstr ""

#: plugin-options/wishlist_page-options.php:360
msgid "Primary button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:366
msgid ""
"Choose colors for the primary button<br/><small>This style will be applied "
"to \"Edit title\" button on Wishlist view, \"Submit Changes\" button on "
"Manage view and \"Search wishlist\" button on Search view</small>"
msgstr ""

#: plugin-options/wishlist_page-options.php:384
msgid ""
"Choose colors for the primary button on hover state<br/><small>This style "
"will be applied to \"Edit title\" button on Wishlist view, \"Submit "
"Changes\" button on Manage view and \"Search wishlist\" button on Search "
"view</small>"
msgstr ""

#: plugin-options/wishlist_page-options.php:409
msgid "Secondary button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:415
#: plugin-options/wishlist_page-options.php:433
msgid ""
"Choose colors of the secondary button<br/><small>This style will be applied "
"to the buttons that allow showing and hiding the Edit title form on "
"Wishlist view and \"Create new Wishlist\" button on Manage view</small>"
msgstr ""

#: plugin-options/wishlist_page-options.php:458
msgid "Wishlist table style"
msgstr ""

#: plugin-options/wishlist_page-options.php:459
msgid ""
"Choose the colors for the wishlist table (when set to \"Traditional\" "
"layout)"
msgstr ""

#: plugin-options/wishlist_page-options.php:487
msgid "Highlight color"
msgstr ""

#: plugin-options/wishlist_page-options.php:488
msgid ""
"Choose the color for all sections with background<br/><small>This color "
"will be used as background for the wishlist table heading and footer (when "
"set to \"Traditional\" layout), and for various form across wishlist "
"views</small>"
msgstr ""

#: plugin-options/wishlist_page-options.php:500
msgid "Share button text color"
msgstr ""

#: plugin-options/wishlist_page-options.php:501
msgid "Choose colors for share buttons text"
msgstr ""

#: plugin-options/wishlist_page-options.php:512
msgid "Text hover"
msgstr ""

#: plugin-options/wishlist_page-options.php:525
msgid "Facebook share button icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:526
msgid "Select an icon for the Facebook share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:536
msgid "Facebook share button custom icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:537
msgid ""
"Upload an icon you'd like to use for Facebook share button (suggested 32px "
"x 32px)"
msgstr ""

#: plugin-options/wishlist_page-options.php:545
msgid "Facebook share button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:546
msgid "Choose colors for Facebook share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:557
#: plugin-options/wishlist_page-options.php:597
#: plugin-options/wishlist_page-options.php:637
#: plugin-options/wishlist_page-options.php:677
#: plugin-options/wishlist_page-options.php:717
msgid "Background hover"
msgstr ""

#: plugin-options/wishlist_page-options.php:565
msgid "Twitter share button icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:566
msgid "Select an icon for the Twitter share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:576
msgid "Twitter share button custom icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:577
msgid ""
"Upload an icon you'd like to use for Twitter share button (suggested 32px x "
"32px)"
msgstr ""

#: plugin-options/wishlist_page-options.php:585
msgid "Twitter share button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:586
msgid "Choose colors for Twitter share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:605
msgid "Pinterest share button icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:606
msgid "Select an icon for the Pinterest share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:616
msgid "Pinterest share button custom icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:617
msgid ""
"Upload an icon you'd like to use for Pinterest share button (suggested 32px "
"x 32px)"
msgstr ""

#: plugin-options/wishlist_page-options.php:625
msgid "Pinterest share button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:626
msgid "Choose colors for Pinterest share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:645
msgid "Email share button icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:646
msgid "Select an icon for the Email share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:656
msgid "Email share button custom icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:657
msgid ""
"Upload an icon you'd like to use for the Email share button (suggested 32px "
"x 32px)"
msgstr ""

#: plugin-options/wishlist_page-options.php:665
msgid "Email share button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:666
msgid "Choose colors for the Email share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:685
msgid "WhatsApp share button icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:686
msgid "Select an icon for the WhatsApp share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:696
msgid "WhatsApp share button custom icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:697
msgid ""
"Upload an icon you'd like to use for WhatsApp share button (suggested 32px "
"x 32px)"
msgstr ""

#: plugin-options/wishlist_page-options.php:705
msgid "WhatsApp share button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:706
msgid "Choose colors for WhatsApp share button"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:168
#: templates/admin/wishlist-panel-premium.php:309
msgid ""
"Upgrade to the %1$spremium version%2$s%3$sof %1$sYITH WooCommerce "
"Wishlist%2$s to benefit from all features!"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:170
#: templates/admin/wishlist-panel-premium.php:311
msgid "Upgrade"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:176
msgid "Premium Features"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:180
msgid "Allow your customers to create multiple wishlists"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:182
msgid ""
"Christmas, Birthday... users will be able to create and manage multiple "
"wishlists, in case they prefer to keep the products sorted by category or "
"other parameters."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:185
msgid "Multiple Wishlist"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:192
msgid "Wishlist Private"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:196
msgid "A transparent privacy management"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:198
msgid ""
"Your customers can set a privacy option for each wishlist and choose "
"whether sharing the wishlist or making it private."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:206
msgid ""
"Allow your customers to ask for an estimate, directly from their wishlist "
"page"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:208
msgid ""
"And give only registered users the privilege to use the wishlist "
"functionalities."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:211
msgid "Estimate Cost"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:218
msgid "Admin Panel"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:222
msgid "An advanced and more versatile management of the wishlist"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:224
msgid ""
"Your customers can sort the products in the wishlist thanks to the "
"drag&drop option, move products from one wishlist to another, manage "
"product quantity, download the wishlist content to a .pdf file, share the "
"wishlist on their social networks, and much more!"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:232
msgid "Monitor your customers’ wishlists and the popular products"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:234
msgid ""
"You can see your customers’ wishlists, gain insight into the products they "
"are more interested in and plan targeted marketing strategies."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:237
msgid "Search Wishlists"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:244
msgid "'ADD TO CART'"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:248
msgid "Send promotional emails for products in wishlists to push customers to buy"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:250
msgid ""
"Just three clicks to send promotional emails with discount coupons to "
"customers who have added specific products to their wishlist and push them "
"to buy."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:258
msgid "Let users buy the product right from the wishlist page"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:260
msgid ""
"Let them move products from one wishlist to the cart in one click, keeping "
"also the information about the size, colour or quantity selected when added "
"to the wishlist."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:263
msgid "DISABLE WISHLIST"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:271
msgid "Choose a charming layout for your wishlist page"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:273
msgid ""
"The wishlist is one of the most used functionalities in an ecommerce store "
"but often the page layout is not enhanced enough and looks unattractive to "
"the user. With our plugin, you can choose among some alternative layouts "
"and offer an even more interesting experience to users who creates a "
"wishlist on your website."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:276
msgid "UNLOGGED USERS"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:284
msgid "Wishlist widgets for the header and sidebars"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:286
msgid ""
"Increase the wishlist visibility through our modern widgets that you can "
"use in the header, in the sidebars, wherever you want."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:289
msgid "POPULAR TABLE"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:296
msgid "FUNCTIONALITIES"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:300
msgid "Allow users to monitor the price of the products in their wishlist"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:302
msgid ""
"We took inspiration from one of the most interesting features of Amazon "
"product pages: from now on, users can realise what’s the best time to buy a "
"product and how much they can save when there’s a promotion running or a "
"discount on the product they’ve added to the wishlist."
msgstr ""

#: templates/share.php:51 templates/share.php:52
msgid "Facebook"
msgstr ""

#: templates/share.php:59 templates/share.php:60
msgid "Twitter"
msgstr ""

#: templates/share.php:67 templates/share.php:68
msgid "Pinterest"
msgstr ""

#: templates/share.php:75 templates/share.php:76
msgid "Email"
msgstr ""

#: templates/share.php:83
msgid "WhatsApp"
msgstr ""

#: templates/share.php:84
msgid "Whatsapp"
msgstr ""

#: templates/share.php:93
msgid "(Now"
msgstr ""

#: templates/share.php:93
msgid "copy"
msgstr ""

#: templates/share.php:93
msgid "this wishlist link and share it anywhere)"
msgstr ""

#: templates/wishlist-view-footer-mobile.php:44
#: templates/wishlist-view-footer.php:44
msgid "Apply this action to all the selected items:"
msgstr ""

#: templates/wishlist-view-footer-mobile.php:49
#: templates/wishlist-view-footer.php:49
msgid "Remove from wishlist"
msgstr ""

#: templates/wishlist-view-footer-mobile.php:67
#: templates/wishlist-view-footer.php:67
#. translators: 1. Wishlist formatted name.
msgid "Move to %s"
msgstr ""

#: templates/wishlist-view-footer-mobile.php:73
#: templates/wishlist-view-footer.php:73
msgid "Apply"
msgstr ""

#: templates/wishlist-view-footer-mobile.php:81
#: templates/wishlist-view-footer.php:81
msgid "Update"
msgstr ""

#: templates/wishlist-view-footer-mobile.php:87
#: templates/wishlist-view-footer.php:103
msgid "Add all to cart"
msgstr ""

#: templates/wishlist-view-header.php:48
msgid "Edit title"
msgstr ""

#: templates/wishlist-view-mobile.php:136
msgid "Added on:"
msgstr ""

#: templates/wishlist-view-mobile.php:147
msgid "Price:"
msgstr ""

#: templates/wishlist-view-mobile.php:174
msgid "Quantity:"
msgstr ""

#: templates/wishlist-view-mobile.php:189
msgid "Stock:"
msgstr ""

#: templates/wishlist-view-mobile.php:192 templates/wishlist-view.php:229
msgid "Out of stock"
msgstr ""

#: templates/wishlist-view-mobile.php:192 templates/wishlist-view.php:229
msgid "In Stock"
msgstr ""

#: templates/wishlist-view-mobile.php:212 templates/wishlist-view.php:262
msgid "Move"
msgstr ""

#: templates/wishlist-view-mobile.php:233 templates/wishlist-view.php:283
msgid "Move to another list &rsaquo;"
msgstr ""

#: templates/wishlist-view-mobile.php:241 templates/wishlist-view.php:157
#: templates/wishlist-view.php:293
msgid "Remove this product"
msgstr ""

#: templates/wishlist-view-mobile.php:252 templates/wishlist-view.php:313
msgid "No products added to the wishlist"
msgstr ""

#: templates/wishlist-view.php:79
msgid "Product name"
msgstr ""

#: templates/wishlist-view.php:87
msgid "Unit price"
msgstr ""

#: templates/wishlist-view.php:96
msgid "Quantity"
msgstr ""

#: templates/wishlist-view.php:105
msgid "Stock status"
msgstr ""

#: templates/wishlist-view.php:123
msgid "Arrange"
msgstr ""

#: templates/wishlist-view.php:243
#. translators: date added label: 1 date added.
msgid "Added on: %s"
msgstr ""

#: templates/wishlist-view.php:293
msgid "Remove"
msgstr ""

#. Description of the plugin/theme
msgid ""
"<code><strong>YITH WooCommerce Wishlist</strong></code> gives your users "
"the possibility to create, fill, manage and share their wishlists allowing "
"you to analyze their interests and needs to improve your marketing "
"strategies. <a href=\"https://yithemes.com/\" target=\"_blank\">Get more "
"plugins for your e-commerce on <strong>YITH</strong></a>"
msgstr ""

#: includes/class-yith-wcwl-admin.php:261
msgctxt "[HELP TAB] Video title"
msgid ""
"Check this video to learn how to <b>configure wishlist and customize "
"options:</b>"
msgstr ""

#: includes/class-yith-wcwl-install.php:340
msgctxt "page_slug"
msgid "wishlist"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:230
msgctxt "date when wishlist was created"
msgid "Created on"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:52
msgctxt "[gutenberg]: block name"
msgid "YITH Add to wishlist"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:101
msgctxt "[gutenberg]: block name"
msgid "YITH Wishlist"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:53
msgctxt "[gutenberg]: block description"
msgid "Shows Add to wishlist button"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:102
msgctxt "[gutenberg]: block description"
msgid "Shows a list of products in wishlist"
msgstr ""

#: includes/class-yith-wcwl-wishlist-item.php:428
#. translators: 1. % of reduction/increase in price.
msgctxt ""
"Part of the template that shows price variation since addition to list; "
"placeholder will be replaced with a percentage"
msgid "Price is %1$s%%"
msgstr ""

#: includes/class-yith-wcwl-wishlist-item.php:430
#. translators: 2: original product price.
msgctxt ""
"Part of the template that shows price variation since addition to list; "
"placeholder will be replaced with a price"
msgid "(Was %2$s when added  in list)"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:45
msgctxt "Elementor widget name"
msgid "YITH Wishlist Add button"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:45
msgctxt "Elementor widget name"
msgid "YITH Wishlist"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:87
msgctxt "Elementor section title"
msgid "Product"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:107
msgctxt "Elementor section title"
msgid "Labels"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:157
msgctxt "Elementor section title"
msgid "Advanced"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:87
msgctxt "Elementor section title"
msgid "Wishlist"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:107
msgctxt "Elementor section title"
msgid "Pagination"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:95
msgctxt "Elementor control label"
msgid "Product ID"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:115
msgctxt "Elementor control label"
msgid "Button label"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:125
msgctxt "Elementor control label"
msgid "\"Browse wishlist\" label"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:135
msgctxt "Elementor control label"
msgid "\"Product already in wishlist\" label"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:145
msgctxt "Elementor control label"
msgid "\"Product added to wishlist\" label"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:165
msgctxt "Elementor control label"
msgid "URL of the wishlist page"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:175
msgctxt "Elementor control label"
msgid "Icon for the button"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:185
msgctxt "Elementor control label"
msgid "Additional CSS classes for the button"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:95
msgctxt "Elementor control label"
msgid "Wishlist ID"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:115
msgctxt "Elementor control label"
msgid "Paginate items"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:128
msgctxt "yith-woocommerce-wishlist"
msgid "Items per page"
msgstr ""PK`x1\�o�e��,languages/yith-woocommerce-wishlist-pl_PL.ponu�[���# Copyright (C) 2019 YITH WooCommerce Wishlist
# This file is distributed under the same license as the YITH WooCommerce Wishlist package.
msgid ""
msgstr ""
"Project-Id-Version: YITH WooCommerce Wishlist\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/yith-woocommerce-"
"wishlist\n"
"POT-Creation-Date: 2021-11-11 13:53:53+00:00\n"
"PO-Revision-Date: 2020-10-16 14:06+0200\n"
"Last-Translator: \n"
"Language-Team: Your Inspiration Themes <plugins@yithemes.com>\n"
"Language: pl_PL\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 2.4.1\n"
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;_n:1,2;__ngettext:1,2;"
"__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;"
"_nx_noop:4c,1,2\n"
"X-Poedit-Basepath: .\n"
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
"|| n%100>=20) ? 1 : 2);\n"
"X-Poedit-SourceCharset: UTF-8\n"
"X-Poedit-SearchPath-0: ..\n"
"X-Poedit-SearchPathExcluded-0: ../plugin-fw\n"

#: includes/class-yith-wcwl-admin.php:126
#, fuzzy
msgid "Wishlist Page"
msgstr "Obserwowane"

#: includes/class-yith-wcwl-admin.php:148
msgid "General settings"
msgstr ""

#: includes/class-yith-wcwl-admin.php:149
msgid "Add to wishlist options"
msgstr ""

#: includes/class-yith-wcwl-admin.php:150
msgid "Wishlist page options"
msgstr ""

#: includes/class-yith-wcwl-admin.php:151
msgid "Premium Version"
msgstr ""

#: includes/class-yith-wcwl-admin.php:249
#: includes/class-yith-wcwl-install.php:342
msgid "Wishlist"
msgstr "Obserwowane"

#: includes/class-yith-wcwl-admin.php:251
msgid ""
"Allows your customers to create and share lists of products that they want "
"to purchase on your e-commerce."
msgstr ""

#: includes/class-yith-wcwl-ajax-handler.php:75
#: templates/add-to-wishlist-remove.php:59
msgid "View &rsaquo;"
msgstr ""

#: includes/class-yith-wcwl-ajax-handler.php:76
#: templates/add-to-wishlist-remove.php:58
msgid "or"
msgstr ""

#: includes/class-yith-wcwl-ajax-handler.php:77
msgid "Close"
msgstr ""

#: includes/class-yith-wcwl-ajax-handler.php:155
#: includes/class-yith-wcwl-ajax-handler.php:195
msgid "Product successfully removed."
msgstr "Produkt został usunięty."

#: includes/class-yith-wcwl-form-handler.php:156
msgid "Please, make sure to enter a valid title"
msgstr ""

#: includes/class-yith-wcwl-frontend.php:461
msgid ""
"We are sorry, but this feature is available only if cookies on your browser "
"are enabled."
msgstr ""

#: includes/class-yith-wcwl-frontend.php:462
msgid "Product added to cart successfully"
msgstr ""

#: includes/class-yith-wcwl-frontend.php:725
#: includes/class-yith-wcwl-shortcode.php:239
#: plugin-options/wishlist_page-options.php:240
#: templates/wishlist-view-footer-mobile.php:46
#: templates/wishlist-view-footer.php:46
msgid "Add to cart"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:52
msgid "While you visit our site, we’ll track:"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:54
msgid ""
"Products you’ve added to the wishlist: we’ll use this to show you and other "
"users your favourite products, and to create targeted email campaigns."
msgstr ""

#: includes/class-yith-wcwl-privacy.php:55
msgid ""
"Wishlists you’ve created: we’ll keep track of the wishlists you create, and "
"make them visible to the store staff"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:57
msgid ""
"We’ll also use cookies to keep track of wishlist contents while you’re "
"browsing our site."
msgstr ""

#: includes/class-yith-wcwl-privacy.php:60
msgid ""
"Members of our team have access to the information you provide us with. For "
"example, both Administrators and Shop Managers can access:"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:62
msgid ""
"Wishlist details, such as products added, date of addition, name and privacy "
"settings of your wishlists"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:64
msgid ""
"Our team members have access to this information to offer you better deals "
"for the products you love."
msgstr ""

#: includes/class-yith-wcwl-privacy.php:84
#: includes/class-yith-wcwl-privacy.php:100
msgid "Customer wishlists"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:137 plugin-options/lists-options.php:25
#: plugin-options/lists-options.php:32
msgid "Wishlists"
msgstr "Obserwowane"

#. Translators: %s Order number.
#: includes/class-yith-wcwl-privacy.php:199
msgid "Removed wishlist %s."
msgstr "Moja lista życzeń: %s"

#. Translators: %s Order number.
#: includes/class-yith-wcwl-privacy.php:203
msgid "Wishlist %s has been retained."
msgstr ""

#: includes/class-yith-wcwl-privacy.php:227
msgid "Token"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:228
msgid "Wishlist URL"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:229
msgid "Title"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:231
msgid "Visibility"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:232
msgid "Items added"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:58
msgid ""
"ID of the product to add to the wishlist (leave empty to use the global "
"product)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:63
msgid "URL of the wishlist page (leave empty to use the default settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:68
msgid "Button label (leave empty to use the default settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:73
msgid "\"Browse wishlist\" label (leave empty to use the default settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:78
msgid ""
"\"Product already in wishlist\" label (leave empty to use the default "
"settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:83
msgid ""
"\"Product added to wishlist\" label (leave empty to use the default settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:88
msgid ""
"Icon for the button (use any FontAwesome valid class, or leave empty to use "
"the default settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:93
msgid ""
"Additional CSS classes for the button (leave empty to use the default "
"settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:107
msgid "Choose whether to paginate items in the wishlist or show them all"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:110
#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:118
msgid "Paginate"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:111
#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:119
msgid "Do not paginate"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:116
msgid "Number of items to show per page"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:121
msgid "ID of the wishlist to show (e.g. K6EOWXB888ZD)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:414
msgid "Share on:"
msgstr "Udostępnij na:"

#: includes/class-yith-wcwl-shortcode.php:438
#: plugin-options/wishlist_page-options.php:138
msgid "Share on Facebook"
msgstr "Udostępnij na Facebooku"

#: includes/class-yith-wcwl-shortcode.php:455
#: plugin-options/wishlist_page-options.php:147
msgid "Tweet on Twitter"
msgstr "Poleć na Twitterze"

#: includes/class-yith-wcwl-shortcode.php:473
#: plugin-options/wishlist_page-options.php:156
msgid "Pin on Pinterest"
msgstr "Poleć na Pintereście"

#: includes/class-yith-wcwl-shortcode.php:487
msgid "Share via email"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:510
#: plugin-options/wishlist_page-options.php:174
msgid "Share on WhatsApp"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:621
msgid "Remove from list"
msgstr ""

#: includes/class-yith-wcwl-wishlist-item.php:189
msgid "Free!"
msgstr "Darmowe!"

#: includes/class-yith-wcwl.php:164
msgid "The item cannot be added to this wishlist"
msgstr ""

#: includes/class-yith-wcwl.php:168 includes/class-yith-wcwl.php:174
msgid "An error occurred while adding the products to the wishlist."
msgstr ""

#: includes/class-yith-wcwl.php:235 includes/class-yith-wcwl.php:241
msgid "Error. Unable to remove the product from the wishlist."
msgstr "Błąd. Nie można usunąć produktu z listy życzeń."

#: includes/data-stores/class-yith-wcwl-wishlist-data-store.php:152
#: includes/data-stores/class-yith-wcwl-wishlist-data-store.php:174
msgid "Invalid wishlist."
msgstr ""

#: includes/data-stores/class-yith-wcwl-wishlist-item-data-store.php:119
msgid "Invalid wishlist item."
msgstr ""

#. translators: 1. Number of users.
#: includes/functions-yith-wcwl.php:249
msgid "%d user"
msgid_plural "%d users"
msgstr[0] ""
msgstr[1] ""
msgstr[2] ""

#: includes/functions-yith-wcwl.php:250
msgid "has this item in wishlist"
msgid_plural "have this item in wishlist"
msgstr[0] ""
msgstr[1] ""
msgstr[2] ""

#: includes/functions-yith-wcwl.php:252
msgid "You're the first"
msgstr ""

#: includes/functions-yith-wcwl.php:253
msgid "to add this item in wishlist"
msgstr ""

#. translators: 1. Count of users when many, or "another" when only one.
#: includes/functions-yith-wcwl.php:257
msgid "You and %s user"
msgid_plural "You and %d users"
msgstr[0] ""
msgstr[1] ""
msgstr[2] ""

#: includes/functions-yith-wcwl.php:257
msgid "another"
msgstr ""

#: includes/functions-yith-wcwl.php:258
msgid "have this item in wishlist"
msgstr ""

#: includes/functions-yith-wcwl.php:425
msgid "None"
msgstr ""

#: includes/functions-yith-wcwl.php:426
#, fuzzy
msgid "Custom"
msgstr "Własny CSS"

#: includes/functions-yith-wcwl.php:447
msgid "Shared"
msgstr "Udostępniony"

#: includes/functions-yith-wcwl.php:451
msgid "Only people with a link to this list can see it"
msgstr ""

#: includes/functions-yith-wcwl.php:457
msgid "Private"
msgstr "Prywatny"

#: includes/functions-yith-wcwl.php:461
msgid "Only you can see this list"
msgstr ""

#: includes/functions-yith-wcwl.php:467
msgid "Public"
msgstr "Publiczny"

#: includes/functions-yith-wcwl.php:471
msgid "Anyone can search for and see this list"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:118
#: plugin-options/add_to_wishlist-options.php:127
msgid "Add to wishlist"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:128
#: plugin-options/add_to_wishlist-options.php:143
msgid "Browse wishlist"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:138
msgid "Product already in wishlist"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:148
msgid "Product added to wishlist"
msgstr ""

#: init.php:160
msgid "is enabled but not effective. It requires WooCommerce to work."
msgstr ""

#: init.php:176
msgid "You can't activate the free version of"
msgstr ""

#: init.php:176
msgid "while you are using the premium one."
msgstr ""

#: plugin-options/add_to_wishlist-options.php:20
#: plugin-options/settings-options.php:27
msgid "General Settings"
msgstr "Ustawienia ogólne"

#: plugin-options/add_to_wishlist-options.php:27
msgid "After product is added to wishlist"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:28
msgid ""
"Choose the look of the Wishlist button when the product has already been "
"added to a wishlist"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:32
msgid "Show \"Add to wishlist\" button"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:33
msgid "Show \"View wishlist\" link"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:34
msgid "Show \"Remove from list\" link"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:48
msgid "Loop settings"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:50
msgid ""
"Loop options will be visible on Shop page, category pages, product "
"shortcodes, products sliders, and all the other places where the WooCommerce "
"products' loop is used"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:55
msgid "Show \"Add to wishlist\" in loop"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:56
msgid "Enable the \"Add to wishlist\" feature in WooCommerce products' loop"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:64
msgid "Position of \"Add to wishlist\" in loop"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:65
msgid ""
"Choose where to show \"Add to wishlist\" button or link in WooCommerce "
"products' loop. <span class=\"addon\">Copy this shortcode <span class=\"code"
"\"><code>[yith_wcwl_add_to_wishlist]</code></span> and paste it where you "
"want to show the \"Add to wishlist\" link or button</span>"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:72
msgid "On top of the image"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:73
msgid "Before \"Add to cart\" button"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:74
msgid "After \"Add to cart\" button"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:75
#: plugin-options/add_to_wishlist-options.php:107
msgid "Use shortcode"
msgstr "Użyj shortcode"

#: plugin-options/add_to_wishlist-options.php:89
msgid "Product page settings"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:96
msgid "Position of \"Add to wishlist\" on product page"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:97
msgid ""
"Choose where to show \"Add to wishlist\" button or link on the product page. "
"<span class=\"addon\">Copy this shortcode <span class=\"code"
"\"><code>[yith_wcwl_add_to_wishlist]</code></span> and paste it where you "
"want to show the \"Add to wishlist\" link or button</span>"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:104
msgid "After \"Add to cart\""
msgstr ""

#: plugin-options/add_to_wishlist-options.php:105
msgid "After thumbnails"
msgstr "Za miniaturami"

#: plugin-options/add_to_wishlist-options.php:106
msgid "After summary"
msgstr "Po podsumowaniu"

#: plugin-options/add_to_wishlist-options.php:117
#: plugin-options/wishlist_page-options.php:222
msgid "Text customization"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:124
msgid "\"Add to wishlist\" text"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:125
msgid "Enter a text for \"Add to wishlist\" button"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:132
msgid "\"Product added\" text"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:133
msgid ""
"Enter the text of the message displayed when the user adds a product to the "
"wishlist"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:135
msgid "Product added!"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:140
msgid "\"Browse wishlist\" text"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:141
msgid "Enter a text for the \"Browse wishlist\" link on the product page"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:148
msgid "\"Product already in wishlist\" text"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:149
msgid ""
"Enter the text for the message displayed when the user views a product that "
"is already in the wishlist"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:151
msgid "The product is already in your wishlist!"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:161
msgid "Style & Color customization"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:168
msgid "Style of \"Add to wishlist\""
msgstr ""

#: plugin-options/add_to_wishlist-options.php:169
msgid ""
"Choose if you want to show a textual \"Add to wishlist\" link or a button"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:172
#: plugin-options/wishlist_page-options.php:261
msgid "Textual (anchor)"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:173
#: plugin-options/wishlist_page-options.php:262
msgid "Button with theme style"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:174
#: plugin-options/wishlist_page-options.php:263
msgid "Button with custom style"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:182
msgid "\"Add to wishlist\" button style"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:188
msgid "Choose colors for the \"Add to wishlist\" button"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:190
#: plugin-options/wishlist_page-options.php:279
#: plugin-options/wishlist_page-options.php:368
#: plugin-options/wishlist_page-options.php:417
#: plugin-options/wishlist_page-options.php:465
#: plugin-options/wishlist_page-options.php:552
#: plugin-options/wishlist_page-options.php:592
#: plugin-options/wishlist_page-options.php:632
#: plugin-options/wishlist_page-options.php:672
#: plugin-options/wishlist_page-options.php:712
msgid "Background"
msgstr "Tło"

#: plugin-options/add_to_wishlist-options.php:195
#: plugin-options/wishlist_page-options.php:284
#: plugin-options/wishlist_page-options.php:373
#: plugin-options/wishlist_page-options.php:422
#: plugin-options/wishlist_page-options.php:470
#: plugin-options/wishlist_page-options.php:507
msgid "Text"
msgstr "Tekst"

#: plugin-options/add_to_wishlist-options.php:200
#: plugin-options/wishlist_page-options.php:289
#: plugin-options/wishlist_page-options.php:378
#: plugin-options/wishlist_page-options.php:427
#: plugin-options/wishlist_page-options.php:475
msgid "Border"
msgstr "Ramka"

#: plugin-options/add_to_wishlist-options.php:206
msgid "Choose colors for the \"Add to wishlist\" button on hover state"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:208
#: plugin-options/wishlist_page-options.php:297
#: plugin-options/wishlist_page-options.php:386
#: plugin-options/wishlist_page-options.php:435
msgid "Background Hover"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:213
#: plugin-options/wishlist_page-options.php:302
#: plugin-options/wishlist_page-options.php:391
#: plugin-options/wishlist_page-options.php:440
msgid "Text Hover"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:218
#: plugin-options/wishlist_page-options.php:307
#: plugin-options/wishlist_page-options.php:396
#: plugin-options/wishlist_page-options.php:445
msgid "Border Hover"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:231
#: plugin-options/wishlist_page-options.php:320
msgid "Border radius"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:232
msgid "Choose radius for the \"Add to wishlist\" button"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:246
msgid "\"Add to wishlist\" icon"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:247
msgid "Select an icon for the \"Add to wishlist\" button (optional)"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:257
msgid "\"Add to wishlist\" custom icon"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:258
#: plugin-options/add_to_wishlist-options.php:282
msgid ""
"Upload an icon you'd like to use for \"Add to wishlist\" button (suggested "
"32px x 32px)"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:270
msgid "\"Added to wishlist\" icon"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:271
msgid "Select an icon for the \"Added to wishlist\" button (optional)"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:277
msgid "Same used for Add to wishlist"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:281
msgid "\"Added to wishlist\" custom icon"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:294
msgid "Custom CSS"
msgstr "Własny CSS"

#: plugin-options/add_to_wishlist-options.php:295
msgid "Enter custom CSS to be applied to Wishlist elements (optional)"
msgstr ""

#: plugin-options/lists-options.php:34
msgid "Search list"
msgstr ""

#. translators: 1. Anchor to Frequently Bought Together landing page on
#. yithemes.com.
#: plugin-options/settings-options.php:19
msgid ""
"If you want to take advantage of this feature, you could consider purchasing "
"the %s."
msgstr ""

#: plugin-options/settings-options.php:34
msgid "Enable AJAX loading"
msgstr ""

#: plugin-options/settings-options.php:35
msgid "Load any cacheable wishlist item via AJAX"
msgstr ""

#: plugin-options/settings-options.php:48
msgid "YITH WooCommerce Frequently Bought Together Integration"
msgstr ""

#. translators: 1. Url to Frequently Bought Together landing page on
#. yithemes.com.
#: plugin-options/settings-options.php:51
msgid ""
"In order to use this integration you have to install and activate YITH "
"WooCommerce Frequently Bought Together. <a href=\"%s\">Learn more</a>"
msgstr ""

#: plugin-options/settings-options.php:56
msgid "Enable slider in wishlist"
msgstr ""

#. translators: 1. Example image of the integration. 2. CTA to buy Frequently
#. Bought Together.
#: plugin-options/settings-options.php:58
msgid ""
"Enable the slider with linked products on the Wishlist page (<a href=\"%1$s"
"\" class=\"thickbox\">Example</a>). %2$s"
msgstr ""

#: plugin-options/wishlist_page-options.php:19
msgid "All your wishlists"
msgstr ""

#: plugin-options/wishlist_page-options.php:26
msgid "Wishlist page"
msgstr ""

#: plugin-options/wishlist_page-options.php:27
msgid ""
"Pick a page as the main Wishlist page; make sure you add the <span class="
"\"code\"><code>[yith_wcwl_wishlist]</code></span> shortcode into the page "
"content"
msgstr ""

#: plugin-options/wishlist_page-options.php:40
msgid "Wishlist Detail Page"
msgstr ""

#: plugin-options/wishlist_page-options.php:47
#: plugin-options/wishlist_page-options.php:56
#: plugin-options/wishlist_page-options.php:65
#: plugin-options/wishlist_page-options.php:74
#: plugin-options/wishlist_page-options.php:83
#: plugin-options/wishlist_page-options.php:92
#: plugin-options/wishlist_page-options.php:101
msgid "In wishlist table show"
msgstr ""

#: plugin-options/wishlist_page-options.php:48
msgid "Product variations selected by the user (example: size or color)"
msgstr ""

#: plugin-options/wishlist_page-options.php:57
msgid "Product price"
msgstr ""

#: plugin-options/wishlist_page-options.php:66
msgid "Product stock (show if the product is available or not)"
msgstr ""

#: plugin-options/wishlist_page-options.php:75
msgid "Date on which the product was added to the wishlist"
msgstr ""

#: plugin-options/wishlist_page-options.php:84
msgid "Add to cart option for each product"
msgstr ""

#: plugin-options/wishlist_page-options.php:93
msgid ""
"Icon to remove the product from the wishlist - to the left of the product"
msgstr ""

#: plugin-options/wishlist_page-options.php:102
msgid ""
"Button to remove the product from the wishlist - to the right of the product"
msgstr ""

#: plugin-options/wishlist_page-options.php:110
msgid "Redirect to cart"
msgstr "Przekieruj do koszyka"

#: plugin-options/wishlist_page-options.php:111
msgid ""
"Redirect users to the cart page when they add a product to the cart from the "
"wishlist page"
msgstr ""

#: plugin-options/wishlist_page-options.php:119
msgid "Remove if added to the cart"
msgstr "Usuń jeśli dodane do koszyka"

#: plugin-options/wishlist_page-options.php:120
msgid ""
"Remove the product from the wishlist after it has been added to the cart"
msgstr ""

#: plugin-options/wishlist_page-options.php:128
msgid "Share wishlist"
msgstr ""

#: plugin-options/wishlist_page-options.php:129
msgid "Enable this option to let users share their wishlist on social media"
msgstr ""

#: plugin-options/wishlist_page-options.php:137
#: plugin-options/wishlist_page-options.php:146
#: plugin-options/wishlist_page-options.php:155
#: plugin-options/wishlist_page-options.php:164
#: plugin-options/wishlist_page-options.php:173
msgid "Share on social media"
msgstr ""

#: plugin-options/wishlist_page-options.php:165
msgid "Share by email"
msgstr ""

#: plugin-options/wishlist_page-options.php:182
msgid "Share by URL"
msgstr ""

#: plugin-options/wishlist_page-options.php:183
msgid "Show \"Share URL\" field on wishlist page"
msgstr ""

#: plugin-options/wishlist_page-options.php:191
msgid "Sharing title"
msgstr ""

#: plugin-options/wishlist_page-options.php:192
msgid "Wishlist title used for sharing (only used on Twitter and Pinterest)"
msgstr ""

#. translators: 1. Blog name.
#: plugin-options/wishlist_page-options.php:195
msgid "My wishlist on %s"
msgstr "Moja lista życzeń: %s"

#: plugin-options/wishlist_page-options.php:200
msgid "Social text"
msgstr ""

#: plugin-options/wishlist_page-options.php:201
msgid ""
"Type the message you want to publish when you share your wishlist on Twitter "
"and Pinterest"
msgstr ""

#: plugin-options/wishlist_page-options.php:209
msgid "Social image URL"
msgstr ""

#: plugin-options/wishlist_page-options.php:210
msgid "It will be used to pin the wishlist on Pinterest."
msgstr ""

#: plugin-options/wishlist_page-options.php:229
msgid "Default wishlist name"
msgstr ""

#: plugin-options/wishlist_page-options.php:230
msgid ""
"Enter a name for the default wishlist. This is the wishlist that will be "
"automatically generated for all users if they do not create any custom one"
msgstr ""

#: plugin-options/wishlist_page-options.php:232
#, fuzzy
msgid "My wishlist"
msgstr "Moja lista życzeń: %s"

#: plugin-options/wishlist_page-options.php:237
msgid "\"Add to cart\" text"
msgstr ""

#: plugin-options/wishlist_page-options.php:238
msgid "Enter a text for the \"Add to cart\" button"
msgstr ""

#: plugin-options/wishlist_page-options.php:250
msgid "Style & color customization"
msgstr ""

#: plugin-options/wishlist_page-options.php:257
msgid "Style of \"Add to cart\""
msgstr ""

#: plugin-options/wishlist_page-options.php:258
msgid "Choose whether to show a textual \"Add to cart\" link or a button"
msgstr ""

#: plugin-options/wishlist_page-options.php:271
msgid "\"Add to cart\" button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:277
msgid "Choose the colors for the \"Add to cart\" button"
msgstr ""

#: plugin-options/wishlist_page-options.php:295
msgid "Choose colors for the \"Add to cart\" button on hover state"
msgstr ""

#: plugin-options/wishlist_page-options.php:321
msgid "Set the radius for the \"Add to cart\" button"
msgstr ""

#: plugin-options/wishlist_page-options.php:335
msgid "\"Add to cart\" icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:336
msgid "Select an icon for the \"Add to cart\" button (optional)"
msgstr ""

#: plugin-options/wishlist_page-options.php:351
msgid "\"Add to cart\" custom icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:352
msgid ""
"Upload an icon you'd like to use for the \"Add to cart\" button (suggested "
"32px x 32px)"
msgstr ""

#: plugin-options/wishlist_page-options.php:360
msgid "Primary button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:366
msgid ""
"Choose colors for the primary button<br/><small>This style will be applied "
"to \"Edit title\" button on Wishlist view, \"Submit Changes\" button on "
"Manage view and \"Search wishlist\" button on Search view</small>"
msgstr ""

#: plugin-options/wishlist_page-options.php:384
msgid ""
"Choose colors for the primary button on hover state<br/><small>This style "
"will be applied to \"Edit title\" button on Wishlist view, \"Submit Changes"
"\" button on Manage view and \"Search wishlist\" button on Search view</"
"small>"
msgstr ""

#: plugin-options/wishlist_page-options.php:409
msgid "Secondary button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:415
#: plugin-options/wishlist_page-options.php:433
msgid ""
"Choose colors of the secondary button<br/><small>This style will be applied "
"to the buttons that allow showing and hiding the Edit title form on Wishlist "
"view and \"Create new Wishlist\" button on Manage view</small>"
msgstr ""

#: plugin-options/wishlist_page-options.php:458
msgid "Wishlist table style"
msgstr ""

#: plugin-options/wishlist_page-options.php:459
msgid ""
"Choose the colors for the wishlist table (when set to \"Traditional\" layout)"
msgstr ""

#: plugin-options/wishlist_page-options.php:487
msgid "Highlight color"
msgstr ""

#: plugin-options/wishlist_page-options.php:488
msgid ""
"Choose the color for all sections with background<br/><small>This color will "
"be used as background for the wishlist table heading and footer (when set to "
"\"Traditional\" layout), and for various form across wishlist views</small>"
msgstr ""

#: plugin-options/wishlist_page-options.php:500
msgid "Share button text color"
msgstr ""

#: plugin-options/wishlist_page-options.php:501
msgid "Choose colors for share buttons text"
msgstr ""

#: plugin-options/wishlist_page-options.php:512
msgid "Text hover"
msgstr ""

#: plugin-options/wishlist_page-options.php:525
msgid "Facebook share button icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:526
msgid "Select an icon for the Facebook share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:536
msgid "Facebook share button custom icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:537
msgid ""
"Upload an icon you'd like to use for Facebook share button (suggested 32px x "
"32px)"
msgstr ""

#: plugin-options/wishlist_page-options.php:545
msgid "Facebook share button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:546
msgid "Choose colors for Facebook share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:557
#: plugin-options/wishlist_page-options.php:597
#: plugin-options/wishlist_page-options.php:637
#: plugin-options/wishlist_page-options.php:677
#: plugin-options/wishlist_page-options.php:717
msgid "Background hover"
msgstr ""

#: plugin-options/wishlist_page-options.php:565
msgid "Twitter share button icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:566
msgid "Select an icon for the Twitter share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:576
msgid "Twitter share button custom icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:577
msgid ""
"Upload an icon you'd like to use for Twitter share button (suggested 32px x "
"32px)"
msgstr ""

#: plugin-options/wishlist_page-options.php:585
msgid "Twitter share button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:586
msgid "Choose colors for Twitter share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:605
msgid "Pinterest share button icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:606
msgid "Select an icon for the Pinterest share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:616
msgid "Pinterest share button custom icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:617
msgid ""
"Upload an icon you'd like to use for Pinterest share button (suggested 32px "
"x 32px)"
msgstr ""

#: plugin-options/wishlist_page-options.php:625
msgid "Pinterest share button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:626
msgid "Choose colors for Pinterest share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:645
msgid "Email share button icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:646
msgid "Select an icon for the Email share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:656
msgid "Email share button custom icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:657
msgid ""
"Upload an icon you'd like to use for the Email share button (suggested 32px "
"x 32px)"
msgstr ""

#: plugin-options/wishlist_page-options.php:665
msgid "Email share button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:666
msgid "Choose colors for the Email share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:685
msgid "WhatsApp share button icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:686
msgid "Select an icon for the WhatsApp share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:696
msgid "WhatsApp share button custom icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:697
msgid ""
"Upload an icon you'd like to use for WhatsApp share button (suggested 32px x "
"32px)"
msgstr ""

#: plugin-options/wishlist_page-options.php:705
msgid "WhatsApp share button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:706
msgid "Choose colors for WhatsApp share button"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:168
#: templates/admin/wishlist-panel-premium.php:309
msgid ""
"Upgrade to the %1$spremium version%2$s%3$sof %1$sYITH WooCommerce Wishlist"
"%2$s to benefit from all features!"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:170
#: templates/admin/wishlist-panel-premium.php:311
msgid "Upgrade"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:176
msgid "Premium Features"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:180
msgid "Allow your customers to create multiple wishlists"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:182
msgid ""
"Christmas, Birthday... users will be able to create and manage multiple "
"wishlists, in case they prefer to keep the products sorted by category or "
"other parameters."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:185
msgid "Multiple Wishlist"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:192
msgid "Wishlist Private"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:196
msgid "A transparent privacy management"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:198
msgid ""
"Your customers can set a privacy option for each wishlist and choose whether "
"sharing the wishlist or making it private."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:206
msgid ""
"Allow your customers to ask for an estimate, directly from their wishlist "
"page"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:208
msgid ""
"And give only registered users the privilege to use the wishlist "
"functionalities."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:211
msgid "Estimate Cost"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:218
msgid "Admin Panel"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:222
msgid "An advanced and more versatile management of the wishlist"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:224
msgid ""
"Your customers can sort the products in the wishlist thanks to the drag&drop "
"option, move products from one wishlist to another, manage product quantity, "
"download the wishlist content to a .pdf file, share the wishlist on their "
"social networks, and much more!"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:232
msgid "Monitor your customers’ wishlists and the popular products"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:234
msgid ""
"You can see your customers’ wishlists, gain insight into the products they "
"are more interested in and plan targeted marketing strategies."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:237
msgid "Search Wishlists"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:244
msgid "'ADD TO CART'"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:248
msgid ""
"Send promotional emails for products in wishlists to push customers to buy"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:250
msgid ""
"Just three clicks to send promotional emails with discount coupons to "
"customers who have added specific products to their wishlist and push them "
"to buy."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:258
msgid "Let users buy the product right from the wishlist page"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:260
msgid ""
"Let them move products from one wishlist to the cart in one click, keeping "
"also the information about the size, colour or quantity selected when added "
"to the wishlist."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:263
msgid "DISABLE WISHLIST"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:271
msgid "Choose a charming layout for your wishlist page"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:273
msgid ""
"The wishlist is one of the most used functionalities in an ecommerce store "
"but often the page layout is not enhanced enough and looks unattractive to "
"the user. With our plugin, you can choose among some alternative layouts and "
"offer an even more interesting experience to users who creates a wishlist on "
"your website."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:276
msgid "UNLOGGED USERS"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:284
msgid "Wishlist widgets for the header and sidebars"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:286
msgid ""
"Increase the wishlist visibility through our modern widgets that you can use "
"in the header, in the sidebars, wherever you want."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:289
msgid "POPULAR TABLE"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:296
msgid "FUNCTIONALITIES"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:300
msgid "Allow users to monitor the price of the products in their wishlist"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:302
msgid ""
"We took inspiration from one of the most interesting features of Amazon "
"product pages: from now on, users can realise what’s the best time to buy a "
"product and how much they can save when there’s a promotion running or a "
"discount on the product they’ve added to the wishlist."
msgstr ""

#: templates/share.php:51 templates/share.php:52
msgid "Facebook"
msgstr "Facebook"

#: templates/share.php:59 templates/share.php:60
msgid "Twitter"
msgstr "Twitter"

#: templates/share.php:67 templates/share.php:68
msgid "Pinterest"
msgstr "Pinterest"

#: templates/share.php:75 templates/share.php:76
msgid "Email"
msgstr "Adres mailowy"

#: templates/share.php:83
msgid "WhatsApp"
msgstr ""

#: templates/share.php:84
msgid "Whatsapp"
msgstr ""

#: templates/share.php:93
msgid "(Now"
msgstr ""

#: templates/share.php:93
msgid "copy"
msgstr ""

#: templates/share.php:93
msgid "this wishlist link and share it anywhere)"
msgstr ""

#: templates/wishlist-view-footer-mobile.php:44
#: templates/wishlist-view-footer.php:44
msgid "Apply this action to all the selected items:"
msgstr ""

#: templates/wishlist-view-footer-mobile.php:49
#: templates/wishlist-view-footer.php:49
msgid "Remove from wishlist"
msgstr ""

#. translators: 1. Wishlist formatted name.
#: templates/wishlist-view-footer-mobile.php:67
#: templates/wishlist-view-footer.php:67
msgid "Move to %s"
msgstr ""

#: templates/wishlist-view-footer-mobile.php:73
#: templates/wishlist-view-footer.php:73
msgid "Apply"
msgstr ""

#: templates/wishlist-view-footer-mobile.php:81
#: templates/wishlist-view-footer.php:81
msgid "Update"
msgstr ""

#: templates/wishlist-view-footer-mobile.php:87
#: templates/wishlist-view-footer.php:103
msgid "Add all to cart"
msgstr ""

#: templates/wishlist-view-header.php:48
msgid "Edit title"
msgstr "Edytuj tytuł"

#: templates/wishlist-view-mobile.php:136
msgid "Added on:"
msgstr ""

#: templates/wishlist-view-mobile.php:147
msgid "Price:"
msgstr ""

#: templates/wishlist-view-mobile.php:174
msgid "Quantity:"
msgstr ""

#: templates/wishlist-view-mobile.php:189
msgid "Stock:"
msgstr ""

#: templates/wishlist-view-mobile.php:192 templates/wishlist-view.php:229
msgid "Out of stock"
msgstr ""

#: templates/wishlist-view-mobile.php:192 templates/wishlist-view.php:229
msgid "In Stock"
msgstr "Dostępny"

#: templates/wishlist-view-mobile.php:212 templates/wishlist-view.php:262
msgid "Move"
msgstr "Przenieś"

#: templates/wishlist-view-mobile.php:233 templates/wishlist-view.php:283
msgid "Move to another list &rsaquo;"
msgstr ""

#: templates/wishlist-view-mobile.php:241 templates/wishlist-view.php:157
#: templates/wishlist-view.php:293
msgid "Remove this product"
msgstr "Usuń"

#: templates/wishlist-view-mobile.php:252 templates/wishlist-view.php:313
msgid "No products added to the wishlist"
msgstr ""

#: templates/wishlist-view.php:79
msgid "Product name"
msgstr ""

#: templates/wishlist-view.php:87
msgid "Unit price"
msgstr ""

#: templates/wishlist-view.php:96
msgid "Quantity"
msgstr ""

#: templates/wishlist-view.php:105
msgid "Stock status"
msgstr ""

#: templates/wishlist-view.php:123
msgid "Arrange"
msgstr ""

#. translators: date added label: 1 date added.
#: templates/wishlist-view.php:243
msgid "Added on: %s"
msgstr ""

#: templates/wishlist-view.php:293
msgid "Remove"
msgstr "Usuń"

#. Description of the plugin/theme
msgid ""
"<code><strong>YITH WooCommerce Wishlist</strong></code> gives your users the "
"possibility to create, fill, manage and share their wishlists allowing you "
"to analyze their interests and needs to improve your marketing strategies. "
"<a href=\"https://yithemes.com/\" target=\"_blank\">Get more plugins for "
"your e-commerce on <strong>YITH</strong></a>"
msgstr ""

#: includes/class-yith-wcwl-admin.php:261
msgctxt "[HELP TAB] Video title"
msgid ""
"Check this video to learn how to <b>configure wishlist and customize options:"
"</b>"
msgstr ""

#: includes/class-yith-wcwl-install.php:340
msgctxt "page_slug"
msgid "wishlist"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:230
msgctxt "date when wishlist was created"
msgid "Created on"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:52
msgctxt "[gutenberg]: block name"
msgid "YITH Add to wishlist"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:101
msgctxt "[gutenberg]: block name"
msgid "YITH Wishlist"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:53
msgctxt "[gutenberg]: block description"
msgid "Shows Add to wishlist button"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:102
msgctxt "[gutenberg]: block description"
msgid "Shows a list of products in wishlist"
msgstr ""

#. translators: 1. % of reduction/increase in price.
#: includes/class-yith-wcwl-wishlist-item.php:428
msgctxt ""
"Part of the template that shows price variation since addition to list; "
"placeholder will be replaced with a percentage"
msgid "Price is %1$s%%"
msgstr ""

#. translators: 2: original product price.
#: includes/class-yith-wcwl-wishlist-item.php:430
msgctxt ""
"Part of the template that shows price variation since addition to list; "
"placeholder will be replaced with a price"
msgid "(Was %2$s when added  in list)"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:45
msgctxt "Elementor widget name"
msgid "YITH Wishlist Add button"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:45
#, fuzzy
msgctxt "Elementor widget name"
msgid "YITH Wishlist"
msgstr "Obserwowane"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:87
msgctxt "Elementor section title"
msgid "Product"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:107
msgctxt "Elementor section title"
msgid "Labels"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:157
msgctxt "Elementor section title"
msgid "Advanced"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:87
#, fuzzy
msgctxt "Elementor section title"
msgid "Wishlist"
msgstr "Obserwowane"

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:107
msgctxt "Elementor section title"
msgid "Pagination"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:95
msgctxt "Elementor control label"
msgid "Product ID"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:115
msgctxt "Elementor control label"
msgid "Button label"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:125
msgctxt "Elementor control label"
msgid "\"Browse wishlist\" label"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:135
msgctxt "Elementor control label"
msgid "\"Product already in wishlist\" label"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:145
msgctxt "Elementor control label"
msgid "\"Product added to wishlist\" label"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:165
msgctxt "Elementor control label"
msgid "URL of the wishlist page"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:175
msgctxt "Elementor control label"
msgid "Icon for the button"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:185
msgctxt "Elementor control label"
msgid "Additional CSS classes for the button"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:95
#, fuzzy
msgctxt "Elementor control label"
msgid "Wishlist ID"
msgstr "Obserwowane"

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:115
msgctxt "Elementor control label"
msgid "Paginate items"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:128
msgctxt "yith-woocommerce-wishlist"
msgid "Items per page"
msgstr ""

#~ msgid "My wishlist on "
#~ msgstr "Moja lista życzeń: %s"

#~ msgid "YITH WooCommerce Wishlist"
#~ msgstr "Przeglądaj listę życzeń"

#~ msgid "Save"
#~ msgstr "Zapisz"

#~ msgid "Cancel"
#~ msgstr "Anuluj"

#~ msgid "Ask for an estimate"
#~ msgstr "Poproś o oszacowanie kosztów"
PK`x1\��q��,languages/yith-woocommerce-wishlist-fa_IR.monu�[�����'T5�`ax"��
��
��
�
6HQWhq�	�������#8	JTeqv|�
��	��.�#�1	'Q	!y	#�	�	�	�	�	
�	I
R

_
m

�
0�
�
�
�
�
)!:\8c�0��">T[o� �!�!�#
!$%	
 &'""Browse wishlist" text"Product added" text"Product already in wishlist" textAfter "Add to cart"After summaryAfter thumbnailsBackgroundBorderCustom CSSEdit titleEmailError. Unable to remove the product from the wishlist.FacebookFree!General SettingsIn StockMy wishlist on %sPin on PinterestPinterestPremium VersionProduct added!Product successfully removed.Redirect to cartRemoveRemove if added to the cartRemove this productRemoved wishlist %s.Share on FacebookShare on:Social image URLSocial textTextTitleTweet on TwitterTwitterUse shortcodeWishlistWishlistsProject-Id-Version: YITH WooCommerce Wishlist
Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/yith-woocommerce-wishlist
POT-Creation-Date: 2021-11-11 13:53:53+00:00
PO-Revision-Date: 2020-10-16 14:05+0200
Last-Translator: Am!n <amin.pe94@gmail.com>
Language-Team: YITH - translated to persian by dornaweb <info@dornaweb.com>
Language: fa
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Generator: Poedit 2.4.1
X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;_n:1,2;__ngettext:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2
X-Poedit-Basepath: .
Plural-Forms: nplurals=2; plural=n!=1;
X-Poedit-SourceCharset: UTF-8
X-Poedit-SearchPath-0: ..
X-Poedit-SearchPathExcluded-0: ../plugin-fw
متن "مشاهده علاقه مندی ها"متن "محصول اضافه شد"متن "محصول از قبل اضافه شده"بعد از  "افزودن به سبد"بعد از خلاصه محصولبعد از تصاویر محصولپس زمینهکادرCSS دستیویرایش عنوانایمیلخطا : محصول از لیست علاقه مندی ها حذف نشد.فیسبوکرایگان!تنظیمات عمومیموجودلیست علاقه مندی های من در %sپین به پینترستپینترستنسخه پولیاضافه شد!محصول با موفقیت حذف شد.انتقال به سبد خریدحذفحذف محصول در صورت افزودن به سبدحذف این محصوللیست علاقه مندی های من در %sاشتراک در فیس بوکاشتراک در : آدرس تصویر اجتماعیمتن اجتماعیمتنعنوان فیلدتوییت در توییترتوییتراستفاده از شورتکدلیست علاقه مندی هالیست علاقه مندی هاPK`x1\��5<i�i�,languages/yith-woocommerce-wishlist-fr_FR.ponu�[���# Translation of YITH WooCommerce Wishlist in French (France)
# This file is distributed under the same license as the YITH WooCommerce Wishlist package.
msgid ""
msgstr ""
"Project-Id-Version: YITH WooCommerce Wishlist\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/yith-woocommerce-"
"wishlist\n"
"POT-Creation-Date: 2021-11-11 13:53:53+00:00\n"
"PO-Revision-Date: 2020-10-16 14:05+0200\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: fr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Poedit 2.4.1\n"

#: includes/class-yith-wcwl-admin.php:126
msgid "Wishlist Page"
msgstr "Page de liste de souhaits"

#: includes/class-yith-wcwl-admin.php:148
msgid "General settings"
msgstr "Réglages généraux"

#: includes/class-yith-wcwl-admin.php:149
msgid "Add to wishlist options"
msgstr "Ajouter aux options de liste de souhaits"

#: includes/class-yith-wcwl-admin.php:150
msgid "Wishlist page options"
msgstr "Options de la page de liste de souhaits"

#: includes/class-yith-wcwl-admin.php:151
msgid "Premium Version"
msgstr "Version Premium"

#: includes/class-yith-wcwl-admin.php:249
#: includes/class-yith-wcwl-install.php:342
msgid "Wishlist"
msgstr "Liste de souhaits"

#: includes/class-yith-wcwl-admin.php:251
msgid ""
"Allows your customers to create and share lists of products that they want "
"to purchase on your e-commerce."
msgstr ""
"Permet à vos clients de créer et de partager des listes de produits qu'ils "
"souhaitent acheter sur votre e-commerce."

#: includes/class-yith-wcwl-ajax-handler.php:75
#: templates/add-to-wishlist-remove.php:59
msgid "View &rsaquo;"
msgstr "Voir &rsaquo;"

#: includes/class-yith-wcwl-ajax-handler.php:76
#: templates/add-to-wishlist-remove.php:58
msgid "or"
msgstr "ou"

#: includes/class-yith-wcwl-ajax-handler.php:77
msgid "Close"
msgstr "Fermer"

#: includes/class-yith-wcwl-ajax-handler.php:155
#: includes/class-yith-wcwl-ajax-handler.php:195
msgid "Product successfully removed."
msgstr "Produit supprimé correctement."

#: includes/class-yith-wcwl-form-handler.php:156
msgid "Please, make sure to enter a valid title"
msgstr "Veuillez vous assurer d'entrer un titre valide"

#: includes/class-yith-wcwl-frontend.php:461
msgid ""
"We are sorry, but this feature is available only if cookies on your browser "
"are enabled."
msgstr ""
"Nous sommes désolés, mais cette fonctionnalité n'est disponible que si les "
"cookies de votre navigateur sont activés."

#: includes/class-yith-wcwl-frontend.php:462
msgid "Product added to cart successfully"
msgstr "Produit ajouté au panier avec succès"

#: includes/class-yith-wcwl-frontend.php:725
#: includes/class-yith-wcwl-shortcode.php:239
#: plugin-options/wishlist_page-options.php:240
#: templates/wishlist-view-footer-mobile.php:46
#: templates/wishlist-view-footer.php:46
msgid "Add to cart"
msgstr "Ajouter au panier"

#: includes/class-yith-wcwl-privacy.php:52
msgid "While you visit our site, we’ll track:"
msgstr "Pendant que vous visitez notre site, nous suivons:"

#: includes/class-yith-wcwl-privacy.php:54
msgid ""
"Products you’ve added to the wishlist: we’ll use this to show you and other "
"users your favourite products, and to create targeted email campaigns."
msgstr ""
"Produits que vous avez ajoutés à la liste de souhaits: nous les utiliserons "
"pour vous montrer, ainsi qu'à d'autres utilisateurs, vos produits préférés "
"et pour créer des campagnes par e-mail ciblées."

#: includes/class-yith-wcwl-privacy.php:55
msgid ""
"Wishlists you’ve created: we’ll keep track of the wishlists you create, and "
"make them visible to the store staff"
msgstr ""
"Listes de souhaits que vous avez créées: nous garderons une trace des listes "
"de souhaits que vous créez et les rendrez visibles pour le personnel du "
"magasin"

#: includes/class-yith-wcwl-privacy.php:57
msgid ""
"We’ll also use cookies to keep track of wishlist contents while you’re "
"browsing our site."
msgstr ""
"Nous utiliserons également des cookies pour garder une trace du contenu de "
"la liste de souhaits lorsque vous naviguez sur notre site."

#: includes/class-yith-wcwl-privacy.php:60
msgid ""
"Members of our team have access to the information you provide us with. For "
"example, both Administrators and Shop Managers can access:"
msgstr ""
"Les membres de notre équipe ont accès aux informations que vous nous "
"fournissez. Par exemple, les administrateurs et les responsables de magasin "
"peuvent accéder à:"

#: includes/class-yith-wcwl-privacy.php:62
msgid ""
"Wishlist details, such as products added, date of addition, name and privacy "
"settings of your wishlists"
msgstr ""
"Détails de la liste de souhaits, tels que les produits ajoutés, la date "
"d'ajout, le nom et les paramètres de confidentialité de vos listes de "
"souhaits"

#: includes/class-yith-wcwl-privacy.php:64
msgid ""
"Our team members have access to this information to offer you better deals "
"for the products you love."
msgstr ""
"Les membres de notre équipe ont accès à ces informations pour vous proposer "
"de meilleures offres pour les produits que vous aimez."

#: includes/class-yith-wcwl-privacy.php:84
#: includes/class-yith-wcwl-privacy.php:100
msgid "Customer wishlists"
msgstr "Listes de souhaits des clients"

#: includes/class-yith-wcwl-privacy.php:137 plugin-options/lists-options.php:25
#: plugin-options/lists-options.php:32
msgid "Wishlists"
msgstr "Listes de Souhaits"

#. Translators: %s Order number.
#: includes/class-yith-wcwl-privacy.php:199
msgid "Removed wishlist %s."
msgstr "Ma Liste d'Envies sur %s"

#. Translators: %s Order number.
#: includes/class-yith-wcwl-privacy.php:203
msgid "Wishlist %s has been retained."
msgstr "La liste de souhaits %s a été conservée."

#: includes/class-yith-wcwl-privacy.php:227
msgid "Token"
msgstr "Jeton"

#: includes/class-yith-wcwl-privacy.php:228
msgid "Wishlist URL"
msgstr "URL de la liste de souhaits"

#: includes/class-yith-wcwl-privacy.php:229
msgid "Title"
msgstr "Title:"

#: includes/class-yith-wcwl-privacy.php:231
msgid "Visibility"
msgstr "Visibilité"

#: includes/class-yith-wcwl-privacy.php:232
msgid "Items added"
msgstr "Éléments ajoutés"

#: includes/class-yith-wcwl-shortcode.php:58
msgid ""
"ID of the product to add to the wishlist (leave empty to use the global "
"product)"
msgstr ""
"ID du produit à ajouter à la liste de souhaits (laisser vide pour utiliser "
"le produit global)"

#: includes/class-yith-wcwl-shortcode.php:63
msgid "URL of the wishlist page (leave empty to use the default settings)"
msgstr ""
"URL de la page de liste de souhaits (laissez vide pour utiliser les "
"paramètres par défaut)"

#: includes/class-yith-wcwl-shortcode.php:68
msgid "Button label (leave empty to use the default settings)"
msgstr ""
"Étiquette du bouton (laissez vide pour utiliser les paramètres par défaut)"

#: includes/class-yith-wcwl-shortcode.php:73
msgid "\"Browse wishlist\" label (leave empty to use the default settings)"
msgstr ""
"Étiquette \"Parcourir la liste de souhaits\" (laisser vide pour utiliser les "
"paramètres par défaut)"

#: includes/class-yith-wcwl-shortcode.php:78
msgid ""
"\"Product already in wishlist\" label (leave empty to use the default "
"settings)"
msgstr ""
"Étiquette \"Produit déjà dans la liste de souhaits\" (laisser vide pour "
"utiliser les paramètres par défaut)"

#: includes/class-yith-wcwl-shortcode.php:83
msgid ""
"\"Product added to wishlist\" label (leave empty to use the default settings)"
msgstr ""
"Étiquette \"Produit ajouté à la liste de souhaits\" (laisser vide pour "
"utiliser les paramètres par défaut)"

#: includes/class-yith-wcwl-shortcode.php:88
msgid ""
"Icon for the button (use any FontAwesome valid class, or leave empty to use "
"the default settings)"
msgstr ""
"Icône du bouton (utilisez n'importe quelle classe valide FontAwesome, ou "
"laissez vide pour utiliser les paramètres par défaut)"

#: includes/class-yith-wcwl-shortcode.php:93
msgid ""
"Additional CSS classes for the button (leave empty to use the default "
"settings)"
msgstr ""
"Classes CSS supplémentaires pour le bouton (laissez vide pour utiliser les "
"paramètres par défaut)"

#: includes/class-yith-wcwl-shortcode.php:107
msgid "Choose whether to paginate items in the wishlist or show them all"
msgstr ""
"Choisissez de paginer les éléments de la liste de souhaits ou de les "
"afficher tous"

#: includes/class-yith-wcwl-shortcode.php:110
#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:118
msgid "Paginate"
msgstr "Paginer"

#: includes/class-yith-wcwl-shortcode.php:111
#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:119
msgid "Do not paginate"
msgstr "Ne pas paginer"

#: includes/class-yith-wcwl-shortcode.php:116
msgid "Number of items to show per page"
msgstr "Nombre d'éléments à afficher par page"

#: includes/class-yith-wcwl-shortcode.php:121
msgid "ID of the wishlist to show (e.g. K6EOWXB888ZD)"
msgstr "ID de la liste de souhaits à afficher (par exemple K6EOWXB888ZD)"

#: includes/class-yith-wcwl-shortcode.php:414
msgid "Share on:"
msgstr "Partager sur:"

#: includes/class-yith-wcwl-shortcode.php:438
#: plugin-options/wishlist_page-options.php:138
msgid "Share on Facebook"
msgstr "Partager sur Facebook"

#: includes/class-yith-wcwl-shortcode.php:455
#: plugin-options/wishlist_page-options.php:147
msgid "Tweet on Twitter"
msgstr "Tweeter sur Twitter"

#: includes/class-yith-wcwl-shortcode.php:473
#: plugin-options/wishlist_page-options.php:156
msgid "Pin on Pinterest"
msgstr "Pin sur Pinterest"

#: includes/class-yith-wcwl-shortcode.php:487
msgid "Share via email"
msgstr "Partager par e-mail"

#: includes/class-yith-wcwl-shortcode.php:510
#: plugin-options/wishlist_page-options.php:174
msgid "Share on WhatsApp"
msgstr "Partager sur WhatsApp"

#: includes/class-yith-wcwl-shortcode.php:621
msgid "Remove from list"
msgstr "Retirer de la liste"

#: includes/class-yith-wcwl-wishlist-item.php:189
msgid "Free!"
msgstr "Gratuit!"

#: includes/class-yith-wcwl.php:164
msgid "The item cannot be added to this wishlist"
msgstr "L'article ne peut pas être ajouté à cette liste de souhaits"

#: includes/class-yith-wcwl.php:168 includes/class-yith-wcwl.php:174
msgid "An error occurred while adding the products to the wishlist."
msgstr ""
"Une erreur s'est produite lors de l'ajout des produits à la liste de "
"souhaits."

#: includes/class-yith-wcwl.php:235 includes/class-yith-wcwl.php:241
msgid "Error. Unable to remove the product from the wishlist."
msgstr "Erreur. Impossible de supprimer le produit de la liste de souhaits."

#: includes/data-stores/class-yith-wcwl-wishlist-data-store.php:152
#: includes/data-stores/class-yith-wcwl-wishlist-data-store.php:174
msgid "Invalid wishlist."
msgstr "Liste de souhaits non valide."

#: includes/data-stores/class-yith-wcwl-wishlist-item-data-store.php:119
msgid "Invalid wishlist item."
msgstr "Élément de liste de souhaits non valide."

#. translators: 1. Number of users.
#: includes/functions-yith-wcwl.php:249
msgid "%d user"
msgid_plural "%d users"
msgstr[0] "%d utilisateur"
msgstr[1] "%d utilisateurs"

#: includes/functions-yith-wcwl.php:250
msgid "has this item in wishlist"
msgid_plural "have this item in wishlist"
msgstr[0] "a cet article dans la liste de souhaits"
msgstr[1] "ont cet article dans la liste de souhaits"

#: includes/functions-yith-wcwl.php:252
msgid "You're the first"
msgstr "Vous êtes le premier"

#: includes/functions-yith-wcwl.php:253
msgid "to add this item in wishlist"
msgstr "ajouter cet article à la liste de souhaits"

#. translators: 1. Count of users when many, or "another" when only one.
#: includes/functions-yith-wcwl.php:257
msgid "You and %s user"
msgid_plural "You and %d users"
msgstr[0] "Vous et l'utilisateur %s"
msgstr[1] "Vous et les utilisateurs %d "

#: includes/functions-yith-wcwl.php:257
msgid "another"
msgstr ""

#: includes/functions-yith-wcwl.php:258
msgid "have this item in wishlist"
msgstr "avoir cet article dans la liste de souhaits"

#: includes/functions-yith-wcwl.php:425
msgid "None"
msgstr "Aucun"

#: includes/functions-yith-wcwl.php:426
msgid "Custom"
msgstr "Personnalisé"

#: includes/functions-yith-wcwl.php:447
msgid "Shared"
msgstr "Partagé"

#: includes/functions-yith-wcwl.php:451
msgid "Only people with a link to this list can see it"
msgstr "Seules les personnes ayant un lien vers cette liste peuvent la voir"

#: includes/functions-yith-wcwl.php:457
msgid "Private"
msgstr "Privé"

#: includes/functions-yith-wcwl.php:461
msgid "Only you can see this list"
msgstr "Vous seul pouvez voir cette liste"

#: includes/functions-yith-wcwl.php:467
msgid "Public"
msgstr "Publique"

#: includes/functions-yith-wcwl.php:471
msgid "Anyone can search for and see this list"
msgstr "Tout le monde peut rechercher et voir cette liste"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:118
#: plugin-options/add_to_wishlist-options.php:127
msgid "Add to wishlist"
msgstr "Ajouter à la liste de souhaits"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:128
#: plugin-options/add_to_wishlist-options.php:143
msgid "Browse wishlist"
msgstr "Parcourir la liste de souhaits"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:138
msgid "Product already in wishlist"
msgstr "Produit déjà dans la liste de souhaits"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:148
msgid "Product added to wishlist"
msgstr "Produit ajouté à la liste de souhaits"

#: init.php:160
#, fuzzy
msgid "is enabled but not effective. It requires WooCommerce to work."
msgstr ""
"est activé mais ne fonctionne pas. Il nécessite WooCommerce pour fonctionner."

#: init.php:176
msgid "You can't activate the free version of"
msgstr ""

#: init.php:176
msgid "while you are using the premium one."
msgstr ""

#: plugin-options/add_to_wishlist-options.php:20
#: plugin-options/settings-options.php:27
msgid "General Settings"
msgstr "Réglages Généraux"

#: plugin-options/add_to_wishlist-options.php:27
msgid "After product is added to wishlist"
msgstr "Une fois le produit ajouté à la liste de souhaits"

#: plugin-options/add_to_wishlist-options.php:28
msgid ""
"Choose the look of the Wishlist button when the product has already been "
"added to a wishlist"
msgstr ""
"Choisissez l'apparence du bouton Liste de souhaits lorsque le produit a déjà "
"été ajouté à une liste de souhaits"

#: plugin-options/add_to_wishlist-options.php:32
#, fuzzy
msgid "Show \"Add to wishlist\" button"
msgstr "Afficher le bouton \"Ajouter à la liste de souhaits\""

#: plugin-options/add_to_wishlist-options.php:33
msgid "Show \"View wishlist\" link"
msgstr "Afficher le lien \"Afficher la liste de souhaits\""

#: plugin-options/add_to_wishlist-options.php:34
msgid "Show \"Remove from list\" link"
msgstr "Afficher le lien \"Supprimer de la liste\""

#: plugin-options/add_to_wishlist-options.php:48
msgid "Loop settings"
msgstr "Paramètres de boucle"

#: plugin-options/add_to_wishlist-options.php:50
msgid ""
"Loop options will be visible on Shop page, category pages, product "
"shortcodes, products sliders, and all the other places where the WooCommerce "
"products' loop is used"
msgstr ""
"Les options de boucle seront visibles sur la page Boutique, les pages de "
"catégorie, les shortcodes de produits, les curseurs de produits et tous les "
"autres endroits où la boucle des produits WooCommerce est utilisée"

#: plugin-options/add_to_wishlist-options.php:55
msgid "Show \"Add to wishlist\" in loop"
msgstr "Afficher \"Ajouter à la liste de souhaits\" en boucle"

#: plugin-options/add_to_wishlist-options.php:56
msgid "Enable the \"Add to wishlist\" feature in WooCommerce products' loop"
msgstr ""
"Activer la fonctionnalité \"Ajouter à la liste de souhaits\" dans la boucle "
"des produits WooCommerce"

#: plugin-options/add_to_wishlist-options.php:64
msgid "Position of \"Add to wishlist\" in loop"
msgstr "Position de \"Ajouter à la liste de souhaits\" en boucle"

#: plugin-options/add_to_wishlist-options.php:65
msgid ""
"Choose where to show \"Add to wishlist\" button or link in WooCommerce "
"products' loop. <span class=\"addon\">Copy this shortcode <span class=\"code"
"\"><code>[yith_wcwl_add_to_wishlist]</code></span> and paste it where you "
"want to show the \"Add to wishlist\" link or button</span>"
msgstr ""
"Choisissez où afficher le bouton \"Ajouter à la liste de souhaits\" ou le "
"lien dans la boucle des produits WooCommerce. <span class=\"addon\">Copiez "
"ce code court <span class=\"code\"><code>[yith_wcwl_add_to_wishlist]</code></"
"span> et collez-le où vous souhaitez afficher le lien ou le bouton \"Ajouter "
"à la liste de souhaits\"</span>"

#: plugin-options/add_to_wishlist-options.php:72
msgid "On top of the image"
msgstr "En haut de l'image"

#: plugin-options/add_to_wishlist-options.php:73
msgid "Before \"Add to cart\" button"
msgstr "Avant le bouton \"Ajouter au panier\""

#: plugin-options/add_to_wishlist-options.php:74
msgid "After \"Add to cart\" button"
msgstr "Après le bouton \"Ajouter au panier\""

#: plugin-options/add_to_wishlist-options.php:75
#: plugin-options/add_to_wishlist-options.php:107
msgid "Use shortcode"
msgstr "Utiliser le shortcode"

#: plugin-options/add_to_wishlist-options.php:89
msgid "Product page settings"
msgstr "Paramètres de la page produit"

#: plugin-options/add_to_wishlist-options.php:96
msgid "Position of \"Add to wishlist\" on product page"
msgstr "Position de \"Ajouter à la liste de souhaits\" sur la page produit"

#: plugin-options/add_to_wishlist-options.php:97
msgid ""
"Choose where to show \"Add to wishlist\" button or link on the product page. "
"<span class=\"addon\">Copy this shortcode <span class=\"code"
"\"><code>[yith_wcwl_add_to_wishlist]</code></span> and paste it where you "
"want to show the \"Add to wishlist\" link or button</span>"
msgstr ""
"Choisissez où afficher le bouton \"Ajouter à la liste de souhaits\" ou le "
"lien sur la page du produit. <span class=\"addon\">Copiez ce code court "
"<span class=\"code\"><code> [yith_wcwl_add_to_wishlist]</code></span> et "
"collez-le où vous souhaitez afficher le lien ou le bouton \"Ajouter à la "
"liste de souhaits\"</span>"

#: plugin-options/add_to_wishlist-options.php:104
msgid "After \"Add to cart\""
msgstr "Après \"Ajouter au panier\""

#: plugin-options/add_to_wishlist-options.php:105
msgid "After thumbnails"
msgstr "Après les vignettes"

#: plugin-options/add_to_wishlist-options.php:106
msgid "After summary"
msgstr "Après le résumé"

#: plugin-options/add_to_wishlist-options.php:117
#: plugin-options/wishlist_page-options.php:222
msgid "Text customization"
msgstr "Personnalisation du texte"

#: plugin-options/add_to_wishlist-options.php:124
msgid "\"Add to wishlist\" text"
msgstr "Texte \"Ajouter à la liste de souhaits\""

#: plugin-options/add_to_wishlist-options.php:125
msgid "Enter a text for \"Add to wishlist\" button"
msgstr "Entrez un texte pour le bouton \"Ajouter à la liste de souhaits\""

#: plugin-options/add_to_wishlist-options.php:132
msgid "\"Product added\" text"
msgstr "Texte \"Produit ajouté\""

#: plugin-options/add_to_wishlist-options.php:133
msgid ""
"Enter the text of the message displayed when the user adds a product to the "
"wishlist"
msgstr ""
"Entrez le texte du message affiché lorsque l'utilisateur ajoute un produit à "
"la liste de souhaits"

#: plugin-options/add_to_wishlist-options.php:135
msgid "Product added!"
msgstr "Produit ajouté!"

#: plugin-options/add_to_wishlist-options.php:140
msgid "\"Browse wishlist\" text"
msgstr "Texte \"Parcourir la liste de souhaits\""

#: plugin-options/add_to_wishlist-options.php:141
msgid "Enter a text for the \"Browse wishlist\" link on the product page"
msgstr ""
"Entrez un texte pour le lien \"Parcourir la liste de souhaits\" sur la page "
"du produit"

#: plugin-options/add_to_wishlist-options.php:148
msgid "\"Product already in wishlist\" text"
msgstr "Texte \"Produit déjà dans la liste de souhaits\""

#: plugin-options/add_to_wishlist-options.php:149
msgid ""
"Enter the text for the message displayed when the user views a product that "
"is already in the wishlist"
msgstr ""
"Saisissez le texte du message affiché lorsque l'utilisateur consulte un "
"produit qui figure déjà dans la liste de souhaits"

#: plugin-options/add_to_wishlist-options.php:151
msgid "The product is already in your wishlist!"
msgstr "Le produit est déjà dans votre liste de souhaits!"

#: plugin-options/add_to_wishlist-options.php:161
msgid "Style & Color customization"
msgstr "Personnalisation du style et des couleurs"

#: plugin-options/add_to_wishlist-options.php:168
msgid "Style of \"Add to wishlist\""
msgstr "Style de \"Ajouter à la liste de souhaits\""

#: plugin-options/add_to_wishlist-options.php:169
msgid ""
"Choose if you want to show a textual \"Add to wishlist\" link or a button"
msgstr ""
"Choisissez si vous souhaitez afficher un lien textuel \"Ajouter à la liste "
"de souhaits\" ou un bouton"

#: plugin-options/add_to_wishlist-options.php:172
#: plugin-options/wishlist_page-options.php:261
msgid "Textual (anchor)"
msgstr "Textuel (ancre)"

#: plugin-options/add_to_wishlist-options.php:173
#: plugin-options/wishlist_page-options.php:262
msgid "Button with theme style"
msgstr "Bouton avec style de thème"

#: plugin-options/add_to_wishlist-options.php:174
#: plugin-options/wishlist_page-options.php:263
msgid "Button with custom style"
msgstr "Bouton avec style personnalisé"

#: plugin-options/add_to_wishlist-options.php:182
msgid "\"Add to wishlist\" button style"
msgstr "Style de bouton \"Ajouter à la liste de souhaits\""

#: plugin-options/add_to_wishlist-options.php:188
msgid "Choose colors for the \"Add to wishlist\" button"
msgstr "Choisissez les couleurs du bouton \"Ajouter à la liste de souhaits\""

#: plugin-options/add_to_wishlist-options.php:190
#: plugin-options/wishlist_page-options.php:279
#: plugin-options/wishlist_page-options.php:368
#: plugin-options/wishlist_page-options.php:417
#: plugin-options/wishlist_page-options.php:465
#: plugin-options/wishlist_page-options.php:552
#: plugin-options/wishlist_page-options.php:592
#: plugin-options/wishlist_page-options.php:632
#: plugin-options/wishlist_page-options.php:672
#: plugin-options/wishlist_page-options.php:712
msgid "Background"
msgstr "Fond"

#: plugin-options/add_to_wishlist-options.php:195
#: plugin-options/wishlist_page-options.php:284
#: plugin-options/wishlist_page-options.php:373
#: plugin-options/wishlist_page-options.php:422
#: plugin-options/wishlist_page-options.php:470
#: plugin-options/wishlist_page-options.php:507
msgid "Text"
msgstr "Text"

#: plugin-options/add_to_wishlist-options.php:200
#: plugin-options/wishlist_page-options.php:289
#: plugin-options/wishlist_page-options.php:378
#: plugin-options/wishlist_page-options.php:427
#: plugin-options/wishlist_page-options.php:475
msgid "Border"
msgstr "Bordure"

#: plugin-options/add_to_wishlist-options.php:206
msgid "Choose colors for the \"Add to wishlist\" button on hover state"
msgstr ""
"Choisissez les couleurs pour le bouton \"Ajouter à la liste de souhaits\" en "
"survol"

#: plugin-options/add_to_wishlist-options.php:208
#: plugin-options/wishlist_page-options.php:297
#: plugin-options/wishlist_page-options.php:386
#: plugin-options/wishlist_page-options.php:435
msgid "Background Hover"
msgstr "Arrière plan au survol"

#: plugin-options/add_to_wishlist-options.php:213
#: plugin-options/wishlist_page-options.php:302
#: plugin-options/wishlist_page-options.php:391
#: plugin-options/wishlist_page-options.php:440
msgid "Text Hover"
msgstr "Texte au survol"

#: plugin-options/add_to_wishlist-options.php:218
#: plugin-options/wishlist_page-options.php:307
#: plugin-options/wishlist_page-options.php:396
#: plugin-options/wishlist_page-options.php:445
msgid "Border Hover"
msgstr "Bordure au survol"

#: plugin-options/add_to_wishlist-options.php:231
#: plugin-options/wishlist_page-options.php:320
msgid "Border radius"
msgstr "Rayon de bordure"

#: plugin-options/add_to_wishlist-options.php:232
msgid "Choose radius for the \"Add to wishlist\" button"
msgstr "Choisissez le rayon pour le bouton \"Ajouter à la liste de souhaits\""

#: plugin-options/add_to_wishlist-options.php:246
msgid "\"Add to wishlist\" icon"
msgstr "Icône \"Ajouter à la liste de souhaits\""

#: plugin-options/add_to_wishlist-options.php:247
msgid "Select an icon for the \"Add to wishlist\" button (optional)"
msgstr ""
"Sélectionnez une icône pour le bouton \"Ajouter à la liste de souhaits"
"\" (facultatif)"

#: plugin-options/add_to_wishlist-options.php:257
msgid "\"Add to wishlist\" custom icon"
msgstr "Icône personnalisée \"Ajouter à la liste de souhaits\""

#: plugin-options/add_to_wishlist-options.php:258
#: plugin-options/add_to_wishlist-options.php:282
msgid ""
"Upload an icon you'd like to use for \"Add to wishlist\" button (suggested "
"32px x 32px)"
msgstr ""
"Téléchargez une icône que vous souhaitez utiliser pour le bouton \"Ajouter à "
"la liste de souhaits\" (32px x 32px suggéré)"

#: plugin-options/add_to_wishlist-options.php:270
msgid "\"Added to wishlist\" icon"
msgstr "Icône \"Ajouté à la liste de souhaits\""

#: plugin-options/add_to_wishlist-options.php:271
msgid "Select an icon for the \"Added to wishlist\" button (optional)"
msgstr ""
"Sélectionnez une icône pour le bouton \"Ajouté à la liste de souhaits"
"\" (facultatif)"

#: plugin-options/add_to_wishlist-options.php:277
msgid "Same used for Add to wishlist"
msgstr "Identique à Ajouter à la liste de souhaits"

#: plugin-options/add_to_wishlist-options.php:281
msgid "\"Added to wishlist\" custom icon"
msgstr "Icône personnalisée \"Ajouté à la liste de souhaits\""

#: plugin-options/add_to_wishlist-options.php:294
msgid "Custom CSS"
msgstr "Personnaliser CSS"

#: plugin-options/add_to_wishlist-options.php:295
msgid "Enter custom CSS to be applied to Wishlist elements (optional)"
msgstr ""
"Entrez le CSS personnalisé à appliquer aux éléments de la liste de souhaits "
"(facultatif)"

#: plugin-options/lists-options.php:34
msgid "Search list"
msgstr "Liste de recherche"

#. translators: 1. Anchor to Frequently Bought Together landing page on
#. yithemes.com.
#: plugin-options/settings-options.php:19
msgid ""
"If you want to take advantage of this feature, you could consider purchasing "
"the %s."
msgstr ""
"Si vous souhaitez profiter de cette fonctionnalité, vous pouvez envisager "
"d'acheter le %s."

#: plugin-options/settings-options.php:34
msgid "Enable AJAX loading"
msgstr "Activer le chargement AJAX"

#: plugin-options/settings-options.php:35
msgid "Load any cacheable wishlist item via AJAX"
msgstr ""
"Charger n'importe quel élément de liste de souhaits pouvant être mis en "
"cache via AJAX"

#: plugin-options/settings-options.php:48
msgid "YITH WooCommerce Frequently Bought Together Integration"
msgstr "YITH WooCommerce a fréquemment acheté ensemble l'intégrationd"

#. translators: 1. Url to Frequently Bought Together landing page on
#. yithemes.com.
#: plugin-options/settings-options.php:51
msgid ""
"In order to use this integration you have to install and activate YITH "
"WooCommerce Frequently Bought Together. <a href=\"%s\">Learn more</a>"
msgstr ""
"Pour utiliser cette intégration, vous devez installer et activer YITH "
"WooCommerce Frequently Bought Together. <a href=\"%s\"> En savoir plus </a>"

#: plugin-options/settings-options.php:56
msgid "Enable slider in wishlist"
msgstr "Activer diaporama dans la liste de Souhaits"

#. translators: 1. Example image of the integration. 2. CTA to buy Frequently
#. Bought Together.
#: plugin-options/settings-options.php:58
#, fuzzy
msgid ""
"Enable the slider with linked products on the Wishlist page (<a href=\"%1$s"
"\" class=\"thickbox\">Example</a>). %2$s"
msgstr ""
"Activez le curseur avec les produits liés sur la page Liste de souhaits (<a "
"href=\"%s\" class=\"thickbox\"> Exemple </a>). %s"

#: plugin-options/wishlist_page-options.php:19
msgid "All your wishlists"
msgstr "Toutes vos listes de souhaits"

#: plugin-options/wishlist_page-options.php:26
msgid "Wishlist page"
msgstr "Page de liste de souhaits"

#: plugin-options/wishlist_page-options.php:27
msgid ""
"Pick a page as the main Wishlist page; make sure you add the <span class="
"\"code\"><code>[yith_wcwl_wishlist]</code></span> shortcode into the page "
"content"
msgstr ""
"Choisissez une page comme page principale de liste de souhaits; assurez-vous "
"d'ajouter le<span class=\"code\"><code>[yith_wcwl_wishlist]</code></span> "
"shortcode dans le contenu de la page"

#: plugin-options/wishlist_page-options.php:40
msgid "Wishlist Detail Page"
msgstr "Page de détail de la liste de souhaits"

#: plugin-options/wishlist_page-options.php:47
#: plugin-options/wishlist_page-options.php:56
#: plugin-options/wishlist_page-options.php:65
#: plugin-options/wishlist_page-options.php:74
#: plugin-options/wishlist_page-options.php:83
#: plugin-options/wishlist_page-options.php:92
#: plugin-options/wishlist_page-options.php:101
msgid "In wishlist table show"
msgstr "Dans la liste de souhaits"

#: plugin-options/wishlist_page-options.php:48
msgid "Product variations selected by the user (example: size or color)"
msgstr ""
"Variations de produits sélectionnées par l'utilisateur (exemple: taille ou "
"couleur)"

#: plugin-options/wishlist_page-options.php:57
msgid "Product price"
msgstr "Prix du produit"

#: plugin-options/wishlist_page-options.php:66
msgid "Product stock (show if the product is available or not)"
msgstr "Stock de produits (indiquer si le produit est disponible ou non)"

#: plugin-options/wishlist_page-options.php:75
msgid "Date on which the product was added to the wishlist"
msgstr "Date à laquelle le produit a été ajouté à la liste de souhaits"

#: plugin-options/wishlist_page-options.php:84
msgid "Add to cart option for each product"
msgstr "Option Ajouter au panier pour tous les produits"

#: plugin-options/wishlist_page-options.php:93
msgid ""
"Icon to remove the product from the wishlist - to the left of the product"
msgstr ""
"Icône pour retirer le produit de la liste de souhaits - à gauche du produit"

#: plugin-options/wishlist_page-options.php:102
msgid ""
"Button to remove the product from the wishlist - to the right of the product"
msgstr ""
"Bouton pour retirer le produit de la liste de souhaits - à droite du produit"

#: plugin-options/wishlist_page-options.php:110
msgid "Redirect to cart"
msgstr "Rediriger vers le panier"

#: plugin-options/wishlist_page-options.php:111
msgid ""
"Redirect users to the cart page when they add a product to the cart from the "
"wishlist page"
msgstr ""
"Redirigez les utilisateurs vers la page du panier lorsqu'ils ajoutent un "
"produit au panier à partir de la page de la liste de souhaits"

#: plugin-options/wishlist_page-options.php:119
msgid "Remove if added to the cart"
msgstr "Supprimer si ajouté au panier"

#: plugin-options/wishlist_page-options.php:120
msgid ""
"Remove the product from the wishlist after it has been added to the cart"
msgstr ""
"Supprimer le produit de la liste de souhaits après l'avoir ajouté au panier"

#: plugin-options/wishlist_page-options.php:128
msgid "Share wishlist"
msgstr "Partager la liste de souhaits"

#: plugin-options/wishlist_page-options.php:129
msgid "Enable this option to let users share their wishlist on social media"
msgstr ""
"Activez cette option pour permettre aux utilisateurs de partager leur liste "
"de souhaits sur les réseaux sociaux"

#: plugin-options/wishlist_page-options.php:137
#: plugin-options/wishlist_page-options.php:146
#: plugin-options/wishlist_page-options.php:155
#: plugin-options/wishlist_page-options.php:164
#: plugin-options/wishlist_page-options.php:173
msgid "Share on social media"
msgstr "Partager sur les réseaux sociaux"

#: plugin-options/wishlist_page-options.php:165
msgid "Share by email"
msgstr "Partager par email"

#: plugin-options/wishlist_page-options.php:182
msgid "Share by URL"
msgstr "Partager par URL"

#: plugin-options/wishlist_page-options.php:183
msgid "Show \"Share URL\" field on wishlist page"
msgstr ""
"Afficher le champ \"Partager l'URL\" sur la page de la liste de souhaits"

#: plugin-options/wishlist_page-options.php:191
msgid "Sharing title"
msgstr "Titre de partage"

#: plugin-options/wishlist_page-options.php:192
msgid "Wishlist title used for sharing (only used on Twitter and Pinterest)"
msgstr ""
"Titre de la liste de souhaits utilisé pour le partage (uniquement utilisé "
"sur Twitter et Pinterest)"

#. translators: 1. Blog name.
#: plugin-options/wishlist_page-options.php:195
msgid "My wishlist on %s"
msgstr "Ma Liste d'Envies sur %s"

#: plugin-options/wishlist_page-options.php:200
msgid "Social text"
msgstr "Texte social"

#: plugin-options/wishlist_page-options.php:201
msgid ""
"Type the message you want to publish when you share your wishlist on Twitter "
"and Pinterest"
msgstr ""
"Tapez le message que vous souhaitez publier lorsque vous partagez votre "
"liste de souhaits sur Twitter et Pinterest"

#: plugin-options/wishlist_page-options.php:209
msgid "Social image URL"
msgstr "URL de l'image sociale"

#: plugin-options/wishlist_page-options.php:210
msgid "It will be used to pin the wishlist on Pinterest."
msgstr "Il sera utilisé pour épingler la liste de souhaits sur Pinterest."

#: plugin-options/wishlist_page-options.php:229
msgid "Default wishlist name"
msgstr "Nom de liste de souhaits par défaut"

#: plugin-options/wishlist_page-options.php:230
msgid ""
"Enter a name for the default wishlist. This is the wishlist that will be "
"automatically generated for all users if they do not create any custom one"
msgstr ""
"Saisissez un nom pour la liste de souhaits par défaut. Il s'agit de la liste "
"de souhaits qui sera automatiquement générée pour tous les utilisateurs "
"s'ils n'en créent pas de personnalisé"

#: plugin-options/wishlist_page-options.php:232
msgid "My wishlist"
msgstr "Ma liste d'envies"

#: plugin-options/wishlist_page-options.php:237
msgid "\"Add to cart\" text"
msgstr "Texte \"Ajouter au panier\""

#: plugin-options/wishlist_page-options.php:238
msgid "Enter a text for the \"Add to cart\" button"
msgstr "Saisissez un texte pour le bouton \"Ajouter au panier\""

#: plugin-options/wishlist_page-options.php:250
msgid "Style & color customization"
msgstr "Personnalisation du style et des couleurs"

#: plugin-options/wishlist_page-options.php:257
msgid "Style of \"Add to cart\""
msgstr "Style de \"Ajouter au panier\""

#: plugin-options/wishlist_page-options.php:258
msgid "Choose whether to show a textual \"Add to cart\" link or a button"
msgstr ""
"Choisissez d'afficher un lien textuel \"Ajouter au panier\" ou un bouton"

#: plugin-options/wishlist_page-options.php:271
msgid "\"Add to cart\" button style"
msgstr "Style de bouton \"Ajouter au panier\""

#: plugin-options/wishlist_page-options.php:277
msgid "Choose the colors for the \"Add to cart\" button"
msgstr "Choisissez les couleurs du bouton \"Ajouter au panier\""

#: plugin-options/wishlist_page-options.php:295
msgid "Choose colors for the \"Add to cart\" button on hover state"
msgstr "Choisissez les couleurs du bouton \"Ajouter au panier\" en survol"

#: plugin-options/wishlist_page-options.php:321
msgid "Set the radius for the \"Add to cart\" button"
msgstr "Définissez le rayon du bouton \"Ajouter au panier\""

#: plugin-options/wishlist_page-options.php:335
msgid "\"Add to cart\" icon"
msgstr "Icône \"Ajouter au panier\""

#: plugin-options/wishlist_page-options.php:336
msgid "Select an icon for the \"Add to cart\" button (optional)"
msgstr ""
"Sélectionnez une icône pour le bouton \"Ajouter au panier\" (facultatif)"

#: plugin-options/wishlist_page-options.php:351
msgid "\"Add to cart\" custom icon"
msgstr "Icône personnalisée \"Ajouter au panier\""

#: plugin-options/wishlist_page-options.php:352
msgid ""
"Upload an icon you'd like to use for the \"Add to cart\" button (suggested "
"32px x 32px)"
msgstr ""
"Téléchargez une icône que vous souhaitez utiliser pour le bouton \"Ajouter "
"au panier\" (32px x 32px suggéré)"

#: plugin-options/wishlist_page-options.php:360
msgid "Primary button style"
msgstr "Style de bouton principal"

#: plugin-options/wishlist_page-options.php:366
msgid ""
"Choose colors for the primary button<br/><small>This style will be applied "
"to \"Edit title\" button on Wishlist view, \"Submit Changes\" button on "
"Manage view and \"Search wishlist\" button on Search view</small>"
msgstr ""
"Choisissez les couleurs du bouton principal<br/><small> Ce style sera "
"appliqué au bouton \"Modifier le titre\" dans la vue Liste de souhaits, au "
"bouton \"Soumettre les modifications\" dans la vue Gérer et au bouton "
"\"Rechercher la liste de souhaits\" dans la vue Recherche</small>"

#: plugin-options/wishlist_page-options.php:384
msgid ""
"Choose colors for the primary button on hover state<br/><small>This style "
"will be applied to \"Edit title\" button on Wishlist view, \"Submit Changes"
"\" button on Manage view and \"Search wishlist\" button on Search view</"
"small>"
msgstr ""
"Choisissez les couleurs pour le bouton principal sur l'état de vol "
"stationnaire<br/><small> Ce style sera appliqué au bouton \"Modifier le titre"
"\" dans la vue Liste de souhaits, au bouton \"Soumettre les modifications\" "
"dans la vue Gérer et au bouton \"Rechercher la liste de souhaits\" dans la "
"vue Recherche</small>"

#: plugin-options/wishlist_page-options.php:409
msgid "Secondary button style"
msgstr "Style de bouton secondaire"

#: plugin-options/wishlist_page-options.php:415
#: plugin-options/wishlist_page-options.php:433
msgid ""
"Choose colors of the secondary button<br/><small>This style will be applied "
"to the buttons that allow showing and hiding the Edit title form on Wishlist "
"view and \"Create new Wishlist\" button on Manage view</small>"
msgstr ""
"Choisissez les couleurs du bouton secondaire <br/> <small> Ce style sera "
"appliqué aux boutons qui permettent d'afficher et de masquer le formulaire "
"Modifier le titre dans la vue Liste de souhaits et le bouton \"Créer une "
"nouvelle liste de souhaits\" dans la gestion de la vue </small>"

#: plugin-options/wishlist_page-options.php:458
msgid "Wishlist table style"
msgstr "Style de la table de souhait"

#: plugin-options/wishlist_page-options.php:459
msgid ""
"Choose the colors for the wishlist table (when set to \"Traditional\" layout)"
msgstr ""
"Choisissez les couleurs du tableau de la liste de souhaits (lorsqu'il est "
"réglé sur une disposition \"traditionnelle\")"

#: plugin-options/wishlist_page-options.php:487
msgid "Highlight color"
msgstr "Couleur de surbrillance"

#: plugin-options/wishlist_page-options.php:488
msgid ""
"Choose the color for all sections with background<br/><small>This color will "
"be used as background for the wishlist table heading and footer (when set to "
"\"Traditional\" layout), and for various form across wishlist views</small>"
msgstr ""
"Choisissez la couleur pour toutes les sections avec arrière-plan <br/> "
"<small> Cette couleur sera utilisée comme arrière-plan pour l'en-tête et le "
"pied de page du tableau de la liste de souhaits (lorsqu'elle est définie sur "
"une disposition \"traditionnelle\"), et pour divers formulaires dans les "
"vues de la liste de souhaits </small>"

#: plugin-options/wishlist_page-options.php:500
msgid "Share button text color"
msgstr "Partager la couleur du texte du bouton"

#: plugin-options/wishlist_page-options.php:501
msgid "Choose colors for share buttons text"
msgstr "Choisissez les couleurs pour le texte des boutons de partage"

#: plugin-options/wishlist_page-options.php:512
msgid "Text hover"
msgstr "Survol du texte"

#: plugin-options/wishlist_page-options.php:525
msgid "Facebook share button icon"
msgstr "Icône du bouton de partage Facebook"

#: plugin-options/wishlist_page-options.php:526
msgid "Select an icon for the Facebook share button"
msgstr "Sélectionnez une icône pour le bouton de partage Facebook"

#: plugin-options/wishlist_page-options.php:536
msgid "Facebook share button custom icon"
msgstr "Icône personnalisée du bouton de partage Facebook"

#: plugin-options/wishlist_page-options.php:537
msgid ""
"Upload an icon you'd like to use for Facebook share button (suggested 32px x "
"32px)"
msgstr ""
"Téléchargez une icône que vous souhaitez utiliser pour le bouton de partage "
"Facebook (32px x 32px suggéré)"

#: plugin-options/wishlist_page-options.php:545
msgid "Facebook share button style"
msgstr "Style de bouton de partage Facebook"

#: plugin-options/wishlist_page-options.php:546
msgid "Choose colors for Facebook share button"
msgstr "Choisissez les couleurs du bouton de partage Facebook"

#: plugin-options/wishlist_page-options.php:557
#: plugin-options/wishlist_page-options.php:597
#: plugin-options/wishlist_page-options.php:637
#: plugin-options/wishlist_page-options.php:677
#: plugin-options/wishlist_page-options.php:717
msgid "Background hover"
msgstr "Survol de l'arrière-plan"

#: plugin-options/wishlist_page-options.php:565
msgid "Twitter share button icon"
msgstr "Icône de bouton de partage Twitter"

#: plugin-options/wishlist_page-options.php:566
msgid "Select an icon for the Twitter share button"
msgstr "Sélectionnez une icône pour le bouton de partage Twitter"

#: plugin-options/wishlist_page-options.php:576
msgid "Twitter share button custom icon"
msgstr "Icône personnalisée du bouton de partage Twitter"

#: plugin-options/wishlist_page-options.php:577
msgid ""
"Upload an icon you'd like to use for Twitter share button (suggested 32px x "
"32px)"
msgstr ""
"Téléchargez une icône que vous souhaitez utiliser pour le bouton de partage "
"Twitter (32px x 32px suggéré)"

#: plugin-options/wishlist_page-options.php:585
msgid "Twitter share button style"
msgstr "Style de bouton de partage Twitter"

#: plugin-options/wishlist_page-options.php:586
msgid "Choose colors for Twitter share button"
msgstr "Choisissez les couleurs du bouton de partage Twitter"

#: plugin-options/wishlist_page-options.php:605
msgid "Pinterest share button icon"
msgstr "Icône du bouton de partage Pinterest"

#: plugin-options/wishlist_page-options.php:606
msgid "Select an icon for the Pinterest share button"
msgstr "Sélectionnez une icône pour le bouton de partage Pinterest"

#: plugin-options/wishlist_page-options.php:616
msgid "Pinterest share button custom icon"
msgstr "Icône personnalisée du bouton de partage Pinterest"

#: plugin-options/wishlist_page-options.php:617
msgid ""
"Upload an icon you'd like to use for Pinterest share button (suggested 32px "
"x 32px)"
msgstr ""
"Téléchargez une icône que vous souhaitez utiliser pour le bouton de partage "
"Pinterest (32px x 32px suggéré)"

#: plugin-options/wishlist_page-options.php:625
msgid "Pinterest share button style"
msgstr "Style de bouton de partage Pinterest"

#: plugin-options/wishlist_page-options.php:626
msgid "Choose colors for Pinterest share button"
msgstr "Choisissez les couleurs pour le bouton de partage Pinterest"

#: plugin-options/wishlist_page-options.php:645
msgid "Email share button icon"
msgstr "Icône du bouton de partage de courrier électronique"

#: plugin-options/wishlist_page-options.php:646
msgid "Select an icon for the Email share button"
msgstr "Sélectionnez une icône pour le bouton Partager par e-mail"

#: plugin-options/wishlist_page-options.php:656
msgid "Email share button custom icon"
msgstr "Icône personnalisée du bouton de partage par e-mail"

#: plugin-options/wishlist_page-options.php:657
msgid ""
"Upload an icon you'd like to use for the Email share button (suggested 32px "
"x 32px)"
msgstr ""
"Téléchargez une icône que vous souhaitez utiliser pour le bouton Partager "
"par e-mail (32px x 32px suggéré)"

#: plugin-options/wishlist_page-options.php:665
msgid "Email share button style"
msgstr "Style de bouton de partage d'e-mail"

#: plugin-options/wishlist_page-options.php:666
msgid "Choose colors for the Email share button"
msgstr "Choisissez les couleurs pour le bouton Partager par e-mail"

#: plugin-options/wishlist_page-options.php:685
msgid "WhatsApp share button icon"
msgstr "Icône du bouton de partage WhatsApp"

#: plugin-options/wishlist_page-options.php:686
msgid "Select an icon for the WhatsApp share button"
msgstr "Sélectionnez une icône pour le bouton de partage WhatsApp"

#: plugin-options/wishlist_page-options.php:696
msgid "WhatsApp share button custom icon"
msgstr "Icône personnalisée du bouton de partage WhatsApp"

#: plugin-options/wishlist_page-options.php:697
msgid ""
"Upload an icon you'd like to use for WhatsApp share button (suggested 32px x "
"32px)"
msgstr ""
"Téléchargez une icône que vous souhaitez utiliser pour le bouton de partage "
"WhatsApp (32px x 32px suggéré)"

#: plugin-options/wishlist_page-options.php:705
msgid "WhatsApp share button style"
msgstr "Style de bouton de partage WhatsApp"

#: plugin-options/wishlist_page-options.php:706
msgid "Choose colors for WhatsApp share button"
msgstr "Choisissez les couleurs du bouton de partage WhatsApp"

#: templates/admin/wishlist-panel-premium.php:168
#: templates/admin/wishlist-panel-premium.php:309
msgid ""
"Upgrade to the %1$spremium version%2$s%3$sof %1$sYITH WooCommerce Wishlist"
"%2$s to benefit from all features!"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:170
#: templates/admin/wishlist-panel-premium.php:311
msgid "Upgrade"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:176
#, fuzzy
msgid "Premium Features"
msgstr "Version Premium"

#: templates/admin/wishlist-panel-premium.php:180
#, fuzzy
msgid "Allow your customers to create multiple wishlists"
msgstr ""
"Permettre aux clients de créer et de gérer plusieurs listes de souhaits"

#: templates/admin/wishlist-panel-premium.php:182
msgid ""
"Christmas, Birthday... users will be able to create and manage multiple "
"wishlists, in case they prefer to keep the products sorted by category or "
"other parameters."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:185
#, fuzzy
msgid "Multiple Wishlist"
msgstr "Toutes les listes de souhaits"

#: templates/admin/wishlist-panel-premium.php:192
#, fuzzy
msgid "Wishlist Private"
msgstr "Page de liste de souhaits"

#: templates/admin/wishlist-panel-premium.php:196
msgid "A transparent privacy management"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:198
msgid ""
"Your customers can set a privacy option for each wishlist and choose whether "
"sharing the wishlist or making it private."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:206
#, fuzzy
msgid ""
"Allow your customers to ask for an estimate, directly from their wishlist "
"page"
msgstr "Affiche le bouton \"Demander un devis\" sur la page Liste de souhaits"

#: templates/admin/wishlist-panel-premium.php:208
msgid ""
"And give only registered users the privilege to use the wishlist "
"functionalities."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:211
#, fuzzy
msgid "Estimate Cost"
msgstr "Demande d'estimation envoyée"

#: templates/admin/wishlist-panel-premium.php:218
msgid "Admin Panel"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:222
#, fuzzy
msgid "An advanced and more versatile management of the wishlist"
msgstr "Téléchargez une version PDF de la liste de souhaits"

#: templates/admin/wishlist-panel-premium.php:224
msgid ""
"Your customers can sort the products in the wishlist thanks to the drag&drop "
"option, move products from one wishlist to another, manage product quantity, "
"download the wishlist content to a .pdf file, share the wishlist on their "
"social networks, and much more!"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:232
msgid "Monitor your customers’ wishlists and the popular products"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:234
msgid ""
"You can see your customers’ wishlists, gain insight into the products they "
"are more interested in and plan targeted marketing strategies."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:237
#, fuzzy
msgid "Search Wishlists"
msgstr "Rechercher la liste de souhaits"

#: templates/admin/wishlist-panel-premium.php:244
msgid "'ADD TO CART'"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:248
msgid ""
"Send promotional emails for products in wishlists to push customers to buy"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:250
msgid ""
"Just three clicks to send promotional emails with discount coupons to "
"customers who have added specific products to their wishlist and push them "
"to buy."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:258
#, fuzzy
msgid "Let users buy the product right from the wishlist page"
msgstr ""
"Redirigez les utilisateurs vers la page du panier lorsqu'ils ajoutent un "
"produit au panier à partir de la page de la liste de souhaits"

#: templates/admin/wishlist-panel-premium.php:260
msgid ""
"Let them move products from one wishlist to the cart in one click, keeping "
"also the information about the size, colour or quantity selected when added "
"to the wishlist."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:263
msgid "DISABLE WISHLIST"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:271
#, fuzzy
msgid "Choose a charming layout for your wishlist page"
msgstr ""
"Choisissez les couleurs pour l'infobulle Ajouter à la liste de souhaits"

#: templates/admin/wishlist-panel-premium.php:273
msgid ""
"The wishlist is one of the most used functionalities in an ecommerce store "
"but often the page layout is not enhanced enough and looks unattractive to "
"the user. With our plugin, you can choose among some alternative layouts and "
"offer an even more interesting experience to users who creates a wishlist on "
"your website."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:276
msgid "UNLOGGED USERS"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:284
msgid "Wishlist widgets for the header and sidebars"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:286
msgid ""
"Increase the wishlist visibility through our modern widgets that you can use "
"in the header, in the sidebars, wherever you want."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:289
msgid "POPULAR TABLE"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:296
msgid "FUNCTIONALITIES"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:300
#, fuzzy
msgid "Allow users to monitor the price of the products in their wishlist"
msgstr ""
"Voir les utilisateurs qui ont ajouté ce produit à leur liste de souhaits"

#: templates/admin/wishlist-panel-premium.php:302
msgid ""
"We took inspiration from one of the most interesting features of Amazon "
"product pages: from now on, users can realise what’s the best time to buy a "
"product and how much they can save when there’s a promotion running or a "
"discount on the product they’ve added to the wishlist."
msgstr ""

#: templates/share.php:51 templates/share.php:52
msgid "Facebook"
msgstr "Facebook"

#: templates/share.php:59 templates/share.php:60
msgid "Twitter"
msgstr "Twitter"

#: templates/share.php:67 templates/share.php:68
msgid "Pinterest"
msgstr "Pinterest"

#: templates/share.php:75 templates/share.php:76
msgid "Email"
msgstr "Email"

#: templates/share.php:83
msgid "WhatsApp"
msgstr "WhatsApp"

#: templates/share.php:84
msgid "Whatsapp"
msgstr "Whatsapp"

#: templates/share.php:93
msgid "(Now"
msgstr "(Maintenant"

#: templates/share.php:93
msgid "copy"
msgstr "copier"

#: templates/share.php:93
msgid "this wishlist link and share it anywhere)"
msgstr "ce lien de liste de souhaits et le partager n'importe où)"

#: templates/wishlist-view-footer-mobile.php:44
#: templates/wishlist-view-footer.php:44
msgid "Apply this action to all the selected items:"
msgstr "Appliquez cette action à tous les éléments sélectionnés:"

#: templates/wishlist-view-footer-mobile.php:49
#: templates/wishlist-view-footer.php:49
msgid "Remove from wishlist"
msgstr "Supprimer de la liste de souhaits"

#. translators: 1. Wishlist formatted name.
#: templates/wishlist-view-footer-mobile.php:67
#: templates/wishlist-view-footer.php:67
msgid "Move to %s"
msgstr "Déplacer vers %s"

#: templates/wishlist-view-footer-mobile.php:73
#: templates/wishlist-view-footer.php:73
msgid "Apply"
msgstr "Appliquer"

#: templates/wishlist-view-footer-mobile.php:81
#: templates/wishlist-view-footer.php:81
msgid "Update"
msgstr "Mise à jour"

#: templates/wishlist-view-footer-mobile.php:87
#: templates/wishlist-view-footer.php:103
msgid "Add all to cart"
msgstr "Tout ajouter au panier"

#: templates/wishlist-view-header.php:48
msgid "Edit title"
msgstr "Modifier le titre"

#: templates/wishlist-view-mobile.php:136
msgid "Added on:"
msgstr "Ajouté le:"

#: templates/wishlist-view-mobile.php:147
msgid "Price:"
msgstr "Prix:"

#: templates/wishlist-view-mobile.php:174
msgid "Quantity:"
msgstr "Quantité:"

#: templates/wishlist-view-mobile.php:189
msgid "Stock:"
msgstr "Stock:"

#: templates/wishlist-view-mobile.php:192 templates/wishlist-view.php:229
msgid "Out of stock"
msgstr "En rupture de stock"

#: templates/wishlist-view-mobile.php:192 templates/wishlist-view.php:229
msgid "In Stock"
msgstr "En Stock"

#: templates/wishlist-view-mobile.php:212 templates/wishlist-view.php:262
msgid "Move"
msgstr "Déplacer"

#: templates/wishlist-view-mobile.php:233 templates/wishlist-view.php:283
msgid "Move to another list &rsaquo;"
msgstr "Déplacer vers une autre liste &rsaquo;"

#: templates/wishlist-view-mobile.php:241 templates/wishlist-view.php:157
#: templates/wishlist-view.php:293
msgid "Remove this product"
msgstr "Supprimer ce produit"

#: templates/wishlist-view-mobile.php:252 templates/wishlist-view.php:313
msgid "No products added to the wishlist"
msgstr "Aucun produit ajouté à la liste de souhaits"

#: templates/wishlist-view.php:79
msgid "Product name"
msgstr "Nom du produit"

#: templates/wishlist-view.php:87
msgid "Unit price"
msgstr "Prix unitaire"

#: templates/wishlist-view.php:96
msgid "Quantity"
msgstr "Quantité"

#: templates/wishlist-view.php:105
msgid "Stock status"
msgstr "État des stocks"

#: templates/wishlist-view.php:123
msgid "Arrange"
msgstr "Organiser"

#. translators: date added label: 1 date added.
#: templates/wishlist-view.php:243
msgid "Added on: %s"
msgstr "Ajouté le: %s"

#: templates/wishlist-view.php:293
msgid "Remove"
msgstr "Supprimé"

#. Description of the plugin/theme
msgid ""
"<code><strong>YITH WooCommerce Wishlist</strong></code> gives your users the "
"possibility to create, fill, manage and share their wishlists allowing you "
"to analyze their interests and needs to improve your marketing strategies. "
"<a href=\"https://yithemes.com/\" target=\"_blank\">Get more plugins for "
"your e-commerce on <strong>YITH</strong></a>"
msgstr ""
"<code><strong>YITH WooCommerce Wishlist</strong></code> donne à vos "
"utilisateurs la possibilité de créer, remplir, gérer et partager leurs "
"listes de souhaits vous permettant d'analyser leurs intérêts et leurs "
"besoins pour améliorer vos stratégies marketing. <a href=\"https://yithemes."
"com/\" target=\"_blank\">Obtenez plus de plugins pour votre commerce e-"
"commerce sur <strong>YITH</strong></a>"

#: includes/class-yith-wcwl-admin.php:261
msgctxt "[HELP TAB] Video title"
msgid ""
"Check this video to learn how to <b>configure wishlist and customize options:"
"</b>"
msgstr ""

#: includes/class-yith-wcwl-install.php:340
msgctxt "page_slug"
msgid "wishlist"
msgstr "listedesouhaits"

#: includes/class-yith-wcwl-privacy.php:230
msgctxt "date when wishlist was created"
msgid "Created on"
msgstr "Créé le"

#: includes/class-yith-wcwl-shortcode.php:52
msgctxt "[gutenberg]: block name"
msgid "YITH Add to wishlist"
msgstr "YITH Ajouter à la wishlist"

#: includes/class-yith-wcwl-shortcode.php:101
msgctxt "[gutenberg]: block name"
msgid "YITH Wishlist"
msgstr "YITH Wishlist"

#: includes/class-yith-wcwl-shortcode.php:53
msgctxt "[gutenberg]: block description"
msgid "Shows Add to wishlist button"
msgstr "Affiche le bouton Ajouter à la liste de souhaits"

#: includes/class-yith-wcwl-shortcode.php:102
msgctxt "[gutenberg]: block description"
msgid "Shows a list of products in wishlist"
msgstr "Affiche une liste de produits dans la liste de souhaits"

#. translators: 1. % of reduction/increase in price.
#: includes/class-yith-wcwl-wishlist-item.php:428
msgctxt ""
"Part of the template that shows price variation since addition to list; "
"placeholder will be replaced with a percentage"
msgid "Price is %1$s%%"
msgstr "Le prix est %1$s%%"

#. translators: 2: original product price.
#: includes/class-yith-wcwl-wishlist-item.php:430
msgctxt ""
"Part of the template that shows price variation since addition to list; "
"placeholder will be replaced with a price"
msgid "(Was %2$s when added  in list)"
msgstr "(Était %2$s lors de l'ajout dans la liste)"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:45
msgctxt "Elementor widget name"
msgid "YITH Wishlist Add button"
msgstr "YITH Wishlist bouton Ajouter"

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:45
msgctxt "Elementor widget name"
msgid "YITH Wishlist"
msgstr "YITH Wishlist"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:87
msgctxt "Elementor section title"
msgid "Product"
msgstr "Produit"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:107
msgctxt "Elementor section title"
msgid "Labels"
msgstr "Étiquettes"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:157
msgctxt "Elementor section title"
msgid "Advanced"
msgstr "Avancé"

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:87
msgctxt "Elementor section title"
msgid "Wishlist"
msgstr "Liste de souhaits"

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:107
msgctxt "Elementor section title"
msgid "Pagination"
msgstr "Pagination"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:95
msgctxt "Elementor control label"
msgid "Product ID"
msgstr "ID produit"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:115
msgctxt "Elementor control label"
msgid "Button label"
msgstr "Étiquette de bouton"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:125
msgctxt "Elementor control label"
msgid "\"Browse wishlist\" label"
msgstr "Étiquette \"Parcourir la liste de souhaits\""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:135
msgctxt "Elementor control label"
msgid "\"Product already in wishlist\" label"
msgstr "Étiquette \"Produit déjà dans la liste de souhaits\""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:145
msgctxt "Elementor control label"
msgid "\"Product added to wishlist\" label"
msgstr "Étiquette \"Produit ajouté à la liste de souhaits\""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:165
msgctxt "Elementor control label"
msgid "URL of the wishlist page"
msgstr "URL de la page de liste de souhaits"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:175
msgctxt "Elementor control label"
msgid "Icon for the button"
msgstr "Icône pour le bouton"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:185
msgctxt "Elementor control label"
msgid "Additional CSS classes for the button"
msgstr "Classes CSS supplémentaires pour le bouton"

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:95
msgctxt "Elementor control label"
msgid "Wishlist ID"
msgstr "ID de la liste de souhaits"

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:115
msgctxt "Elementor control label"
msgid "Paginate items"
msgstr "Paginer les éléments"

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:128
msgctxt "yith-woocommerce-wishlist"
msgid "Items per page"
msgstr "Objets par page"

#~ msgid "My wishlist on "
#~ msgstr "Ma liste d'envies sur"

#~ msgid "YITH WooCommerce Wishlist"
#~ msgstr "YITH WooCommerce Wishlist"

#~ msgid "https://yithemes.com/themes/plugins/yith-woocommerce-wishlist/"
#~ msgstr "https://yithemes.com/themes/plugins/yith-woocommerce-wishlist/"

#~ msgid "YITH"
#~ msgstr "YITH"

#~ msgid "https://yithemes.com/"
#~ msgstr "https://yithemes.com/"

#~ msgid "Save"
#~ msgstr "Enregistrer"

#~ msgid "Cancel"
#~ msgstr "Annuler"

#~ msgid "Unit Price:"
#~ msgstr "Prix unitaire:"

#~ msgid "This wishlist is empty.<br/>Add some item soon!"
#~ msgstr "Cette liste de souhaits est vide.<br/>Ajouter un article bientôt!"

#~ msgid ""
#~ "In order to avoid overloading your server, we will send %d emails every "
#~ "hour. This will take some time; please relax and wait for the operation "
#~ "to complete ;)"
#~ msgstr ""
#~ "Afin d'éviter de surcharger votre serveur, nous enverrons %d e-mails "
#~ "toutes les heures. Cela prendra un certain temps; veuillez vous détendre "
#~ "et attendre la fin de l'opération ;)"

#~ msgid "There was an error while processing your request; please, try later"
#~ msgstr ""
#~ "Une erreur s'est produite lors du traitement de votre demande; Merci "
#~ "d'essayer plus tard"

#~ msgid "Search a wishlist"
#~ msgstr "Rechercher une liste de souhaits"

#~ msgid "Leave the modal open"
#~ msgstr "Laissez le modal ouvert"

#~ msgid "Automatically close the modal"
#~ msgstr "Fermer automatiquement le modal"

#~ msgid ""
#~ "Choose what should happen to the modal, when a product is added to the "
#~ "list."
#~ msgstr ""
#~ "Choisissez ce qui doit arriver au modal, lorsqu'un produit est ajouté à "
#~ "la liste."

#~ msgid "View your wishlist &rsaquo;"
#~ msgstr "Afficher votre liste de souhaits &rsaquo;"

#~ msgid "Please, add your first item to the wishlist"
#~ msgstr "Veuillez ajouter votre premier article à la liste de souhaits"

#~ msgid "In"
#~ msgstr "Dans"

#~ msgid "%d items in wishlist"
#~ msgstr "%d éléments dans la liste de souhaits"

#~ msgid "0 results for \"%s\" in the wishlist"
#~ msgstr "0 résultats pour \"%s\" dans la liste de souhaits"

#~ msgid "Wishlist of:"
#~ msgstr "Liste de souhaits de:"

#~ msgid "Type a name or an email address"
#~ msgstr "Tapez un nom ou une adresse e-mail"

#~ msgid ""
#~ "This item is already in the <b>%s wishlist</b>.<br/>You can move it in "
#~ "another list:"
#~ msgstr ""
#~ "Cet élément est déjà dans la <b>%sliste de souhaits</b>.<br/>Vous pouvez "
#~ "le déplacer dans une autre liste:"

#~ msgid "Your email"
#~ msgstr "Votre email"

#~ msgid "Ask for an estimate for this list:"
#~ msgstr "Demandez un devis pour cette liste:"

#~ msgid "Ask for an estimate for this list"
#~ msgstr "Demandez un devis pour cette liste"

#~ msgid "Unit Price"
#~ msgstr "Prix Unitaire"

#~ msgid "Product Name"
#~ msgstr "Nom du Produit"

#~ msgid "Download"
#~ msgstr "Télécharger"

#~ msgid "Created on"
#~ msgstr "Créé le"

#~ msgid "Count of items"
#~ msgstr "Nombre d'articles"

#~ msgid "Are you sure you want to delete this wishlist?"
#~ msgstr "Voulez-vous vraiment supprimer cette liste de souhaits?"

#~ msgid "Created on:"
#~ msgstr "Créé le:"

#~ msgid "Visibility:"
#~ msgstr "Visibilité:"

#~ msgid "%d items"
#~ msgstr "%d éléments"

#~ msgid "Items:"
#~ msgstr "Éléments:"

#~ msgid "Create wishlist"
#~ msgstr "Créer une liste de souhaits"

#~ msgid "Name your list"
#~ msgstr "Nommez votre liste"

#~ msgid "Price"
#~ msgstr "Prix"

#~ msgid "Product"
#~ msgstr "Produit"

#~ msgid "Wishlist link: %s"
#~ msgstr "Lien de la liste d'envies: %s"

#~ msgid "Email:"
#~ msgstr "Email:"

#~ msgid "Customer details"
#~ msgstr "Détails Clients"

#~ msgid "Additional data:"
#~ msgstr "Donnée supplémentaire:"

#~ msgid "Additional info:"
#~ msgstr "Information supplémentaire:"

#~ msgid "Wishlist:"
#~ msgstr "Liste de souhaits:"

#~ msgid "Wishlist: %s"
#~ msgstr "Liste de souhaits: %s"

#~ msgid ""
#~ "You have received an estimate request from %s. The request is the "
#~ "following:"
#~ msgstr ""
#~ "Vous avez reçu une demande d'estimation de %s. La requête est la suivante:"

#~ msgid "Send email"
#~ msgstr "Envoyer un e-mail"

#~ msgid "(calculating...) users"
#~ msgstr "(calcul...) utilisateurs"

#~ msgid "You're about to send this promotional email to"
#~ msgstr "Vous êtes sur le point d'envoyer cet e-mail promotionnel à"

#~ msgid "Ready to send?"
#~ msgstr "Prêt à envoyer?"

#~ msgid "&lsaquo; Back"
#~ msgstr "&lsaquo; Retour"

#~ msgid "Save draft &rsaquo;"
#~ msgstr "Enregistrer le brouillon &rsaquo;"

#~ msgid "Preview:"
#~ msgstr "Aperçu:"

#~ msgid "This field lets you choose coupon to use for the email."
#~ msgstr "Ce champ vous permet de choisir le coupon à utiliser pour l'e-mail."

#~ msgid "Select a coupon"
#~ msgstr "Choisir un coupon"

#~ msgid "Coupon"
#~ msgstr "Coupon"

#~ msgid ""
#~ "This field lets you modify the main content of the text version of the "
#~ "email"
#~ msgstr ""
#~ "Ce champ vous permet de modifier le contenu principal de la version texte "
#~ "de l'e-mail"

#~ msgid ""
#~ "you can customize the header in WooCommerce &rsaquo; Settings &rsaquo; "
#~ "Emails."
#~ msgstr ""
#~ "vous pouvez personnaliser l'en-tête dans WooCommerce &rsaquo; Réglages "
#~ "&rsaquo; Emails."

#~ msgid "Note: "
#~ msgstr "Note: "

#~ msgid "You can use the following placeholder:"
#~ msgstr "Vous pouvez utiliser l'espace réservé suivant:"

#~ msgid ""
#~ "This field lets you modify the main content of the HTML version of the "
#~ "email."
#~ msgstr ""
#~ "Ce champ vous permet de modifier le contenu principal de la version HTML "
#~ "de l'e-mail."

#~ msgid "E-mail Text content"
#~ msgstr "Contenu du texte de l'e-mail"

#~ msgid "E-mail HTML content"
#~ msgstr "Contenu HTML de l'e-mail"

#~ msgid "Set a promotional e-mail"
#~ msgstr "Définir un e-mail promotionnel"

#~ msgid "Enter wishlist name"
#~ msgstr "Entrez le nom de la liste de souhaits"

#~ msgid "Choose a wishlist"
#~ msgstr "Choisissez une liste de souhaits"

#~ msgid "click to remove it"
#~ msgstr "cliquez pour le supprimer"

#~ msgid "Wishlist name"
#~ msgstr "Nom de la liste"

#~ msgid "Create a new list"
#~ msgstr "Créer une liste"

#~ msgid ""
#~ "This item is already in the <b>%s wishlist</b>.<br/>You can move it to "
#~ "another list:"
#~ msgstr ""
#~ "Cet élément est déjà dans la <b>liste de souhaits %s</b>.<br/> Vous "
#~ "pouvez le déplacer vers une autre liste:"

#~ msgid "In your wishlist"
#~ msgstr "Dans votre liste de souhaits"

#~ msgid ""
#~ "Enter the mail subject line. Leave blank to use the default subject: "
#~ "\"<i>An item of your wishlist is on sale!</i>\""
#~ msgstr ""
#~ "Entrez la ligne d'objet du courrier. Laissez vide pour utiliser le sujet "
#~ "par défaut: \"<i>Un article de votre liste de souhaits est en promo!</i>\""

#~ msgid ""
#~ "Enter the title for the email notification. Leave blank to use the "
#~ "default heading: \"<i>An item of your wishlist is on sale!</i>\""
#~ msgstr ""
#~ "Saisissez le titre de la notification par e-mail. Laissez vide pour "
#~ "utiliser l'en-tête par défaut: \"<i>Un article de votre liste de souhaits "
#~ "est en promo!</i>\""

#~ msgid ""
#~ "Select product categories that should not trigger the \"on sale item\" "
#~ "notification"
#~ msgstr ""
#~ "Sélectionnez les catégories de produits qui ne doivent pas déclencher la "
#~ "notification \"article en promo\""

#~ msgid ""
#~ "Select products that should not trigger the \"on sale item\" notifications"
#~ msgstr ""
#~ "Sélectionnez les produits qui ne doivent pas déclencher les notifications "
#~ "\"article en promo\""

#~ msgid ""
#~ "Enable this email to send notifications to your customers whenever a "
#~ "product in their wishlist is on sale"
#~ msgstr ""
#~ "Activez cet e-mail pour envoyer des notifications à vos clients chaque "
#~ "fois qu'un produit de leur liste de souhaits est en promotion"

#~ msgid "Enable \"On sale item\" email"
#~ msgstr "Activer l'e-mail \"En promotion\""

#~ msgid "\"On sale item\" email"
#~ msgstr "E-mail \"En promotion\""

#~ msgid ""
#~ "Enter the mail subject line. Leave blank to use the default subject: "
#~ "\"<i>An item of your wishlist is back in stock!</i>\""
#~ msgstr ""
#~ "Entrez la ligne d'objet du courrier. Laissez vide pour utiliser le sujet "
#~ "par défaut: \"<i> Un article de votre liste de souhaits est de retour en "
#~ "stock! </i>\""

#~ msgid ""
#~ "Enter the title of the email notification. Leave blank to use the default "
#~ "heading: \"<i>An item of your wishlist is back in stock!</i>\""
#~ msgstr ""
#~ "Saisissez le titre de la notification par e-mail. Laissez vide pour "
#~ "utiliser l'en-tête par défaut: \"<i> Un article de votre liste de "
#~ "souhaits est de retour en stock! </i>\""

#~ msgid ""
#~ "Select the product categories that should not trigger the \"back in stock"
#~ "\" notification"
#~ msgstr ""
#~ "Sélectionnez les catégories de produits qui ne doivent pas déclencher la "
#~ "notification de \"retour en stock\""

#~ msgid "Category exclusions"
#~ msgstr "Exclusions de catégorie"

#~ msgid ""
#~ "Select products that shouldn't trigger the \"back in stock\" notifications"
#~ msgstr ""
#~ "Sélectionnez les produits qui ne devraient pas déclencher les "
#~ "notifications de \"retour en stock\""

#~ msgid "Product exclusions"
#~ msgstr "Exclusions de produits"

#~ msgid ""
#~ "Enable this email to send notifications to your customers whenever a "
#~ "product in their wishlist is back in stock"
#~ msgstr ""
#~ "Activez cet e-mail pour envoyer des notifications à vos clients chaque "
#~ "fois qu'un produit de leur liste de souhaits est de nouveau en stock"

#~ msgid "Enable \"Back in stock\" email"
#~ msgstr "Activer l'e-mail \"Retour en stock\""

#~ msgid "\"Back in stock\" email"
#~ msgstr "E-mail \"Retour en stock\""

#~ msgid ""
#~ "This field lets you modify the main content of the text email. You can "
#~ "use the following placeholders: <code>{user_name}</code> "
#~ "<code>{user_email}</code> <code>{user_first_name}</code> "
#~ "<code>{user_last_name}</code> <code>{product_name}</code> "
#~ "<code>{product_price}</code> <code>{coupon_code}</code> "
#~ "<code>{coupon_amount}</code> <code>{coupon_value}</code> "
#~ "<code>{product_url}</code> <code>{add_to_cart_url}</code>"
#~ msgstr ""
#~ "Ce champ vous permet de modifier le contenu principal de l'e-mail texte. "
#~ "Vous pouvez utiliser les espaces réservés suivants: <code>{user_name}</"
#~ "code> <code>{user_email}</code> <code>{user_first_name}</code> "
#~ "<code>{user_last_name}</code> <code>{product_name}</code> "
#~ "<code>{product_price}</code> <code>{coupon_code}</code> "
#~ "<code>{coupon_amount}</code> <code>{coupon_value}</code> "
#~ "<code>{product_url}</code> <code>{add_to_cart_url}</code>"

#~ msgid "Email plain content"
#~ msgstr "Envoyer du contenu brut par e-mail"

#~ msgid ""
#~ "This field lets you modify the main content of the HTML email. You can "
#~ "use the following placeholders: <code>{user_name}</code> "
#~ "<code>{user_email}</code> <code>{user_first_name}</code> "
#~ "<code>{user_last_name}</code> <code>{product_image}</code> "
#~ "<code>{product_name}</code> <code>{product_price}</code> "
#~ "<code>{coupon_code}</code> <code>{coupon_amount}</code> "
#~ "<code>{product_url}</code> <code>{add_to_cart_url}</code>"
#~ msgstr ""
#~ "Ce champ vous permet de modifier le contenu principal de l'e-mail HTML. "
#~ "Vous pouvez utiliser les espaces réservés suivants: <code> {user_name} </"
#~ "code> <code> {user_email} </code> <code> {user_first_name} </code> <code> "
#~ "{user_last_name} </code> <code> {product_image} </code> <code> "
#~ "{product_name} </code> <code> {product_price} </code> <code> "
#~ "{coupon_code} </code> <code> {coupon_amount} </code> <code> {product_url} "
#~ "</code> <code> {add_to_cart_url} </code>"

#~ msgid ""
#~ "Enter the mail subject line. Leave blank to use the default subject: "
#~ "\"<i>A product of your wishlist is on sale</i>\""
#~ msgstr ""
#~ "Entrez la ligne d'objet du courrier. Laisser en blanc pour utiliser le "
#~ "sujet par défaut: \"<i>Un produit de votre liste de souhaits est en "
#~ "promotion</i>\""

#~ msgid ""
#~ "Enter the title for the email notification. Leave blank to use the "
#~ "default heading: \"<i>There is a deal for you!</i>\""
#~ msgstr ""
#~ "Saisissez le titre de la notification par e-mail. Laisser vide pour "
#~ "utiliser l'en-tête par défaut: \"<i>Il y a une offre pour vous!</i>\""

#~ msgid "\"Promotional\" email"
#~ msgstr "Courriel \"promotionnel\""

#~ msgid "< Back to popular"
#~ msgstr "< Retour à populaire"

#~ msgid "Users that added product to wishlist"
#~ msgstr "Utilisateurs qui ont ajouté le produit à la liste de souhaits"

#~ msgid "Users that added \"%s\" to wishlist"
#~ msgstr "Utilisateurs qui ont ajouté \"%s\" à la liste de souhaits"

#~ msgid "Popular products"
#~ msgstr "Produits populaires"

#~ msgid ""
#~ "Upload an icon you'd like to use for \"Ask for an estimate\" button "
#~ "(suggested 32px x 32px)"
#~ msgstr ""
#~ "Téléchargez une icône que vous souhaitez utiliser pour le bouton "
#~ "\"Demander un devis\" (32px x 32px suggéré)"

#~ msgid "\"Ask for an estimate\" custom icon"
#~ msgstr "Icône personnalisée \"Demander un devis\""

#~ msgid "Select an icon for the \"Ask for an Estimate\" button (optional)"
#~ msgstr ""
#~ "Sélectionnez une icône pour le bouton \"Demander un devis\" (facultatif)"

#~ msgid "\"Ask for an estimate\" icon"
#~ msgstr "Icône \"Demander un devis\""

#~ msgid "Choose radius for the \"Ask for an Estimate\" button"
#~ msgstr "Choisissez le rayon du bouton \"Demander un devis\""

#~ msgid "Choose colors for the \"Ask for an estimate\" button on hover state"
#~ msgstr ""
#~ "Choisissez les couleurs du bouton \"Demander un devis\" sur l'état du "
#~ "survol"

#~ msgid "Choose colors for the \"Ask for an estimate\" button"
#~ msgstr "Choisissez les couleurs du bouton \"Demander un devis\""

#~ msgid "\"Ask for an Estimate\" button style"
#~ msgstr "Style de bouton \"Demander une estimation\""

#~ msgid ""
#~ "Choose if you want to show a textual \"Ask for an Estimate\" link or a "
#~ "button"
#~ msgstr ""
#~ "Choisissez si vous souhaitez afficher un lien textuel \"Demander un devis"
#~ "\" ou un bouton"

#~ msgid "Style of \"Ask for an estimate\""
#~ msgstr "Style de \"Demander un devis\""

#~ msgid "Additional notes"
#~ msgstr "Notes additionnelles"

#~ msgid ""
#~ "This option lets you customize the label for the \"Additional notes\" "
#~ "text area"
#~ msgstr ""
#~ "Cette option vous permet de personnaliser le libellé de la zone de texte "
#~ "\"Notes supplémentaires\""

#~ msgid "\"Additional notes\" textarea label"
#~ msgstr "Libellé de zone de texte \"Notes supplémentaires\""

#~ msgid ""
#~ "This option lets you customize the label of \"Ask for an Estimate\" button"
#~ msgstr ""
#~ "Cette option vous permet de personnaliser le libellé du bouton \"Demander "
#~ "un devis\""

#~ msgid "\"Ask for an estimate\" button label"
#~ msgstr "Étiquette du bouton \"Demander un devis\""

#~ msgid ""
#~ "Enter the options for the field type you've selected. Separate options "
#~ "with pipes (|), and key from value with double colon (::). E.g. key::"
#~ "value|key2::value2"
#~ msgstr ""
#~ "Entrez les options du type de champ que vous avez sélectionné. Séparez "
#~ "les options par des tuyaux (|) et saisissez la valeur par un double signe "
#~ "deux points (::). Par exemple. key::value|key2::value2"

#~ msgid "Enter options for the field"
#~ msgstr "Entrez des options pour le champ"

#~ msgid "Select"
#~ msgstr "Sélectionner"

#~ msgid "Checkbox"
#~ msgstr "Case à cocher"

#~ msgid "Radio"
#~ msgstr "Radio"

#~ msgid "Textarea"
#~ msgstr "Zone de texte"

#~ msgid "Number"
#~ msgstr "Nombre"

#~ msgid "URL"
#~ msgstr "URL"

#~ msgid "Phone"
#~ msgstr "Téléphone"

#~ msgid "Choose the type of field to print in the form"
#~ msgstr "Choisissez le type de champ à afficher dans le formulaire"

#~ msgid "Type of field"
#~ msgstr "Type de champ"

#~ msgid "Wide"
#~ msgstr "Large"

#~ msgid "Last"
#~ msgstr "Dernier"

#~ msgid "First"
#~ msgstr "Premier"

#~ msgid ""
#~ "Choose between first (the field will be the first in a row that contains "
#~ "two items), last (the field will be the second in a row of two) or wide "
#~ "(the field will take an entire row)"
#~ msgstr ""
#~ "Choisissez entre le premier (le champ sera le premier d'une ligne "
#~ "contenant deux éléments), le dernier (le champ sera le deuxième d'une "
#~ "ligne de deux) ou large (le champ prendra une ligne entière)"

#~ msgid "Position of the field in the form"
#~ msgstr "Position du champ dans le formulaire"

#~ msgid "Enter the description that will be shown above the field"
#~ msgstr "Entrez la description qui sera affichée au-dessus du champ"

#~ msgid "Field description"
#~ msgstr "Description du champ"

#~ msgid "Enter the placeholder that will be shown in the field"
#~ msgstr "Entrez l'espace réservé qui sera affiché dans le champ"

#~ msgid "Placeholder for the field"
#~ msgstr "Espace réservé pour le champ"

#~ msgid "Choose whether this field is required or not"
#~ msgstr "Choisissez si ce champ est obligatoire ou non"

#~ msgid "Required field"
#~ msgstr "Champs requis"

#~ msgid "Enter the label that will be shown for this field"
#~ msgstr "Entrez l'étiquette qui sera affichée pour ce champ"

#~ msgid "Label for the field"
#~ msgstr "Étiquette pour le champ"

#~ msgid "Field %%label%%"
#~ msgstr "Champ %%label%%"

#~ msgid "Add new field"
#~ msgstr "Ajouter un nouveau champ"

#~ msgid "Ask for an estimate fields"
#~ msgstr "Champs Demander un devis"

#~ msgid ""
#~ "Show an Additional notes popup before submitting the price estimate "
#~ "request to let customers add extra notes"
#~ msgstr ""
#~ "Afficher une fenêtre contextuelle Notes supplémentaires avant de "
#~ "soumettre la demande d'estimation de prix pour permettre aux clients "
#~ "d'ajouter des notes supplémentaires"

#~ msgid "Enable \"Additional notes\" popup"
#~ msgstr "Activer le popup \"Notes supplémentaires\""

#~ msgid ""
#~ "These fields will be shown in the popup opened by Ask an Estimate button. "
#~ "The Email field will be prepended for unauthenticated users. An "
#~ "Additional Notes textarea will be postponed to the selected fields."
#~ msgstr ""
#~ "Ces champs seront affichés dans la fenêtre contextuelle ouverte par le "
#~ "bouton Demander un devis. Le champ E-mail sera ajouté pour les "
#~ "utilisateurs non authentifiés. Une zone de texte Notes supplémentaires "
#~ "sera reportée aux champs sélectionnés."

#~ msgid "Additional Popup"
#~ msgstr "Popup supplémentaire"

#~ msgid ""
#~ "Allow the admin to choose whether to send a copy of the email to the user"
#~ msgstr ""
#~ "Autoriser l'administrateur à choisir d'envoyer ou non une copie de l'e-"
#~ "mail à l'utilisateur"

#~ msgid "Send CC option"
#~ msgstr "Option d'envoi en CC"

#~ msgid ""
#~ "Enter recipients (comma separated) for this email. Defaults to \"<i>%s</i>"
#~ "\""
#~ msgstr ""
#~ "Saisissez les destinataires (séparés par des virgules) de cet e-mail. Par "
#~ "défaut, \"<i>%s</i>\""

#~ msgid ""
#~ "Enter the mail subject line. Leave blank to use the default subject: "
#~ "\"<i>[Estimate request]</i>\""
#~ msgstr ""
#~ "Entrez la ligne d'objet du courrier. Laissez vide pour utiliser le sujet "
#~ "par défaut: \"<i>[Estimate request]</i>\""

#~ msgid "Email subject"
#~ msgstr "Sujet de l'email"

#~ msgid ""
#~ "Enter the title for your email notification. Leave blank to use the "
#~ "default heading: \"<i>Estimate request</i>\""
#~ msgstr ""
#~ "Saisissez le titre de votre notification par e-mail. Laissez vide pour "
#~ "utiliser l'en-tête par défaut: \"<i> Demande d'estimation </i>\""

#~ msgid "Plain"
#~ msgstr "Brut"

#~ msgid "Choose which type of email to send"
#~ msgstr "Choisissez le type d'e-mail à envoyer"

#~ msgid "Settings Page"
#~ msgstr "Page Paramètres"

#~ msgid ""
#~ "If you want to customize the email that will be sent to the admin, "
#~ "please, visit"
#~ msgstr ""
#~ "Si vous souhaitez personnaliser l'e-mail qui sera envoyé à "
#~ "l'administrateur, veuillez visiter"

#~ msgid "Enable \"Ask for an estimate\" button"
#~ msgstr "Activer le bouton \"Demander une estimation\""

#~ msgid "When product is added to wishlist"
#~ msgstr "Lorsque le produit est ajouté à la liste de souhaits"

#~ msgid "YITH WooCommerce Wishlist Premium"
#~ msgstr "YITH WooCommerce Wishlist Premium"

#~ msgid "Show manage link"
#~ msgstr "Afficher le lien de gestion"

#~ msgid "Show search link"
#~ msgstr "Afficher le lien de recherche"

#~ msgid "Show create link"
#~ msgstr "Afficher le lien de création"

#~ msgid "\"Your wishlist\" link:"
#~ msgstr "Lien \"Votre liste de souhaits\":"

#~ msgid "A list of all the user's wishlists"
#~ msgstr "Une liste de toutes les listes de souhaits de l'utilisateur"

#~ msgid "YITH Wishlist Lists"
#~ msgstr "Listes YITH Wishlist "

#~ msgid "Show View Wishlists link"
#~ msgstr "Afficher le lien Afficher les listes de souhaits"

#~ msgid "Show Add all to Cart button"
#~ msgstr "Afficher le bouton Tout ajouter au panier"

#~ msgid "Show items from default wishlist only"
#~ msgstr "Afficher uniquement les éléments de la liste de souhaits par défaut"

#~ msgid "Show items count"
#~ msgstr "Afficher le nombre d'articles"

#~ msgid "Show mini widget"
#~ msgstr "Afficher le mini widget"

#~ msgid "Show extended widget"
#~ msgstr "Afficher le widget étendu"

#~ msgid "Title:"
#~ msgstr "Title:"

#~ msgid "A list of products in the user's wishlists"
#~ msgstr "Une liste de produits dans les listes de souhaits de l'utilisateur"

#~ msgid "YITH Wishlist Items"
#~ msgstr "Articles de la liste de souhaits YITH"

#~ msgid "Added on"
#~ msgstr "Ajouter sur"

#~ msgid "Image"
#~ msgstr "Image"

#~ msgid "Email user"
#~ msgstr "Email utilisateur"

#~ msgid "Email this user"
#~ msgstr "Envoyer un mail à cet utilisateur"

#~ msgid "Edit this user"
#~ msgstr "Modifier cet utilisateur"

#~ msgid "product"
#~ msgstr "produit"

#~ msgid "Actions"
#~ msgstr "Actions"

#~ msgid "Last promotional email sent"
#~ msgstr "Dernier email promotionnel envoyé"

#~ msgid "Wishlist count"
#~ msgstr "compte de liste"

#~ msgid "Category"
#~ msgstr "Catégorie"

#~ msgid "Export users that have added this product to their wishlist"
#~ msgstr ""
#~ "Exporter les utilisateurs qui ont ajouté ce produit à leur liste de "
#~ "souhaits"

#~ msgid "Create promotion"
#~ msgstr "Créer une promotion"

#~ msgid "N/A"
#~ msgstr "N/A"

#~ msgid "View Product"
#~ msgstr "Voir le Produit"

#~ msgid "View users"
#~ msgstr "Voir les utilisateurs"

#~ msgid ""
#~ "View a list with users that have added this product to their wishlist"
#~ msgstr ""
#~ "Afficher une liste des utilisateurs qui ont ajouté ce produit à leur "
#~ "liste de souhaits"

#~ msgid "Edit"
#~ msgstr "Editer"

#~ msgid "Edit this item"
#~ msgstr "Modifier cet article"

#~ msgctxt "Admin: \"all wishlists\" table views"
#~ msgid "Private"
#~ msgstr "Privé"

#~ msgctxt "Admin: \"all wishlists\" table views"
#~ msgid "Shared"
#~ msgstr "Partagé"

#~ msgctxt "Admin: \"all wishlists\" table views"
#~ msgid "Public"
#~ msgstr "Publique"

#~ msgctxt "Admin: \"all wishlists\" table views"
#~ msgid "All"
#~ msgstr "Tout"

#~ msgid "Date"
#~ msgstr "Date"

#~ msgid "Items in wishlist"
#~ msgstr "Articles dans votre Liste de souhaits"

#~ msgid "Privacy"
#~ msgstr "Confidentialité"

#~ msgid "Username"
#~ msgstr "Nom d'utilisateur"

#~ msgid "Name"
#~ msgstr "Nom"

#~ msgid "%s ago"
#~ msgstr "il y a %s"

#~ msgid "N/D"
#~ msgstr "N/D"

#~ msgid "Delete"
#~ msgstr "Supprimer"

#~ msgid "View"
#~ msgstr "Vue"

#~ msgid "guest"
#~ msgstr "invité"

#~ msgid "wishlists"
#~ msgstr "listes de souhaits"

#~ msgid "wishlist"
#~ msgstr "liste de souhaits"

#~ msgid ""
#~ "Hi {user_name}\n"
#~ "A product of your wishlist is on sale!\n"
#~ "\n"
#~ "{product_name} {product_price}\n"
#~ "\n"
#~ "Visit {add_to_cart_url} and use this coupon code\n"
#~ "{coupon_code}\n"
#~ "to get an amazing discount!"
#~ msgstr ""
#~ "Bonjour {user_name} \n"
#~ "Un produit de votre liste de souhaits est en promotion! \n"
#~ "\n"
#~ "{product_name} {product_price}\n"
#~ "\n"
#~ "Visitez {add_to_cart_url} et utilisez ce code promo\n"
#~ "{coupon_code} \n"
#~ "pour obtenir un rabais incroyable!"

#~ msgid ""
#~ "This field lets you modify the main content of the text email. You can "
#~ "use the following placeholders: %s"
#~ msgstr ""
#~ "Ce champ vous permet de modifier le contenu principal de l'e-mail texte. "
#~ "Vous pouvez utiliser les espaces réservés suivants: %s"

#~ msgid ""
#~ "<p>Hi {user_name}</p>\n"
#~ "<p>A product of your wishlist is on sale!</p>\n"
#~ "<p>\n"
#~ "\t<table>\n"
#~ "\t    <tr>\n"
#~ "\t        <td>{product_image}</td>\n"
#~ "\t        <td>{product_name}</td>\n"
#~ "\t        <td>{product_price}</td>\n"
#~ "\t    </tr>\n"
#~ "\t</table>\n"
#~ "</p>\n"
#~ "<p>Use this coupon code <b><a href=\"{add_to_cart_url}\">{coupon_code}</"
#~ "a></b> to get an amazing discount!</p>"
#~ msgstr ""
#~ "<p> Bonjour {user_name} </p> \n"
#~ "<p> Un produit de votre liste de souhaits est en promotion! </p> \n"
#~ "<p> \n"
#~ "\t <table> \n"
#~ "\t <tr> \n"
#~ "\t <td> {image_produit} </td> \n"
#~ "\t <td> {nom_produit} </td> \n"
#~ "\t <td> {product_price} </td> \n"
#~ "\t </tr> \n"
#~ "\t </table> \n"
#~ "</p> \n"
#~ "<p> Utilisez ce code promo <b> <a href=\"{add_to_cart_url}\"> "
#~ "{coupon_code} </a> </b> pour obtenir une remise exceptionnelle! </p>"

#~ msgid ""
#~ "This field lets you modify the main content of the HTML email. You can "
#~ "use the following placeholders: %s"
#~ msgstr ""
#~ "Ce champ vous permet de modifier le contenu principal de l'e-mail HTML. "
#~ "Vous pouvez utiliser les espaces réservés suivants: %s"

#~ msgid "Email HTML content"
#~ msgstr "Contenu HTML Email"

#~ msgid "Email heading"
#~ msgstr "En-tête de l'e-mail"

#~ msgid "Product image"
#~ msgstr "Nom du Produit"

#~ msgid "A product of your wishlist is on sale"
#~ msgstr "Un produit de votre liste de souhaits est en vente"

#~ msgid "There is a deal for you!"
#~ msgstr "Il y a une offre pour vous!"

#~ msgid ""
#~ "This email is sent to users to inform them about a promotion on a product "
#~ "in their wishlist"
#~ msgstr ""
#~ "Cet email est envoyé aux utilisateurs pour les informer d'une promotion "
#~ "sur un produit de leur liste de souhaits"

#~ msgid "Wishlist promotional email"
#~ msgstr "Email promotionnel de la liste de souhaits"

#~ msgid ""
#~ "Hi {user_name}\n"
#~ "A product of your wishlist is on sale!\n"
#~ "\n"
#~ "{products_list}\n"
#~ "\n"
#~ "We only have limited stock, so don't wait any longer, and take this "
#~ "chance to make it yours!\n"
#~ "\n"
#~ "****************************************************\n"
#~ "\n"
#~ "If you don't want to receive any further notification, please follow this "
#~ "link [{unsubscribe_url}]\n"
#~ "\n"
#~ msgstr ""
#~ "Bonjour {user_name} \n"
#~ "Un produit de votre liste de souhaits est en vente! \n"
#~ "\n"
#~ "{products_list} \n"
#~ "\n"
#~ "Nous ne disposons que d'un stock limité, alors n'attendez plus et "
#~ "profitez-en pour le faire vôtre! \n"
#~ "\n"
#~ "************************************************** ** \n"
#~ "\n"
#~ "Si vous ne souhaitez plus recevoir de notification, veuillez suivre ce "
#~ "lien [{unsubscribe_url}] \n"
#~ "\n"
#~ "\n"

#~ msgid ""
#~ "<p>Hi {user_name}</p>\n"
#~ "<p>A product of your wishlist is on sale!</p>\n"
#~ "{products_table}\n"
#~ "<p>We only have limited stock, so don't wait any longer, and take this "
#~ "chance to make it yours!</p>\n"
#~ "<p><small>If you don't want to receive any further notification, please "
#~ "{unsubscribe_link}</small></p>"
#~ msgstr ""
#~ "<p> Bonjour {user_name} </p> \n"
#~ "<p> Un produit de votre liste de souhaits est en vente! </p> \n"
#~ "{products_table} \n"
#~ "<p> Nous ne disposons que d'un stock limité, alors n'attendez plus et "
#~ "profitez-en pour le faire vôtre! </p> \n"
#~ "<p> <small> Si vous ne souhaitez plus recevoir de notification, veuillez "
#~ "{unsubscribe_link} </small> </p>"

#~ msgid ""
#~ "Select product categories for which you don't want to send a reminder "
#~ "email"
#~ msgstr ""
#~ "Sélectionnez les catégories de produits pour lesquelles vous ne souhaitez "
#~ "pas envoyer d'e-mail de rappel"

#~ msgid "Select products for which you don't want to send a reminder email"
#~ msgstr ""
#~ "Sélectionnez les produits pour lesquels vous ne souhaitez pas envoyer d'e-"
#~ "mail de rappel"

#~ msgid "An item of your wishlist is on sale!"
#~ msgstr "Un article de votre liste de souhaits est en promotion!"

#~ msgid ""
#~ "This email is sent to customers when an item of their wishlist is on sale"
#~ msgstr ""
#~ "Cet e-mail est envoyé aux clients lorsqu'un article de leur liste de "
#~ "souhaits est en vente"

#~ msgid "Wishlist \"On sale item\" email"
#~ msgstr "Email \"Article en promo\""

#~ msgid "Send a copy to the user"
#~ msgstr "Envoyer une copie à l'utilisateur"

#~ msgid "Send CC copy"
#~ msgstr "Envoyer une copie CC"

#~ msgid ""
#~ "Enter recipients (comma separated) for this email. Defaults to <code>%s</"
#~ "code>"
#~ msgstr ""
#~ "Saisissez les destinataires (séparés par des virgules) pour cet e-mail. "
#~ "Par défaut, <code>%s</code>"

#~ msgid "Recipient(s)"
#~ msgstr "Destinataire(s)"

#~ msgid "[Price estimate request]"
#~ msgstr "[Demande d'estimation de prix]"

#~ msgid "Price estimate request"
#~ msgstr "Demande d'estimation de prix"

#~ msgid ""
#~ "This email is sent to users who click the \"ask for an estimate\" button, "
#~ "only if this feature has been enabled in the wishlist option panel"
#~ msgstr ""
#~ "Cet e-mail est envoyé aux utilisateurs qui cliquent sur le bouton "
#~ "\"demander un devis\", uniquement si cette fonctionnalité a été activée "
#~ "dans le panneau d'options de la liste de souhaits "

#~ msgid "Wishlist \"Ask for an estimate\" email"
#~ msgstr "Email Liste de souhaits \"Demander une estimation\""

#~ msgid ""
#~ "Hi {user_name}\n"
#~ "A product of your wishlist is back in stock!\n"
#~ "\n"
#~ "{products_list}\n"
#~ "\n"
#~ "We only have limited stock, so don't wait any longer, and take this "
#~ "chance to make it yours!\n"
#~ "\n"
#~ "****************************************************\n"
#~ "\n"
#~ "If you don't want to receive any further notification, please follow this "
#~ "link [{unsubscribe_url}]\n"
#~ "\n"
#~ msgstr ""
#~ "Bonjour {user_name} \n"
#~ "Un produit de votre liste de souhaits est de retour en stock! \n"
#~ "\n"
#~ "{products_list} \n"
#~ "\n"
#~ "Nous ne disposons que d'un stock limité, alors n'attendez plus et "
#~ "profitez-en pour le faire vôtre! \n"
#~ "\n"
#~ "************************************************** ** \n"
#~ "\n"
#~ "Si vous ne souhaitez plus recevoir de notification, veuillez suivre ce "
#~ "lien [{unsubscribe_url}] \n"
#~ "\n"

#~ msgid ""
#~ "This field lets you modify the main content of the text email. You can "
#~ "use the following placeholders: <code>{user_name}</code> "
#~ "<code>{user_email}</code> <code>{user_first_name}</code> "
#~ "<code>{user_last_name}</code> <code>{products_list}</code> "
#~ "<code>{unsubscribe_url}</code>"
#~ msgstr ""
#~ "Ce champ vous permet de modifier le contenu principal de l'e-mail texte. "
#~ "Vous pouvez utiliser les espaces réservés suivants: <code> {user_name} </"
#~ "code> <code> {user_email} </code> <code> {user_first_name} </code> <code> "
#~ "{user_last_name} </code> <code> {products_list} </code> <code> "
#~ "{unsubscribe_url} </code>"

#~ msgid "Email text content"
#~ msgstr "Contenu du texte de l'e-mail"

#~ msgid ""
#~ "<p>Hi {user_name}</p>\n"
#~ "<p>A product of your wishlist is back in stock!</p>\n"
#~ "{products_table}\n"
#~ "<p>We only have limited stock, so don't wait any longer, and take this "
#~ "chance to make it yours!</p>\n"
#~ "<p><small>If you don't want to receive any further notification, please "
#~ "{unsubscribe_link}</small></p>"
#~ msgstr ""
#~ "<p> Bonjour {user_name} </p> \n"
#~ "<p> Un produit de votre liste de souhaits est de retour en stock! </p> \n"
#~ "{products_table} \n"
#~ "<p> Nous ne disposons que d'un stock limité, alors n'attendez plus et "
#~ "profitez-en pour le faire vôtre! </p> \n"
#~ "<p> <small> Si vous ne souhaitez plus recevoir de notification, veuillez "
#~ "{unsubscribe_link} </small> </p>"

#~ msgid ""
#~ "This field lets you modify the main content of the HTML email. You can "
#~ "use the following placeholders: <code>{user_name}</code> "
#~ "<code>{user_email}</code> <code>{user_first_name}</code> "
#~ "<code>{user_last_name}</code> <code>{products_table}</code> "
#~ "<code>{unsubscribe_link}</code>"
#~ msgstr ""
#~ "Ce champ vous permet de modifier le contenu principal de l'e-mail HTML. "
#~ "Vous pouvez utiliser les espaces réservés suivants: <code>{user_name}</"
#~ "code> <code>{user_email}</code> <code>{user_first_name}</code> "
#~ "<code>{user_last_name}</code> <code>{products_table}</code> "
#~ "<code>{unsubscribe_link}</code>"

#~ msgid "Email HTML Content"
#~ msgstr "Contenu HTML Email"

#~ msgid "Multipart"
#~ msgstr "Multipart"

#~ msgid "HTML"
#~ msgstr "HTML"

#~ msgid "Plain text"
#~ msgstr "Texte brut"

#~ msgid "Choose which type of email to send."
#~ msgstr "Choisissez le type d'email à envoyer."

#~ msgid "Email type"
#~ msgstr "Email type"

#~ msgid ""
#~ "Select the product categories for which you don't want to send a reminder "
#~ "email"
#~ msgstr ""
#~ "Sélectionnez les catégories de produits pour lesquelles vous ne souhaitez "
#~ "pas envoyer d'e-mail de rappel"

#~ msgid ""
#~ "Select the products for which you don't want to send a reminder email"
#~ msgstr ""
#~ "Sélectionnez les produits pour lesquels vous ne souhaitez pas envoyer d'e-"
#~ "mail de rappel"

#~ msgid ""
#~ "This field lets you modify the main heading contained within the email "
#~ "notification. Leave blank to use the default heading: <code>%s</code>."
#~ msgstr ""
#~ "Ce champ vous permet de modifier l'en-tête principal contenu dans la "
#~ "notification par e-mail. Laissez vide pour utiliser l'en-tête par défaut: "
#~ "<code>%s</code>."

#~ msgid "Email Heading"
#~ msgstr "Entête Email"

#~ msgid ""
#~ "This field lets you modify the email subject line. Leave blank to use the "
#~ "default subject: <code>%s</code>."
#~ msgstr ""
#~ "Ce champ vous permet de modifier la ligne d'objet de l'e-mail. Laissez "
#~ "vide pour utiliser l'objet par défaut: <code>%s </code>."

#~ msgid "Subject"
#~ msgstr "Sujet"

#~ msgid "Enable this email notification"
#~ msgstr "Activer cette notification par e-mail"

#~ msgid "Enable/Disable"
#~ msgstr "Activer/Désactiver"

#~ msgid "unsubscribe"
#~ msgstr "Se désabonner"

#~ msgid "An item of your wishlist is back in stock!"
#~ msgstr "Un article de votre liste de souhaits est de retour en stock!"

#~ msgid ""
#~ "This email is sent to customers when an item of their wishlist is back in "
#~ "stock"
#~ msgstr ""
#~ "Cet e-mail est envoyé aux clients lorsqu'un article de leur liste de "
#~ "souhaits est de nouveau en stock"

#~ msgid "Wishlist \"Back in stock\" email"
#~ msgstr "Email \"Retour en stock\""

#~ msgid "Move to another wishlist"
#~ msgstr "Déplacer vers une autre liste de souhaits"

#~ msgid "Move &rsaquo;"
#~ msgstr "Déplacer &rsaquo;"

#~ msgid "Select a wishlist"
#~ msgstr "Sélectionnez une liste de souhaits"

#~ msgctxt "[gutenberg]: block description"
#~ msgid "Shows all public wishlists"
#~ msgstr "Affiche toutes les listes de souhaits publiques"

#~ msgctxt "[gutenberg]: block name"
#~ msgid "YITH public wishlist link"
#~ msgstr "Lien de liste de souhaits publique YITH"

#~ msgid "Couldn't find any wishlist with the provided ID"
#~ msgstr "Impossible de trouver une liste de souhaits avec l'ID fourni"

#~ msgid "Wishlist name exceeds the maximum number of characters allowed"
#~ msgstr ""
#~ "Le nom de la liste de souhaits dépasse le nombre maximum de caractères "
#~ "autorisés"

#~ msgid "Wishlist name is required"
#~ msgstr "Le nom de la liste de souhaits est requis"

#~ msgid "Please, log in to use the wishlist features"
#~ msgstr "Merci de vous connecter ou de créer un compte !"

#~ msgid "Manage wishlists"
#~ msgstr "Gérer les listes de souhaits"

#~ msgid "Your wishlists"
#~ msgstr "Vos listes de souhaits"

#~ msgid "Create a wishlist"
#~ msgstr "Créer une liste de souhaits"

#~ msgid "&lsaquo; Back to all wishlists"
#~ msgstr "&lsaquo; Retour à toutes les listes de souhaits"

#~ msgid "Back to all wishlists"
#~ msgstr "Retour à toutes les listes de souhaits"

#~ msgctxt "Ask for an estimate submit error"
#~ msgid "Missing required argument: %s"
#~ msgstr "Argument requis manquant: %s"

#~ msgid "Yes"
#~ msgstr "Oui"

#~ msgid "You have unsubscribed from our wishlist-related mailing lists"
#~ msgstr ""
#~ "Vous vous êtes désabonné de nos listes de diffusion liées aux listes de "
#~ "souhaits"

#~ msgid ""
#~ "The token provided is expired; contact us to so we can manually "
#~ "unsubscribe your from the list"
#~ msgstr ""
#~ "Le jeton fourni a expiré; contactez-nous pour que nous puissions vous "
#~ "désinscrire manuellement de la liste"

#~ msgid ""
#~ "The token provided does not match the current user; make sure to log in "
#~ "with the right account"
#~ msgstr ""
#~ "Le jeton fourni ne correspond pas à l'utilisateur actuel; assurez-vous de "
#~ "vous connecter avec le bon compte"

#~ msgid "Please, log in to continue with the unsubscribe process"
#~ msgstr ""
#~ "Veuillez vous connecter pour continuer le processus de désinscription"

#~ msgid "Please, select one product at least"
#~ msgstr "Veuillez sélectionner au moins un produit"

#~ msgid ""
#~ "You should provide a valid email address, that we can use to get back to "
#~ "you"
#~ msgstr ""
#~ "Vous devez fournir une adresse e-mail valide, que nous pouvons utiliser "
#~ "pour vous répondre"

#~ msgid "Price estimate request sent"
#~ msgstr "Demande de devis envoyée"

#~ msgid "Wishlist deleted successfully"
#~ msgstr "La liste de souhaits a bien été supprimée"

#~ msgid "Changes saved"
#~ msgstr "Changements sauvegardés"

#~ msgid "Wishlist created successfully"
#~ msgstr "Liste de souhaits créée avec succès"

#~ msgid ""
#~ "An error occurred while moving item to destination wishlist; please, try "
#~ "again"
#~ msgstr ""
#~ "Une erreur s'est produite lors du déplacement de l'élément vers la liste "
#~ "de souhaits de destination; Veuillez réessayer"

#~ msgid "Items correctly added to the cart"
#~ msgstr "Articles correctement ajoutés au panier"

#~ msgid "Changes applied correctly"
#~ msgstr "Modifications appliquées correctement"

#~ msgid "An error occurred while processing this action"
#~ msgstr "Une erreur s'est produite lors du traitement de cette action"

#~ msgid "The items have been correctly moved to %s"
#~ msgstr "Les éléments ont été correctement déplacés vers %s"

#~ msgid "The items have been correctly removed"
#~ msgstr "Les éléments ont été correctement supprimés"

#~ msgid "The items have been correctly added to the cart"
#~ msgstr "Les articles ont été correctement ajoutés au panier"

#~ msgid "You have to select at least one product"
#~ msgstr "Vous devez sélectionner au moins un produit"

#~ msgid ""
#~ "You should provide a valid email address that we can use to get back to "
#~ "you"
#~ msgstr ""
#~ "Vous devez fournir une adresse e-mail valide que nous pouvons utiliser "
#~ "pour vous répondre"

#~ msgid ""
#~ "We will reply to you as soon as possible. For any questions, feel free to "
#~ "contact our customer service at"
#~ msgstr ""
#~ "Nous vous répondrons dans les plus brefs délais. Pour toute question, "
#~ "n'hésitez pas à contacter notre service client au"

#~ msgid "Your request has been sent.<br/>Thanks!"
#~ msgstr "Votre demande a été envoyée.<br/>Merci!"

#~ msgid "Element correctly moved to %s"
#~ msgstr "Elément correctement déplacé à %s"

#~ msgid "Wishlist Promotion"
#~ msgstr "Liste de souhaits Promotion"

#~ msgid "Wishlist \"Ask an estimate\""
#~ msgstr "Liste de souhaits \"Demander un devis\""

#~ msgid "user"
#~ msgid_plural "users"
#~ msgstr[0] "utilisateur"
#~ msgstr[1] "utilisateurs"

#~ msgid "Wishlist Count"
#~ msgstr "Compte de liste"

#~ msgid "User Last Name"
#~ msgstr "Nom de l'utilisateur"

#~ msgid "User First Name"
#~ msgstr "Prénom de l'utilisateur"

#~ msgid "User Email"
#~ msgstr "Email de l'utilisateur"

#~ msgid "User ID"
#~ msgstr "Identifiant d'utilisateur"

#~ msgid "Delete draft"
#~ msgstr "Supprimer le brouillon"

#~ msgid "Are you sure?"
#~ msgstr "Êtes-vous sûr?"

#~ msgid "Continue"
#~ msgstr "Continuer"

#~ msgid ""
#~ "You saved a draft of a promotional email; would you like to continue form "
#~ "there?"
#~ msgstr ""
#~ "Vous avez enregistré un brouillon d'e-mail promotionnel; aimeriez-vous "
#~ "continuer là-bas?"

#~ msgid "There was an error while scheduling emails; please, try again later"
#~ msgstr ""
#~ "Une erreur s'est produite lors de la planification des e-mails; Veuillez "
#~ "réessayer plus tard"

#~ msgid "Promotional email correctly scheduled"
#~ msgstr "E-mail promotionnel correctement planifié"

#~ msgid "Enter the title for \"Search wishlists\" page"
#~ msgstr "Entrez le titre de la page \"Rechercher des listes de souhaits\""

#~ msgid "\"Search wishlist\" page name"
#~ msgstr "Nom de la page \"Recherche de liste de souhaits\""

#~ msgid "Enter the title for \"Manage wishlists\" page"
#~ msgstr "Entrez le titre de la page \"Gérer les listes de souhaits\""

#~ msgid "\"Manage wishlist\" page name"
#~ msgstr "Nom de la page \"Gérer la liste de souhaits\""

#~ msgid "Create a new wishlist"
#~ msgstr "Créer une nouvelle liste de souhaits"

#~ msgid "Enter the title for the \"Create wishlist\" page"
#~ msgstr "Entrez le titre de la page \"Créer une liste de souhaits\""

#~ msgid "\"Create wishlist\" page name"
#~ msgstr "Nom de la page \"Créer une liste de souhaits\""

#~ msgid ""
#~ "Show the links to \"Manage\", \"Create\" and \"Search\" pages after the "
#~ "wishlist table"
#~ msgstr ""
#~ "Afficher les liens vers les pages \"Gérer\", \"Créer\" et \"Rechercher\" "
#~ "après le tableau de la liste de souhaits"

#~ msgid "Show links to pages"
#~ msgstr "Afficher les liens vers les pages"

#~ msgid ""
#~ "Enable drag and drop option so users can arrange the order of products in "
#~ "the wishlist"
#~ msgstr ""
#~ "Activer l'option glisser-déposer pour que les utilisateurs puissent "
#~ "organiser l'ordre des produits dans la liste de souhaits"

#~ msgid "Enable drag and drop option"
#~ msgstr "Activer l'option glisser-déposer"

#~ msgid ""
#~ "Enable \"Add all to cart\" button to let customers add all the products "
#~ "in the wishlist to the cart"
#~ msgstr ""
#~ "Activez le bouton \"Tout ajouter au panier\" pour permettre aux clients "
#~ "d'ajouter tous les produits de la liste de souhaits au panier"

#~ msgid "Enable \"Add all to cart\""
#~ msgstr "Activer \"Tout ajouter au panier\""

#~ msgid "Link to a popup"
#~ msgstr "Lien vers une popup"

#~ msgid "Select dropdown with all wishlists"
#~ msgstr "Sélectionnez la liste déroulante avec toutes les listes de souhaits"

#~ msgid "Choose the look and feel of the \"Move to another wishlist\" option"
#~ msgstr ""
#~ "Choisissez l'apparence de l'option \"Déplacer vers une autre liste de "
#~ "souhaits\""

#~ msgid "Move to another wishlist - style"
#~ msgstr "Déplacer vers une autre liste de souhaits - style"

#~ msgid "Enable the option to move the product to another wishlist"
#~ msgstr ""
#~ "Activez l'option pour déplacer le produit vers une autre liste de souhaits"

#~ msgid "Show Move to another wishlist"
#~ msgstr "Afficher Déplacer vers une autre liste de souhaits"

#~ msgid ""
#~ "Checkbox to select multiple items, add them to the cart or delete them "
#~ "with one click"
#~ msgstr ""
#~ "Case à cocher pour sélectionner plusieurs articles, les ajouter au panier "
#~ "ou les supprimer en un seul clic"

#~ msgid ""
#~ "Price variation info (show the price difference compared to when the "
#~ "product was added to the list)"
#~ msgstr ""
#~ "Informations sur la variation des prix (montrer la différence de prix par "
#~ "rapport au moment où le produit a été ajouté à la liste)"

#~ msgid ""
#~ "Product quantity (so users can manage the quantity of each product from "
#~ "the wishlist)"
#~ msgstr ""
#~ "Quantité de produit (afin que les utilisateurs puissent gérer la quantité "
#~ "de chaque produit à partir de la liste de souhaits)"

#~ msgid "Only images with info at click"
#~ msgstr "Seules les images avec des informations au clic"

#~ msgid "Select a style for displaying your wishlist page"
#~ msgstr "Sélectionnez un style pour afficher votre page de liste de souhaits"

#~ msgid "Layout for product list"
#~ msgstr "Présentation de la liste des produits"

#~ msgid "Create a new wishlist in the popup instead of using the endpoint"
#~ msgstr ""
#~ "Créez une nouvelle liste de souhaits dans la fenêtre popup au lieu "
#~ "d'utiliser le point de terminaison"

#~ msgid "\"Create wishlist\" in popup"
#~ msgstr "\"Créer une liste de souhaits\" dans une fenêtre popup"

#~ msgid "Delete wishlist button"
#~ msgstr "Bouton Supprimer la liste de souhaits"

#~ msgid "Rename wishlist button"
#~ msgstr "Bouton Renommer la liste de souhaits"

#~ msgid "Date of creation of the wishlist"
#~ msgstr "Date de création de la wishlist"

#~ msgid "Number of items in wishlist"
#~ msgstr "Nombre d'articles dans la liste de souhaits"

#~ msgid "Show wishlist info"
#~ msgstr "Afficher les informations de la liste de souhaits"

#~ msgid "Modern grid"
#~ msgstr "Grille moderne"

#~ msgid "Traditional"
#~ msgstr "Traditionelle"

#~ msgid "Select a style for your \"Manage wishlists\" page"
#~ msgstr ""
#~ "Sélectionnez un style pour votre page \"Gérer les listes de souhaits\""

#~ msgid "Layout for wishlist view"
#~ msgstr "Disposition pour l'affichage de la liste de souhaits"

#~ msgid "Text of the \"Add to wishlist\" button in the popup"
#~ msgstr ""
#~ "Texte du bouton \"Ajouter à la liste de souhaits\" dans la fenêtre popup"

#~ msgid "\"Add to wishlist\" popup button text"
#~ msgstr "Texte du bouton popup \"Ajouter à la liste de souhaits\""

#~ msgid ""
#~ "Show a counter on the product page that allows your customers to know how "
#~ "may times the product has been added to a wishlist"
#~ msgstr ""
#~ "Afficher un compteur sur la page du produit qui permet à vos clients de "
#~ "savoir combien de fois le produit a été ajouté à une liste de souhaits"

#~ msgid "Show a count of users with a specific product in wishlist"
#~ msgstr ""
#~ "Afficher un nombre d'utilisateurs avec un produit spécifique dans la "
#~ "liste de souhaits"

#~ msgid ""
#~ "Add to wishlist button now opens a modal to move or remove items "
#~ "(available only with multi-wishlist option enabled)"
#~ msgstr ""
#~ "Le bouton Ajouter à la liste de souhaits ouvre désormais un modal pour "
#~ "déplacer ou supprimer des éléments (disponible uniquement avec l'option "
#~ "multi-liste de souhaits activée)"

#~ msgid "Show a dropdown to allow users to choose a wishlist"
#~ msgstr ""
#~ "Afficher une liste déroulante pour permettre aux utilisateurs de choisir "
#~ "une liste de souhaits"

#~ msgid "Show a modal window to allow users to choose a wishlist"
#~ msgstr ""
#~ "Afficher une fenêtre modale pour permettre aux utilisateurs de choisir "
#~ "une liste de souhaits"

#~ msgid "Automatically add to the default list"
#~ msgstr "Ajouter automatiquement à la liste par défaut"

#~ msgid "Choose the default action for new products added to the wishlist."
#~ msgstr ""
#~ "Choisissez l'action par défaut pour les nouveaux produits ajoutés à la "
#~ "liste de souhaits."

#~ msgid "When clicking on Add to wishlist"
#~ msgstr "En cliquant sur Ajouter à la liste de souhaits"

#~ msgid "login"
#~ msgstr "S'identifier"

#~ msgid "Set up here the text of the Login link that replace %login_anchor%"
#~ msgstr ""
#~ "Configurez ici le texte du lien de connexion qui remplace %login_anchor%"

#~ msgid "Login anchor text"
#~ msgstr "Texte d'ancrage de connexion"

#~ msgid "Please %login_anchor% to use all the wishlist features"
#~ msgstr ""
#~ "Veuillez %login_anchor% pour utiliser toutes les fonctionnalités de la "
#~ "liste de souhaits"

#~ msgid ""
#~ "Enter the message to ask unauthenticated users to login so they will be "
#~ "able to use the multi-wishlist feature.<br/>Use the placeholder "
#~ "%login_anchor% (set up the text in the following option) to add an anchor "
#~ "and redirect users to the Login page."
#~ msgstr ""
#~ "Saisissez le message pour demander aux utilisateurs non authentifiés de "
#~ "se connecter afin qu'ils puissent utiliser la fonctionnalité de liste de "
#~ "souhaits multiples.<br/>Utilisez l'espace réservé %login_anchor% "
#~ "(configurez le texte dans l'option suivante) pour ajouter une ancre et "
#~ "rediriger les utilisateurs vers la page de connexion."

#~ msgid "Login message for non-authenticated users"
#~ msgstr "Message de connexion pour les utilisateurs non authentifiés"

#~ msgid ""
#~ "Choose whether to enable the multi-wishlist feature for all users or just "
#~ "for logged-in users"
#~ msgstr ""
#~ "Choisissez d'activer la fonctionnalité de liste de souhaits multiples "
#~ "pour tous les utilisateurs ou uniquement pour les utilisateurs connectés"

#~ msgid "Enable multiple wishlists for"
#~ msgstr "Activer plusieurs listes de souhaits pour"

#~ msgid "Enable multi-wishlist feature"
#~ msgstr "Activer la fonctionnalité de liste de souhaits multiples"

#~ msgid "Multi-wishlist settings"
#~ msgstr "Paramètres de liste de souhaits multiples"

#~ msgid "Add to wishlist tooltip style"
#~ msgstr "Style de l'infobulle Ajouter à la liste de souhaits"

#~ msgid ""
#~ "Choose whether to display a tooltip when hovering over Add to wishlist "
#~ "link"
#~ msgstr ""
#~ "Choisissez d'afficher une info-bulle lorsque vous survolez le lien "
#~ "Ajouter à la liste de souhaits"

#~ msgid "Enable \"Add to wishlist\" tooltip"
#~ msgstr "Activer l'infobulle \"Ajouter à la liste de souhaits\""

#~ msgid ""
#~ "Enable popup notices when the product is added or removed from the "
#~ "wishlist"
#~ msgstr ""
#~ "Activer les notifications contextuelles lorsque le produit est ajouté ou "
#~ "supprimé de la liste de souhaits"

#~ msgid "Enable Added/Removed notices"
#~ msgstr "Activer les notifications ajouté/supprimé"

#~ msgid "Only authenticated users"
#~ msgstr "Uniquement les utilisateurs authentifiés"

#~ msgid "All users"
#~ msgstr "Tous les utilisateurs"

#~ msgid ""
#~ "Choose whether to enable the wishlist feature for all users or only for "
#~ "logged-in users"
#~ msgstr ""
#~ "Choisissez d'activer la fonctionnalité de liste de souhaits pour tous les "
#~ "utilisateurs ou uniquement pour les utilisateurs connectés"

#~ msgid "Enable wishlist for"
#~ msgstr "Activer la liste de souhaits pour"

#~ msgid "Promotional"
#~ msgstr "Promotionnel"

#~ msgid "Ask for an estimate"
#~ msgstr "Faire une demande de prix"

#~ msgid "Popular"
#~ msgstr "Populaire"
PK`x1\KF��
�
,languages/yith-woocommerce-wishlist-es_MX.monu�[����� +���"�
,:
K
V6a�����	���#?Sh	z����
���	�"�4 Ij����7� 	(	:	F	_	p	�	�	�	"�	�		
"

8

F
)T
~
�
�
�
'�
�
 	

"Browse wishlist" text"Product added" text"Product already in wishlist" textAfter "Add to cart"After summaryAfter thumbnailsCustom CSSEdit titleError. Unable to remove the product from the wishlist.Free!General SettingsIn StockMy wishlist on %sPin on PinterestPinterestProduct added!Product successfully removed.Redirect to cartRemove if added to the cartRemove this productRemoved wishlist %s.Share on FacebookShare on:SharedSocial image URLSocial textTweet on TwitterUse shortcodeWishlistWishlist %s has been retained.WishlistsProject-Id-Version: YITH WooCommerce Wishlist
Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/yith-woocommerce-wishlist
POT-Creation-Date: 2021-11-11 13:53:53+00:00
PO-Revision-Date: 2020-10-16 14:04+0200
Last-Translator: Gabriel Azarias Dzul Cocom <gabrieldzul@gmail.com>
Language-Team: Your Inspiration Themes <plugins@yithemes.com>
Language: es_MX
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Generator: Poedit 2.4.1
X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;_n:1,2;__ngettext:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2
X-Poedit-Basepath: .
Plural-Forms: nplurals=2; plural=n!=1;
X-Poedit-SourceCharset: UTF-8
X-Poedit-SearchPath-0: ..
X-Poedit-SearchPathExcluded-0: ../plugin-fw
Ir a la Lista de deseos¡Producto agregado!El producto ya está en la ListaDespued de "Agregar al Carrito"Despues del ResumenDespues de las miniaturasCss personalizadoTítulo de la Lista de deseosError. No fue posible eliminar el producto de la Lista.Gratis!Ajustes GeneralesDisponilbe.My Lista de deseos en %sPin en PinterestPin en Pinterest¡Producto agregado!Producto exitosamente eliminadoRedirreccionar al CarritoRemover si es agregado al Carrito.Remover este productoMy Lista de deseos en %sCompartir en FacebookCompartir en:Compartir en:URL  de la imágen de las redes Sociales.Texto de redes socialesTweet en TwitterUsar shortcodeLista de deseosTexto de la tabla de la Lista de deseosLista de deseosPK`x1\c�V�JJ,languages/yith-woocommerce-wishlist-sv_SE.monu�[�����-�=����"
0
DR
cn
u
���6����"	3=MUd�������	�	&+1B
JX	a7kb�#	*	*F	#q	�	�	�	�	�	�	�	�	6
>
G
O

h
v
}
�
�
�
�
�
�
	�
�
9Of	x����
�����6',#)-( "&%	*
+!
$"Browse wishlist" text"Product added" text"Product already in wishlist" textAfter "Add to cart"After summaryAfter thumbnailsBackgroundBorderCustom CSSEdit titleEmailEnable slider in wishlistError. Unable to remove the product from the wishlist.FacebookFree!General SettingsIn StockMoveMy wishlist on %sPin on PinterestPinterestPremium VersionPrivateProduct added!Product successfully removed.PublicRedirect to cartRemoveRemove if added to the cartRemove this productRemoved wishlist %s.Share on FacebookShare on:SharedSocial image URLSocial textTextTitleTweet on TwitterTwitterUse shortcodeWishlistWishlistsYITH WooCommerce Frequently Bought Together IntegrationProject-Id-Version: YITH WCWL
Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/yith-woocommerce-wishlist
POT-Creation-Date: 2021-11-11 13:53:53+00:00
PO-Revision-Date: 2020-10-16 14:06+0200
Last-Translator: Nicola Mustone <mail@nicolamustone.it>
Language-Team: Your Inspiration Themes <support@yithemes.com>
Language: sv
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Generator: Poedit 2.4.1
X-Poedit-KeywordsList: __;_e;_x
X-Poedit-Basepath: ..
Plural-Forms: nplurals=2; plural=(n != 1);
X-Poedit-SearchPath-0: .
X-Poedit-SearchPathExcluded-0: plugin-fw
“Bläddra i önskelistan”s text“Produkt tillagd”s text“Produkten redan i önskelistan”s textEfter “Lägg till i varukorgen”Efter sammanfattningEfter miniatyrbilderBakgrundRamEgen CSSÄndra titelEpostAktivera slider i önskelistanFel. Kunde inte ta bort produkten ifrån önskelistan.FacebookGratis!Generella inställningarFinns i lagerFlyttaMin önskelista på %sPinna på PintrestPintrestPremiumversionPrivatProdukt tillagd!Produkten borttagen.OffentligOmdirigera till kundvagnenTa bortTa bort om tillagd i kundvagnenTa bort denna produktMin önskelista på %sDela på FacebookDela på:DelarBild för sociala medier (URL)Text på sociala medierTextFälttitelTwittra på TwitterTwitterAnvänd kortkodÖnskelistaÖnskelistaYITH WooCommerce Vanliga köpte tillsammans integritetPK`x1\
�@}
}
,languages/yith-woocommerce-wishlist-pt_PT.monu�[�����)���"�
"
3
>6I��������#8	JT[lx�
���	���� 1Q`q�?�����	/	M	 j	�	�	�	
�	
�	�	

)
1
@
Q
l
	

"Browse wishlist" text"Product added" text"Product already in wishlist" textAfter "Add to cart"After summaryAfter thumbnailsCustom CSSEdit titleError. Unable to remove the product from the wishlist.FacebookGeneral SettingsIn StockMy wishlist on %sProduct added!Product successfully removed.Redirect to cartRemove if added to the cartRemove this productRemoved wishlist %s.Share on FacebookShare on:SharedSocial image URLSocial textTweet on TwitterTwitterUse shortcodeWishlistWishlist %s has been retained.WishlistsProject-Id-Version: YITH WooCommerce Wishlist
Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/yith-woocommerce-wishlist
POT-Creation-Date: 2021-11-11 13:53:53+00:00
PO-Revision-Date: 2020-10-16 14:06+0200
Last-Translator: YIThemes <support@yithemes.com>
Language-Team: Your Inspiration Themes <plugins@yithemes.com>
Language: pt_PT
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Generator: Poedit 2.4.1
X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;_n:1,2;__ngettext:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2
X-Poedit-Basepath: .
Plural-Forms: nplurals=2; plural=n!=1;
X-Poedit-SourceCharset: UTF-8
X-Poedit-SearchPath-0: ..
X-Poedit-SearchPathExcluded-0: ../plugin-fw
Veja sua lista de desejos!Produto adicionado!Produto já na lista de desejos.Após " Adicionar ao carrinho "Após sumárioApós miniaturasCSS CustomizadoTitulo da lista de desejosErro. Não foi possível remover o produto da lista de desejos.FacebookOpções geraisEm stockMinha lista de desejos em %sProduto adicionado!Produto removido com sucesso.Redirecionar para o carrinhoRemover se adcionado ao carrinhoRemover este produtoMinha lista de desejos em %sPartilhar no FacebookPartilhar no:Partilhar no:Url para partilharTexto Redes SociaisTweetar no TwitterTwitterUsar shortcodeLista de DesejosTexto da tabela de desejosLista de DesejosPK`x1\O��&����,languages/yith-woocommerce-wishlist-ru_RU.ponu�[���# Copyright (C) 2019 YITH WooCommerce Wishlist
# This file is distributed under the same license as the YITH WooCommerce Wishlist package.
msgid ""
msgstr ""
"Project-Id-Version: YITH WCWL\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/yith-woocommerce-"
"wishlist\n"
"POT-Creation-Date: 2021-11-11 13:53:53+00:00\n"
"PO-Revision-Date: 2020-10-16 14:06+0200\n"
"Last-Translator: Valentyn Zubenko <valentyn.zubenko@gmail.com>\n"
"Language-Team: Your Inspiration Themes <support@yithemes.com>\n"
"Language: ru\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 2.4.1\n"
"X-Poedit-KeywordsList: __;_e;_x\n"
"X-Poedit-Basepath: ..\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Poedit-SearchPath-0: .\n"
"X-Poedit-SearchPathExcluded-0: plugin-fw\n"

#: includes/class-yith-wcwl-admin.php:126
#, fuzzy
msgid "Wishlist Page"
msgstr "Мои закладки на  %s"

#: includes/class-yith-wcwl-admin.php:148
msgid "General settings"
msgstr ""

#: includes/class-yith-wcwl-admin.php:149
msgid "Add to wishlist options"
msgstr ""

#: includes/class-yith-wcwl-admin.php:150
msgid "Wishlist page options"
msgstr ""

#: includes/class-yith-wcwl-admin.php:151
msgid "Premium Version"
msgstr ""

#: includes/class-yith-wcwl-admin.php:249
#: includes/class-yith-wcwl-install.php:342
msgid "Wishlist"
msgstr ""

#: includes/class-yith-wcwl-admin.php:251
msgid ""
"Allows your customers to create and share lists of products that they want "
"to purchase on your e-commerce."
msgstr ""

#: includes/class-yith-wcwl-ajax-handler.php:75
#: templates/add-to-wishlist-remove.php:59
msgid "View &rsaquo;"
msgstr ""

#: includes/class-yith-wcwl-ajax-handler.php:76
#: templates/add-to-wishlist-remove.php:58
msgid "or"
msgstr ""

#: includes/class-yith-wcwl-ajax-handler.php:77
msgid "Close"
msgstr ""

#: includes/class-yith-wcwl-ajax-handler.php:155
#: includes/class-yith-wcwl-ajax-handler.php:195
msgid "Product successfully removed."
msgstr "Продукт успешно удален из избранного"

#: includes/class-yith-wcwl-form-handler.php:156
msgid "Please, make sure to enter a valid title"
msgstr ""

#: includes/class-yith-wcwl-frontend.php:461
msgid ""
"We are sorry, but this feature is available only if cookies on your browser "
"are enabled."
msgstr ""

#: includes/class-yith-wcwl-frontend.php:462
msgid "Product added to cart successfully"
msgstr ""

#: includes/class-yith-wcwl-frontend.php:725
#: includes/class-yith-wcwl-shortcode.php:239
#: plugin-options/wishlist_page-options.php:240
#: templates/wishlist-view-footer-mobile.php:46
#: templates/wishlist-view-footer.php:46
msgid "Add to cart"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:52
msgid "While you visit our site, we’ll track:"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:54
msgid ""
"Products you’ve added to the wishlist: we’ll use this to show you and other "
"users your favourite products, and to create targeted email campaigns."
msgstr ""

#: includes/class-yith-wcwl-privacy.php:55
msgid ""
"Wishlists you’ve created: we’ll keep track of the wishlists you create, and "
"make them visible to the store staff"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:57
msgid ""
"We’ll also use cookies to keep track of wishlist contents while you’re "
"browsing our site."
msgstr ""

#: includes/class-yith-wcwl-privacy.php:60
msgid ""
"Members of our team have access to the information you provide us with. For "
"example, both Administrators and Shop Managers can access:"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:62
msgid ""
"Wishlist details, such as products added, date of addition, name and privacy "
"settings of your wishlists"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:64
msgid ""
"Our team members have access to this information to offer you better deals "
"for the products you love."
msgstr ""

#: includes/class-yith-wcwl-privacy.php:84
#: includes/class-yith-wcwl-privacy.php:100
msgid "Customer wishlists"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:137 plugin-options/lists-options.php:25
#: plugin-options/lists-options.php:32
msgid "Wishlists"
msgstr "Мои закладки на  %s"

#. Translators: %s Order number.
#: includes/class-yith-wcwl-privacy.php:199
msgid "Removed wishlist %s."
msgstr "Мои закладки на  %s"

#. Translators: %s Order number.
#: includes/class-yith-wcwl-privacy.php:203
msgid "Wishlist %s has been retained."
msgstr ""

#: includes/class-yith-wcwl-privacy.php:227
msgid "Token"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:228
msgid "Wishlist URL"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:229
msgid "Title"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:231
msgid "Visibility"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:232
msgid "Items added"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:58
msgid ""
"ID of the product to add to the wishlist (leave empty to use the global "
"product)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:63
msgid "URL of the wishlist page (leave empty to use the default settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:68
msgid "Button label (leave empty to use the default settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:73
msgid "\"Browse wishlist\" label (leave empty to use the default settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:78
msgid ""
"\"Product already in wishlist\" label (leave empty to use the default "
"settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:83
msgid ""
"\"Product added to wishlist\" label (leave empty to use the default settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:88
msgid ""
"Icon for the button (use any FontAwesome valid class, or leave empty to use "
"the default settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:93
msgid ""
"Additional CSS classes for the button (leave empty to use the default "
"settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:107
msgid "Choose whether to paginate items in the wishlist or show them all"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:110
#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:118
msgid "Paginate"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:111
#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:119
msgid "Do not paginate"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:116
msgid "Number of items to show per page"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:121
msgid "ID of the wishlist to show (e.g. K6EOWXB888ZD)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:414
msgid "Share on:"
msgstr "Поделиться в:"

#: includes/class-yith-wcwl-shortcode.php:438
#: plugin-options/wishlist_page-options.php:138
msgid "Share on Facebook"
msgstr "Поделиться на Facebook"

#: includes/class-yith-wcwl-shortcode.php:455
#: plugin-options/wishlist_page-options.php:147
msgid "Tweet on Twitter"
msgstr "Поделиться в Twitter"

#: includes/class-yith-wcwl-shortcode.php:473
#: plugin-options/wishlist_page-options.php:156
msgid "Pin on Pinterest"
msgstr "Поделиться в Pinterest"

#: includes/class-yith-wcwl-shortcode.php:487
msgid "Share via email"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:510
#: plugin-options/wishlist_page-options.php:174
msgid "Share on WhatsApp"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:621
msgid "Remove from list"
msgstr ""

#: includes/class-yith-wcwl-wishlist-item.php:189
msgid "Free!"
msgstr ""

#: includes/class-yith-wcwl.php:164
msgid "The item cannot be added to this wishlist"
msgstr ""

#: includes/class-yith-wcwl.php:168 includes/class-yith-wcwl.php:174
msgid "An error occurred while adding the products to the wishlist."
msgstr ""

#: includes/class-yith-wcwl.php:235 includes/class-yith-wcwl.php:241
msgid "Error. Unable to remove the product from the wishlist."
msgstr "Ошибка. Невозможно удалить продукт из избранного."

#: includes/data-stores/class-yith-wcwl-wishlist-data-store.php:152
#: includes/data-stores/class-yith-wcwl-wishlist-data-store.php:174
msgid "Invalid wishlist."
msgstr ""

#: includes/data-stores/class-yith-wcwl-wishlist-item-data-store.php:119
msgid "Invalid wishlist item."
msgstr ""

#. translators: 1. Number of users.
#: includes/functions-yith-wcwl.php:249
msgid "%d user"
msgid_plural "%d users"
msgstr[0] ""
msgstr[1] ""
msgstr[2] ""

#: includes/functions-yith-wcwl.php:250
msgid "has this item in wishlist"
msgid_plural "have this item in wishlist"
msgstr[0] ""
msgstr[1] ""
msgstr[2] ""

#: includes/functions-yith-wcwl.php:252
msgid "You're the first"
msgstr ""

#: includes/functions-yith-wcwl.php:253
msgid "to add this item in wishlist"
msgstr ""

#. translators: 1. Count of users when many, or "another" when only one.
#: includes/functions-yith-wcwl.php:257
msgid "You and %s user"
msgid_plural "You and %d users"
msgstr[0] ""
msgstr[1] ""
msgstr[2] ""

#: includes/functions-yith-wcwl.php:257
msgid "another"
msgstr ""

#: includes/functions-yith-wcwl.php:258
msgid "have this item in wishlist"
msgstr ""

#: includes/functions-yith-wcwl.php:425
msgid "None"
msgstr ""

#: includes/functions-yith-wcwl.php:426
msgid "Custom"
msgstr ""

#: includes/functions-yith-wcwl.php:447
msgid "Shared"
msgstr "Поделиться в:"

#: includes/functions-yith-wcwl.php:451
msgid "Only people with a link to this list can see it"
msgstr ""

#: includes/functions-yith-wcwl.php:457
msgid "Private"
msgstr ""

#: includes/functions-yith-wcwl.php:461
msgid "Only you can see this list"
msgstr ""

#: includes/functions-yith-wcwl.php:467
msgid "Public"
msgstr ""

#: includes/functions-yith-wcwl.php:471
msgid "Anyone can search for and see this list"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:118
#: plugin-options/add_to_wishlist-options.php:127
msgid "Add to wishlist"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:128
#: plugin-options/add_to_wishlist-options.php:143
msgid "Browse wishlist"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:138
msgid "Product already in wishlist"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:148
#, fuzzy
msgid "Product added to wishlist"
msgstr "Продукт успешно добавлен в корзину"

#: init.php:160
msgid "is enabled but not effective. It requires WooCommerce to work."
msgstr ""

#: init.php:176
msgid "You can't activate the free version of"
msgstr ""

#: init.php:176
msgid "while you are using the premium one."
msgstr ""

#: plugin-options/add_to_wishlist-options.php:20
#: plugin-options/settings-options.php:27
msgid "General Settings"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:27
msgid "After product is added to wishlist"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:28
msgid ""
"Choose the look of the Wishlist button when the product has already been "
"added to a wishlist"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:32
#, fuzzy
msgid "Show \"Add to wishlist\" button"
msgstr "Продукт успешно добавлен в корзину"

#: plugin-options/add_to_wishlist-options.php:33
msgid "Show \"View wishlist\" link"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:34
msgid "Show \"Remove from list\" link"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:48
msgid "Loop settings"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:50
msgid ""
"Loop options will be visible on Shop page, category pages, product "
"shortcodes, products sliders, and all the other places where the WooCommerce "
"products' loop is used"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:55
msgid "Show \"Add to wishlist\" in loop"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:56
msgid "Enable the \"Add to wishlist\" feature in WooCommerce products' loop"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:64
msgid "Position of \"Add to wishlist\" in loop"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:65
msgid ""
"Choose where to show \"Add to wishlist\" button or link in WooCommerce "
"products' loop. <span class=\"addon\">Copy this shortcode <span class=\"code"
"\"><code>[yith_wcwl_add_to_wishlist]</code></span> and paste it where you "
"want to show the \"Add to wishlist\" link or button</span>"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:72
msgid "On top of the image"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:73
msgid "Before \"Add to cart\" button"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:74
msgid "After \"Add to cart\" button"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:75
#: plugin-options/add_to_wishlist-options.php:107
msgid "Use shortcode"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:89
msgid "Product page settings"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:96
msgid "Position of \"Add to wishlist\" on product page"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:97
msgid ""
"Choose where to show \"Add to wishlist\" button or link on the product page. "
"<span class=\"addon\">Copy this shortcode <span class=\"code"
"\"><code>[yith_wcwl_add_to_wishlist]</code></span> and paste it where you "
"want to show the \"Add to wishlist\" link or button</span>"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:104
msgid "After \"Add to cart\""
msgstr "After \"Добавить в корзину\""

#: plugin-options/add_to_wishlist-options.php:105
msgid "After thumbnails"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:106
msgid "After summary"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:117
#: plugin-options/wishlist_page-options.php:222
msgid "Text customization"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:124
msgid "\"Add to wishlist\" text"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:125
msgid "Enter a text for \"Add to wishlist\" button"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:132
msgid "\"Product added\" text"
msgstr "Продукт успешно добавлен в корзину"

#: plugin-options/add_to_wishlist-options.php:133
msgid ""
"Enter the text of the message displayed when the user adds a product to the "
"wishlist"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:135
msgid "Product added!"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:140
msgid "\"Browse wishlist\" text"
msgstr "\"Добавить в корзину\" button text"

#: plugin-options/add_to_wishlist-options.php:141
msgid "Enter a text for the \"Browse wishlist\" link on the product page"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:148
msgid "\"Product already in wishlist\" text"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:149
msgid ""
"Enter the text for the message displayed when the user views a product that "
"is already in the wishlist"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:151
msgid "The product is already in your wishlist!"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:161
msgid "Style & Color customization"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:168
msgid "Style of \"Add to wishlist\""
msgstr ""

#: plugin-options/add_to_wishlist-options.php:169
msgid ""
"Choose if you want to show a textual \"Add to wishlist\" link or a button"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:172
#: plugin-options/wishlist_page-options.php:261
msgid "Textual (anchor)"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:173
#: plugin-options/wishlist_page-options.php:262
msgid "Button with theme style"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:174
#: plugin-options/wishlist_page-options.php:263
msgid "Button with custom style"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:182
msgid "\"Add to wishlist\" button style"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:188
msgid "Choose colors for the \"Add to wishlist\" button"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:190
#: plugin-options/wishlist_page-options.php:279
#: plugin-options/wishlist_page-options.php:368
#: plugin-options/wishlist_page-options.php:417
#: plugin-options/wishlist_page-options.php:465
#: plugin-options/wishlist_page-options.php:552
#: plugin-options/wishlist_page-options.php:592
#: plugin-options/wishlist_page-options.php:632
#: plugin-options/wishlist_page-options.php:672
#: plugin-options/wishlist_page-options.php:712
msgid "Background"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:195
#: plugin-options/wishlist_page-options.php:284
#: plugin-options/wishlist_page-options.php:373
#: plugin-options/wishlist_page-options.php:422
#: plugin-options/wishlist_page-options.php:470
#: plugin-options/wishlist_page-options.php:507
msgid "Text"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:200
#: plugin-options/wishlist_page-options.php:289
#: plugin-options/wishlist_page-options.php:378
#: plugin-options/wishlist_page-options.php:427
#: plugin-options/wishlist_page-options.php:475
msgid "Border"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:206
msgid "Choose colors for the \"Add to wishlist\" button on hover state"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:208
#: plugin-options/wishlist_page-options.php:297
#: plugin-options/wishlist_page-options.php:386
#: plugin-options/wishlist_page-options.php:435
msgid "Background Hover"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:213
#: plugin-options/wishlist_page-options.php:302
#: plugin-options/wishlist_page-options.php:391
#: plugin-options/wishlist_page-options.php:440
msgid "Text Hover"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:218
#: plugin-options/wishlist_page-options.php:307
#: plugin-options/wishlist_page-options.php:396
#: plugin-options/wishlist_page-options.php:445
msgid "Border Hover"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:231
#: plugin-options/wishlist_page-options.php:320
msgid "Border radius"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:232
msgid "Choose radius for the \"Add to wishlist\" button"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:246
msgid "\"Add to wishlist\" icon"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:247
msgid "Select an icon for the \"Add to wishlist\" button (optional)"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:257
msgid "\"Add to wishlist\" custom icon"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:258
#: plugin-options/add_to_wishlist-options.php:282
msgid ""
"Upload an icon you'd like to use for \"Add to wishlist\" button (suggested "
"32px x 32px)"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:270
msgid "\"Added to wishlist\" icon"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:271
msgid "Select an icon for the \"Added to wishlist\" button (optional)"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:277
msgid "Same used for Add to wishlist"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:281
msgid "\"Added to wishlist\" custom icon"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:294
msgid "Custom CSS"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:295
msgid "Enter custom CSS to be applied to Wishlist elements (optional)"
msgstr ""

#: plugin-options/lists-options.php:34
msgid "Search list"
msgstr ""

#. translators: 1. Anchor to Frequently Bought Together landing page on
#. yithemes.com.
#: plugin-options/settings-options.php:19
msgid ""
"If you want to take advantage of this feature, you could consider purchasing "
"the %s."
msgstr ""

#: plugin-options/settings-options.php:34
msgid "Enable AJAX loading"
msgstr ""

#: plugin-options/settings-options.php:35
msgid "Load any cacheable wishlist item via AJAX"
msgstr ""

#: plugin-options/settings-options.php:48
msgid "YITH WooCommerce Frequently Bought Together Integration"
msgstr ""

#. translators: 1. Url to Frequently Bought Together landing page on
#. yithemes.com.
#: plugin-options/settings-options.php:51
msgid ""
"In order to use this integration you have to install and activate YITH "
"WooCommerce Frequently Bought Together. <a href=\"%s\">Learn more</a>"
msgstr ""

#: plugin-options/settings-options.php:56
msgid "Enable slider in wishlist"
msgstr ""

#. translators: 1. Example image of the integration. 2. CTA to buy Frequently
#. Bought Together.
#: plugin-options/settings-options.php:58
msgid ""
"Enable the slider with linked products on the Wishlist page (<a href=\"%1$s"
"\" class=\"thickbox\">Example</a>). %2$s"
msgstr ""

#: plugin-options/wishlist_page-options.php:19
msgid "All your wishlists"
msgstr ""

#: plugin-options/wishlist_page-options.php:26
msgid "Wishlist page"
msgstr ""

#: plugin-options/wishlist_page-options.php:27
msgid ""
"Pick a page as the main Wishlist page; make sure you add the <span class="
"\"code\"><code>[yith_wcwl_wishlist]</code></span> shortcode into the page "
"content"
msgstr ""

#: plugin-options/wishlist_page-options.php:40
msgid "Wishlist Detail Page"
msgstr ""

#: plugin-options/wishlist_page-options.php:47
#: plugin-options/wishlist_page-options.php:56
#: plugin-options/wishlist_page-options.php:65
#: plugin-options/wishlist_page-options.php:74
#: plugin-options/wishlist_page-options.php:83
#: plugin-options/wishlist_page-options.php:92
#: plugin-options/wishlist_page-options.php:101
msgid "In wishlist table show"
msgstr ""

#: plugin-options/wishlist_page-options.php:48
msgid "Product variations selected by the user (example: size or color)"
msgstr ""

#: plugin-options/wishlist_page-options.php:57
msgid "Product price"
msgstr ""

#: plugin-options/wishlist_page-options.php:66
msgid "Product stock (show if the product is available or not)"
msgstr ""

#: plugin-options/wishlist_page-options.php:75
msgid "Date on which the product was added to the wishlist"
msgstr ""

#: plugin-options/wishlist_page-options.php:84
msgid "Add to cart option for each product"
msgstr ""

#: plugin-options/wishlist_page-options.php:93
msgid ""
"Icon to remove the product from the wishlist - to the left of the product"
msgstr ""

#: plugin-options/wishlist_page-options.php:102
msgid ""
"Button to remove the product from the wishlist - to the right of the product"
msgstr ""

#: plugin-options/wishlist_page-options.php:110
msgid "Redirect to cart"
msgstr ""

#: plugin-options/wishlist_page-options.php:111
msgid ""
"Redirect users to the cart page when they add a product to the cart from the "
"wishlist page"
msgstr ""

#: plugin-options/wishlist_page-options.php:119
msgid "Remove if added to the cart"
msgstr ""

#: plugin-options/wishlist_page-options.php:120
msgid ""
"Remove the product from the wishlist after it has been added to the cart"
msgstr ""

#: plugin-options/wishlist_page-options.php:128
msgid "Share wishlist"
msgstr ""

#: plugin-options/wishlist_page-options.php:129
msgid "Enable this option to let users share their wishlist on social media"
msgstr ""

#: plugin-options/wishlist_page-options.php:137
#: plugin-options/wishlist_page-options.php:146
#: plugin-options/wishlist_page-options.php:155
#: plugin-options/wishlist_page-options.php:164
#: plugin-options/wishlist_page-options.php:173
msgid "Share on social media"
msgstr ""

#: plugin-options/wishlist_page-options.php:165
msgid "Share by email"
msgstr ""

#: plugin-options/wishlist_page-options.php:182
msgid "Share by URL"
msgstr ""

#: plugin-options/wishlist_page-options.php:183
msgid "Show \"Share URL\" field on wishlist page"
msgstr ""

#: plugin-options/wishlist_page-options.php:191
msgid "Sharing title"
msgstr ""

#: plugin-options/wishlist_page-options.php:192
msgid "Wishlist title used for sharing (only used on Twitter and Pinterest)"
msgstr ""

#. translators: 1. Blog name.
#: plugin-options/wishlist_page-options.php:195
msgid "My wishlist on %s"
msgstr "Мои закладки на  %s"

#: plugin-options/wishlist_page-options.php:200
msgid "Social text"
msgstr ""

#: plugin-options/wishlist_page-options.php:201
msgid ""
"Type the message you want to publish when you share your wishlist on Twitter "
"and Pinterest"
msgstr ""

#: plugin-options/wishlist_page-options.php:209
msgid "Social image URL"
msgstr ""

#: plugin-options/wishlist_page-options.php:210
msgid "It will be used to pin the wishlist on Pinterest."
msgstr ""

#: plugin-options/wishlist_page-options.php:229
msgid "Default wishlist name"
msgstr ""

#: plugin-options/wishlist_page-options.php:230
msgid ""
"Enter a name for the default wishlist. This is the wishlist that will be "
"automatically generated for all users if they do not create any custom one"
msgstr ""

#: plugin-options/wishlist_page-options.php:232
#, fuzzy
msgid "My wishlist"
msgstr "Мои закладки на  %s"

#: plugin-options/wishlist_page-options.php:237
msgid "\"Add to cart\" text"
msgstr ""

#: plugin-options/wishlist_page-options.php:238
msgid "Enter a text for the \"Add to cart\" button"
msgstr ""

#: plugin-options/wishlist_page-options.php:250
msgid "Style & color customization"
msgstr ""

#: plugin-options/wishlist_page-options.php:257
msgid "Style of \"Add to cart\""
msgstr ""

#: plugin-options/wishlist_page-options.php:258
msgid "Choose whether to show a textual \"Add to cart\" link or a button"
msgstr ""

#: plugin-options/wishlist_page-options.php:271
msgid "\"Add to cart\" button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:277
msgid "Choose the colors for the \"Add to cart\" button"
msgstr ""

#: plugin-options/wishlist_page-options.php:295
msgid "Choose colors for the \"Add to cart\" button on hover state"
msgstr ""

#: plugin-options/wishlist_page-options.php:321
msgid "Set the radius for the \"Add to cart\" button"
msgstr ""

#: plugin-options/wishlist_page-options.php:335
msgid "\"Add to cart\" icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:336
msgid "Select an icon for the \"Add to cart\" button (optional)"
msgstr ""

#: plugin-options/wishlist_page-options.php:351
msgid "\"Add to cart\" custom icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:352
msgid ""
"Upload an icon you'd like to use for the \"Add to cart\" button (suggested "
"32px x 32px)"
msgstr ""

#: plugin-options/wishlist_page-options.php:360
msgid "Primary button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:366
msgid ""
"Choose colors for the primary button<br/><small>This style will be applied "
"to \"Edit title\" button on Wishlist view, \"Submit Changes\" button on "
"Manage view and \"Search wishlist\" button on Search view</small>"
msgstr ""

#: plugin-options/wishlist_page-options.php:384
msgid ""
"Choose colors for the primary button on hover state<br/><small>This style "
"will be applied to \"Edit title\" button on Wishlist view, \"Submit Changes"
"\" button on Manage view and \"Search wishlist\" button on Search view</"
"small>"
msgstr ""

#: plugin-options/wishlist_page-options.php:409
msgid "Secondary button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:415
#: plugin-options/wishlist_page-options.php:433
msgid ""
"Choose colors of the secondary button<br/><small>This style will be applied "
"to the buttons that allow showing and hiding the Edit title form on Wishlist "
"view and \"Create new Wishlist\" button on Manage view</small>"
msgstr ""

#: plugin-options/wishlist_page-options.php:458
msgid "Wishlist table style"
msgstr ""

#: plugin-options/wishlist_page-options.php:459
msgid ""
"Choose the colors for the wishlist table (when set to \"Traditional\" layout)"
msgstr ""

#: plugin-options/wishlist_page-options.php:487
msgid "Highlight color"
msgstr ""

#: plugin-options/wishlist_page-options.php:488
msgid ""
"Choose the color for all sections with background<br/><small>This color will "
"be used as background for the wishlist table heading and footer (when set to "
"\"Traditional\" layout), and for various form across wishlist views</small>"
msgstr ""

#: plugin-options/wishlist_page-options.php:500
msgid "Share button text color"
msgstr ""

#: plugin-options/wishlist_page-options.php:501
msgid "Choose colors for share buttons text"
msgstr ""

#: plugin-options/wishlist_page-options.php:512
msgid "Text hover"
msgstr ""

#: plugin-options/wishlist_page-options.php:525
msgid "Facebook share button icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:526
msgid "Select an icon for the Facebook share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:536
msgid "Facebook share button custom icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:537
msgid ""
"Upload an icon you'd like to use for Facebook share button (suggested 32px x "
"32px)"
msgstr ""

#: plugin-options/wishlist_page-options.php:545
msgid "Facebook share button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:546
msgid "Choose colors for Facebook share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:557
#: plugin-options/wishlist_page-options.php:597
#: plugin-options/wishlist_page-options.php:637
#: plugin-options/wishlist_page-options.php:677
#: plugin-options/wishlist_page-options.php:717
msgid "Background hover"
msgstr ""

#: plugin-options/wishlist_page-options.php:565
msgid "Twitter share button icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:566
msgid "Select an icon for the Twitter share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:576
msgid "Twitter share button custom icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:577
msgid ""
"Upload an icon you'd like to use for Twitter share button (suggested 32px x "
"32px)"
msgstr ""

#: plugin-options/wishlist_page-options.php:585
msgid "Twitter share button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:586
msgid "Choose colors for Twitter share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:605
msgid "Pinterest share button icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:606
msgid "Select an icon for the Pinterest share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:616
msgid "Pinterest share button custom icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:617
msgid ""
"Upload an icon you'd like to use for Pinterest share button (suggested 32px "
"x 32px)"
msgstr ""

#: plugin-options/wishlist_page-options.php:625
msgid "Pinterest share button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:626
msgid "Choose colors for Pinterest share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:645
msgid "Email share button icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:646
msgid "Select an icon for the Email share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:656
msgid "Email share button custom icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:657
msgid ""
"Upload an icon you'd like to use for the Email share button (suggested 32px "
"x 32px)"
msgstr ""

#: plugin-options/wishlist_page-options.php:665
msgid "Email share button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:666
msgid "Choose colors for the Email share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:685
msgid "WhatsApp share button icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:686
msgid "Select an icon for the WhatsApp share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:696
msgid "WhatsApp share button custom icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:697
msgid ""
"Upload an icon you'd like to use for WhatsApp share button (suggested 32px x "
"32px)"
msgstr ""

#: plugin-options/wishlist_page-options.php:705
msgid "WhatsApp share button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:706
msgid "Choose colors for WhatsApp share button"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:168
#: templates/admin/wishlist-panel-premium.php:309
msgid ""
"Upgrade to the %1$spremium version%2$s%3$sof %1$sYITH WooCommerce Wishlist"
"%2$s to benefit from all features!"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:170
#: templates/admin/wishlist-panel-premium.php:311
msgid "Upgrade"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:176
msgid "Premium Features"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:180
msgid "Allow your customers to create multiple wishlists"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:182
msgid ""
"Christmas, Birthday... users will be able to create and manage multiple "
"wishlists, in case they prefer to keep the products sorted by category or "
"other parameters."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:185
msgid "Multiple Wishlist"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:192
msgid "Wishlist Private"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:196
msgid "A transparent privacy management"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:198
msgid ""
"Your customers can set a privacy option for each wishlist and choose whether "
"sharing the wishlist or making it private."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:206
msgid ""
"Allow your customers to ask for an estimate, directly from their wishlist "
"page"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:208
msgid ""
"And give only registered users the privilege to use the wishlist "
"functionalities."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:211
msgid "Estimate Cost"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:218
msgid "Admin Panel"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:222
msgid "An advanced and more versatile management of the wishlist"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:224
msgid ""
"Your customers can sort the products in the wishlist thanks to the drag&drop "
"option, move products from one wishlist to another, manage product quantity, "
"download the wishlist content to a .pdf file, share the wishlist on their "
"social networks, and much more!"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:232
msgid "Monitor your customers’ wishlists and the popular products"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:234
msgid ""
"You can see your customers’ wishlists, gain insight into the products they "
"are more interested in and plan targeted marketing strategies."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:237
msgid "Search Wishlists"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:244
msgid "'ADD TO CART'"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:248
msgid ""
"Send promotional emails for products in wishlists to push customers to buy"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:250
msgid ""
"Just three clicks to send promotional emails with discount coupons to "
"customers who have added specific products to their wishlist and push them "
"to buy."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:258
msgid "Let users buy the product right from the wishlist page"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:260
msgid ""
"Let them move products from one wishlist to the cart in one click, keeping "
"also the information about the size, colour or quantity selected when added "
"to the wishlist."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:263
msgid "DISABLE WISHLIST"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:271
msgid "Choose a charming layout for your wishlist page"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:273
msgid ""
"The wishlist is one of the most used functionalities in an ecommerce store "
"but often the page layout is not enhanced enough and looks unattractive to "
"the user. With our plugin, you can choose among some alternative layouts and "
"offer an even more interesting experience to users who creates a wishlist on "
"your website."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:276
msgid "UNLOGGED USERS"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:284
msgid "Wishlist widgets for the header and sidebars"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:286
msgid ""
"Increase the wishlist visibility through our modern widgets that you can use "
"in the header, in the sidebars, wherever you want."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:289
msgid "POPULAR TABLE"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:296
msgid "FUNCTIONALITIES"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:300
msgid "Allow users to monitor the price of the products in their wishlist"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:302
msgid ""
"We took inspiration from one of the most interesting features of Amazon "
"product pages: from now on, users can realise what’s the best time to buy a "
"product and how much they can save when there’s a promotion running or a "
"discount on the product they’ve added to the wishlist."
msgstr ""

#: templates/share.php:51 templates/share.php:52
msgid "Facebook"
msgstr ""

#: templates/share.php:59 templates/share.php:60
msgid "Twitter"
msgstr ""

#: templates/share.php:67 templates/share.php:68
msgid "Pinterest"
msgstr ""

#: templates/share.php:75 templates/share.php:76
msgid "Email"
msgstr ""

#: templates/share.php:83
msgid "WhatsApp"
msgstr ""

#: templates/share.php:84
msgid "Whatsapp"
msgstr ""

#: templates/share.php:93
msgid "(Now"
msgstr ""

#: templates/share.php:93
msgid "copy"
msgstr ""

#: templates/share.php:93
msgid "this wishlist link and share it anywhere)"
msgstr ""

#: templates/wishlist-view-footer-mobile.php:44
#: templates/wishlist-view-footer.php:44
msgid "Apply this action to all the selected items:"
msgstr ""

#: templates/wishlist-view-footer-mobile.php:49
#: templates/wishlist-view-footer.php:49
msgid "Remove from wishlist"
msgstr ""

#. translators: 1. Wishlist formatted name.
#: templates/wishlist-view-footer-mobile.php:67
#: templates/wishlist-view-footer.php:67
msgid "Move to %s"
msgstr ""

#: templates/wishlist-view-footer-mobile.php:73
#: templates/wishlist-view-footer.php:73
msgid "Apply"
msgstr ""

#: templates/wishlist-view-footer-mobile.php:81
#: templates/wishlist-view-footer.php:81
msgid "Update"
msgstr ""

#: templates/wishlist-view-footer-mobile.php:87
#: templates/wishlist-view-footer.php:103
msgid "Add all to cart"
msgstr ""

#: templates/wishlist-view-header.php:48
msgid "Edit title"
msgstr ""

#: templates/wishlist-view-mobile.php:136
msgid "Added on:"
msgstr ""

#: templates/wishlist-view-mobile.php:147
msgid "Price:"
msgstr ""

#: templates/wishlist-view-mobile.php:174
msgid "Quantity:"
msgstr ""

#: templates/wishlist-view-mobile.php:189
msgid "Stock:"
msgstr ""

#: templates/wishlist-view-mobile.php:192 templates/wishlist-view.php:229
msgid "Out of stock"
msgstr ""

#: templates/wishlist-view-mobile.php:192 templates/wishlist-view.php:229
msgid "In Stock"
msgstr "в наличии"

#: templates/wishlist-view-mobile.php:212 templates/wishlist-view.php:262
msgid "Move"
msgstr ""

#: templates/wishlist-view-mobile.php:233 templates/wishlist-view.php:283
msgid "Move to another list &rsaquo;"
msgstr ""

#: templates/wishlist-view-mobile.php:241 templates/wishlist-view.php:157
#: templates/wishlist-view.php:293
msgid "Remove this product"
msgstr ""

#: templates/wishlist-view-mobile.php:252 templates/wishlist-view.php:313
msgid "No products added to the wishlist"
msgstr ""

#: templates/wishlist-view.php:79
msgid "Product name"
msgstr ""

#: templates/wishlist-view.php:87
msgid "Unit price"
msgstr ""

#: templates/wishlist-view.php:96
msgid "Quantity"
msgstr ""

#: templates/wishlist-view.php:105
msgid "Stock status"
msgstr ""

#: templates/wishlist-view.php:123
msgid "Arrange"
msgstr ""

#. translators: date added label: 1 date added.
#: templates/wishlist-view.php:243
msgid "Added on: %s"
msgstr ""

#: templates/wishlist-view.php:293
msgid "Remove"
msgstr ""

#. Description of the plugin/theme
msgid ""
"<code><strong>YITH WooCommerce Wishlist</strong></code> gives your users the "
"possibility to create, fill, manage and share their wishlists allowing you "
"to analyze their interests and needs to improve your marketing strategies. "
"<a href=\"https://yithemes.com/\" target=\"_blank\">Get more plugins for "
"your e-commerce on <strong>YITH</strong></a>"
msgstr ""

#: includes/class-yith-wcwl-admin.php:261
msgctxt "[HELP TAB] Video title"
msgid ""
"Check this video to learn how to <b>configure wishlist and customize options:"
"</b>"
msgstr ""

#: includes/class-yith-wcwl-install.php:340
msgctxt "page_slug"
msgid "wishlist"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:230
msgctxt "date when wishlist was created"
msgid "Created on"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:52
msgctxt "[gutenberg]: block name"
msgid "YITH Add to wishlist"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:101
msgctxt "[gutenberg]: block name"
msgid "YITH Wishlist"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:53
msgctxt "[gutenberg]: block description"
msgid "Shows Add to wishlist button"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:102
msgctxt "[gutenberg]: block description"
msgid "Shows a list of products in wishlist"
msgstr ""

#. translators: 1. % of reduction/increase in price.
#: includes/class-yith-wcwl-wishlist-item.php:428
msgctxt ""
"Part of the template that shows price variation since addition to list; "
"placeholder will be replaced with a percentage"
msgid "Price is %1$s%%"
msgstr ""

#. translators: 2: original product price.
#: includes/class-yith-wcwl-wishlist-item.php:430
msgctxt ""
"Part of the template that shows price variation since addition to list; "
"placeholder will be replaced with a price"
msgid "(Was %2$s when added  in list)"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:45
msgctxt "Elementor widget name"
msgid "YITH Wishlist Add button"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:45
#, fuzzy
msgctxt "Elementor widget name"
msgid "YITH Wishlist"
msgstr "Мои закладки на  %s"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:87
msgctxt "Elementor section title"
msgid "Product"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:107
msgctxt "Elementor section title"
msgid "Labels"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:157
msgctxt "Elementor section title"
msgid "Advanced"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:87
#, fuzzy
msgctxt "Elementor section title"
msgid "Wishlist"
msgstr "Мои закладки на  %s"

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:107
msgctxt "Elementor section title"
msgid "Pagination"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:95
msgctxt "Elementor control label"
msgid "Product ID"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:115
msgctxt "Elementor control label"
msgid "Button label"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:125
#, fuzzy
msgctxt "Elementor control label"
msgid "\"Browse wishlist\" label"
msgstr "\"Добавить в корзину\" button text"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:135
msgctxt "Elementor control label"
msgid "\"Product already in wishlist\" label"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:145
#, fuzzy
msgctxt "Elementor control label"
msgid "\"Product added to wishlist\" label"
msgstr "Продукт успешно добавлен в корзину"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:165
msgctxt "Elementor control label"
msgid "URL of the wishlist page"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:175
msgctxt "Elementor control label"
msgid "Icon for the button"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:185
msgctxt "Elementor control label"
msgid "Additional CSS classes for the button"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:95
#, fuzzy
msgctxt "Elementor control label"
msgid "Wishlist ID"
msgstr "Мои закладки на  %s"

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:115
msgctxt "Elementor control label"
msgid "Paginate items"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:128
msgctxt "yith-woocommerce-wishlist"
msgid "Items per page"
msgstr ""

#~ msgid "My wishlist on "
#~ msgstr "Мои закладки на  %s"

#~ msgid "YITH WooCommerce Wishlist"
#~ msgstr "Мои закладки на  %s"
PK`x1\a�ff,languages/yith-woocommerce-wishlist-zh_CN.monu�[�������HI`"u6�����	)0	9CTm6}9�	���%	8	BLY
	
"Browse wishlist" text"Product added" text"Product already in wishlist" textError. Unable to remove the product from the wishlist.Free!In StockProduct added!Product successfully removed.Remove this productShare on:SharedWishlistWishlistsProject-Id-Version: YITH WooCommerce Wishlist
Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/yith-woocommerce-wishlist
POT-Creation-Date: 2021-11-11 13:53:53+00:00
PO-Revision-Date: 2020-10-16 14:07+0200
Last-Translator: 李明軒 <eggeggxuan@gmail.com>
Language-Team: Your Inspiration Themes <plugins@yithemes.com>
Language: zh_CN
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Generator: Poedit 2.4.1
X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;_n:1,2;__ngettext:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2
X-Poedit-Basepath: .
Plural-Forms: nplurals=2; plural=n!=1;
X-Poedit-SourceCharset: UTF-8
X-Poedit-SearchPath-0: ..
X-Poedit-SearchPathExcluded-0: ../plugin-fw
浏览「愿望清单」加入收藏!商品已经加入收藏在「愿望清单」裡面。错误。无法从「愿望清单」移除这个商品。免费!有货加入收藏!成功移除商品。移除这个商品分享:分享:愿望清单愿望清单PK`x1\Ц�[��,languages/yith-woocommerce-wishlist-uk_UA.monu�[�����
l
���1:L	ak	r|(��"�((Aj(�	
"Browse wishlist" text"Product added" textAfter "Add to cart"In StockMy wishlist on %sRemoved wishlist %s.Share on:SharedWishlistsProject-Id-Version: YITH WooCommerce Wishlist
Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/yith-woocommerce-wishlist
POT-Creation-Date: 2021-11-11 13:53:53+00:00
PO-Revision-Date: 2020-10-16 14:07+0200
Last-Translator: Valentyn Zubenko <valentyn.zubenko@gmail.com>
Language-Team: Your Inspiration Themes <plugins@yithemes.com>
Language: uk_UA
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Generator: Poedit 2.4.1
X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;_n:1,2;__ngettext:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2
X-Poedit-Basepath: .
Plural-Forms: nplurals=2; plural=n!=1;
X-Poedit-SourceCharset: UTF-8
X-Poedit-SearchPath-0: ..
X-Poedit-SearchPathExcluded-0: ../plugin-fw
"Додати в кошик" button textНазва продуктуAfter "Додати в кошик"в наявностіМій обраний список в %sМій обраний список в %sПоширити в:Поширити в:Мій обраний список в %sPK`x1\V�I2��,languages/yith-woocommerce-wishlist-pt_BR.ponu�[���# Copyright (C) 2019 YITH WooCommerce Wishlist
# This file is distributed under the same license as the YITH WooCommerce Wishlist package.
msgid ""
msgstr ""
"Project-Id-Version: YITH WooCommerce Wishlist\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/yith-woocommerce-"
"wishlist\n"
"POT-Creation-Date: 2021-11-11 13:53:53+00:00\n"
"PO-Revision-Date: 2020-10-16 14:06+0200\n"
"Last-Translator: YIThemes <support@yithemes.com>\n"
"Language-Team: Your Inspiration Themes <plugins@yithemes.com>\n"
"Language: pt_BR\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 2.4.1\n"
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;_n:1,2;__ngettext:1,2;"
"__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;"
"_nx_noop:4c,1,2\n"
"X-Poedit-Basepath: .\n"
"Plural-Forms: nplurals=2; plural=n!=1;\n"
"X-Poedit-SourceCharset: UTF-8\n"
"X-Poedit-SearchPath-0: ..\n"
"X-Poedit-SearchPathExcluded-0: ../plugin-fw\n"

#: includes/class-yith-wcwl-admin.php:126
#, fuzzy
msgid "Wishlist Page"
msgstr "Lista de Desejos"

#: includes/class-yith-wcwl-admin.php:148
msgid "General settings"
msgstr ""

#: includes/class-yith-wcwl-admin.php:149
msgid "Add to wishlist options"
msgstr ""

#: includes/class-yith-wcwl-admin.php:150
msgid "Wishlist page options"
msgstr ""

#: includes/class-yith-wcwl-admin.php:151
msgid "Premium Version"
msgstr ""

#: includes/class-yith-wcwl-admin.php:249
#: includes/class-yith-wcwl-install.php:342
msgid "Wishlist"
msgstr "Lista de Desejos"

#: includes/class-yith-wcwl-admin.php:251
msgid ""
"Allows your customers to create and share lists of products that they want "
"to purchase on your e-commerce."
msgstr ""

#: includes/class-yith-wcwl-ajax-handler.php:75
#: templates/add-to-wishlist-remove.php:59
msgid "View &rsaquo;"
msgstr ""

#: includes/class-yith-wcwl-ajax-handler.php:76
#: templates/add-to-wishlist-remove.php:58
msgid "or"
msgstr ""

#: includes/class-yith-wcwl-ajax-handler.php:77
msgid "Close"
msgstr ""

#: includes/class-yith-wcwl-ajax-handler.php:155
#: includes/class-yith-wcwl-ajax-handler.php:195
msgid "Product successfully removed."
msgstr "Produto removida com sucesso."

#: includes/class-yith-wcwl-form-handler.php:156
msgid "Please, make sure to enter a valid title"
msgstr ""

#: includes/class-yith-wcwl-frontend.php:461
msgid ""
"We are sorry, but this feature is available only if cookies on your browser "
"are enabled."
msgstr ""

#: includes/class-yith-wcwl-frontend.php:462
msgid "Product added to cart successfully"
msgstr ""

#: includes/class-yith-wcwl-frontend.php:725
#: includes/class-yith-wcwl-shortcode.php:239
#: plugin-options/wishlist_page-options.php:240
#: templates/wishlist-view-footer-mobile.php:46
#: templates/wishlist-view-footer.php:46
msgid "Add to cart"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:52
msgid "While you visit our site, we’ll track:"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:54
msgid ""
"Products you’ve added to the wishlist: we’ll use this to show you and other "
"users your favourite products, and to create targeted email campaigns."
msgstr ""

#: includes/class-yith-wcwl-privacy.php:55
msgid ""
"Wishlists you’ve created: we’ll keep track of the wishlists you create, and "
"make them visible to the store staff"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:57
msgid ""
"We’ll also use cookies to keep track of wishlist contents while you’re "
"browsing our site."
msgstr ""

#: includes/class-yith-wcwl-privacy.php:60
msgid ""
"Members of our team have access to the information you provide us with. For "
"example, both Administrators and Shop Managers can access:"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:62
msgid ""
"Wishlist details, such as products added, date of addition, name and privacy "
"settings of your wishlists"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:64
msgid ""
"Our team members have access to this information to offer you better deals "
"for the products you love."
msgstr ""

#: includes/class-yith-wcwl-privacy.php:84
#: includes/class-yith-wcwl-privacy.php:100
msgid "Customer wishlists"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:137 plugin-options/lists-options.php:25
#: plugin-options/lists-options.php:32
msgid "Wishlists"
msgstr "Lista de Desejos"

#. Translators: %s Order number.
#: includes/class-yith-wcwl-privacy.php:199
msgid "Removed wishlist %s."
msgstr "Minha lista de desejos em %s"

#. Translators: %s Order number.
#: includes/class-yith-wcwl-privacy.php:203
msgid "Wishlist %s has been retained."
msgstr "Texto da tabela de desejos"

#: includes/class-yith-wcwl-privacy.php:227
msgid "Token"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:228
msgid "Wishlist URL"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:229
msgid "Title"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:231
msgid "Visibility"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:232
msgid "Items added"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:58
msgid ""
"ID of the product to add to the wishlist (leave empty to use the global "
"product)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:63
msgid "URL of the wishlist page (leave empty to use the default settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:68
msgid "Button label (leave empty to use the default settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:73
msgid "\"Browse wishlist\" label (leave empty to use the default settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:78
msgid ""
"\"Product already in wishlist\" label (leave empty to use the default "
"settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:83
msgid ""
"\"Product added to wishlist\" label (leave empty to use the default settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:88
msgid ""
"Icon for the button (use any FontAwesome valid class, or leave empty to use "
"the default settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:93
msgid ""
"Additional CSS classes for the button (leave empty to use the default "
"settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:107
msgid "Choose whether to paginate items in the wishlist or show them all"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:110
#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:118
msgid "Paginate"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:111
#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:119
msgid "Do not paginate"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:116
msgid "Number of items to show per page"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:121
msgid "ID of the wishlist to show (e.g. K6EOWXB888ZD)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:414
msgid "Share on:"
msgstr "Compartilhar em:"

#: includes/class-yith-wcwl-shortcode.php:438
#: plugin-options/wishlist_page-options.php:138
msgid "Share on Facebook"
msgstr "Compartilhar no Facebook"

#: includes/class-yith-wcwl-shortcode.php:455
#: plugin-options/wishlist_page-options.php:147
msgid "Tweet on Twitter"
msgstr "Tweetar no Twitter"

#: includes/class-yith-wcwl-shortcode.php:473
#: plugin-options/wishlist_page-options.php:156
msgid "Pin on Pinterest"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:487
msgid "Share via email"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:510
#: plugin-options/wishlist_page-options.php:174
msgid "Share on WhatsApp"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:621
msgid "Remove from list"
msgstr ""

#: includes/class-yith-wcwl-wishlist-item.php:189
msgid "Free!"
msgstr ""

#: includes/class-yith-wcwl.php:164
msgid "The item cannot be added to this wishlist"
msgstr ""

#: includes/class-yith-wcwl.php:168 includes/class-yith-wcwl.php:174
msgid "An error occurred while adding the products to the wishlist."
msgstr ""

#: includes/class-yith-wcwl.php:235 includes/class-yith-wcwl.php:241
msgid "Error. Unable to remove the product from the wishlist."
msgstr "Erro. Não foi possível remover o produto da lista de desejos."

#: includes/data-stores/class-yith-wcwl-wishlist-data-store.php:152
#: includes/data-stores/class-yith-wcwl-wishlist-data-store.php:174
msgid "Invalid wishlist."
msgstr ""

#: includes/data-stores/class-yith-wcwl-wishlist-item-data-store.php:119
msgid "Invalid wishlist item."
msgstr ""

#. translators: 1. Number of users.
#: includes/functions-yith-wcwl.php:249
msgid "%d user"
msgid_plural "%d users"
msgstr[0] ""
msgstr[1] ""

#: includes/functions-yith-wcwl.php:250
msgid "has this item in wishlist"
msgid_plural "have this item in wishlist"
msgstr[0] ""
msgstr[1] ""

#: includes/functions-yith-wcwl.php:252
msgid "You're the first"
msgstr ""

#: includes/functions-yith-wcwl.php:253
msgid "to add this item in wishlist"
msgstr ""

#. translators: 1. Count of users when many, or "another" when only one.
#: includes/functions-yith-wcwl.php:257
msgid "You and %s user"
msgid_plural "You and %d users"
msgstr[0] ""
msgstr[1] ""

#: includes/functions-yith-wcwl.php:257
msgid "another"
msgstr ""

#: includes/functions-yith-wcwl.php:258
msgid "have this item in wishlist"
msgstr ""

#: includes/functions-yith-wcwl.php:425
msgid "None"
msgstr ""

#: includes/functions-yith-wcwl.php:426
#, fuzzy
msgid "Custom"
msgstr "CSS Customizado"

#: includes/functions-yith-wcwl.php:447
msgid "Shared"
msgstr "Compartilhar em:"

#: includes/functions-yith-wcwl.php:451
msgid "Only people with a link to this list can see it"
msgstr ""

#: includes/functions-yith-wcwl.php:457
msgid "Private"
msgstr ""

#: includes/functions-yith-wcwl.php:461
msgid "Only you can see this list"
msgstr ""

#: includes/functions-yith-wcwl.php:467
msgid "Public"
msgstr ""

#: includes/functions-yith-wcwl.php:471
msgid "Anyone can search for and see this list"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:118
#: plugin-options/add_to_wishlist-options.php:127
msgid "Add to wishlist"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:128
#: plugin-options/add_to_wishlist-options.php:143
msgid "Browse wishlist"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:138
#, fuzzy
msgid "Product already in wishlist"
msgstr "Produto já na lista de desejos."

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:148
#, fuzzy
msgid "Product added to wishlist"
msgstr "Produto já na lista de desejos."

#: init.php:160
msgid "is enabled but not effective. It requires WooCommerce to work."
msgstr ""

#: init.php:176
msgid "You can't activate the free version of"
msgstr ""

#: init.php:176
msgid "while you are using the premium one."
msgstr ""

#: plugin-options/add_to_wishlist-options.php:20
#: plugin-options/settings-options.php:27
msgid "General Settings"
msgstr "Opções gerais"

#: plugin-options/add_to_wishlist-options.php:27
msgid "After product is added to wishlist"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:28
msgid ""
"Choose the look of the Wishlist button when the product has already been "
"added to a wishlist"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:32
#, fuzzy
msgid "Show \"Add to wishlist\" button"
msgstr "Produto já na lista de desejos."

#: plugin-options/add_to_wishlist-options.php:33
msgid "Show \"View wishlist\" link"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:34
msgid "Show \"Remove from list\" link"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:48
msgid "Loop settings"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:50
msgid ""
"Loop options will be visible on Shop page, category pages, product "
"shortcodes, products sliders, and all the other places where the WooCommerce "
"products' loop is used"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:55
msgid "Show \"Add to wishlist\" in loop"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:56
msgid "Enable the \"Add to wishlist\" feature in WooCommerce products' loop"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:64
msgid "Position of \"Add to wishlist\" in loop"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:65
msgid ""
"Choose where to show \"Add to wishlist\" button or link in WooCommerce "
"products' loop. <span class=\"addon\">Copy this shortcode <span class=\"code"
"\"><code>[yith_wcwl_add_to_wishlist]</code></span> and paste it where you "
"want to show the \"Add to wishlist\" link or button</span>"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:72
msgid "On top of the image"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:73
msgid "Before \"Add to cart\" button"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:74
msgid "After \"Add to cart\" button"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:75
#: plugin-options/add_to_wishlist-options.php:107
msgid "Use shortcode"
msgstr "Usar shortcode"

#: plugin-options/add_to_wishlist-options.php:89
msgid "Product page settings"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:96
msgid "Position of \"Add to wishlist\" on product page"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:97
msgid ""
"Choose where to show \"Add to wishlist\" button or link on the product page. "
"<span class=\"addon\">Copy this shortcode <span class=\"code"
"\"><code>[yith_wcwl_add_to_wishlist]</code></span> and paste it where you "
"want to show the \"Add to wishlist\" link or button</span>"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:104
msgid "After \"Add to cart\""
msgstr "Após \" Adicionar ao carrinho \""

#: plugin-options/add_to_wishlist-options.php:105
msgid "After thumbnails"
msgstr "Após miniaturas"

#: plugin-options/add_to_wishlist-options.php:106
msgid "After summary"
msgstr "Após sumário"

#: plugin-options/add_to_wishlist-options.php:117
#: plugin-options/wishlist_page-options.php:222
msgid "Text customization"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:124
msgid "\"Add to wishlist\" text"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:125
msgid "Enter a text for \"Add to wishlist\" button"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:132
msgid "\"Product added\" text"
msgstr "Produto adicionado!"

#: plugin-options/add_to_wishlist-options.php:133
msgid ""
"Enter the text of the message displayed when the user adds a product to the "
"wishlist"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:135
msgid "Product added!"
msgstr "Produto adicionado!"

#: plugin-options/add_to_wishlist-options.php:140
msgid "\"Browse wishlist\" text"
msgstr "Veja sua lista de desejos!"

#: plugin-options/add_to_wishlist-options.php:141
msgid "Enter a text for the \"Browse wishlist\" link on the product page"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:148
msgid "\"Product already in wishlist\" text"
msgstr "Produto já na lista de desejos."

#: plugin-options/add_to_wishlist-options.php:149
msgid ""
"Enter the text for the message displayed when the user views a product that "
"is already in the wishlist"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:151
msgid "The product is already in your wishlist!"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:161
msgid "Style & Color customization"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:168
msgid "Style of \"Add to wishlist\""
msgstr ""

#: plugin-options/add_to_wishlist-options.php:169
msgid ""
"Choose if you want to show a textual \"Add to wishlist\" link or a button"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:172
#: plugin-options/wishlist_page-options.php:261
msgid "Textual (anchor)"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:173
#: plugin-options/wishlist_page-options.php:262
msgid "Button with theme style"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:174
#: plugin-options/wishlist_page-options.php:263
msgid "Button with custom style"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:182
msgid "\"Add to wishlist\" button style"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:188
msgid "Choose colors for the \"Add to wishlist\" button"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:190
#: plugin-options/wishlist_page-options.php:279
#: plugin-options/wishlist_page-options.php:368
#: plugin-options/wishlist_page-options.php:417
#: plugin-options/wishlist_page-options.php:465
#: plugin-options/wishlist_page-options.php:552
#: plugin-options/wishlist_page-options.php:592
#: plugin-options/wishlist_page-options.php:632
#: plugin-options/wishlist_page-options.php:672
#: plugin-options/wishlist_page-options.php:712
msgid "Background"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:195
#: plugin-options/wishlist_page-options.php:284
#: plugin-options/wishlist_page-options.php:373
#: plugin-options/wishlist_page-options.php:422
#: plugin-options/wishlist_page-options.php:470
#: plugin-options/wishlist_page-options.php:507
msgid "Text"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:200
#: plugin-options/wishlist_page-options.php:289
#: plugin-options/wishlist_page-options.php:378
#: plugin-options/wishlist_page-options.php:427
#: plugin-options/wishlist_page-options.php:475
msgid "Border"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:206
msgid "Choose colors for the \"Add to wishlist\" button on hover state"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:208
#: plugin-options/wishlist_page-options.php:297
#: plugin-options/wishlist_page-options.php:386
#: plugin-options/wishlist_page-options.php:435
msgid "Background Hover"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:213
#: plugin-options/wishlist_page-options.php:302
#: plugin-options/wishlist_page-options.php:391
#: plugin-options/wishlist_page-options.php:440
msgid "Text Hover"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:218
#: plugin-options/wishlist_page-options.php:307
#: plugin-options/wishlist_page-options.php:396
#: plugin-options/wishlist_page-options.php:445
msgid "Border Hover"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:231
#: plugin-options/wishlist_page-options.php:320
msgid "Border radius"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:232
msgid "Choose radius for the \"Add to wishlist\" button"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:246
msgid "\"Add to wishlist\" icon"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:247
msgid "Select an icon for the \"Add to wishlist\" button (optional)"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:257
msgid "\"Add to wishlist\" custom icon"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:258
#: plugin-options/add_to_wishlist-options.php:282
msgid ""
"Upload an icon you'd like to use for \"Add to wishlist\" button (suggested "
"32px x 32px)"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:270
msgid "\"Added to wishlist\" icon"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:271
msgid "Select an icon for the \"Added to wishlist\" button (optional)"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:277
msgid "Same used for Add to wishlist"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:281
msgid "\"Added to wishlist\" custom icon"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:294
msgid "Custom CSS"
msgstr "CSS Customizado"

#: plugin-options/add_to_wishlist-options.php:295
msgid "Enter custom CSS to be applied to Wishlist elements (optional)"
msgstr ""

#: plugin-options/lists-options.php:34
msgid "Search list"
msgstr ""

#. translators: 1. Anchor to Frequently Bought Together landing page on
#. yithemes.com.
#: plugin-options/settings-options.php:19
msgid ""
"If you want to take advantage of this feature, you could consider purchasing "
"the %s."
msgstr ""

#: plugin-options/settings-options.php:34
msgid "Enable AJAX loading"
msgstr ""

#: plugin-options/settings-options.php:35
msgid "Load any cacheable wishlist item via AJAX"
msgstr ""

#: plugin-options/settings-options.php:48
msgid "YITH WooCommerce Frequently Bought Together Integration"
msgstr ""

#. translators: 1. Url to Frequently Bought Together landing page on
#. yithemes.com.
#: plugin-options/settings-options.php:51
msgid ""
"In order to use this integration you have to install and activate YITH "
"WooCommerce Frequently Bought Together. <a href=\"%s\">Learn more</a>"
msgstr ""

#: plugin-options/settings-options.php:56
msgid "Enable slider in wishlist"
msgstr ""

#. translators: 1. Example image of the integration. 2. CTA to buy Frequently
#. Bought Together.
#: plugin-options/settings-options.php:58
msgid ""
"Enable the slider with linked products on the Wishlist page (<a href=\"%1$s"
"\" class=\"thickbox\">Example</a>). %2$s"
msgstr ""

#: plugin-options/wishlist_page-options.php:19
msgid "All your wishlists"
msgstr ""

#: plugin-options/wishlist_page-options.php:26
msgid "Wishlist page"
msgstr ""

#: plugin-options/wishlist_page-options.php:27
msgid ""
"Pick a page as the main Wishlist page; make sure you add the <span class="
"\"code\"><code>[yith_wcwl_wishlist]</code></span> shortcode into the page "
"content"
msgstr ""

#: plugin-options/wishlist_page-options.php:40
msgid "Wishlist Detail Page"
msgstr ""

#: plugin-options/wishlist_page-options.php:47
#: plugin-options/wishlist_page-options.php:56
#: plugin-options/wishlist_page-options.php:65
#: plugin-options/wishlist_page-options.php:74
#: plugin-options/wishlist_page-options.php:83
#: plugin-options/wishlist_page-options.php:92
#: plugin-options/wishlist_page-options.php:101
msgid "In wishlist table show"
msgstr ""

#: plugin-options/wishlist_page-options.php:48
msgid "Product variations selected by the user (example: size or color)"
msgstr ""

#: plugin-options/wishlist_page-options.php:57
msgid "Product price"
msgstr ""

#: plugin-options/wishlist_page-options.php:66
msgid "Product stock (show if the product is available or not)"
msgstr ""

#: plugin-options/wishlist_page-options.php:75
msgid "Date on which the product was added to the wishlist"
msgstr ""

#: plugin-options/wishlist_page-options.php:84
msgid "Add to cart option for each product"
msgstr ""

#: plugin-options/wishlist_page-options.php:93
msgid ""
"Icon to remove the product from the wishlist - to the left of the product"
msgstr ""

#: plugin-options/wishlist_page-options.php:102
msgid ""
"Button to remove the product from the wishlist - to the right of the product"
msgstr ""

#: plugin-options/wishlist_page-options.php:110
msgid "Redirect to cart"
msgstr "Redirecionar para o carrinho"

#: plugin-options/wishlist_page-options.php:111
msgid ""
"Redirect users to the cart page when they add a product to the cart from the "
"wishlist page"
msgstr ""

#: plugin-options/wishlist_page-options.php:119
msgid "Remove if added to the cart"
msgstr "Remover se adicionado ao carrinho"

#: plugin-options/wishlist_page-options.php:120
msgid ""
"Remove the product from the wishlist after it has been added to the cart"
msgstr ""

#: plugin-options/wishlist_page-options.php:128
msgid "Share wishlist"
msgstr ""

#: plugin-options/wishlist_page-options.php:129
msgid "Enable this option to let users share their wishlist on social media"
msgstr ""

#: plugin-options/wishlist_page-options.php:137
#: plugin-options/wishlist_page-options.php:146
#: plugin-options/wishlist_page-options.php:155
#: plugin-options/wishlist_page-options.php:164
#: plugin-options/wishlist_page-options.php:173
msgid "Share on social media"
msgstr ""

#: plugin-options/wishlist_page-options.php:165
msgid "Share by email"
msgstr ""

#: plugin-options/wishlist_page-options.php:182
msgid "Share by URL"
msgstr ""

#: plugin-options/wishlist_page-options.php:183
msgid "Show \"Share URL\" field on wishlist page"
msgstr ""

#: plugin-options/wishlist_page-options.php:191
msgid "Sharing title"
msgstr ""

#: plugin-options/wishlist_page-options.php:192
msgid "Wishlist title used for sharing (only used on Twitter and Pinterest)"
msgstr ""

#. translators: 1. Blog name.
#: plugin-options/wishlist_page-options.php:195
msgid "My wishlist on %s"
msgstr "Minha lista de desejos em %s"

#: plugin-options/wishlist_page-options.php:200
msgid "Social text"
msgstr "Texto Mídias Sociais"

#: plugin-options/wishlist_page-options.php:201
msgid ""
"Type the message you want to publish when you share your wishlist on Twitter "
"and Pinterest"
msgstr ""

#: plugin-options/wishlist_page-options.php:209
msgid "Social image URL"
msgstr "Url para compartilhamento"

#: plugin-options/wishlist_page-options.php:210
msgid "It will be used to pin the wishlist on Pinterest."
msgstr ""

#: plugin-options/wishlist_page-options.php:229
msgid "Default wishlist name"
msgstr ""

#: plugin-options/wishlist_page-options.php:230
msgid ""
"Enter a name for the default wishlist. This is the wishlist that will be "
"automatically generated for all users if they do not create any custom one"
msgstr ""

#: plugin-options/wishlist_page-options.php:232
#, fuzzy
msgid "My wishlist"
msgstr "Minha lista de desejos em %s"

#: plugin-options/wishlist_page-options.php:237
msgid "\"Add to cart\" text"
msgstr ""

#: plugin-options/wishlist_page-options.php:238
msgid "Enter a text for the \"Add to cart\" button"
msgstr ""

#: plugin-options/wishlist_page-options.php:250
msgid "Style & color customization"
msgstr ""

#: plugin-options/wishlist_page-options.php:257
msgid "Style of \"Add to cart\""
msgstr ""

#: plugin-options/wishlist_page-options.php:258
msgid "Choose whether to show a textual \"Add to cart\" link or a button"
msgstr ""

#: plugin-options/wishlist_page-options.php:271
msgid "\"Add to cart\" button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:277
msgid "Choose the colors for the \"Add to cart\" button"
msgstr ""

#: plugin-options/wishlist_page-options.php:295
msgid "Choose colors for the \"Add to cart\" button on hover state"
msgstr ""

#: plugin-options/wishlist_page-options.php:321
msgid "Set the radius for the \"Add to cart\" button"
msgstr ""

#: plugin-options/wishlist_page-options.php:335
msgid "\"Add to cart\" icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:336
msgid "Select an icon for the \"Add to cart\" button (optional)"
msgstr ""

#: plugin-options/wishlist_page-options.php:351
msgid "\"Add to cart\" custom icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:352
msgid ""
"Upload an icon you'd like to use for the \"Add to cart\" button (suggested "
"32px x 32px)"
msgstr ""

#: plugin-options/wishlist_page-options.php:360
msgid "Primary button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:366
msgid ""
"Choose colors for the primary button<br/><small>This style will be applied "
"to \"Edit title\" button on Wishlist view, \"Submit Changes\" button on "
"Manage view and \"Search wishlist\" button on Search view</small>"
msgstr ""

#: plugin-options/wishlist_page-options.php:384
msgid ""
"Choose colors for the primary button on hover state<br/><small>This style "
"will be applied to \"Edit title\" button on Wishlist view, \"Submit Changes"
"\" button on Manage view and \"Search wishlist\" button on Search view</"
"small>"
msgstr ""

#: plugin-options/wishlist_page-options.php:409
msgid "Secondary button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:415
#: plugin-options/wishlist_page-options.php:433
msgid ""
"Choose colors of the secondary button<br/><small>This style will be applied "
"to the buttons that allow showing and hiding the Edit title form on Wishlist "
"view and \"Create new Wishlist\" button on Manage view</small>"
msgstr ""

#: plugin-options/wishlist_page-options.php:458
msgid "Wishlist table style"
msgstr ""

#: plugin-options/wishlist_page-options.php:459
msgid ""
"Choose the colors for the wishlist table (when set to \"Traditional\" layout)"
msgstr ""

#: plugin-options/wishlist_page-options.php:487
msgid "Highlight color"
msgstr ""

#: plugin-options/wishlist_page-options.php:488
msgid ""
"Choose the color for all sections with background<br/><small>This color will "
"be used as background for the wishlist table heading and footer (when set to "
"\"Traditional\" layout), and for various form across wishlist views</small>"
msgstr ""

#: plugin-options/wishlist_page-options.php:500
msgid "Share button text color"
msgstr ""

#: plugin-options/wishlist_page-options.php:501
msgid "Choose colors for share buttons text"
msgstr ""

#: plugin-options/wishlist_page-options.php:512
msgid "Text hover"
msgstr ""

#: plugin-options/wishlist_page-options.php:525
msgid "Facebook share button icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:526
msgid "Select an icon for the Facebook share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:536
msgid "Facebook share button custom icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:537
msgid ""
"Upload an icon you'd like to use for Facebook share button (suggested 32px x "
"32px)"
msgstr ""

#: plugin-options/wishlist_page-options.php:545
msgid "Facebook share button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:546
msgid "Choose colors for Facebook share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:557
#: plugin-options/wishlist_page-options.php:597
#: plugin-options/wishlist_page-options.php:637
#: plugin-options/wishlist_page-options.php:677
#: plugin-options/wishlist_page-options.php:717
msgid "Background hover"
msgstr ""

#: plugin-options/wishlist_page-options.php:565
msgid "Twitter share button icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:566
msgid "Select an icon for the Twitter share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:576
msgid "Twitter share button custom icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:577
msgid ""
"Upload an icon you'd like to use for Twitter share button (suggested 32px x "
"32px)"
msgstr ""

#: plugin-options/wishlist_page-options.php:585
msgid "Twitter share button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:586
msgid "Choose colors for Twitter share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:605
msgid "Pinterest share button icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:606
msgid "Select an icon for the Pinterest share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:616
msgid "Pinterest share button custom icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:617
msgid ""
"Upload an icon you'd like to use for Pinterest share button (suggested 32px "
"x 32px)"
msgstr ""

#: plugin-options/wishlist_page-options.php:625
msgid "Pinterest share button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:626
msgid "Choose colors for Pinterest share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:645
msgid "Email share button icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:646
msgid "Select an icon for the Email share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:656
msgid "Email share button custom icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:657
msgid ""
"Upload an icon you'd like to use for the Email share button (suggested 32px "
"x 32px)"
msgstr ""

#: plugin-options/wishlist_page-options.php:665
msgid "Email share button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:666
msgid "Choose colors for the Email share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:685
msgid "WhatsApp share button icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:686
msgid "Select an icon for the WhatsApp share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:696
msgid "WhatsApp share button custom icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:697
msgid ""
"Upload an icon you'd like to use for WhatsApp share button (suggested 32px x "
"32px)"
msgstr ""

#: plugin-options/wishlist_page-options.php:705
msgid "WhatsApp share button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:706
msgid "Choose colors for WhatsApp share button"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:168
#: templates/admin/wishlist-panel-premium.php:309
msgid ""
"Upgrade to the %1$spremium version%2$s%3$sof %1$sYITH WooCommerce Wishlist"
"%2$s to benefit from all features!"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:170
#: templates/admin/wishlist-panel-premium.php:311
msgid "Upgrade"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:176
msgid "Premium Features"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:180
msgid "Allow your customers to create multiple wishlists"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:182
msgid ""
"Christmas, Birthday... users will be able to create and manage multiple "
"wishlists, in case they prefer to keep the products sorted by category or "
"other parameters."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:185
msgid "Multiple Wishlist"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:192
msgid "Wishlist Private"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:196
msgid "A transparent privacy management"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:198
msgid ""
"Your customers can set a privacy option for each wishlist and choose whether "
"sharing the wishlist or making it private."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:206
msgid ""
"Allow your customers to ask for an estimate, directly from their wishlist "
"page"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:208
msgid ""
"And give only registered users the privilege to use the wishlist "
"functionalities."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:211
msgid "Estimate Cost"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:218
msgid "Admin Panel"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:222
msgid "An advanced and more versatile management of the wishlist"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:224
msgid ""
"Your customers can sort the products in the wishlist thanks to the drag&drop "
"option, move products from one wishlist to another, manage product quantity, "
"download the wishlist content to a .pdf file, share the wishlist on their "
"social networks, and much more!"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:232
msgid "Monitor your customers’ wishlists and the popular products"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:234
msgid ""
"You can see your customers’ wishlists, gain insight into the products they "
"are more interested in and plan targeted marketing strategies."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:237
msgid "Search Wishlists"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:244
msgid "'ADD TO CART'"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:248
msgid ""
"Send promotional emails for products in wishlists to push customers to buy"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:250
msgid ""
"Just three clicks to send promotional emails with discount coupons to "
"customers who have added specific products to their wishlist and push them "
"to buy."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:258
msgid "Let users buy the product right from the wishlist page"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:260
msgid ""
"Let them move products from one wishlist to the cart in one click, keeping "
"also the information about the size, colour or quantity selected when added "
"to the wishlist."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:263
msgid "DISABLE WISHLIST"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:271
msgid "Choose a charming layout for your wishlist page"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:273
msgid ""
"The wishlist is one of the most used functionalities in an ecommerce store "
"but often the page layout is not enhanced enough and looks unattractive to "
"the user. With our plugin, you can choose among some alternative layouts and "
"offer an even more interesting experience to users who creates a wishlist on "
"your website."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:276
msgid "UNLOGGED USERS"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:284
msgid "Wishlist widgets for the header and sidebars"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:286
msgid ""
"Increase the wishlist visibility through our modern widgets that you can use "
"in the header, in the sidebars, wherever you want."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:289
msgid "POPULAR TABLE"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:296
msgid "FUNCTIONALITIES"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:300
msgid "Allow users to monitor the price of the products in their wishlist"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:302
msgid ""
"We took inspiration from one of the most interesting features of Amazon "
"product pages: from now on, users can realise what’s the best time to buy a "
"product and how much they can save when there’s a promotion running or a "
"discount on the product they’ve added to the wishlist."
msgstr ""

#: templates/share.php:51 templates/share.php:52
msgid "Facebook"
msgstr "Facebook"

#: templates/share.php:59 templates/share.php:60
msgid "Twitter"
msgstr "Twitter"

#: templates/share.php:67 templates/share.php:68
msgid "Pinterest"
msgstr ""

#: templates/share.php:75 templates/share.php:76
msgid "Email"
msgstr ""

#: templates/share.php:83
msgid "WhatsApp"
msgstr ""

#: templates/share.php:84
msgid "Whatsapp"
msgstr ""

#: templates/share.php:93
msgid "(Now"
msgstr ""

#: templates/share.php:93
msgid "copy"
msgstr ""

#: templates/share.php:93
msgid "this wishlist link and share it anywhere)"
msgstr ""

#: templates/wishlist-view-footer-mobile.php:44
#: templates/wishlist-view-footer.php:44
msgid "Apply this action to all the selected items:"
msgstr ""

#: templates/wishlist-view-footer-mobile.php:49
#: templates/wishlist-view-footer.php:49
msgid "Remove from wishlist"
msgstr ""

#. translators: 1. Wishlist formatted name.
#: templates/wishlist-view-footer-mobile.php:67
#: templates/wishlist-view-footer.php:67
msgid "Move to %s"
msgstr ""

#: templates/wishlist-view-footer-mobile.php:73
#: templates/wishlist-view-footer.php:73
msgid "Apply"
msgstr ""

#: templates/wishlist-view-footer-mobile.php:81
#: templates/wishlist-view-footer.php:81
msgid "Update"
msgstr ""

#: templates/wishlist-view-footer-mobile.php:87
#: templates/wishlist-view-footer.php:103
msgid "Add all to cart"
msgstr ""

#: templates/wishlist-view-header.php:48
msgid "Edit title"
msgstr "Titulo da lista de desejos"

#: templates/wishlist-view-mobile.php:136
msgid "Added on:"
msgstr ""

#: templates/wishlist-view-mobile.php:147
msgid "Price:"
msgstr ""

#: templates/wishlist-view-mobile.php:174
msgid "Quantity:"
msgstr ""

#: templates/wishlist-view-mobile.php:189
msgid "Stock:"
msgstr ""

#: templates/wishlist-view-mobile.php:192 templates/wishlist-view.php:229
msgid "Out of stock"
msgstr ""

#: templates/wishlist-view-mobile.php:192 templates/wishlist-view.php:229
msgid "In Stock"
msgstr "Em estoque"

#: templates/wishlist-view-mobile.php:212 templates/wishlist-view.php:262
msgid "Move"
msgstr ""

#: templates/wishlist-view-mobile.php:233 templates/wishlist-view.php:283
msgid "Move to another list &rsaquo;"
msgstr ""

#: templates/wishlist-view-mobile.php:241 templates/wishlist-view.php:157
#: templates/wishlist-view.php:293
msgid "Remove this product"
msgstr "Remover este produto"

#: templates/wishlist-view-mobile.php:252 templates/wishlist-view.php:313
msgid "No products added to the wishlist"
msgstr ""

#: templates/wishlist-view.php:79
msgid "Product name"
msgstr ""

#: templates/wishlist-view.php:87
msgid "Unit price"
msgstr ""

#: templates/wishlist-view.php:96
msgid "Quantity"
msgstr ""

#: templates/wishlist-view.php:105
msgid "Stock status"
msgstr ""

#: templates/wishlist-view.php:123
msgid "Arrange"
msgstr ""

#. translators: date added label: 1 date added.
#: templates/wishlist-view.php:243
msgid "Added on: %s"
msgstr ""

#: templates/wishlist-view.php:293
msgid "Remove"
msgstr ""

#. Description of the plugin/theme
msgid ""
"<code><strong>YITH WooCommerce Wishlist</strong></code> gives your users the "
"possibility to create, fill, manage and share their wishlists allowing you "
"to analyze their interests and needs to improve your marketing strategies. "
"<a href=\"https://yithemes.com/\" target=\"_blank\">Get more plugins for "
"your e-commerce on <strong>YITH</strong></a>"
msgstr ""

#: includes/class-yith-wcwl-admin.php:261
msgctxt "[HELP TAB] Video title"
msgid ""
"Check this video to learn how to <b>configure wishlist and customize options:"
"</b>"
msgstr ""

#: includes/class-yith-wcwl-install.php:340
msgctxt "page_slug"
msgid "wishlist"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:230
msgctxt "date when wishlist was created"
msgid "Created on"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:52
msgctxt "[gutenberg]: block name"
msgid "YITH Add to wishlist"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:101
msgctxt "[gutenberg]: block name"
msgid "YITH Wishlist"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:53
msgctxt "[gutenberg]: block description"
msgid "Shows Add to wishlist button"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:102
msgctxt "[gutenberg]: block description"
msgid "Shows a list of products in wishlist"
msgstr ""

#. translators: 1. % of reduction/increase in price.
#: includes/class-yith-wcwl-wishlist-item.php:428
msgctxt ""
"Part of the template that shows price variation since addition to list; "
"placeholder will be replaced with a percentage"
msgid "Price is %1$s%%"
msgstr ""

#. translators: 2: original product price.
#: includes/class-yith-wcwl-wishlist-item.php:430
msgctxt ""
"Part of the template that shows price variation since addition to list; "
"placeholder will be replaced with a price"
msgid "(Was %2$s when added  in list)"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:45
msgctxt "Elementor widget name"
msgid "YITH Wishlist Add button"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:45
#, fuzzy
msgctxt "Elementor widget name"
msgid "YITH Wishlist"
msgstr "Lista de Desejos"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:87
#, fuzzy
msgctxt "Elementor section title"
msgid "Product"
msgstr "Produto adicionado!"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:107
msgctxt "Elementor section title"
msgid "Labels"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:157
msgctxt "Elementor section title"
msgid "Advanced"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:87
#, fuzzy
msgctxt "Elementor section title"
msgid "Wishlist"
msgstr "Lista de Desejos"

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:107
msgctxt "Elementor section title"
msgid "Pagination"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:95
#, fuzzy
msgctxt "Elementor control label"
msgid "Product ID"
msgstr "Produto adicionado!"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:115
msgctxt "Elementor control label"
msgid "Button label"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:125
#, fuzzy
msgctxt "Elementor control label"
msgid "\"Browse wishlist\" label"
msgstr "Veja sua lista de desejos!"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:135
#, fuzzy
msgctxt "Elementor control label"
msgid "\"Product already in wishlist\" label"
msgstr "Produto já na lista de desejos."

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:145
#, fuzzy
msgctxt "Elementor control label"
msgid "\"Product added to wishlist\" label"
msgstr "Produto já na lista de desejos."

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:165
msgctxt "Elementor control label"
msgid "URL of the wishlist page"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:175
msgctxt "Elementor control label"
msgid "Icon for the button"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:185
msgctxt "Elementor control label"
msgid "Additional CSS classes for the button"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:95
#, fuzzy
msgctxt "Elementor control label"
msgid "Wishlist ID"
msgstr "Lista de Desejos"

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:115
msgctxt "Elementor control label"
msgid "Paginate items"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:128
msgctxt "yith-woocommerce-wishlist"
msgid "Items per page"
msgstr ""

#~ msgid "My wishlist on "
#~ msgstr "Minha lista de desejos em %s"

#~ msgid "YITH WooCommerce Wishlist"
#~ msgstr "Adicionar aos meus desejos"
PK`x1\�tm�ff,languages/yith-woocommerce-wishlist-zh_TW.monu�[�������HI`"u6�����	)0	9CTm6}9�	���%	8	BLY
	
"Browse wishlist" text"Product added" text"Product already in wishlist" textError. Unable to remove the product from the wishlist.Free!In StockProduct added!Product successfully removed.Remove this productShare on:SharedWishlistWishlistsProject-Id-Version: YITH WooCommerce Wishlist
Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/yith-woocommerce-wishlist
POT-Creation-Date: 2021-11-11 13:53:53+00:00
PO-Revision-Date: 2020-10-16 14:07+0200
Last-Translator: 李明軒 <eggeggxuan@gmail.com>
Language-Team: Your Inspiration Themes <plugins@yithemes.com>
Language: zh_TW
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Generator: Poedit 2.4.1
X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;_n:1,2;__ngettext:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2
X-Poedit-Basepath: .
Plural-Forms: nplurals=2; plural=n!=1;
X-Poedit-SourceCharset: UTF-8
X-Poedit-SearchPath-0: ..
X-Poedit-SearchPathExcluded-0: ../plugin-fw
瀏覽「願望清單」加入收藏!商品已經加入收藏在「願望清單」裡面。錯誤。無法從「願望清單」移除這個商品。免費!有貨加入收藏!成功移除商品。移除這個商品分享:分享:願望清單願望清單PK`x1\�R�nW�W�,languages/yith-woocommerce-wishlist-it_IT.ponu�[���# Copyright (C) 2019 YITH WooCommerce Wishlist
# This file is distributed under the same license as the YITH WooCommerce Wishlist package.
msgid ""
msgstr ""
"Project-Id-Version: YITH WooCommerce Wishlist\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/yith-woocommerce-"
"wishlist\n"
"POT-Creation-Date: 2021-11-11 13:53:53+00:00\n"
"PO-Revision-Date: 2020-10-16 14:05+0200\n"
"Last-Translator: Nicola Mustone <mail@nicolamustone.it>\n"
"Language-Team: Your Inspiration Themes <plugins@yithemes.com>\n"
"Language: it_IT\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 2.4.1\n"
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;_n:1,2;__ngettext:1,2;"
"__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;"
"_nx_noop:4c,1,2\n"
"X-Poedit-Basepath: .\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Poedit-SourceCharset: UTF-8\n"
"X-Poedit-SearchPath-0: ..\n"
"X-Poedit-SearchPathExcluded-0: ../plugin-fw\n"

#: includes/class-yith-wcwl-admin.php:126
#, fuzzy
msgid "Wishlist Page"
msgstr "Pagina Lista dei desideri"

#: includes/class-yith-wcwl-admin.php:148
msgid "General settings"
msgstr "Impostazioni generali"

#: includes/class-yith-wcwl-admin.php:149
msgid "Add to wishlist options"
msgstr "Opzioni Aggiungi alla lista"

#: includes/class-yith-wcwl-admin.php:150
msgid "Wishlist page options"
msgstr "Opzioni pagina Lista dei desideri"

#: includes/class-yith-wcwl-admin.php:151
msgid "Premium Version"
msgstr "Versione premium"

#: includes/class-yith-wcwl-admin.php:249
#: includes/class-yith-wcwl-install.php:342
msgid "Wishlist"
msgstr "Wishlist"

#: includes/class-yith-wcwl-admin.php:251
msgid ""
"Allows your customers to create and share lists of products that they want "
"to purchase on your e-commerce."
msgstr ""
"Permette ai tuoi clienti di creare e condividere delle liste di prodotti che "
"desiderano acquistare sul tuo e-commerce."

#: includes/class-yith-wcwl-ajax-handler.php:75
#: templates/add-to-wishlist-remove.php:59
msgid "View &rsaquo;"
msgstr "Vedi &rsaquo;"

#: includes/class-yith-wcwl-ajax-handler.php:76
#: templates/add-to-wishlist-remove.php:58
msgid "or"
msgstr "oppure"

#: includes/class-yith-wcwl-ajax-handler.php:77
msgid "Close"
msgstr ""

#: includes/class-yith-wcwl-ajax-handler.php:155
#: includes/class-yith-wcwl-ajax-handler.php:195
msgid "Product successfully removed."
msgstr "Prodotto rimosso con successo."

#: includes/class-yith-wcwl-form-handler.php:156
msgid "Please, make sure to enter a valid title"
msgstr "Inserisci un valido titolo"

#: includes/class-yith-wcwl-frontend.php:461
msgid ""
"We are sorry, but this feature is available only if cookies on your browser "
"are enabled."
msgstr ""
"Spiacenti, questa funzionalità è disponibile solo se hai abilitato i cookie "
"nel tuo browser."

#: includes/class-yith-wcwl-frontend.php:462
msgid "Product added to cart successfully"
msgstr "Prodotto aggiunto al carrello con successo"

#: includes/class-yith-wcwl-frontend.php:725
#: includes/class-yith-wcwl-shortcode.php:239
#: plugin-options/wishlist_page-options.php:240
#: templates/wishlist-view-footer-mobile.php:46
#: templates/wishlist-view-footer.php:46
msgid "Add to cart"
msgstr "Aggiungi al carrello"

#: includes/class-yith-wcwl-privacy.php:52
msgid "While you visit our site, we’ll track:"
msgstr "Mentre visiti il nostro sito, terremo traccia di:"

#: includes/class-yith-wcwl-privacy.php:54
msgid ""
"Products you’ve added to the wishlist: we’ll use this to show you and other "
"users your favourite products, and to create targeted email campaigns."
msgstr ""
"Prodotti aggiunti alla lista dei desideri: useremo questa informazione per "
"mostrare a te e ad altri utenti i tuoi prodotti preferiti e per creare "
"campagne email mirate."

#: includes/class-yith-wcwl-privacy.php:55
msgid ""
"Wishlists you’ve created: we’ll keep track of the wishlists you create, and "
"make them visible to the store staff"
msgstr ""
"Le liste dei desideri che hai creato: terremo traccia delle liste da te "
"create che saranno visibili allo staff del nostro store"

#: includes/class-yith-wcwl-privacy.php:57
msgid ""
"We’ll also use cookies to keep track of wishlist contents while you’re "
"browsing our site."
msgstr ""
"Useremo anche i cookie per tenere traccia dei contenuti delle liste dei "
"desideri mentre visiti il nostro sito."

#: includes/class-yith-wcwl-privacy.php:60
msgid ""
"Members of our team have access to the information you provide us with. For "
"example, both Administrators and Shop Managers can access:"
msgstr ""
"I membri del nostro team hanno accesso alle informazioni che ci fornisci. "
"Per esempio, sia l'amministratore che i Gestori del Negozio possono accedere "
"a:"

#: includes/class-yith-wcwl-privacy.php:62
msgid ""
"Wishlist details, such as products added, date of addition, name and privacy "
"settings of your wishlists"
msgstr ""
"Dettagli della lista dei desideri, come ad esempio i prodotti aggiunti, la "
"data, il nome e le impostazioni sulla privacy delle tue liste dei desideri"

#: includes/class-yith-wcwl-privacy.php:64
msgid ""
"Our team members have access to this information to offer you better deals "
"for the products you love."
msgstr ""
"Il nostro team ha accesso a queste informazioni per offrirti le migliori "
"offerte per i prodotti che ami."

#: includes/class-yith-wcwl-privacy.php:84
#: includes/class-yith-wcwl-privacy.php:100
msgid "Customer wishlists"
msgstr "Liste dei clienti"

#: includes/class-yith-wcwl-privacy.php:137 plugin-options/lists-options.php:25
#: plugin-options/lists-options.php:32
msgid "Wishlists"
msgstr "Liste dei desideri"

#. Translators: %s Order number.
#: includes/class-yith-wcwl-privacy.php:199
msgid "Removed wishlist %s."
msgstr "Lista dei desideri %s rimossa."

#. Translators: %s Order number.
#: includes/class-yith-wcwl-privacy.php:203
msgid "Wishlist %s has been retained."
msgstr "La lista dei desideri %s è stata salvata."

#: includes/class-yith-wcwl-privacy.php:227
msgid "Token"
msgstr "Token"

#: includes/class-yith-wcwl-privacy.php:228
msgid "Wishlist URL"
msgstr "URL lista dei desideri"

#: includes/class-yith-wcwl-privacy.php:229
msgid "Title"
msgstr "Titolo"

#: includes/class-yith-wcwl-privacy.php:231
msgid "Visibility"
msgstr "Visibilità"

#: includes/class-yith-wcwl-privacy.php:232
msgid "Items added"
msgstr "Articoli aggiunti"

#: includes/class-yith-wcwl-shortcode.php:58
msgid ""
"ID of the product to add to the wishlist (leave empty to use the global "
"product)"
msgstr ""
"L'ID del prodotto da aggiungere alla lista dei desideri (lascia vuoto per "
"utilizzare il prodotto globale)"

#: includes/class-yith-wcwl-shortcode.php:63
msgid "URL of the wishlist page (leave empty to use the default settings)"
msgstr ""
"URL della pagina Lista dei desideri (lascia vuoto per utilizzare le "
"impostazioni predefinite)"

#: includes/class-yith-wcwl-shortcode.php:68
msgid "Button label (leave empty to use the default settings)"
msgstr ""
"Testo pulsante (lascia vuoto per utilizzare le impostazioni predefinite)"

#: includes/class-yith-wcwl-shortcode.php:73
msgid "\"Browse wishlist\" label (leave empty to use the default settings)"
msgstr ""
"Testo 'Sfoglia liste' (lascia vuoto per utilizzare le impostazioni "
"predefinite)"

#: includes/class-yith-wcwl-shortcode.php:78
msgid ""
"\"Product already in wishlist\" label (leave empty to use the default "
"settings)"
msgstr ""
"Testo per 'Prodotto già nella lista' (lascia vuoto per utilizzare le "
"impostazioni predefinite)"

#: includes/class-yith-wcwl-shortcode.php:83
msgid ""
"\"Product added to wishlist\" label (leave empty to use the default settings)"
msgstr ""
"Testo per 'Prodotto aggiunto alla lista' (lascia vuoto per utilizzare le "
"impostazioni predefinite)"

#: includes/class-yith-wcwl-shortcode.php:88
msgid ""
"Icon for the button (use any FontAwesome valid class, or leave empty to use "
"the default settings)"
msgstr ""
"Icona del pulsante (utilizza una qualsiasi classe FontAwesome valida oppure "
"lascia vuoto per utilizzare le impostazioni predefinite)"

#: includes/class-yith-wcwl-shortcode.php:93
msgid ""
"Additional CSS classes for the button (leave empty to use the default "
"settings)"
msgstr ""
"Classi CSS aggiuntive per il pulsante (lascia vuoto per utilizzare le "
"impostazioni predefinite)"

#: includes/class-yith-wcwl-shortcode.php:107
msgid "Choose whether to paginate items in the wishlist or show them all"
msgstr ""
"Scegli se paginare gli elementi nella lista dei desideri o mostrarli tutti"

#: includes/class-yith-wcwl-shortcode.php:110
#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:118
msgid "Paginate"
msgstr "Paginazione"

#: includes/class-yith-wcwl-shortcode.php:111
#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:119
msgid "Do not paginate"
msgstr "Nessuna paginazione"

#: includes/class-yith-wcwl-shortcode.php:116
msgid "Number of items to show per page"
msgstr "Numero di articoli da mostrare per pagina"

#: includes/class-yith-wcwl-shortcode.php:121
msgid "ID of the wishlist to show (e.g. K6EOWXB888ZD)"
msgstr "ID della lista da mostrare (es. K6EOWXB888ZD)"

#: includes/class-yith-wcwl-shortcode.php:414
msgid "Share on:"
msgstr "Condividi su:"

#: includes/class-yith-wcwl-shortcode.php:438
#: plugin-options/wishlist_page-options.php:138
msgid "Share on Facebook"
msgstr "Condividi su Facebook"

#: includes/class-yith-wcwl-shortcode.php:455
#: plugin-options/wishlist_page-options.php:147
msgid "Tweet on Twitter"
msgstr "Condividi su Twitter"

#: includes/class-yith-wcwl-shortcode.php:473
#: plugin-options/wishlist_page-options.php:156
msgid "Pin on Pinterest"
msgstr "Condividi su Pinterest"

#: includes/class-yith-wcwl-shortcode.php:487
msgid "Share via email"
msgstr "Condividi per email"

#: includes/class-yith-wcwl-shortcode.php:510
#: plugin-options/wishlist_page-options.php:174
msgid "Share on WhatsApp"
msgstr "Condividi su WhatsApp"

#: includes/class-yith-wcwl-shortcode.php:621
msgid "Remove from list"
msgstr "Rimuovi dalla lista"

#: includes/class-yith-wcwl-wishlist-item.php:189
msgid "Free!"
msgstr "Gratuito!"

#: includes/class-yith-wcwl.php:164
msgid "The item cannot be added to this wishlist"
msgstr "L'elemento non può essere aggiunto alla lista dei desideri"

#: includes/class-yith-wcwl.php:168 includes/class-yith-wcwl.php:174
msgid "An error occurred while adding the products to the wishlist."
msgstr ""
"Si è verificato un errore mentre si cercava di aggiungere i prodotti alla "
"lista."

#: includes/class-yith-wcwl.php:235 includes/class-yith-wcwl.php:241
msgid "Error. Unable to remove the product from the wishlist."
msgstr "Errore. Impossibile rimuovere il prodotto dalla lista dei desideri."

#: includes/data-stores/class-yith-wcwl-wishlist-data-store.php:152
#: includes/data-stores/class-yith-wcwl-wishlist-data-store.php:174
msgid "Invalid wishlist."
msgstr "Lista non valida."

#: includes/data-stores/class-yith-wcwl-wishlist-item-data-store.php:119
msgid "Invalid wishlist item."
msgstr "Elemento della lista non valido."

#. translators: 1. Number of users.
#: includes/functions-yith-wcwl.php:249
msgid "%d user"
msgid_plural "%d users"
msgstr[0] "%s utente"
msgstr[1] "%d utenti"

#: includes/functions-yith-wcwl.php:250
msgid "has this item in wishlist"
msgid_plural "have this item in wishlist"
msgstr[0] "ha aggiunto questo prodotto alla sua lista"
msgstr[1] "hanno aggiunto questo prodotto alla propria lista"

#: includes/functions-yith-wcwl.php:252
msgid "You're the first"
msgstr "Sei il primo"

#: includes/functions-yith-wcwl.php:253
msgid "to add this item in wishlist"
msgstr "ad aver aggiunto questo prodotto alla lista dei desideri"

#. translators: 1. Count of users when many, or "another" when only one.
#: includes/functions-yith-wcwl.php:257
msgid "You and %s user"
msgid_plural "You and %d users"
msgstr[0] "Tu e un altro utente"
msgstr[1] "Tu e altri %d utenti"

#: includes/functions-yith-wcwl.php:257
msgid "another"
msgstr ""

#: includes/functions-yith-wcwl.php:258
msgid "have this item in wishlist"
msgstr "avete aggiunto questo prodotto alla lista dei desideri"

#: includes/functions-yith-wcwl.php:425
msgid "None"
msgstr ""

#: includes/functions-yith-wcwl.php:426
#, fuzzy
msgid "Custom"
msgstr "CSS personalizzato"

#: includes/functions-yith-wcwl.php:447
msgid "Shared"
msgstr "Condivisa"

#: includes/functions-yith-wcwl.php:451
msgid "Only people with a link to this list can see it"
msgstr "Solo le persone con cui condividi il link della lista possono vederla"

#: includes/functions-yith-wcwl.php:457
msgid "Private"
msgstr "Privata"

#: includes/functions-yith-wcwl.php:461
msgid "Only you can see this list"
msgstr "Solo tu puoi vedere questa lista"

#: includes/functions-yith-wcwl.php:467
msgid "Public"
msgstr "Pubblica"

#: includes/functions-yith-wcwl.php:471
msgid "Anyone can search for and see this list"
msgstr "Tutti possono cercare e vedere questa lista"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:118
#: plugin-options/add_to_wishlist-options.php:127
msgid "Add to wishlist"
msgstr "Aggiungi alla lista dei desideri"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:128
#: plugin-options/add_to_wishlist-options.php:143
msgid "Browse wishlist"
msgstr "Vedi la lista"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:138
#, fuzzy
msgid "Product already in wishlist"
msgstr "Testo per \"Articolo già presente nella lista dei desideri\""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:148
#, fuzzy
msgid "Product added to wishlist"
msgstr "Quando il prodotto viene aggiunto alla lista"

#: init.php:160
msgid "is enabled but not effective. It requires WooCommerce to work."
msgstr ""

#: init.php:176
msgid "You can't activate the free version of"
msgstr ""

#: init.php:176
msgid "while you are using the premium one."
msgstr ""

#: plugin-options/add_to_wishlist-options.php:20
#: plugin-options/settings-options.php:27
msgid "General Settings"
msgstr "Impostazioni generali"

#: plugin-options/add_to_wishlist-options.php:27
#, fuzzy
msgid "After product is added to wishlist"
msgstr "Quando il prodotto viene aggiunto alla lista"

#: plugin-options/add_to_wishlist-options.php:28
msgid ""
"Choose the look of the Wishlist button when the product has already been "
"added to a wishlist"
msgstr ""
"Personalizza lo stile che deve avere il pulsante quando il prodotto è stato "
"già aggiunto alla lista"

#: plugin-options/add_to_wishlist-options.php:32
#, fuzzy
msgid "Show \"Add to wishlist\" button"
msgstr "Mostra il pulsante 'Aggiungi alla lista'"

#: plugin-options/add_to_wishlist-options.php:33
msgid "Show \"View wishlist\" link"
msgstr "Mostra il link 'Vedi la lista'"

#: plugin-options/add_to_wishlist-options.php:34
msgid "Show \"Remove from list\" link"
msgstr "Mostra il link 'Rimuovi dalla lista'"

#: plugin-options/add_to_wishlist-options.php:48
msgid "Loop settings"
msgstr "Impostazioni loop"

#: plugin-options/add_to_wishlist-options.php:50
msgid ""
"Loop options will be visible on Shop page, category pages, product "
"shortcodes, products sliders, and all the other places where the WooCommerce "
"products' loop is used"
msgstr ""
"Le opzioni loop saranno visibili nella pagina Negozio, nelle pagine "
"categoria, negli shortcode che mostrano i prodotti, slider di prodotti e "
"tutti gli altri casi in cui viene utilizzato il loop dei prodotti WooCommerce"

#: plugin-options/add_to_wishlist-options.php:55
msgid "Show \"Add to wishlist\" in loop"
msgstr "Mostra 'Aggiungi alla lista' nel loop"

#: plugin-options/add_to_wishlist-options.php:56
msgid "Enable the \"Add to wishlist\" feature in WooCommerce products' loop"
msgstr ""
"Abilita la funzionalità 'Aggiungi alla lista' nel loop prodotti di "
"WooCommerce"

#: plugin-options/add_to_wishlist-options.php:64
msgid "Position of \"Add to wishlist\" in loop"
msgstr "Posizione di 'Aggiungi alla lista' nel loop"

#: plugin-options/add_to_wishlist-options.php:65
msgid ""
"Choose where to show \"Add to wishlist\" button or link in WooCommerce "
"products' loop. <span class=\"addon\">Copy this shortcode <span class=\"code"
"\"><code>[yith_wcwl_add_to_wishlist]</code></span> and paste it where you "
"want to show the \"Add to wishlist\" link or button</span>"
msgstr ""
"Scegli dove mostrare il pulsante o link 'Aggiungi alla lista' nel loop "
"prodotti di WooCommerce. <span class=\"addon\">Copia questo shortcode <span "
"class=\"code\"><code>[yith_wcwl_add_to_wishlist]</code></span> e incollalo "
"dove vuoi tu per mostrare il link o il pulsante 'Aggiungi alla lista'</span>"

#: plugin-options/add_to_wishlist-options.php:72
msgid "On top of the image"
msgstr "Sopra l'immagine"

#: plugin-options/add_to_wishlist-options.php:73
msgid "Before \"Add to cart\" button"
msgstr "Prima del pulsante 'Aggiungi al carrello'"

#: plugin-options/add_to_wishlist-options.php:74
msgid "After \"Add to cart\" button"
msgstr "Dopo il pulsante 'Aggiungi al carrello'"

#: plugin-options/add_to_wishlist-options.php:75
#: plugin-options/add_to_wishlist-options.php:107
msgid "Use shortcode"
msgstr "Utilizza lo shortcode"

#: plugin-options/add_to_wishlist-options.php:89
msgid "Product page settings"
msgstr "Impostazioni pagina prodotto"

#: plugin-options/add_to_wishlist-options.php:96
msgid "Position of \"Add to wishlist\" on product page"
msgstr "Posizione di 'Aggiungi alla lista' nella pagina prodotto"

#: plugin-options/add_to_wishlist-options.php:97
msgid ""
"Choose where to show \"Add to wishlist\" button or link on the product page. "
"<span class=\"addon\">Copy this shortcode <span class=\"code"
"\"><code>[yith_wcwl_add_to_wishlist]</code></span> and paste it where you "
"want to show the \"Add to wishlist\" link or button</span>"
msgstr ""
"Scegli dove mostrare il pulsante o link 'Aggiungi alla lista' nella pagina "
"prodotto. <span class=\"addon\">Copia questo shortcode <span class=\"code"
"\"><code>[yith_wcwl_add_to_wishlist]</code></span> e incollalo dove vuoi tu "
"per mostrare il link o il pulsante 'Aggiungi alla lista'</span>"

#: plugin-options/add_to_wishlist-options.php:104
msgid "After \"Add to cart\""
msgstr "Dopo \"Aggiungi al carrello\""

#: plugin-options/add_to_wishlist-options.php:105
msgid "After thumbnails"
msgstr "Dopo le miniature"

#: plugin-options/add_to_wishlist-options.php:106
msgid "After summary"
msgstr "Dopo il sommario"

#: plugin-options/add_to_wishlist-options.php:117
#: plugin-options/wishlist_page-options.php:222
msgid "Text customization"
msgstr "Personalizzazione testi"

#: plugin-options/add_to_wishlist-options.php:124
msgid "\"Add to wishlist\" text"
msgstr "Testo 'Aggiungi alla lista'"

#: plugin-options/add_to_wishlist-options.php:125
msgid "Enter a text for \"Add to wishlist\" button"
msgstr "Inserisci un testo per il pulsante 'Aggiungi alla lista'"

#: plugin-options/add_to_wishlist-options.php:132
msgid "\"Product added\" text"
msgstr "Testo per \"Articolo aggiunto\""

#: plugin-options/add_to_wishlist-options.php:133
msgid ""
"Enter the text of the message displayed when the user adds a product to the "
"wishlist"
msgstr ""
"Inserisci il testo del messaggio mostrato quando l'utente aggiunge il "
"prodotto alla lista dei desideri"

#: plugin-options/add_to_wishlist-options.php:135
msgid "Product added!"
msgstr "Articolo aggiunto!"

#: plugin-options/add_to_wishlist-options.php:140
msgid "\"Browse wishlist\" text"
msgstr "Testo per \"Vedi la lista dei desideri\""

#: plugin-options/add_to_wishlist-options.php:141
msgid "Enter a text for the \"Browse wishlist\" link on the product page"
msgstr "Inserisci il testo del link 'Vedi la lista' nella pagina prodotto"

#: plugin-options/add_to_wishlist-options.php:148
msgid "\"Product already in wishlist\" text"
msgstr "Testo per \"Articolo già presente nella lista dei desideri\""

#: plugin-options/add_to_wishlist-options.php:149
msgid ""
"Enter the text for the message displayed when the user views a product that "
"is already in the wishlist"
msgstr ""
"Inserisci il testo del messaggio mostrato quando l'utente visualizza un "
"prodotto che è già stato aggiunto alla lista"

#: plugin-options/add_to_wishlist-options.php:151
msgid "The product is already in your wishlist!"
msgstr "Il prodotto è già nella tua lista!"

#: plugin-options/add_to_wishlist-options.php:161
msgid "Style & Color customization"
msgstr "Personalizzazione stile e colori"

#: plugin-options/add_to_wishlist-options.php:168
msgid "Style of \"Add to wishlist\""
msgstr "Stile di 'Aggiungi alla lista'"

#: plugin-options/add_to_wishlist-options.php:169
msgid ""
"Choose if you want to show a textual \"Add to wishlist\" link or a button"
msgstr ""
"Scegli se mostrare un link testuale 'Aggiungi alla lista' oppure un pulsante"

#: plugin-options/add_to_wishlist-options.php:172
#: plugin-options/wishlist_page-options.php:261
msgid "Textual (anchor)"
msgstr "Testuale (ancora)"

#: plugin-options/add_to_wishlist-options.php:173
#: plugin-options/wishlist_page-options.php:262
msgid "Button with theme style"
msgstr "Pulsante con lo stile del tema"

#: plugin-options/add_to_wishlist-options.php:174
#: plugin-options/wishlist_page-options.php:263
msgid "Button with custom style"
msgstr "Pulsante con uno stile personalizzato"

#: plugin-options/add_to_wishlist-options.php:182
msgid "\"Add to wishlist\" button style"
msgstr "Stile pulsante 'Aggiungi alla lista'"

#: plugin-options/add_to_wishlist-options.php:188
msgid "Choose colors for the \"Add to wishlist\" button"
msgstr "Scegli i colori del pulsante 'Aggiungi alla lista'"

#: plugin-options/add_to_wishlist-options.php:190
#: plugin-options/wishlist_page-options.php:279
#: plugin-options/wishlist_page-options.php:368
#: plugin-options/wishlist_page-options.php:417
#: plugin-options/wishlist_page-options.php:465
#: plugin-options/wishlist_page-options.php:552
#: plugin-options/wishlist_page-options.php:592
#: plugin-options/wishlist_page-options.php:632
#: plugin-options/wishlist_page-options.php:672
#: plugin-options/wishlist_page-options.php:712
msgid "Background"
msgstr "Sfondo"

#: plugin-options/add_to_wishlist-options.php:195
#: plugin-options/wishlist_page-options.php:284
#: plugin-options/wishlist_page-options.php:373
#: plugin-options/wishlist_page-options.php:422
#: plugin-options/wishlist_page-options.php:470
#: plugin-options/wishlist_page-options.php:507
msgid "Text"
msgstr "Testo"

#: plugin-options/add_to_wishlist-options.php:200
#: plugin-options/wishlist_page-options.php:289
#: plugin-options/wishlist_page-options.php:378
#: plugin-options/wishlist_page-options.php:427
#: plugin-options/wishlist_page-options.php:475
msgid "Border"
msgstr "Bordo"

#: plugin-options/add_to_wishlist-options.php:206
msgid "Choose colors for the \"Add to wishlist\" button on hover state"
msgstr ""
"Scegli i colori del pulsante 'Aggiungi alla lista' al passaggio del mouse "
"(hover)"

#: plugin-options/add_to_wishlist-options.php:208
#: plugin-options/wishlist_page-options.php:297
#: plugin-options/wishlist_page-options.php:386
#: plugin-options/wishlist_page-options.php:435
msgid "Background Hover"
msgstr "Colore - hover"

#: plugin-options/add_to_wishlist-options.php:213
#: plugin-options/wishlist_page-options.php:302
#: plugin-options/wishlist_page-options.php:391
#: plugin-options/wishlist_page-options.php:440
msgid "Text Hover"
msgstr "Testo - hover"

#: plugin-options/add_to_wishlist-options.php:218
#: plugin-options/wishlist_page-options.php:307
#: plugin-options/wishlist_page-options.php:396
#: plugin-options/wishlist_page-options.php:445
msgid "Border Hover"
msgstr "Bordo - hover"

#: plugin-options/add_to_wishlist-options.php:231
#: plugin-options/wishlist_page-options.php:320
msgid "Border radius"
msgstr "Border radius"

#: plugin-options/add_to_wishlist-options.php:232
msgid "Choose radius for the \"Add to wishlist\" button"
msgstr ""
"Imposta il raggio del bordo arrotondato del pulsante 'Aggiungi alla lista'"

#: plugin-options/add_to_wishlist-options.php:246
msgid "\"Add to wishlist\" icon"
msgstr "Icona 'Aggiungi alla lista'"

#: plugin-options/add_to_wishlist-options.php:247
msgid "Select an icon for the \"Add to wishlist\" button (optional)"
msgstr "Seleziona un'icona per il pulsante 'Aggiungi alla lista' (opzionale)"

#: plugin-options/add_to_wishlist-options.php:257
msgid "\"Add to wishlist\" custom icon"
msgstr "Icona personalizzata per 'Aggiungi alla lista'"

#: plugin-options/add_to_wishlist-options.php:258
#: plugin-options/add_to_wishlist-options.php:282
msgid ""
"Upload an icon you'd like to use for \"Add to wishlist\" button (suggested "
"32px x 32px)"
msgstr ""
"Carica un'icona da utilizzare per il pulsante 'Aggiungi alla "
"lista' (dimensione consigliata 32 x 32 px)"

#: plugin-options/add_to_wishlist-options.php:270
msgid "\"Added to wishlist\" icon"
msgstr "Icona 'Aggiungi alla lista'"

#: plugin-options/add_to_wishlist-options.php:271
msgid "Select an icon for the \"Added to wishlist\" button (optional)"
msgstr ""
"Selezionare un'icona per il pulsante \"Aggiungi alla lista\" (opzionale)"

#: plugin-options/add_to_wishlist-options.php:277
msgid "Same used for Add to wishlist"
msgstr "La stessa utilizzata per Aggiungi alla lista"

#: plugin-options/add_to_wishlist-options.php:281
msgid "\"Added to wishlist\" custom icon"
msgstr "Icona personalizzata per 'Aggiungi alla lista'"

#: plugin-options/add_to_wishlist-options.php:294
msgid "Custom CSS"
msgstr "CSS personalizzato"

#: plugin-options/add_to_wishlist-options.php:295
msgid "Enter custom CSS to be applied to Wishlist elements (optional)"
msgstr ""
"Inserisci il tuo codice CSS da applicare agli elementi della lista "
"(opzionale)"

#: plugin-options/lists-options.php:34
#, fuzzy
msgid "Search list"
msgstr "Condividi la lista"

#. translators: 1. Anchor to Frequently Bought Together landing page on
#. yithemes.com.
#: plugin-options/settings-options.php:19
msgid ""
"If you want to take advantage of this feature, you could consider purchasing "
"the %s."
msgstr "Se vuoi usufruire di questa funzionalità, acquista la %s."

#: plugin-options/settings-options.php:34
msgid "Enable AJAX loading"
msgstr "Abilita caricamento in AJAX"

#: plugin-options/settings-options.php:35
msgid "Load any cacheable wishlist item via AJAX"
msgstr ""
"Carica in AJAX qualsiasi elemento di YITH Wishlist che possa essere messo in "
"cache"

#: plugin-options/settings-options.php:48
msgid "YITH WooCommerce Frequently Bought Together Integration"
msgstr "Integrazione con YITH WooCommerce Frequently Bought Together"

#. translators: 1. Url to Frequently Bought Together landing page on
#. yithemes.com.
#: plugin-options/settings-options.php:51
msgid ""
"In order to use this integration you have to install and activate YITH "
"WooCommerce Frequently Bought Together. <a href=\"%s\">Learn more</a>"
msgstr ""
"Per utilizzare quest'integrazione devi aver installato e attivato YITH "
"WooCommerce Frequently Bought Together. <a href=\"%s\">Maggiori dettagli "
"qui</a>"

#: plugin-options/settings-options.php:56
msgid "Enable slider in wishlist"
msgstr "Abilita lo slider nella lista dei desideri"

#. translators: 1. Example image of the integration. 2. CTA to buy Frequently
#. Bought Together.
#: plugin-options/settings-options.php:58
#, fuzzy
msgid ""
"Enable the slider with linked products on the Wishlist page (<a href=\"%1$s"
"\" class=\"thickbox\">Example</a>). %2$s"
msgstr ""
"Abilita lo slider con i prodotti correlati nella pagina Lista dei desideri "
"(<a href=\"%s\" class=\"thickbox\">Esempio</a>). %s"

#: plugin-options/wishlist_page-options.php:19
msgid "All your wishlists"
msgstr "Tutte le tue liste"

#: plugin-options/wishlist_page-options.php:26
msgid "Wishlist page"
msgstr "Pagina Lista dei desideri"

#: plugin-options/wishlist_page-options.php:27
msgid ""
"Pick a page as the main Wishlist page; make sure you add the <span class="
"\"code\"><code>[yith_wcwl_wishlist]</code></span> shortcode into the page "
"content"
msgstr ""
"Scegli una pagina da utilizzare per le Liste dei desideri; assicurati di "
"aver aggiunto lo shortcode <span class=\"code\"><code>[yith_wcwl_wishlist]</"
"code></span> nel contenuto della pagina"

#: plugin-options/wishlist_page-options.php:40
msgid "Wishlist Detail Page"
msgstr "Pagina dettaglio Lista dei desideri"

#: plugin-options/wishlist_page-options.php:47
#: plugin-options/wishlist_page-options.php:56
#: plugin-options/wishlist_page-options.php:65
#: plugin-options/wishlist_page-options.php:74
#: plugin-options/wishlist_page-options.php:83
#: plugin-options/wishlist_page-options.php:92
#: plugin-options/wishlist_page-options.php:101
msgid "In wishlist table show"
msgstr "Nella tabella mostra"

#: plugin-options/wishlist_page-options.php:48
msgid "Product variations selected by the user (example: size or color)"
msgstr ""
"Le variazioni di prodotto selezionate dall'utente (es. taglia o colore)"

#: plugin-options/wishlist_page-options.php:57
msgid "Product price"
msgstr "Prezzo del prodotto"

#: plugin-options/wishlist_page-options.php:66
msgid "Product stock (show if the product is available or not)"
msgstr "Disponibilità prodotto (mostra se il prodotto è disponibile o meno)"

#: plugin-options/wishlist_page-options.php:75
msgid "Date on which the product was added to the wishlist"
msgstr "Data in cui il prodotto è stato aggiunto alla lista dei desideri"

#: plugin-options/wishlist_page-options.php:84
msgid "Add to cart option for each product"
msgstr "Opzione 'Aggiungi al carrello' per ogni prodotto"

#: plugin-options/wishlist_page-options.php:93
msgid ""
"Icon to remove the product from the wishlist - to the left of the product"
msgstr ""
"Icona per rimuovere il prodotto dalla lista dei desideri - a sinistra del "
"prodotto"

#: plugin-options/wishlist_page-options.php:102
msgid ""
"Button to remove the product from the wishlist - to the right of the product"
msgstr ""
"Pulsante per rimuovere il prodotto dalla Lista dei desideri - a destra del "
"prodotto"

#: plugin-options/wishlist_page-options.php:110
msgid "Redirect to cart"
msgstr "Reindirizza al carrello"

#: plugin-options/wishlist_page-options.php:111
msgid ""
"Redirect users to the cart page when they add a product to the cart from the "
"wishlist page"
msgstr ""
"Reindirizza gli utenti alla pagina Carrello quando aggiungono un prodotto "
"della lista dei desideri al carrello"

#: plugin-options/wishlist_page-options.php:119
msgid "Remove if added to the cart"
msgstr "Rimuovi se aggiunto al carrello"

#: plugin-options/wishlist_page-options.php:120
msgid ""
"Remove the product from the wishlist after it has been added to the cart"
msgstr "Rimuovi il prodotto dalla lista dopo che è stato aggiunto al carrello"

#: plugin-options/wishlist_page-options.php:128
msgid "Share wishlist"
msgstr "Condividi la lista"

#: plugin-options/wishlist_page-options.php:129
msgid "Enable this option to let users share their wishlist on social media"
msgstr ""
"Abilita quest'opzione per permettere agli utenti di condividere la lista dei "
"desideri sui social"

#: plugin-options/wishlist_page-options.php:137
#: plugin-options/wishlist_page-options.php:146
#: plugin-options/wishlist_page-options.php:155
#: plugin-options/wishlist_page-options.php:164
#: plugin-options/wishlist_page-options.php:173
msgid "Share on social media"
msgstr "Condividi sui social"

#: plugin-options/wishlist_page-options.php:165
msgid "Share by email"
msgstr "Condividi per email"

#: plugin-options/wishlist_page-options.php:182
msgid "Share by URL"
msgstr "Condividi l'URL"

#: plugin-options/wishlist_page-options.php:183
msgid "Show \"Share URL\" field on wishlist page"
msgstr "Mostra il campo 'Condividi l'URL' nella pagina Lista dei desideri"

#: plugin-options/wishlist_page-options.php:191
msgid "Sharing title"
msgstr "Titolo per la condivisione"

#: plugin-options/wishlist_page-options.php:192
msgid "Wishlist title used for sharing (only used on Twitter and Pinterest)"
msgstr ""
"Titolo della lista utilizzato specificatamente per la condivisione (solo su "
"Twitter e Pinterest)"

#. translators: 1. Blog name.
#: plugin-options/wishlist_page-options.php:195
msgid "My wishlist on %s"
msgstr "La mia lista dei desideri su %s"

#: plugin-options/wishlist_page-options.php:200
msgid "Social text"
msgstr "Testo per i social"

#: plugin-options/wishlist_page-options.php:201
msgid ""
"Type the message you want to publish when you share your wishlist on Twitter "
"and Pinterest"
msgstr ""
"Inserisci qui il messaggio da pubblicare quando condividi la tua lista su "
"Twitter e Pinterest"

#: plugin-options/wishlist_page-options.php:209
msgid "Social image URL"
msgstr "URL per immagine social"

#: plugin-options/wishlist_page-options.php:210
msgid "It will be used to pin the wishlist on Pinterest."
msgstr "Sarà utilizzato per salvare la lista su Pinterest."

#: plugin-options/wishlist_page-options.php:229
msgid "Default wishlist name"
msgstr "Nome predefinito della lista"

#: plugin-options/wishlist_page-options.php:230
msgid ""
"Enter a name for the default wishlist. This is the wishlist that will be "
"automatically generated for all users if they do not create any custom one"
msgstr ""
"Inserisci un nome predefinito per la lista. Questa è la lista che viene "
"generata in automatico per ogni utente quando non ne viene creata una "
"personalizzata"

#: plugin-options/wishlist_page-options.php:232
#, fuzzy
msgid "My wishlist"
msgstr "La mia lista dei desideri su %s "

#: plugin-options/wishlist_page-options.php:237
msgid "\"Add to cart\" text"
msgstr "Testo 'Aggiungi al carrello'"

#: plugin-options/wishlist_page-options.php:238
msgid "Enter a text for the \"Add to cart\" button"
msgstr "Personalizza il testo del pulsante 'Aggiungi al carrello'"

#: plugin-options/wishlist_page-options.php:250
msgid "Style & color customization"
msgstr "Personalizzazione stile e colori"

#: plugin-options/wishlist_page-options.php:257
msgid "Style of \"Add to cart\""
msgstr "Stile di 'Aggiungi al carrello'"

#: plugin-options/wishlist_page-options.php:258
msgid "Choose whether to show a textual \"Add to cart\" link or a button"
msgstr ""
"Scegli se mostrare un link testuale 'Aggiungi al carrello' oppure un pulsante"

#: plugin-options/wishlist_page-options.php:271
msgid "\"Add to cart\" button style"
msgstr "Stile pulsante 'Aggiungi al carrello'"

#: plugin-options/wishlist_page-options.php:277
msgid "Choose the colors for the \"Add to cart\" button"
msgstr "Scegli i colori del pulsante 'Aggiungi al carrello'"

#: plugin-options/wishlist_page-options.php:295
msgid "Choose colors for the \"Add to cart\" button on hover state"
msgstr ""
"Scegli i colori del pulsante 'Aggiungi al carrello' al passaggio del mouse "
"(hover)"

#: plugin-options/wishlist_page-options.php:321
msgid "Set the radius for the \"Add to cart\" button"
msgstr ""
"Imposta il raggio del bordo arrotondato del pulsante 'Aggiungi al carrello'"

#: plugin-options/wishlist_page-options.php:335
msgid "\"Add to cart\" icon"
msgstr "Icona 'Aggiungi al carrello'"

#: plugin-options/wishlist_page-options.php:336
msgid "Select an icon for the \"Add to cart\" button (optional)"
msgstr "Seleziona un'icona per il pulsante 'Aggiungi al carrello' (opzionale)"

#: plugin-options/wishlist_page-options.php:351
msgid "\"Add to cart\" custom icon"
msgstr "Icona personalizzata per 'Aggiungi al carrello'"

#: plugin-options/wishlist_page-options.php:352
msgid ""
"Upload an icon you'd like to use for the \"Add to cart\" button (suggested "
"32px x 32px)"
msgstr ""
"Carica un'icona da utilizzare per il pulsante 'Aggiungi al "
"carrello' (dimensione consigliata 32 x 32 px)"

#: plugin-options/wishlist_page-options.php:360
msgid "Primary button style"
msgstr "Stile pulsante principale"

#: plugin-options/wishlist_page-options.php:366
msgid ""
"Choose colors for the primary button<br/><small>This style will be applied "
"to \"Edit title\" button on Wishlist view, \"Submit Changes\" button on "
"Manage view and \"Search wishlist\" button on Search view</small>"
msgstr ""
"Scegli i colori del pulsante principale<br/><small>Questo stile si "
"applicherà al pulsante 'Modifica titolo' in modalità Lista dei desideri, al "
"pulsante 'Applica modifiche' in modalità Gestisci liste e al pulsante 'Cerca "
"lista' in modalità Cerca.</small>"

#: plugin-options/wishlist_page-options.php:384
msgid ""
"Choose colors for the primary button on hover state<br/><small>This style "
"will be applied to \"Edit title\" button on Wishlist view, \"Submit Changes"
"\" button on Manage view and \"Search wishlist\" button on Search view</"
"small>"
msgstr ""
"Scegli i colori del pulsante principale al passaggio del mouse (hover)<br/"
"><small>Questo stile si applicherà al pulsante 'Modifica titolo' in modalità "
"Lista dei desideri, al pulsante 'Applica modifiche' in modalità Gestisci "
"liste e al pulsante 'Cerca lista' in modalità Cerca.</small>"

#: plugin-options/wishlist_page-options.php:409
msgid "Secondary button style"
msgstr "Stile pulsante secondario"

#: plugin-options/wishlist_page-options.php:415
#: plugin-options/wishlist_page-options.php:433
msgid ""
"Choose colors of the secondary button<br/><small>This style will be applied "
"to the buttons that allow showing and hiding the Edit title form on Wishlist "
"view and \"Create new Wishlist\" button on Manage view</small>"
msgstr ""

#: plugin-options/wishlist_page-options.php:458
msgid "Wishlist table style"
msgstr "Stile tabella Lista dei desideri"

#: plugin-options/wishlist_page-options.php:459
msgid ""
"Choose the colors for the wishlist table (when set to \"Traditional\" layout)"
msgstr ""
"Scegli i colori della tabella Lista dei desideri (quando impostata sul "
"layout 'Tradizionale')"

#: plugin-options/wishlist_page-options.php:487
msgid "Highlight color"
msgstr "Colore in evidenza"

#: plugin-options/wishlist_page-options.php:488
msgid ""
"Choose the color for all sections with background<br/><small>This color will "
"be used as background for the wishlist table heading and footer (when set to "
"\"Traditional\" layout), and for various form across wishlist views</small>"
msgstr ""
"Scegli il colore per tutte le sezioni con un colore di sfondo<br/"
"><small>Questo colore sarà applicato allo sfondo dell'intestazione della "
"tabella Lista dei desideri e al footer (quando impostata su layout "
"'Tradizionale') e per i vari moduli nelle modalità di visualizzazione delle "
"liste</small>"

#: plugin-options/wishlist_page-options.php:500
msgid "Share button text color"
msgstr "Colore testo pulsante condivisione"

#: plugin-options/wishlist_page-options.php:501
msgid "Choose colors for share buttons text"
msgstr "Scegli i colori del testo per i pulsanti di condivisione"

#: plugin-options/wishlist_page-options.php:512
msgid "Text hover"
msgstr "Testo - hover"

#: plugin-options/wishlist_page-options.php:525
msgid "Facebook share button icon"
msgstr "Icona pulsante Condividi su Facebook"

#: plugin-options/wishlist_page-options.php:526
msgid "Select an icon for the Facebook share button"
msgstr "Seleziona un'icona per il pulsante di condivisione su Facebook"

#: plugin-options/wishlist_page-options.php:536
msgid "Facebook share button custom icon"
msgstr "Icona personalizzata pulsante Condividi su Facebook"

#: plugin-options/wishlist_page-options.php:537
msgid ""
"Upload an icon you'd like to use for Facebook share button (suggested 32px x "
"32px)"
msgstr ""
"Carica un'icona da utilizzare per il pulsante di condivisione su Facebook "
"(dimensione consigliata 32 x 32 px)"

#: plugin-options/wishlist_page-options.php:545
msgid "Facebook share button style"
msgstr "Stile pulsante Condividi su Facebook"

#: plugin-options/wishlist_page-options.php:546
msgid "Choose colors for Facebook share button"
msgstr "Scegli i colori per il pulsante di condivisione su Facebook"

#: plugin-options/wishlist_page-options.php:557
#: plugin-options/wishlist_page-options.php:597
#: plugin-options/wishlist_page-options.php:637
#: plugin-options/wishlist_page-options.php:677
#: plugin-options/wishlist_page-options.php:717
msgid "Background hover"
msgstr "Colore - hover"

#: plugin-options/wishlist_page-options.php:565
msgid "Twitter share button icon"
msgstr "Icona pulsante Condividi su Twitter"

#: plugin-options/wishlist_page-options.php:566
msgid "Select an icon for the Twitter share button"
msgstr "Seleziona un'icona per il pulsante di condivisione su Twitter"

#: plugin-options/wishlist_page-options.php:576
msgid "Twitter share button custom icon"
msgstr "Icona personalizzata pulsante Condividi su Twitter"

#: plugin-options/wishlist_page-options.php:577
msgid ""
"Upload an icon you'd like to use for Twitter share button (suggested 32px x "
"32px)"
msgstr ""
"Carica un'icona da utilizzare per il pulsante di condivisione su Twitter "
"(dimensione consigliata 32 x 32 px)"

#: plugin-options/wishlist_page-options.php:585
msgid "Twitter share button style"
msgstr "Stile pulsante Condividi su Twitter"

#: plugin-options/wishlist_page-options.php:586
msgid "Choose colors for Twitter share button"
msgstr "Scegli i colori del testo per i pulsanti di condivisione su Twitter"

#: plugin-options/wishlist_page-options.php:605
msgid "Pinterest share button icon"
msgstr "Icona pulsante Condividi su Pinterest"

#: plugin-options/wishlist_page-options.php:606
msgid "Select an icon for the Pinterest share button"
msgstr "Seleziona un'icona per il pulsante di condivisione su Pinterest"

#: plugin-options/wishlist_page-options.php:616
msgid "Pinterest share button custom icon"
msgstr "Icona personalizzata pulsante Condividi su Pinterest"

#: plugin-options/wishlist_page-options.php:617
msgid ""
"Upload an icon you'd like to use for Pinterest share button (suggested 32px "
"x 32px)"
msgstr ""
"Carica un'icona da utilizzare per il pulsante di condivisione su Pinterest "
"(dimensione consigliata 32 x 32 px)"

#: plugin-options/wishlist_page-options.php:625
msgid "Pinterest share button style"
msgstr "Stile pulsante Condividi su Pinterest"

#: plugin-options/wishlist_page-options.php:626
msgid "Choose colors for Pinterest share button"
msgstr "Scegli i colori del testo per i pulsanti di condivisione su Pinterest"

#: plugin-options/wishlist_page-options.php:645
msgid "Email share button icon"
msgstr "Icona pulsante Condividi per email"

#: plugin-options/wishlist_page-options.php:646
msgid "Select an icon for the Email share button"
msgstr "Seleziona un'icona per il pulsante di condivisione per email"

#: plugin-options/wishlist_page-options.php:656
msgid "Email share button custom icon"
msgstr "Icona personalizzata pulsante Condividi per email"

#: plugin-options/wishlist_page-options.php:657
msgid ""
"Upload an icon you'd like to use for the Email share button (suggested 32px "
"x 32px)"
msgstr ""
"Carica un'icona da utilizzare per il pulsante di condivisione email "
"(dimensione consigliata 32 x 32 px)"

#: plugin-options/wishlist_page-options.php:665
msgid "Email share button style"
msgstr "Stile pulsante Condividi per email"

#: plugin-options/wishlist_page-options.php:666
msgid "Choose colors for the Email share button"
msgstr "Scegli i colori del testo per i pulsanti di condivisione email"

#: plugin-options/wishlist_page-options.php:685
msgid "WhatsApp share button icon"
msgstr "Icona pulsante Condividi su WhatsApp"

#: plugin-options/wishlist_page-options.php:686
msgid "Select an icon for the WhatsApp share button"
msgstr "Seleziona un'icona per il pulsante di condivisione su WhatsApp"

#: plugin-options/wishlist_page-options.php:696
msgid "WhatsApp share button custom icon"
msgstr "Icona personalizzata pulsante Condividi su WhatsApp"

#: plugin-options/wishlist_page-options.php:697
msgid ""
"Upload an icon you'd like to use for WhatsApp share button (suggested 32px x "
"32px)"
msgstr ""
"Carica un'icona da utilizzare per il pulsante di condivisione su WhatsApp "
"(dimensione consigliata 32 x 32 px)"

#: plugin-options/wishlist_page-options.php:705
msgid "WhatsApp share button style"
msgstr "Stile pulsante Condividi su WhatsApp"

#: plugin-options/wishlist_page-options.php:706
msgid "Choose colors for WhatsApp share button"
msgstr "Scegli i colori del testo per i pulsanti di condivisione su WhatsApp"

#: templates/admin/wishlist-panel-premium.php:168
#: templates/admin/wishlist-panel-premium.php:309
msgid ""
"Upgrade to the %1$spremium version%2$s%3$sof %1$sYITH WooCommerce Wishlist"
"%2$s to benefit from all features!"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:170
#: templates/admin/wishlist-panel-premium.php:311
msgid "Upgrade"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:176
msgid "Premium Features"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:180
msgid "Allow your customers to create multiple wishlists"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:182
msgid ""
"Christmas, Birthday... users will be able to create and manage multiple "
"wishlists, in case they prefer to keep the products sorted by category or "
"other parameters."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:185
msgid "Multiple Wishlist"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:192
msgid "Wishlist Private"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:196
msgid "A transparent privacy management"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:198
msgid ""
"Your customers can set a privacy option for each wishlist and choose whether "
"sharing the wishlist or making it private."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:206
msgid ""
"Allow your customers to ask for an estimate, directly from their wishlist "
"page"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:208
msgid ""
"And give only registered users the privilege to use the wishlist "
"functionalities."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:211
msgid "Estimate Cost"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:218
msgid "Admin Panel"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:222
msgid "An advanced and more versatile management of the wishlist"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:224
msgid ""
"Your customers can sort the products in the wishlist thanks to the drag&drop "
"option, move products from one wishlist to another, manage product quantity, "
"download the wishlist content to a .pdf file, share the wishlist on their "
"social networks, and much more!"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:232
msgid "Monitor your customers’ wishlists and the popular products"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:234
msgid ""
"You can see your customers’ wishlists, gain insight into the products they "
"are more interested in and plan targeted marketing strategies."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:237
msgid "Search Wishlists"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:244
msgid "'ADD TO CART'"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:248
msgid ""
"Send promotional emails for products in wishlists to push customers to buy"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:250
msgid ""
"Just three clicks to send promotional emails with discount coupons to "
"customers who have added specific products to their wishlist and push them "
"to buy."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:258
msgid "Let users buy the product right from the wishlist page"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:260
msgid ""
"Let them move products from one wishlist to the cart in one click, keeping "
"also the information about the size, colour or quantity selected when added "
"to the wishlist."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:263
msgid "DISABLE WISHLIST"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:271
msgid "Choose a charming layout for your wishlist page"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:273
msgid ""
"The wishlist is one of the most used functionalities in an ecommerce store "
"but often the page layout is not enhanced enough and looks unattractive to "
"the user. With our plugin, you can choose among some alternative layouts and "
"offer an even more interesting experience to users who creates a wishlist on "
"your website."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:276
msgid "UNLOGGED USERS"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:284
msgid "Wishlist widgets for the header and sidebars"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:286
msgid ""
"Increase the wishlist visibility through our modern widgets that you can use "
"in the header, in the sidebars, wherever you want."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:289
msgid "POPULAR TABLE"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:296
msgid "FUNCTIONALITIES"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:300
msgid "Allow users to monitor the price of the products in their wishlist"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:302
msgid ""
"We took inspiration from one of the most interesting features of Amazon "
"product pages: from now on, users can realise what’s the best time to buy a "
"product and how much they can save when there’s a promotion running or a "
"discount on the product they’ve added to the wishlist."
msgstr ""

#: templates/share.php:51 templates/share.php:52
msgid "Facebook"
msgstr "Facebook"

#: templates/share.php:59 templates/share.php:60
msgid "Twitter"
msgstr "Twitter"

#: templates/share.php:67 templates/share.php:68
msgid "Pinterest"
msgstr "Pinterest"

#: templates/share.php:75 templates/share.php:76
msgid "Email"
msgstr "Email"

#: templates/share.php:83
msgid "WhatsApp"
msgstr "WhatsApp"

#: templates/share.php:84
msgid "Whatsapp"
msgstr "Whatsapp"

#: templates/share.php:93
msgid "(Now"
msgstr "(Ora"

#: templates/share.php:93
msgid "copy"
msgstr "copia"

#: templates/share.php:93
msgid "this wishlist link and share it anywhere)"
msgstr "questo URL e condividilo dove vuoi)"

#: templates/wishlist-view-footer-mobile.php:44
#: templates/wishlist-view-footer.php:44
msgid "Apply this action to all the selected items:"
msgstr "Applica a tutti gli articoli selezionati:"

#: templates/wishlist-view-footer-mobile.php:49
#: templates/wishlist-view-footer.php:49
msgid "Remove from wishlist"
msgstr "Rimuovi dalla lista"

#. translators: 1. Wishlist formatted name.
#: templates/wishlist-view-footer-mobile.php:67
#: templates/wishlist-view-footer.php:67
msgid "Move to %s"
msgstr ""

#: templates/wishlist-view-footer-mobile.php:73
#: templates/wishlist-view-footer.php:73
msgid "Apply"
msgstr "Applica"

#: templates/wishlist-view-footer-mobile.php:81
#: templates/wishlist-view-footer.php:81
msgid "Update"
msgstr "Aggiorna"

#: templates/wishlist-view-footer-mobile.php:87
#: templates/wishlist-view-footer.php:103
msgid "Add all to cart"
msgstr "Aggiungi tutti al carrello"

#: templates/wishlist-view-header.php:48
msgid "Edit title"
msgstr "Modifica titolo"

#: templates/wishlist-view-mobile.php:136
msgid "Added on:"
msgstr "Aggiunto il:"

#: templates/wishlist-view-mobile.php:147
msgid "Price:"
msgstr "Prezzo:"

#: templates/wishlist-view-mobile.php:174
msgid "Quantity:"
msgstr "Quantità:"

#: templates/wishlist-view-mobile.php:189
msgid "Stock:"
msgstr "Disponibilità in magazzino:"

#: templates/wishlist-view-mobile.php:192 templates/wishlist-view.php:229
msgid "Out of stock"
msgstr "Esaurito"

#: templates/wishlist-view-mobile.php:192 templates/wishlist-view.php:229
msgid "In Stock"
msgstr "Disponibile"

#: templates/wishlist-view-mobile.php:212 templates/wishlist-view.php:262
msgid "Move"
msgstr "Sposta"

#: templates/wishlist-view-mobile.php:233 templates/wishlist-view.php:283
msgid "Move to another list &rsaquo;"
msgstr "Sposta in un'altra lista &rsaquo;"

#: templates/wishlist-view-mobile.php:241 templates/wishlist-view.php:157
#: templates/wishlist-view.php:293
msgid "Remove this product"
msgstr "Rimuovi questo prodotto"

#: templates/wishlist-view-mobile.php:252 templates/wishlist-view.php:313
msgid "No products added to the wishlist"
msgstr "Non è stato ancora aggiunto nessun prodotto alla lista"

#: templates/wishlist-view.php:79
msgid "Product name"
msgstr "Nome prodotto"

#: templates/wishlist-view.php:87
msgid "Unit price"
msgstr "Prezzo unitario"

#: templates/wishlist-view.php:96
msgid "Quantity"
msgstr "Quantità"

#: templates/wishlist-view.php:105
msgid "Stock status"
msgstr "Disponibilità in magazzino"

#: templates/wishlist-view.php:123
msgid "Arrange"
msgstr "Riordina"

#. translators: date added label: 1 date added.
#: templates/wishlist-view.php:243
msgid "Added on: %s"
msgstr "Aggiunto il: %s"

#: templates/wishlist-view.php:293
msgid "Remove"
msgstr "Rimuovi"

#. Description of the plugin/theme
msgid ""
"<code><strong>YITH WooCommerce Wishlist</strong></code> gives your users the "
"possibility to create, fill, manage and share their wishlists allowing you "
"to analyze their interests and needs to improve your marketing strategies. "
"<a href=\"https://yithemes.com/\" target=\"_blank\">Get more plugins for "
"your e-commerce on <strong>YITH</strong></a>"
msgstr ""

#: includes/class-yith-wcwl-admin.php:261
msgctxt "[HELP TAB] Video title"
msgid ""
"Check this video to learn how to <b>configure wishlist and customize options:"
"</b>"
msgstr ""

#: includes/class-yith-wcwl-install.php:340
msgctxt "page_slug"
msgid "wishlist"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:230
msgctxt "date when wishlist was created"
msgid "Created on"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:52
msgctxt "[gutenberg]: block name"
msgid "YITH Add to wishlist"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:101
msgctxt "[gutenberg]: block name"
msgid "YITH Wishlist"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:53
msgctxt "[gutenberg]: block description"
msgid "Shows Add to wishlist button"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:102
msgctxt "[gutenberg]: block description"
msgid "Shows a list of products in wishlist"
msgstr ""

#. translators: 1. % of reduction/increase in price.
#: includes/class-yith-wcwl-wishlist-item.php:428
msgctxt ""
"Part of the template that shows price variation since addition to list; "
"placeholder will be replaced with a percentage"
msgid "Price is %1$s%%"
msgstr ""

#. translators: 2: original product price.
#: includes/class-yith-wcwl-wishlist-item.php:430
msgctxt ""
"Part of the template that shows price variation since addition to list; "
"placeholder will be replaced with a price"
msgid "(Was %2$s when added  in list)"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:45
msgctxt "Elementor widget name"
msgid "YITH Wishlist Add button"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:45
#, fuzzy
msgctxt "Elementor widget name"
msgid "YITH Wishlist"
msgstr "Wishlist"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:87
#, fuzzy
msgctxt "Elementor section title"
msgid "Product"
msgstr "Nome prodotto"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:107
msgctxt "Elementor section title"
msgid "Labels"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:157
msgctxt "Elementor section title"
msgid "Advanced"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:87
#, fuzzy
msgctxt "Elementor section title"
msgid "Wishlist"
msgstr "Wishlist"

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:107
#, fuzzy
msgctxt "Elementor section title"
msgid "Pagination"
msgstr "Paginazione"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:95
#, fuzzy
msgctxt "Elementor control label"
msgid "Product ID"
msgstr "Nome prodotto"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:115
msgctxt "Elementor control label"
msgid "Button label"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:125
#, fuzzy
msgctxt "Elementor control label"
msgid "\"Browse wishlist\" label"
msgstr "Testo per \"Vedi la lista dei desideri\""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:135
#, fuzzy
msgctxt "Elementor control label"
msgid "\"Product already in wishlist\" label"
msgstr "Testo per \"Articolo già presente nella lista dei desideri\""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:145
#, fuzzy
msgctxt "Elementor control label"
msgid "\"Product added to wishlist\" label"
msgstr "Testo per \"Articolo già presente nella lista dei desideri\""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:165
#, fuzzy
msgctxt "Elementor control label"
msgid "URL of the wishlist page"
msgstr "Pagina Lista dei desideri"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:175
#, fuzzy
msgctxt "Elementor control label"
msgid "Icon for the button"
msgstr "Seleziona un'icona per il pulsante di condivisione per email"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:185
#, fuzzy
msgctxt "Elementor control label"
msgid "Additional CSS classes for the button"
msgstr ""
"Classi CSS aggiuntive per il pulsante (lascia vuoto per utilizzare le "
"impostazioni predefinite)"

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:95
#, fuzzy
msgctxt "Elementor control label"
msgid "Wishlist ID"
msgstr "Wishlist"

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:115
#, fuzzy
msgctxt "Elementor control label"
msgid "Paginate items"
msgstr "Paginazione"

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:128
#, fuzzy
msgctxt "yith-woocommerce-wishlist"
msgid "Items per page"
msgstr "Articoli aggiunti"

#~ msgid "My wishlist on "
#~ msgstr "La mia lista dei desideri su %s "

#~ msgid "YITH WooCommerce Wishlist"
#~ msgstr "YITH WooCommerce Wishlist"

#~ msgid "Save"
#~ msgstr "Salva"

#~ msgid "Cancel"
#~ msgstr "Annulla"

#~ msgid "Ask for an estimate"
#~ msgstr "Richiedi un preventivo"
PK`x1\-6J�����,languages/yith-woocommerce-wishlist-nl_NL.ponu�[���# Copyright (C) 2019 YITH WooCommerce Wishlist
# This file is distributed under the same license as the YITH WooCommerce Wishlist package.
msgid ""
msgstr ""
"Project-Id-Version: YITH WooCommerce Wishlist\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/yith-woocommerce-"
"wishlist\n"
"POT-Creation-Date: 2021-11-11 13:53:53+00:00\n"
"PO-Revision-Date: 2020-10-16 14:06+0200\n"
"Last-Translator: \n"
"Language-Team: Your Inspiration Themes <plugins@yithemes.com>\n"
"Language: nl_NL\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 2.4.1\n"
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;_n:1,2;__ngettext:1,2;"
"__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;"
"_nx_noop:4c,1,2\n"
"X-Poedit-Basepath: .\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Poedit-SourceCharset: UTF-8\n"
"X-Poedit-SearchPath-0: ..\n"
"X-Poedit-SearchPathExcluded-0: ../plugin-fw\n"

#: includes/class-yith-wcwl-admin.php:126
#, fuzzy
msgid "Wishlist Page"
msgstr "Verlanglijst pagina"

#: includes/class-yith-wcwl-admin.php:148
msgid "General settings"
msgstr "Algemene instellingen"

#: includes/class-yith-wcwl-admin.php:149
msgid "Add to wishlist options"
msgstr "Toevoegen aan verlanglijst opties"

#: includes/class-yith-wcwl-admin.php:150
msgid "Wishlist page options"
msgstr "Verlanglijst pagina opties"

#: includes/class-yith-wcwl-admin.php:151
msgid "Premium Version"
msgstr "Premium versie"

#: includes/class-yith-wcwl-admin.php:249
#: includes/class-yith-wcwl-install.php:342
msgid "Wishlist"
msgstr "Verlanglijst"

#: includes/class-yith-wcwl-admin.php:251
msgid ""
"Allows your customers to create and share lists of products that they want "
"to purchase on your e-commerce."
msgstr ""
"Laat uw klanten een lijst met producten die zij willen kopen in uw e-"
"commerce, maken en delen."

#: includes/class-yith-wcwl-ajax-handler.php:75
#: templates/add-to-wishlist-remove.php:59
msgid "View &rsaquo;"
msgstr "Bekijk &rsaquo;"

#: includes/class-yith-wcwl-ajax-handler.php:76
#: templates/add-to-wishlist-remove.php:58
msgid "or"
msgstr "of"

#: includes/class-yith-wcwl-ajax-handler.php:77
msgid "Close"
msgstr ""

#: includes/class-yith-wcwl-ajax-handler.php:155
#: includes/class-yith-wcwl-ajax-handler.php:195
msgid "Product successfully removed."
msgstr "Product succesvol verwijderd."

#: includes/class-yith-wcwl-form-handler.php:156
msgid "Please, make sure to enter a valid title"
msgstr "let op dat u een geldige titel invoert"

#: includes/class-yith-wcwl-frontend.php:461
msgid ""
"We are sorry, but this feature is available only if cookies on your browser "
"are enabled."
msgstr ""
"Sorry, deze optie is alleen beschikbaar als cookies in uw browser zijn "
"ingeschakeld."

#: includes/class-yith-wcwl-frontend.php:462
msgid "Product added to cart successfully"
msgstr "Product succesvol toegevoegd aan winkelwagen"

#: includes/class-yith-wcwl-frontend.php:725
#: includes/class-yith-wcwl-shortcode.php:239
#: plugin-options/wishlist_page-options.php:240
#: templates/wishlist-view-footer-mobile.php:46
#: templates/wishlist-view-footer.php:46
msgid "Add to cart"
msgstr "Toevoegen aan winkelwagen"

#: includes/class-yith-wcwl-privacy.php:52
msgid "While you visit our site, we’ll track:"
msgstr "Terwijl u onze site bezoekt, volgen wij:"

#: includes/class-yith-wcwl-privacy.php:54
msgid ""
"Products you’ve added to the wishlist: we’ll use this to show you and other "
"users your favourite products, and to create targeted email campaigns."
msgstr ""
"Producten die u aan de verlanglijst hebt toegevoegd: we gebruiken dit om u "
"en andere gebruikers onze favoriete producten te laten zien en om gerichte e-"
"mailcampagnes te maken."

#: includes/class-yith-wcwl-privacy.php:55
msgid ""
"Wishlists you’ve created: we’ll keep track of the wishlists you create, and "
"make them visible to the store staff"
msgstr ""
"Verlanglijst die u heeft gemaakt: we houden de verlanglijst bij die u heeft "
"gemaakt, en maken deze zichtbaar voor het winkelpersoneel"

#: includes/class-yith-wcwl-privacy.php:57
msgid ""
"We’ll also use cookies to keep track of wishlist contents while you’re "
"browsing our site."
msgstr ""
"We zullen ook cookies gebruiken om de inhoud van uw verlanglijst bij te "
"houden terwijl u onze site bezoekt."

#: includes/class-yith-wcwl-privacy.php:60
msgid ""
"Members of our team have access to the information you provide us with. For "
"example, both Administrators and Shop Managers can access:"
msgstr ""
"Onze teamleden hebben toegang tot de informatie die u met ons deelt. "
"Bijvoorbeeld. zowel administrateurs en winkel managers hebben toegang tot:"

#: includes/class-yith-wcwl-privacy.php:62
msgid ""
"Wishlist details, such as products added, date of addition, name and privacy "
"settings of your wishlists"
msgstr ""
"Verlanglijstdetails, zoals toegevoegde producten, datum van toevoeging, naam "
"en privacy-instellingen van uw verlanglijst"

#: includes/class-yith-wcwl-privacy.php:64
msgid ""
"Our team members have access to this information to offer you better deals "
"for the products you love."
msgstr ""
"Onze teamleden hebben toegang tot deze informatie om u betere deals te "
"bieden voor de producten waar u van houdt."

#: includes/class-yith-wcwl-privacy.php:84
#: includes/class-yith-wcwl-privacy.php:100
msgid "Customer wishlists"
msgstr "Verlanglijsten klant"

#: includes/class-yith-wcwl-privacy.php:137 plugin-options/lists-options.php:25
#: plugin-options/lists-options.php:32
msgid "Wishlists"
msgstr "Verlanglijst"

#. Translators: %s Order number.
#: includes/class-yith-wcwl-privacy.php:199
msgid "Removed wishlist %s."
msgstr "Verwijderde verlanglijst %s."

#. Translators: %s Order number.
#: includes/class-yith-wcwl-privacy.php:203
msgid "Wishlist %s has been retained."
msgstr "Verlanglijst%s is bewaard gebleven."

#: includes/class-yith-wcwl-privacy.php:227
msgid "Token"
msgstr "Token"

#: includes/class-yith-wcwl-privacy.php:228
msgid "Wishlist URL"
msgstr "URL verlanglijst"

#: includes/class-yith-wcwl-privacy.php:229
msgid "Title"
msgstr "Titel"

#: includes/class-yith-wcwl-privacy.php:231
msgid "Visibility"
msgstr "Zichtbaarheid"

#: includes/class-yith-wcwl-privacy.php:232
msgid "Items added"
msgstr "Items toegevoegd"

#: includes/class-yith-wcwl-shortcode.php:58
msgid ""
"ID of the product to add to the wishlist (leave empty to use the global "
"product)"
msgstr ""
"ID van het product om toe te voegen aan verlanglijst (laat leeg om een "
"algemeen product te gebruiken)"

#: includes/class-yith-wcwl-shortcode.php:63
msgid "URL of the wishlist page (leave empty to use the default settings)"
msgstr ""
"URL van de verlanglijst pagina (laat leeg om de standaardinstellingen te "
"gebruiken)"

#: includes/class-yith-wcwl-shortcode.php:68
msgid "Button label (leave empty to use the default settings)"
msgstr "Knop label (laat leeg om de standaardinstellingen te gebruiken)"

#: includes/class-yith-wcwl-shortcode.php:73
msgid "\"Browse wishlist\" label (leave empty to use the default settings)"
msgstr ""
"\"Browse verlanglijst\" label (laat leeg om de standaardinstellingen te "
"gebruiken)"

#: includes/class-yith-wcwl-shortcode.php:78
msgid ""
"\"Product already in wishlist\" label (leave empty to use the default "
"settings)"
msgstr ""
"\"Product al toegevoegd aan verlanglijst\" label (laat leeg om "
"standaardinstellingen te gebruiken)"

#: includes/class-yith-wcwl-shortcode.php:83
msgid ""
"\"Product added to wishlist\" label (leave empty to use the default settings)"
msgstr ""
"\"Product toegevoegd aan verlanglijst\" label (laat leeg om de "
"standaardinstellingen te gebruiken)"

#: includes/class-yith-wcwl-shortcode.php:88
msgid ""
"Icon for the button (use any FontAwesome valid class, or leave empty to use "
"the default settings)"
msgstr ""
"Icoon voor de knop (Gebruik een FontAwesome valid class, of laat het leeg om "
"de standaardinstellingen te gebruiken)"

#: includes/class-yith-wcwl-shortcode.php:93
msgid ""
"Additional CSS classes for the button (leave empty to use the default "
"settings)"
msgstr ""
"Aanvullende CSS klassen voor de knop (laat leeg om de standaardinstellingen "
"te gebruiken)"

#: includes/class-yith-wcwl-shortcode.php:107
msgid "Choose whether to paginate items in the wishlist or show them all"
msgstr ""
"Kies of items in de verlanglijst moeten worden gepagineerd of laat ze "
"allemaal zien"

#: includes/class-yith-wcwl-shortcode.php:110
#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:118
msgid "Paginate"
msgstr "Paginering"

#: includes/class-yith-wcwl-shortcode.php:111
#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:119
msgid "Do not paginate"
msgstr "Items niet pagineren"

#: includes/class-yith-wcwl-shortcode.php:116
msgid "Number of items to show per page"
msgstr "Aantal items om weer te geven per pagina"

#: includes/class-yith-wcwl-shortcode.php:121
msgid "ID of the wishlist to show (e.g. K6EOWXB888ZD)"
msgstr "Verlanglijst ID om weer te geven (vb. K6EOWXB888ZD)"

#: includes/class-yith-wcwl-shortcode.php:414
msgid "Share on:"
msgstr "Delen op:"

#: includes/class-yith-wcwl-shortcode.php:438
#: plugin-options/wishlist_page-options.php:138
msgid "Share on Facebook"
msgstr "Delen op Facebook"

#: includes/class-yith-wcwl-shortcode.php:455
#: plugin-options/wishlist_page-options.php:147
msgid "Tweet on Twitter"
msgstr "Tweet op Twitter"

#: includes/class-yith-wcwl-shortcode.php:473
#: plugin-options/wishlist_page-options.php:156
msgid "Pin on Pinterest"
msgstr "Pin op Pinterest"

#: includes/class-yith-wcwl-shortcode.php:487
msgid "Share via email"
msgstr "Delen via e-mail"

#: includes/class-yith-wcwl-shortcode.php:510
#: plugin-options/wishlist_page-options.php:174
msgid "Share on WhatsApp"
msgstr "Delen via WhatsApp"

#: includes/class-yith-wcwl-shortcode.php:621
msgid "Remove from list"
msgstr "Verwijderen van lijst"

#: includes/class-yith-wcwl-wishlist-item.php:189
msgid "Free!"
msgstr "Gratis!"

#: includes/class-yith-wcwl.php:164
msgid "The item cannot be added to this wishlist"
msgstr "Het item kan niet worden toegevoegd aan deze verlanglijst"

#: includes/class-yith-wcwl.php:168 includes/class-yith-wcwl.php:174
msgid "An error occurred while adding the products to the wishlist."
msgstr ""
"Er is een fout opgetreden tijdens het toevoegen van het product aan de "
"verlanglijst."

#: includes/class-yith-wcwl.php:235 includes/class-yith-wcwl.php:241
msgid "Error. Unable to remove the product from the wishlist."
msgstr "Fout. Het product kon niet van de verlanglijst worden verwijderd."

#: includes/data-stores/class-yith-wcwl-wishlist-data-store.php:152
#: includes/data-stores/class-yith-wcwl-wishlist-data-store.php:174
msgid "Invalid wishlist."
msgstr "Ongeldige verlanglijst."

#: includes/data-stores/class-yith-wcwl-wishlist-item-data-store.php:119
msgid "Invalid wishlist item."
msgstr "Ongeldig verlanglijst item."

#. translators: 1. Number of users.
#: includes/functions-yith-wcwl.php:249
msgid "%d user"
msgid_plural "%d users"
msgstr[0] "%d gebruiker"
msgstr[1] "%d gebruikers"

#: includes/functions-yith-wcwl.php:250
msgid "has this item in wishlist"
msgid_plural "have this item in wishlist"
msgstr[0] "heeft dit item in de verlanglijst"
msgstr[1] "hebben dit item in de verlanglijst"

#: includes/functions-yith-wcwl.php:252
msgid "You're the first"
msgstr "U bent de eerste"

#: includes/functions-yith-wcwl.php:253
msgid "to add this item in wishlist"
msgstr "dit item toevoegen aan verlanglijst"

#. translators: 1. Count of users when many, or "another" when only one.
#: includes/functions-yith-wcwl.php:257
msgid "You and %s user"
msgid_plural "You and %d users"
msgstr[0] "U en %s gebruiker"
msgstr[1] "U en %s gebruikers"

#: includes/functions-yith-wcwl.php:257
msgid "another"
msgstr ""

#: includes/functions-yith-wcwl.php:258
msgid "have this item in wishlist"
msgstr "hebben dit item in de verlanglijst"

#: includes/functions-yith-wcwl.php:425
msgid "None"
msgstr ""

#: includes/functions-yith-wcwl.php:426
#, fuzzy
msgid "Custom"
msgstr "Custom CSS"

#: includes/functions-yith-wcwl.php:447
msgid "Shared"
msgstr "Gedeeld"

#: includes/functions-yith-wcwl.php:451
msgid "Only people with a link to this list can see it"
msgstr "Alleen mensen met een link naar deze lijst kunnen hem zien"

#: includes/functions-yith-wcwl.php:457
msgid "Private"
msgstr "Prive"

#: includes/functions-yith-wcwl.php:461
msgid "Only you can see this list"
msgstr "Alleen u kunt deze lijst zien"

#: includes/functions-yith-wcwl.php:467
msgid "Public"
msgstr "Openbaar"

#: includes/functions-yith-wcwl.php:471
msgid "Anyone can search for and see this list"
msgstr "Iedereen kan zoeken naar deze verlanglijst en deze lijst zien"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:118
#: plugin-options/add_to_wishlist-options.php:127
msgid "Add to wishlist"
msgstr "Toevoegen aan verlanglijst"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:128
#: plugin-options/add_to_wishlist-options.php:143
msgid "Browse wishlist"
msgstr "Browse verlanglijst"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:138
#, fuzzy
msgid "Product already in wishlist"
msgstr "\"Product is al toegevoegd aan verlanglijst\" tekst"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:148
#, fuzzy
msgid "Product added to wishlist"
msgstr "Wanneer een product is toegevoegd aan de verlanglijst"

#: init.php:160
msgid "is enabled but not effective. It requires WooCommerce to work."
msgstr ""

#: init.php:176
msgid "You can't activate the free version of"
msgstr ""

#: init.php:176
msgid "while you are using the premium one."
msgstr ""

#: plugin-options/add_to_wishlist-options.php:20
#: plugin-options/settings-options.php:27
msgid "General Settings"
msgstr "Algemene Instellingen"

#: plugin-options/add_to_wishlist-options.php:27
#, fuzzy
msgid "After product is added to wishlist"
msgstr "Wanneer een product is toegevoegd aan de verlanglijst"

#: plugin-options/add_to_wishlist-options.php:28
msgid ""
"Choose the look of the Wishlist button when the product has already been "
"added to a wishlist"
msgstr ""
"Kies de look van de verlanglijst knop, wanneer het product al is toegevoegd "
"aan de verlanglijst"

#: plugin-options/add_to_wishlist-options.php:32
#, fuzzy
msgid "Show \"Add to wishlist\" button"
msgstr "Toon \"Toevoegen aan verlanglijst\" knop"

#: plugin-options/add_to_wishlist-options.php:33
msgid "Show \"View wishlist\" link"
msgstr "Toon \"Bekijk verlanglijst\" link"

#: plugin-options/add_to_wishlist-options.php:34
msgid "Show \"Remove from list\" link"
msgstr "Toon \"Van lijst verwijderen\" link"

#: plugin-options/add_to_wishlist-options.php:48
msgid "Loop settings"
msgstr "Loop instellingen"

#: plugin-options/add_to_wishlist-options.php:50
msgid ""
"Loop options will be visible on Shop page, category pages, product "
"shortcodes, products sliders, and all the other places where the WooCommerce "
"products' loop is used"
msgstr ""
"Loop opties zullen zichtbaar blijven in de winkelpagina, categorie pagina, "
"product shortcodes, product sliders, en alle andere plaatsen waar de "
"WooCommerce product loop wordt gebruikt"

#: plugin-options/add_to_wishlist-options.php:55
msgid "Show \"Add to wishlist\" in loop"
msgstr "Toon \"Toevoegen aan verlanglijst\" in loop"

#: plugin-options/add_to_wishlist-options.php:56
msgid "Enable the \"Add to wishlist\" feature in WooCommerce products' loop"
msgstr ""
"De \"Toevoegen aan verlanglijst\" optie inschakelen in WooCommerce product "
"loop"

#: plugin-options/add_to_wishlist-options.php:64
msgid "Position of \"Add to wishlist\" in loop"
msgstr "Positie van \"Toevoegen aan verlanglijst\" in loop"

#: plugin-options/add_to_wishlist-options.php:65
msgid ""
"Choose where to show \"Add to wishlist\" button or link in WooCommerce "
"products' loop. <span class=\"addon\">Copy this shortcode <span class=\"code"
"\"><code>[yith_wcwl_add_to_wishlist]</code></span> and paste it where you "
"want to show the \"Add to wishlist\" link or button</span>"
msgstr ""
"Bepaal waar u de \"Toevoegen aan verlanglijst\" knop of link wilt weergeven "
"in WooCommerce product loop. <span class=\"addon\">Kopieer deze shortcode "
"<span class=\"code\"><code>[yith_wcwl_add_to_wishlist]</code></span> en plak "
"het waar u wilt om de \"Toevoegen aan verlanglijst\" link of knop wilt "
"weergeven</span>"

#: plugin-options/add_to_wishlist-options.php:72
msgid "On top of the image"
msgstr "Boven de afbeelding"

#: plugin-options/add_to_wishlist-options.php:73
msgid "Before \"Add to cart\" button"
msgstr "Voor de \"Toevoegen aan winkelwagen\" knop"

#: plugin-options/add_to_wishlist-options.php:74
msgid "After \"Add to cart\" button"
msgstr "Na de \"Toevoegen aan winkelwagen\" knop"

#: plugin-options/add_to_wishlist-options.php:75
#: plugin-options/add_to_wishlist-options.php:107
msgid "Use shortcode"
msgstr "Gebruik shortcode"

#: plugin-options/add_to_wishlist-options.php:89
msgid "Product page settings"
msgstr "Product pagina instellingen"

#: plugin-options/add_to_wishlist-options.php:96
msgid "Position of \"Add to wishlist\" on product page"
msgstr "Positie van \"Toevoegen aan verlanglijst\" op product pagina"

#: plugin-options/add_to_wishlist-options.php:97
msgid ""
"Choose where to show \"Add to wishlist\" button or link on the product page. "
"<span class=\"addon\">Copy this shortcode <span class=\"code"
"\"><code>[yith_wcwl_add_to_wishlist]</code></span> and paste it where you "
"want to show the \"Add to wishlist\" link or button</span>"
msgstr ""
"Bepaal waar u de \"Toevoegen aan verlanglijst\" knop of link wilt weergeven "
"op de product pagina. <span class=\"addon\">Kopieer deze shortcode <span "
"class=\"code\"><code>[yith_wcwl_add_to_wishlist]</code></span> en plak het "
"waar u wilt om de \"Toevoegen aan verlanglijst\" link of knop wilt "
"weergeven</span>"

#: plugin-options/add_to_wishlist-options.php:104
msgid "After \"Add to cart\""
msgstr "Na \"Toevoegen aan winkelwagen\""

#: plugin-options/add_to_wishlist-options.php:105
msgid "After thumbnails"
msgstr "Na Thumbnails"

#: plugin-options/add_to_wishlist-options.php:106
msgid "After summary"
msgstr "Na samenvatting"

#: plugin-options/add_to_wishlist-options.php:117
#: plugin-options/wishlist_page-options.php:222
msgid "Text customization"
msgstr "Tekst aanpassen"

#: plugin-options/add_to_wishlist-options.php:124
msgid "\"Add to wishlist\" text"
msgstr "\"Toevoegen aan verlanglijst\" tekst"

#: plugin-options/add_to_wishlist-options.php:125
msgid "Enter a text for \"Add to wishlist\" button"
msgstr "Tekst invoeren voor \"Toevoegen aan verlanglijst\" knop"

#: plugin-options/add_to_wishlist-options.php:132
msgid "\"Product added\" text"
msgstr "\"Product toegevoegd\" tekst"

#: plugin-options/add_to_wishlist-options.php:133
msgid ""
"Enter the text of the message displayed when the user adds a product to the "
"wishlist"
msgstr ""
"Tekst invoeren voor het bericht dat wordt weergegeven wanneer een gebruiker "
"een product toevoegt aan de verlanglijst"

#: plugin-options/add_to_wishlist-options.php:135
msgid "Product added!"
msgstr "Product toegevoegd!"

#: plugin-options/add_to_wishlist-options.php:140
msgid "\"Browse wishlist\" text"
msgstr "\"Browse wishlist\" tekst"

#: plugin-options/add_to_wishlist-options.php:141
msgid "Enter a text for the \"Browse wishlist\" link on the product page"
msgstr ""
"Tekst invoeren voor de \"Browse verlanglijst\" link op de product pagina"

#: plugin-options/add_to_wishlist-options.php:148
msgid "\"Product already in wishlist\" text"
msgstr "\"Product is al toegevoegd aan verlanglijst\" tekst"

#: plugin-options/add_to_wishlist-options.php:149
msgid ""
"Enter the text for the message displayed when the user views a product that "
"is already in the wishlist"
msgstr ""
"Tekst invoeren voor het bericht dat wordt weergegeven wanneer een gebruiker "
"een product ziet dat al is toegevoegd aan de verlanglijst"

#: plugin-options/add_to_wishlist-options.php:151
msgid "The product is already in your wishlist!"
msgstr "Het product is al toegevoegd aan uw verlanglijst!"

#: plugin-options/add_to_wishlist-options.php:161
msgid "Style & Color customization"
msgstr "Stijl & kleur aanpassing"

#: plugin-options/add_to_wishlist-options.php:168
msgid "Style of \"Add to wishlist\""
msgstr "Stijl van \"Toevoegen aan verlanglijst\"v"

#: plugin-options/add_to_wishlist-options.php:169
msgid ""
"Choose if you want to show a textual \"Add to wishlist\" link or a button"
msgstr ""
"Bepaal of u de tekstuele \"Toevoegen aan verlanglijst\" link of knop wilt "
"weergeven"

#: plugin-options/add_to_wishlist-options.php:172
#: plugin-options/wishlist_page-options.php:261
msgid "Textual (anchor)"
msgstr "Tekstueel (anker)"

#: plugin-options/add_to_wishlist-options.php:173
#: plugin-options/wishlist_page-options.php:262
msgid "Button with theme style"
msgstr "Knop met stijl thema"

#: plugin-options/add_to_wishlist-options.php:174
#: plugin-options/wishlist_page-options.php:263
msgid "Button with custom style"
msgstr "Knop met aangepaste stijl"

#: plugin-options/add_to_wishlist-options.php:182
msgid "\"Add to wishlist\" button style"
msgstr "\"Toevoegen aan verlanglijst\" knop stijl"

#: plugin-options/add_to_wishlist-options.php:188
msgid "Choose colors for the \"Add to wishlist\" button"
msgstr "Kies de kleuren van de \"Toevoegen aan verlanglijst\" knop"

#: plugin-options/add_to_wishlist-options.php:190
#: plugin-options/wishlist_page-options.php:279
#: plugin-options/wishlist_page-options.php:368
#: plugin-options/wishlist_page-options.php:417
#: plugin-options/wishlist_page-options.php:465
#: plugin-options/wishlist_page-options.php:552
#: plugin-options/wishlist_page-options.php:592
#: plugin-options/wishlist_page-options.php:632
#: plugin-options/wishlist_page-options.php:672
#: plugin-options/wishlist_page-options.php:712
msgid "Background"
msgstr "Achtergrond"

#: plugin-options/add_to_wishlist-options.php:195
#: plugin-options/wishlist_page-options.php:284
#: plugin-options/wishlist_page-options.php:373
#: plugin-options/wishlist_page-options.php:422
#: plugin-options/wishlist_page-options.php:470
#: plugin-options/wishlist_page-options.php:507
msgid "Text"
msgstr "Tekst"

#: plugin-options/add_to_wishlist-options.php:200
#: plugin-options/wishlist_page-options.php:289
#: plugin-options/wishlist_page-options.php:378
#: plugin-options/wishlist_page-options.php:427
#: plugin-options/wishlist_page-options.php:475
msgid "Border"
msgstr "Rand"

#: plugin-options/add_to_wishlist-options.php:206
msgid "Choose colors for the \"Add to wishlist\" button on hover state"
msgstr ""
"Kies de kleuren voor de \"Toevoegen aan verlanglijst\" knop bij erover "
"zweven met muis"

#: plugin-options/add_to_wishlist-options.php:208
#: plugin-options/wishlist_page-options.php:297
#: plugin-options/wishlist_page-options.php:386
#: plugin-options/wishlist_page-options.php:435
msgid "Background Hover"
msgstr "Achtergrond zweven"

#: plugin-options/add_to_wishlist-options.php:213
#: plugin-options/wishlist_page-options.php:302
#: plugin-options/wishlist_page-options.php:391
#: plugin-options/wishlist_page-options.php:440
msgid "Text Hover"
msgstr "Tekst zweven"

#: plugin-options/add_to_wishlist-options.php:218
#: plugin-options/wishlist_page-options.php:307
#: plugin-options/wishlist_page-options.php:396
#: plugin-options/wishlist_page-options.php:445
msgid "Border Hover"
msgstr "Rand zweven"

#: plugin-options/add_to_wishlist-options.php:231
#: plugin-options/wishlist_page-options.php:320
msgid "Border radius"
msgstr "Rand Radius"

#: plugin-options/add_to_wishlist-options.php:232
msgid "Choose radius for the \"Add to wishlist\" button"
msgstr "Bepaal de radius voor de \"Toevoegen aan verlanglijst\" knop"

#: plugin-options/add_to_wishlist-options.php:246
msgid "\"Add to wishlist\" icon"
msgstr "\"Toevoegen aan verlanglijst\" icoon"

#: plugin-options/add_to_wishlist-options.php:247
msgid "Select an icon for the \"Add to wishlist\" button (optional)"
msgstr ""
"Selecteer een icoon voor de \"Toevoegen aan verlanglijst\" knop (optioneel)"

#: plugin-options/add_to_wishlist-options.php:257
msgid "\"Add to wishlist\" custom icon"
msgstr "\"Toevoegen aan verlanglijst\" aangepast icoon"

#: plugin-options/add_to_wishlist-options.php:258
#: plugin-options/add_to_wishlist-options.php:282
msgid ""
"Upload an icon you'd like to use for \"Add to wishlist\" button (suggested "
"32px x 32px)"
msgstr ""
"Upload een icoon die je wilt gebruiken voor de \"Toevoegen aan verlanglijst"
"\" knop (aanbevolen 32 x 32px)"

#: plugin-options/add_to_wishlist-options.php:270
msgid "\"Added to wishlist\" icon"
msgstr "\"Toevoegen aan verlanglijst\" icoon"

#: plugin-options/add_to_wishlist-options.php:271
msgid "Select an icon for the \"Added to wishlist\" button (optional)"
msgstr ""
"Selecteer een icoon voor de \"Toevoegen aan verlanglijst\" knop (optioneel)"

#: plugin-options/add_to_wishlist-options.php:277
msgid "Same used for Add to wishlist"
msgstr "Hetzelfde gebruikt voor Toevoegen aan verlanglijst"

#: plugin-options/add_to_wishlist-options.php:281
msgid "\"Added to wishlist\" custom icon"
msgstr "\"Toevoegen aan verlanglijst\" aangepast icoon"

#: plugin-options/add_to_wishlist-options.php:294
msgid "Custom CSS"
msgstr "Custom CSS"

#: plugin-options/add_to_wishlist-options.php:295
msgid "Enter custom CSS to be applied to Wishlist elements (optional)"
msgstr ""
"Aangepaste CSS invoeren om toe te passen op de verlanglijst elementen "
"(optioneel)"

#: plugin-options/lists-options.php:34
#, fuzzy
msgid "Search list"
msgstr "Verlanglijst delen"

#. translators: 1. Anchor to Frequently Bought Together landing page on
#. yithemes.com.
#: plugin-options/settings-options.php:19
msgid ""
"If you want to take advantage of this feature, you could consider purchasing "
"the %s."
msgstr "Als u wilt profiteren van deze optie, kunt u overwegen de %s te kopen."

#: plugin-options/settings-options.php:34
msgid "Enable AJAX loading"
msgstr "AJAX loading inschakelen"

#: plugin-options/settings-options.php:35
msgid "Load any cacheable wishlist item via AJAX"
msgstr ""

#: plugin-options/settings-options.php:48
msgid "YITH WooCommerce Frequently Bought Together Integration"
msgstr "YITH WooCommerce Frequently Bought Together Integratie"

#. translators: 1. Url to Frequently Bought Together landing page on
#. yithemes.com.
#: plugin-options/settings-options.php:51
msgid ""
"In order to use this integration you have to install and activate YITH "
"WooCommerce Frequently Bought Together. <a href=\"%s\">Learn more</a>"
msgstr ""
"Om deze integratie te gebriuken moet u YITH WooCommerce Frequently Bought "
"Together instaleren en activeren <a href=\"%s\">Meer informatie</a>"

#: plugin-options/settings-options.php:56
msgid "Enable slider in wishlist"
msgstr "Slider in verlanglijst  inschakelen"

#. translators: 1. Example image of the integration. 2. CTA to buy Frequently
#. Bought Together.
#: plugin-options/settings-options.php:58
#, fuzzy
msgid ""
"Enable the slider with linked products on the Wishlist page (<a href=\"%1$s"
"\" class=\"thickbox\">Example</a>). %2$s"
msgstr ""
"Slider inschakelen met gelinkte producten op de verlanglijst pagina (<a href="
"\"%s\" class=\"thickbox\">Voorbeeld</a>). %s"

#: plugin-options/wishlist_page-options.php:19
msgid "All your wishlists"
msgstr "Al uw verlanglijsten"

#: plugin-options/wishlist_page-options.php:26
msgid "Wishlist page"
msgstr "Verlanglijst pagina"

#: plugin-options/wishlist_page-options.php:27
msgid ""
"Pick a page as the main Wishlist page; make sure you add the <span class="
"\"code\"><code>[yith_wcwl_wishlist]</code></span> shortcode into the page "
"content"
msgstr ""
"Selecteer een pagina als de hoofd verlanglijst pagina; Let op dat u de  "
"<span class=\"code\"><code>[yith_wcwl_wishlist]</code></span> shortcode "
"toevoegt in de pagina inhoud"

#: plugin-options/wishlist_page-options.php:40
msgid "Wishlist Detail Page"
msgstr "Verlanglijst detailpagina"

#: plugin-options/wishlist_page-options.php:47
#: plugin-options/wishlist_page-options.php:56
#: plugin-options/wishlist_page-options.php:65
#: plugin-options/wishlist_page-options.php:74
#: plugin-options/wishlist_page-options.php:83
#: plugin-options/wishlist_page-options.php:92
#: plugin-options/wishlist_page-options.php:101
msgid "In wishlist table show"
msgstr "Toon in verlanglijst tabel"

#: plugin-options/wishlist_page-options.php:48
msgid "Product variations selected by the user (example: size or color)"
msgstr ""
"Product variaties geselecteerd door de gebruiker (voorbeeld: maat of kleur)"

#: plugin-options/wishlist_page-options.php:57
msgid "Product price"
msgstr "Productprijs"

#: plugin-options/wishlist_page-options.php:66
msgid "Product stock (show if the product is available or not)"
msgstr "Product voorraad (toon of een product beschikbaar is of niet)"

#: plugin-options/wishlist_page-options.php:75
msgid "Date on which the product was added to the wishlist"
msgstr "Datum waarop het product is toegevoegd aan de verlanglijst"

#: plugin-options/wishlist_page-options.php:84
msgid "Add to cart option for each product"
msgstr "Toevoegen aan winkelwagen optie voor ieder product"

#: plugin-options/wishlist_page-options.php:93
msgid ""
"Icon to remove the product from the wishlist - to the left of the product"
msgstr ""
"Icoon om het product uit de verlanglijst te verwijderen - aan de rechterkant "
"van het product"

#: plugin-options/wishlist_page-options.php:102
msgid ""
"Button to remove the product from the wishlist - to the right of the product"
msgstr ""
"Knop om het product uit de verlanglijst te verwijderen - aan de rechterkant "
"van het product"

#: plugin-options/wishlist_page-options.php:110
msgid "Redirect to cart"
msgstr "Doorverwijzen naar winkelwagen"

#: plugin-options/wishlist_page-options.php:111
msgid ""
"Redirect users to the cart page when they add a product to the cart from the "
"wishlist page"
msgstr ""
"Gebruikers doorsturen naar de winkelwagen pagina, wanneer zij een product "
"van de verlanglijst toevoegen aan winkelwagen"

#: plugin-options/wishlist_page-options.php:119
msgid "Remove if added to the cart"
msgstr "Verwijder als het toegevoegd is aan winkelwagen"

#: plugin-options/wishlist_page-options.php:120
msgid ""
"Remove the product from the wishlist after it has been added to the cart"
msgstr ""
"Product verwijderen van verlanglijst nadat het is toegevoegd aan de "
"winkelwagen"

#: plugin-options/wishlist_page-options.php:128
msgid "Share wishlist"
msgstr "Verlanglijst delen"

#: plugin-options/wishlist_page-options.php:129
msgid "Enable this option to let users share their wishlist on social media"
msgstr ""
"Deze optie inschakelen om gebruikers hun verlanglijst te laten delen op "
"social media"

#: plugin-options/wishlist_page-options.php:137
#: plugin-options/wishlist_page-options.php:146
#: plugin-options/wishlist_page-options.php:155
#: plugin-options/wishlist_page-options.php:164
#: plugin-options/wishlist_page-options.php:173
msgid "Share on social media"
msgstr "Delen op social media"

#: plugin-options/wishlist_page-options.php:165
msgid "Share by email"
msgstr "Delen via e-mail"

#: plugin-options/wishlist_page-options.php:182
msgid "Share by URL"
msgstr "Delen via URL"

#: plugin-options/wishlist_page-options.php:183
msgid "Show \"Share URL\" field on wishlist page"
msgstr "Toon \"URL delen\" veld op verlanglijst pagina"

#: plugin-options/wishlist_page-options.php:191
msgid "Sharing title"
msgstr "Delen titel"

#: plugin-options/wishlist_page-options.php:192
msgid "Wishlist title used for sharing (only used on Twitter and Pinterest)"
msgstr ""
"Verlanglijst titel die wordt gebruikt voor delen (wordt alleen gebruikt op "
"Twitter en Pinterest)"

#. translators: 1. Blog name.
#: plugin-options/wishlist_page-options.php:195
msgid "My wishlist on %s"
msgstr "Mijn verlanglijst op %s"

#: plugin-options/wishlist_page-options.php:200
msgid "Social text"
msgstr "Social tekst"

#: plugin-options/wishlist_page-options.php:201
msgid ""
"Type the message you want to publish when you share your wishlist on Twitter "
"and Pinterest"
msgstr ""
"Typ het bericht dat u wilt publiceren wanneer u uw verlanglijst deelt op "
"Twitter en Pinterest"

#: plugin-options/wishlist_page-options.php:209
msgid "Social image URL"
msgstr "Social afbeelding URL"

#: plugin-options/wishlist_page-options.php:210
msgid "It will be used to pin the wishlist on Pinterest."
msgstr "Zal worden gebruikt om de verlanglijst te pinnen op Pinterest."

#: plugin-options/wishlist_page-options.php:229
msgid "Default wishlist name"
msgstr "Standaard naam verlanglijst"

#: plugin-options/wishlist_page-options.php:230
msgid ""
"Enter a name for the default wishlist. This is the wishlist that will be "
"automatically generated for all users if they do not create any custom one"
msgstr ""
"Naam invoeren voor de standaard verlanglijst. Dit is de verlanglijst die "
"automatisch wordt gegenereerd voor alle gebruikers, als zij geen aangepaste "
"lijst aanmaken."

#: plugin-options/wishlist_page-options.php:232
#, fuzzy
msgid "My wishlist"
msgstr "Mijn verlanglijst op %s"

#: plugin-options/wishlist_page-options.php:237
msgid "\"Add to cart\" text"
msgstr "\"Toevoegen aan winkelwagen\" tekst"

#: plugin-options/wishlist_page-options.php:238
msgid "Enter a text for the \"Add to cart\" button"
msgstr "Tekst invoeren voor de \"Toevoegen aan winkelwagen\" knop"

#: plugin-options/wishlist_page-options.php:250
msgid "Style & color customization"
msgstr "Stijl & kleur aanpassing"

#: plugin-options/wishlist_page-options.php:257
msgid "Style of \"Add to cart\""
msgstr "Stijl van \"Toevoegen aan winkelwagen\""

#: plugin-options/wishlist_page-options.php:258
msgid "Choose whether to show a textual \"Add to cart\" link or a button"
msgstr ""
"Bepaal of u een tekstuele \"Toevoegen aan winkelwagen\" link of knop wilt "
"weergeven"

#: plugin-options/wishlist_page-options.php:271
msgid "\"Add to cart\" button style"
msgstr "\"Toevoegen aan winkelwagen\" knop stijl"

#: plugin-options/wishlist_page-options.php:277
msgid "Choose the colors for the \"Add to cart\" button"
msgstr "Kies de kleuren van de \"Toevoegen aan winkelwagen\" knop"

#: plugin-options/wishlist_page-options.php:295
msgid "Choose colors for the \"Add to cart\" button on hover state"
msgstr ""
"Kies de kleuren van de \"Toevoegen aan winkelwagen\" knop bij erover zweven "
"met muis"

#: plugin-options/wishlist_page-options.php:321
msgid "Set the radius for the \"Add to cart\" button"
msgstr "Bepaal de radius voor de \"Toevoegen aan winkelwagen\" knop"

#: plugin-options/wishlist_page-options.php:335
msgid "\"Add to cart\" icon"
msgstr "\"Toevoegen aan winkelwagen\" icoon"

#: plugin-options/wishlist_page-options.php:336
msgid "Select an icon for the \"Add to cart\" button (optional)"
msgstr ""
"Selecteer een icoon voor de \"Toevoegen aan winkelwagen\" knop (optioneel)"

#: plugin-options/wishlist_page-options.php:351
msgid "\"Add to cart\" custom icon"
msgstr "\"Toevoegen aan winkelwagen\" aangepast icoon"

#: plugin-options/wishlist_page-options.php:352
msgid ""
"Upload an icon you'd like to use for the \"Add to cart\" button (suggested "
"32px x 32px)"
msgstr ""
"Een icoon uploaden dat u wilt gebruiken voor de \"Toevoegen aan winkelwagen"
"\" knop (aanbevolen 32 x 32px)"

#: plugin-options/wishlist_page-options.php:360
msgid "Primary button style"
msgstr "Eerste knop stijl"

#: plugin-options/wishlist_page-options.php:366
msgid ""
"Choose colors for the primary button<br/><small>This style will be applied "
"to \"Edit title\" button on Wishlist view, \"Submit Changes\" button on "
"Manage view and \"Search wishlist\" button on Search view</small>"
msgstr ""
"Kies de kleuren voor de eerste knop <br/><small>Deze stijl wordt toegepast "
"op de \"Bewerk titel\" knop in de verlanglijst weergave, \"Wijzigingen "
"indienen\" knop in de Beheren weergave en \"Verlanglijst zoeken\" knop in de "
"Zoeken weergave</small>"

#: plugin-options/wishlist_page-options.php:384
msgid ""
"Choose colors for the primary button on hover state<br/><small>This style "
"will be applied to \"Edit title\" button on Wishlist view, \"Submit Changes"
"\" button on Manage view and \"Search wishlist\" button on Search view</"
"small>"
msgstr ""
"Kies de kleuren voor de eerste knop bij erover zweven met muist <br/"
"><small>Deze stijl wordt toegepast op de \"Bewerk titel\" knop in de "
"verlanglijst weergave, \"Wijzigingen indienen\" knop in de Beheren weergave "
"en \"Verlanglijst zoeken\" knop in de Zoeken weergave</small>"

#: plugin-options/wishlist_page-options.php:409
msgid "Secondary button style"
msgstr "Tweede knop stijl"

#: plugin-options/wishlist_page-options.php:415
#: plugin-options/wishlist_page-options.php:433
msgid ""
"Choose colors of the secondary button<br/><small>This style will be applied "
"to the buttons that allow showing and hiding the Edit title form on Wishlist "
"view and \"Create new Wishlist\" button on Manage view</small>"
msgstr ""

#: plugin-options/wishlist_page-options.php:458
msgid "Wishlist table style"
msgstr "Tabelstijl verlanglijst"

#: plugin-options/wishlist_page-options.php:459
msgid ""
"Choose the colors for the wishlist table (when set to \"Traditional\" layout)"
msgstr ""
"Kies de kleuren van de verlanglijst tabel (bij instellen op \"Traditionele\" "
"lay-out)"

#: plugin-options/wishlist_page-options.php:487
msgid "Highlight color"
msgstr "Highlight kleur"

#: plugin-options/wishlist_page-options.php:488
msgid ""
"Choose the color for all sections with background<br/><small>This color will "
"be used as background for the wishlist table heading and footer (when set to "
"\"Traditional\" layout), and for various form across wishlist views</small>"
msgstr ""
"Kies een kleur voor alle secties met achtergrond<br/><small>Deze kleur zal "
"worden gebruikt als achtergrond voor het verlanglijst tabelhoofd en footer "
"(bij instellen op \"Traditionele\" lay-out), en voor verschillende "
"formulieren in verlanglijst weergaven</small>"

#: plugin-options/wishlist_page-options.php:500
msgid "Share button text color"
msgstr "Delen knop tekst kleur"

#: plugin-options/wishlist_page-options.php:501
msgid "Choose colors for share buttons text"
msgstr "Kies tekst kleur voor delen knoppen"

#: plugin-options/wishlist_page-options.php:512
msgid "Text hover"
msgstr "Tekst zweven"

#: plugin-options/wishlist_page-options.php:525
msgid "Facebook share button icon"
msgstr "Icoon voor Facebook delen knop"

#: plugin-options/wishlist_page-options.php:526
msgid "Select an icon for the Facebook share button"
msgstr "Selecteer een icoon voor de Facebook delen knop"

#: plugin-options/wishlist_page-options.php:536
msgid "Facebook share button custom icon"
msgstr "Aangepast icoon voor Facebook delen knop"

#: plugin-options/wishlist_page-options.php:537
msgid ""
"Upload an icon you'd like to use for Facebook share button (suggested 32px x "
"32px)"
msgstr ""
"Upload een icoon dat u wilt gebruiken voor de Facebook delen knop "
"(aanbevolen 32 x 32px)"

#: plugin-options/wishlist_page-options.php:545
msgid "Facebook share button style"
msgstr "Stijl voor Facebook delen knop"

#: plugin-options/wishlist_page-options.php:546
msgid "Choose colors for Facebook share button"
msgstr "Kies kleuren voor Facebook delen knop"

#: plugin-options/wishlist_page-options.php:557
#: plugin-options/wishlist_page-options.php:597
#: plugin-options/wishlist_page-options.php:637
#: plugin-options/wishlist_page-options.php:677
#: plugin-options/wishlist_page-options.php:717
msgid "Background hover"
msgstr "Achtergrond zweven"

#: plugin-options/wishlist_page-options.php:565
msgid "Twitter share button icon"
msgstr "Icoon voor Twitter delen knop"

#: plugin-options/wishlist_page-options.php:566
msgid "Select an icon for the Twitter share button"
msgstr "Selecteer een icoon voor de Twitter delen knop"

#: plugin-options/wishlist_page-options.php:576
msgid "Twitter share button custom icon"
msgstr "Aangepast icoon voor Twitter delen knop"

#: plugin-options/wishlist_page-options.php:577
msgid ""
"Upload an icon you'd like to use for Twitter share button (suggested 32px x "
"32px)"
msgstr ""
"Upload een icoon dat u wilt gebruiken voor de Twitter delen knop (aanbevolen "
"32 x 32px)"

#: plugin-options/wishlist_page-options.php:585
msgid "Twitter share button style"
msgstr "Stijl voor Twitter delen knop"

#: plugin-options/wishlist_page-options.php:586
msgid "Choose colors for Twitter share button"
msgstr "Kies kleuren voor Twitter delen knop"

#: plugin-options/wishlist_page-options.php:605
msgid "Pinterest share button icon"
msgstr "Icoon voor Pinterest delen knop"

#: plugin-options/wishlist_page-options.php:606
msgid "Select an icon for the Pinterest share button"
msgstr "Selecteer een icoon voor de Pinterest delen knop"

#: plugin-options/wishlist_page-options.php:616
msgid "Pinterest share button custom icon"
msgstr "Aangepast icoon voor Pinterest delen knop"

#: plugin-options/wishlist_page-options.php:617
msgid ""
"Upload an icon you'd like to use for Pinterest share button (suggested 32px "
"x 32px)"
msgstr ""
"Upload een icoon dat u wilt gebruiken voor de Pinterest delen knop "
"(aanbevolen 32 x 32px)"

#: plugin-options/wishlist_page-options.php:625
msgid "Pinterest share button style"
msgstr "Stijl voor Pinterest delen knop"

#: plugin-options/wishlist_page-options.php:626
msgid "Choose colors for Pinterest share button"
msgstr "Kies kleuren voor Pinterest delen knop"

#: plugin-options/wishlist_page-options.php:645
msgid "Email share button icon"
msgstr "Icoon voor e-mail delen knop"

#: plugin-options/wishlist_page-options.php:646
msgid "Select an icon for the Email share button"
msgstr "Selecteer een icoon voor de e-mail delen knop"

#: plugin-options/wishlist_page-options.php:656
msgid "Email share button custom icon"
msgstr "Aangepaste icoon voor e-mail delen knop"

#: plugin-options/wishlist_page-options.php:657
msgid ""
"Upload an icon you'd like to use for the Email share button (suggested 32px "
"x 32px)"
msgstr ""
"Upload een icoon dat u wilt gebruiken voor de e-mail delen knop (aanbevolen "
"32 x 32px)"

#: plugin-options/wishlist_page-options.php:665
msgid "Email share button style"
msgstr "Stijl voor e-mail delen knop"

#: plugin-options/wishlist_page-options.php:666
msgid "Choose colors for the Email share button"
msgstr "Kies kleuren voor e-mail delen knop"

#: plugin-options/wishlist_page-options.php:685
msgid "WhatsApp share button icon"
msgstr "Icoon voor WhatsApp delen knop"

#: plugin-options/wishlist_page-options.php:686
msgid "Select an icon for the WhatsApp share button"
msgstr "Selecteer een icoon voor de WhatsApp delen knop"

#: plugin-options/wishlist_page-options.php:696
msgid "WhatsApp share button custom icon"
msgstr "Aangepast icoon voor WhatsApp delen knop"

#: plugin-options/wishlist_page-options.php:697
msgid ""
"Upload an icon you'd like to use for WhatsApp share button (suggested 32px x "
"32px)"
msgstr ""
"Upload een icoon dat u wilt gebruiken voor de WhatsApp delen knop "
"(aanbevolen 32 x 32px)"

#: plugin-options/wishlist_page-options.php:705
msgid "WhatsApp share button style"
msgstr "Stijl voor WhatsApp delen knop"

#: plugin-options/wishlist_page-options.php:706
msgid "Choose colors for WhatsApp share button"
msgstr "Kies kleuren voor de WhatsApp delen knop"

#: templates/admin/wishlist-panel-premium.php:168
#: templates/admin/wishlist-panel-premium.php:309
msgid ""
"Upgrade to the %1$spremium version%2$s%3$sof %1$sYITH WooCommerce Wishlist"
"%2$s to benefit from all features!"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:170
#: templates/admin/wishlist-panel-premium.php:311
msgid "Upgrade"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:176
msgid "Premium Features"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:180
msgid "Allow your customers to create multiple wishlists"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:182
msgid ""
"Christmas, Birthday... users will be able to create and manage multiple "
"wishlists, in case they prefer to keep the products sorted by category or "
"other parameters."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:185
msgid "Multiple Wishlist"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:192
msgid "Wishlist Private"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:196
msgid "A transparent privacy management"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:198
msgid ""
"Your customers can set a privacy option for each wishlist and choose whether "
"sharing the wishlist or making it private."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:206
msgid ""
"Allow your customers to ask for an estimate, directly from their wishlist "
"page"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:208
msgid ""
"And give only registered users the privilege to use the wishlist "
"functionalities."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:211
msgid "Estimate Cost"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:218
msgid "Admin Panel"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:222
msgid "An advanced and more versatile management of the wishlist"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:224
msgid ""
"Your customers can sort the products in the wishlist thanks to the drag&drop "
"option, move products from one wishlist to another, manage product quantity, "
"download the wishlist content to a .pdf file, share the wishlist on their "
"social networks, and much more!"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:232
msgid "Monitor your customers’ wishlists and the popular products"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:234
msgid ""
"You can see your customers’ wishlists, gain insight into the products they "
"are more interested in and plan targeted marketing strategies."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:237
msgid "Search Wishlists"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:244
msgid "'ADD TO CART'"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:248
msgid ""
"Send promotional emails for products in wishlists to push customers to buy"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:250
msgid ""
"Just three clicks to send promotional emails with discount coupons to "
"customers who have added specific products to their wishlist and push them "
"to buy."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:258
msgid "Let users buy the product right from the wishlist page"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:260
msgid ""
"Let them move products from one wishlist to the cart in one click, keeping "
"also the information about the size, colour or quantity selected when added "
"to the wishlist."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:263
msgid "DISABLE WISHLIST"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:271
msgid "Choose a charming layout for your wishlist page"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:273
msgid ""
"The wishlist is one of the most used functionalities in an ecommerce store "
"but often the page layout is not enhanced enough and looks unattractive to "
"the user. With our plugin, you can choose among some alternative layouts and "
"offer an even more interesting experience to users who creates a wishlist on "
"your website."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:276
msgid "UNLOGGED USERS"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:284
msgid "Wishlist widgets for the header and sidebars"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:286
msgid ""
"Increase the wishlist visibility through our modern widgets that you can use "
"in the header, in the sidebars, wherever you want."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:289
msgid "POPULAR TABLE"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:296
msgid "FUNCTIONALITIES"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:300
msgid "Allow users to monitor the price of the products in their wishlist"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:302
msgid ""
"We took inspiration from one of the most interesting features of Amazon "
"product pages: from now on, users can realise what’s the best time to buy a "
"product and how much they can save when there’s a promotion running or a "
"discount on the product they’ve added to the wishlist."
msgstr ""

#: templates/share.php:51 templates/share.php:52
msgid "Facebook"
msgstr "Facebook"

#: templates/share.php:59 templates/share.php:60
msgid "Twitter"
msgstr "Twitter"

#: templates/share.php:67 templates/share.php:68
msgid "Pinterest"
msgstr "Pinterest"

#: templates/share.php:75 templates/share.php:76
msgid "Email"
msgstr "E-mail"

#: templates/share.php:83
msgid "WhatsApp"
msgstr "WhatsApp"

#: templates/share.php:84
msgid "Whatsapp"
msgstr "Whatsapp"

#: templates/share.php:93
msgid "(Now"
msgstr "(U kunt nu"

#: templates/share.php:93
msgid "copy"
msgstr "de verlanglijst link kopiëren"

#: templates/share.php:93
msgid "this wishlist link and share it anywhere)"
msgstr "en overal delen)"

#: templates/wishlist-view-footer-mobile.php:44
#: templates/wishlist-view-footer.php:44
msgid "Apply this action to all the selected items:"
msgstr "Deze actie toepassen op alle geselecteerde items:"

#: templates/wishlist-view-footer-mobile.php:49
#: templates/wishlist-view-footer.php:49
msgid "Remove from wishlist"
msgstr "Verwijderen van verlanglijst"

#. translators: 1. Wishlist formatted name.
#: templates/wishlist-view-footer-mobile.php:67
#: templates/wishlist-view-footer.php:67
msgid "Move to %s"
msgstr ""

#: templates/wishlist-view-footer-mobile.php:73
#: templates/wishlist-view-footer.php:73
msgid "Apply"
msgstr "Toepassen"

#: templates/wishlist-view-footer-mobile.php:81
#: templates/wishlist-view-footer.php:81
msgid "Update"
msgstr "Bijwerken"

#: templates/wishlist-view-footer-mobile.php:87
#: templates/wishlist-view-footer.php:103
msgid "Add all to cart"
msgstr "Allen toevoegen aan winkelwagen"

#: templates/wishlist-view-header.php:48
msgid "Edit title"
msgstr "Bewerk titel"

#: templates/wishlist-view-mobile.php:136
msgid "Added on:"
msgstr "Toegevoegd op:"

#: templates/wishlist-view-mobile.php:147
msgid "Price:"
msgstr "Prijs:"

#: templates/wishlist-view-mobile.php:174
msgid "Quantity:"
msgstr "Hoeveelheid:"

#: templates/wishlist-view-mobile.php:189
msgid "Stock:"
msgstr "Voorraad:"

#: templates/wishlist-view-mobile.php:192 templates/wishlist-view.php:229
msgid "Out of stock"
msgstr "Niet op voorraad"

#: templates/wishlist-view-mobile.php:192 templates/wishlist-view.php:229
msgid "In Stock"
msgstr "Op voorraad"

#: templates/wishlist-view-mobile.php:212 templates/wishlist-view.php:262
msgid "Move"
msgstr "Verplaatsen"

#: templates/wishlist-view-mobile.php:233 templates/wishlist-view.php:283
msgid "Move to another list &rsaquo;"
msgstr "Verplaatsen naar een andere lijst &rsaquo;"

#: templates/wishlist-view-mobile.php:241 templates/wishlist-view.php:157
#: templates/wishlist-view.php:293
msgid "Remove this product"
msgstr "Verwijder dit product"

#: templates/wishlist-view-mobile.php:252 templates/wishlist-view.php:313
msgid "No products added to the wishlist"
msgstr "Geen producten toegevoegd aan de verlanglijst"

#: templates/wishlist-view.php:79
msgid "Product name"
msgstr "Productnaam"

#: templates/wishlist-view.php:87
msgid "Unit price"
msgstr "Eenheidsprijs"

#: templates/wishlist-view.php:96
msgid "Quantity"
msgstr "Hoeveelheid"

#: templates/wishlist-view.php:105
msgid "Stock status"
msgstr "Voorraad status"

#: templates/wishlist-view.php:123
msgid "Arrange"
msgstr "Schikken"

#. translators: date added label: 1 date added.
#: templates/wishlist-view.php:243
msgid "Added on: %s"
msgstr "Toegevoegd op: %s"

#: templates/wishlist-view.php:293
msgid "Remove"
msgstr "Verwijderen"

#. Description of the plugin/theme
msgid ""
"<code><strong>YITH WooCommerce Wishlist</strong></code> gives your users the "
"possibility to create, fill, manage and share their wishlists allowing you "
"to analyze their interests and needs to improve your marketing strategies. "
"<a href=\"https://yithemes.com/\" target=\"_blank\">Get more plugins for "
"your e-commerce on <strong>YITH</strong></a>"
msgstr ""

#: includes/class-yith-wcwl-admin.php:261
msgctxt "[HELP TAB] Video title"
msgid ""
"Check this video to learn how to <b>configure wishlist and customize options:"
"</b>"
msgstr ""

#: includes/class-yith-wcwl-install.php:340
msgctxt "page_slug"
msgid "wishlist"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:230
msgctxt "date when wishlist was created"
msgid "Created on"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:52
msgctxt "[gutenberg]: block name"
msgid "YITH Add to wishlist"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:101
msgctxt "[gutenberg]: block name"
msgid "YITH Wishlist"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:53
msgctxt "[gutenberg]: block description"
msgid "Shows Add to wishlist button"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:102
msgctxt "[gutenberg]: block description"
msgid "Shows a list of products in wishlist"
msgstr ""

#. translators: 1. % of reduction/increase in price.
#: includes/class-yith-wcwl-wishlist-item.php:428
msgctxt ""
"Part of the template that shows price variation since addition to list; "
"placeholder will be replaced with a percentage"
msgid "Price is %1$s%%"
msgstr ""

#. translators: 2: original product price.
#: includes/class-yith-wcwl-wishlist-item.php:430
msgctxt ""
"Part of the template that shows price variation since addition to list; "
"placeholder will be replaced with a price"
msgid "(Was %2$s when added  in list)"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:45
msgctxt "Elementor widget name"
msgid "YITH Wishlist Add button"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:45
#, fuzzy
msgctxt "Elementor widget name"
msgid "YITH Wishlist"
msgstr "Verlanglijst"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:87
#, fuzzy
msgctxt "Elementor section title"
msgid "Product"
msgstr "Productnaam"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:107
msgctxt "Elementor section title"
msgid "Labels"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:157
msgctxt "Elementor section title"
msgid "Advanced"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:87
#, fuzzy
msgctxt "Elementor section title"
msgid "Wishlist"
msgstr "Verlanglijst"

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:107
#, fuzzy
msgctxt "Elementor section title"
msgid "Pagination"
msgstr "Paginering"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:95
#, fuzzy
msgctxt "Elementor control label"
msgid "Product ID"
msgstr "Productnaam"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:115
msgctxt "Elementor control label"
msgid "Button label"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:125
#, fuzzy
msgctxt "Elementor control label"
msgid "\"Browse wishlist\" label"
msgstr "\"Browse wishlist\" tekst"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:135
#, fuzzy
msgctxt "Elementor control label"
msgid "\"Product already in wishlist\" label"
msgstr "\"Product is al toegevoegd aan verlanglijst\" tekst"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:145
#, fuzzy
msgctxt "Elementor control label"
msgid "\"Product added to wishlist\" label"
msgstr "\"Product is al toegevoegd aan verlanglijst\" tekst"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:165
#, fuzzy
msgctxt "Elementor control label"
msgid "URL of the wishlist page"
msgstr "Verlanglijst pagina"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:175
#, fuzzy
msgctxt "Elementor control label"
msgid "Icon for the button"
msgstr "Selecteer een icoon voor de e-mail delen knop"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:185
#, fuzzy
msgctxt "Elementor control label"
msgid "Additional CSS classes for the button"
msgstr ""
"Aanvullende CSS klassen voor de knop (laat leeg om de standaardinstellingen "
"te gebruiken)"

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:95
#, fuzzy
msgctxt "Elementor control label"
msgid "Wishlist ID"
msgstr "Verlanglijst"

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:115
#, fuzzy
msgctxt "Elementor control label"
msgid "Paginate items"
msgstr "Paginering"

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:128
#, fuzzy
msgctxt "yith-woocommerce-wishlist"
msgid "Items per page"
msgstr "Items toegevoegd"

#~ msgid "My wishlist on "
#~ msgstr "Mijn verlanglijst op %s"

#~ msgid "YITH WooCommerce Wishlist"
#~ msgstr "YITH WooCommerce Wishlist"

#~ msgid "Save"
#~ msgstr "Opslaan"

#~ msgid "Cancel"
#~ msgstr "Annuleren"

#~ msgid "Ask for an estimate"
#~ msgstr "Vraag om een offerte"
PK`x1\R��F����,languages/yith-woocommerce-wishlist-de_DE.ponu�[���# Copyright (C) 2019 YITH WooCommerce Wishlist
# This file is distributed under the same license as the YITH WooCommerce Wishlist package.
msgid ""
msgstr ""
"Project-Id-Version: YITH WooCommerce Wishlist\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/yith-woocommerce-"
"wishlist\n"
"POT-Creation-Date: 2021-11-11 13:53:53+00:00\n"
"PO-Revision-Date: 2020-10-16 14:04+0200\n"
"Last-Translator: \n"
"Language-Team: Your Inspiration Themes <plugins@yithemes.com>\n"
"Language: de_DE\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 2.4.1\n"
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;_n:1,2;__ngettext:1,2;"
"__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;"
"_nx_noop:4c,1,2\n"
"X-Poedit-Basepath: .\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Poedit-SourceCharset: UTF-8\n"
"X-Poedit-SearchPath-0: ..\n"
"X-Poedit-SearchPathExcluded-0: ../plugin-fw\n"

#: includes/class-yith-wcwl-admin.php:126
#, fuzzy
msgid "Wishlist Page"
msgstr "Wunschliste"

#: includes/class-yith-wcwl-admin.php:148
msgid "General settings"
msgstr ""

#: includes/class-yith-wcwl-admin.php:149
msgid "Add to wishlist options"
msgstr ""

#: includes/class-yith-wcwl-admin.php:150
msgid "Wishlist page options"
msgstr ""

#: includes/class-yith-wcwl-admin.php:151
msgid "Premium Version"
msgstr "Premium Version"

#: includes/class-yith-wcwl-admin.php:249
#: includes/class-yith-wcwl-install.php:342
msgid "Wishlist"
msgstr "Wunschliste"

#: includes/class-yith-wcwl-admin.php:251
msgid ""
"Allows your customers to create and share lists of products that they want "
"to purchase on your e-commerce."
msgstr ""

#: includes/class-yith-wcwl-ajax-handler.php:75
#: templates/add-to-wishlist-remove.php:59
msgid "View &rsaquo;"
msgstr ""

#: includes/class-yith-wcwl-ajax-handler.php:76
#: templates/add-to-wishlist-remove.php:58
msgid "or"
msgstr ""

#: includes/class-yith-wcwl-ajax-handler.php:77
msgid "Close"
msgstr ""

#: includes/class-yith-wcwl-ajax-handler.php:155
#: includes/class-yith-wcwl-ajax-handler.php:195
msgid "Product successfully removed."
msgstr "Artikel entfernt."

#: includes/class-yith-wcwl-form-handler.php:156
msgid "Please, make sure to enter a valid title"
msgstr ""

#: includes/class-yith-wcwl-frontend.php:461
msgid ""
"We are sorry, but this feature is available only if cookies on your browser "
"are enabled."
msgstr ""

#: includes/class-yith-wcwl-frontend.php:462
msgid "Product added to cart successfully"
msgstr ""

#: includes/class-yith-wcwl-frontend.php:725
#: includes/class-yith-wcwl-shortcode.php:239
#: plugin-options/wishlist_page-options.php:240
#: templates/wishlist-view-footer-mobile.php:46
#: templates/wishlist-view-footer.php:46
msgid "Add to cart"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:52
msgid "While you visit our site, we’ll track:"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:54
msgid ""
"Products you’ve added to the wishlist: we’ll use this to show you and other "
"users your favourite products, and to create targeted email campaigns."
msgstr ""

#: includes/class-yith-wcwl-privacy.php:55
msgid ""
"Wishlists you’ve created: we’ll keep track of the wishlists you create, and "
"make them visible to the store staff"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:57
msgid ""
"We’ll also use cookies to keep track of wishlist contents while you’re "
"browsing our site."
msgstr ""

#: includes/class-yith-wcwl-privacy.php:60
msgid ""
"Members of our team have access to the information you provide us with. For "
"example, both Administrators and Shop Managers can access:"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:62
msgid ""
"Wishlist details, such as products added, date of addition, name and privacy "
"settings of your wishlists"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:64
msgid ""
"Our team members have access to this information to offer you better deals "
"for the products you love."
msgstr ""

#: includes/class-yith-wcwl-privacy.php:84
#: includes/class-yith-wcwl-privacy.php:100
msgid "Customer wishlists"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:137 plugin-options/lists-options.php:25
#: plugin-options/lists-options.php:32
msgid "Wishlists"
msgstr "Wunschlisten"

#. Translators: %s Order number.
#: includes/class-yith-wcwl-privacy.php:199
msgid "Removed wishlist %s."
msgstr "Meine Wunschliste bei %s"

#. Translators: %s Order number.
#: includes/class-yith-wcwl-privacy.php:203
msgid "Wishlist %s has been retained."
msgstr "Wunschliste \"Angebot anfragen\""

#: includes/class-yith-wcwl-privacy.php:227
msgid "Token"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:228
msgid "Wishlist URL"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:229
msgid "Title"
msgstr "Titel:"

#: includes/class-yith-wcwl-privacy.php:231
msgid "Visibility"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:232
msgid "Items added"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:58
msgid ""
"ID of the product to add to the wishlist (leave empty to use the global "
"product)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:63
msgid "URL of the wishlist page (leave empty to use the default settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:68
msgid "Button label (leave empty to use the default settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:73
msgid "\"Browse wishlist\" label (leave empty to use the default settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:78
msgid ""
"\"Product already in wishlist\" label (leave empty to use the default "
"settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:83
msgid ""
"\"Product added to wishlist\" label (leave empty to use the default settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:88
msgid ""
"Icon for the button (use any FontAwesome valid class, or leave empty to use "
"the default settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:93
msgid ""
"Additional CSS classes for the button (leave empty to use the default "
"settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:107
msgid "Choose whether to paginate items in the wishlist or show them all"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:110
#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:118
msgid "Paginate"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:111
#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:119
msgid "Do not paginate"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:116
msgid "Number of items to show per page"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:121
msgid "ID of the wishlist to show (e.g. K6EOWXB888ZD)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:414
msgid "Share on:"
msgstr "Teile auf:"

#: includes/class-yith-wcwl-shortcode.php:438
#: plugin-options/wishlist_page-options.php:138
msgid "Share on Facebook"
msgstr "Auf Facebook teilen"

#: includes/class-yith-wcwl-shortcode.php:455
#: plugin-options/wishlist_page-options.php:147
msgid "Tweet on Twitter"
msgstr "Auf Twitter teilen"

#: includes/class-yith-wcwl-shortcode.php:473
#: plugin-options/wishlist_page-options.php:156
msgid "Pin on Pinterest"
msgstr "Auf Pinterest teilen"

#: includes/class-yith-wcwl-shortcode.php:487
msgid "Share via email"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:510
#: plugin-options/wishlist_page-options.php:174
msgid "Share on WhatsApp"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:621
msgid "Remove from list"
msgstr ""

#: includes/class-yith-wcwl-wishlist-item.php:189
msgid "Free!"
msgstr "Kostenlos!"

#: includes/class-yith-wcwl.php:164
msgid "The item cannot be added to this wishlist"
msgstr ""

#: includes/class-yith-wcwl.php:168 includes/class-yith-wcwl.php:174
msgid "An error occurred while adding the products to the wishlist."
msgstr ""

#: includes/class-yith-wcwl.php:235 includes/class-yith-wcwl.php:241
msgid "Error. Unable to remove the product from the wishlist."
msgstr "Fehler: Artikel konnte nicht von der Wunschliste entfernt werden."

#: includes/data-stores/class-yith-wcwl-wishlist-data-store.php:152
#: includes/data-stores/class-yith-wcwl-wishlist-data-store.php:174
msgid "Invalid wishlist."
msgstr ""

#: includes/data-stores/class-yith-wcwl-wishlist-item-data-store.php:119
msgid "Invalid wishlist item."
msgstr ""

#. translators: 1. Number of users.
#: includes/functions-yith-wcwl.php:249
msgid "%d user"
msgid_plural "%d users"
msgstr[0] ""
msgstr[1] ""

#: includes/functions-yith-wcwl.php:250
msgid "has this item in wishlist"
msgid_plural "have this item in wishlist"
msgstr[0] ""
msgstr[1] ""

#: includes/functions-yith-wcwl.php:252
msgid "You're the first"
msgstr ""

#: includes/functions-yith-wcwl.php:253
msgid "to add this item in wishlist"
msgstr ""

#. translators: 1. Count of users when many, or "another" when only one.
#: includes/functions-yith-wcwl.php:257
msgid "You and %s user"
msgid_plural "You and %d users"
msgstr[0] ""
msgstr[1] ""

#: includes/functions-yith-wcwl.php:257
msgid "another"
msgstr ""

#: includes/functions-yith-wcwl.php:258
msgid "have this item in wishlist"
msgstr ""

#: includes/functions-yith-wcwl.php:425
msgid "None"
msgstr ""

#: includes/functions-yith-wcwl.php:426
#, fuzzy
msgid "Custom"
msgstr "Benutzerdefiniertes CSS"

#: includes/functions-yith-wcwl.php:447
msgid "Shared"
msgstr "geteilt"

#: includes/functions-yith-wcwl.php:451
msgid "Only people with a link to this list can see it"
msgstr ""

#: includes/functions-yith-wcwl.php:457
msgid "Private"
msgstr "Privat"

#: includes/functions-yith-wcwl.php:461
msgid "Only you can see this list"
msgstr ""

#: includes/functions-yith-wcwl.php:467
msgid "Public"
msgstr "Öffentlich"

#: includes/functions-yith-wcwl.php:471
msgid "Anyone can search for and see this list"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:118
#: plugin-options/add_to_wishlist-options.php:127
msgid "Add to wishlist"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:128
#: plugin-options/add_to_wishlist-options.php:143
msgid "Browse wishlist"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:138
#, fuzzy
msgid "Product already in wishlist"
msgstr "Artikel ist bereits auf der Wunschliste Text"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:148
#, fuzzy
msgid "Product added to wishlist"
msgstr "Artikel ist bereits auf der Wunschliste Text"

#: init.php:160
#, fuzzy
msgid "is enabled but not effective. It requires WooCommerce to work."
msgstr "YITH Wishlist erfordert WooCommerce"

#: init.php:176
msgid "You can't activate the free version of"
msgstr ""

#: init.php:176
msgid "while you are using the premium one."
msgstr ""

#: plugin-options/add_to_wishlist-options.php:20
#: plugin-options/settings-options.php:27
msgid "General Settings"
msgstr "Allgemeine Einstellungen"

#: plugin-options/add_to_wishlist-options.php:27
msgid "After product is added to wishlist"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:28
msgid ""
"Choose the look of the Wishlist button when the product has already been "
"added to a wishlist"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:32
#, fuzzy
msgid "Show \"Add to wishlist\" button"
msgstr "Artikel ist bereits auf der Wunschliste Text"

#: plugin-options/add_to_wishlist-options.php:33
msgid "Show \"View wishlist\" link"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:34
msgid "Show \"Remove from list\" link"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:48
msgid "Loop settings"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:50
msgid ""
"Loop options will be visible on Shop page, category pages, product "
"shortcodes, products sliders, and all the other places where the WooCommerce "
"products' loop is used"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:55
msgid "Show \"Add to wishlist\" in loop"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:56
msgid "Enable the \"Add to wishlist\" feature in WooCommerce products' loop"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:64
msgid "Position of \"Add to wishlist\" in loop"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:65
msgid ""
"Choose where to show \"Add to wishlist\" button or link in WooCommerce "
"products' loop. <span class=\"addon\">Copy this shortcode <span class=\"code"
"\"><code>[yith_wcwl_add_to_wishlist]</code></span> and paste it where you "
"want to show the \"Add to wishlist\" link or button</span>"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:72
msgid "On top of the image"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:73
msgid "Before \"Add to cart\" button"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:74
msgid "After \"Add to cart\" button"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:75
#: plugin-options/add_to_wishlist-options.php:107
msgid "Use shortcode"
msgstr "Benutze Shortcodes"

#: plugin-options/add_to_wishlist-options.php:89
msgid "Product page settings"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:96
msgid "Position of \"Add to wishlist\" on product page"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:97
msgid ""
"Choose where to show \"Add to wishlist\" button or link on the product page. "
"<span class=\"addon\">Copy this shortcode <span class=\"code"
"\"><code>[yith_wcwl_add_to_wishlist]</code></span> and paste it where you "
"want to show the \"Add to wishlist\" link or button</span>"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:104
msgid "After \"Add to cart\""
msgstr "Nach \"in den Warenkorb\""

#: plugin-options/add_to_wishlist-options.php:105
msgid "After thumbnails"
msgstr "Nach dem Vorschaubild"

#: plugin-options/add_to_wishlist-options.php:106
msgid "After summary"
msgstr "Nach der Zusammenfassung"

#: plugin-options/add_to_wishlist-options.php:117
#: plugin-options/wishlist_page-options.php:222
msgid "Text customization"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:124
msgid "\"Add to wishlist\" text"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:125
msgid "Enter a text for \"Add to wishlist\" button"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:132
msgid "\"Product added\" text"
msgstr "Artikel hinzugefügt Text"

#: plugin-options/add_to_wishlist-options.php:133
msgid ""
"Enter the text of the message displayed when the user adds a product to the "
"wishlist"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:135
msgid "Product added!"
msgstr "Artikel hinzugefügt!"

#: plugin-options/add_to_wishlist-options.php:140
msgid "\"Browse wishlist\" text"
msgstr "\"Wunschliste durchsuchen\" Text"

#: plugin-options/add_to_wishlist-options.php:141
msgid "Enter a text for the \"Browse wishlist\" link on the product page"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:148
msgid "\"Product already in wishlist\" text"
msgstr "Artikel ist bereits auf der Wunschliste Text"

#: plugin-options/add_to_wishlist-options.php:149
msgid ""
"Enter the text for the message displayed when the user views a product that "
"is already in the wishlist"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:151
msgid "The product is already in your wishlist!"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:161
msgid "Style & Color customization"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:168
msgid "Style of \"Add to wishlist\""
msgstr ""

#: plugin-options/add_to_wishlist-options.php:169
msgid ""
"Choose if you want to show a textual \"Add to wishlist\" link or a button"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:172
#: plugin-options/wishlist_page-options.php:261
msgid "Textual (anchor)"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:173
#: plugin-options/wishlist_page-options.php:262
msgid "Button with theme style"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:174
#: plugin-options/wishlist_page-options.php:263
msgid "Button with custom style"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:182
msgid "\"Add to wishlist\" button style"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:188
msgid "Choose colors for the \"Add to wishlist\" button"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:190
#: plugin-options/wishlist_page-options.php:279
#: plugin-options/wishlist_page-options.php:368
#: plugin-options/wishlist_page-options.php:417
#: plugin-options/wishlist_page-options.php:465
#: plugin-options/wishlist_page-options.php:552
#: plugin-options/wishlist_page-options.php:592
#: plugin-options/wishlist_page-options.php:632
#: plugin-options/wishlist_page-options.php:672
#: plugin-options/wishlist_page-options.php:712
msgid "Background"
msgstr "Hintergrund"

#: plugin-options/add_to_wishlist-options.php:195
#: plugin-options/wishlist_page-options.php:284
#: plugin-options/wishlist_page-options.php:373
#: plugin-options/wishlist_page-options.php:422
#: plugin-options/wishlist_page-options.php:470
#: plugin-options/wishlist_page-options.php:507
msgid "Text"
msgstr "Text"

#: plugin-options/add_to_wishlist-options.php:200
#: plugin-options/wishlist_page-options.php:289
#: plugin-options/wishlist_page-options.php:378
#: plugin-options/wishlist_page-options.php:427
#: plugin-options/wishlist_page-options.php:475
msgid "Border"
msgstr "Rand"

#: plugin-options/add_to_wishlist-options.php:206
msgid "Choose colors for the \"Add to wishlist\" button on hover state"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:208
#: plugin-options/wishlist_page-options.php:297
#: plugin-options/wishlist_page-options.php:386
#: plugin-options/wishlist_page-options.php:435
msgid "Background Hover"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:213
#: plugin-options/wishlist_page-options.php:302
#: plugin-options/wishlist_page-options.php:391
#: plugin-options/wishlist_page-options.php:440
msgid "Text Hover"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:218
#: plugin-options/wishlist_page-options.php:307
#: plugin-options/wishlist_page-options.php:396
#: plugin-options/wishlist_page-options.php:445
msgid "Border Hover"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:231
#: plugin-options/wishlist_page-options.php:320
msgid "Border radius"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:232
msgid "Choose radius for the \"Add to wishlist\" button"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:246
msgid "\"Add to wishlist\" icon"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:247
msgid "Select an icon for the \"Add to wishlist\" button (optional)"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:257
msgid "\"Add to wishlist\" custom icon"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:258
#: plugin-options/add_to_wishlist-options.php:282
msgid ""
"Upload an icon you'd like to use for \"Add to wishlist\" button (suggested "
"32px x 32px)"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:270
msgid "\"Added to wishlist\" icon"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:271
msgid "Select an icon for the \"Added to wishlist\" button (optional)"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:277
msgid "Same used for Add to wishlist"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:281
msgid "\"Added to wishlist\" custom icon"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:294
msgid "Custom CSS"
msgstr "Benutzerdefiniertes CSS"

#: plugin-options/add_to_wishlist-options.php:295
msgid "Enter custom CSS to be applied to Wishlist elements (optional)"
msgstr ""

#: plugin-options/lists-options.php:34
msgid "Search list"
msgstr ""

#. translators: 1. Anchor to Frequently Bought Together landing page on
#. yithemes.com.
#: plugin-options/settings-options.php:19
msgid ""
"If you want to take advantage of this feature, you could consider purchasing "
"the %s."
msgstr ""

#: plugin-options/settings-options.php:34
msgid "Enable AJAX loading"
msgstr ""

#: plugin-options/settings-options.php:35
msgid "Load any cacheable wishlist item via AJAX"
msgstr ""

#: plugin-options/settings-options.php:48
msgid "YITH WooCommerce Frequently Bought Together Integration"
msgstr "YITH WooCommerce Frequently Bought Together integration"

#. translators: 1. Url to Frequently Bought Together landing page on
#. yithemes.com.
#: plugin-options/settings-options.php:51
msgid ""
"In order to use this integration you have to install and activate YITH "
"WooCommerce Frequently Bought Together. <a href=\"%s\">Learn more</a>"
msgstr ""

#: plugin-options/settings-options.php:56
msgid "Enable slider in wishlist"
msgstr "Slider in Wunschliste aktivieren"

#. translators: 1. Example image of the integration. 2. CTA to buy Frequently
#. Bought Together.
#: plugin-options/settings-options.php:58
msgid ""
"Enable the slider with linked products on the Wishlist page (<a href=\"%1$s"
"\" class=\"thickbox\">Example</a>). %2$s"
msgstr ""

#: plugin-options/wishlist_page-options.php:19
msgid "All your wishlists"
msgstr ""

#: plugin-options/wishlist_page-options.php:26
msgid "Wishlist page"
msgstr ""

#: plugin-options/wishlist_page-options.php:27
msgid ""
"Pick a page as the main Wishlist page; make sure you add the <span class="
"\"code\"><code>[yith_wcwl_wishlist]</code></span> shortcode into the page "
"content"
msgstr ""

#: plugin-options/wishlist_page-options.php:40
msgid "Wishlist Detail Page"
msgstr ""

#: plugin-options/wishlist_page-options.php:47
#: plugin-options/wishlist_page-options.php:56
#: plugin-options/wishlist_page-options.php:65
#: plugin-options/wishlist_page-options.php:74
#: plugin-options/wishlist_page-options.php:83
#: plugin-options/wishlist_page-options.php:92
#: plugin-options/wishlist_page-options.php:101
msgid "In wishlist table show"
msgstr ""

#: plugin-options/wishlist_page-options.php:48
msgid "Product variations selected by the user (example: size or color)"
msgstr ""

#: plugin-options/wishlist_page-options.php:57
msgid "Product price"
msgstr ""

#: plugin-options/wishlist_page-options.php:66
msgid "Product stock (show if the product is available or not)"
msgstr ""

#: plugin-options/wishlist_page-options.php:75
msgid "Date on which the product was added to the wishlist"
msgstr ""

#: plugin-options/wishlist_page-options.php:84
msgid "Add to cart option for each product"
msgstr ""

#: plugin-options/wishlist_page-options.php:93
msgid ""
"Icon to remove the product from the wishlist - to the left of the product"
msgstr ""

#: plugin-options/wishlist_page-options.php:102
msgid ""
"Button to remove the product from the wishlist - to the right of the product"
msgstr ""

#: plugin-options/wishlist_page-options.php:110
msgid "Redirect to cart"
msgstr "Zum Warenkorb weiterleiten"

#: plugin-options/wishlist_page-options.php:111
msgid ""
"Redirect users to the cart page when they add a product to the cart from the "
"wishlist page"
msgstr ""

#: plugin-options/wishlist_page-options.php:119
msgid "Remove if added to the cart"
msgstr "Entfernen wenn zum Warenkorb hinzugefügt"

#: plugin-options/wishlist_page-options.php:120
msgid ""
"Remove the product from the wishlist after it has been added to the cart"
msgstr ""

#: plugin-options/wishlist_page-options.php:128
msgid "Share wishlist"
msgstr ""

#: plugin-options/wishlist_page-options.php:129
msgid "Enable this option to let users share their wishlist on social media"
msgstr ""

#: plugin-options/wishlist_page-options.php:137
#: plugin-options/wishlist_page-options.php:146
#: plugin-options/wishlist_page-options.php:155
#: plugin-options/wishlist_page-options.php:164
#: plugin-options/wishlist_page-options.php:173
msgid "Share on social media"
msgstr ""

#: plugin-options/wishlist_page-options.php:165
msgid "Share by email"
msgstr ""

#: plugin-options/wishlist_page-options.php:182
msgid "Share by URL"
msgstr ""

#: plugin-options/wishlist_page-options.php:183
msgid "Show \"Share URL\" field on wishlist page"
msgstr ""

#: plugin-options/wishlist_page-options.php:191
msgid "Sharing title"
msgstr ""

#: plugin-options/wishlist_page-options.php:192
msgid "Wishlist title used for sharing (only used on Twitter and Pinterest)"
msgstr ""

#. translators: 1. Blog name.
#: plugin-options/wishlist_page-options.php:195
msgid "My wishlist on %s"
msgstr "Meine Wunschliste bei %s"

#: plugin-options/wishlist_page-options.php:200
msgid "Social text"
msgstr "Social Text"

#: plugin-options/wishlist_page-options.php:201
msgid ""
"Type the message you want to publish when you share your wishlist on Twitter "
"and Pinterest"
msgstr ""

#: plugin-options/wishlist_page-options.php:209
msgid "Social image URL"
msgstr "Social Bild URL"

#: plugin-options/wishlist_page-options.php:210
msgid "It will be used to pin the wishlist on Pinterest."
msgstr ""

#: plugin-options/wishlist_page-options.php:229
msgid "Default wishlist name"
msgstr ""

#: plugin-options/wishlist_page-options.php:230
msgid ""
"Enter a name for the default wishlist. This is the wishlist that will be "
"automatically generated for all users if they do not create any custom one"
msgstr ""

#: plugin-options/wishlist_page-options.php:232
#, fuzzy
msgid "My wishlist"
msgstr "Meine Wunschliste bei %s"

#: plugin-options/wishlist_page-options.php:237
msgid "\"Add to cart\" text"
msgstr ""

#: plugin-options/wishlist_page-options.php:238
msgid "Enter a text for the \"Add to cart\" button"
msgstr ""

#: plugin-options/wishlist_page-options.php:250
msgid "Style & color customization"
msgstr ""

#: plugin-options/wishlist_page-options.php:257
msgid "Style of \"Add to cart\""
msgstr ""

#: plugin-options/wishlist_page-options.php:258
msgid "Choose whether to show a textual \"Add to cart\" link or a button"
msgstr ""

#: plugin-options/wishlist_page-options.php:271
msgid "\"Add to cart\" button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:277
msgid "Choose the colors for the \"Add to cart\" button"
msgstr ""

#: plugin-options/wishlist_page-options.php:295
msgid "Choose colors for the \"Add to cart\" button on hover state"
msgstr ""

#: plugin-options/wishlist_page-options.php:321
msgid "Set the radius for the \"Add to cart\" button"
msgstr ""

#: plugin-options/wishlist_page-options.php:335
msgid "\"Add to cart\" icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:336
msgid "Select an icon for the \"Add to cart\" button (optional)"
msgstr ""

#: plugin-options/wishlist_page-options.php:351
msgid "\"Add to cart\" custom icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:352
msgid ""
"Upload an icon you'd like to use for the \"Add to cart\" button (suggested "
"32px x 32px)"
msgstr ""

#: plugin-options/wishlist_page-options.php:360
msgid "Primary button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:366
msgid ""
"Choose colors for the primary button<br/><small>This style will be applied "
"to \"Edit title\" button on Wishlist view, \"Submit Changes\" button on "
"Manage view and \"Search wishlist\" button on Search view</small>"
msgstr ""

#: plugin-options/wishlist_page-options.php:384
msgid ""
"Choose colors for the primary button on hover state<br/><small>This style "
"will be applied to \"Edit title\" button on Wishlist view, \"Submit Changes"
"\" button on Manage view and \"Search wishlist\" button on Search view</"
"small>"
msgstr ""

#: plugin-options/wishlist_page-options.php:409
msgid "Secondary button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:415
#: plugin-options/wishlist_page-options.php:433
msgid ""
"Choose colors of the secondary button<br/><small>This style will be applied "
"to the buttons that allow showing and hiding the Edit title form on Wishlist "
"view and \"Create new Wishlist\" button on Manage view</small>"
msgstr ""

#: plugin-options/wishlist_page-options.php:458
msgid "Wishlist table style"
msgstr ""

#: plugin-options/wishlist_page-options.php:459
msgid ""
"Choose the colors for the wishlist table (when set to \"Traditional\" layout)"
msgstr ""

#: plugin-options/wishlist_page-options.php:487
msgid "Highlight color"
msgstr ""

#: plugin-options/wishlist_page-options.php:488
msgid ""
"Choose the color for all sections with background<br/><small>This color will "
"be used as background for the wishlist table heading and footer (when set to "
"\"Traditional\" layout), and for various form across wishlist views</small>"
msgstr ""

#: plugin-options/wishlist_page-options.php:500
msgid "Share button text color"
msgstr ""

#: plugin-options/wishlist_page-options.php:501
msgid "Choose colors for share buttons text"
msgstr ""

#: plugin-options/wishlist_page-options.php:512
msgid "Text hover"
msgstr ""

#: plugin-options/wishlist_page-options.php:525
msgid "Facebook share button icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:526
msgid "Select an icon for the Facebook share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:536
msgid "Facebook share button custom icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:537
msgid ""
"Upload an icon you'd like to use for Facebook share button (suggested 32px x "
"32px)"
msgstr ""

#: plugin-options/wishlist_page-options.php:545
msgid "Facebook share button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:546
msgid "Choose colors for Facebook share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:557
#: plugin-options/wishlist_page-options.php:597
#: plugin-options/wishlist_page-options.php:637
#: plugin-options/wishlist_page-options.php:677
#: plugin-options/wishlist_page-options.php:717
msgid "Background hover"
msgstr ""

#: plugin-options/wishlist_page-options.php:565
msgid "Twitter share button icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:566
msgid "Select an icon for the Twitter share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:576
msgid "Twitter share button custom icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:577
msgid ""
"Upload an icon you'd like to use for Twitter share button (suggested 32px x "
"32px)"
msgstr ""

#: plugin-options/wishlist_page-options.php:585
msgid "Twitter share button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:586
msgid "Choose colors for Twitter share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:605
msgid "Pinterest share button icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:606
msgid "Select an icon for the Pinterest share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:616
msgid "Pinterest share button custom icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:617
msgid ""
"Upload an icon you'd like to use for Pinterest share button (suggested 32px "
"x 32px)"
msgstr ""

#: plugin-options/wishlist_page-options.php:625
msgid "Pinterest share button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:626
msgid "Choose colors for Pinterest share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:645
msgid "Email share button icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:646
msgid "Select an icon for the Email share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:656
msgid "Email share button custom icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:657
msgid ""
"Upload an icon you'd like to use for the Email share button (suggested 32px "
"x 32px)"
msgstr ""

#: plugin-options/wishlist_page-options.php:665
msgid "Email share button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:666
msgid "Choose colors for the Email share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:685
msgid "WhatsApp share button icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:686
msgid "Select an icon for the WhatsApp share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:696
msgid "WhatsApp share button custom icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:697
msgid ""
"Upload an icon you'd like to use for WhatsApp share button (suggested 32px x "
"32px)"
msgstr ""

#: plugin-options/wishlist_page-options.php:705
msgid "WhatsApp share button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:706
msgid "Choose colors for WhatsApp share button"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:168
#: templates/admin/wishlist-panel-premium.php:309
msgid ""
"Upgrade to the %1$spremium version%2$s%3$sof %1$sYITH WooCommerce Wishlist"
"%2$s to benefit from all features!"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:170
#: templates/admin/wishlist-panel-premium.php:311
msgid "Upgrade"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:176
msgid "Premium Features"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:180
msgid "Allow your customers to create multiple wishlists"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:182
msgid ""
"Christmas, Birthday... users will be able to create and manage multiple "
"wishlists, in case they prefer to keep the products sorted by category or "
"other parameters."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:185
msgid "Multiple Wishlist"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:192
msgid "Wishlist Private"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:196
msgid "A transparent privacy management"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:198
msgid ""
"Your customers can set a privacy option for each wishlist and choose whether "
"sharing the wishlist or making it private."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:206
msgid ""
"Allow your customers to ask for an estimate, directly from their wishlist "
"page"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:208
msgid ""
"And give only registered users the privilege to use the wishlist "
"functionalities."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:211
msgid "Estimate Cost"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:218
msgid "Admin Panel"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:222
msgid "An advanced and more versatile management of the wishlist"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:224
msgid ""
"Your customers can sort the products in the wishlist thanks to the drag&drop "
"option, move products from one wishlist to another, manage product quantity, "
"download the wishlist content to a .pdf file, share the wishlist on their "
"social networks, and much more!"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:232
msgid "Monitor your customers’ wishlists and the popular products"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:234
msgid ""
"You can see your customers’ wishlists, gain insight into the products they "
"are more interested in and plan targeted marketing strategies."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:237
msgid "Search Wishlists"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:244
msgid "'ADD TO CART'"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:248
msgid ""
"Send promotional emails for products in wishlists to push customers to buy"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:250
msgid ""
"Just three clicks to send promotional emails with discount coupons to "
"customers who have added specific products to their wishlist and push them "
"to buy."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:258
msgid "Let users buy the product right from the wishlist page"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:260
msgid ""
"Let them move products from one wishlist to the cart in one click, keeping "
"also the information about the size, colour or quantity selected when added "
"to the wishlist."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:263
msgid "DISABLE WISHLIST"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:271
msgid "Choose a charming layout for your wishlist page"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:273
msgid ""
"The wishlist is one of the most used functionalities in an ecommerce store "
"but often the page layout is not enhanced enough and looks unattractive to "
"the user. With our plugin, you can choose among some alternative layouts and "
"offer an even more interesting experience to users who creates a wishlist on "
"your website."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:276
msgid "UNLOGGED USERS"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:284
msgid "Wishlist widgets for the header and sidebars"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:286
msgid ""
"Increase the wishlist visibility through our modern widgets that you can use "
"in the header, in the sidebars, wherever you want."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:289
msgid "POPULAR TABLE"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:296
msgid "FUNCTIONALITIES"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:300
msgid "Allow users to monitor the price of the products in their wishlist"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:302
msgid ""
"We took inspiration from one of the most interesting features of Amazon "
"product pages: from now on, users can realise what’s the best time to buy a "
"product and how much they can save when there’s a promotion running or a "
"discount on the product they’ve added to the wishlist."
msgstr ""

#: templates/share.php:51 templates/share.php:52
msgid "Facebook"
msgstr "Facebook"

#: templates/share.php:59 templates/share.php:60
msgid "Twitter"
msgstr "Twitter"

#: templates/share.php:67 templates/share.php:68
msgid "Pinterest"
msgstr "Pinterest"

#: templates/share.php:75 templates/share.php:76
msgid "Email"
msgstr "EMail"

#: templates/share.php:83
msgid "WhatsApp"
msgstr ""

#: templates/share.php:84
msgid "Whatsapp"
msgstr ""

#: templates/share.php:93
msgid "(Now"
msgstr ""

#: templates/share.php:93
msgid "copy"
msgstr ""

#: templates/share.php:93
msgid "this wishlist link and share it anywhere)"
msgstr ""

#: templates/wishlist-view-footer-mobile.php:44
#: templates/wishlist-view-footer.php:44
msgid "Apply this action to all the selected items:"
msgstr ""

#: templates/wishlist-view-footer-mobile.php:49
#: templates/wishlist-view-footer.php:49
msgid "Remove from wishlist"
msgstr ""

#. translators: 1. Wishlist formatted name.
#: templates/wishlist-view-footer-mobile.php:67
#: templates/wishlist-view-footer.php:67
msgid "Move to %s"
msgstr ""

#: templates/wishlist-view-footer-mobile.php:73
#: templates/wishlist-view-footer.php:73
msgid "Apply"
msgstr ""

#: templates/wishlist-view-footer-mobile.php:81
#: templates/wishlist-view-footer.php:81
msgid "Update"
msgstr ""

#: templates/wishlist-view-footer-mobile.php:87
#: templates/wishlist-view-footer.php:103
msgid "Add all to cart"
msgstr ""

#: templates/wishlist-view-header.php:48
msgid "Edit title"
msgstr "Titel bearbeiten"

#: templates/wishlist-view-mobile.php:136
msgid "Added on:"
msgstr ""

#: templates/wishlist-view-mobile.php:147
msgid "Price:"
msgstr ""

#: templates/wishlist-view-mobile.php:174
msgid "Quantity:"
msgstr ""

#: templates/wishlist-view-mobile.php:189
msgid "Stock:"
msgstr ""

#: templates/wishlist-view-mobile.php:192 templates/wishlist-view.php:229
msgid "Out of stock"
msgstr ""

#: templates/wishlist-view-mobile.php:192 templates/wishlist-view.php:229
msgid "In Stock"
msgstr "Auf Lager"

#: templates/wishlist-view-mobile.php:212 templates/wishlist-view.php:262
msgid "Move"
msgstr "Verschieben"

#: templates/wishlist-view-mobile.php:233 templates/wishlist-view.php:283
msgid "Move to another list &rsaquo;"
msgstr ""

#: templates/wishlist-view-mobile.php:241 templates/wishlist-view.php:157
#: templates/wishlist-view.php:293
msgid "Remove this product"
msgstr "Artikel entfernen"

#: templates/wishlist-view-mobile.php:252 templates/wishlist-view.php:313
msgid "No products added to the wishlist"
msgstr ""

#: templates/wishlist-view.php:79
msgid "Product name"
msgstr ""

#: templates/wishlist-view.php:87
msgid "Unit price"
msgstr ""

#: templates/wishlist-view.php:96
msgid "Quantity"
msgstr ""

#: templates/wishlist-view.php:105
msgid "Stock status"
msgstr ""

#: templates/wishlist-view.php:123
msgid "Arrange"
msgstr ""

#. translators: date added label: 1 date added.
#: templates/wishlist-view.php:243
msgid "Added on: %s"
msgstr ""

#: templates/wishlist-view.php:293
msgid "Remove"
msgstr "Entfernen"

#. Description of the plugin/theme
msgid ""
"<code><strong>YITH WooCommerce Wishlist</strong></code> gives your users the "
"possibility to create, fill, manage and share their wishlists allowing you "
"to analyze their interests and needs to improve your marketing strategies. "
"<a href=\"https://yithemes.com/\" target=\"_blank\">Get more plugins for "
"your e-commerce on <strong>YITH</strong></a>"
msgstr ""

#: includes/class-yith-wcwl-admin.php:261
msgctxt "[HELP TAB] Video title"
msgid ""
"Check this video to learn how to <b>configure wishlist and customize options:"
"</b>"
msgstr ""

#: includes/class-yith-wcwl-install.php:340
msgctxt "page_slug"
msgid "wishlist"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:230
msgctxt "date when wishlist was created"
msgid "Created on"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:52
msgctxt "[gutenberg]: block name"
msgid "YITH Add to wishlist"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:101
msgctxt "[gutenberg]: block name"
msgid "YITH Wishlist"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:53
msgctxt "[gutenberg]: block description"
msgid "Shows Add to wishlist button"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:102
msgctxt "[gutenberg]: block description"
msgid "Shows a list of products in wishlist"
msgstr ""

#. translators: 1. % of reduction/increase in price.
#: includes/class-yith-wcwl-wishlist-item.php:428
msgctxt ""
"Part of the template that shows price variation since addition to list; "
"placeholder will be replaced with a percentage"
msgid "Price is %1$s%%"
msgstr ""

#. translators: 2: original product price.
#: includes/class-yith-wcwl-wishlist-item.php:430
msgctxt ""
"Part of the template that shows price variation since addition to list; "
"placeholder will be replaced with a price"
msgid "(Was %2$s when added  in list)"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:45
msgctxt "Elementor widget name"
msgid "YITH Wishlist Add button"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:45
#, fuzzy
msgctxt "Elementor widget name"
msgid "YITH Wishlist"
msgstr "Wunschliste"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:87
#, fuzzy
msgctxt "Elementor section title"
msgid "Product"
msgstr "Artikel hinzugefügt!"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:107
msgctxt "Elementor section title"
msgid "Labels"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:157
msgctxt "Elementor section title"
msgid "Advanced"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:87
#, fuzzy
msgctxt "Elementor section title"
msgid "Wishlist"
msgstr "Wunschliste"

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:107
msgctxt "Elementor section title"
msgid "Pagination"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:95
#, fuzzy
msgctxt "Elementor control label"
msgid "Product ID"
msgstr "Artikel hinzugefügt!"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:115
msgctxt "Elementor control label"
msgid "Button label"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:125
#, fuzzy
msgctxt "Elementor control label"
msgid "\"Browse wishlist\" label"
msgstr "\"Wunschliste durchsuchen\" Text"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:135
#, fuzzy
msgctxt "Elementor control label"
msgid "\"Product already in wishlist\" label"
msgstr "Artikel ist bereits auf der Wunschliste Text"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:145
#, fuzzy
msgctxt "Elementor control label"
msgid "\"Product added to wishlist\" label"
msgstr "Artikel ist bereits auf der Wunschliste Text"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:165
msgctxt "Elementor control label"
msgid "URL of the wishlist page"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:175
msgctxt "Elementor control label"
msgid "Icon for the button"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:185
msgctxt "Elementor control label"
msgid "Additional CSS classes for the button"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:95
#, fuzzy
msgctxt "Elementor control label"
msgid "Wishlist ID"
msgstr "Wunschliste"

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:115
msgctxt "Elementor control label"
msgid "Paginate items"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:128
msgctxt "yith-woocommerce-wishlist"
msgid "Items per page"
msgstr ""

#~ msgid "My wishlist on "
#~ msgstr "Meine Wunschliste bei %s"

#~ msgid "YITH WooCommerce Wishlist"
#~ msgstr "YITH WooCommerce Wunschliste"

#~ msgid "Save"
#~ msgstr "Speichern"

#~ msgid "Cancel"
#~ msgstr "Abbrechen"

#~ msgid "Ask for an estimate"
#~ msgstr "Nach einem Angebot Fragen"
PK`x1\���,languages/yith-woocommerce-wishlist-ko_KR.monu�[�����8�O����"
(6B
Vd
u�
��
���6�
#,2CLQc
u�	��������/CXi	{�������l�
CQZ	k7u�(��2BXj����
� ��

'
54
j

y

�
�
�
�
�
�
"�
�
,=Rgo1����#�
"@Xo
x��
��
��������7�!1,%"67/# -3(&45.+*)2
$08'	
"Browse wishlist" text"Product added" text"Product already in wishlist" text'ADD TO CART'Admin PanelAfter "Add to cart"After summaryAfter thumbnailsBackgroundBorderCustom CSSDISABLE WISHLISTEdit titleEmailEnable slider in wishlistError. Unable to remove the product from the wishlist.Estimate CostFUNCTIONALITIESFacebookFree!General SettingsIn StockMoveMultiple WishlistMy wishlist on %sPOPULAR TABLEPin on PinterestPinterestPremium FeaturesPremium VersionPrivateProduct added!Product successfully removed.PublicRedirect to cartRemoveRemove if added to the cartRemove this productRemoved wishlist %s.Search WishlistsShare on FacebookShare on:SharedSocial image URLSocial textTextTweet on TwitterTwitterUNLOGGED USERSUpgrade to the %1$spremium version%2$s%3$sof %1$sYITH WooCommerce Wishlist%2$s to benefit from all features!Use shortcodeWishlistWishlist PrivateWishlistsYITH WooCommerce Frequently Bought Together IntegrationProject-Id-Version: YITH WooCommerce Wishlist
Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/yith-woocommerce-wishlist
POT-Creation-Date: 2021-11-11 13:53:53+00:00
PO-Revision-Date: 2020-10-16 14:05+0200
Last-Translator: Valentyn Zubenko <valentyn.zubenko@gmail.com>
Language-Team: Your Inspiration Themes <plugins@yithemes.com>
Language: uk_UA
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Generator: Poedit 2.4.1
X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;_n:1,2;__ngettext:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2
X-Poedit-Basepath: .
Plural-Forms: nplurals=2; plural=n!=1;
X-Poedit-SourceCharset: UTF-8
X-Poedit-SearchPath-0: ..
X-Poedit-SearchPathExcluded-0: ../plugin-fw
"위시리스트 둘러보기" 텍스트"상품 추가" 텍스트 "위시리스트에 이미 있습니다" 텍스트'장바구니 담기'관리자 패널 장바구니 담기 뒤에써머리 뒤에썸네일 뒤에백그라운드 경계 커스텀 CSS위시리스트 사용 불가능타이틀 편집 이메일 위시리스트내 슬라이더 사용 에러, 위시리스트에서 상품제거 불가능 견적 가격 기능들 페이스북 프리!일반 설정 재고 있음 이동 다중 관심상품 나의 위시리스트 목록 @ %s인기상품 나타내기핀레스트에 핀하기핀테레스트 프리미엄 기능 프리미엄 버전 개인 상품이 추가됨!상품이 성공적으로 제거 되었습니다.공용 장바구니로 다시돌리기제거 장바구니에 담고나면 제거이 상품 제거 나의 위시리스트 목록 @ %s위시리스트 찾기 페이스북에 공유공유: 공유됨 소셜 이미지 URL소셜 텍스트 텍스트 트위터에 트윗하기트위터 비로그인 사용자 %1$s프리미업 버전%2$s%3$s %1$sYITH WooCommerce Wishlist%2$s 모든 기능의 장점을 사용하기위해 업그레이드 하십시요!숏코드를 사용 위시리스개인 위시리스트  위시리스YITH WooCommerce 와  함께 자주 구매되는 연결PK`x1\�)(��)languages/yith-woocommerce-wishlist-hr.monu�[�����4�G\xy�"�
���
�
 
'2
CN6h
��������
%6FN]{�������	$05FlU
���	�7�>,!k�0���
$3DMSd|�7���


	
	'
1
J
b
w
�
�
�
�
�
�
�
 )?Wm�������Q�IZg}#�34)/" !&2+(.*1'
%#-
0,$	"Browse wishlist" text"Product added" text"Product already in wishlist" text'ADD TO CART'Admin PanelAfter "Add to cart"After summaryAfter thumbnailsBackgroundBorderCustom CSSDISABLE WISHLISTEdit titleEnable slider in wishlistError. Unable to remove the product from the wishlist.Estimate CostFUNCTIONALITIESFree!General SettingsIn StockMoveMultiple WishlistMy wishlist on %sPOPULAR TABLEPin on PinterestPremium FeaturesPremium VersionPrivateProduct added!Product successfully removed.PublicRedirect to cartRemoveRemove if added to the cartRemove this productRemoved wishlist %s.Search WishlistsShare on FacebookShare on:SharedSocial image URLSocial textTextTweet on TwitterUNLOGGED USERSUpgrade to the %1$spremium version%2$s%3$sof %1$sYITH WooCommerce Wishlist%2$s to benefit from all features!Use shortcodeWishlistWishlist PrivateWishlistsYITH WooCommerce Frequently Bought Together IntegrationProject-Id-Version: YITH WooCommerce Wishlist
Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/yith-woocommerce-wishlist
POT-Creation-Date: 2021-11-11 13:53:53+00:00
PO-Revision-Date: 2020-10-16 14:05+0200
Last-Translator: 
Language-Team: Your Inspiration Themes <plugins@yithemes.com>
Language: hr_HR
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Generator: Poedit 2.4.1
X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;_n:1,2;__ngettext:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2
X-Poedit-Basepath: .
Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);
X-Poedit-SourceCharset: UTF-8
X-Poedit-SearchPath-0: ..
X-Poedit-SearchPathExcluded-0: ../plugin-fw
Tekst za "Pregledaj listu želja"Tekst za "Proizvod je dodan"Tekst za "Proizvod je već dodan u listu želja"'DODAJ U KOŠARICU'Upravljačka ploča AdminaNakon "Dodaj u košaricu"Nakon sažetkaNakon minijaturaPozadinaObrubPrilagođeni CSSONEMOGUĆI LISTU ŽELJAUredi naslovOmogući slider u listi željaGreška. Proizvod se ne može obrisati iz liste želja.Procjena troškaFUNKCIONALNOSTIBesplatno!Osnovne postavkeNa zalihiPremjestiVišestruka Lista željaMoja lista želja na %sTABLICA POPULARNOSTIPinaj na PinterestuPremium dodaciPremium verzijaPrivatnoProizvod je dodan!Proizvod uspješno obrisan.JavnoPreusmjeri na košaricuObrišiObriši ako je dodan u košaricuObriši ovaj proizvodMoja lista želja na %sPretraga listi željaPodijeli na FacebookuPodijeli na:PodijeljenoLink na sliku za objaveTekst za objavuTekstTweet-aj na TwitteruNEPRIJAVLJENI KORISNICINadogradite na %1$spremium verziju%2$s%3$s %1$sYITH WooCommerce Listu želja%2$s Koristi shorcodeLista željaPrivatna lista željaLista željaYITH WooCommerse skupna IntegracijaPK`x1\_+ߐK�K�,languages/yith-woocommerce-wishlist-da_DK.ponu�[���# Copyright (C) 2019 YITH WooCommerce Wishlist
# This file is distributed under the same license as the YITH WooCommerce Wishlist package.
msgid ""
msgstr ""
"Project-Id-Version: YITH WCWL\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/yith-woocommerce-"
"wishlist\n"
"POT-Creation-Date: 2021-11-11 13:53:53+00:00\n"
"PO-Revision-Date: 2020-10-16 14:04+0200\n"
"Last-Translator: Morten Ruus <altombasketball@gmail.com>\n"
"Language-Team: Your Inspiration Themes <support@yithemes.com>\n"
"Language: da_DK\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 2.4.1\n"
"X-Poedit-KeywordsList: __;_e;_x\n"
"X-Poedit-Basepath: ..\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Poedit-SearchPath-0: .\n"
"X-Poedit-SearchPathExcluded-0: plugin-fw\n"

#: includes/class-yith-wcwl-admin.php:126
#, fuzzy
msgid "Wishlist Page"
msgstr "Ønskeliste"

#: includes/class-yith-wcwl-admin.php:148
msgid "General settings"
msgstr ""

#: includes/class-yith-wcwl-admin.php:149
msgid "Add to wishlist options"
msgstr ""

#: includes/class-yith-wcwl-admin.php:150
msgid "Wishlist page options"
msgstr ""

#: includes/class-yith-wcwl-admin.php:151
msgid "Premium Version"
msgstr ""

#: includes/class-yith-wcwl-admin.php:249
#: includes/class-yith-wcwl-install.php:342
msgid "Wishlist"
msgstr "Ønskeliste"

#: includes/class-yith-wcwl-admin.php:251
msgid ""
"Allows your customers to create and share lists of products that they want "
"to purchase on your e-commerce."
msgstr ""

#: includes/class-yith-wcwl-ajax-handler.php:75
#: templates/add-to-wishlist-remove.php:59
msgid "View &rsaquo;"
msgstr ""

#: includes/class-yith-wcwl-ajax-handler.php:76
#: templates/add-to-wishlist-remove.php:58
msgid "or"
msgstr ""

#: includes/class-yith-wcwl-ajax-handler.php:77
msgid "Close"
msgstr ""

#: includes/class-yith-wcwl-ajax-handler.php:155
#: includes/class-yith-wcwl-ajax-handler.php:195
msgid "Product successfully removed."
msgstr ""

#: includes/class-yith-wcwl-form-handler.php:156
msgid "Please, make sure to enter a valid title"
msgstr ""

#: includes/class-yith-wcwl-frontend.php:461
msgid ""
"We are sorry, but this feature is available only if cookies on your browser "
"are enabled."
msgstr ""

#: includes/class-yith-wcwl-frontend.php:462
msgid "Product added to cart successfully"
msgstr ""

#: includes/class-yith-wcwl-frontend.php:725
#: includes/class-yith-wcwl-shortcode.php:239
#: plugin-options/wishlist_page-options.php:240
#: templates/wishlist-view-footer-mobile.php:46
#: templates/wishlist-view-footer.php:46
msgid "Add to cart"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:52
msgid "While you visit our site, we’ll track:"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:54
msgid ""
"Products you’ve added to the wishlist: we’ll use this to show you and other "
"users your favourite products, and to create targeted email campaigns."
msgstr ""

#: includes/class-yith-wcwl-privacy.php:55
msgid ""
"Wishlists you’ve created: we’ll keep track of the wishlists you create, and "
"make them visible to the store staff"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:57
msgid ""
"We’ll also use cookies to keep track of wishlist contents while you’re "
"browsing our site."
msgstr ""

#: includes/class-yith-wcwl-privacy.php:60
msgid ""
"Members of our team have access to the information you provide us with. For "
"example, both Administrators and Shop Managers can access:"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:62
msgid ""
"Wishlist details, such as products added, date of addition, name and privacy "
"settings of your wishlists"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:64
msgid ""
"Our team members have access to this information to offer you better deals "
"for the products you love."
msgstr ""

#: includes/class-yith-wcwl-privacy.php:84
#: includes/class-yith-wcwl-privacy.php:100
msgid "Customer wishlists"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:137 plugin-options/lists-options.php:25
#: plugin-options/lists-options.php:32
msgid "Wishlists"
msgstr "Ønskeliste"

#. Translators: %s Order number.
#: includes/class-yith-wcwl-privacy.php:199
msgid "Removed wishlist %s."
msgstr ""

#. Translators: %s Order number.
#: includes/class-yith-wcwl-privacy.php:203
msgid "Wishlist %s has been retained."
msgstr ""

#: includes/class-yith-wcwl-privacy.php:227
msgid "Token"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:228
msgid "Wishlist URL"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:229
msgid "Title"
msgstr "Titel felt"

#: includes/class-yith-wcwl-privacy.php:231
msgid "Visibility"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:232
msgid "Items added"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:58
msgid ""
"ID of the product to add to the wishlist (leave empty to use the global "
"product)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:63
msgid "URL of the wishlist page (leave empty to use the default settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:68
msgid "Button label (leave empty to use the default settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:73
msgid "\"Browse wishlist\" label (leave empty to use the default settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:78
msgid ""
"\"Product already in wishlist\" label (leave empty to use the default "
"settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:83
msgid ""
"\"Product added to wishlist\" label (leave empty to use the default settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:88
msgid ""
"Icon for the button (use any FontAwesome valid class, or leave empty to use "
"the default settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:93
msgid ""
"Additional CSS classes for the button (leave empty to use the default "
"settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:107
msgid "Choose whether to paginate items in the wishlist or show them all"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:110
#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:118
msgid "Paginate"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:111
#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:119
msgid "Do not paginate"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:116
msgid "Number of items to show per page"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:121
msgid "ID of the wishlist to show (e.g. K6EOWXB888ZD)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:414
msgid "Share on:"
msgstr "Del på:"

#: includes/class-yith-wcwl-shortcode.php:438
#: plugin-options/wishlist_page-options.php:138
msgid "Share on Facebook"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:455
#: plugin-options/wishlist_page-options.php:147
msgid "Tweet on Twitter"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:473
#: plugin-options/wishlist_page-options.php:156
msgid "Pin on Pinterest"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:487
msgid "Share via email"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:510
#: plugin-options/wishlist_page-options.php:174
msgid "Share on WhatsApp"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:621
msgid "Remove from list"
msgstr ""

#: includes/class-yith-wcwl-wishlist-item.php:189
msgid "Free!"
msgstr "Gratis!"

#: includes/class-yith-wcwl.php:164
msgid "The item cannot be added to this wishlist"
msgstr ""

#: includes/class-yith-wcwl.php:168 includes/class-yith-wcwl.php:174
msgid "An error occurred while adding the products to the wishlist."
msgstr ""

#: includes/class-yith-wcwl.php:235 includes/class-yith-wcwl.php:241
msgid "Error. Unable to remove the product from the wishlist."
msgstr ""

#: includes/data-stores/class-yith-wcwl-wishlist-data-store.php:152
#: includes/data-stores/class-yith-wcwl-wishlist-data-store.php:174
msgid "Invalid wishlist."
msgstr ""

#: includes/data-stores/class-yith-wcwl-wishlist-item-data-store.php:119
msgid "Invalid wishlist item."
msgstr ""

#. translators: 1. Number of users.
#: includes/functions-yith-wcwl.php:249
msgid "%d user"
msgid_plural "%d users"
msgstr[0] ""
msgstr[1] ""

#: includes/functions-yith-wcwl.php:250
msgid "has this item in wishlist"
msgid_plural "have this item in wishlist"
msgstr[0] ""
msgstr[1] ""

#: includes/functions-yith-wcwl.php:252
msgid "You're the first"
msgstr ""

#: includes/functions-yith-wcwl.php:253
msgid "to add this item in wishlist"
msgstr ""

#. translators: 1. Count of users when many, or "another" when only one.
#: includes/functions-yith-wcwl.php:257
msgid "You and %s user"
msgid_plural "You and %d users"
msgstr[0] ""
msgstr[1] ""

#: includes/functions-yith-wcwl.php:257
msgid "another"
msgstr ""

#: includes/functions-yith-wcwl.php:258
msgid "have this item in wishlist"
msgstr ""

#: includes/functions-yith-wcwl.php:425
msgid "None"
msgstr ""

#: includes/functions-yith-wcwl.php:426
msgid "Custom"
msgstr ""

#: includes/functions-yith-wcwl.php:447
msgid "Shared"
msgstr "Delt"

#: includes/functions-yith-wcwl.php:451
msgid "Only people with a link to this list can see it"
msgstr ""

#: includes/functions-yith-wcwl.php:457
msgid "Private"
msgstr "Privat"

#: includes/functions-yith-wcwl.php:461
msgid "Only you can see this list"
msgstr ""

#: includes/functions-yith-wcwl.php:467
msgid "Public"
msgstr "Offentlig"

#: includes/functions-yith-wcwl.php:471
msgid "Anyone can search for and see this list"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:118
#: plugin-options/add_to_wishlist-options.php:127
msgid "Add to wishlist"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:128
#: plugin-options/add_to_wishlist-options.php:143
msgid "Browse wishlist"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:138
msgid "Product already in wishlist"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:148
msgid "Product added to wishlist"
msgstr ""

#: init.php:160
msgid "is enabled but not effective. It requires WooCommerce to work."
msgstr ""

#: init.php:176
msgid "You can't activate the free version of"
msgstr ""

#: init.php:176
msgid "while you are using the premium one."
msgstr ""

#: plugin-options/add_to_wishlist-options.php:20
#: plugin-options/settings-options.php:27
msgid "General Settings"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:27
msgid "After product is added to wishlist"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:28
msgid ""
"Choose the look of the Wishlist button when the product has already been "
"added to a wishlist"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:32
msgid "Show \"Add to wishlist\" button"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:33
msgid "Show \"View wishlist\" link"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:34
msgid "Show \"Remove from list\" link"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:48
msgid "Loop settings"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:50
msgid ""
"Loop options will be visible on Shop page, category pages, product "
"shortcodes, products sliders, and all the other places where the WooCommerce "
"products' loop is used"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:55
msgid "Show \"Add to wishlist\" in loop"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:56
msgid "Enable the \"Add to wishlist\" feature in WooCommerce products' loop"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:64
msgid "Position of \"Add to wishlist\" in loop"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:65
msgid ""
"Choose where to show \"Add to wishlist\" button or link in WooCommerce "
"products' loop. <span class=\"addon\">Copy this shortcode <span class=\"code"
"\"><code>[yith_wcwl_add_to_wishlist]</code></span> and paste it where you "
"want to show the \"Add to wishlist\" link or button</span>"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:72
msgid "On top of the image"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:73
msgid "Before \"Add to cart\" button"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:74
msgid "After \"Add to cart\" button"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:75
#: plugin-options/add_to_wishlist-options.php:107
msgid "Use shortcode"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:89
msgid "Product page settings"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:96
msgid "Position of \"Add to wishlist\" on product page"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:97
msgid ""
"Choose where to show \"Add to wishlist\" button or link on the product page. "
"<span class=\"addon\">Copy this shortcode <span class=\"code"
"\"><code>[yith_wcwl_add_to_wishlist]</code></span> and paste it where you "
"want to show the \"Add to wishlist\" link or button</span>"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:104
msgid "After \"Add to cart\""
msgstr ""

#: plugin-options/add_to_wishlist-options.php:105
msgid "After thumbnails"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:106
msgid "After summary"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:117
#: plugin-options/wishlist_page-options.php:222
msgid "Text customization"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:124
msgid "\"Add to wishlist\" text"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:125
msgid "Enter a text for \"Add to wishlist\" button"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:132
msgid "\"Product added\" text"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:133
msgid ""
"Enter the text of the message displayed when the user adds a product to the "
"wishlist"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:135
msgid "Product added!"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:140
msgid "\"Browse wishlist\" text"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:141
msgid "Enter a text for the \"Browse wishlist\" link on the product page"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:148
msgid "\"Product already in wishlist\" text"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:149
msgid ""
"Enter the text for the message displayed when the user views a product that "
"is already in the wishlist"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:151
msgid "The product is already in your wishlist!"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:161
msgid "Style & Color customization"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:168
msgid "Style of \"Add to wishlist\""
msgstr ""

#: plugin-options/add_to_wishlist-options.php:169
msgid ""
"Choose if you want to show a textual \"Add to wishlist\" link or a button"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:172
#: plugin-options/wishlist_page-options.php:261
msgid "Textual (anchor)"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:173
#: plugin-options/wishlist_page-options.php:262
msgid "Button with theme style"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:174
#: plugin-options/wishlist_page-options.php:263
msgid "Button with custom style"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:182
msgid "\"Add to wishlist\" button style"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:188
msgid "Choose colors for the \"Add to wishlist\" button"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:190
#: plugin-options/wishlist_page-options.php:279
#: plugin-options/wishlist_page-options.php:368
#: plugin-options/wishlist_page-options.php:417
#: plugin-options/wishlist_page-options.php:465
#: plugin-options/wishlist_page-options.php:552
#: plugin-options/wishlist_page-options.php:592
#: plugin-options/wishlist_page-options.php:632
#: plugin-options/wishlist_page-options.php:672
#: plugin-options/wishlist_page-options.php:712
msgid "Background"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:195
#: plugin-options/wishlist_page-options.php:284
#: plugin-options/wishlist_page-options.php:373
#: plugin-options/wishlist_page-options.php:422
#: plugin-options/wishlist_page-options.php:470
#: plugin-options/wishlist_page-options.php:507
msgid "Text"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:200
#: plugin-options/wishlist_page-options.php:289
#: plugin-options/wishlist_page-options.php:378
#: plugin-options/wishlist_page-options.php:427
#: plugin-options/wishlist_page-options.php:475
msgid "Border"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:206
msgid "Choose colors for the \"Add to wishlist\" button on hover state"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:208
#: plugin-options/wishlist_page-options.php:297
#: plugin-options/wishlist_page-options.php:386
#: plugin-options/wishlist_page-options.php:435
msgid "Background Hover"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:213
#: plugin-options/wishlist_page-options.php:302
#: plugin-options/wishlist_page-options.php:391
#: plugin-options/wishlist_page-options.php:440
msgid "Text Hover"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:218
#: plugin-options/wishlist_page-options.php:307
#: plugin-options/wishlist_page-options.php:396
#: plugin-options/wishlist_page-options.php:445
msgid "Border Hover"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:231
#: plugin-options/wishlist_page-options.php:320
msgid "Border radius"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:232
msgid "Choose radius for the \"Add to wishlist\" button"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:246
msgid "\"Add to wishlist\" icon"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:247
msgid "Select an icon for the \"Add to wishlist\" button (optional)"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:257
msgid "\"Add to wishlist\" custom icon"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:258
#: plugin-options/add_to_wishlist-options.php:282
msgid ""
"Upload an icon you'd like to use for \"Add to wishlist\" button (suggested "
"32px x 32px)"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:270
msgid "\"Added to wishlist\" icon"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:271
msgid "Select an icon for the \"Added to wishlist\" button (optional)"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:277
msgid "Same used for Add to wishlist"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:281
msgid "\"Added to wishlist\" custom icon"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:294
msgid "Custom CSS"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:295
msgid "Enter custom CSS to be applied to Wishlist elements (optional)"
msgstr ""

#: plugin-options/lists-options.php:34
msgid "Search list"
msgstr ""

#. translators: 1. Anchor to Frequently Bought Together landing page on
#. yithemes.com.
#: plugin-options/settings-options.php:19
msgid ""
"If you want to take advantage of this feature, you could consider purchasing "
"the %s."
msgstr ""

#: plugin-options/settings-options.php:34
msgid "Enable AJAX loading"
msgstr ""

#: plugin-options/settings-options.php:35
msgid "Load any cacheable wishlist item via AJAX"
msgstr ""

#: plugin-options/settings-options.php:48
msgid "YITH WooCommerce Frequently Bought Together Integration"
msgstr ""

#. translators: 1. Url to Frequently Bought Together landing page on
#. yithemes.com.
#: plugin-options/settings-options.php:51
msgid ""
"In order to use this integration you have to install and activate YITH "
"WooCommerce Frequently Bought Together. <a href=\"%s\">Learn more</a>"
msgstr ""

#: plugin-options/settings-options.php:56
msgid "Enable slider in wishlist"
msgstr ""

#. translators: 1. Example image of the integration. 2. CTA to buy Frequently
#. Bought Together.
#: plugin-options/settings-options.php:58
msgid ""
"Enable the slider with linked products on the Wishlist page (<a href=\"%1$s"
"\" class=\"thickbox\">Example</a>). %2$s"
msgstr ""

#: plugin-options/wishlist_page-options.php:19
msgid "All your wishlists"
msgstr ""

#: plugin-options/wishlist_page-options.php:26
msgid "Wishlist page"
msgstr ""

#: plugin-options/wishlist_page-options.php:27
msgid ""
"Pick a page as the main Wishlist page; make sure you add the <span class="
"\"code\"><code>[yith_wcwl_wishlist]</code></span> shortcode into the page "
"content"
msgstr ""

#: plugin-options/wishlist_page-options.php:40
msgid "Wishlist Detail Page"
msgstr ""

#: plugin-options/wishlist_page-options.php:47
#: plugin-options/wishlist_page-options.php:56
#: plugin-options/wishlist_page-options.php:65
#: plugin-options/wishlist_page-options.php:74
#: plugin-options/wishlist_page-options.php:83
#: plugin-options/wishlist_page-options.php:92
#: plugin-options/wishlist_page-options.php:101
msgid "In wishlist table show"
msgstr ""

#: plugin-options/wishlist_page-options.php:48
msgid "Product variations selected by the user (example: size or color)"
msgstr ""

#: plugin-options/wishlist_page-options.php:57
msgid "Product price"
msgstr ""

#: plugin-options/wishlist_page-options.php:66
msgid "Product stock (show if the product is available or not)"
msgstr ""

#: plugin-options/wishlist_page-options.php:75
msgid "Date on which the product was added to the wishlist"
msgstr ""

#: plugin-options/wishlist_page-options.php:84
msgid "Add to cart option for each product"
msgstr ""

#: plugin-options/wishlist_page-options.php:93
msgid ""
"Icon to remove the product from the wishlist - to the left of the product"
msgstr ""

#: plugin-options/wishlist_page-options.php:102
msgid ""
"Button to remove the product from the wishlist - to the right of the product"
msgstr ""

#: plugin-options/wishlist_page-options.php:110
msgid "Redirect to cart"
msgstr ""

#: plugin-options/wishlist_page-options.php:111
msgid ""
"Redirect users to the cart page when they add a product to the cart from the "
"wishlist page"
msgstr ""

#: plugin-options/wishlist_page-options.php:119
msgid "Remove if added to the cart"
msgstr ""

#: plugin-options/wishlist_page-options.php:120
msgid ""
"Remove the product from the wishlist after it has been added to the cart"
msgstr ""

#: plugin-options/wishlist_page-options.php:128
msgid "Share wishlist"
msgstr ""

#: plugin-options/wishlist_page-options.php:129
msgid "Enable this option to let users share their wishlist on social media"
msgstr ""

#: plugin-options/wishlist_page-options.php:137
#: plugin-options/wishlist_page-options.php:146
#: plugin-options/wishlist_page-options.php:155
#: plugin-options/wishlist_page-options.php:164
#: plugin-options/wishlist_page-options.php:173
msgid "Share on social media"
msgstr ""

#: plugin-options/wishlist_page-options.php:165
msgid "Share by email"
msgstr ""

#: plugin-options/wishlist_page-options.php:182
msgid "Share by URL"
msgstr ""

#: plugin-options/wishlist_page-options.php:183
msgid "Show \"Share URL\" field on wishlist page"
msgstr ""

#: plugin-options/wishlist_page-options.php:191
msgid "Sharing title"
msgstr ""

#: plugin-options/wishlist_page-options.php:192
msgid "Wishlist title used for sharing (only used on Twitter and Pinterest)"
msgstr ""

#. translators: 1. Blog name.
#: plugin-options/wishlist_page-options.php:195
msgid "My wishlist on %s"
msgstr ""

#: plugin-options/wishlist_page-options.php:200
msgid "Social text"
msgstr ""

#: plugin-options/wishlist_page-options.php:201
msgid ""
"Type the message you want to publish when you share your wishlist on Twitter "
"and Pinterest"
msgstr ""

#: plugin-options/wishlist_page-options.php:209
msgid "Social image URL"
msgstr ""

#: plugin-options/wishlist_page-options.php:210
msgid "It will be used to pin the wishlist on Pinterest."
msgstr ""

#: plugin-options/wishlist_page-options.php:229
msgid "Default wishlist name"
msgstr ""

#: plugin-options/wishlist_page-options.php:230
msgid ""
"Enter a name for the default wishlist. This is the wishlist that will be "
"automatically generated for all users if they do not create any custom one"
msgstr ""

#: plugin-options/wishlist_page-options.php:232
#, fuzzy
msgid "My wishlist"
msgstr "ønskeliste"

#: plugin-options/wishlist_page-options.php:237
msgid "\"Add to cart\" text"
msgstr ""

#: plugin-options/wishlist_page-options.php:238
msgid "Enter a text for the \"Add to cart\" button"
msgstr ""

#: plugin-options/wishlist_page-options.php:250
msgid "Style & color customization"
msgstr ""

#: plugin-options/wishlist_page-options.php:257
msgid "Style of \"Add to cart\""
msgstr ""

#: plugin-options/wishlist_page-options.php:258
msgid "Choose whether to show a textual \"Add to cart\" link or a button"
msgstr ""

#: plugin-options/wishlist_page-options.php:271
msgid "\"Add to cart\" button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:277
msgid "Choose the colors for the \"Add to cart\" button"
msgstr ""

#: plugin-options/wishlist_page-options.php:295
msgid "Choose colors for the \"Add to cart\" button on hover state"
msgstr ""

#: plugin-options/wishlist_page-options.php:321
msgid "Set the radius for the \"Add to cart\" button"
msgstr ""

#: plugin-options/wishlist_page-options.php:335
msgid "\"Add to cart\" icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:336
msgid "Select an icon for the \"Add to cart\" button (optional)"
msgstr ""

#: plugin-options/wishlist_page-options.php:351
msgid "\"Add to cart\" custom icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:352
msgid ""
"Upload an icon you'd like to use for the \"Add to cart\" button (suggested "
"32px x 32px)"
msgstr ""

#: plugin-options/wishlist_page-options.php:360
msgid "Primary button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:366
msgid ""
"Choose colors for the primary button<br/><small>This style will be applied "
"to \"Edit title\" button on Wishlist view, \"Submit Changes\" button on "
"Manage view and \"Search wishlist\" button on Search view</small>"
msgstr ""

#: plugin-options/wishlist_page-options.php:384
msgid ""
"Choose colors for the primary button on hover state<br/><small>This style "
"will be applied to \"Edit title\" button on Wishlist view, \"Submit Changes"
"\" button on Manage view and \"Search wishlist\" button on Search view</"
"small>"
msgstr ""

#: plugin-options/wishlist_page-options.php:409
msgid "Secondary button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:415
#: plugin-options/wishlist_page-options.php:433
msgid ""
"Choose colors of the secondary button<br/><small>This style will be applied "
"to the buttons that allow showing and hiding the Edit title form on Wishlist "
"view and \"Create new Wishlist\" button on Manage view</small>"
msgstr ""

#: plugin-options/wishlist_page-options.php:458
msgid "Wishlist table style"
msgstr ""

#: plugin-options/wishlist_page-options.php:459
msgid ""
"Choose the colors for the wishlist table (when set to \"Traditional\" layout)"
msgstr ""

#: plugin-options/wishlist_page-options.php:487
msgid "Highlight color"
msgstr ""

#: plugin-options/wishlist_page-options.php:488
msgid ""
"Choose the color for all sections with background<br/><small>This color will "
"be used as background for the wishlist table heading and footer (when set to "
"\"Traditional\" layout), and for various form across wishlist views</small>"
msgstr ""

#: plugin-options/wishlist_page-options.php:500
msgid "Share button text color"
msgstr ""

#: plugin-options/wishlist_page-options.php:501
msgid "Choose colors for share buttons text"
msgstr ""

#: plugin-options/wishlist_page-options.php:512
msgid "Text hover"
msgstr ""

#: plugin-options/wishlist_page-options.php:525
msgid "Facebook share button icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:526
msgid "Select an icon for the Facebook share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:536
msgid "Facebook share button custom icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:537
msgid ""
"Upload an icon you'd like to use for Facebook share button (suggested 32px x "
"32px)"
msgstr ""

#: plugin-options/wishlist_page-options.php:545
msgid "Facebook share button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:546
msgid "Choose colors for Facebook share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:557
#: plugin-options/wishlist_page-options.php:597
#: plugin-options/wishlist_page-options.php:637
#: plugin-options/wishlist_page-options.php:677
#: plugin-options/wishlist_page-options.php:717
msgid "Background hover"
msgstr ""

#: plugin-options/wishlist_page-options.php:565
msgid "Twitter share button icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:566
msgid "Select an icon for the Twitter share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:576
msgid "Twitter share button custom icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:577
msgid ""
"Upload an icon you'd like to use for Twitter share button (suggested 32px x "
"32px)"
msgstr ""

#: plugin-options/wishlist_page-options.php:585
msgid "Twitter share button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:586
msgid "Choose colors for Twitter share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:605
msgid "Pinterest share button icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:606
msgid "Select an icon for the Pinterest share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:616
msgid "Pinterest share button custom icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:617
msgid ""
"Upload an icon you'd like to use for Pinterest share button (suggested 32px "
"x 32px)"
msgstr ""

#: plugin-options/wishlist_page-options.php:625
msgid "Pinterest share button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:626
msgid "Choose colors for Pinterest share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:645
msgid "Email share button icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:646
msgid "Select an icon for the Email share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:656
msgid "Email share button custom icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:657
msgid ""
"Upload an icon you'd like to use for the Email share button (suggested 32px "
"x 32px)"
msgstr ""

#: plugin-options/wishlist_page-options.php:665
msgid "Email share button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:666
msgid "Choose colors for the Email share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:685
msgid "WhatsApp share button icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:686
msgid "Select an icon for the WhatsApp share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:696
msgid "WhatsApp share button custom icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:697
msgid ""
"Upload an icon you'd like to use for WhatsApp share button (suggested 32px x "
"32px)"
msgstr ""

#: plugin-options/wishlist_page-options.php:705
msgid "WhatsApp share button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:706
msgid "Choose colors for WhatsApp share button"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:168
#: templates/admin/wishlist-panel-premium.php:309
msgid ""
"Upgrade to the %1$spremium version%2$s%3$sof %1$sYITH WooCommerce Wishlist"
"%2$s to benefit from all features!"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:170
#: templates/admin/wishlist-panel-premium.php:311
msgid "Upgrade"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:176
msgid "Premium Features"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:180
msgid "Allow your customers to create multiple wishlists"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:182
msgid ""
"Christmas, Birthday... users will be able to create and manage multiple "
"wishlists, in case they prefer to keep the products sorted by category or "
"other parameters."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:185
msgid "Multiple Wishlist"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:192
msgid "Wishlist Private"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:196
msgid "A transparent privacy management"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:198
msgid ""
"Your customers can set a privacy option for each wishlist and choose whether "
"sharing the wishlist or making it private."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:206
msgid ""
"Allow your customers to ask for an estimate, directly from their wishlist "
"page"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:208
msgid ""
"And give only registered users the privilege to use the wishlist "
"functionalities."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:211
msgid "Estimate Cost"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:218
msgid "Admin Panel"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:222
msgid "An advanced and more versatile management of the wishlist"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:224
msgid ""
"Your customers can sort the products in the wishlist thanks to the drag&drop "
"option, move products from one wishlist to another, manage product quantity, "
"download the wishlist content to a .pdf file, share the wishlist on their "
"social networks, and much more!"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:232
msgid "Monitor your customers’ wishlists and the popular products"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:234
msgid ""
"You can see your customers’ wishlists, gain insight into the products they "
"are more interested in and plan targeted marketing strategies."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:237
msgid "Search Wishlists"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:244
msgid "'ADD TO CART'"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:248
msgid ""
"Send promotional emails for products in wishlists to push customers to buy"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:250
msgid ""
"Just three clicks to send promotional emails with discount coupons to "
"customers who have added specific products to their wishlist and push them "
"to buy."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:258
msgid "Let users buy the product right from the wishlist page"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:260
msgid ""
"Let them move products from one wishlist to the cart in one click, keeping "
"also the information about the size, colour or quantity selected when added "
"to the wishlist."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:263
msgid "DISABLE WISHLIST"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:271
msgid "Choose a charming layout for your wishlist page"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:273
msgid ""
"The wishlist is one of the most used functionalities in an ecommerce store "
"but often the page layout is not enhanced enough and looks unattractive to "
"the user. With our plugin, you can choose among some alternative layouts and "
"offer an even more interesting experience to users who creates a wishlist on "
"your website."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:276
msgid "UNLOGGED USERS"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:284
msgid "Wishlist widgets for the header and sidebars"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:286
msgid ""
"Increase the wishlist visibility through our modern widgets that you can use "
"in the header, in the sidebars, wherever you want."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:289
msgid "POPULAR TABLE"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:296
msgid "FUNCTIONALITIES"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:300
msgid "Allow users to monitor the price of the products in their wishlist"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:302
msgid ""
"We took inspiration from one of the most interesting features of Amazon "
"product pages: from now on, users can realise what’s the best time to buy a "
"product and how much they can save when there’s a promotion running or a "
"discount on the product they’ve added to the wishlist."
msgstr ""

#: templates/share.php:51 templates/share.php:52
msgid "Facebook"
msgstr ""

#: templates/share.php:59 templates/share.php:60
msgid "Twitter"
msgstr ""

#: templates/share.php:67 templates/share.php:68
msgid "Pinterest"
msgstr ""

#: templates/share.php:75 templates/share.php:76
msgid "Email"
msgstr "E-mail"

#: templates/share.php:83
msgid "WhatsApp"
msgstr ""

#: templates/share.php:84
msgid "Whatsapp"
msgstr ""

#: templates/share.php:93
msgid "(Now"
msgstr ""

#: templates/share.php:93
msgid "copy"
msgstr ""

#: templates/share.php:93
msgid "this wishlist link and share it anywhere)"
msgstr ""

#: templates/wishlist-view-footer-mobile.php:44
#: templates/wishlist-view-footer.php:44
msgid "Apply this action to all the selected items:"
msgstr ""

#: templates/wishlist-view-footer-mobile.php:49
#: templates/wishlist-view-footer.php:49
msgid "Remove from wishlist"
msgstr ""

#. translators: 1. Wishlist formatted name.
#: templates/wishlist-view-footer-mobile.php:67
#: templates/wishlist-view-footer.php:67
msgid "Move to %s"
msgstr ""

#: templates/wishlist-view-footer-mobile.php:73
#: templates/wishlist-view-footer.php:73
msgid "Apply"
msgstr ""

#: templates/wishlist-view-footer-mobile.php:81
#: templates/wishlist-view-footer.php:81
msgid "Update"
msgstr ""

#: templates/wishlist-view-footer-mobile.php:87
#: templates/wishlist-view-footer.php:103
msgid "Add all to cart"
msgstr ""

#: templates/wishlist-view-header.php:48
msgid "Edit title"
msgstr "Rediger titel"

#: templates/wishlist-view-mobile.php:136
msgid "Added on:"
msgstr ""

#: templates/wishlist-view-mobile.php:147
msgid "Price:"
msgstr ""

#: templates/wishlist-view-mobile.php:174
msgid "Quantity:"
msgstr ""

#: templates/wishlist-view-mobile.php:189
msgid "Stock:"
msgstr ""

#: templates/wishlist-view-mobile.php:192 templates/wishlist-view.php:229
msgid "Out of stock"
msgstr ""

#: templates/wishlist-view-mobile.php:192 templates/wishlist-view.php:229
msgid "In Stock"
msgstr "På lager"

#: templates/wishlist-view-mobile.php:212 templates/wishlist-view.php:262
msgid "Move"
msgstr "Flyt"

#: templates/wishlist-view-mobile.php:233 templates/wishlist-view.php:283
msgid "Move to another list &rsaquo;"
msgstr ""

#: templates/wishlist-view-mobile.php:241 templates/wishlist-view.php:157
#: templates/wishlist-view.php:293
msgid "Remove this product"
msgstr "Fjern denne vare"

#: templates/wishlist-view-mobile.php:252 templates/wishlist-view.php:313
msgid "No products added to the wishlist"
msgstr ""

#: templates/wishlist-view.php:79
msgid "Product name"
msgstr ""

#: templates/wishlist-view.php:87
msgid "Unit price"
msgstr ""

#: templates/wishlist-view.php:96
msgid "Quantity"
msgstr ""

#: templates/wishlist-view.php:105
msgid "Stock status"
msgstr ""

#: templates/wishlist-view.php:123
msgid "Arrange"
msgstr ""

#. translators: date added label: 1 date added.
#: templates/wishlist-view.php:243
msgid "Added on: %s"
msgstr ""

#: templates/wishlist-view.php:293
msgid "Remove"
msgstr "Fjern"

#. Description of the plugin/theme
msgid ""
"<code><strong>YITH WooCommerce Wishlist</strong></code> gives your users the "
"possibility to create, fill, manage and share their wishlists allowing you "
"to analyze their interests and needs to improve your marketing strategies. "
"<a href=\"https://yithemes.com/\" target=\"_blank\">Get more plugins for "
"your e-commerce on <strong>YITH</strong></a>"
msgstr ""

#: includes/class-yith-wcwl-admin.php:261
msgctxt "[HELP TAB] Video title"
msgid ""
"Check this video to learn how to <b>configure wishlist and customize options:"
"</b>"
msgstr ""

#: includes/class-yith-wcwl-install.php:340
msgctxt "page_slug"
msgid "wishlist"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:230
msgctxt "date when wishlist was created"
msgid "Created on"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:52
msgctxt "[gutenberg]: block name"
msgid "YITH Add to wishlist"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:101
msgctxt "[gutenberg]: block name"
msgid "YITH Wishlist"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:53
msgctxt "[gutenberg]: block description"
msgid "Shows Add to wishlist button"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:102
msgctxt "[gutenberg]: block description"
msgid "Shows a list of products in wishlist"
msgstr ""

#. translators: 1. % of reduction/increase in price.
#: includes/class-yith-wcwl-wishlist-item.php:428
msgctxt ""
"Part of the template that shows price variation since addition to list; "
"placeholder will be replaced with a percentage"
msgid "Price is %1$s%%"
msgstr ""

#. translators: 2: original product price.
#: includes/class-yith-wcwl-wishlist-item.php:430
msgctxt ""
"Part of the template that shows price variation since addition to list; "
"placeholder will be replaced with a price"
msgid "(Was %2$s when added  in list)"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:45
msgctxt "Elementor widget name"
msgid "YITH Wishlist Add button"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:45
#, fuzzy
msgctxt "Elementor widget name"
msgid "YITH Wishlist"
msgstr "Ønskeliste"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:87
msgctxt "Elementor section title"
msgid "Product"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:107
msgctxt "Elementor section title"
msgid "Labels"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:157
msgctxt "Elementor section title"
msgid "Advanced"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:87
#, fuzzy
msgctxt "Elementor section title"
msgid "Wishlist"
msgstr "Ønskeliste"

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:107
msgctxt "Elementor section title"
msgid "Pagination"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:95
msgctxt "Elementor control label"
msgid "Product ID"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:115
msgctxt "Elementor control label"
msgid "Button label"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:125
msgctxt "Elementor control label"
msgid "\"Browse wishlist\" label"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:135
msgctxt "Elementor control label"
msgid "\"Product already in wishlist\" label"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:145
msgctxt "Elementor control label"
msgid "\"Product added to wishlist\" label"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:165
msgctxt "Elementor control label"
msgid "URL of the wishlist page"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:175
msgctxt "Elementor control label"
msgid "Icon for the button"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:185
msgctxt "Elementor control label"
msgid "Additional CSS classes for the button"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:95
#, fuzzy
msgctxt "Elementor control label"
msgid "Wishlist ID"
msgstr "Ønskeliste"

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:115
msgctxt "Elementor control label"
msgid "Paginate items"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:128
msgctxt "yith-woocommerce-wishlist"
msgid "Items per page"
msgstr ""

#~ msgid "My wishlist on "
#~ msgstr "ønskeliste"

#~ msgid "YITH WooCommerce Wishlist"
#~ msgstr "Ønskeliste"

#~ msgid "Save"
#~ msgstr "Gem"

#~ msgid "Cancel"
#~ msgstr "Annullere"

#~ msgid "Ask for an estimate"
#~ msgstr "Efterspørg estimat"
PK`x1\hҗ[O�O�,languages/yith-woocommerce-wishlist-es_AR.ponu�[���# Copyright (C) 2019 YITH WooCommerce Wishlist
# This file is distributed under the same license as the YITH WooCommerce Wishlist package.
msgid ""
msgstr ""
"Project-Id-Version: YITH WooCommerce Wishlist\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/yith-woocommerce-"
"wishlist\n"
"POT-Creation-Date: 2021-11-11 13:53:53+00:00\n"
"PO-Revision-Date: 2020-10-16 14:04+0200\n"
"Last-Translator: YIThemes <support@yithemes.com>\n"
"Language-Team: Your Inspiration Themes <plugins@yithemes.com>\n"
"Language: es_AR\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 2.4.1\n"
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;_n:1,2;__ngettext:1,2;"
"__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;"
"_nx_noop:4c,1,2\n"
"X-Poedit-Basepath: .\n"
"Plural-Forms: nplurals=2; plural=n!=1;\n"
"X-Poedit-SourceCharset: UTF-8\n"
"X-Poedit-SearchPath-0: ..\n"
"X-Poedit-SearchPathExcluded-0: ../plugin-fw\n"

#: includes/class-yith-wcwl-admin.php:126
#, fuzzy
msgid "Wishlist Page"
msgstr "Lista de deseos"

#: includes/class-yith-wcwl-admin.php:148
msgid "General settings"
msgstr ""

#: includes/class-yith-wcwl-admin.php:149
msgid "Add to wishlist options"
msgstr ""

#: includes/class-yith-wcwl-admin.php:150
msgid "Wishlist page options"
msgstr ""

#: includes/class-yith-wcwl-admin.php:151
msgid "Premium Version"
msgstr ""

#: includes/class-yith-wcwl-admin.php:249
#: includes/class-yith-wcwl-install.php:342
msgid "Wishlist"
msgstr "Lista de deseos"

#: includes/class-yith-wcwl-admin.php:251
msgid ""
"Allows your customers to create and share lists of products that they want "
"to purchase on your e-commerce."
msgstr ""

#: includes/class-yith-wcwl-ajax-handler.php:75
#: templates/add-to-wishlist-remove.php:59
msgid "View &rsaquo;"
msgstr ""

#: includes/class-yith-wcwl-ajax-handler.php:76
#: templates/add-to-wishlist-remove.php:58
msgid "or"
msgstr ""

#: includes/class-yith-wcwl-ajax-handler.php:77
msgid "Close"
msgstr ""

#: includes/class-yith-wcwl-ajax-handler.php:155
#: includes/class-yith-wcwl-ajax-handler.php:195
msgid "Product successfully removed."
msgstr "Bien, lo hemos eliminado de tu lista..."

#: includes/class-yith-wcwl-form-handler.php:156
msgid "Please, make sure to enter a valid title"
msgstr ""

#: includes/class-yith-wcwl-frontend.php:461
msgid ""
"We are sorry, but this feature is available only if cookies on your browser "
"are enabled."
msgstr ""

#: includes/class-yith-wcwl-frontend.php:462
msgid "Product added to cart successfully"
msgstr ""

#: includes/class-yith-wcwl-frontend.php:725
#: includes/class-yith-wcwl-shortcode.php:239
#: plugin-options/wishlist_page-options.php:240
#: templates/wishlist-view-footer-mobile.php:46
#: templates/wishlist-view-footer.php:46
msgid "Add to cart"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:52
msgid "While you visit our site, we’ll track:"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:54
msgid ""
"Products you’ve added to the wishlist: we’ll use this to show you and other "
"users your favourite products, and to create targeted email campaigns."
msgstr ""

#: includes/class-yith-wcwl-privacy.php:55
msgid ""
"Wishlists you’ve created: we’ll keep track of the wishlists you create, and "
"make them visible to the store staff"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:57
msgid ""
"We’ll also use cookies to keep track of wishlist contents while you’re "
"browsing our site."
msgstr ""

#: includes/class-yith-wcwl-privacy.php:60
msgid ""
"Members of our team have access to the information you provide us with. For "
"example, both Administrators and Shop Managers can access:"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:62
msgid ""
"Wishlist details, such as products added, date of addition, name and privacy "
"settings of your wishlists"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:64
msgid ""
"Our team members have access to this information to offer you better deals "
"for the products you love."
msgstr ""

#: includes/class-yith-wcwl-privacy.php:84
#: includes/class-yith-wcwl-privacy.php:100
msgid "Customer wishlists"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:137 plugin-options/lists-options.php:25
#: plugin-options/lists-options.php:32
msgid "Wishlists"
msgstr "Lista de deseos"

#. Translators: %s Order number.
#: includes/class-yith-wcwl-privacy.php:199
msgid "Removed wishlist %s."
msgstr "Mi lista de deseos en  %s"

#. Translators: %s Order number.
#: includes/class-yith-wcwl-privacy.php:203
msgid "Wishlist %s has been retained."
msgstr "Texto de la tabla de la Lista de Deseos"

#: includes/class-yith-wcwl-privacy.php:227
msgid "Token"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:228
msgid "Wishlist URL"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:229
msgid "Title"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:231
msgid "Visibility"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:232
msgid "Items added"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:58
msgid ""
"ID of the product to add to the wishlist (leave empty to use the global "
"product)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:63
msgid "URL of the wishlist page (leave empty to use the default settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:68
msgid "Button label (leave empty to use the default settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:73
msgid "\"Browse wishlist\" label (leave empty to use the default settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:78
msgid ""
"\"Product already in wishlist\" label (leave empty to use the default "
"settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:83
msgid ""
"\"Product added to wishlist\" label (leave empty to use the default settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:88
msgid ""
"Icon for the button (use any FontAwesome valid class, or leave empty to use "
"the default settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:93
msgid ""
"Additional CSS classes for the button (leave empty to use the default "
"settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:107
msgid "Choose whether to paginate items in the wishlist or show them all"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:110
#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:118
msgid "Paginate"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:111
#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:119
msgid "Do not paginate"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:116
msgid "Number of items to show per page"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:121
msgid "ID of the wishlist to show (e.g. K6EOWXB888ZD)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:414
msgid "Share on:"
msgstr "Compartir en:"

#: includes/class-yith-wcwl-shortcode.php:438
#: plugin-options/wishlist_page-options.php:138
msgid "Share on Facebook"
msgstr "Compartir en Facebook"

#: includes/class-yith-wcwl-shortcode.php:455
#: plugin-options/wishlist_page-options.php:147
msgid "Tweet on Twitter"
msgstr "Tuitear en Twitter"

#: includes/class-yith-wcwl-shortcode.php:473
#: plugin-options/wishlist_page-options.php:156
msgid "Pin on Pinterest"
msgstr "Compartir en Pinterest"

#: includes/class-yith-wcwl-shortcode.php:487
msgid "Share via email"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:510
#: plugin-options/wishlist_page-options.php:174
msgid "Share on WhatsApp"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:621
msgid "Remove from list"
msgstr ""

#: includes/class-yith-wcwl-wishlist-item.php:189
msgid "Free!"
msgstr ""

#: includes/class-yith-wcwl.php:164
msgid "The item cannot be added to this wishlist"
msgstr ""

#: includes/class-yith-wcwl.php:168 includes/class-yith-wcwl.php:174
msgid "An error occurred while adding the products to the wishlist."
msgstr ""

#: includes/class-yith-wcwl.php:235 includes/class-yith-wcwl.php:241
msgid "Error. Unable to remove the product from the wishlist."
msgstr ""
"¡Ups! Ha ocurrido un error al eliminar el producto de tu lista. Intenta "
"nuevamente, por favor."

#: includes/data-stores/class-yith-wcwl-wishlist-data-store.php:152
#: includes/data-stores/class-yith-wcwl-wishlist-data-store.php:174
msgid "Invalid wishlist."
msgstr ""

#: includes/data-stores/class-yith-wcwl-wishlist-item-data-store.php:119
msgid "Invalid wishlist item."
msgstr ""

#. translators: 1. Number of users.
#: includes/functions-yith-wcwl.php:249
msgid "%d user"
msgid_plural "%d users"
msgstr[0] ""
msgstr[1] ""

#: includes/functions-yith-wcwl.php:250
msgid "has this item in wishlist"
msgid_plural "have this item in wishlist"
msgstr[0] ""
msgstr[1] ""

#: includes/functions-yith-wcwl.php:252
msgid "You're the first"
msgstr ""

#: includes/functions-yith-wcwl.php:253
msgid "to add this item in wishlist"
msgstr ""

#. translators: 1. Count of users when many, or "another" when only one.
#: includes/functions-yith-wcwl.php:257
msgid "You and %s user"
msgid_plural "You and %d users"
msgstr[0] ""
msgstr[1] ""

#: includes/functions-yith-wcwl.php:257
msgid "another"
msgstr ""

#: includes/functions-yith-wcwl.php:258
msgid "have this item in wishlist"
msgstr ""

#: includes/functions-yith-wcwl.php:425
msgid "None"
msgstr ""

#: includes/functions-yith-wcwl.php:426
#, fuzzy
msgid "Custom"
msgstr "CSS personalizado"

#: includes/functions-yith-wcwl.php:447
msgid "Shared"
msgstr "Compartir en:"

#: includes/functions-yith-wcwl.php:451
msgid "Only people with a link to this list can see it"
msgstr ""

#: includes/functions-yith-wcwl.php:457
msgid "Private"
msgstr ""

#: includes/functions-yith-wcwl.php:461
msgid "Only you can see this list"
msgstr ""

#: includes/functions-yith-wcwl.php:467
msgid "Public"
msgstr ""

#: includes/functions-yith-wcwl.php:471
msgid "Anyone can search for and see this list"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:118
#: plugin-options/add_to_wishlist-options.php:127
msgid "Add to wishlist"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:128
#: plugin-options/add_to_wishlist-options.php:143
msgid "Browse wishlist"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:138
#, fuzzy
msgid "Product already in wishlist"
msgstr "Ya está en tu lista de deseos!"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:148
#, fuzzy
msgid "Product added to wishlist"
msgstr "Ya está en tu lista de deseos!"

#: init.php:160
msgid "is enabled but not effective. It requires WooCommerce to work."
msgstr ""

#: init.php:176
msgid "You can't activate the free version of"
msgstr ""

#: init.php:176
msgid "while you are using the premium one."
msgstr ""

#: plugin-options/add_to_wishlist-options.php:20
#: plugin-options/settings-options.php:27
msgid "General Settings"
msgstr "Configuraciones generales"

#: plugin-options/add_to_wishlist-options.php:27
msgid "After product is added to wishlist"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:28
msgid ""
"Choose the look of the Wishlist button when the product has already been "
"added to a wishlist"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:32
#, fuzzy
msgid "Show \"Add to wishlist\" button"
msgstr "Ya está en tu lista de deseos!"

#: plugin-options/add_to_wishlist-options.php:33
msgid "Show \"View wishlist\" link"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:34
msgid "Show \"Remove from list\" link"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:48
msgid "Loop settings"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:50
msgid ""
"Loop options will be visible on Shop page, category pages, product "
"shortcodes, products sliders, and all the other places where the WooCommerce "
"products' loop is used"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:55
msgid "Show \"Add to wishlist\" in loop"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:56
msgid "Enable the \"Add to wishlist\" feature in WooCommerce products' loop"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:64
msgid "Position of \"Add to wishlist\" in loop"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:65
msgid ""
"Choose where to show \"Add to wishlist\" button or link in WooCommerce "
"products' loop. <span class=\"addon\">Copy this shortcode <span class=\"code"
"\"><code>[yith_wcwl_add_to_wishlist]</code></span> and paste it where you "
"want to show the \"Add to wishlist\" link or button</span>"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:72
msgid "On top of the image"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:73
msgid "Before \"Add to cart\" button"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:74
msgid "After \"Add to cart\" button"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:75
#: plugin-options/add_to_wishlist-options.php:107
msgid "Use shortcode"
msgstr "Usar shortcode"

#: plugin-options/add_to_wishlist-options.php:89
msgid "Product page settings"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:96
msgid "Position of \"Add to wishlist\" on product page"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:97
msgid ""
"Choose where to show \"Add to wishlist\" button or link on the product page. "
"<span class=\"addon\">Copy this shortcode <span class=\"code"
"\"><code>[yith_wcwl_add_to_wishlist]</code></span> and paste it where you "
"want to show the \"Add to wishlist\" link or button</span>"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:104
msgid "After \"Add to cart\""
msgstr "Después de \"Agregar al carrito\""

#: plugin-options/add_to_wishlist-options.php:105
msgid "After thumbnails"
msgstr "Después de las miniaturas"

#: plugin-options/add_to_wishlist-options.php:106
msgid "After summary"
msgstr "Después del resúmen"

#: plugin-options/add_to_wishlist-options.php:117
#: plugin-options/wishlist_page-options.php:222
msgid "Text customization"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:124
msgid "\"Add to wishlist\" text"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:125
msgid "Enter a text for \"Add to wishlist\" button"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:132
msgid "\"Product added\" text"
msgstr "¡Agregado!"

#: plugin-options/add_to_wishlist-options.php:133
msgid ""
"Enter the text of the message displayed when the user adds a product to the "
"wishlist"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:135
msgid "Product added!"
msgstr "¡Agregado!"

#: plugin-options/add_to_wishlist-options.php:140
msgid "\"Browse wishlist\" text"
msgstr "Ir a la Lista de deseos"

#: plugin-options/add_to_wishlist-options.php:141
msgid "Enter a text for the \"Browse wishlist\" link on the product page"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:148
msgid "\"Product already in wishlist\" text"
msgstr "Ya está en tu lista de deseos!"

#: plugin-options/add_to_wishlist-options.php:149
msgid ""
"Enter the text for the message displayed when the user views a product that "
"is already in the wishlist"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:151
msgid "The product is already in your wishlist!"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:161
msgid "Style & Color customization"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:168
msgid "Style of \"Add to wishlist\""
msgstr ""

#: plugin-options/add_to_wishlist-options.php:169
msgid ""
"Choose if you want to show a textual \"Add to wishlist\" link or a button"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:172
#: plugin-options/wishlist_page-options.php:261
msgid "Textual (anchor)"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:173
#: plugin-options/wishlist_page-options.php:262
msgid "Button with theme style"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:174
#: plugin-options/wishlist_page-options.php:263
msgid "Button with custom style"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:182
msgid "\"Add to wishlist\" button style"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:188
msgid "Choose colors for the \"Add to wishlist\" button"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:190
#: plugin-options/wishlist_page-options.php:279
#: plugin-options/wishlist_page-options.php:368
#: plugin-options/wishlist_page-options.php:417
#: plugin-options/wishlist_page-options.php:465
#: plugin-options/wishlist_page-options.php:552
#: plugin-options/wishlist_page-options.php:592
#: plugin-options/wishlist_page-options.php:632
#: plugin-options/wishlist_page-options.php:672
#: plugin-options/wishlist_page-options.php:712
msgid "Background"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:195
#: plugin-options/wishlist_page-options.php:284
#: plugin-options/wishlist_page-options.php:373
#: plugin-options/wishlist_page-options.php:422
#: plugin-options/wishlist_page-options.php:470
#: plugin-options/wishlist_page-options.php:507
msgid "Text"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:200
#: plugin-options/wishlist_page-options.php:289
#: plugin-options/wishlist_page-options.php:378
#: plugin-options/wishlist_page-options.php:427
#: plugin-options/wishlist_page-options.php:475
msgid "Border"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:206
msgid "Choose colors for the \"Add to wishlist\" button on hover state"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:208
#: plugin-options/wishlist_page-options.php:297
#: plugin-options/wishlist_page-options.php:386
#: plugin-options/wishlist_page-options.php:435
msgid "Background Hover"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:213
#: plugin-options/wishlist_page-options.php:302
#: plugin-options/wishlist_page-options.php:391
#: plugin-options/wishlist_page-options.php:440
msgid "Text Hover"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:218
#: plugin-options/wishlist_page-options.php:307
#: plugin-options/wishlist_page-options.php:396
#: plugin-options/wishlist_page-options.php:445
msgid "Border Hover"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:231
#: plugin-options/wishlist_page-options.php:320
msgid "Border radius"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:232
msgid "Choose radius for the \"Add to wishlist\" button"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:246
msgid "\"Add to wishlist\" icon"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:247
msgid "Select an icon for the \"Add to wishlist\" button (optional)"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:257
msgid "\"Add to wishlist\" custom icon"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:258
#: plugin-options/add_to_wishlist-options.php:282
msgid ""
"Upload an icon you'd like to use for \"Add to wishlist\" button (suggested "
"32px x 32px)"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:270
msgid "\"Added to wishlist\" icon"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:271
msgid "Select an icon for the \"Added to wishlist\" button (optional)"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:277
msgid "Same used for Add to wishlist"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:281
msgid "\"Added to wishlist\" custom icon"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:294
msgid "Custom CSS"
msgstr "CSS personalizado"

#: plugin-options/add_to_wishlist-options.php:295
msgid "Enter custom CSS to be applied to Wishlist elements (optional)"
msgstr ""

#: plugin-options/lists-options.php:34
msgid "Search list"
msgstr ""

#. translators: 1. Anchor to Frequently Bought Together landing page on
#. yithemes.com.
#: plugin-options/settings-options.php:19
msgid ""
"If you want to take advantage of this feature, you could consider purchasing "
"the %s."
msgstr ""

#: plugin-options/settings-options.php:34
msgid "Enable AJAX loading"
msgstr ""

#: plugin-options/settings-options.php:35
msgid "Load any cacheable wishlist item via AJAX"
msgstr ""

#: plugin-options/settings-options.php:48
msgid "YITH WooCommerce Frequently Bought Together Integration"
msgstr ""

#. translators: 1. Url to Frequently Bought Together landing page on
#. yithemes.com.
#: plugin-options/settings-options.php:51
msgid ""
"In order to use this integration you have to install and activate YITH "
"WooCommerce Frequently Bought Together. <a href=\"%s\">Learn more</a>"
msgstr ""

#: plugin-options/settings-options.php:56
msgid "Enable slider in wishlist"
msgstr ""

#. translators: 1. Example image of the integration. 2. CTA to buy Frequently
#. Bought Together.
#: plugin-options/settings-options.php:58
msgid ""
"Enable the slider with linked products on the Wishlist page (<a href=\"%1$s"
"\" class=\"thickbox\">Example</a>). %2$s"
msgstr ""

#: plugin-options/wishlist_page-options.php:19
msgid "All your wishlists"
msgstr ""

#: plugin-options/wishlist_page-options.php:26
msgid "Wishlist page"
msgstr ""

#: plugin-options/wishlist_page-options.php:27
msgid ""
"Pick a page as the main Wishlist page; make sure you add the <span class="
"\"code\"><code>[yith_wcwl_wishlist]</code></span> shortcode into the page "
"content"
msgstr ""

#: plugin-options/wishlist_page-options.php:40
msgid "Wishlist Detail Page"
msgstr ""

#: plugin-options/wishlist_page-options.php:47
#: plugin-options/wishlist_page-options.php:56
#: plugin-options/wishlist_page-options.php:65
#: plugin-options/wishlist_page-options.php:74
#: plugin-options/wishlist_page-options.php:83
#: plugin-options/wishlist_page-options.php:92
#: plugin-options/wishlist_page-options.php:101
msgid "In wishlist table show"
msgstr ""

#: plugin-options/wishlist_page-options.php:48
msgid "Product variations selected by the user (example: size or color)"
msgstr ""

#: plugin-options/wishlist_page-options.php:57
msgid "Product price"
msgstr ""

#: plugin-options/wishlist_page-options.php:66
msgid "Product stock (show if the product is available or not)"
msgstr ""

#: plugin-options/wishlist_page-options.php:75
msgid "Date on which the product was added to the wishlist"
msgstr ""

#: plugin-options/wishlist_page-options.php:84
msgid "Add to cart option for each product"
msgstr ""

#: plugin-options/wishlist_page-options.php:93
msgid ""
"Icon to remove the product from the wishlist - to the left of the product"
msgstr ""

#: plugin-options/wishlist_page-options.php:102
msgid ""
"Button to remove the product from the wishlist - to the right of the product"
msgstr ""

#: plugin-options/wishlist_page-options.php:110
msgid "Redirect to cart"
msgstr "Redireccionar al carrito"

#: plugin-options/wishlist_page-options.php:111
msgid ""
"Redirect users to the cart page when they add a product to the cart from the "
"wishlist page"
msgstr ""

#: plugin-options/wishlist_page-options.php:119
msgid "Remove if added to the cart"
msgstr "Eliminar después de agregar al carrito"

#: plugin-options/wishlist_page-options.php:120
msgid ""
"Remove the product from the wishlist after it has been added to the cart"
msgstr ""

#: plugin-options/wishlist_page-options.php:128
msgid "Share wishlist"
msgstr ""

#: plugin-options/wishlist_page-options.php:129
msgid "Enable this option to let users share their wishlist on social media"
msgstr ""

#: plugin-options/wishlist_page-options.php:137
#: plugin-options/wishlist_page-options.php:146
#: plugin-options/wishlist_page-options.php:155
#: plugin-options/wishlist_page-options.php:164
#: plugin-options/wishlist_page-options.php:173
msgid "Share on social media"
msgstr ""

#: plugin-options/wishlist_page-options.php:165
msgid "Share by email"
msgstr ""

#: plugin-options/wishlist_page-options.php:182
msgid "Share by URL"
msgstr ""

#: plugin-options/wishlist_page-options.php:183
msgid "Show \"Share URL\" field on wishlist page"
msgstr ""

#: plugin-options/wishlist_page-options.php:191
msgid "Sharing title"
msgstr ""

#: plugin-options/wishlist_page-options.php:192
msgid "Wishlist title used for sharing (only used on Twitter and Pinterest)"
msgstr ""

#. translators: 1. Blog name.
#: plugin-options/wishlist_page-options.php:195
msgid "My wishlist on %s"
msgstr "Mi lista de deseos en  %s"

#: plugin-options/wishlist_page-options.php:200
msgid "Social text"
msgstr "Texto de sociales"

#: plugin-options/wishlist_page-options.php:201
msgid ""
"Type the message you want to publish when you share your wishlist on Twitter "
"and Pinterest"
msgstr ""

#: plugin-options/wishlist_page-options.php:209
msgid "Social image URL"
msgstr "URL de las imágenes sociales"

#: plugin-options/wishlist_page-options.php:210
msgid "It will be used to pin the wishlist on Pinterest."
msgstr ""

#: plugin-options/wishlist_page-options.php:229
msgid "Default wishlist name"
msgstr ""

#: plugin-options/wishlist_page-options.php:230
msgid ""
"Enter a name for the default wishlist. This is the wishlist that will be "
"automatically generated for all users if they do not create any custom one"
msgstr ""

#: plugin-options/wishlist_page-options.php:232
#, fuzzy
msgid "My wishlist"
msgstr "Mi lista de deseos en  %s"

#: plugin-options/wishlist_page-options.php:237
msgid "\"Add to cart\" text"
msgstr ""

#: plugin-options/wishlist_page-options.php:238
msgid "Enter a text for the \"Add to cart\" button"
msgstr ""

#: plugin-options/wishlist_page-options.php:250
msgid "Style & color customization"
msgstr ""

#: plugin-options/wishlist_page-options.php:257
msgid "Style of \"Add to cart\""
msgstr ""

#: plugin-options/wishlist_page-options.php:258
msgid "Choose whether to show a textual \"Add to cart\" link or a button"
msgstr ""

#: plugin-options/wishlist_page-options.php:271
msgid "\"Add to cart\" button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:277
msgid "Choose the colors for the \"Add to cart\" button"
msgstr ""

#: plugin-options/wishlist_page-options.php:295
msgid "Choose colors for the \"Add to cart\" button on hover state"
msgstr ""

#: plugin-options/wishlist_page-options.php:321
msgid "Set the radius for the \"Add to cart\" button"
msgstr ""

#: plugin-options/wishlist_page-options.php:335
msgid "\"Add to cart\" icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:336
msgid "Select an icon for the \"Add to cart\" button (optional)"
msgstr ""

#: plugin-options/wishlist_page-options.php:351
msgid "\"Add to cart\" custom icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:352
msgid ""
"Upload an icon you'd like to use for the \"Add to cart\" button (suggested "
"32px x 32px)"
msgstr ""

#: plugin-options/wishlist_page-options.php:360
msgid "Primary button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:366
msgid ""
"Choose colors for the primary button<br/><small>This style will be applied "
"to \"Edit title\" button on Wishlist view, \"Submit Changes\" button on "
"Manage view and \"Search wishlist\" button on Search view</small>"
msgstr ""

#: plugin-options/wishlist_page-options.php:384
msgid ""
"Choose colors for the primary button on hover state<br/><small>This style "
"will be applied to \"Edit title\" button on Wishlist view, \"Submit Changes"
"\" button on Manage view and \"Search wishlist\" button on Search view</"
"small>"
msgstr ""

#: plugin-options/wishlist_page-options.php:409
msgid "Secondary button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:415
#: plugin-options/wishlist_page-options.php:433
msgid ""
"Choose colors of the secondary button<br/><small>This style will be applied "
"to the buttons that allow showing and hiding the Edit title form on Wishlist "
"view and \"Create new Wishlist\" button on Manage view</small>"
msgstr ""

#: plugin-options/wishlist_page-options.php:458
msgid "Wishlist table style"
msgstr ""

#: plugin-options/wishlist_page-options.php:459
msgid ""
"Choose the colors for the wishlist table (when set to \"Traditional\" layout)"
msgstr ""

#: plugin-options/wishlist_page-options.php:487
msgid "Highlight color"
msgstr ""

#: plugin-options/wishlist_page-options.php:488
msgid ""
"Choose the color for all sections with background<br/><small>This color will "
"be used as background for the wishlist table heading and footer (when set to "
"\"Traditional\" layout), and for various form across wishlist views</small>"
msgstr ""

#: plugin-options/wishlist_page-options.php:500
msgid "Share button text color"
msgstr ""

#: plugin-options/wishlist_page-options.php:501
msgid "Choose colors for share buttons text"
msgstr ""

#: plugin-options/wishlist_page-options.php:512
msgid "Text hover"
msgstr ""

#: plugin-options/wishlist_page-options.php:525
msgid "Facebook share button icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:526
msgid "Select an icon for the Facebook share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:536
msgid "Facebook share button custom icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:537
msgid ""
"Upload an icon you'd like to use for Facebook share button (suggested 32px x "
"32px)"
msgstr ""

#: plugin-options/wishlist_page-options.php:545
msgid "Facebook share button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:546
msgid "Choose colors for Facebook share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:557
#: plugin-options/wishlist_page-options.php:597
#: plugin-options/wishlist_page-options.php:637
#: plugin-options/wishlist_page-options.php:677
#: plugin-options/wishlist_page-options.php:717
msgid "Background hover"
msgstr ""

#: plugin-options/wishlist_page-options.php:565
msgid "Twitter share button icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:566
msgid "Select an icon for the Twitter share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:576
msgid "Twitter share button custom icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:577
msgid ""
"Upload an icon you'd like to use for Twitter share button (suggested 32px x "
"32px)"
msgstr ""

#: plugin-options/wishlist_page-options.php:585
msgid "Twitter share button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:586
msgid "Choose colors for Twitter share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:605
msgid "Pinterest share button icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:606
msgid "Select an icon for the Pinterest share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:616
msgid "Pinterest share button custom icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:617
msgid ""
"Upload an icon you'd like to use for Pinterest share button (suggested 32px "
"x 32px)"
msgstr ""

#: plugin-options/wishlist_page-options.php:625
msgid "Pinterest share button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:626
msgid "Choose colors for Pinterest share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:645
msgid "Email share button icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:646
msgid "Select an icon for the Email share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:656
msgid "Email share button custom icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:657
msgid ""
"Upload an icon you'd like to use for the Email share button (suggested 32px "
"x 32px)"
msgstr ""

#: plugin-options/wishlist_page-options.php:665
msgid "Email share button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:666
msgid "Choose colors for the Email share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:685
msgid "WhatsApp share button icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:686
msgid "Select an icon for the WhatsApp share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:696
msgid "WhatsApp share button custom icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:697
msgid ""
"Upload an icon you'd like to use for WhatsApp share button (suggested 32px x "
"32px)"
msgstr ""

#: plugin-options/wishlist_page-options.php:705
msgid "WhatsApp share button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:706
msgid "Choose colors for WhatsApp share button"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:168
#: templates/admin/wishlist-panel-premium.php:309
msgid ""
"Upgrade to the %1$spremium version%2$s%3$sof %1$sYITH WooCommerce Wishlist"
"%2$s to benefit from all features!"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:170
#: templates/admin/wishlist-panel-premium.php:311
msgid "Upgrade"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:176
msgid "Premium Features"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:180
msgid "Allow your customers to create multiple wishlists"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:182
msgid ""
"Christmas, Birthday... users will be able to create and manage multiple "
"wishlists, in case they prefer to keep the products sorted by category or "
"other parameters."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:185
msgid "Multiple Wishlist"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:192
msgid "Wishlist Private"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:196
msgid "A transparent privacy management"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:198
msgid ""
"Your customers can set a privacy option for each wishlist and choose whether "
"sharing the wishlist or making it private."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:206
msgid ""
"Allow your customers to ask for an estimate, directly from their wishlist "
"page"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:208
msgid ""
"And give only registered users the privilege to use the wishlist "
"functionalities."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:211
msgid "Estimate Cost"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:218
msgid "Admin Panel"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:222
msgid "An advanced and more versatile management of the wishlist"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:224
msgid ""
"Your customers can sort the products in the wishlist thanks to the drag&drop "
"option, move products from one wishlist to another, manage product quantity, "
"download the wishlist content to a .pdf file, share the wishlist on their "
"social networks, and much more!"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:232
msgid "Monitor your customers’ wishlists and the popular products"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:234
msgid ""
"You can see your customers’ wishlists, gain insight into the products they "
"are more interested in and plan targeted marketing strategies."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:237
msgid "Search Wishlists"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:244
msgid "'ADD TO CART'"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:248
msgid ""
"Send promotional emails for products in wishlists to push customers to buy"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:250
msgid ""
"Just three clicks to send promotional emails with discount coupons to "
"customers who have added specific products to their wishlist and push them "
"to buy."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:258
msgid "Let users buy the product right from the wishlist page"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:260
msgid ""
"Let them move products from one wishlist to the cart in one click, keeping "
"also the information about the size, colour or quantity selected when added "
"to the wishlist."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:263
msgid "DISABLE WISHLIST"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:271
msgid "Choose a charming layout for your wishlist page"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:273
msgid ""
"The wishlist is one of the most used functionalities in an ecommerce store "
"but often the page layout is not enhanced enough and looks unattractive to "
"the user. With our plugin, you can choose among some alternative layouts and "
"offer an even more interesting experience to users who creates a wishlist on "
"your website."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:276
msgid "UNLOGGED USERS"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:284
msgid "Wishlist widgets for the header and sidebars"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:286
msgid ""
"Increase the wishlist visibility through our modern widgets that you can use "
"in the header, in the sidebars, wherever you want."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:289
msgid "POPULAR TABLE"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:296
msgid "FUNCTIONALITIES"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:300
msgid "Allow users to monitor the price of the products in their wishlist"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:302
msgid ""
"We took inspiration from one of the most interesting features of Amazon "
"product pages: from now on, users can realise what’s the best time to buy a "
"product and how much they can save when there’s a promotion running or a "
"discount on the product they’ve added to the wishlist."
msgstr ""

#: templates/share.php:51 templates/share.php:52
msgid "Facebook"
msgstr ""

#: templates/share.php:59 templates/share.php:60
msgid "Twitter"
msgstr ""

#: templates/share.php:67 templates/share.php:68
msgid "Pinterest"
msgstr "Compartir en Pinterest"

#: templates/share.php:75 templates/share.php:76
msgid "Email"
msgstr ""

#: templates/share.php:83
msgid "WhatsApp"
msgstr ""

#: templates/share.php:84
msgid "Whatsapp"
msgstr ""

#: templates/share.php:93
msgid "(Now"
msgstr ""

#: templates/share.php:93
msgid "copy"
msgstr ""

#: templates/share.php:93
msgid "this wishlist link and share it anywhere)"
msgstr ""

#: templates/wishlist-view-footer-mobile.php:44
#: templates/wishlist-view-footer.php:44
msgid "Apply this action to all the selected items:"
msgstr ""

#: templates/wishlist-view-footer-mobile.php:49
#: templates/wishlist-view-footer.php:49
msgid "Remove from wishlist"
msgstr ""

#. translators: 1. Wishlist formatted name.
#: templates/wishlist-view-footer-mobile.php:67
#: templates/wishlist-view-footer.php:67
msgid "Move to %s"
msgstr ""

#: templates/wishlist-view-footer-mobile.php:73
#: templates/wishlist-view-footer.php:73
msgid "Apply"
msgstr ""

#: templates/wishlist-view-footer-mobile.php:81
#: templates/wishlist-view-footer.php:81
msgid "Update"
msgstr ""

#: templates/wishlist-view-footer-mobile.php:87
#: templates/wishlist-view-footer.php:103
msgid "Add all to cart"
msgstr ""

#: templates/wishlist-view-header.php:48
msgid "Edit title"
msgstr "Título de la Lista de deseos"

#: templates/wishlist-view-mobile.php:136
msgid "Added on:"
msgstr ""

#: templates/wishlist-view-mobile.php:147
msgid "Price:"
msgstr ""

#: templates/wishlist-view-mobile.php:174
msgid "Quantity:"
msgstr ""

#: templates/wishlist-view-mobile.php:189
msgid "Stock:"
msgstr ""

#: templates/wishlist-view-mobile.php:192 templates/wishlist-view.php:229
msgid "Out of stock"
msgstr ""

#: templates/wishlist-view-mobile.php:192 templates/wishlist-view.php:229
msgid "In Stock"
msgstr "¡Disponible!"

#: templates/wishlist-view-mobile.php:212 templates/wishlist-view.php:262
msgid "Move"
msgstr ""

#: templates/wishlist-view-mobile.php:233 templates/wishlist-view.php:283
msgid "Move to another list &rsaquo;"
msgstr ""

#: templates/wishlist-view-mobile.php:241 templates/wishlist-view.php:157
#: templates/wishlist-view.php:293
msgid "Remove this product"
msgstr "Ya no lo quiero"

#: templates/wishlist-view-mobile.php:252 templates/wishlist-view.php:313
msgid "No products added to the wishlist"
msgstr ""

#: templates/wishlist-view.php:79
msgid "Product name"
msgstr ""

#: templates/wishlist-view.php:87
msgid "Unit price"
msgstr ""

#: templates/wishlist-view.php:96
msgid "Quantity"
msgstr ""

#: templates/wishlist-view.php:105
msgid "Stock status"
msgstr ""

#: templates/wishlist-view.php:123
msgid "Arrange"
msgstr ""

#. translators: date added label: 1 date added.
#: templates/wishlist-view.php:243
msgid "Added on: %s"
msgstr ""

#: templates/wishlist-view.php:293
msgid "Remove"
msgstr ""

#. Description of the plugin/theme
msgid ""
"<code><strong>YITH WooCommerce Wishlist</strong></code> gives your users the "
"possibility to create, fill, manage and share their wishlists allowing you "
"to analyze their interests and needs to improve your marketing strategies. "
"<a href=\"https://yithemes.com/\" target=\"_blank\">Get more plugins for "
"your e-commerce on <strong>YITH</strong></a>"
msgstr ""

#: includes/class-yith-wcwl-admin.php:261
msgctxt "[HELP TAB] Video title"
msgid ""
"Check this video to learn how to <b>configure wishlist and customize options:"
"</b>"
msgstr ""

#: includes/class-yith-wcwl-install.php:340
msgctxt "page_slug"
msgid "wishlist"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:230
msgctxt "date when wishlist was created"
msgid "Created on"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:52
msgctxt "[gutenberg]: block name"
msgid "YITH Add to wishlist"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:101
msgctxt "[gutenberg]: block name"
msgid "YITH Wishlist"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:53
msgctxt "[gutenberg]: block description"
msgid "Shows Add to wishlist button"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:102
msgctxt "[gutenberg]: block description"
msgid "Shows a list of products in wishlist"
msgstr ""

#. translators: 1. % of reduction/increase in price.
#: includes/class-yith-wcwl-wishlist-item.php:428
msgctxt ""
"Part of the template that shows price variation since addition to list; "
"placeholder will be replaced with a percentage"
msgid "Price is %1$s%%"
msgstr ""

#. translators: 2: original product price.
#: includes/class-yith-wcwl-wishlist-item.php:430
msgctxt ""
"Part of the template that shows price variation since addition to list; "
"placeholder will be replaced with a price"
msgid "(Was %2$s when added  in list)"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:45
msgctxt "Elementor widget name"
msgid "YITH Wishlist Add button"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:45
#, fuzzy
msgctxt "Elementor widget name"
msgid "YITH Wishlist"
msgstr "Lista de deseos"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:87
#, fuzzy
msgctxt "Elementor section title"
msgid "Product"
msgstr "¡Agregado!"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:107
msgctxt "Elementor section title"
msgid "Labels"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:157
msgctxt "Elementor section title"
msgid "Advanced"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:87
#, fuzzy
msgctxt "Elementor section title"
msgid "Wishlist"
msgstr "Lista de deseos"

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:107
msgctxt "Elementor section title"
msgid "Pagination"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:95
#, fuzzy
msgctxt "Elementor control label"
msgid "Product ID"
msgstr "¡Agregado!"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:115
msgctxt "Elementor control label"
msgid "Button label"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:125
#, fuzzy
msgctxt "Elementor control label"
msgid "\"Browse wishlist\" label"
msgstr "Ir a la Lista de deseos"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:135
#, fuzzy
msgctxt "Elementor control label"
msgid "\"Product already in wishlist\" label"
msgstr "Ya está en tu lista de deseos!"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:145
#, fuzzy
msgctxt "Elementor control label"
msgid "\"Product added to wishlist\" label"
msgstr "Ya está en tu lista de deseos!"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:165
msgctxt "Elementor control label"
msgid "URL of the wishlist page"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:175
msgctxt "Elementor control label"
msgid "Icon for the button"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:185
msgctxt "Elementor control label"
msgid "Additional CSS classes for the button"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:95
#, fuzzy
msgctxt "Elementor control label"
msgid "Wishlist ID"
msgstr "Lista de deseos"

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:115
msgctxt "Elementor control label"
msgid "Paginate items"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:128
msgctxt "yith-woocommerce-wishlist"
msgid "Items per page"
msgstr ""

#~ msgid "My wishlist on "
#~ msgstr "Mi lista de deseos en  %s"

#~ msgid "YITH WooCommerce Wishlist"
#~ msgstr "Agregar a la Lista de deseos"
PK`x1\�"X�X�,languages/yith-woocommerce-wishlist-fa_IR.ponu�[���# Copyright (C) 2019 YITH WooCommerce Wishlist
# This file is distributed under the same license as the YITH WooCommerce Wishlist package.
msgid ""
msgstr ""
"Project-Id-Version: YITH WooCommerce Wishlist\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/yith-woocommerce-"
"wishlist\n"
"POT-Creation-Date: 2021-11-11 13:53:53+00:00\n"
"PO-Revision-Date: 2020-10-16 14:05+0200\n"
"Last-Translator: Am!n <amin.pe94@gmail.com>\n"
"Language-Team: YITH - translated to persian by dornaweb <info@dornaweb.com>\n"
"Language: fa\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 2.4.1\n"
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;_n:1,2;__ngettext:1,2;"
"__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;"
"_nx_noop:4c,1,2\n"
"X-Poedit-Basepath: .\n"
"Plural-Forms: nplurals=2; plural=n!=1;\n"
"X-Poedit-SourceCharset: UTF-8\n"
"X-Poedit-SearchPath-0: ..\n"
"X-Poedit-SearchPathExcluded-0: ../plugin-fw\n"

#: includes/class-yith-wcwl-admin.php:126
#, fuzzy
msgid "Wishlist Page"
msgstr "لیست علاقه مندی ها"

#: includes/class-yith-wcwl-admin.php:148
msgid "General settings"
msgstr ""

#: includes/class-yith-wcwl-admin.php:149
msgid "Add to wishlist options"
msgstr ""

#: includes/class-yith-wcwl-admin.php:150
msgid "Wishlist page options"
msgstr ""

#: includes/class-yith-wcwl-admin.php:151
msgid "Premium Version"
msgstr "نسخه پولی"

#: includes/class-yith-wcwl-admin.php:249
#: includes/class-yith-wcwl-install.php:342
msgid "Wishlist"
msgstr "لیست علاقه مندی ها"

#: includes/class-yith-wcwl-admin.php:251
msgid ""
"Allows your customers to create and share lists of products that they want "
"to purchase on your e-commerce."
msgstr ""

#: includes/class-yith-wcwl-ajax-handler.php:75
#: templates/add-to-wishlist-remove.php:59
msgid "View &rsaquo;"
msgstr ""

#: includes/class-yith-wcwl-ajax-handler.php:76
#: templates/add-to-wishlist-remove.php:58
msgid "or"
msgstr ""

#: includes/class-yith-wcwl-ajax-handler.php:77
msgid "Close"
msgstr ""

#: includes/class-yith-wcwl-ajax-handler.php:155
#: includes/class-yith-wcwl-ajax-handler.php:195
msgid "Product successfully removed."
msgstr "محصول با موفقیت حذف شد."

#: includes/class-yith-wcwl-form-handler.php:156
msgid "Please, make sure to enter a valid title"
msgstr ""

#: includes/class-yith-wcwl-frontend.php:461
msgid ""
"We are sorry, but this feature is available only if cookies on your browser "
"are enabled."
msgstr ""

#: includes/class-yith-wcwl-frontend.php:462
msgid "Product added to cart successfully"
msgstr ""

#: includes/class-yith-wcwl-frontend.php:725
#: includes/class-yith-wcwl-shortcode.php:239
#: plugin-options/wishlist_page-options.php:240
#: templates/wishlist-view-footer-mobile.php:46
#: templates/wishlist-view-footer.php:46
msgid "Add to cart"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:52
msgid "While you visit our site, we’ll track:"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:54
msgid ""
"Products you’ve added to the wishlist: we’ll use this to show you and other "
"users your favourite products, and to create targeted email campaigns."
msgstr ""

#: includes/class-yith-wcwl-privacy.php:55
msgid ""
"Wishlists you’ve created: we’ll keep track of the wishlists you create, and "
"make them visible to the store staff"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:57
msgid ""
"We’ll also use cookies to keep track of wishlist contents while you’re "
"browsing our site."
msgstr ""

#: includes/class-yith-wcwl-privacy.php:60
msgid ""
"Members of our team have access to the information you provide us with. For "
"example, both Administrators and Shop Managers can access:"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:62
msgid ""
"Wishlist details, such as products added, date of addition, name and privacy "
"settings of your wishlists"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:64
msgid ""
"Our team members have access to this information to offer you better deals "
"for the products you love."
msgstr ""

#: includes/class-yith-wcwl-privacy.php:84
#: includes/class-yith-wcwl-privacy.php:100
msgid "Customer wishlists"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:137 plugin-options/lists-options.php:25
#: plugin-options/lists-options.php:32
msgid "Wishlists"
msgstr "لیست علاقه مندی ها"

#. Translators: %s Order number.
#: includes/class-yith-wcwl-privacy.php:199
msgid "Removed wishlist %s."
msgstr "لیست علاقه مندی های من در %s"

#. Translators: %s Order number.
#: includes/class-yith-wcwl-privacy.php:203
msgid "Wishlist %s has been retained."
msgstr ""

#: includes/class-yith-wcwl-privacy.php:227
msgid "Token"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:228
msgid "Wishlist URL"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:229
msgid "Title"
msgstr "عنوان فیلد"

#: includes/class-yith-wcwl-privacy.php:231
msgid "Visibility"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:232
msgid "Items added"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:58
msgid ""
"ID of the product to add to the wishlist (leave empty to use the global "
"product)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:63
msgid "URL of the wishlist page (leave empty to use the default settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:68
msgid "Button label (leave empty to use the default settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:73
msgid "\"Browse wishlist\" label (leave empty to use the default settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:78
msgid ""
"\"Product already in wishlist\" label (leave empty to use the default "
"settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:83
msgid ""
"\"Product added to wishlist\" label (leave empty to use the default settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:88
msgid ""
"Icon for the button (use any FontAwesome valid class, or leave empty to use "
"the default settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:93
msgid ""
"Additional CSS classes for the button (leave empty to use the default "
"settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:107
msgid "Choose whether to paginate items in the wishlist or show them all"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:110
#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:118
msgid "Paginate"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:111
#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:119
msgid "Do not paginate"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:116
msgid "Number of items to show per page"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:121
msgid "ID of the wishlist to show (e.g. K6EOWXB888ZD)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:414
msgid "Share on:"
msgstr "اشتراک در : "

#: includes/class-yith-wcwl-shortcode.php:438
#: plugin-options/wishlist_page-options.php:138
msgid "Share on Facebook"
msgstr "اشتراک در فیس بوک"

#: includes/class-yith-wcwl-shortcode.php:455
#: plugin-options/wishlist_page-options.php:147
msgid "Tweet on Twitter"
msgstr "توییت در توییتر"

#: includes/class-yith-wcwl-shortcode.php:473
#: plugin-options/wishlist_page-options.php:156
msgid "Pin on Pinterest"
msgstr "پین به پینترست"

#: includes/class-yith-wcwl-shortcode.php:487
msgid "Share via email"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:510
#: plugin-options/wishlist_page-options.php:174
msgid "Share on WhatsApp"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:621
msgid "Remove from list"
msgstr ""

#: includes/class-yith-wcwl-wishlist-item.php:189
msgid "Free!"
msgstr "رایگان!"

#: includes/class-yith-wcwl.php:164
msgid "The item cannot be added to this wishlist"
msgstr ""

#: includes/class-yith-wcwl.php:168 includes/class-yith-wcwl.php:174
msgid "An error occurred while adding the products to the wishlist."
msgstr ""

#: includes/class-yith-wcwl.php:235 includes/class-yith-wcwl.php:241
msgid "Error. Unable to remove the product from the wishlist."
msgstr "خطا : محصول از لیست علاقه مندی ها حذف نشد."

#: includes/data-stores/class-yith-wcwl-wishlist-data-store.php:152
#: includes/data-stores/class-yith-wcwl-wishlist-data-store.php:174
msgid "Invalid wishlist."
msgstr ""

#: includes/data-stores/class-yith-wcwl-wishlist-item-data-store.php:119
msgid "Invalid wishlist item."
msgstr ""

#. translators: 1. Number of users.
#: includes/functions-yith-wcwl.php:249
msgid "%d user"
msgid_plural "%d users"
msgstr[0] ""
msgstr[1] ""

#: includes/functions-yith-wcwl.php:250
msgid "has this item in wishlist"
msgid_plural "have this item in wishlist"
msgstr[0] ""
msgstr[1] ""

#: includes/functions-yith-wcwl.php:252
msgid "You're the first"
msgstr ""

#: includes/functions-yith-wcwl.php:253
msgid "to add this item in wishlist"
msgstr ""

#. translators: 1. Count of users when many, or "another" when only one.
#: includes/functions-yith-wcwl.php:257
msgid "You and %s user"
msgid_plural "You and %d users"
msgstr[0] ""
msgstr[1] ""

#: includes/functions-yith-wcwl.php:257
msgid "another"
msgstr ""

#: includes/functions-yith-wcwl.php:258
msgid "have this item in wishlist"
msgstr ""

#: includes/functions-yith-wcwl.php:425
msgid "None"
msgstr ""

#: includes/functions-yith-wcwl.php:426
#, fuzzy
msgid "Custom"
msgstr "CSS دستی"

#: includes/functions-yith-wcwl.php:447
msgid "Shared"
msgstr ""

#: includes/functions-yith-wcwl.php:451
msgid "Only people with a link to this list can see it"
msgstr ""

#: includes/functions-yith-wcwl.php:457
msgid "Private"
msgstr ""

#: includes/functions-yith-wcwl.php:461
msgid "Only you can see this list"
msgstr ""

#: includes/functions-yith-wcwl.php:467
msgid "Public"
msgstr ""

#: includes/functions-yith-wcwl.php:471
msgid "Anyone can search for and see this list"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:118
#: plugin-options/add_to_wishlist-options.php:127
msgid "Add to wishlist"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:128
#: plugin-options/add_to_wishlist-options.php:143
msgid "Browse wishlist"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:138
#, fuzzy
msgid "Product already in wishlist"
msgstr "متن \"محصول از قبل اضافه شده\""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:148
#, fuzzy
msgid "Product added to wishlist"
msgstr "متن \"محصول از قبل اضافه شده\""

#: init.php:160
#, fuzzy
msgid "is enabled but not effective. It requires WooCommerce to work."
msgstr ""
"YITH WooCommerce Wishlist فعال شده اما برای عملکرد ابتدا باید پلاگین "
"woocommerce را نصب کنید"

#: init.php:176
msgid "You can't activate the free version of"
msgstr ""

#: init.php:176
msgid "while you are using the premium one."
msgstr ""

#: plugin-options/add_to_wishlist-options.php:20
#: plugin-options/settings-options.php:27
msgid "General Settings"
msgstr "تنظیمات عمومی"

#: plugin-options/add_to_wishlist-options.php:27
msgid "After product is added to wishlist"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:28
msgid ""
"Choose the look of the Wishlist button when the product has already been "
"added to a wishlist"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:32
#, fuzzy
msgid "Show \"Add to wishlist\" button"
msgstr "متن \"محصول از قبل اضافه شده\""

#: plugin-options/add_to_wishlist-options.php:33
msgid "Show \"View wishlist\" link"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:34
msgid "Show \"Remove from list\" link"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:48
msgid "Loop settings"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:50
msgid ""
"Loop options will be visible on Shop page, category pages, product "
"shortcodes, products sliders, and all the other places where the WooCommerce "
"products' loop is used"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:55
msgid "Show \"Add to wishlist\" in loop"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:56
msgid "Enable the \"Add to wishlist\" feature in WooCommerce products' loop"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:64
msgid "Position of \"Add to wishlist\" in loop"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:65
msgid ""
"Choose where to show \"Add to wishlist\" button or link in WooCommerce "
"products' loop. <span class=\"addon\">Copy this shortcode <span class=\"code"
"\"><code>[yith_wcwl_add_to_wishlist]</code></span> and paste it where you "
"want to show the \"Add to wishlist\" link or button</span>"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:72
msgid "On top of the image"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:73
msgid "Before \"Add to cart\" button"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:74
msgid "After \"Add to cart\" button"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:75
#: plugin-options/add_to_wishlist-options.php:107
msgid "Use shortcode"
msgstr "استفاده از شورتکد"

#: plugin-options/add_to_wishlist-options.php:89
msgid "Product page settings"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:96
msgid "Position of \"Add to wishlist\" on product page"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:97
msgid ""
"Choose where to show \"Add to wishlist\" button or link on the product page. "
"<span class=\"addon\">Copy this shortcode <span class=\"code"
"\"><code>[yith_wcwl_add_to_wishlist]</code></span> and paste it where you "
"want to show the \"Add to wishlist\" link or button</span>"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:104
msgid "After \"Add to cart\""
msgstr "بعد از  \"افزودن به سبد\""

#: plugin-options/add_to_wishlist-options.php:105
msgid "After thumbnails"
msgstr "بعد از تصاویر محصول"

#: plugin-options/add_to_wishlist-options.php:106
msgid "After summary"
msgstr "بعد از خلاصه محصول"

#: plugin-options/add_to_wishlist-options.php:117
#: plugin-options/wishlist_page-options.php:222
msgid "Text customization"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:124
msgid "\"Add to wishlist\" text"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:125
msgid "Enter a text for \"Add to wishlist\" button"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:132
msgid "\"Product added\" text"
msgstr "متن \"محصول اضافه شد\""

#: plugin-options/add_to_wishlist-options.php:133
msgid ""
"Enter the text of the message displayed when the user adds a product to the "
"wishlist"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:135
msgid "Product added!"
msgstr "اضافه شد!"

#: plugin-options/add_to_wishlist-options.php:140
msgid "\"Browse wishlist\" text"
msgstr "متن \"مشاهده علاقه مندی ها\""

#: plugin-options/add_to_wishlist-options.php:141
msgid "Enter a text for the \"Browse wishlist\" link on the product page"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:148
msgid "\"Product already in wishlist\" text"
msgstr "متن \"محصول از قبل اضافه شده\""

#: plugin-options/add_to_wishlist-options.php:149
msgid ""
"Enter the text for the message displayed when the user views a product that "
"is already in the wishlist"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:151
msgid "The product is already in your wishlist!"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:161
msgid "Style & Color customization"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:168
msgid "Style of \"Add to wishlist\""
msgstr ""

#: plugin-options/add_to_wishlist-options.php:169
msgid ""
"Choose if you want to show a textual \"Add to wishlist\" link or a button"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:172
#: plugin-options/wishlist_page-options.php:261
msgid "Textual (anchor)"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:173
#: plugin-options/wishlist_page-options.php:262
msgid "Button with theme style"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:174
#: plugin-options/wishlist_page-options.php:263
msgid "Button with custom style"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:182
msgid "\"Add to wishlist\" button style"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:188
msgid "Choose colors for the \"Add to wishlist\" button"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:190
#: plugin-options/wishlist_page-options.php:279
#: plugin-options/wishlist_page-options.php:368
#: plugin-options/wishlist_page-options.php:417
#: plugin-options/wishlist_page-options.php:465
#: plugin-options/wishlist_page-options.php:552
#: plugin-options/wishlist_page-options.php:592
#: plugin-options/wishlist_page-options.php:632
#: plugin-options/wishlist_page-options.php:672
#: plugin-options/wishlist_page-options.php:712
msgid "Background"
msgstr "پس زمینه"

#: plugin-options/add_to_wishlist-options.php:195
#: plugin-options/wishlist_page-options.php:284
#: plugin-options/wishlist_page-options.php:373
#: plugin-options/wishlist_page-options.php:422
#: plugin-options/wishlist_page-options.php:470
#: plugin-options/wishlist_page-options.php:507
msgid "Text"
msgstr "متن"

#: plugin-options/add_to_wishlist-options.php:200
#: plugin-options/wishlist_page-options.php:289
#: plugin-options/wishlist_page-options.php:378
#: plugin-options/wishlist_page-options.php:427
#: plugin-options/wishlist_page-options.php:475
msgid "Border"
msgstr "کادر"

#: plugin-options/add_to_wishlist-options.php:206
msgid "Choose colors for the \"Add to wishlist\" button on hover state"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:208
#: plugin-options/wishlist_page-options.php:297
#: plugin-options/wishlist_page-options.php:386
#: plugin-options/wishlist_page-options.php:435
msgid "Background Hover"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:213
#: plugin-options/wishlist_page-options.php:302
#: plugin-options/wishlist_page-options.php:391
#: plugin-options/wishlist_page-options.php:440
msgid "Text Hover"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:218
#: plugin-options/wishlist_page-options.php:307
#: plugin-options/wishlist_page-options.php:396
#: plugin-options/wishlist_page-options.php:445
msgid "Border Hover"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:231
#: plugin-options/wishlist_page-options.php:320
msgid "Border radius"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:232
msgid "Choose radius for the \"Add to wishlist\" button"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:246
msgid "\"Add to wishlist\" icon"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:247
msgid "Select an icon for the \"Add to wishlist\" button (optional)"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:257
msgid "\"Add to wishlist\" custom icon"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:258
#: plugin-options/add_to_wishlist-options.php:282
msgid ""
"Upload an icon you'd like to use for \"Add to wishlist\" button (suggested "
"32px x 32px)"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:270
msgid "\"Added to wishlist\" icon"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:271
msgid "Select an icon for the \"Added to wishlist\" button (optional)"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:277
msgid "Same used for Add to wishlist"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:281
msgid "\"Added to wishlist\" custom icon"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:294
msgid "Custom CSS"
msgstr "CSS دستی"

#: plugin-options/add_to_wishlist-options.php:295
msgid "Enter custom CSS to be applied to Wishlist elements (optional)"
msgstr ""

#: plugin-options/lists-options.php:34
msgid "Search list"
msgstr ""

#. translators: 1. Anchor to Frequently Bought Together landing page on
#. yithemes.com.
#: plugin-options/settings-options.php:19
msgid ""
"If you want to take advantage of this feature, you could consider purchasing "
"the %s."
msgstr ""

#: plugin-options/settings-options.php:34
msgid "Enable AJAX loading"
msgstr ""

#: plugin-options/settings-options.php:35
msgid "Load any cacheable wishlist item via AJAX"
msgstr ""

#: plugin-options/settings-options.php:48
msgid "YITH WooCommerce Frequently Bought Together Integration"
msgstr ""

#. translators: 1. Url to Frequently Bought Together landing page on
#. yithemes.com.
#: plugin-options/settings-options.php:51
msgid ""
"In order to use this integration you have to install and activate YITH "
"WooCommerce Frequently Bought Together. <a href=\"%s\">Learn more</a>"
msgstr ""

#: plugin-options/settings-options.php:56
msgid "Enable slider in wishlist"
msgstr ""

#. translators: 1. Example image of the integration. 2. CTA to buy Frequently
#. Bought Together.
#: plugin-options/settings-options.php:58
msgid ""
"Enable the slider with linked products on the Wishlist page (<a href=\"%1$s"
"\" class=\"thickbox\">Example</a>). %2$s"
msgstr ""

#: plugin-options/wishlist_page-options.php:19
msgid "All your wishlists"
msgstr ""

#: plugin-options/wishlist_page-options.php:26
msgid "Wishlist page"
msgstr ""

#: plugin-options/wishlist_page-options.php:27
msgid ""
"Pick a page as the main Wishlist page; make sure you add the <span class="
"\"code\"><code>[yith_wcwl_wishlist]</code></span> shortcode into the page "
"content"
msgstr ""

#: plugin-options/wishlist_page-options.php:40
msgid "Wishlist Detail Page"
msgstr ""

#: plugin-options/wishlist_page-options.php:47
#: plugin-options/wishlist_page-options.php:56
#: plugin-options/wishlist_page-options.php:65
#: plugin-options/wishlist_page-options.php:74
#: plugin-options/wishlist_page-options.php:83
#: plugin-options/wishlist_page-options.php:92
#: plugin-options/wishlist_page-options.php:101
msgid "In wishlist table show"
msgstr ""

#: plugin-options/wishlist_page-options.php:48
msgid "Product variations selected by the user (example: size or color)"
msgstr ""

#: plugin-options/wishlist_page-options.php:57
msgid "Product price"
msgstr ""

#: plugin-options/wishlist_page-options.php:66
msgid "Product stock (show if the product is available or not)"
msgstr ""

#: plugin-options/wishlist_page-options.php:75
msgid "Date on which the product was added to the wishlist"
msgstr ""

#: plugin-options/wishlist_page-options.php:84
msgid "Add to cart option for each product"
msgstr ""

#: plugin-options/wishlist_page-options.php:93
msgid ""
"Icon to remove the product from the wishlist - to the left of the product"
msgstr ""

#: plugin-options/wishlist_page-options.php:102
msgid ""
"Button to remove the product from the wishlist - to the right of the product"
msgstr ""

#: plugin-options/wishlist_page-options.php:110
msgid "Redirect to cart"
msgstr "انتقال به سبد خرید"

#: plugin-options/wishlist_page-options.php:111
msgid ""
"Redirect users to the cart page when they add a product to the cart from the "
"wishlist page"
msgstr ""

#: plugin-options/wishlist_page-options.php:119
msgid "Remove if added to the cart"
msgstr "حذف محصول در صورت افزودن به سبد"

#: plugin-options/wishlist_page-options.php:120
msgid ""
"Remove the product from the wishlist after it has been added to the cart"
msgstr ""

#: plugin-options/wishlist_page-options.php:128
msgid "Share wishlist"
msgstr ""

#: plugin-options/wishlist_page-options.php:129
msgid "Enable this option to let users share their wishlist on social media"
msgstr ""

#: plugin-options/wishlist_page-options.php:137
#: plugin-options/wishlist_page-options.php:146
#: plugin-options/wishlist_page-options.php:155
#: plugin-options/wishlist_page-options.php:164
#: plugin-options/wishlist_page-options.php:173
msgid "Share on social media"
msgstr ""

#: plugin-options/wishlist_page-options.php:165
msgid "Share by email"
msgstr ""

#: plugin-options/wishlist_page-options.php:182
msgid "Share by URL"
msgstr ""

#: plugin-options/wishlist_page-options.php:183
msgid "Show \"Share URL\" field on wishlist page"
msgstr ""

#: plugin-options/wishlist_page-options.php:191
msgid "Sharing title"
msgstr ""

#: plugin-options/wishlist_page-options.php:192
msgid "Wishlist title used for sharing (only used on Twitter and Pinterest)"
msgstr ""

#. translators: 1. Blog name.
#: plugin-options/wishlist_page-options.php:195
msgid "My wishlist on %s"
msgstr "لیست علاقه مندی های من در %s"

#: plugin-options/wishlist_page-options.php:200
msgid "Social text"
msgstr "متن اجتماعی"

#: plugin-options/wishlist_page-options.php:201
msgid ""
"Type the message you want to publish when you share your wishlist on Twitter "
"and Pinterest"
msgstr ""

#: plugin-options/wishlist_page-options.php:209
msgid "Social image URL"
msgstr "آدرس تصویر اجتماعی"

#: plugin-options/wishlist_page-options.php:210
msgid "It will be used to pin the wishlist on Pinterest."
msgstr ""

#: plugin-options/wishlist_page-options.php:229
msgid "Default wishlist name"
msgstr ""

#: plugin-options/wishlist_page-options.php:230
msgid ""
"Enter a name for the default wishlist. This is the wishlist that will be "
"automatically generated for all users if they do not create any custom one"
msgstr ""

#: plugin-options/wishlist_page-options.php:232
#, fuzzy
msgid "My wishlist"
msgstr "لیست علاقه مندی های من در %s"

#: plugin-options/wishlist_page-options.php:237
msgid "\"Add to cart\" text"
msgstr ""

#: plugin-options/wishlist_page-options.php:238
msgid "Enter a text for the \"Add to cart\" button"
msgstr ""

#: plugin-options/wishlist_page-options.php:250
msgid "Style & color customization"
msgstr ""

#: plugin-options/wishlist_page-options.php:257
msgid "Style of \"Add to cart\""
msgstr ""

#: plugin-options/wishlist_page-options.php:258
msgid "Choose whether to show a textual \"Add to cart\" link or a button"
msgstr ""

#: plugin-options/wishlist_page-options.php:271
msgid "\"Add to cart\" button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:277
msgid "Choose the colors for the \"Add to cart\" button"
msgstr ""

#: plugin-options/wishlist_page-options.php:295
msgid "Choose colors for the \"Add to cart\" button on hover state"
msgstr ""

#: plugin-options/wishlist_page-options.php:321
msgid "Set the radius for the \"Add to cart\" button"
msgstr ""

#: plugin-options/wishlist_page-options.php:335
msgid "\"Add to cart\" icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:336
msgid "Select an icon for the \"Add to cart\" button (optional)"
msgstr ""

#: plugin-options/wishlist_page-options.php:351
msgid "\"Add to cart\" custom icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:352
msgid ""
"Upload an icon you'd like to use for the \"Add to cart\" button (suggested "
"32px x 32px)"
msgstr ""

#: plugin-options/wishlist_page-options.php:360
msgid "Primary button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:366
msgid ""
"Choose colors for the primary button<br/><small>This style will be applied "
"to \"Edit title\" button on Wishlist view, \"Submit Changes\" button on "
"Manage view and \"Search wishlist\" button on Search view</small>"
msgstr ""

#: plugin-options/wishlist_page-options.php:384
msgid ""
"Choose colors for the primary button on hover state<br/><small>This style "
"will be applied to \"Edit title\" button on Wishlist view, \"Submit Changes"
"\" button on Manage view and \"Search wishlist\" button on Search view</"
"small>"
msgstr ""

#: plugin-options/wishlist_page-options.php:409
msgid "Secondary button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:415
#: plugin-options/wishlist_page-options.php:433
msgid ""
"Choose colors of the secondary button<br/><small>This style will be applied "
"to the buttons that allow showing and hiding the Edit title form on Wishlist "
"view and \"Create new Wishlist\" button on Manage view</small>"
msgstr ""

#: plugin-options/wishlist_page-options.php:458
msgid "Wishlist table style"
msgstr ""

#: plugin-options/wishlist_page-options.php:459
msgid ""
"Choose the colors for the wishlist table (when set to \"Traditional\" layout)"
msgstr ""

#: plugin-options/wishlist_page-options.php:487
msgid "Highlight color"
msgstr ""

#: plugin-options/wishlist_page-options.php:488
msgid ""
"Choose the color for all sections with background<br/><small>This color will "
"be used as background for the wishlist table heading and footer (when set to "
"\"Traditional\" layout), and for various form across wishlist views</small>"
msgstr ""

#: plugin-options/wishlist_page-options.php:500
msgid "Share button text color"
msgstr ""

#: plugin-options/wishlist_page-options.php:501
msgid "Choose colors for share buttons text"
msgstr ""

#: plugin-options/wishlist_page-options.php:512
msgid "Text hover"
msgstr ""

#: plugin-options/wishlist_page-options.php:525
msgid "Facebook share button icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:526
msgid "Select an icon for the Facebook share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:536
msgid "Facebook share button custom icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:537
msgid ""
"Upload an icon you'd like to use for Facebook share button (suggested 32px x "
"32px)"
msgstr ""

#: plugin-options/wishlist_page-options.php:545
msgid "Facebook share button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:546
msgid "Choose colors for Facebook share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:557
#: plugin-options/wishlist_page-options.php:597
#: plugin-options/wishlist_page-options.php:637
#: plugin-options/wishlist_page-options.php:677
#: plugin-options/wishlist_page-options.php:717
msgid "Background hover"
msgstr ""

#: plugin-options/wishlist_page-options.php:565
msgid "Twitter share button icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:566
msgid "Select an icon for the Twitter share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:576
msgid "Twitter share button custom icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:577
msgid ""
"Upload an icon you'd like to use for Twitter share button (suggested 32px x "
"32px)"
msgstr ""

#: plugin-options/wishlist_page-options.php:585
msgid "Twitter share button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:586
msgid "Choose colors for Twitter share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:605
msgid "Pinterest share button icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:606
msgid "Select an icon for the Pinterest share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:616
msgid "Pinterest share button custom icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:617
msgid ""
"Upload an icon you'd like to use for Pinterest share button (suggested 32px "
"x 32px)"
msgstr ""

#: plugin-options/wishlist_page-options.php:625
msgid "Pinterest share button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:626
msgid "Choose colors for Pinterest share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:645
msgid "Email share button icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:646
msgid "Select an icon for the Email share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:656
msgid "Email share button custom icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:657
msgid ""
"Upload an icon you'd like to use for the Email share button (suggested 32px "
"x 32px)"
msgstr ""

#: plugin-options/wishlist_page-options.php:665
msgid "Email share button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:666
msgid "Choose colors for the Email share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:685
msgid "WhatsApp share button icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:686
msgid "Select an icon for the WhatsApp share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:696
msgid "WhatsApp share button custom icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:697
msgid ""
"Upload an icon you'd like to use for WhatsApp share button (suggested 32px x "
"32px)"
msgstr ""

#: plugin-options/wishlist_page-options.php:705
msgid "WhatsApp share button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:706
msgid "Choose colors for WhatsApp share button"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:168
#: templates/admin/wishlist-panel-premium.php:309
msgid ""
"Upgrade to the %1$spremium version%2$s%3$sof %1$sYITH WooCommerce Wishlist"
"%2$s to benefit from all features!"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:170
#: templates/admin/wishlist-panel-premium.php:311
msgid "Upgrade"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:176
msgid "Premium Features"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:180
msgid "Allow your customers to create multiple wishlists"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:182
msgid ""
"Christmas, Birthday... users will be able to create and manage multiple "
"wishlists, in case they prefer to keep the products sorted by category or "
"other parameters."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:185
msgid "Multiple Wishlist"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:192
msgid "Wishlist Private"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:196
msgid "A transparent privacy management"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:198
msgid ""
"Your customers can set a privacy option for each wishlist and choose whether "
"sharing the wishlist or making it private."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:206
msgid ""
"Allow your customers to ask for an estimate, directly from their wishlist "
"page"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:208
msgid ""
"And give only registered users the privilege to use the wishlist "
"functionalities."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:211
msgid "Estimate Cost"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:218
msgid "Admin Panel"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:222
msgid "An advanced and more versatile management of the wishlist"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:224
msgid ""
"Your customers can sort the products in the wishlist thanks to the drag&drop "
"option, move products from one wishlist to another, manage product quantity, "
"download the wishlist content to a .pdf file, share the wishlist on their "
"social networks, and much more!"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:232
msgid "Monitor your customers’ wishlists and the popular products"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:234
msgid ""
"You can see your customers’ wishlists, gain insight into the products they "
"are more interested in and plan targeted marketing strategies."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:237
msgid "Search Wishlists"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:244
msgid "'ADD TO CART'"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:248
msgid ""
"Send promotional emails for products in wishlists to push customers to buy"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:250
msgid ""
"Just three clicks to send promotional emails with discount coupons to "
"customers who have added specific products to their wishlist and push them "
"to buy."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:258
msgid "Let users buy the product right from the wishlist page"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:260
msgid ""
"Let them move products from one wishlist to the cart in one click, keeping "
"also the information about the size, colour or quantity selected when added "
"to the wishlist."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:263
msgid "DISABLE WISHLIST"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:271
msgid "Choose a charming layout for your wishlist page"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:273
msgid ""
"The wishlist is one of the most used functionalities in an ecommerce store "
"but often the page layout is not enhanced enough and looks unattractive to "
"the user. With our plugin, you can choose among some alternative layouts and "
"offer an even more interesting experience to users who creates a wishlist on "
"your website."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:276
msgid "UNLOGGED USERS"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:284
msgid "Wishlist widgets for the header and sidebars"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:286
msgid ""
"Increase the wishlist visibility through our modern widgets that you can use "
"in the header, in the sidebars, wherever you want."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:289
msgid "POPULAR TABLE"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:296
msgid "FUNCTIONALITIES"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:300
msgid "Allow users to monitor the price of the products in their wishlist"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:302
msgid ""
"We took inspiration from one of the most interesting features of Amazon "
"product pages: from now on, users can realise what’s the best time to buy a "
"product and how much they can save when there’s a promotion running or a "
"discount on the product they’ve added to the wishlist."
msgstr ""

#: templates/share.php:51 templates/share.php:52
msgid "Facebook"
msgstr "فیسبوک"

#: templates/share.php:59 templates/share.php:60
msgid "Twitter"
msgstr "توییتر"

#: templates/share.php:67 templates/share.php:68
msgid "Pinterest"
msgstr "پینترست"

#: templates/share.php:75 templates/share.php:76
msgid "Email"
msgstr "ایمیل"

#: templates/share.php:83
msgid "WhatsApp"
msgstr ""

#: templates/share.php:84
msgid "Whatsapp"
msgstr ""

#: templates/share.php:93
msgid "(Now"
msgstr ""

#: templates/share.php:93
msgid "copy"
msgstr ""

#: templates/share.php:93
msgid "this wishlist link and share it anywhere)"
msgstr ""

#: templates/wishlist-view-footer-mobile.php:44
#: templates/wishlist-view-footer.php:44
msgid "Apply this action to all the selected items:"
msgstr ""

#: templates/wishlist-view-footer-mobile.php:49
#: templates/wishlist-view-footer.php:49
msgid "Remove from wishlist"
msgstr ""

#. translators: 1. Wishlist formatted name.
#: templates/wishlist-view-footer-mobile.php:67
#: templates/wishlist-view-footer.php:67
msgid "Move to %s"
msgstr ""

#: templates/wishlist-view-footer-mobile.php:73
#: templates/wishlist-view-footer.php:73
msgid "Apply"
msgstr ""

#: templates/wishlist-view-footer-mobile.php:81
#: templates/wishlist-view-footer.php:81
msgid "Update"
msgstr ""

#: templates/wishlist-view-footer-mobile.php:87
#: templates/wishlist-view-footer.php:103
msgid "Add all to cart"
msgstr ""

#: templates/wishlist-view-header.php:48
msgid "Edit title"
msgstr "ویرایش عنوان"

#: templates/wishlist-view-mobile.php:136
msgid "Added on:"
msgstr ""

#: templates/wishlist-view-mobile.php:147
msgid "Price:"
msgstr ""

#: templates/wishlist-view-mobile.php:174
msgid "Quantity:"
msgstr ""

#: templates/wishlist-view-mobile.php:189
msgid "Stock:"
msgstr ""

#: templates/wishlist-view-mobile.php:192 templates/wishlist-view.php:229
msgid "Out of stock"
msgstr ""

#: templates/wishlist-view-mobile.php:192 templates/wishlist-view.php:229
msgid "In Stock"
msgstr "موجود"

#: templates/wishlist-view-mobile.php:212 templates/wishlist-view.php:262
msgid "Move"
msgstr ""

#: templates/wishlist-view-mobile.php:233 templates/wishlist-view.php:283
msgid "Move to another list &rsaquo;"
msgstr ""

#: templates/wishlist-view-mobile.php:241 templates/wishlist-view.php:157
#: templates/wishlist-view.php:293
msgid "Remove this product"
msgstr "حذف این محصول"

#: templates/wishlist-view-mobile.php:252 templates/wishlist-view.php:313
msgid "No products added to the wishlist"
msgstr ""

#: templates/wishlist-view.php:79
msgid "Product name"
msgstr ""

#: templates/wishlist-view.php:87
msgid "Unit price"
msgstr ""

#: templates/wishlist-view.php:96
msgid "Quantity"
msgstr ""

#: templates/wishlist-view.php:105
msgid "Stock status"
msgstr ""

#: templates/wishlist-view.php:123
msgid "Arrange"
msgstr ""

#. translators: date added label: 1 date added.
#: templates/wishlist-view.php:243
msgid "Added on: %s"
msgstr ""

#: templates/wishlist-view.php:293
msgid "Remove"
msgstr "حذف"

#. Description of the plugin/theme
msgid ""
"<code><strong>YITH WooCommerce Wishlist</strong></code> gives your users the "
"possibility to create, fill, manage and share their wishlists allowing you "
"to analyze their interests and needs to improve your marketing strategies. "
"<a href=\"https://yithemes.com/\" target=\"_blank\">Get more plugins for "
"your e-commerce on <strong>YITH</strong></a>"
msgstr ""

#: includes/class-yith-wcwl-admin.php:261
msgctxt "[HELP TAB] Video title"
msgid ""
"Check this video to learn how to <b>configure wishlist and customize options:"
"</b>"
msgstr ""

#: includes/class-yith-wcwl-install.php:340
msgctxt "page_slug"
msgid "wishlist"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:230
msgctxt "date when wishlist was created"
msgid "Created on"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:52
msgctxt "[gutenberg]: block name"
msgid "YITH Add to wishlist"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:101
msgctxt "[gutenberg]: block name"
msgid "YITH Wishlist"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:53
msgctxt "[gutenberg]: block description"
msgid "Shows Add to wishlist button"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:102
msgctxt "[gutenberg]: block description"
msgid "Shows a list of products in wishlist"
msgstr ""

#. translators: 1. % of reduction/increase in price.
#: includes/class-yith-wcwl-wishlist-item.php:428
msgctxt ""
"Part of the template that shows price variation since addition to list; "
"placeholder will be replaced with a percentage"
msgid "Price is %1$s%%"
msgstr ""

#. translators: 2: original product price.
#: includes/class-yith-wcwl-wishlist-item.php:430
msgctxt ""
"Part of the template that shows price variation since addition to list; "
"placeholder will be replaced with a price"
msgid "(Was %2$s when added  in list)"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:45
msgctxt "Elementor widget name"
msgid "YITH Wishlist Add button"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:45
#, fuzzy
msgctxt "Elementor widget name"
msgid "YITH Wishlist"
msgstr "لیست علاقه مندی ها"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:87
#, fuzzy
msgctxt "Elementor section title"
msgid "Product"
msgstr "اضافه شد!"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:107
msgctxt "Elementor section title"
msgid "Labels"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:157
msgctxt "Elementor section title"
msgid "Advanced"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:87
#, fuzzy
msgctxt "Elementor section title"
msgid "Wishlist"
msgstr "لیست علاقه مندی ها"

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:107
msgctxt "Elementor section title"
msgid "Pagination"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:95
#, fuzzy
msgctxt "Elementor control label"
msgid "Product ID"
msgstr "اضافه شد!"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:115
msgctxt "Elementor control label"
msgid "Button label"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:125
#, fuzzy
msgctxt "Elementor control label"
msgid "\"Browse wishlist\" label"
msgstr "متن \"مشاهده علاقه مندی ها\""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:135
#, fuzzy
msgctxt "Elementor control label"
msgid "\"Product already in wishlist\" label"
msgstr "متن \"محصول از قبل اضافه شده\""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:145
#, fuzzy
msgctxt "Elementor control label"
msgid "\"Product added to wishlist\" label"
msgstr "متن \"محصول از قبل اضافه شده\""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:165
msgctxt "Elementor control label"
msgid "URL of the wishlist page"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:175
msgctxt "Elementor control label"
msgid "Icon for the button"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:185
msgctxt "Elementor control label"
msgid "Additional CSS classes for the button"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:95
#, fuzzy
msgctxt "Elementor control label"
msgid "Wishlist ID"
msgstr "لیست علاقه مندی ها"

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:115
msgctxt "Elementor control label"
msgid "Paginate items"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:128
msgctxt "yith-woocommerce-wishlist"
msgid "Items per page"
msgstr ""

#~ msgid "My wishlist on "
#~ msgstr "لیست علاقه مندی های من در %s"

#~ msgid "YITH WooCommerce Wishlist"
#~ msgstr "YITH WooCommerce Wishlist"

#~ msgid "Save"
#~ msgstr "ذخیره"

#~ msgid "Cancel"
#~ msgstr "لغو"
PK`x1\�2��	�	,languages/yith-woocommerce-wishlist-pl_PL.monu�[�����",/<�
�
#
*
5@6F}������	����9Mb	t~���
��	�.��)
:6H��	�	���	���		"	8	>	]	c	{	�	
�	�	�	�	�	�	�	
 
"!	After summaryAfter thumbnailsBackgroundBorderCustom CSSEdit titleEmailError. Unable to remove the product from the wishlist.FacebookFree!General SettingsIn StockMoveMy wishlist on %sPin on PinterestPinterestPrivateProduct successfully removed.PublicRedirect to cartRemoveRemove if added to the cartRemove this productRemoved wishlist %s.Share on FacebookShare on:SharedTextTweet on TwitterTwitterUse shortcodeWishlistWishlistsProject-Id-Version: YITH WooCommerce Wishlist
Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/yith-woocommerce-wishlist
POT-Creation-Date: 2021-11-11 13:53:53+00:00
PO-Revision-Date: 2020-10-16 14:06+0200
Last-Translator: 
Language-Team: Your Inspiration Themes <plugins@yithemes.com>
Language: pl_PL
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Generator: Poedit 2.4.1
X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;_n:1,2;__ngettext:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2
X-Poedit-Basepath: .
Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);
X-Poedit-SourceCharset: UTF-8
X-Poedit-SearchPath-0: ..
X-Poedit-SearchPathExcluded-0: ../plugin-fw
Po podsumowaniuZa miniaturamiTłoRamkaWłasny CSSEdytuj tytułAdres mailowyBłąd. Nie można usunąć produktu z listy życzeń.FacebookDarmowe!Ustawienia ogólneDostępnyPrzenieśMoja lista życzeń: %sPoleć na PintereściePinterestPrywatnyProdukt został usunięty.PublicznyPrzekieruj do koszykaUsuńUsuń jeśli dodane do koszykaUsuńMoja lista życzeń: %sUdostępnij na FacebookuUdostępnij na:UdostępnionyTekstPoleć na TwitterzeTwitterUżyj shortcodeObserwowaneObserwowanePK`x1\��ыj�j�,languages/yith-woocommerce-wishlist-fr_FR.monu�[�����",	�<PQl�����7AP�K��M
"X{�T���#&6	NXOe��"�
&j9<�'�	,<
DO`q��
��6�L�C\'t(�&�'�$ 99 .s =� (� �	!��!��"G�#.�#�$.�$K%\b%�%�&A�'?(W(](
d(o(3�(�(�(
�(/�(9);Q)=�)$�)+�)&*"C*0f*#�* �*�*"�*+ >+#_+.�+�+�+�+�+,,B6,Dy,��,)R-)|-?�->�-f%.T�.6�./!!/C/^/z/�/�/�/P�/.0a20I�0T�031�<1�1�1�11292)E2�o2
3�$3�3
�3�3�3�3!�34 4?4/S4�4e�455�5��5�26�6	�6"�6	7%7(B7%k7-�7�7�7�7�7"�7808?8[8h8
~87�8�8@�8�#9�9�9	�9�9Z�9@:G:X:m:H�:�:�:�:;%;6<;:s;<�;)�;,<-B<+p<,�<+�<�<
==)=;=M=	c=m=}=�=
�=�=�='�=>>0><>I>P>l>�>�>�>
�>�>
�>�>)�>(#?L?R?X?i? q?�?�?Z�?B"@
e@p@Uw@R�@S AQtAR�AUBSoB
�B
�B
�BX�B]CC�C!�C�C�CD(D5D>D]D
rD�Dg�D
�DEED.E	sEt}E7�E *FKF;\FC�F,�F%	G/G)4G4^G�G�G�G)�G�G(H�4H#�I)�I&JAJ1[J7�J(�J'�J7K(NKdwK&�KmLqLn�L0�L)MHM�TM�N�N/O<O(\O�O�Od�OP$ P3EPyP�P�Pu�PO5Q1�Q	�Q=�Q	�Q	RR&R#@RdRlR~R�RM�RM�RJSjS5�S;�S4�S5-T<cT?�TC�TR$U:wU9�U�VXdYD�YQ�Y5[wP[u�[J>\:�]T�^F_`_
g_u_�_C�_$�_``+0`4\`5�`+�`�`aa
5a#@adaa�a
�a�a�a
�a�a�a5�a5b#Ubyb+�bd�bp%c��c@Wd5�dT�d\#e|�ec�eCaf�f3�f$�f#g+g4gIg^g_vgA�g�hM�h[�hDi�Mi�i*�i#jCAj�jY�j��j�k��k	�l�l'�l�l�l-�l)m(/mXmCkm!�m��mWnknsn+�n��nlo	~o4�o%�o$�o.p77pAop�p�p�p�p&�p'q7q(Hqqq�q�q@�q�qUr�fr5s	>s
HsSs�ls	�s�s!t4tMSt�t�t,�t�tuH*uVsuV�u;!v;]v<�v:�v;w2Mw&�w�w�w�w�w!�w
x'x;xYxbx4sx(�xF�x0yIy`ymy~y)�y)�y�y*�y!z&z6zPz`z>pz3�z�z�z�z{2{#?{"c{r�{\�{
V|d|}q|o�|p_}n�}o?~o�~o�
��x��8���3Ȁ$��#!�E�2N���+��'��������'҂��e�}����@0�5q���1��7�'�
C�Q�	X�Qb�+����:�+.�Z�!�
.Q����'�+c
�jJI����zG���9����_;���	5� �3�M��*s"��0��q�$�/�u�#��n�a�D6:��{Y������^���p���bC[��rUS���w,�\��t�y�m�|B4eLT�V&]��P��N�	��x��!��7�-�kW�<�iHg�������Z��?�"��%
)2o�X� F��d����`��~�E1@RAf��l(>}����h���8
�K������vO����������="Add to cart" button style"Add to cart" custom icon"Add to cart" icon"Add to cart" text"Add to wishlist" button style"Add to wishlist" custom icon"Add to wishlist" icon"Add to wishlist" text"Added to wishlist" custom icon"Added to wishlist" icon"Browse wishlist" label (leave empty to use the default settings)"Browse wishlist" text"Product added to wishlist" label (leave empty to use the default settings)"Product added" text"Product already in wishlist" label (leave empty to use the default settings)"Product already in wishlist" text%d user%d users(Now<code><strong>YITH WooCommerce Wishlist</strong></code> gives your users the possibility to create, fill, manage and share their wishlists allowing you to analyze their interests and needs to improve your marketing strategies. <a href="https://yithemes.com/" target="_blank">Get more plugins for your e-commerce on <strong>YITH</strong></a>Add all to cartAdd to cartAdd to cart option for each productAdd to wishlistAdd to wishlist optionsAdded on:Added on: %sAdditional CSS classes for the button (leave empty to use the default settings)After "Add to cart"After "Add to cart" buttonAfter product is added to wishlistAfter summaryAfter thumbnailsAll your wishlistsAllows your customers to create and share lists of products that they want to purchase on your e-commerce.An error occurred while adding the products to the wishlist.Anyone can search for and see this listApplyApply this action to all the selected items:ArrangeBackgroundBackground HoverBackground hoverBefore "Add to cart" buttonBorderBorder HoverBorder radiusBrowse wishlistButton label (leave empty to use the default settings)Button to remove the product from the wishlist - to the right of the productButton with custom styleButton with theme styleChoose colors for Facebook share buttonChoose colors for Pinterest share buttonChoose colors for Twitter share buttonChoose colors for WhatsApp share buttonChoose colors for share buttons textChoose colors for the "Add to cart" button on hover stateChoose colors for the "Add to wishlist" buttonChoose colors for the "Add to wishlist" button on hover stateChoose colors for the Email share buttonChoose colors for the primary button on hover state<br/><small>This style will be applied to "Edit title" button on Wishlist view, "Submit Changes" button on Manage view and "Search wishlist" button on Search view</small>Choose colors for the primary button<br/><small>This style will be applied to "Edit title" button on Wishlist view, "Submit Changes" button on Manage view and "Search wishlist" button on Search view</small>Choose colors of the secondary button<br/><small>This style will be applied to the buttons that allow showing and hiding the Edit title form on Wishlist view and "Create new Wishlist" button on Manage view</small>Choose if you want to show a textual "Add to wishlist" link or a buttonChoose radius for the "Add to wishlist" buttonChoose the color for all sections with background<br/><small>This color will be used as background for the wishlist table heading and footer (when set to "Traditional" layout), and for various form across wishlist views</small>Choose the colors for the "Add to cart" buttonChoose the colors for the wishlist table (when set to "Traditional" layout)Choose the look of the Wishlist button when the product has already been added to a wishlistChoose where to show "Add to wishlist" button or link in WooCommerce products' loop. <span class="addon">Copy this shortcode <span class="code"><code>[yith_wcwl_add_to_wishlist]</code></span> and paste it where you want to show the "Add to wishlist" link or button</span>Choose where to show "Add to wishlist" button or link on the product page. <span class="addon">Copy this shortcode <span class="code"><code>[yith_wcwl_add_to_wishlist]</code></span> and paste it where you want to show the "Add to wishlist" link or button</span>Choose whether to paginate items in the wishlist or show them allChoose whether to show a textual "Add to cart" link or a buttonCloseCustomCustom CSSCustomer wishlistsDate on which the product was added to the wishlistDefault wishlist nameDo not paginateEdit titleElementor control label"Browse wishlist" labelElementor control label"Product added to wishlist" labelElementor control label"Product already in wishlist" labelElementor control labelAdditional CSS classes for the buttonElementor control labelButton labelElementor control labelIcon for the buttonElementor control labelPaginate itemsElementor control labelProduct IDElementor control labelURL of the wishlist pageElementor control labelWishlist IDElementor section titleAdvancedElementor section titleLabelsElementor section titlePaginationElementor section titleProductElementor section titleWishlistElementor widget nameYITH WishlistElementor widget nameYITH Wishlist Add buttonEmailEmail share button custom iconEmail share button iconEmail share button styleEnable AJAX loadingEnable slider in wishlistEnable the "Add to wishlist" feature in WooCommerce products' loopEnable this option to let users share their wishlist on social mediaEnter a name for the default wishlist. This is the wishlist that will be automatically generated for all users if they do not create any custom oneEnter a text for "Add to wishlist" buttonEnter a text for the "Add to cart" buttonEnter a text for the "Browse wishlist" link on the product pageEnter custom CSS to be applied to Wishlist elements (optional)Enter the text for the message displayed when the user views a product that is already in the wishlistEnter the text of the message displayed when the user adds a product to the wishlistError. Unable to remove the product from the wishlist.FacebookFacebook share button custom iconFacebook share button iconFacebook share button styleFree!General SettingsGeneral settingsHighlight colorID of the product to add to the wishlist (leave empty to use the global product)ID of the wishlist to show (e.g. K6EOWXB888ZD)Icon for the button (use any FontAwesome valid class, or leave empty to use the default settings)Icon to remove the product from the wishlist - to the left of the productIf you want to take advantage of this feature, you could consider purchasing the %s.In StockIn order to use this integration you have to install and activate YITH WooCommerce Frequently Bought Together. <a href="%s">Learn more</a>In wishlist table showInvalid wishlist item.Invalid wishlist.It will be used to pin the wishlist on Pinterest.Items addedLoad any cacheable wishlist item via AJAXLoop options will be visible on Shop page, category pages, product shortcodes, products sliders, and all the other places where the WooCommerce products' loop is usedLoop settingsMembers of our team have access to the information you provide us with. For example, both Administrators and Shop Managers can access:MoveMove to %sMove to another list &rsaquo;My wishlistMy wishlist on %sNo products added to the wishlistNoneNumber of items to show per pageOn top of the imageOnly people with a link to this list can see itOnly you can see this listOur team members have access to this information to offer you better deals for the products you love.Out of stockPaginatePart of the template that shows price variation since addition to list; placeholder will be replaced with a percentagePrice is %1$s%%Part of the template that shows price variation since addition to list; placeholder will be replaced with a price(Was %2$s when added  in list)Pick a page as the main Wishlist page; make sure you add the <span class="code"><code>[yith_wcwl_wishlist]</code></span> shortcode into the page contentPin on PinterestPinterestPinterest share button custom iconPinterest share button iconPinterest share button stylePlease, make sure to enter a valid titlePosition of "Add to wishlist" in loopPosition of "Add to wishlist" on product pagePremium VersionPrice:Primary button stylePrivateProduct added to cart successfullyProduct added to wishlistProduct added!Product already in wishlistProduct nameProduct page settingsProduct priceProduct stock (show if the product is available or not)Product successfully removed.Product variations selected by the user (example: size or color)Products you’ve added to the wishlist: we’ll use this to show you and other users your favourite products, and to create targeted email campaigns.PublicQuantityQuantity:Redirect to cartRedirect users to the cart page when they add a product to the cart from the wishlist pageRemoveRemove from listRemove from wishlistRemove if added to the cartRemove the product from the wishlist after it has been added to the cartRemove this productRemoved wishlist %s.Same used for Add to wishlistSearch listSecondary button styleSelect an icon for the "Add to cart" button (optional)Select an icon for the "Add to wishlist" button (optional)Select an icon for the "Added to wishlist" button (optional)Select an icon for the Email share buttonSelect an icon for the Facebook share buttonSelect an icon for the Pinterest share buttonSelect an icon for the Twitter share buttonSelect an icon for the WhatsApp share buttonSet the radius for the "Add to cart" buttonShare button text colorShare by URLShare by emailShare on FacebookShare on WhatsAppShare on social mediaShare on:Share via emailShare wishlistSharedSharing titleShow "Add to wishlist" in loopShow "Remove from list" linkShow "Share URL" field on wishlist pageShow "View wishlist" linkSocial image URLSocial textStock statusStock:Style & Color customizationStyle & color customizationStyle of "Add to cart"Style of "Add to wishlist"TextText HoverText customizationText hoverTextual (anchor)The item cannot be added to this wishlistThe product is already in your wishlist!TitleTokenTweet on TwitterTwitterTwitter share button custom iconTwitter share button iconTwitter share button styleType the message you want to publish when you share your wishlist on Twitter and PinterestURL of the wishlist page (leave empty to use the default settings)Unit priceUpdateUpload an icon you'd like to use for "Add to wishlist" button (suggested 32px x 32px)Upload an icon you'd like to use for Facebook share button (suggested 32px x 32px)Upload an icon you'd like to use for Pinterest share button (suggested 32px x 32px)Upload an icon you'd like to use for Twitter share button (suggested 32px x 32px)Upload an icon you'd like to use for WhatsApp share button (suggested 32px x 32px)Upload an icon you'd like to use for the "Add to cart" button (suggested 32px x 32px)Upload an icon you'd like to use for the Email share button (suggested 32px x 32px)Use shortcodeView &rsaquo;VisibilityWe are sorry, but this feature is available only if cookies on your browser are enabled.We’ll also use cookies to keep track of wishlist contents while you’re browsing our site.WhatsAppWhatsApp share button custom iconWhatsApp share button iconWhatsApp share button styleWhatsappWhile you visit our site, we’ll track:WishlistWishlist %s has been retained.Wishlist Detail PageWishlist PageWishlist URLWishlist details, such as products added, date of addition, name and privacy settings of your wishlistsWishlist pageWishlist page optionsWishlist table styleWishlist title used for sharing (only used on Twitter and Pinterest)WishlistsWishlists you’ve created: we’ll keep track of the wishlists you create, and make them visible to the store staffYITH WooCommerce Frequently Bought Together IntegrationYou and %s userYou and %d usersYou're the first[gutenberg]: block descriptionShows Add to wishlist button[gutenberg]: block descriptionShows a list of products in wishlist[gutenberg]: block nameYITH Add to wishlist[gutenberg]: block nameYITH Wishlistcopydate when wishlist was createdCreated onhas this item in wishlisthave this item in wishlisthave this item in wishlistorpage_slugwishlistthis wishlist link and share it anywhere)to add this item in wishlistyith-woocommerce-wishlistItems per pageProject-Id-Version: YITH WooCommerce Wishlist
Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/yith-woocommerce-wishlist
POT-Creation-Date: 2021-11-11 13:53:53+00:00
PO-Revision-Date: 2020-10-16 14:05+0200
Last-Translator: 
Language-Team: 
Language: fr
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Plural-Forms: nplurals=2; plural=n > 1;
X-Generator: Poedit 2.4.1
Style de bouton "Ajouter au panier"Icône personnalisée "Ajouter au panier"Icône "Ajouter au panier"Texte "Ajouter au panier"Style de bouton "Ajouter à la liste de souhaits"Icône personnalisée "Ajouter à la liste de souhaits"Icône "Ajouter à la liste de souhaits"Texte "Ajouter à la liste de souhaits"Icône personnalisée "Ajouté à la liste de souhaits"Icône "Ajouté à la liste de souhaits"Étiquette "Parcourir la liste de souhaits" (laisser vide pour utiliser les paramètres par défaut)Texte "Parcourir la liste de souhaits"Étiquette "Produit ajouté à la liste de souhaits" (laisser vide pour utiliser les paramètres par défaut)Texte "Produit ajouté"Étiquette "Produit déjà dans la liste de souhaits" (laisser vide pour utiliser les paramètres par défaut)Texte "Produit déjà dans la liste de souhaits"%d utilisateur%d utilisateurs(Maintenant<code><strong>YITH WooCommerce Wishlist</strong></code> donne à vos utilisateurs la possibilité de créer, remplir, gérer et partager leurs listes de souhaits vous permettant d'analyser leurs intérêts et leurs besoins pour améliorer vos stratégies marketing. <a href="https://yithemes.com/" target="_blank">Obtenez plus de plugins pour votre commerce e-commerce sur <strong>YITH</strong></a>Tout ajouter au panierAjouter au panierOption Ajouter au panier pour tous les produitsAjouter à la liste de souhaitsAjouter aux options de liste de souhaitsAjouté le:Ajouté le: %sClasses CSS supplémentaires pour le bouton (laissez vide pour utiliser les paramètres par défaut)Après "Ajouter au panier"Après le bouton "Ajouter au panier"Une fois le produit ajouté à la liste de souhaitsAprès le résuméAprès les vignettesToutes vos listes de souhaitsPermet à vos clients de créer et de partager des listes de produits qu'ils souhaitent acheter sur votre e-commerce.Une erreur s'est produite lors de l'ajout des produits à la liste de souhaits.Tout le monde peut rechercher et voir cette listeAppliquerAppliquez cette action à tous les éléments sélectionnés:OrganiserFondArrière plan au survolSurvol de l'arrière-planAvant le bouton "Ajouter au panier"BordureBordure au survolRayon de bordureParcourir la liste de souhaitsÉtiquette du bouton (laissez vide pour utiliser les paramètres par défaut)Bouton pour retirer le produit de la liste de souhaits - à droite du produitBouton avec style personnaliséBouton avec style de thèmeChoisissez les couleurs du bouton de partage FacebookChoisissez les couleurs pour le bouton de partage PinterestChoisissez les couleurs du bouton de partage TwitterChoisissez les couleurs du bouton de partage WhatsAppChoisissez les couleurs pour le texte des boutons de partageChoisissez les couleurs du bouton "Ajouter au panier" en survolChoisissez les couleurs du bouton "Ajouter à la liste de souhaits"Choisissez les couleurs pour le bouton "Ajouter à la liste de souhaits" en survolChoisissez les couleurs pour le bouton Partager par e-mailChoisissez les couleurs pour le bouton principal sur l'état de vol stationnaire<br/><small> Ce style sera appliqué au bouton "Modifier le titre" dans la vue Liste de souhaits, au bouton "Soumettre les modifications" dans la vue Gérer et au bouton "Rechercher la liste de souhaits" dans la vue Recherche</small>Choisissez les couleurs du bouton principal<br/><small> Ce style sera appliqué au bouton "Modifier le titre" dans la vue Liste de souhaits, au bouton "Soumettre les modifications" dans la vue Gérer et au bouton "Rechercher la liste de souhaits" dans la vue Recherche</small>Choisissez les couleurs du bouton secondaire <br/> <small> Ce style sera appliqué aux boutons qui permettent d'afficher et de masquer le formulaire Modifier le titre dans la vue Liste de souhaits et le bouton "Créer une nouvelle liste de souhaits" dans la gestion de la vue </small>Choisissez si vous souhaitez afficher un lien textuel "Ajouter à la liste de souhaits" ou un boutonChoisissez le rayon pour le bouton "Ajouter à la liste de souhaits"Choisissez la couleur pour toutes les sections avec arrière-plan <br/> <small> Cette couleur sera utilisée comme arrière-plan pour l'en-tête et le pied de page du tableau de la liste de souhaits (lorsqu'elle est définie sur une disposition "traditionnelle"), et pour divers formulaires dans les vues de la liste de souhaits </small>Choisissez les couleurs du bouton "Ajouter au panier"Choisissez les couleurs du tableau de la liste de souhaits (lorsqu'il est réglé sur une disposition "traditionnelle")Choisissez l'apparence du bouton Liste de souhaits lorsque le produit a déjà été ajouté à une liste de souhaitsChoisissez où afficher le bouton "Ajouter à la liste de souhaits" ou le lien dans la boucle des produits WooCommerce. <span class="addon">Copiez ce code court <span class="code"><code>[yith_wcwl_add_to_wishlist]</code></span> et collez-le où vous souhaitez afficher le lien ou le bouton "Ajouter à la liste de souhaits"</span>Choisissez où afficher le bouton "Ajouter à la liste de souhaits" ou le lien sur la page du produit. <span class="addon">Copiez ce code court <span class="code"><code> [yith_wcwl_add_to_wishlist]</code></span> et collez-le où vous souhaitez afficher le lien ou le bouton "Ajouter à la liste de souhaits"</span>Choisissez de paginer les éléments de la liste de souhaits ou de les afficher tousChoisissez d'afficher un lien textuel "Ajouter au panier" ou un boutonFermerPersonnaliséPersonnaliser CSSListes de souhaits des clientsDate à laquelle le produit a été ajouté à la liste de souhaitsNom de liste de souhaits par défautNe pas paginerModifier le titreÉtiquette "Parcourir la liste de souhaits"Étiquette "Produit ajouté à la liste de souhaits"Étiquette "Produit déjà dans la liste de souhaits"Classes CSS supplémentaires pour le boutonÉtiquette de boutonIcône pour le boutonPaginer les élémentsID produitURL de la page de liste de souhaitsID de la liste de souhaitsAvancéÉtiquettesPaginationProduitListe de souhaitsYITH WishlistYITH Wishlist bouton AjouterEmailIcône personnalisée du bouton de partage par e-mailIcône du bouton de partage de courrier électroniqueStyle de bouton de partage d'e-mailActiver le chargement AJAXActiver diaporama dans la liste de SouhaitsActiver la fonctionnalité "Ajouter à la liste de souhaits" dans la boucle des produits WooCommerceActivez cette option pour permettre aux utilisateurs de partager leur liste de souhaits sur les réseaux sociauxSaisissez un nom pour la liste de souhaits par défaut. Il s'agit de la liste de souhaits qui sera automatiquement générée pour tous les utilisateurs s'ils n'en créent pas de personnaliséEntrez un texte pour le bouton "Ajouter à la liste de souhaits"Saisissez un texte pour le bouton "Ajouter au panier"Entrez un texte pour le lien "Parcourir la liste de souhaits" sur la page du produitEntrez le CSS personnalisé à appliquer aux éléments de la liste de souhaits (facultatif)Saisissez le texte du message affiché lorsque l'utilisateur consulte un produit qui figure déjà dans la liste de souhaitsEntrez le texte du message affiché lorsque l'utilisateur ajoute un produit à la liste de souhaitsErreur. Impossible de supprimer le produit de la liste de souhaits.FacebookIcône personnalisée du bouton de partage FacebookIcône du bouton de partage FacebookStyle de bouton de partage FacebookGratuit!Réglages GénérauxRéglages générauxCouleur de surbrillanceID du produit à ajouter à la liste de souhaits (laisser vide pour utiliser le produit global)ID de la liste de souhaits à afficher (par exemple K6EOWXB888ZD)Icône du bouton (utilisez n'importe quelle classe valide FontAwesome, ou laissez vide pour utiliser les paramètres par défaut)Icône pour retirer le produit de la liste de souhaits - à gauche du produitSi vous souhaitez profiter de cette fonctionnalité, vous pouvez envisager d'acheter le %s.En StockPour utiliser cette intégration, vous devez installer et activer YITH WooCommerce Frequently Bought Together. <a href="%s"> En savoir plus </a>Dans la liste de souhaitsÉlément de liste de souhaits non valide.Liste de souhaits non valide.Il sera utilisé pour épingler la liste de souhaits sur Pinterest.Éléments ajoutésCharger n'importe quel élément de liste de souhaits pouvant être mis en cache via AJAXLes options de boucle seront visibles sur la page Boutique, les pages de catégorie, les shortcodes de produits, les curseurs de produits et tous les autres endroits où la boucle des produits WooCommerce est utiliséeParamètres de boucleLes membres de notre équipe ont accès aux informations que vous nous fournissez. Par exemple, les administrateurs et les responsables de magasin peuvent accéder à:DéplacerDéplacer vers %sDéplacer vers une autre liste &rsaquo;Ma liste d'enviesMa Liste d'Envies sur %sAucun produit ajouté à la liste de souhaitsAucunNombre d'éléments à afficher par pageEn haut de l'imageSeules les personnes ayant un lien vers cette liste peuvent la voirVous seul pouvez voir cette listeLes membres de notre équipe ont accès à ces informations pour vous proposer de meilleures offres pour les produits que vous aimez.En rupture de stockPaginerLe prix est %1$s%%(Était %2$s lors de l'ajout dans la liste)Choisissez une page comme page principale de liste de souhaits; assurez-vous d'ajouter le<span class="code"><code>[yith_wcwl_wishlist]</code></span> shortcode dans le contenu de la pagePin sur PinterestPinterestIcône personnalisée du bouton de partage PinterestIcône du bouton de partage PinterestStyle de bouton de partage PinterestVeuillez vous assurer d'entrer un titre validePosition de "Ajouter à la liste de souhaits" en bouclePosition de "Ajouter à la liste de souhaits" sur la page produitVersion PremiumPrix:Style de bouton principalPrivéProduit ajouté au panier avec succèsProduit ajouté à la liste de souhaitsProduit ajouté!Produit déjà dans la liste de souhaitsNom du produitParamètres de la page produitPrix du produitStock de produits (indiquer si le produit est disponible ou non)Produit supprimé correctement.Variations de produits sélectionnées par l'utilisateur (exemple: taille ou couleur)Produits que vous avez ajoutés à la liste de souhaits: nous les utiliserons pour vous montrer, ainsi qu'à d'autres utilisateurs, vos produits préférés et pour créer des campagnes par e-mail ciblées.PubliqueQuantitéQuantité:Rediriger vers le panierRedirigez les utilisateurs vers la page du panier lorsqu'ils ajoutent un produit au panier à partir de la page de la liste de souhaitsSuppriméRetirer de la listeSupprimer de la liste de souhaitsSupprimer si ajouté au panierSupprimer le produit de la liste de souhaits après l'avoir ajouté au panierSupprimer ce produitMa Liste d'Envies sur %sIdentique à Ajouter à la liste de souhaitsListe de rechercheStyle de bouton secondaireSélectionnez une icône pour le bouton "Ajouter au panier" (facultatif)Sélectionnez une icône pour le bouton "Ajouter à la liste de souhaits" (facultatif)Sélectionnez une icône pour le bouton "Ajouté à la liste de souhaits" (facultatif)Sélectionnez une icône pour le bouton Partager par e-mailSélectionnez une icône pour le bouton de partage FacebookSélectionnez une icône pour le bouton de partage PinterestSélectionnez une icône pour le bouton de partage TwitterSélectionnez une icône pour le bouton de partage WhatsAppDéfinissez le rayon du bouton "Ajouter au panier"Partager la couleur du texte du boutonPartager par URLPartager par emailPartager sur FacebookPartager sur WhatsAppPartager sur les réseaux sociauxPartager sur:Partager par e-mailPartager la liste de souhaitsPartagéTitre de partageAfficher "Ajouter à la liste de souhaits" en boucleAfficher le lien "Supprimer de la liste"Afficher le champ "Partager l'URL" sur la page de la liste de souhaitsAfficher le lien "Afficher la liste de souhaits"URL de l'image socialeTexte socialÉtat des stocksStock:Personnalisation du style et des couleursPersonnalisation du style et des couleursStyle de "Ajouter au panier"Style de "Ajouter à la liste de souhaits"TextTexte au survolPersonnalisation du texteSurvol du texteTextuel (ancre)L'article ne peut pas être ajouté à cette liste de souhaitsLe produit est déjà dans votre liste de souhaits!Title:JetonTweeter sur TwitterTwitterIcône personnalisée du bouton de partage TwitterIcône de bouton de partage TwitterStyle de bouton de partage TwitterTapez le message que vous souhaitez publier lorsque vous partagez votre liste de souhaits sur Twitter et PinterestURL de la page de liste de souhaits (laissez vide pour utiliser les paramètres par défaut)Prix unitaireMise à jourTéléchargez une icône que vous souhaitez utiliser pour le bouton "Ajouter à la liste de souhaits" (32px x 32px suggéré)Téléchargez une icône que vous souhaitez utiliser pour le bouton de partage Facebook (32px x 32px suggéré)Téléchargez une icône que vous souhaitez utiliser pour le bouton de partage Pinterest (32px x 32px suggéré)Téléchargez une icône que vous souhaitez utiliser pour le bouton de partage Twitter (32px x 32px suggéré)Téléchargez une icône que vous souhaitez utiliser pour le bouton de partage WhatsApp (32px x 32px suggéré)Téléchargez une icône que vous souhaitez utiliser pour le bouton "Ajouter au panier" (32px x 32px suggéré)Téléchargez une icône que vous souhaitez utiliser pour le bouton Partager par e-mail (32px x 32px suggéré)Utiliser le shortcodeVoir &rsaquo;VisibilitéNous sommes désolés, mais cette fonctionnalité n'est disponible que si les cookies de votre navigateur sont activés.Nous utiliserons également des cookies pour garder une trace du contenu de la liste de souhaits lorsque vous naviguez sur notre site.WhatsAppIcône personnalisée du bouton de partage WhatsAppIcône du bouton de partage WhatsAppStyle de bouton de partage WhatsAppWhatsappPendant que vous visitez notre site, nous suivons:Liste de souhaitsLa liste de souhaits %s a été conservée.Page de détail de la liste de souhaitsPage de liste de souhaitsURL de la liste de souhaitsDétails de la liste de souhaits, tels que les produits ajoutés, la date d'ajout, le nom et les paramètres de confidentialité de vos listes de souhaitsPage de liste de souhaitsOptions de la page de liste de souhaitsStyle de la table de souhaitTitre de la liste de souhaits utilisé pour le partage (uniquement utilisé sur Twitter et Pinterest)Listes de SouhaitsListes de souhaits que vous avez créées: nous garderons une trace des listes de souhaits que vous créez et les rendrez visibles pour le personnel du magasinYITH WooCommerce a fréquemment acheté ensemble l'intégrationdVous et l'utilisateur %sVous et les utilisateurs %d Vous êtes le premierAffiche le bouton Ajouter à la liste de souhaitsAffiche une liste de produits dans la liste de souhaitsYITH Ajouter à la wishlistYITH WishlistcopierCréé lea cet article dans la liste de souhaitsont cet article dans la liste de souhaitsavoir cet article dans la liste de souhaitsoulistedesouhaitsce lien de liste de souhaits et le partager n'importe où)ajouter cet article à la liste de souhaitsObjets par pagePK`x1\����,languages/yith-woocommerce-wishlist-sv_SE.ponu�[���# Copyright (C) 2019 YITH WooCommerce Wishlist
# This file is distributed under the same license as the YITH WooCommerce Wishlist package.
msgid ""
msgstr ""
"Project-Id-Version: YITH WCWL\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/yith-woocommerce-"
"wishlist\n"
"POT-Creation-Date: 2021-11-11 13:53:53+00:00\n"
"PO-Revision-Date: 2020-10-16 14:06+0200\n"
"Last-Translator: Nicola Mustone <mail@nicolamustone.it>\n"
"Language-Team: Your Inspiration Themes <support@yithemes.com>\n"
"Language: sv\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 2.4.1\n"
"X-Poedit-KeywordsList: __;_e;_x\n"
"X-Poedit-Basepath: ..\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Poedit-SearchPath-0: .\n"
"X-Poedit-SearchPathExcluded-0: plugin-fw\n"

#: includes/class-yith-wcwl-admin.php:126
#, fuzzy
msgid "Wishlist Page"
msgstr "Önskelista"

#: includes/class-yith-wcwl-admin.php:148
msgid "General settings"
msgstr ""

#: includes/class-yith-wcwl-admin.php:149
msgid "Add to wishlist options"
msgstr ""

#: includes/class-yith-wcwl-admin.php:150
msgid "Wishlist page options"
msgstr ""

#: includes/class-yith-wcwl-admin.php:151
msgid "Premium Version"
msgstr "Premiumversion"

#: includes/class-yith-wcwl-admin.php:249
#: includes/class-yith-wcwl-install.php:342
msgid "Wishlist"
msgstr "Önskelista"

#: includes/class-yith-wcwl-admin.php:251
msgid ""
"Allows your customers to create and share lists of products that they want "
"to purchase on your e-commerce."
msgstr ""

#: includes/class-yith-wcwl-ajax-handler.php:75
#: templates/add-to-wishlist-remove.php:59
msgid "View &rsaquo;"
msgstr ""

#: includes/class-yith-wcwl-ajax-handler.php:76
#: templates/add-to-wishlist-remove.php:58
msgid "or"
msgstr ""

#: includes/class-yith-wcwl-ajax-handler.php:77
msgid "Close"
msgstr ""

#: includes/class-yith-wcwl-ajax-handler.php:155
#: includes/class-yith-wcwl-ajax-handler.php:195
msgid "Product successfully removed."
msgstr "Produkten borttagen."

#: includes/class-yith-wcwl-form-handler.php:156
msgid "Please, make sure to enter a valid title"
msgstr ""

#: includes/class-yith-wcwl-frontend.php:461
msgid ""
"We are sorry, but this feature is available only if cookies on your browser "
"are enabled."
msgstr ""

#: includes/class-yith-wcwl-frontend.php:462
msgid "Product added to cart successfully"
msgstr ""

#: includes/class-yith-wcwl-frontend.php:725
#: includes/class-yith-wcwl-shortcode.php:239
#: plugin-options/wishlist_page-options.php:240
#: templates/wishlist-view-footer-mobile.php:46
#: templates/wishlist-view-footer.php:46
msgid "Add to cart"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:52
msgid "While you visit our site, we’ll track:"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:54
msgid ""
"Products you’ve added to the wishlist: we’ll use this to show you and other "
"users your favourite products, and to create targeted email campaigns."
msgstr ""

#: includes/class-yith-wcwl-privacy.php:55
msgid ""
"Wishlists you’ve created: we’ll keep track of the wishlists you create, and "
"make them visible to the store staff"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:57
msgid ""
"We’ll also use cookies to keep track of wishlist contents while you’re "
"browsing our site."
msgstr ""

#: includes/class-yith-wcwl-privacy.php:60
msgid ""
"Members of our team have access to the information you provide us with. For "
"example, both Administrators and Shop Managers can access:"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:62
msgid ""
"Wishlist details, such as products added, date of addition, name and privacy "
"settings of your wishlists"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:64
msgid ""
"Our team members have access to this information to offer you better deals "
"for the products you love."
msgstr ""

#: includes/class-yith-wcwl-privacy.php:84
#: includes/class-yith-wcwl-privacy.php:100
msgid "Customer wishlists"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:137 plugin-options/lists-options.php:25
#: plugin-options/lists-options.php:32
msgid "Wishlists"
msgstr "Önskelista"

#. Translators: %s Order number.
#: includes/class-yith-wcwl-privacy.php:199
msgid "Removed wishlist %s."
msgstr "Min önskelista på %s"

#. Translators: %s Order number.
#: includes/class-yith-wcwl-privacy.php:203
msgid "Wishlist %s has been retained."
msgstr ""

#: includes/class-yith-wcwl-privacy.php:227
msgid "Token"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:228
msgid "Wishlist URL"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:229
msgid "Title"
msgstr "Fälttitel"

#: includes/class-yith-wcwl-privacy.php:231
msgid "Visibility"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:232
msgid "Items added"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:58
msgid ""
"ID of the product to add to the wishlist (leave empty to use the global "
"product)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:63
msgid "URL of the wishlist page (leave empty to use the default settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:68
msgid "Button label (leave empty to use the default settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:73
msgid "\"Browse wishlist\" label (leave empty to use the default settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:78
msgid ""
"\"Product already in wishlist\" label (leave empty to use the default "
"settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:83
msgid ""
"\"Product added to wishlist\" label (leave empty to use the default settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:88
msgid ""
"Icon for the button (use any FontAwesome valid class, or leave empty to use "
"the default settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:93
msgid ""
"Additional CSS classes for the button (leave empty to use the default "
"settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:107
msgid "Choose whether to paginate items in the wishlist or show them all"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:110
#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:118
msgid "Paginate"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:111
#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:119
msgid "Do not paginate"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:116
msgid "Number of items to show per page"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:121
msgid "ID of the wishlist to show (e.g. K6EOWXB888ZD)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:414
msgid "Share on:"
msgstr "Dela på:"

#: includes/class-yith-wcwl-shortcode.php:438
#: plugin-options/wishlist_page-options.php:138
msgid "Share on Facebook"
msgstr "Dela på Facebook"

#: includes/class-yith-wcwl-shortcode.php:455
#: plugin-options/wishlist_page-options.php:147
msgid "Tweet on Twitter"
msgstr "Twittra på Twitter"

#: includes/class-yith-wcwl-shortcode.php:473
#: plugin-options/wishlist_page-options.php:156
msgid "Pin on Pinterest"
msgstr "Pinna på Pintrest"

#: includes/class-yith-wcwl-shortcode.php:487
msgid "Share via email"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:510
#: plugin-options/wishlist_page-options.php:174
msgid "Share on WhatsApp"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:621
msgid "Remove from list"
msgstr ""

#: includes/class-yith-wcwl-wishlist-item.php:189
msgid "Free!"
msgstr "Gratis!"

#: includes/class-yith-wcwl.php:164
msgid "The item cannot be added to this wishlist"
msgstr ""

#: includes/class-yith-wcwl.php:168 includes/class-yith-wcwl.php:174
msgid "An error occurred while adding the products to the wishlist."
msgstr ""

#: includes/class-yith-wcwl.php:235 includes/class-yith-wcwl.php:241
msgid "Error. Unable to remove the product from the wishlist."
msgstr "Fel. Kunde inte ta bort produkten ifrån önskelistan."

#: includes/data-stores/class-yith-wcwl-wishlist-data-store.php:152
#: includes/data-stores/class-yith-wcwl-wishlist-data-store.php:174
msgid "Invalid wishlist."
msgstr ""

#: includes/data-stores/class-yith-wcwl-wishlist-item-data-store.php:119
msgid "Invalid wishlist item."
msgstr ""

#. translators: 1. Number of users.
#: includes/functions-yith-wcwl.php:249
msgid "%d user"
msgid_plural "%d users"
msgstr[0] ""
msgstr[1] ""

#: includes/functions-yith-wcwl.php:250
msgid "has this item in wishlist"
msgid_plural "have this item in wishlist"
msgstr[0] ""
msgstr[1] ""

#: includes/functions-yith-wcwl.php:252
msgid "You're the first"
msgstr ""

#: includes/functions-yith-wcwl.php:253
msgid "to add this item in wishlist"
msgstr ""

#. translators: 1. Count of users when many, or "another" when only one.
#: includes/functions-yith-wcwl.php:257
msgid "You and %s user"
msgid_plural "You and %d users"
msgstr[0] ""
msgstr[1] ""

#: includes/functions-yith-wcwl.php:257
msgid "another"
msgstr ""

#: includes/functions-yith-wcwl.php:258
msgid "have this item in wishlist"
msgstr ""

#: includes/functions-yith-wcwl.php:425
msgid "None"
msgstr ""

#: includes/functions-yith-wcwl.php:426
#, fuzzy
msgid "Custom"
msgstr "Egen CSS"

#: includes/functions-yith-wcwl.php:447
msgid "Shared"
msgstr "Delar"

#: includes/functions-yith-wcwl.php:451
msgid "Only people with a link to this list can see it"
msgstr ""

#: includes/functions-yith-wcwl.php:457
msgid "Private"
msgstr "Privat"

#: includes/functions-yith-wcwl.php:461
msgid "Only you can see this list"
msgstr ""

#: includes/functions-yith-wcwl.php:467
msgid "Public"
msgstr "Offentlig"

#: includes/functions-yith-wcwl.php:471
msgid "Anyone can search for and see this list"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:118
#: plugin-options/add_to_wishlist-options.php:127
msgid "Add to wishlist"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:128
#: plugin-options/add_to_wishlist-options.php:143
msgid "Browse wishlist"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:138
#, fuzzy
msgid "Product already in wishlist"
msgstr "“Produkten redan i önskelistan”s text"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:148
#, fuzzy
msgid "Product added to wishlist"
msgstr "“Produkten redan i önskelistan”s text"

#: init.php:160
#, fuzzy
msgid "is enabled but not effective. It requires WooCommerce to work."
msgstr ""
"YITH WooCommerce Wishlist är på men inte effektivt då det kräver tilläget "
"WooComerce för att fungera."

#: init.php:176
msgid "You can't activate the free version of"
msgstr ""

#: init.php:176
msgid "while you are using the premium one."
msgstr ""

#: plugin-options/add_to_wishlist-options.php:20
#: plugin-options/settings-options.php:27
msgid "General Settings"
msgstr "Generella inställningar"

#: plugin-options/add_to_wishlist-options.php:27
msgid "After product is added to wishlist"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:28
msgid ""
"Choose the look of the Wishlist button when the product has already been "
"added to a wishlist"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:32
#, fuzzy
msgid "Show \"Add to wishlist\" button"
msgstr "“Produkten redan i önskelistan”s text"

#: plugin-options/add_to_wishlist-options.php:33
msgid "Show \"View wishlist\" link"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:34
msgid "Show \"Remove from list\" link"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:48
msgid "Loop settings"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:50
msgid ""
"Loop options will be visible on Shop page, category pages, product "
"shortcodes, products sliders, and all the other places where the WooCommerce "
"products' loop is used"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:55
msgid "Show \"Add to wishlist\" in loop"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:56
msgid "Enable the \"Add to wishlist\" feature in WooCommerce products' loop"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:64
msgid "Position of \"Add to wishlist\" in loop"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:65
msgid ""
"Choose where to show \"Add to wishlist\" button or link in WooCommerce "
"products' loop. <span class=\"addon\">Copy this shortcode <span class=\"code"
"\"><code>[yith_wcwl_add_to_wishlist]</code></span> and paste it where you "
"want to show the \"Add to wishlist\" link or button</span>"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:72
msgid "On top of the image"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:73
msgid "Before \"Add to cart\" button"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:74
msgid "After \"Add to cart\" button"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:75
#: plugin-options/add_to_wishlist-options.php:107
msgid "Use shortcode"
msgstr "Använd kortkod"

#: plugin-options/add_to_wishlist-options.php:89
msgid "Product page settings"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:96
msgid "Position of \"Add to wishlist\" on product page"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:97
msgid ""
"Choose where to show \"Add to wishlist\" button or link on the product page. "
"<span class=\"addon\">Copy this shortcode <span class=\"code"
"\"><code>[yith_wcwl_add_to_wishlist]</code></span> and paste it where you "
"want to show the \"Add to wishlist\" link or button</span>"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:104
msgid "After \"Add to cart\""
msgstr "Efter “Lägg till i varukorgen”"

#: plugin-options/add_to_wishlist-options.php:105
msgid "After thumbnails"
msgstr "Efter miniatyrbilder"

#: plugin-options/add_to_wishlist-options.php:106
msgid "After summary"
msgstr "Efter sammanfattning"

#: plugin-options/add_to_wishlist-options.php:117
#: plugin-options/wishlist_page-options.php:222
msgid "Text customization"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:124
msgid "\"Add to wishlist\" text"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:125
msgid "Enter a text for \"Add to wishlist\" button"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:132
msgid "\"Product added\" text"
msgstr "“Produkt tillagd”s text"

#: plugin-options/add_to_wishlist-options.php:133
msgid ""
"Enter the text of the message displayed when the user adds a product to the "
"wishlist"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:135
msgid "Product added!"
msgstr "Produkt tillagd!"

#: plugin-options/add_to_wishlist-options.php:140
msgid "\"Browse wishlist\" text"
msgstr "“Bläddra i önskelistan”s text"

#: plugin-options/add_to_wishlist-options.php:141
msgid "Enter a text for the \"Browse wishlist\" link on the product page"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:148
msgid "\"Product already in wishlist\" text"
msgstr "“Produkten redan i önskelistan”s text"

#: plugin-options/add_to_wishlist-options.php:149
msgid ""
"Enter the text for the message displayed when the user views a product that "
"is already in the wishlist"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:151
msgid "The product is already in your wishlist!"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:161
msgid "Style & Color customization"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:168
msgid "Style of \"Add to wishlist\""
msgstr ""

#: plugin-options/add_to_wishlist-options.php:169
msgid ""
"Choose if you want to show a textual \"Add to wishlist\" link or a button"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:172
#: plugin-options/wishlist_page-options.php:261
msgid "Textual (anchor)"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:173
#: plugin-options/wishlist_page-options.php:262
msgid "Button with theme style"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:174
#: plugin-options/wishlist_page-options.php:263
msgid "Button with custom style"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:182
msgid "\"Add to wishlist\" button style"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:188
msgid "Choose colors for the \"Add to wishlist\" button"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:190
#: plugin-options/wishlist_page-options.php:279
#: plugin-options/wishlist_page-options.php:368
#: plugin-options/wishlist_page-options.php:417
#: plugin-options/wishlist_page-options.php:465
#: plugin-options/wishlist_page-options.php:552
#: plugin-options/wishlist_page-options.php:592
#: plugin-options/wishlist_page-options.php:632
#: plugin-options/wishlist_page-options.php:672
#: plugin-options/wishlist_page-options.php:712
msgid "Background"
msgstr "Bakgrund"

#: plugin-options/add_to_wishlist-options.php:195
#: plugin-options/wishlist_page-options.php:284
#: plugin-options/wishlist_page-options.php:373
#: plugin-options/wishlist_page-options.php:422
#: plugin-options/wishlist_page-options.php:470
#: plugin-options/wishlist_page-options.php:507
msgid "Text"
msgstr "Text"

#: plugin-options/add_to_wishlist-options.php:200
#: plugin-options/wishlist_page-options.php:289
#: plugin-options/wishlist_page-options.php:378
#: plugin-options/wishlist_page-options.php:427
#: plugin-options/wishlist_page-options.php:475
msgid "Border"
msgstr "Ram"

#: plugin-options/add_to_wishlist-options.php:206
msgid "Choose colors for the \"Add to wishlist\" button on hover state"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:208
#: plugin-options/wishlist_page-options.php:297
#: plugin-options/wishlist_page-options.php:386
#: plugin-options/wishlist_page-options.php:435
msgid "Background Hover"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:213
#: plugin-options/wishlist_page-options.php:302
#: plugin-options/wishlist_page-options.php:391
#: plugin-options/wishlist_page-options.php:440
msgid "Text Hover"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:218
#: plugin-options/wishlist_page-options.php:307
#: plugin-options/wishlist_page-options.php:396
#: plugin-options/wishlist_page-options.php:445
msgid "Border Hover"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:231
#: plugin-options/wishlist_page-options.php:320
msgid "Border radius"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:232
msgid "Choose radius for the \"Add to wishlist\" button"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:246
msgid "\"Add to wishlist\" icon"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:247
msgid "Select an icon for the \"Add to wishlist\" button (optional)"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:257
msgid "\"Add to wishlist\" custom icon"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:258
#: plugin-options/add_to_wishlist-options.php:282
msgid ""
"Upload an icon you'd like to use for \"Add to wishlist\" button (suggested "
"32px x 32px)"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:270
msgid "\"Added to wishlist\" icon"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:271
msgid "Select an icon for the \"Added to wishlist\" button (optional)"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:277
msgid "Same used for Add to wishlist"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:281
msgid "\"Added to wishlist\" custom icon"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:294
msgid "Custom CSS"
msgstr "Egen CSS"

#: plugin-options/add_to_wishlist-options.php:295
msgid "Enter custom CSS to be applied to Wishlist elements (optional)"
msgstr ""

#: plugin-options/lists-options.php:34
msgid "Search list"
msgstr ""

#. translators: 1. Anchor to Frequently Bought Together landing page on
#. yithemes.com.
#: plugin-options/settings-options.php:19
msgid ""
"If you want to take advantage of this feature, you could consider purchasing "
"the %s."
msgstr ""

#: plugin-options/settings-options.php:34
msgid "Enable AJAX loading"
msgstr ""

#: plugin-options/settings-options.php:35
msgid "Load any cacheable wishlist item via AJAX"
msgstr ""

#: plugin-options/settings-options.php:48
msgid "YITH WooCommerce Frequently Bought Together Integration"
msgstr "YITH WooCommerce Vanliga köpte tillsammans integritet"

#. translators: 1. Url to Frequently Bought Together landing page on
#. yithemes.com.
#: plugin-options/settings-options.php:51
msgid ""
"In order to use this integration you have to install and activate YITH "
"WooCommerce Frequently Bought Together. <a href=\"%s\">Learn more</a>"
msgstr ""

#: plugin-options/settings-options.php:56
msgid "Enable slider in wishlist"
msgstr "Aktivera slider i önskelistan"

#. translators: 1. Example image of the integration. 2. CTA to buy Frequently
#. Bought Together.
#: plugin-options/settings-options.php:58
msgid ""
"Enable the slider with linked products on the Wishlist page (<a href=\"%1$s"
"\" class=\"thickbox\">Example</a>). %2$s"
msgstr ""

#: plugin-options/wishlist_page-options.php:19
msgid "All your wishlists"
msgstr ""

#: plugin-options/wishlist_page-options.php:26
msgid "Wishlist page"
msgstr ""

#: plugin-options/wishlist_page-options.php:27
msgid ""
"Pick a page as the main Wishlist page; make sure you add the <span class="
"\"code\"><code>[yith_wcwl_wishlist]</code></span> shortcode into the page "
"content"
msgstr ""

#: plugin-options/wishlist_page-options.php:40
msgid "Wishlist Detail Page"
msgstr ""

#: plugin-options/wishlist_page-options.php:47
#: plugin-options/wishlist_page-options.php:56
#: plugin-options/wishlist_page-options.php:65
#: plugin-options/wishlist_page-options.php:74
#: plugin-options/wishlist_page-options.php:83
#: plugin-options/wishlist_page-options.php:92
#: plugin-options/wishlist_page-options.php:101
msgid "In wishlist table show"
msgstr ""

#: plugin-options/wishlist_page-options.php:48
msgid "Product variations selected by the user (example: size or color)"
msgstr ""

#: plugin-options/wishlist_page-options.php:57
msgid "Product price"
msgstr ""

#: plugin-options/wishlist_page-options.php:66
msgid "Product stock (show if the product is available or not)"
msgstr ""

#: plugin-options/wishlist_page-options.php:75
msgid "Date on which the product was added to the wishlist"
msgstr ""

#: plugin-options/wishlist_page-options.php:84
msgid "Add to cart option for each product"
msgstr ""

#: plugin-options/wishlist_page-options.php:93
msgid ""
"Icon to remove the product from the wishlist - to the left of the product"
msgstr ""

#: plugin-options/wishlist_page-options.php:102
msgid ""
"Button to remove the product from the wishlist - to the right of the product"
msgstr ""

#: plugin-options/wishlist_page-options.php:110
msgid "Redirect to cart"
msgstr "Omdirigera till kundvagnen"

#: plugin-options/wishlist_page-options.php:111
msgid ""
"Redirect users to the cart page when they add a product to the cart from the "
"wishlist page"
msgstr ""

#: plugin-options/wishlist_page-options.php:119
msgid "Remove if added to the cart"
msgstr "Ta bort om tillagd i kundvagnen"

#: plugin-options/wishlist_page-options.php:120
msgid ""
"Remove the product from the wishlist after it has been added to the cart"
msgstr ""

#: plugin-options/wishlist_page-options.php:128
msgid "Share wishlist"
msgstr ""

#: plugin-options/wishlist_page-options.php:129
msgid "Enable this option to let users share their wishlist on social media"
msgstr ""

#: plugin-options/wishlist_page-options.php:137
#: plugin-options/wishlist_page-options.php:146
#: plugin-options/wishlist_page-options.php:155
#: plugin-options/wishlist_page-options.php:164
#: plugin-options/wishlist_page-options.php:173
msgid "Share on social media"
msgstr ""

#: plugin-options/wishlist_page-options.php:165
msgid "Share by email"
msgstr ""

#: plugin-options/wishlist_page-options.php:182
msgid "Share by URL"
msgstr ""

#: plugin-options/wishlist_page-options.php:183
msgid "Show \"Share URL\" field on wishlist page"
msgstr ""

#: plugin-options/wishlist_page-options.php:191
msgid "Sharing title"
msgstr ""

#: plugin-options/wishlist_page-options.php:192
msgid "Wishlist title used for sharing (only used on Twitter and Pinterest)"
msgstr ""

#. translators: 1. Blog name.
#: plugin-options/wishlist_page-options.php:195
msgid "My wishlist on %s"
msgstr "Min önskelista på %s"

#: plugin-options/wishlist_page-options.php:200
msgid "Social text"
msgstr "Text på sociala medier"

#: plugin-options/wishlist_page-options.php:201
msgid ""
"Type the message you want to publish when you share your wishlist on Twitter "
"and Pinterest"
msgstr ""

#: plugin-options/wishlist_page-options.php:209
msgid "Social image URL"
msgstr "Bild för sociala medier (URL)"

#: plugin-options/wishlist_page-options.php:210
msgid "It will be used to pin the wishlist on Pinterest."
msgstr ""

#: plugin-options/wishlist_page-options.php:229
msgid "Default wishlist name"
msgstr ""

#: plugin-options/wishlist_page-options.php:230
msgid ""
"Enter a name for the default wishlist. This is the wishlist that will be "
"automatically generated for all users if they do not create any custom one"
msgstr ""

#: plugin-options/wishlist_page-options.php:232
#, fuzzy
msgid "My wishlist"
msgstr "Min önskelista på %s"

#: plugin-options/wishlist_page-options.php:237
msgid "\"Add to cart\" text"
msgstr ""

#: plugin-options/wishlist_page-options.php:238
msgid "Enter a text for the \"Add to cart\" button"
msgstr ""

#: plugin-options/wishlist_page-options.php:250
msgid "Style & color customization"
msgstr ""

#: plugin-options/wishlist_page-options.php:257
msgid "Style of \"Add to cart\""
msgstr ""

#: plugin-options/wishlist_page-options.php:258
msgid "Choose whether to show a textual \"Add to cart\" link or a button"
msgstr ""

#: plugin-options/wishlist_page-options.php:271
msgid "\"Add to cart\" button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:277
msgid "Choose the colors for the \"Add to cart\" button"
msgstr ""

#: plugin-options/wishlist_page-options.php:295
msgid "Choose colors for the \"Add to cart\" button on hover state"
msgstr ""

#: plugin-options/wishlist_page-options.php:321
msgid "Set the radius for the \"Add to cart\" button"
msgstr ""

#: plugin-options/wishlist_page-options.php:335
msgid "\"Add to cart\" icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:336
msgid "Select an icon for the \"Add to cart\" button (optional)"
msgstr ""

#: plugin-options/wishlist_page-options.php:351
msgid "\"Add to cart\" custom icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:352
msgid ""
"Upload an icon you'd like to use for the \"Add to cart\" button (suggested "
"32px x 32px)"
msgstr ""

#: plugin-options/wishlist_page-options.php:360
msgid "Primary button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:366
msgid ""
"Choose colors for the primary button<br/><small>This style will be applied "
"to \"Edit title\" button on Wishlist view, \"Submit Changes\" button on "
"Manage view and \"Search wishlist\" button on Search view</small>"
msgstr ""

#: plugin-options/wishlist_page-options.php:384
msgid ""
"Choose colors for the primary button on hover state<br/><small>This style "
"will be applied to \"Edit title\" button on Wishlist view, \"Submit Changes"
"\" button on Manage view and \"Search wishlist\" button on Search view</"
"small>"
msgstr ""

#: plugin-options/wishlist_page-options.php:409
msgid "Secondary button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:415
#: plugin-options/wishlist_page-options.php:433
msgid ""
"Choose colors of the secondary button<br/><small>This style will be applied "
"to the buttons that allow showing and hiding the Edit title form on Wishlist "
"view and \"Create new Wishlist\" button on Manage view</small>"
msgstr ""

#: plugin-options/wishlist_page-options.php:458
msgid "Wishlist table style"
msgstr ""

#: plugin-options/wishlist_page-options.php:459
msgid ""
"Choose the colors for the wishlist table (when set to \"Traditional\" layout)"
msgstr ""

#: plugin-options/wishlist_page-options.php:487
msgid "Highlight color"
msgstr ""

#: plugin-options/wishlist_page-options.php:488
msgid ""
"Choose the color for all sections with background<br/><small>This color will "
"be used as background for the wishlist table heading and footer (when set to "
"\"Traditional\" layout), and for various form across wishlist views</small>"
msgstr ""

#: plugin-options/wishlist_page-options.php:500
msgid "Share button text color"
msgstr ""

#: plugin-options/wishlist_page-options.php:501
msgid "Choose colors for share buttons text"
msgstr ""

#: plugin-options/wishlist_page-options.php:512
msgid "Text hover"
msgstr ""

#: plugin-options/wishlist_page-options.php:525
msgid "Facebook share button icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:526
msgid "Select an icon for the Facebook share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:536
msgid "Facebook share button custom icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:537
msgid ""
"Upload an icon you'd like to use for Facebook share button (suggested 32px x "
"32px)"
msgstr ""

#: plugin-options/wishlist_page-options.php:545
msgid "Facebook share button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:546
msgid "Choose colors for Facebook share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:557
#: plugin-options/wishlist_page-options.php:597
#: plugin-options/wishlist_page-options.php:637
#: plugin-options/wishlist_page-options.php:677
#: plugin-options/wishlist_page-options.php:717
msgid "Background hover"
msgstr ""

#: plugin-options/wishlist_page-options.php:565
msgid "Twitter share button icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:566
msgid "Select an icon for the Twitter share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:576
msgid "Twitter share button custom icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:577
msgid ""
"Upload an icon you'd like to use for Twitter share button (suggested 32px x "
"32px)"
msgstr ""

#: plugin-options/wishlist_page-options.php:585
msgid "Twitter share button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:586
msgid "Choose colors for Twitter share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:605
msgid "Pinterest share button icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:606
msgid "Select an icon for the Pinterest share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:616
msgid "Pinterest share button custom icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:617
msgid ""
"Upload an icon you'd like to use for Pinterest share button (suggested 32px "
"x 32px)"
msgstr ""

#: plugin-options/wishlist_page-options.php:625
msgid "Pinterest share button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:626
msgid "Choose colors for Pinterest share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:645
msgid "Email share button icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:646
msgid "Select an icon for the Email share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:656
msgid "Email share button custom icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:657
msgid ""
"Upload an icon you'd like to use for the Email share button (suggested 32px "
"x 32px)"
msgstr ""

#: plugin-options/wishlist_page-options.php:665
msgid "Email share button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:666
msgid "Choose colors for the Email share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:685
msgid "WhatsApp share button icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:686
msgid "Select an icon for the WhatsApp share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:696
msgid "WhatsApp share button custom icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:697
msgid ""
"Upload an icon you'd like to use for WhatsApp share button (suggested 32px x "
"32px)"
msgstr ""

#: plugin-options/wishlist_page-options.php:705
msgid "WhatsApp share button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:706
msgid "Choose colors for WhatsApp share button"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:168
#: templates/admin/wishlist-panel-premium.php:309
msgid ""
"Upgrade to the %1$spremium version%2$s%3$sof %1$sYITH WooCommerce Wishlist"
"%2$s to benefit from all features!"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:170
#: templates/admin/wishlist-panel-premium.php:311
msgid "Upgrade"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:176
msgid "Premium Features"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:180
msgid "Allow your customers to create multiple wishlists"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:182
msgid ""
"Christmas, Birthday... users will be able to create and manage multiple "
"wishlists, in case they prefer to keep the products sorted by category or "
"other parameters."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:185
msgid "Multiple Wishlist"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:192
msgid "Wishlist Private"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:196
msgid "A transparent privacy management"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:198
msgid ""
"Your customers can set a privacy option for each wishlist and choose whether "
"sharing the wishlist or making it private."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:206
msgid ""
"Allow your customers to ask for an estimate, directly from their wishlist "
"page"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:208
msgid ""
"And give only registered users the privilege to use the wishlist "
"functionalities."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:211
msgid "Estimate Cost"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:218
msgid "Admin Panel"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:222
msgid "An advanced and more versatile management of the wishlist"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:224
msgid ""
"Your customers can sort the products in the wishlist thanks to the drag&drop "
"option, move products from one wishlist to another, manage product quantity, "
"download the wishlist content to a .pdf file, share the wishlist on their "
"social networks, and much more!"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:232
msgid "Monitor your customers’ wishlists and the popular products"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:234
msgid ""
"You can see your customers’ wishlists, gain insight into the products they "
"are more interested in and plan targeted marketing strategies."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:237
msgid "Search Wishlists"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:244
msgid "'ADD TO CART'"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:248
msgid ""
"Send promotional emails for products in wishlists to push customers to buy"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:250
msgid ""
"Just three clicks to send promotional emails with discount coupons to "
"customers who have added specific products to their wishlist and push them "
"to buy."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:258
msgid "Let users buy the product right from the wishlist page"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:260
msgid ""
"Let them move products from one wishlist to the cart in one click, keeping "
"also the information about the size, colour or quantity selected when added "
"to the wishlist."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:263
msgid "DISABLE WISHLIST"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:271
msgid "Choose a charming layout for your wishlist page"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:273
msgid ""
"The wishlist is one of the most used functionalities in an ecommerce store "
"but often the page layout is not enhanced enough and looks unattractive to "
"the user. With our plugin, you can choose among some alternative layouts and "
"offer an even more interesting experience to users who creates a wishlist on "
"your website."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:276
msgid "UNLOGGED USERS"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:284
msgid "Wishlist widgets for the header and sidebars"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:286
msgid ""
"Increase the wishlist visibility through our modern widgets that you can use "
"in the header, in the sidebars, wherever you want."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:289
msgid "POPULAR TABLE"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:296
msgid "FUNCTIONALITIES"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:300
msgid "Allow users to monitor the price of the products in their wishlist"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:302
msgid ""
"We took inspiration from one of the most interesting features of Amazon "
"product pages: from now on, users can realise what’s the best time to buy a "
"product and how much they can save when there’s a promotion running or a "
"discount on the product they’ve added to the wishlist."
msgstr ""

#: templates/share.php:51 templates/share.php:52
msgid "Facebook"
msgstr "Facebook"

#: templates/share.php:59 templates/share.php:60
msgid "Twitter"
msgstr "Twitter"

#: templates/share.php:67 templates/share.php:68
msgid "Pinterest"
msgstr "Pintrest"

#: templates/share.php:75 templates/share.php:76
msgid "Email"
msgstr "Epost"

#: templates/share.php:83
msgid "WhatsApp"
msgstr ""

#: templates/share.php:84
msgid "Whatsapp"
msgstr ""

#: templates/share.php:93
msgid "(Now"
msgstr ""

#: templates/share.php:93
msgid "copy"
msgstr ""

#: templates/share.php:93
msgid "this wishlist link and share it anywhere)"
msgstr ""

#: templates/wishlist-view-footer-mobile.php:44
#: templates/wishlist-view-footer.php:44
msgid "Apply this action to all the selected items:"
msgstr ""

#: templates/wishlist-view-footer-mobile.php:49
#: templates/wishlist-view-footer.php:49
msgid "Remove from wishlist"
msgstr ""

#. translators: 1. Wishlist formatted name.
#: templates/wishlist-view-footer-mobile.php:67
#: templates/wishlist-view-footer.php:67
msgid "Move to %s"
msgstr ""

#: templates/wishlist-view-footer-mobile.php:73
#: templates/wishlist-view-footer.php:73
msgid "Apply"
msgstr ""

#: templates/wishlist-view-footer-mobile.php:81
#: templates/wishlist-view-footer.php:81
msgid "Update"
msgstr ""

#: templates/wishlist-view-footer-mobile.php:87
#: templates/wishlist-view-footer.php:103
msgid "Add all to cart"
msgstr ""

#: templates/wishlist-view-header.php:48
msgid "Edit title"
msgstr "Ändra titel"

#: templates/wishlist-view-mobile.php:136
msgid "Added on:"
msgstr ""

#: templates/wishlist-view-mobile.php:147
msgid "Price:"
msgstr ""

#: templates/wishlist-view-mobile.php:174
msgid "Quantity:"
msgstr ""

#: templates/wishlist-view-mobile.php:189
msgid "Stock:"
msgstr ""

#: templates/wishlist-view-mobile.php:192 templates/wishlist-view.php:229
msgid "Out of stock"
msgstr ""

#: templates/wishlist-view-mobile.php:192 templates/wishlist-view.php:229
msgid "In Stock"
msgstr "Finns i lager"

#: templates/wishlist-view-mobile.php:212 templates/wishlist-view.php:262
msgid "Move"
msgstr "Flytta"

#: templates/wishlist-view-mobile.php:233 templates/wishlist-view.php:283
msgid "Move to another list &rsaquo;"
msgstr ""

#: templates/wishlist-view-mobile.php:241 templates/wishlist-view.php:157
#: templates/wishlist-view.php:293
msgid "Remove this product"
msgstr "Ta bort denna produkt"

#: templates/wishlist-view-mobile.php:252 templates/wishlist-view.php:313
msgid "No products added to the wishlist"
msgstr ""

#: templates/wishlist-view.php:79
msgid "Product name"
msgstr ""

#: templates/wishlist-view.php:87
msgid "Unit price"
msgstr ""

#: templates/wishlist-view.php:96
msgid "Quantity"
msgstr ""

#: templates/wishlist-view.php:105
msgid "Stock status"
msgstr ""

#: templates/wishlist-view.php:123
msgid "Arrange"
msgstr ""

#. translators: date added label: 1 date added.
#: templates/wishlist-view.php:243
msgid "Added on: %s"
msgstr ""

#: templates/wishlist-view.php:293
msgid "Remove"
msgstr "Ta bort"

#. Description of the plugin/theme
msgid ""
"<code><strong>YITH WooCommerce Wishlist</strong></code> gives your users the "
"possibility to create, fill, manage and share their wishlists allowing you "
"to analyze their interests and needs to improve your marketing strategies. "
"<a href=\"https://yithemes.com/\" target=\"_blank\">Get more plugins for "
"your e-commerce on <strong>YITH</strong></a>"
msgstr ""

#: includes/class-yith-wcwl-admin.php:261
msgctxt "[HELP TAB] Video title"
msgid ""
"Check this video to learn how to <b>configure wishlist and customize options:"
"</b>"
msgstr ""

#: includes/class-yith-wcwl-install.php:340
msgctxt "page_slug"
msgid "wishlist"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:230
msgctxt "date when wishlist was created"
msgid "Created on"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:52
msgctxt "[gutenberg]: block name"
msgid "YITH Add to wishlist"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:101
msgctxt "[gutenberg]: block name"
msgid "YITH Wishlist"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:53
msgctxt "[gutenberg]: block description"
msgid "Shows Add to wishlist button"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:102
msgctxt "[gutenberg]: block description"
msgid "Shows a list of products in wishlist"
msgstr ""

#. translators: 1. % of reduction/increase in price.
#: includes/class-yith-wcwl-wishlist-item.php:428
msgctxt ""
"Part of the template that shows price variation since addition to list; "
"placeholder will be replaced with a percentage"
msgid "Price is %1$s%%"
msgstr ""

#. translators: 2: original product price.
#: includes/class-yith-wcwl-wishlist-item.php:430
msgctxt ""
"Part of the template that shows price variation since addition to list; "
"placeholder will be replaced with a price"
msgid "(Was %2$s when added  in list)"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:45
msgctxt "Elementor widget name"
msgid "YITH Wishlist Add button"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:45
#, fuzzy
msgctxt "Elementor widget name"
msgid "YITH Wishlist"
msgstr "Önskelista"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:87
#, fuzzy
msgctxt "Elementor section title"
msgid "Product"
msgstr "Produkt tillagd!"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:107
msgctxt "Elementor section title"
msgid "Labels"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:157
msgctxt "Elementor section title"
msgid "Advanced"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:87
#, fuzzy
msgctxt "Elementor section title"
msgid "Wishlist"
msgstr "Önskelista"

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:107
msgctxt "Elementor section title"
msgid "Pagination"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:95
#, fuzzy
msgctxt "Elementor control label"
msgid "Product ID"
msgstr "Produkt tillagd!"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:115
msgctxt "Elementor control label"
msgid "Button label"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:125
#, fuzzy
msgctxt "Elementor control label"
msgid "\"Browse wishlist\" label"
msgstr "“Bläddra i önskelistan”s text"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:135
#, fuzzy
msgctxt "Elementor control label"
msgid "\"Product already in wishlist\" label"
msgstr "“Produkten redan i önskelistan”s text"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:145
#, fuzzy
msgctxt "Elementor control label"
msgid "\"Product added to wishlist\" label"
msgstr "“Produkten redan i önskelistan”s text"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:165
msgctxt "Elementor control label"
msgid "URL of the wishlist page"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:175
msgctxt "Elementor control label"
msgid "Icon for the button"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:185
msgctxt "Elementor control label"
msgid "Additional CSS classes for the button"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:95
#, fuzzy
msgctxt "Elementor control label"
msgid "Wishlist ID"
msgstr "Önskelista"

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:115
msgctxt "Elementor control label"
msgid "Paginate items"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:128
msgctxt "yith-woocommerce-wishlist"
msgid "Items per page"
msgstr ""

#~ msgid "My wishlist on "
#~ msgstr "Min önskelista på %s"

#~ msgid "YITH WooCommerce Wishlist"
#~ msgstr "YITH WooCommerce Wishlist"

#~ msgid "Save"
#~ msgstr "Spara"

#~ msgid "Cancel"
#~ msgstr "Avbryt"

#~ msgid "Ask for an estimate"
#~ msgstr "Fråga efter en uppskattning"
PK`x1\���Q�Q�,languages/yith-woocommerce-wishlist-es_MX.ponu�[���# Copyright (C) 2019 YITH WooCommerce Wishlist
# This file is distributed under the same license as the YITH WooCommerce Wishlist package.
msgid ""
msgstr ""
"Project-Id-Version: YITH WooCommerce Wishlist\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/yith-woocommerce-"
"wishlist\n"
"POT-Creation-Date: 2021-11-11 13:53:53+00:00\n"
"PO-Revision-Date: 2020-10-16 14:04+0200\n"
"Last-Translator: Gabriel Azarias Dzul Cocom <gabrieldzul@gmail.com>\n"
"Language-Team: Your Inspiration Themes <plugins@yithemes.com>\n"
"Language: es_MX\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 2.4.1\n"
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;_n:1,2;__ngettext:1,2;"
"__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;"
"_nx_noop:4c,1,2\n"
"X-Poedit-Basepath: .\n"
"Plural-Forms: nplurals=2; plural=n!=1;\n"
"X-Poedit-SourceCharset: UTF-8\n"
"X-Poedit-SearchPath-0: ..\n"
"X-Poedit-SearchPathExcluded-0: ../plugin-fw\n"

#: includes/class-yith-wcwl-admin.php:126
#, fuzzy
msgid "Wishlist Page"
msgstr "Lista de deseos"

#: includes/class-yith-wcwl-admin.php:148
msgid "General settings"
msgstr ""

#: includes/class-yith-wcwl-admin.php:149
msgid "Add to wishlist options"
msgstr ""

#: includes/class-yith-wcwl-admin.php:150
msgid "Wishlist page options"
msgstr ""

#: includes/class-yith-wcwl-admin.php:151
msgid "Premium Version"
msgstr ""

#: includes/class-yith-wcwl-admin.php:249
#: includes/class-yith-wcwl-install.php:342
msgid "Wishlist"
msgstr "Lista de deseos"

#: includes/class-yith-wcwl-admin.php:251
msgid ""
"Allows your customers to create and share lists of products that they want "
"to purchase on your e-commerce."
msgstr ""

#: includes/class-yith-wcwl-ajax-handler.php:75
#: templates/add-to-wishlist-remove.php:59
msgid "View &rsaquo;"
msgstr ""

#: includes/class-yith-wcwl-ajax-handler.php:76
#: templates/add-to-wishlist-remove.php:58
msgid "or"
msgstr ""

#: includes/class-yith-wcwl-ajax-handler.php:77
msgid "Close"
msgstr ""

#: includes/class-yith-wcwl-ajax-handler.php:155
#: includes/class-yith-wcwl-ajax-handler.php:195
msgid "Product successfully removed."
msgstr "Producto exitosamente eliminado"

#: includes/class-yith-wcwl-form-handler.php:156
msgid "Please, make sure to enter a valid title"
msgstr ""

#: includes/class-yith-wcwl-frontend.php:461
msgid ""
"We are sorry, but this feature is available only if cookies on your browser "
"are enabled."
msgstr ""

#: includes/class-yith-wcwl-frontend.php:462
msgid "Product added to cart successfully"
msgstr ""

#: includes/class-yith-wcwl-frontend.php:725
#: includes/class-yith-wcwl-shortcode.php:239
#: plugin-options/wishlist_page-options.php:240
#: templates/wishlist-view-footer-mobile.php:46
#: templates/wishlist-view-footer.php:46
msgid "Add to cart"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:52
msgid "While you visit our site, we’ll track:"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:54
msgid ""
"Products you’ve added to the wishlist: we’ll use this to show you and other "
"users your favourite products, and to create targeted email campaigns."
msgstr ""

#: includes/class-yith-wcwl-privacy.php:55
msgid ""
"Wishlists you’ve created: we’ll keep track of the wishlists you create, and "
"make them visible to the store staff"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:57
msgid ""
"We’ll also use cookies to keep track of wishlist contents while you’re "
"browsing our site."
msgstr ""

#: includes/class-yith-wcwl-privacy.php:60
msgid ""
"Members of our team have access to the information you provide us with. For "
"example, both Administrators and Shop Managers can access:"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:62
msgid ""
"Wishlist details, such as products added, date of addition, name and privacy "
"settings of your wishlists"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:64
msgid ""
"Our team members have access to this information to offer you better deals "
"for the products you love."
msgstr ""

#: includes/class-yith-wcwl-privacy.php:84
#: includes/class-yith-wcwl-privacy.php:100
msgid "Customer wishlists"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:137 plugin-options/lists-options.php:25
#: plugin-options/lists-options.php:32
msgid "Wishlists"
msgstr "Lista de deseos"

#. Translators: %s Order number.
#: includes/class-yith-wcwl-privacy.php:199
msgid "Removed wishlist %s."
msgstr "My Lista de deseos en %s"

#. Translators: %s Order number.
#: includes/class-yith-wcwl-privacy.php:203
msgid "Wishlist %s has been retained."
msgstr "Texto de la tabla de la Lista de deseos"

#: includes/class-yith-wcwl-privacy.php:227
msgid "Token"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:228
msgid "Wishlist URL"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:229
msgid "Title"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:231
msgid "Visibility"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:232
msgid "Items added"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:58
msgid ""
"ID of the product to add to the wishlist (leave empty to use the global "
"product)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:63
msgid "URL of the wishlist page (leave empty to use the default settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:68
msgid "Button label (leave empty to use the default settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:73
msgid "\"Browse wishlist\" label (leave empty to use the default settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:78
msgid ""
"\"Product already in wishlist\" label (leave empty to use the default "
"settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:83
msgid ""
"\"Product added to wishlist\" label (leave empty to use the default settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:88
msgid ""
"Icon for the button (use any FontAwesome valid class, or leave empty to use "
"the default settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:93
msgid ""
"Additional CSS classes for the button (leave empty to use the default "
"settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:107
msgid "Choose whether to paginate items in the wishlist or show them all"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:110
#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:118
msgid "Paginate"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:111
#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:119
msgid "Do not paginate"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:116
msgid "Number of items to show per page"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:121
msgid "ID of the wishlist to show (e.g. K6EOWXB888ZD)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:414
msgid "Share on:"
msgstr "Compartir en:"

#: includes/class-yith-wcwl-shortcode.php:438
#: plugin-options/wishlist_page-options.php:138
msgid "Share on Facebook"
msgstr "Compartir en Facebook"

#: includes/class-yith-wcwl-shortcode.php:455
#: plugin-options/wishlist_page-options.php:147
msgid "Tweet on Twitter"
msgstr "Tweet en Twitter"

#: includes/class-yith-wcwl-shortcode.php:473
#: plugin-options/wishlist_page-options.php:156
msgid "Pin on Pinterest"
msgstr "Pin en Pinterest"

#: includes/class-yith-wcwl-shortcode.php:487
msgid "Share via email"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:510
#: plugin-options/wishlist_page-options.php:174
msgid "Share on WhatsApp"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:621
msgid "Remove from list"
msgstr ""

#: includes/class-yith-wcwl-wishlist-item.php:189
msgid "Free!"
msgstr "Gratis!"

#: includes/class-yith-wcwl.php:164
msgid "The item cannot be added to this wishlist"
msgstr ""

#: includes/class-yith-wcwl.php:168 includes/class-yith-wcwl.php:174
msgid "An error occurred while adding the products to the wishlist."
msgstr ""

#: includes/class-yith-wcwl.php:235 includes/class-yith-wcwl.php:241
msgid "Error. Unable to remove the product from the wishlist."
msgstr "Error. No fue posible eliminar el producto de la Lista."

#: includes/data-stores/class-yith-wcwl-wishlist-data-store.php:152
#: includes/data-stores/class-yith-wcwl-wishlist-data-store.php:174
msgid "Invalid wishlist."
msgstr ""

#: includes/data-stores/class-yith-wcwl-wishlist-item-data-store.php:119
msgid "Invalid wishlist item."
msgstr ""

#. translators: 1. Number of users.
#: includes/functions-yith-wcwl.php:249
msgid "%d user"
msgid_plural "%d users"
msgstr[0] ""
msgstr[1] ""

#: includes/functions-yith-wcwl.php:250
msgid "has this item in wishlist"
msgid_plural "have this item in wishlist"
msgstr[0] ""
msgstr[1] ""

#: includes/functions-yith-wcwl.php:252
msgid "You're the first"
msgstr ""

#: includes/functions-yith-wcwl.php:253
msgid "to add this item in wishlist"
msgstr ""

#. translators: 1. Count of users when many, or "another" when only one.
#: includes/functions-yith-wcwl.php:257
msgid "You and %s user"
msgid_plural "You and %d users"
msgstr[0] ""
msgstr[1] ""

#: includes/functions-yith-wcwl.php:257
msgid "another"
msgstr ""

#: includes/functions-yith-wcwl.php:258
msgid "have this item in wishlist"
msgstr ""

#: includes/functions-yith-wcwl.php:425
msgid "None"
msgstr ""

#: includes/functions-yith-wcwl.php:426
#, fuzzy
msgid "Custom"
msgstr "Css personalizado"

#: includes/functions-yith-wcwl.php:447
msgid "Shared"
msgstr "Compartir en:"

#: includes/functions-yith-wcwl.php:451
msgid "Only people with a link to this list can see it"
msgstr ""

#: includes/functions-yith-wcwl.php:457
msgid "Private"
msgstr ""

#: includes/functions-yith-wcwl.php:461
msgid "Only you can see this list"
msgstr ""

#: includes/functions-yith-wcwl.php:467
msgid "Public"
msgstr ""

#: includes/functions-yith-wcwl.php:471
msgid "Anyone can search for and see this list"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:118
#: plugin-options/add_to_wishlist-options.php:127
msgid "Add to wishlist"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:128
#: plugin-options/add_to_wishlist-options.php:143
msgid "Browse wishlist"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:138
#, fuzzy
msgid "Product already in wishlist"
msgstr "El producto ya está en la Lista"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:148
#, fuzzy
msgid "Product added to wishlist"
msgstr "El producto ya está en la Lista"

#: init.php:160
msgid "is enabled but not effective. It requires WooCommerce to work."
msgstr ""

#: init.php:176
msgid "You can't activate the free version of"
msgstr ""

#: init.php:176
msgid "while you are using the premium one."
msgstr ""

#: plugin-options/add_to_wishlist-options.php:20
#: plugin-options/settings-options.php:27
msgid "General Settings"
msgstr "Ajustes Generales"

#: plugin-options/add_to_wishlist-options.php:27
msgid "After product is added to wishlist"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:28
msgid ""
"Choose the look of the Wishlist button when the product has already been "
"added to a wishlist"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:32
#, fuzzy
msgid "Show \"Add to wishlist\" button"
msgstr "El producto ya está en la Lista"

#: plugin-options/add_to_wishlist-options.php:33
msgid "Show \"View wishlist\" link"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:34
msgid "Show \"Remove from list\" link"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:48
msgid "Loop settings"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:50
msgid ""
"Loop options will be visible on Shop page, category pages, product "
"shortcodes, products sliders, and all the other places where the WooCommerce "
"products' loop is used"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:55
msgid "Show \"Add to wishlist\" in loop"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:56
msgid "Enable the \"Add to wishlist\" feature in WooCommerce products' loop"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:64
msgid "Position of \"Add to wishlist\" in loop"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:65
msgid ""
"Choose where to show \"Add to wishlist\" button or link in WooCommerce "
"products' loop. <span class=\"addon\">Copy this shortcode <span class=\"code"
"\"><code>[yith_wcwl_add_to_wishlist]</code></span> and paste it where you "
"want to show the \"Add to wishlist\" link or button</span>"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:72
msgid "On top of the image"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:73
msgid "Before \"Add to cart\" button"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:74
msgid "After \"Add to cart\" button"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:75
#: plugin-options/add_to_wishlist-options.php:107
msgid "Use shortcode"
msgstr "Usar shortcode"

#: plugin-options/add_to_wishlist-options.php:89
msgid "Product page settings"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:96
msgid "Position of \"Add to wishlist\" on product page"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:97
msgid ""
"Choose where to show \"Add to wishlist\" button or link on the product page. "
"<span class=\"addon\">Copy this shortcode <span class=\"code"
"\"><code>[yith_wcwl_add_to_wishlist]</code></span> and paste it where you "
"want to show the \"Add to wishlist\" link or button</span>"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:104
msgid "After \"Add to cart\""
msgstr "Despued de \"Agregar al Carrito\""

#: plugin-options/add_to_wishlist-options.php:105
msgid "After thumbnails"
msgstr "Despues de las miniaturas"

#: plugin-options/add_to_wishlist-options.php:106
msgid "After summary"
msgstr "Despues del Resumen"

#: plugin-options/add_to_wishlist-options.php:117
#: plugin-options/wishlist_page-options.php:222
msgid "Text customization"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:124
msgid "\"Add to wishlist\" text"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:125
msgid "Enter a text for \"Add to wishlist\" button"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:132
msgid "\"Product added\" text"
msgstr "¡Producto agregado!"

#: plugin-options/add_to_wishlist-options.php:133
msgid ""
"Enter the text of the message displayed when the user adds a product to the "
"wishlist"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:135
msgid "Product added!"
msgstr "¡Producto agregado!"

#: plugin-options/add_to_wishlist-options.php:140
msgid "\"Browse wishlist\" text"
msgstr "Ir a la Lista de deseos"

#: plugin-options/add_to_wishlist-options.php:141
msgid "Enter a text for the \"Browse wishlist\" link on the product page"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:148
msgid "\"Product already in wishlist\" text"
msgstr "El producto ya está en la Lista"

#: plugin-options/add_to_wishlist-options.php:149
msgid ""
"Enter the text for the message displayed when the user views a product that "
"is already in the wishlist"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:151
msgid "The product is already in your wishlist!"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:161
msgid "Style & Color customization"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:168
msgid "Style of \"Add to wishlist\""
msgstr ""

#: plugin-options/add_to_wishlist-options.php:169
msgid ""
"Choose if you want to show a textual \"Add to wishlist\" link or a button"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:172
#: plugin-options/wishlist_page-options.php:261
msgid "Textual (anchor)"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:173
#: plugin-options/wishlist_page-options.php:262
msgid "Button with theme style"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:174
#: plugin-options/wishlist_page-options.php:263
msgid "Button with custom style"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:182
msgid "\"Add to wishlist\" button style"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:188
msgid "Choose colors for the \"Add to wishlist\" button"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:190
#: plugin-options/wishlist_page-options.php:279
#: plugin-options/wishlist_page-options.php:368
#: plugin-options/wishlist_page-options.php:417
#: plugin-options/wishlist_page-options.php:465
#: plugin-options/wishlist_page-options.php:552
#: plugin-options/wishlist_page-options.php:592
#: plugin-options/wishlist_page-options.php:632
#: plugin-options/wishlist_page-options.php:672
#: plugin-options/wishlist_page-options.php:712
msgid "Background"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:195
#: plugin-options/wishlist_page-options.php:284
#: plugin-options/wishlist_page-options.php:373
#: plugin-options/wishlist_page-options.php:422
#: plugin-options/wishlist_page-options.php:470
#: plugin-options/wishlist_page-options.php:507
msgid "Text"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:200
#: plugin-options/wishlist_page-options.php:289
#: plugin-options/wishlist_page-options.php:378
#: plugin-options/wishlist_page-options.php:427
#: plugin-options/wishlist_page-options.php:475
msgid "Border"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:206
msgid "Choose colors for the \"Add to wishlist\" button on hover state"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:208
#: plugin-options/wishlist_page-options.php:297
#: plugin-options/wishlist_page-options.php:386
#: plugin-options/wishlist_page-options.php:435
msgid "Background Hover"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:213
#: plugin-options/wishlist_page-options.php:302
#: plugin-options/wishlist_page-options.php:391
#: plugin-options/wishlist_page-options.php:440
msgid "Text Hover"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:218
#: plugin-options/wishlist_page-options.php:307
#: plugin-options/wishlist_page-options.php:396
#: plugin-options/wishlist_page-options.php:445
msgid "Border Hover"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:231
#: plugin-options/wishlist_page-options.php:320
msgid "Border radius"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:232
msgid "Choose radius for the \"Add to wishlist\" button"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:246
msgid "\"Add to wishlist\" icon"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:247
msgid "Select an icon for the \"Add to wishlist\" button (optional)"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:257
msgid "\"Add to wishlist\" custom icon"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:258
#: plugin-options/add_to_wishlist-options.php:282
msgid ""
"Upload an icon you'd like to use for \"Add to wishlist\" button (suggested "
"32px x 32px)"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:270
msgid "\"Added to wishlist\" icon"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:271
msgid "Select an icon for the \"Added to wishlist\" button (optional)"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:277
msgid "Same used for Add to wishlist"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:281
msgid "\"Added to wishlist\" custom icon"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:294
msgid "Custom CSS"
msgstr "Css personalizado"

#: plugin-options/add_to_wishlist-options.php:295
msgid "Enter custom CSS to be applied to Wishlist elements (optional)"
msgstr ""

#: plugin-options/lists-options.php:34
msgid "Search list"
msgstr ""

#. translators: 1. Anchor to Frequently Bought Together landing page on
#. yithemes.com.
#: plugin-options/settings-options.php:19
msgid ""
"If you want to take advantage of this feature, you could consider purchasing "
"the %s."
msgstr ""

#: plugin-options/settings-options.php:34
msgid "Enable AJAX loading"
msgstr ""

#: plugin-options/settings-options.php:35
msgid "Load any cacheable wishlist item via AJAX"
msgstr ""

#: plugin-options/settings-options.php:48
msgid "YITH WooCommerce Frequently Bought Together Integration"
msgstr ""

#. translators: 1. Url to Frequently Bought Together landing page on
#. yithemes.com.
#: plugin-options/settings-options.php:51
msgid ""
"In order to use this integration you have to install and activate YITH "
"WooCommerce Frequently Bought Together. <a href=\"%s\">Learn more</a>"
msgstr ""

#: plugin-options/settings-options.php:56
msgid "Enable slider in wishlist"
msgstr ""

#. translators: 1. Example image of the integration. 2. CTA to buy Frequently
#. Bought Together.
#: plugin-options/settings-options.php:58
msgid ""
"Enable the slider with linked products on the Wishlist page (<a href=\"%1$s"
"\" class=\"thickbox\">Example</a>). %2$s"
msgstr ""

#: plugin-options/wishlist_page-options.php:19
msgid "All your wishlists"
msgstr ""

#: plugin-options/wishlist_page-options.php:26
msgid "Wishlist page"
msgstr ""

#: plugin-options/wishlist_page-options.php:27
msgid ""
"Pick a page as the main Wishlist page; make sure you add the <span class="
"\"code\"><code>[yith_wcwl_wishlist]</code></span> shortcode into the page "
"content"
msgstr ""

#: plugin-options/wishlist_page-options.php:40
msgid "Wishlist Detail Page"
msgstr ""

#: plugin-options/wishlist_page-options.php:47
#: plugin-options/wishlist_page-options.php:56
#: plugin-options/wishlist_page-options.php:65
#: plugin-options/wishlist_page-options.php:74
#: plugin-options/wishlist_page-options.php:83
#: plugin-options/wishlist_page-options.php:92
#: plugin-options/wishlist_page-options.php:101
msgid "In wishlist table show"
msgstr ""

#: plugin-options/wishlist_page-options.php:48
msgid "Product variations selected by the user (example: size or color)"
msgstr ""

#: plugin-options/wishlist_page-options.php:57
msgid "Product price"
msgstr ""

#: plugin-options/wishlist_page-options.php:66
msgid "Product stock (show if the product is available or not)"
msgstr ""

#: plugin-options/wishlist_page-options.php:75
msgid "Date on which the product was added to the wishlist"
msgstr ""

#: plugin-options/wishlist_page-options.php:84
msgid "Add to cart option for each product"
msgstr ""

#: plugin-options/wishlist_page-options.php:93
msgid ""
"Icon to remove the product from the wishlist - to the left of the product"
msgstr ""

#: plugin-options/wishlist_page-options.php:102
msgid ""
"Button to remove the product from the wishlist - to the right of the product"
msgstr ""

#: plugin-options/wishlist_page-options.php:110
msgid "Redirect to cart"
msgstr "Redirreccionar al Carrito"

#: plugin-options/wishlist_page-options.php:111
msgid ""
"Redirect users to the cart page when they add a product to the cart from the "
"wishlist page"
msgstr ""

#: plugin-options/wishlist_page-options.php:119
msgid "Remove if added to the cart"
msgstr "Remover si es agregado al Carrito."

#: plugin-options/wishlist_page-options.php:120
msgid ""
"Remove the product from the wishlist after it has been added to the cart"
msgstr ""

#: plugin-options/wishlist_page-options.php:128
msgid "Share wishlist"
msgstr ""

#: plugin-options/wishlist_page-options.php:129
msgid "Enable this option to let users share their wishlist on social media"
msgstr ""

#: plugin-options/wishlist_page-options.php:137
#: plugin-options/wishlist_page-options.php:146
#: plugin-options/wishlist_page-options.php:155
#: plugin-options/wishlist_page-options.php:164
#: plugin-options/wishlist_page-options.php:173
msgid "Share on social media"
msgstr ""

#: plugin-options/wishlist_page-options.php:165
msgid "Share by email"
msgstr ""

#: plugin-options/wishlist_page-options.php:182
msgid "Share by URL"
msgstr ""

#: plugin-options/wishlist_page-options.php:183
msgid "Show \"Share URL\" field on wishlist page"
msgstr ""

#: plugin-options/wishlist_page-options.php:191
msgid "Sharing title"
msgstr ""

#: plugin-options/wishlist_page-options.php:192
msgid "Wishlist title used for sharing (only used on Twitter and Pinterest)"
msgstr ""

#. translators: 1. Blog name.
#: plugin-options/wishlist_page-options.php:195
msgid "My wishlist on %s"
msgstr "My Lista de deseos en %s"

#: plugin-options/wishlist_page-options.php:200
msgid "Social text"
msgstr "Texto de redes sociales"

#: plugin-options/wishlist_page-options.php:201
msgid ""
"Type the message you want to publish when you share your wishlist on Twitter "
"and Pinterest"
msgstr ""

#: plugin-options/wishlist_page-options.php:209
msgid "Social image URL"
msgstr "URL  de la imágen de las redes Sociales."

#: plugin-options/wishlist_page-options.php:210
msgid "It will be used to pin the wishlist on Pinterest."
msgstr ""

#: plugin-options/wishlist_page-options.php:229
msgid "Default wishlist name"
msgstr ""

#: plugin-options/wishlist_page-options.php:230
msgid ""
"Enter a name for the default wishlist. This is the wishlist that will be "
"automatically generated for all users if they do not create any custom one"
msgstr ""

#: plugin-options/wishlist_page-options.php:232
#, fuzzy
msgid "My wishlist"
msgstr "My Lista de deseos en %s"

#: plugin-options/wishlist_page-options.php:237
msgid "\"Add to cart\" text"
msgstr ""

#: plugin-options/wishlist_page-options.php:238
msgid "Enter a text for the \"Add to cart\" button"
msgstr ""

#: plugin-options/wishlist_page-options.php:250
msgid "Style & color customization"
msgstr ""

#: plugin-options/wishlist_page-options.php:257
msgid "Style of \"Add to cart\""
msgstr ""

#: plugin-options/wishlist_page-options.php:258
msgid "Choose whether to show a textual \"Add to cart\" link or a button"
msgstr ""

#: plugin-options/wishlist_page-options.php:271
msgid "\"Add to cart\" button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:277
msgid "Choose the colors for the \"Add to cart\" button"
msgstr ""

#: plugin-options/wishlist_page-options.php:295
msgid "Choose colors for the \"Add to cart\" button on hover state"
msgstr ""

#: plugin-options/wishlist_page-options.php:321
msgid "Set the radius for the \"Add to cart\" button"
msgstr ""

#: plugin-options/wishlist_page-options.php:335
msgid "\"Add to cart\" icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:336
msgid "Select an icon for the \"Add to cart\" button (optional)"
msgstr ""

#: plugin-options/wishlist_page-options.php:351
msgid "\"Add to cart\" custom icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:352
msgid ""
"Upload an icon you'd like to use for the \"Add to cart\" button (suggested "
"32px x 32px)"
msgstr ""

#: plugin-options/wishlist_page-options.php:360
msgid "Primary button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:366
msgid ""
"Choose colors for the primary button<br/><small>This style will be applied "
"to \"Edit title\" button on Wishlist view, \"Submit Changes\" button on "
"Manage view and \"Search wishlist\" button on Search view</small>"
msgstr ""

#: plugin-options/wishlist_page-options.php:384
msgid ""
"Choose colors for the primary button on hover state<br/><small>This style "
"will be applied to \"Edit title\" button on Wishlist view, \"Submit Changes"
"\" button on Manage view and \"Search wishlist\" button on Search view</"
"small>"
msgstr ""

#: plugin-options/wishlist_page-options.php:409
msgid "Secondary button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:415
#: plugin-options/wishlist_page-options.php:433
msgid ""
"Choose colors of the secondary button<br/><small>This style will be applied "
"to the buttons that allow showing and hiding the Edit title form on Wishlist "
"view and \"Create new Wishlist\" button on Manage view</small>"
msgstr ""

#: plugin-options/wishlist_page-options.php:458
msgid "Wishlist table style"
msgstr ""

#: plugin-options/wishlist_page-options.php:459
msgid ""
"Choose the colors for the wishlist table (when set to \"Traditional\" layout)"
msgstr ""

#: plugin-options/wishlist_page-options.php:487
msgid "Highlight color"
msgstr ""

#: plugin-options/wishlist_page-options.php:488
msgid ""
"Choose the color for all sections with background<br/><small>This color will "
"be used as background for the wishlist table heading and footer (when set to "
"\"Traditional\" layout), and for various form across wishlist views</small>"
msgstr ""

#: plugin-options/wishlist_page-options.php:500
msgid "Share button text color"
msgstr ""

#: plugin-options/wishlist_page-options.php:501
msgid "Choose colors for share buttons text"
msgstr ""

#: plugin-options/wishlist_page-options.php:512
msgid "Text hover"
msgstr ""

#: plugin-options/wishlist_page-options.php:525
msgid "Facebook share button icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:526
msgid "Select an icon for the Facebook share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:536
msgid "Facebook share button custom icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:537
msgid ""
"Upload an icon you'd like to use for Facebook share button (suggested 32px x "
"32px)"
msgstr ""

#: plugin-options/wishlist_page-options.php:545
msgid "Facebook share button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:546
msgid "Choose colors for Facebook share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:557
#: plugin-options/wishlist_page-options.php:597
#: plugin-options/wishlist_page-options.php:637
#: plugin-options/wishlist_page-options.php:677
#: plugin-options/wishlist_page-options.php:717
msgid "Background hover"
msgstr ""

#: plugin-options/wishlist_page-options.php:565
msgid "Twitter share button icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:566
msgid "Select an icon for the Twitter share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:576
msgid "Twitter share button custom icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:577
msgid ""
"Upload an icon you'd like to use for Twitter share button (suggested 32px x "
"32px)"
msgstr ""

#: plugin-options/wishlist_page-options.php:585
msgid "Twitter share button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:586
msgid "Choose colors for Twitter share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:605
msgid "Pinterest share button icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:606
msgid "Select an icon for the Pinterest share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:616
msgid "Pinterest share button custom icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:617
msgid ""
"Upload an icon you'd like to use for Pinterest share button (suggested 32px "
"x 32px)"
msgstr ""

#: plugin-options/wishlist_page-options.php:625
msgid "Pinterest share button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:626
msgid "Choose colors for Pinterest share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:645
msgid "Email share button icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:646
msgid "Select an icon for the Email share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:656
msgid "Email share button custom icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:657
msgid ""
"Upload an icon you'd like to use for the Email share button (suggested 32px "
"x 32px)"
msgstr ""

#: plugin-options/wishlist_page-options.php:665
msgid "Email share button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:666
msgid "Choose colors for the Email share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:685
msgid "WhatsApp share button icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:686
msgid "Select an icon for the WhatsApp share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:696
msgid "WhatsApp share button custom icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:697
msgid ""
"Upload an icon you'd like to use for WhatsApp share button (suggested 32px x "
"32px)"
msgstr ""

#: plugin-options/wishlist_page-options.php:705
msgid "WhatsApp share button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:706
msgid "Choose colors for WhatsApp share button"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:168
#: templates/admin/wishlist-panel-premium.php:309
msgid ""
"Upgrade to the %1$spremium version%2$s%3$sof %1$sYITH WooCommerce Wishlist"
"%2$s to benefit from all features!"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:170
#: templates/admin/wishlist-panel-premium.php:311
msgid "Upgrade"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:176
msgid "Premium Features"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:180
msgid "Allow your customers to create multiple wishlists"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:182
msgid ""
"Christmas, Birthday... users will be able to create and manage multiple "
"wishlists, in case they prefer to keep the products sorted by category or "
"other parameters."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:185
msgid "Multiple Wishlist"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:192
msgid "Wishlist Private"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:196
msgid "A transparent privacy management"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:198
msgid ""
"Your customers can set a privacy option for each wishlist and choose whether "
"sharing the wishlist or making it private."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:206
msgid ""
"Allow your customers to ask for an estimate, directly from their wishlist "
"page"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:208
msgid ""
"And give only registered users the privilege to use the wishlist "
"functionalities."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:211
msgid "Estimate Cost"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:218
msgid "Admin Panel"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:222
msgid "An advanced and more versatile management of the wishlist"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:224
msgid ""
"Your customers can sort the products in the wishlist thanks to the drag&drop "
"option, move products from one wishlist to another, manage product quantity, "
"download the wishlist content to a .pdf file, share the wishlist on their "
"social networks, and much more!"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:232
msgid "Monitor your customers’ wishlists and the popular products"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:234
msgid ""
"You can see your customers’ wishlists, gain insight into the products they "
"are more interested in and plan targeted marketing strategies."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:237
msgid "Search Wishlists"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:244
msgid "'ADD TO CART'"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:248
msgid ""
"Send promotional emails for products in wishlists to push customers to buy"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:250
msgid ""
"Just three clicks to send promotional emails with discount coupons to "
"customers who have added specific products to their wishlist and push them "
"to buy."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:258
msgid "Let users buy the product right from the wishlist page"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:260
msgid ""
"Let them move products from one wishlist to the cart in one click, keeping "
"also the information about the size, colour or quantity selected when added "
"to the wishlist."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:263
msgid "DISABLE WISHLIST"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:271
msgid "Choose a charming layout for your wishlist page"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:273
msgid ""
"The wishlist is one of the most used functionalities in an ecommerce store "
"but often the page layout is not enhanced enough and looks unattractive to "
"the user. With our plugin, you can choose among some alternative layouts and "
"offer an even more interesting experience to users who creates a wishlist on "
"your website."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:276
msgid "UNLOGGED USERS"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:284
msgid "Wishlist widgets for the header and sidebars"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:286
msgid ""
"Increase the wishlist visibility through our modern widgets that you can use "
"in the header, in the sidebars, wherever you want."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:289
msgid "POPULAR TABLE"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:296
msgid "FUNCTIONALITIES"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:300
msgid "Allow users to monitor the price of the products in their wishlist"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:302
msgid ""
"We took inspiration from one of the most interesting features of Amazon "
"product pages: from now on, users can realise what’s the best time to buy a "
"product and how much they can save when there’s a promotion running or a "
"discount on the product they’ve added to the wishlist."
msgstr ""

#: templates/share.php:51 templates/share.php:52
msgid "Facebook"
msgstr ""

#: templates/share.php:59 templates/share.php:60
msgid "Twitter"
msgstr ""

#: templates/share.php:67 templates/share.php:68
msgid "Pinterest"
msgstr "Pin en Pinterest"

#: templates/share.php:75 templates/share.php:76
msgid "Email"
msgstr ""

#: templates/share.php:83
msgid "WhatsApp"
msgstr ""

#: templates/share.php:84
msgid "Whatsapp"
msgstr ""

#: templates/share.php:93
msgid "(Now"
msgstr ""

#: templates/share.php:93
msgid "copy"
msgstr ""

#: templates/share.php:93
msgid "this wishlist link and share it anywhere)"
msgstr ""

#: templates/wishlist-view-footer-mobile.php:44
#: templates/wishlist-view-footer.php:44
msgid "Apply this action to all the selected items:"
msgstr ""

#: templates/wishlist-view-footer-mobile.php:49
#: templates/wishlist-view-footer.php:49
msgid "Remove from wishlist"
msgstr ""

#. translators: 1. Wishlist formatted name.
#: templates/wishlist-view-footer-mobile.php:67
#: templates/wishlist-view-footer.php:67
msgid "Move to %s"
msgstr ""

#: templates/wishlist-view-footer-mobile.php:73
#: templates/wishlist-view-footer.php:73
msgid "Apply"
msgstr ""

#: templates/wishlist-view-footer-mobile.php:81
#: templates/wishlist-view-footer.php:81
msgid "Update"
msgstr ""

#: templates/wishlist-view-footer-mobile.php:87
#: templates/wishlist-view-footer.php:103
msgid "Add all to cart"
msgstr ""

#: templates/wishlist-view-header.php:48
msgid "Edit title"
msgstr "Título de la Lista de deseos"

#: templates/wishlist-view-mobile.php:136
msgid "Added on:"
msgstr ""

#: templates/wishlist-view-mobile.php:147
msgid "Price:"
msgstr ""

#: templates/wishlist-view-mobile.php:174
msgid "Quantity:"
msgstr ""

#: templates/wishlist-view-mobile.php:189
msgid "Stock:"
msgstr ""

#: templates/wishlist-view-mobile.php:192 templates/wishlist-view.php:229
msgid "Out of stock"
msgstr ""

#: templates/wishlist-view-mobile.php:192 templates/wishlist-view.php:229
msgid "In Stock"
msgstr "Disponilbe."

#: templates/wishlist-view-mobile.php:212 templates/wishlist-view.php:262
msgid "Move"
msgstr ""

#: templates/wishlist-view-mobile.php:233 templates/wishlist-view.php:283
msgid "Move to another list &rsaquo;"
msgstr ""

#: templates/wishlist-view-mobile.php:241 templates/wishlist-view.php:157
#: templates/wishlist-view.php:293
msgid "Remove this product"
msgstr "Remover este producto"

#: templates/wishlist-view-mobile.php:252 templates/wishlist-view.php:313
msgid "No products added to the wishlist"
msgstr ""

#: templates/wishlist-view.php:79
msgid "Product name"
msgstr ""

#: templates/wishlist-view.php:87
msgid "Unit price"
msgstr ""

#: templates/wishlist-view.php:96
msgid "Quantity"
msgstr ""

#: templates/wishlist-view.php:105
msgid "Stock status"
msgstr ""

#: templates/wishlist-view.php:123
msgid "Arrange"
msgstr ""

#. translators: date added label: 1 date added.
#: templates/wishlist-view.php:243
msgid "Added on: %s"
msgstr ""

#: templates/wishlist-view.php:293
msgid "Remove"
msgstr ""

#. Description of the plugin/theme
msgid ""
"<code><strong>YITH WooCommerce Wishlist</strong></code> gives your users the "
"possibility to create, fill, manage and share their wishlists allowing you "
"to analyze their interests and needs to improve your marketing strategies. "
"<a href=\"https://yithemes.com/\" target=\"_blank\">Get more plugins for "
"your e-commerce on <strong>YITH</strong></a>"
msgstr ""

#: includes/class-yith-wcwl-admin.php:261
msgctxt "[HELP TAB] Video title"
msgid ""
"Check this video to learn how to <b>configure wishlist and customize options:"
"</b>"
msgstr ""

#: includes/class-yith-wcwl-install.php:340
msgctxt "page_slug"
msgid "wishlist"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:230
msgctxt "date when wishlist was created"
msgid "Created on"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:52
msgctxt "[gutenberg]: block name"
msgid "YITH Add to wishlist"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:101
msgctxt "[gutenberg]: block name"
msgid "YITH Wishlist"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:53
msgctxt "[gutenberg]: block description"
msgid "Shows Add to wishlist button"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:102
msgctxt "[gutenberg]: block description"
msgid "Shows a list of products in wishlist"
msgstr ""

#. translators: 1. % of reduction/increase in price.
#: includes/class-yith-wcwl-wishlist-item.php:428
msgctxt ""
"Part of the template that shows price variation since addition to list; "
"placeholder will be replaced with a percentage"
msgid "Price is %1$s%%"
msgstr ""

#. translators: 2: original product price.
#: includes/class-yith-wcwl-wishlist-item.php:430
msgctxt ""
"Part of the template that shows price variation since addition to list; "
"placeholder will be replaced with a price"
msgid "(Was %2$s when added  in list)"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:45
msgctxt "Elementor widget name"
msgid "YITH Wishlist Add button"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:45
#, fuzzy
msgctxt "Elementor widget name"
msgid "YITH Wishlist"
msgstr "Lista de deseos"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:87
#, fuzzy
msgctxt "Elementor section title"
msgid "Product"
msgstr "¡Producto agregado!"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:107
msgctxt "Elementor section title"
msgid "Labels"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:157
msgctxt "Elementor section title"
msgid "Advanced"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:87
#, fuzzy
msgctxt "Elementor section title"
msgid "Wishlist"
msgstr "Lista de deseos"

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:107
msgctxt "Elementor section title"
msgid "Pagination"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:95
#, fuzzy
msgctxt "Elementor control label"
msgid "Product ID"
msgstr "¡Producto agregado!"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:115
msgctxt "Elementor control label"
msgid "Button label"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:125
#, fuzzy
msgctxt "Elementor control label"
msgid "\"Browse wishlist\" label"
msgstr "Ir a la Lista de deseos"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:135
#, fuzzy
msgctxt "Elementor control label"
msgid "\"Product already in wishlist\" label"
msgstr "El producto ya está en la Lista"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:145
#, fuzzy
msgctxt "Elementor control label"
msgid "\"Product added to wishlist\" label"
msgstr "El producto ya está en la Lista"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:165
msgctxt "Elementor control label"
msgid "URL of the wishlist page"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:175
msgctxt "Elementor control label"
msgid "Icon for the button"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:185
msgctxt "Elementor control label"
msgid "Additional CSS classes for the button"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:95
#, fuzzy
msgctxt "Elementor control label"
msgid "Wishlist ID"
msgstr "Lista de deseos"

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:115
msgctxt "Elementor control label"
msgid "Paginate items"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:128
msgctxt "yith-woocommerce-wishlist"
msgid "Items per page"
msgstr ""

#~ msgid "My wishlist on "
#~ msgstr "My Lista de deseos en %s"

#~ msgid "YITH WooCommerce Wishlist"
#~ msgstr "Agregar a la Lista de deseos"
PK`x1\�(I{{,languages/yith-woocommerce-wishlist-ru_RU.monu�[������hi��6����*?	Q[b	s�}01@b*�[�* <!]D �"�!: Z
	
"Browse wishlist" text"Product added" textAfter "Add to cart"Error. Unable to remove the product from the wishlist.In StockMy wishlist on %sPin on PinterestProduct successfully removed.Removed wishlist %s.Share on FacebookShare on:SharedTweet on TwitterWishlistsProject-Id-Version: YITH WCWL
Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/yith-woocommerce-wishlist
POT-Creation-Date: 2021-11-11 13:53:53+00:00
PO-Revision-Date: 2020-10-16 14:06+0200
Last-Translator: Valentyn Zubenko <valentyn.zubenko@gmail.com>
Language-Team: Your Inspiration Themes <support@yithemes.com>
Language: ru
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Generator: Poedit 2.4.1
X-Poedit-KeywordsList: __;_e;_x
X-Poedit-Basepath: ..
Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);
X-Poedit-SearchPath-0: .
X-Poedit-SearchPathExcluded-0: plugin-fw
"Добавить в корзину" button textПродукт успешно добавлен в корзинуAfter "Добавить в корзину"Ошибка. Невозможно удалить продукт из избранного.в наличииМои закладки на  %sПоделиться в PinterestПродукт успешно удален из избранногоМои закладки на  %sПоделиться на FacebookПоделиться в:Поделиться в:Поделиться в TwitterМои закладки на  %sPK`x1\��4��,languages/yith-woocommerce-wishlist-pt_PT.ponu�[���# Copyright (C) 2019 YITH WooCommerce Wishlist
# This file is distributed under the same license as the YITH WooCommerce Wishlist package.
msgid ""
msgstr ""
"Project-Id-Version: YITH WooCommerce Wishlist\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/yith-woocommerce-"
"wishlist\n"
"POT-Creation-Date: 2021-11-11 13:53:53+00:00\n"
"PO-Revision-Date: 2020-10-16 14:06+0200\n"
"Last-Translator: YIThemes <support@yithemes.com>\n"
"Language-Team: Your Inspiration Themes <plugins@yithemes.com>\n"
"Language: pt_PT\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 2.4.1\n"
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;_n:1,2;__ngettext:1,2;"
"__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;"
"_nx_noop:4c,1,2\n"
"X-Poedit-Basepath: .\n"
"Plural-Forms: nplurals=2; plural=n!=1;\n"
"X-Poedit-SourceCharset: UTF-8\n"
"X-Poedit-SearchPath-0: ..\n"
"X-Poedit-SearchPathExcluded-0: ../plugin-fw\n"

#: includes/class-yith-wcwl-admin.php:126
#, fuzzy
msgid "Wishlist Page"
msgstr "Lista de Desejos"

#: includes/class-yith-wcwl-admin.php:148
msgid "General settings"
msgstr ""

#: includes/class-yith-wcwl-admin.php:149
msgid "Add to wishlist options"
msgstr ""

#: includes/class-yith-wcwl-admin.php:150
msgid "Wishlist page options"
msgstr ""

#: includes/class-yith-wcwl-admin.php:151
msgid "Premium Version"
msgstr ""

#: includes/class-yith-wcwl-admin.php:249
#: includes/class-yith-wcwl-install.php:342
msgid "Wishlist"
msgstr "Lista de Desejos"

#: includes/class-yith-wcwl-admin.php:251
msgid ""
"Allows your customers to create and share lists of products that they want "
"to purchase on your e-commerce."
msgstr ""

#: includes/class-yith-wcwl-ajax-handler.php:75
#: templates/add-to-wishlist-remove.php:59
msgid "View &rsaquo;"
msgstr ""

#: includes/class-yith-wcwl-ajax-handler.php:76
#: templates/add-to-wishlist-remove.php:58
msgid "or"
msgstr ""

#: includes/class-yith-wcwl-ajax-handler.php:77
msgid "Close"
msgstr ""

#: includes/class-yith-wcwl-ajax-handler.php:155
#: includes/class-yith-wcwl-ajax-handler.php:195
msgid "Product successfully removed."
msgstr "Produto removido com sucesso."

#: includes/class-yith-wcwl-form-handler.php:156
msgid "Please, make sure to enter a valid title"
msgstr ""

#: includes/class-yith-wcwl-frontend.php:461
msgid ""
"We are sorry, but this feature is available only if cookies on your browser "
"are enabled."
msgstr ""

#: includes/class-yith-wcwl-frontend.php:462
msgid "Product added to cart successfully"
msgstr ""

#: includes/class-yith-wcwl-frontend.php:725
#: includes/class-yith-wcwl-shortcode.php:239
#: plugin-options/wishlist_page-options.php:240
#: templates/wishlist-view-footer-mobile.php:46
#: templates/wishlist-view-footer.php:46
msgid "Add to cart"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:52
msgid "While you visit our site, we’ll track:"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:54
msgid ""
"Products you’ve added to the wishlist: we’ll use this to show you and other "
"users your favourite products, and to create targeted email campaigns."
msgstr ""

#: includes/class-yith-wcwl-privacy.php:55
msgid ""
"Wishlists you’ve created: we’ll keep track of the wishlists you create, and "
"make them visible to the store staff"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:57
msgid ""
"We’ll also use cookies to keep track of wishlist contents while you’re "
"browsing our site."
msgstr ""

#: includes/class-yith-wcwl-privacy.php:60
msgid ""
"Members of our team have access to the information you provide us with. For "
"example, both Administrators and Shop Managers can access:"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:62
msgid ""
"Wishlist details, such as products added, date of addition, name and privacy "
"settings of your wishlists"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:64
msgid ""
"Our team members have access to this information to offer you better deals "
"for the products you love."
msgstr ""

#: includes/class-yith-wcwl-privacy.php:84
#: includes/class-yith-wcwl-privacy.php:100
msgid "Customer wishlists"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:137 plugin-options/lists-options.php:25
#: plugin-options/lists-options.php:32
msgid "Wishlists"
msgstr "Lista de Desejos"

#. Translators: %s Order number.
#: includes/class-yith-wcwl-privacy.php:199
msgid "Removed wishlist %s."
msgstr "Minha lista de desejos em %s"

#. Translators: %s Order number.
#: includes/class-yith-wcwl-privacy.php:203
msgid "Wishlist %s has been retained."
msgstr "Texto da tabela de desejos"

#: includes/class-yith-wcwl-privacy.php:227
msgid "Token"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:228
msgid "Wishlist URL"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:229
msgid "Title"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:231
msgid "Visibility"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:232
msgid "Items added"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:58
msgid ""
"ID of the product to add to the wishlist (leave empty to use the global "
"product)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:63
msgid "URL of the wishlist page (leave empty to use the default settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:68
msgid "Button label (leave empty to use the default settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:73
msgid "\"Browse wishlist\" label (leave empty to use the default settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:78
msgid ""
"\"Product already in wishlist\" label (leave empty to use the default "
"settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:83
msgid ""
"\"Product added to wishlist\" label (leave empty to use the default settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:88
msgid ""
"Icon for the button (use any FontAwesome valid class, or leave empty to use "
"the default settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:93
msgid ""
"Additional CSS classes for the button (leave empty to use the default "
"settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:107
msgid "Choose whether to paginate items in the wishlist or show them all"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:110
#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:118
msgid "Paginate"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:111
#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:119
msgid "Do not paginate"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:116
msgid "Number of items to show per page"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:121
msgid "ID of the wishlist to show (e.g. K6EOWXB888ZD)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:414
msgid "Share on:"
msgstr "Partilhar no:"

#: includes/class-yith-wcwl-shortcode.php:438
#: plugin-options/wishlist_page-options.php:138
msgid "Share on Facebook"
msgstr "Partilhar no Facebook"

#: includes/class-yith-wcwl-shortcode.php:455
#: plugin-options/wishlist_page-options.php:147
msgid "Tweet on Twitter"
msgstr "Tweetar no Twitter"

#: includes/class-yith-wcwl-shortcode.php:473
#: plugin-options/wishlist_page-options.php:156
msgid "Pin on Pinterest"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:487
msgid "Share via email"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:510
#: plugin-options/wishlist_page-options.php:174
msgid "Share on WhatsApp"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:621
msgid "Remove from list"
msgstr ""

#: includes/class-yith-wcwl-wishlist-item.php:189
msgid "Free!"
msgstr ""

#: includes/class-yith-wcwl.php:164
msgid "The item cannot be added to this wishlist"
msgstr ""

#: includes/class-yith-wcwl.php:168 includes/class-yith-wcwl.php:174
msgid "An error occurred while adding the products to the wishlist."
msgstr ""

#: includes/class-yith-wcwl.php:235 includes/class-yith-wcwl.php:241
msgid "Error. Unable to remove the product from the wishlist."
msgstr "Erro. Não foi possível remover o produto da lista de desejos."

#: includes/data-stores/class-yith-wcwl-wishlist-data-store.php:152
#: includes/data-stores/class-yith-wcwl-wishlist-data-store.php:174
msgid "Invalid wishlist."
msgstr ""

#: includes/data-stores/class-yith-wcwl-wishlist-item-data-store.php:119
msgid "Invalid wishlist item."
msgstr ""

#. translators: 1. Number of users.
#: includes/functions-yith-wcwl.php:249
msgid "%d user"
msgid_plural "%d users"
msgstr[0] ""
msgstr[1] ""

#: includes/functions-yith-wcwl.php:250
msgid "has this item in wishlist"
msgid_plural "have this item in wishlist"
msgstr[0] ""
msgstr[1] ""

#: includes/functions-yith-wcwl.php:252
msgid "You're the first"
msgstr ""

#: includes/functions-yith-wcwl.php:253
msgid "to add this item in wishlist"
msgstr ""

#. translators: 1. Count of users when many, or "another" when only one.
#: includes/functions-yith-wcwl.php:257
msgid "You and %s user"
msgid_plural "You and %d users"
msgstr[0] ""
msgstr[1] ""

#: includes/functions-yith-wcwl.php:257
msgid "another"
msgstr ""

#: includes/functions-yith-wcwl.php:258
msgid "have this item in wishlist"
msgstr ""

#: includes/functions-yith-wcwl.php:425
msgid "None"
msgstr ""

#: includes/functions-yith-wcwl.php:426
#, fuzzy
msgid "Custom"
msgstr "CSS Customizado"

#: includes/functions-yith-wcwl.php:447
msgid "Shared"
msgstr "Partilhar no:"

#: includes/functions-yith-wcwl.php:451
msgid "Only people with a link to this list can see it"
msgstr ""

#: includes/functions-yith-wcwl.php:457
msgid "Private"
msgstr ""

#: includes/functions-yith-wcwl.php:461
msgid "Only you can see this list"
msgstr ""

#: includes/functions-yith-wcwl.php:467
msgid "Public"
msgstr ""

#: includes/functions-yith-wcwl.php:471
msgid "Anyone can search for and see this list"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:118
#: plugin-options/add_to_wishlist-options.php:127
msgid "Add to wishlist"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:128
#: plugin-options/add_to_wishlist-options.php:143
msgid "Browse wishlist"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:138
#, fuzzy
msgid "Product already in wishlist"
msgstr "Produto já na lista de desejos."

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:148
#, fuzzy
msgid "Product added to wishlist"
msgstr "Produto já na lista de desejos."

#: init.php:160
msgid "is enabled but not effective. It requires WooCommerce to work."
msgstr ""

#: init.php:176
msgid "You can't activate the free version of"
msgstr ""

#: init.php:176
msgid "while you are using the premium one."
msgstr ""

#: plugin-options/add_to_wishlist-options.php:20
#: plugin-options/settings-options.php:27
msgid "General Settings"
msgstr "Opções gerais"

#: plugin-options/add_to_wishlist-options.php:27
msgid "After product is added to wishlist"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:28
msgid ""
"Choose the look of the Wishlist button when the product has already been "
"added to a wishlist"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:32
#, fuzzy
msgid "Show \"Add to wishlist\" button"
msgstr "Produto já na lista de desejos."

#: plugin-options/add_to_wishlist-options.php:33
msgid "Show \"View wishlist\" link"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:34
msgid "Show \"Remove from list\" link"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:48
msgid "Loop settings"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:50
msgid ""
"Loop options will be visible on Shop page, category pages, product "
"shortcodes, products sliders, and all the other places where the WooCommerce "
"products' loop is used"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:55
msgid "Show \"Add to wishlist\" in loop"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:56
msgid "Enable the \"Add to wishlist\" feature in WooCommerce products' loop"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:64
msgid "Position of \"Add to wishlist\" in loop"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:65
msgid ""
"Choose where to show \"Add to wishlist\" button or link in WooCommerce "
"products' loop. <span class=\"addon\">Copy this shortcode <span class=\"code"
"\"><code>[yith_wcwl_add_to_wishlist]</code></span> and paste it where you "
"want to show the \"Add to wishlist\" link or button</span>"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:72
msgid "On top of the image"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:73
msgid "Before \"Add to cart\" button"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:74
msgid "After \"Add to cart\" button"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:75
#: plugin-options/add_to_wishlist-options.php:107
msgid "Use shortcode"
msgstr "Usar shortcode"

#: plugin-options/add_to_wishlist-options.php:89
msgid "Product page settings"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:96
msgid "Position of \"Add to wishlist\" on product page"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:97
msgid ""
"Choose where to show \"Add to wishlist\" button or link on the product page. "
"<span class=\"addon\">Copy this shortcode <span class=\"code"
"\"><code>[yith_wcwl_add_to_wishlist]</code></span> and paste it where you "
"want to show the \"Add to wishlist\" link or button</span>"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:104
msgid "After \"Add to cart\""
msgstr "Após \" Adicionar ao carrinho \""

#: plugin-options/add_to_wishlist-options.php:105
msgid "After thumbnails"
msgstr "Após miniaturas"

#: plugin-options/add_to_wishlist-options.php:106
msgid "After summary"
msgstr "Após sumário"

#: plugin-options/add_to_wishlist-options.php:117
#: plugin-options/wishlist_page-options.php:222
msgid "Text customization"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:124
msgid "\"Add to wishlist\" text"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:125
msgid "Enter a text for \"Add to wishlist\" button"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:132
msgid "\"Product added\" text"
msgstr "Produto adicionado!"

#: plugin-options/add_to_wishlist-options.php:133
msgid ""
"Enter the text of the message displayed when the user adds a product to the "
"wishlist"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:135
msgid "Product added!"
msgstr "Produto adicionado!"

#: plugin-options/add_to_wishlist-options.php:140
msgid "\"Browse wishlist\" text"
msgstr "Veja sua lista de desejos!"

#: plugin-options/add_to_wishlist-options.php:141
msgid "Enter a text for the \"Browse wishlist\" link on the product page"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:148
msgid "\"Product already in wishlist\" text"
msgstr "Produto já na lista de desejos."

#: plugin-options/add_to_wishlist-options.php:149
msgid ""
"Enter the text for the message displayed when the user views a product that "
"is already in the wishlist"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:151
msgid "The product is already in your wishlist!"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:161
msgid "Style & Color customization"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:168
msgid "Style of \"Add to wishlist\""
msgstr ""

#: plugin-options/add_to_wishlist-options.php:169
msgid ""
"Choose if you want to show a textual \"Add to wishlist\" link or a button"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:172
#: plugin-options/wishlist_page-options.php:261
msgid "Textual (anchor)"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:173
#: plugin-options/wishlist_page-options.php:262
msgid "Button with theme style"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:174
#: plugin-options/wishlist_page-options.php:263
msgid "Button with custom style"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:182
msgid "\"Add to wishlist\" button style"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:188
msgid "Choose colors for the \"Add to wishlist\" button"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:190
#: plugin-options/wishlist_page-options.php:279
#: plugin-options/wishlist_page-options.php:368
#: plugin-options/wishlist_page-options.php:417
#: plugin-options/wishlist_page-options.php:465
#: plugin-options/wishlist_page-options.php:552
#: plugin-options/wishlist_page-options.php:592
#: plugin-options/wishlist_page-options.php:632
#: plugin-options/wishlist_page-options.php:672
#: plugin-options/wishlist_page-options.php:712
msgid "Background"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:195
#: plugin-options/wishlist_page-options.php:284
#: plugin-options/wishlist_page-options.php:373
#: plugin-options/wishlist_page-options.php:422
#: plugin-options/wishlist_page-options.php:470
#: plugin-options/wishlist_page-options.php:507
msgid "Text"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:200
#: plugin-options/wishlist_page-options.php:289
#: plugin-options/wishlist_page-options.php:378
#: plugin-options/wishlist_page-options.php:427
#: plugin-options/wishlist_page-options.php:475
msgid "Border"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:206
msgid "Choose colors for the \"Add to wishlist\" button on hover state"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:208
#: plugin-options/wishlist_page-options.php:297
#: plugin-options/wishlist_page-options.php:386
#: plugin-options/wishlist_page-options.php:435
msgid "Background Hover"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:213
#: plugin-options/wishlist_page-options.php:302
#: plugin-options/wishlist_page-options.php:391
#: plugin-options/wishlist_page-options.php:440
msgid "Text Hover"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:218
#: plugin-options/wishlist_page-options.php:307
#: plugin-options/wishlist_page-options.php:396
#: plugin-options/wishlist_page-options.php:445
msgid "Border Hover"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:231
#: plugin-options/wishlist_page-options.php:320
msgid "Border radius"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:232
msgid "Choose radius for the \"Add to wishlist\" button"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:246
msgid "\"Add to wishlist\" icon"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:247
msgid "Select an icon for the \"Add to wishlist\" button (optional)"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:257
msgid "\"Add to wishlist\" custom icon"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:258
#: plugin-options/add_to_wishlist-options.php:282
msgid ""
"Upload an icon you'd like to use for \"Add to wishlist\" button (suggested "
"32px x 32px)"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:270
msgid "\"Added to wishlist\" icon"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:271
msgid "Select an icon for the \"Added to wishlist\" button (optional)"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:277
msgid "Same used for Add to wishlist"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:281
msgid "\"Added to wishlist\" custom icon"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:294
msgid "Custom CSS"
msgstr "CSS Customizado"

#: plugin-options/add_to_wishlist-options.php:295
msgid "Enter custom CSS to be applied to Wishlist elements (optional)"
msgstr ""

#: plugin-options/lists-options.php:34
msgid "Search list"
msgstr ""

#. translators: 1. Anchor to Frequently Bought Together landing page on
#. yithemes.com.
#: plugin-options/settings-options.php:19
msgid ""
"If you want to take advantage of this feature, you could consider purchasing "
"the %s."
msgstr ""

#: plugin-options/settings-options.php:34
msgid "Enable AJAX loading"
msgstr ""

#: plugin-options/settings-options.php:35
msgid "Load any cacheable wishlist item via AJAX"
msgstr ""

#: plugin-options/settings-options.php:48
msgid "YITH WooCommerce Frequently Bought Together Integration"
msgstr ""

#. translators: 1. Url to Frequently Bought Together landing page on
#. yithemes.com.
#: plugin-options/settings-options.php:51
msgid ""
"In order to use this integration you have to install and activate YITH "
"WooCommerce Frequently Bought Together. <a href=\"%s\">Learn more</a>"
msgstr ""

#: plugin-options/settings-options.php:56
msgid "Enable slider in wishlist"
msgstr ""

#. translators: 1. Example image of the integration. 2. CTA to buy Frequently
#. Bought Together.
#: plugin-options/settings-options.php:58
msgid ""
"Enable the slider with linked products on the Wishlist page (<a href=\"%1$s"
"\" class=\"thickbox\">Example</a>). %2$s"
msgstr ""

#: plugin-options/wishlist_page-options.php:19
msgid "All your wishlists"
msgstr ""

#: plugin-options/wishlist_page-options.php:26
msgid "Wishlist page"
msgstr ""

#: plugin-options/wishlist_page-options.php:27
msgid ""
"Pick a page as the main Wishlist page; make sure you add the <span class="
"\"code\"><code>[yith_wcwl_wishlist]</code></span> shortcode into the page "
"content"
msgstr ""

#: plugin-options/wishlist_page-options.php:40
msgid "Wishlist Detail Page"
msgstr ""

#: plugin-options/wishlist_page-options.php:47
#: plugin-options/wishlist_page-options.php:56
#: plugin-options/wishlist_page-options.php:65
#: plugin-options/wishlist_page-options.php:74
#: plugin-options/wishlist_page-options.php:83
#: plugin-options/wishlist_page-options.php:92
#: plugin-options/wishlist_page-options.php:101
msgid "In wishlist table show"
msgstr ""

#: plugin-options/wishlist_page-options.php:48
msgid "Product variations selected by the user (example: size or color)"
msgstr ""

#: plugin-options/wishlist_page-options.php:57
msgid "Product price"
msgstr ""

#: plugin-options/wishlist_page-options.php:66
msgid "Product stock (show if the product is available or not)"
msgstr ""

#: plugin-options/wishlist_page-options.php:75
msgid "Date on which the product was added to the wishlist"
msgstr ""

#: plugin-options/wishlist_page-options.php:84
msgid "Add to cart option for each product"
msgstr ""

#: plugin-options/wishlist_page-options.php:93
msgid ""
"Icon to remove the product from the wishlist - to the left of the product"
msgstr ""

#: plugin-options/wishlist_page-options.php:102
msgid ""
"Button to remove the product from the wishlist - to the right of the product"
msgstr ""

#: plugin-options/wishlist_page-options.php:110
msgid "Redirect to cart"
msgstr "Redirecionar para o carrinho"

#: plugin-options/wishlist_page-options.php:111
msgid ""
"Redirect users to the cart page when they add a product to the cart from the "
"wishlist page"
msgstr ""

#: plugin-options/wishlist_page-options.php:119
msgid "Remove if added to the cart"
msgstr "Remover se adcionado ao carrinho"

#: plugin-options/wishlist_page-options.php:120
msgid ""
"Remove the product from the wishlist after it has been added to the cart"
msgstr ""

#: plugin-options/wishlist_page-options.php:128
msgid "Share wishlist"
msgstr ""

#: plugin-options/wishlist_page-options.php:129
msgid "Enable this option to let users share their wishlist on social media"
msgstr ""

#: plugin-options/wishlist_page-options.php:137
#: plugin-options/wishlist_page-options.php:146
#: plugin-options/wishlist_page-options.php:155
#: plugin-options/wishlist_page-options.php:164
#: plugin-options/wishlist_page-options.php:173
msgid "Share on social media"
msgstr ""

#: plugin-options/wishlist_page-options.php:165
msgid "Share by email"
msgstr ""

#: plugin-options/wishlist_page-options.php:182
msgid "Share by URL"
msgstr ""

#: plugin-options/wishlist_page-options.php:183
msgid "Show \"Share URL\" field on wishlist page"
msgstr ""

#: plugin-options/wishlist_page-options.php:191
msgid "Sharing title"
msgstr ""

#: plugin-options/wishlist_page-options.php:192
msgid "Wishlist title used for sharing (only used on Twitter and Pinterest)"
msgstr ""

#. translators: 1. Blog name.
#: plugin-options/wishlist_page-options.php:195
msgid "My wishlist on %s"
msgstr "Minha lista de desejos em %s"

#: plugin-options/wishlist_page-options.php:200
msgid "Social text"
msgstr "Texto Redes Sociais"

#: plugin-options/wishlist_page-options.php:201
msgid ""
"Type the message you want to publish when you share your wishlist on Twitter "
"and Pinterest"
msgstr ""

#: plugin-options/wishlist_page-options.php:209
msgid "Social image URL"
msgstr "Url para partilhar"

#: plugin-options/wishlist_page-options.php:210
msgid "It will be used to pin the wishlist on Pinterest."
msgstr ""

#: plugin-options/wishlist_page-options.php:229
msgid "Default wishlist name"
msgstr ""

#: plugin-options/wishlist_page-options.php:230
msgid ""
"Enter a name for the default wishlist. This is the wishlist that will be "
"automatically generated for all users if they do not create any custom one"
msgstr ""

#: plugin-options/wishlist_page-options.php:232
#, fuzzy
msgid "My wishlist"
msgstr "Minha lista de desejos em %s"

#: plugin-options/wishlist_page-options.php:237
msgid "\"Add to cart\" text"
msgstr ""

#: plugin-options/wishlist_page-options.php:238
msgid "Enter a text for the \"Add to cart\" button"
msgstr ""

#: plugin-options/wishlist_page-options.php:250
msgid "Style & color customization"
msgstr ""

#: plugin-options/wishlist_page-options.php:257
msgid "Style of \"Add to cart\""
msgstr ""

#: plugin-options/wishlist_page-options.php:258
msgid "Choose whether to show a textual \"Add to cart\" link or a button"
msgstr ""

#: plugin-options/wishlist_page-options.php:271
msgid "\"Add to cart\" button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:277
msgid "Choose the colors for the \"Add to cart\" button"
msgstr ""

#: plugin-options/wishlist_page-options.php:295
msgid "Choose colors for the \"Add to cart\" button on hover state"
msgstr ""

#: plugin-options/wishlist_page-options.php:321
msgid "Set the radius for the \"Add to cart\" button"
msgstr ""

#: plugin-options/wishlist_page-options.php:335
msgid "\"Add to cart\" icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:336
msgid "Select an icon for the \"Add to cart\" button (optional)"
msgstr ""

#: plugin-options/wishlist_page-options.php:351
msgid "\"Add to cart\" custom icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:352
msgid ""
"Upload an icon you'd like to use for the \"Add to cart\" button (suggested "
"32px x 32px)"
msgstr ""

#: plugin-options/wishlist_page-options.php:360
msgid "Primary button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:366
msgid ""
"Choose colors for the primary button<br/><small>This style will be applied "
"to \"Edit title\" button on Wishlist view, \"Submit Changes\" button on "
"Manage view and \"Search wishlist\" button on Search view</small>"
msgstr ""

#: plugin-options/wishlist_page-options.php:384
msgid ""
"Choose colors for the primary button on hover state<br/><small>This style "
"will be applied to \"Edit title\" button on Wishlist view, \"Submit Changes"
"\" button on Manage view and \"Search wishlist\" button on Search view</"
"small>"
msgstr ""

#: plugin-options/wishlist_page-options.php:409
msgid "Secondary button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:415
#: plugin-options/wishlist_page-options.php:433
msgid ""
"Choose colors of the secondary button<br/><small>This style will be applied "
"to the buttons that allow showing and hiding the Edit title form on Wishlist "
"view and \"Create new Wishlist\" button on Manage view</small>"
msgstr ""

#: plugin-options/wishlist_page-options.php:458
msgid "Wishlist table style"
msgstr ""

#: plugin-options/wishlist_page-options.php:459
msgid ""
"Choose the colors for the wishlist table (when set to \"Traditional\" layout)"
msgstr ""

#: plugin-options/wishlist_page-options.php:487
msgid "Highlight color"
msgstr ""

#: plugin-options/wishlist_page-options.php:488
msgid ""
"Choose the color for all sections with background<br/><small>This color will "
"be used as background for the wishlist table heading and footer (when set to "
"\"Traditional\" layout), and for various form across wishlist views</small>"
msgstr ""

#: plugin-options/wishlist_page-options.php:500
msgid "Share button text color"
msgstr ""

#: plugin-options/wishlist_page-options.php:501
msgid "Choose colors for share buttons text"
msgstr ""

#: plugin-options/wishlist_page-options.php:512
msgid "Text hover"
msgstr ""

#: plugin-options/wishlist_page-options.php:525
msgid "Facebook share button icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:526
msgid "Select an icon for the Facebook share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:536
msgid "Facebook share button custom icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:537
msgid ""
"Upload an icon you'd like to use for Facebook share button (suggested 32px x "
"32px)"
msgstr ""

#: plugin-options/wishlist_page-options.php:545
msgid "Facebook share button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:546
msgid "Choose colors for Facebook share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:557
#: plugin-options/wishlist_page-options.php:597
#: plugin-options/wishlist_page-options.php:637
#: plugin-options/wishlist_page-options.php:677
#: plugin-options/wishlist_page-options.php:717
msgid "Background hover"
msgstr ""

#: plugin-options/wishlist_page-options.php:565
msgid "Twitter share button icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:566
msgid "Select an icon for the Twitter share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:576
msgid "Twitter share button custom icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:577
msgid ""
"Upload an icon you'd like to use for Twitter share button (suggested 32px x "
"32px)"
msgstr ""

#: plugin-options/wishlist_page-options.php:585
msgid "Twitter share button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:586
msgid "Choose colors for Twitter share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:605
msgid "Pinterest share button icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:606
msgid "Select an icon for the Pinterest share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:616
msgid "Pinterest share button custom icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:617
msgid ""
"Upload an icon you'd like to use for Pinterest share button (suggested 32px "
"x 32px)"
msgstr ""

#: plugin-options/wishlist_page-options.php:625
msgid "Pinterest share button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:626
msgid "Choose colors for Pinterest share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:645
msgid "Email share button icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:646
msgid "Select an icon for the Email share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:656
msgid "Email share button custom icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:657
msgid ""
"Upload an icon you'd like to use for the Email share button (suggested 32px "
"x 32px)"
msgstr ""

#: plugin-options/wishlist_page-options.php:665
msgid "Email share button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:666
msgid "Choose colors for the Email share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:685
msgid "WhatsApp share button icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:686
msgid "Select an icon for the WhatsApp share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:696
msgid "WhatsApp share button custom icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:697
msgid ""
"Upload an icon you'd like to use for WhatsApp share button (suggested 32px x "
"32px)"
msgstr ""

#: plugin-options/wishlist_page-options.php:705
msgid "WhatsApp share button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:706
msgid "Choose colors for WhatsApp share button"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:168
#: templates/admin/wishlist-panel-premium.php:309
msgid ""
"Upgrade to the %1$spremium version%2$s%3$sof %1$sYITH WooCommerce Wishlist"
"%2$s to benefit from all features!"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:170
#: templates/admin/wishlist-panel-premium.php:311
msgid "Upgrade"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:176
msgid "Premium Features"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:180
msgid "Allow your customers to create multiple wishlists"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:182
msgid ""
"Christmas, Birthday... users will be able to create and manage multiple "
"wishlists, in case they prefer to keep the products sorted by category or "
"other parameters."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:185
msgid "Multiple Wishlist"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:192
msgid "Wishlist Private"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:196
msgid "A transparent privacy management"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:198
msgid ""
"Your customers can set a privacy option for each wishlist and choose whether "
"sharing the wishlist or making it private."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:206
msgid ""
"Allow your customers to ask for an estimate, directly from their wishlist "
"page"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:208
msgid ""
"And give only registered users the privilege to use the wishlist "
"functionalities."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:211
msgid "Estimate Cost"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:218
msgid "Admin Panel"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:222
msgid "An advanced and more versatile management of the wishlist"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:224
msgid ""
"Your customers can sort the products in the wishlist thanks to the drag&drop "
"option, move products from one wishlist to another, manage product quantity, "
"download the wishlist content to a .pdf file, share the wishlist on their "
"social networks, and much more!"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:232
msgid "Monitor your customers’ wishlists and the popular products"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:234
msgid ""
"You can see your customers’ wishlists, gain insight into the products they "
"are more interested in and plan targeted marketing strategies."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:237
msgid "Search Wishlists"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:244
msgid "'ADD TO CART'"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:248
msgid ""
"Send promotional emails for products in wishlists to push customers to buy"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:250
msgid ""
"Just three clicks to send promotional emails with discount coupons to "
"customers who have added specific products to their wishlist and push them "
"to buy."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:258
msgid "Let users buy the product right from the wishlist page"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:260
msgid ""
"Let them move products from one wishlist to the cart in one click, keeping "
"also the information about the size, colour or quantity selected when added "
"to the wishlist."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:263
msgid "DISABLE WISHLIST"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:271
msgid "Choose a charming layout for your wishlist page"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:273
msgid ""
"The wishlist is one of the most used functionalities in an ecommerce store "
"but often the page layout is not enhanced enough and looks unattractive to "
"the user. With our plugin, you can choose among some alternative layouts and "
"offer an even more interesting experience to users who creates a wishlist on "
"your website."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:276
msgid "UNLOGGED USERS"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:284
msgid "Wishlist widgets for the header and sidebars"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:286
msgid ""
"Increase the wishlist visibility through our modern widgets that you can use "
"in the header, in the sidebars, wherever you want."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:289
msgid "POPULAR TABLE"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:296
msgid "FUNCTIONALITIES"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:300
msgid "Allow users to monitor the price of the products in their wishlist"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:302
msgid ""
"We took inspiration from one of the most interesting features of Amazon "
"product pages: from now on, users can realise what’s the best time to buy a "
"product and how much they can save when there’s a promotion running or a "
"discount on the product they’ve added to the wishlist."
msgstr ""

#: templates/share.php:51 templates/share.php:52
msgid "Facebook"
msgstr "Facebook"

#: templates/share.php:59 templates/share.php:60
msgid "Twitter"
msgstr "Twitter"

#: templates/share.php:67 templates/share.php:68
msgid "Pinterest"
msgstr ""

#: templates/share.php:75 templates/share.php:76
msgid "Email"
msgstr ""

#: templates/share.php:83
msgid "WhatsApp"
msgstr ""

#: templates/share.php:84
msgid "Whatsapp"
msgstr ""

#: templates/share.php:93
msgid "(Now"
msgstr ""

#: templates/share.php:93
msgid "copy"
msgstr ""

#: templates/share.php:93
msgid "this wishlist link and share it anywhere)"
msgstr ""

#: templates/wishlist-view-footer-mobile.php:44
#: templates/wishlist-view-footer.php:44
msgid "Apply this action to all the selected items:"
msgstr ""

#: templates/wishlist-view-footer-mobile.php:49
#: templates/wishlist-view-footer.php:49
msgid "Remove from wishlist"
msgstr ""

#. translators: 1. Wishlist formatted name.
#: templates/wishlist-view-footer-mobile.php:67
#: templates/wishlist-view-footer.php:67
msgid "Move to %s"
msgstr ""

#: templates/wishlist-view-footer-mobile.php:73
#: templates/wishlist-view-footer.php:73
msgid "Apply"
msgstr ""

#: templates/wishlist-view-footer-mobile.php:81
#: templates/wishlist-view-footer.php:81
msgid "Update"
msgstr ""

#: templates/wishlist-view-footer-mobile.php:87
#: templates/wishlist-view-footer.php:103
msgid "Add all to cart"
msgstr ""

#: templates/wishlist-view-header.php:48
msgid "Edit title"
msgstr "Titulo da lista de desejos"

#: templates/wishlist-view-mobile.php:136
msgid "Added on:"
msgstr ""

#: templates/wishlist-view-mobile.php:147
msgid "Price:"
msgstr ""

#: templates/wishlist-view-mobile.php:174
msgid "Quantity:"
msgstr ""

#: templates/wishlist-view-mobile.php:189
msgid "Stock:"
msgstr ""

#: templates/wishlist-view-mobile.php:192 templates/wishlist-view.php:229
msgid "Out of stock"
msgstr ""

#: templates/wishlist-view-mobile.php:192 templates/wishlist-view.php:229
msgid "In Stock"
msgstr "Em stock"

#: templates/wishlist-view-mobile.php:212 templates/wishlist-view.php:262
msgid "Move"
msgstr ""

#: templates/wishlist-view-mobile.php:233 templates/wishlist-view.php:283
msgid "Move to another list &rsaquo;"
msgstr ""

#: templates/wishlist-view-mobile.php:241 templates/wishlist-view.php:157
#: templates/wishlist-view.php:293
msgid "Remove this product"
msgstr "Remover este produto"

#: templates/wishlist-view-mobile.php:252 templates/wishlist-view.php:313
msgid "No products added to the wishlist"
msgstr ""

#: templates/wishlist-view.php:79
msgid "Product name"
msgstr ""

#: templates/wishlist-view.php:87
msgid "Unit price"
msgstr ""

#: templates/wishlist-view.php:96
msgid "Quantity"
msgstr ""

#: templates/wishlist-view.php:105
msgid "Stock status"
msgstr ""

#: templates/wishlist-view.php:123
msgid "Arrange"
msgstr ""

#. translators: date added label: 1 date added.
#: templates/wishlist-view.php:243
msgid "Added on: %s"
msgstr ""

#: templates/wishlist-view.php:293
msgid "Remove"
msgstr ""

#. Description of the plugin/theme
msgid ""
"<code><strong>YITH WooCommerce Wishlist</strong></code> gives your users the "
"possibility to create, fill, manage and share their wishlists allowing you "
"to analyze their interests and needs to improve your marketing strategies. "
"<a href=\"https://yithemes.com/\" target=\"_blank\">Get more plugins for "
"your e-commerce on <strong>YITH</strong></a>"
msgstr ""

#: includes/class-yith-wcwl-admin.php:261
msgctxt "[HELP TAB] Video title"
msgid ""
"Check this video to learn how to <b>configure wishlist and customize options:"
"</b>"
msgstr ""

#: includes/class-yith-wcwl-install.php:340
msgctxt "page_slug"
msgid "wishlist"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:230
msgctxt "date when wishlist was created"
msgid "Created on"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:52
msgctxt "[gutenberg]: block name"
msgid "YITH Add to wishlist"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:101
msgctxt "[gutenberg]: block name"
msgid "YITH Wishlist"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:53
msgctxt "[gutenberg]: block description"
msgid "Shows Add to wishlist button"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:102
msgctxt "[gutenberg]: block description"
msgid "Shows a list of products in wishlist"
msgstr ""

#. translators: 1. % of reduction/increase in price.
#: includes/class-yith-wcwl-wishlist-item.php:428
msgctxt ""
"Part of the template that shows price variation since addition to list; "
"placeholder will be replaced with a percentage"
msgid "Price is %1$s%%"
msgstr ""

#. translators: 2: original product price.
#: includes/class-yith-wcwl-wishlist-item.php:430
msgctxt ""
"Part of the template that shows price variation since addition to list; "
"placeholder will be replaced with a price"
msgid "(Was %2$s when added  in list)"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:45
msgctxt "Elementor widget name"
msgid "YITH Wishlist Add button"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:45
#, fuzzy
msgctxt "Elementor widget name"
msgid "YITH Wishlist"
msgstr "Lista de Desejos"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:87
#, fuzzy
msgctxt "Elementor section title"
msgid "Product"
msgstr "Produto adicionado!"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:107
msgctxt "Elementor section title"
msgid "Labels"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:157
msgctxt "Elementor section title"
msgid "Advanced"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:87
#, fuzzy
msgctxt "Elementor section title"
msgid "Wishlist"
msgstr "Lista de Desejos"

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:107
msgctxt "Elementor section title"
msgid "Pagination"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:95
#, fuzzy
msgctxt "Elementor control label"
msgid "Product ID"
msgstr "Produto adicionado!"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:115
msgctxt "Elementor control label"
msgid "Button label"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:125
#, fuzzy
msgctxt "Elementor control label"
msgid "\"Browse wishlist\" label"
msgstr "Veja sua lista de desejos!"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:135
#, fuzzy
msgctxt "Elementor control label"
msgid "\"Product already in wishlist\" label"
msgstr "Produto já na lista de desejos."

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:145
#, fuzzy
msgctxt "Elementor control label"
msgid "\"Product added to wishlist\" label"
msgstr "Produto já na lista de desejos."

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:165
msgctxt "Elementor control label"
msgid "URL of the wishlist page"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:175
msgctxt "Elementor control label"
msgid "Icon for the button"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:185
msgctxt "Elementor control label"
msgid "Additional CSS classes for the button"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:95
#, fuzzy
msgctxt "Elementor control label"
msgid "Wishlist ID"
msgstr "Lista de Desejos"

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:115
msgctxt "Elementor control label"
msgid "Paginate items"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:128
msgctxt "yith-woocommerce-wishlist"
msgid "Items per page"
msgstr ""

#~ msgid "My wishlist on "
#~ msgstr "Minha lista de desejos em %s"

#~ msgid "YITH WooCommerce Wishlist"
#~ msgstr "Adicionar aos meus desejos"
PK`x1\���mumu,languages/yith-woocommerce-wishlist-es_ES.monu�[�������Q� !<Vi|����A bKy�M�"(K\aq#}��	��O�0D
_m~j�<�'9a,g�
������
�6LN��'�(�&'D$l9�.�=�(8�a�?G.V��.iK�\�A Q!AW"?�"
�"�"3�"+#A#
Q#\#b#�#�#�#�#B�#D#$�h$)�$)&%?P%>�%f�%T6&6�&�&!�&�&'$'*';'L'P\'.�'a�'I>(T�(�(��(q)�)�)1�)�))�)�*
�*��*U+Z+x+!�+ �+�+/�+,e,,�,�,��,A-	R-"\--�-(�-%�--.5.E.L.a."i.�.�.�.
�.7�./@"/�c/�/0	
00Z%0�0�0�0�0H�01&1;1Y16p1:�1<�1)2,I2-v2+�2,�2+�2)3A3N3]3o3�3	�3�3�3�3
�3�3�3'494S4d4p4}4�4�4�4�4�4
�4�4
55)-5(W5�5�5�5�5 �5�5�5Z�5BV6
�6�6U�6R7ST7Q�7R�7UM8S�8
�8
9
9X9]w9�9!�9::7:(@:i:r:�:�:g�:
;);?;DT;	�;t�;7< P<q<�<4�<�<�<)�<=!=(8@-a@�@�@2�@7�@)7A&aA8�A*�Ai�A2VBj�B�BnC7�C�C�C�C�C0D2D(ODxD�DY�D �D'E8EMEhEd�EN�E(7F`F:hF�F�F�F�F'�FGG8G%HGJnGR�GH,H;GH9�H:�H<�H=5IFsIA�IP�IGMJ�J�KZ�L>M MM3nNe�NjO<sO/�PH�QH)RrR�R=�R(�R
SS!SE'S,mS8�S�S*�SgT_|T��TB~U8�Ue�UZ`Vo�Va+WB�W�W9�W+X,?X	lXvX�X�X\�X5Y}<YS�YXZgZ|pZ)�Z([@[7\[�[?�[��[�\��\q]w]�]1�]+�]!
^1,^^^�}^�^_�_�_	�_;�_",`.O`=~`6�`H�`<aMaUaoa'wa�a�a�a�aE�a&@bLgb��blcuc	~c�c��cd&d;dZdNyd�d�d0�d.eDJeN�eO�eI.f=xf?�f<�f>3g8rg'�g�g!�ghh3h
Oh!]hh�h�h1�h)�hFi(\i�i�i�i�i"�i"�i j+2j^jdj�j�j�j7�j-k6k>kDkXk-`k*�k+�ke�k[Kl�l
�lm�lg2mi�mgnhlnc�ns9o�o�o�om�o~Cp�p:�p+q-2q`q6iq�q'�q)�q�q�r�r&�r(�rPs\s}msJ�s)6t`tptUwt+�t�tB�t.>u84����b�Ij�t�p��~.�������v�������-�P�_)( N*&�����q�}3
B�n6H���`�w��U^���S�k��L;\2$����Q>�i������C����s�x/�����,�����F@�|[G��ael��m�J�!y��M����z�9%	�7
��o:�5�����Z�#����dYc=����VXR�1KuE�+���fW<'�rA�gD��T�]���������h"���O�{?0"Add to cart" button style"Add to cart" custom icon"Add to cart" icon"Add to cart" text"Add to wishlist" button style"Add to wishlist" custom icon"Add to wishlist" icon"Add to wishlist" text"Added to wishlist" custom icon"Added to wishlist" icon"Browse wishlist" label (leave empty to use the default settings)"Browse wishlist" text"Product added to wishlist" label (leave empty to use the default settings)"Product added" text"Product already in wishlist" label (leave empty to use the default settings)"Product already in wishlist" text%d user%d users(NowAdd all to cartAdd to cartAdd to cart option for each productAdd to wishlistAdd to wishlist optionsAdded on:Added on: %sAdditional CSS classes for the button (leave empty to use the default settings)After "Add to cart"After "Add to cart" buttonAfter summaryAfter thumbnailsAll your wishlistsAllows your customers to create and share lists of products that they want to purchase on your e-commerce.An error occurred while adding the products to the wishlist.Anyone can search for and see this listApplyApply this action to all the selected items:ArrangeBackgroundBackground HoverBackground hoverBefore "Add to cart" buttonBorderBorder HoverBorder radiusBrowse wishlistButton label (leave empty to use the default settings)Button to remove the product from the wishlist - to the right of the productButton with custom styleButton with theme styleChoose colors for Facebook share buttonChoose colors for Pinterest share buttonChoose colors for Twitter share buttonChoose colors for WhatsApp share buttonChoose colors for share buttons textChoose colors for the "Add to cart" button on hover stateChoose colors for the "Add to wishlist" buttonChoose colors for the "Add to wishlist" button on hover stateChoose colors for the Email share buttonChoose colors for the primary button on hover state<br/><small>This style will be applied to "Edit title" button on Wishlist view, "Submit Changes" button on Manage view and "Search wishlist" button on Search view</small>Choose colors for the primary button<br/><small>This style will be applied to "Edit title" button on Wishlist view, "Submit Changes" button on Manage view and "Search wishlist" button on Search view</small>Choose if you want to show a textual "Add to wishlist" link or a buttonChoose radius for the "Add to wishlist" buttonChoose the color for all sections with background<br/><small>This color will be used as background for the wishlist table heading and footer (when set to "Traditional" layout), and for various form across wishlist views</small>Choose the colors for the "Add to cart" buttonChoose the colors for the wishlist table (when set to "Traditional" layout)Choose the look of the Wishlist button when the product has already been added to a wishlistChoose where to show "Add to wishlist" button or link in WooCommerce products' loop. <span class="addon">Copy this shortcode <span class="code"><code>[yith_wcwl_add_to_wishlist]</code></span> and paste it where you want to show the "Add to wishlist" link or button</span>Choose where to show "Add to wishlist" button or link on the product page. <span class="addon">Copy this shortcode <span class="code"><code>[yith_wcwl_add_to_wishlist]</code></span> and paste it where you want to show the "Add to wishlist" link or button</span>Choose whether to paginate items in the wishlist or show them allChoose whether to show a textual "Add to cart" link or a buttonCustom CSSCustomer wishlistsDate on which the product was added to the wishlistDefault wishlist nameDo not paginateEdit titleEmailEmail share button custom iconEmail share button iconEmail share button styleEnable AJAX loadingEnable slider in wishlistEnable the "Add to wishlist" feature in WooCommerce products' loopEnable this option to let users share their wishlist on social mediaEnter a name for the default wishlist. This is the wishlist that will be automatically generated for all users if they do not create any custom oneEnter a text for "Add to wishlist" buttonEnter a text for the "Add to cart" buttonEnter a text for the "Browse wishlist" link on the product pageEnter custom CSS to be applied to Wishlist elements (optional)Enter the text for the message displayed when the user views a product that is already in the wishlistEnter the text of the message displayed when the user adds a product to the wishlistError. Unable to remove the product from the wishlist.FacebookFacebook share button custom iconFacebook share button iconFacebook share button styleFree!General SettingsGeneral settingsHighlight colorID of the product to add to the wishlist (leave empty to use the global product)ID of the wishlist to show (e.g. K6EOWXB888ZD)Icon for the button (use any FontAwesome valid class, or leave empty to use the default settings)Icon to remove the product from the wishlist - to the left of the productIf you want to take advantage of this feature, you could consider purchasing the %s.In StockIn order to use this integration you have to install and activate YITH WooCommerce Frequently Bought Together. <a href="%s">Learn more</a>In wishlist table showInvalid wishlist item.Invalid wishlist.It will be used to pin the wishlist on Pinterest.Items addedLoad any cacheable wishlist item via AJAXLoop options will be visible on Shop page, category pages, product shortcodes, products sliders, and all the other places where the WooCommerce products' loop is usedLoop settingsMembers of our team have access to the information you provide us with. For example, both Administrators and Shop Managers can access:MoveMove to another list &rsaquo;My wishlist on %sNo products added to the wishlistNumber of items to show per pageOn top of the imageOnly people with a link to this list can see itOnly you can see this listOur team members have access to this information to offer you better deals for the products you love.Out of stockPaginatePick a page as the main Wishlist page; make sure you add the <span class="code"><code>[yith_wcwl_wishlist]</code></span> shortcode into the page contentPin on PinterestPinterestPinterest share button custom iconPinterest share button iconPinterest share button stylePlease, make sure to enter a valid titlePosition of "Add to wishlist" in loopPosition of "Add to wishlist" on product pagePremium VersionPrice:Primary button stylePrivateProduct added to cart successfullyProduct added!Product nameProduct page settingsProduct priceProduct stock (show if the product is available or not)Product successfully removed.Product variations selected by the user (example: size or color)Products you’ve added to the wishlist: we’ll use this to show you and other users your favourite products, and to create targeted email campaigns.PublicQuantityQuantity:Redirect to cartRedirect users to the cart page when they add a product to the cart from the wishlist pageRemoveRemove from listRemove from wishlistRemove if added to the cartRemove the product from the wishlist after it has been added to the cartRemove this productRemoved wishlist %s.Same used for Add to wishlistSecondary button styleSelect an icon for the "Add to cart" button (optional)Select an icon for the "Add to wishlist" button (optional)Select an icon for the "Added to wishlist" button (optional)Select an icon for the Email share buttonSelect an icon for the Facebook share buttonSelect an icon for the Pinterest share buttonSelect an icon for the Twitter share buttonSelect an icon for the WhatsApp share buttonSet the radius for the "Add to cart" buttonShare button text colorShare by URLShare by emailShare on FacebookShare on WhatsAppShare on social mediaShare on:Share via emailShare wishlistSharedSharing titleShow "Add to wishlist" in loopShow "Remove from list" linkShow "Share URL" field on wishlist pageShow "View wishlist" linkSocial image URLSocial textStock statusStock:Style & Color customizationStyle & color customizationStyle of "Add to cart"Style of "Add to wishlist"TextText HoverText customizationText hoverTextual (anchor)The item cannot be added to this wishlistThe product is already in your wishlist!TitleTokenTweet on TwitterTwitterTwitter share button custom iconTwitter share button iconTwitter share button styleType the message you want to publish when you share your wishlist on Twitter and PinterestURL of the wishlist page (leave empty to use the default settings)Unit priceUpdateUpload an icon you'd like to use for "Add to wishlist" button (suggested 32px x 32px)Upload an icon you'd like to use for Facebook share button (suggested 32px x 32px)Upload an icon you'd like to use for Pinterest share button (suggested 32px x 32px)Upload an icon you'd like to use for Twitter share button (suggested 32px x 32px)Upload an icon you'd like to use for WhatsApp share button (suggested 32px x 32px)Upload an icon you'd like to use for the "Add to cart" button (suggested 32px x 32px)Upload an icon you'd like to use for the Email share button (suggested 32px x 32px)Use shortcodeView &rsaquo;VisibilityWe are sorry, but this feature is available only if cookies on your browser are enabled.We’ll also use cookies to keep track of wishlist contents while you’re browsing our site.WhatsAppWhatsApp share button custom iconWhatsApp share button iconWhatsApp share button styleWhatsappWhile you visit our site, we’ll track:WishlistWishlist %s has been retained.Wishlist Detail PageWishlist URLWishlist details, such as products added, date of addition, name and privacy settings of your wishlistsWishlist pageWishlist page optionsWishlist table styleWishlist title used for sharing (only used on Twitter and Pinterest)WishlistsWishlists you’ve created: we’ll keep track of the wishlists you create, and make them visible to the store staffYITH WooCommerce Frequently Bought Together IntegrationYou and %s userYou and %d usersYou're the firstcopyhas this item in wishlisthave this item in wishlisthave this item in wishlistorthis wishlist link and share it anywhere)to add this item in wishlistProject-Id-Version: YITH WooCommerce Wishlist
Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/yith-woocommerce-wishlist
POT-Creation-Date: 2021-11-11 13:53:53+00:00
PO-Revision-Date: 2020-10-16 14:04+0200
Last-Translator: Nicola Mustone <mail@nicolamustone.it>
Language-Team: Your Inspiration Themes <plugins@yithemes.com>
Language: es_ES
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Generator: Poedit 2.4.1
X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;_n:1,2;__ngettext:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2
X-Poedit-Basepath: .
Plural-Forms: nplurals=2; plural=n!=1;
X-Poedit-SourceCharset: UTF-8
X-Poedit-SearchPath-0: ..
X-Poedit-SearchPathExcluded-0: ../plugin-fw
Estilo del botón ''Añadir al carrito''Icono personalizado de ''Añadir al carrito''Icono de ''Añadir al carrito''Texto ''Añadir al carrito''Estilo del botón ''Añadir a la lista de deseos''Icono personalizado de ''Añadir a la lista de deseos''Icono de ''Añadir a la lista de deseos''Texto ''Añadir a la lista de deseos''Icono personalizado de ''Añadido a la lista de deseos''Icono de ''Añadido a la lista de deseos''Etiqueta ''Echar un vistazo a la lista de deseos'' (déjalo vacío para usar los ajustes predeterminados)Texto para "Echar un vistazo a la lista de deseos"Etiqueta ''Producto añadido a la lista de deseos'' (déjalo vacío para usar los ajustes predeterminados)Texto de "Producto añadido"Etiqueta ''El producto ya está en la lista de deseos'' (déjalo vacío para usar los ajustes predeterminados)Texto para "El producto ya está en la lista de deseos"%d usuario%d usuarios(AhoraAñadir todo al carritoAñadir al carritoOpción de añadir al carrito para cada productoAñadir a la lista de deseosOpciones de Añadir a la lista de deseosAñadido el:Añadido el: %sBotón para clases CSS adicionales (déjalo vacío para usar los ajustes predeterminados)Después de "Añadir al carrito"Despuésl botón ''Añadir al carrito''Después del resumenDespués de las miniaturasTodas tus listas de deseosPermitir a tus clientes crear y compartir productos que quieran comprar en tu comercio electrónico.Ha ocurrido un error mientras se añadían los productos a la lista de deseos.Cualquiera puede buscar y ver esta listaAplicarAplicar esta acción a todos los artículos seleccionados:OrdenarFondoAl pasar el cursor por el fondoFondo al pasar el cursorAntes del botón ''Añadir al carrito''BordeAl pasar el cursor por el bordeRadio del bordeEchar un vistazo a la lista de deseosEtiqueta del botón (déjalo vacío para usar los ajustes predeterminados)Botón para eliminar el producto de la lista de deseos - a la derecha del productoBotón con estilo personalizadoBotón con estilo del temaElige los colores para el botón para compartir en FacebookElige colores para el botón para compartir por PinterestElige los colores para el botón para compartir en TwitterElige los colores para el botón para compartir por WhatsAppElige los colores para el texto de los botones para compartirElige colores para el botón ''Añadir al carrito'' al pasar el cursorElige los colores para el botón ''Añadir a la lista de deseos''Elige colores para el botón ''Añadir a la lista de deseos'' al pasar el cursorElige los colores para el botón para compartir por Correo electrónicoElige colores para el botón primario al pasar el cursor<br/><small>Este estilo será aplicado al botón ''Editar título'' en la vista de Lista de deseos, en el botón ''Guardar cambios'' en la vista Administrar y en el botón ''buscar lista de deseos'' en la vista Buscar</small>Elige colores para el botón primario<br/><small>Este estilo será aplicado al botón "Editar título" en la vista de Lista de deseos, en el botón "Guardar cambios" en la vista de Administrar y el botón "Buscar lista de deseos" en la vista de Buscar</small>Elige si quieres mostrar un enlace textual o un botón de ''Añadir a la lista de deseos''Elige un radio para el botón ''Añadir a la lista de deseos''Elige el color para todas las secciones con fondo<br/><small>Este color será usado como fondo para el encabezado de la tabla de la lista de deseos y el pie de página (cuando se establece el estilo "Tradicional"), y para varios formularios sobre las visitas de la lista de deseos</small>Elige colores para el botón ''Añadir al carrito''Elige los colores para la tabla de la lista de deseos (cuando se establece el estilo ''Tradicional'')Elige la apariencia del botón Lista de deseos cuando el producto ya ha sido añadido a la lista de deseosElige donde mostrar el botón o enlace de "Añadir a la lista de deseos" en el bucle de los productos de WooCommerce. <span class="addon">Copia este shortcode <span class="code"><code>[yith_wcwl_add_to_wishlist]</code></span> y pégalo donde quieras mostrar el botón o enlace ''Añadir a la lista de deseos''</span>Escoge donde mostrar el botón o enlace ''Añadir a la lista de deseos"Add to wishlist" en la página de producto. <span class="addon">Copia este shortcode <span class="code"><code>[yith_wcwl_add_to_wishlist]</code></span> y pégalo donde quieras mostrar el botón o enlace ''Añadir al carrito''</span>Elige si paginar los artículos en la lista de deseos o mostrarlos todosElige si mostrar un enlace textual o un botón de ''Añadir al carrito''Personalizar CSSListas de deseos del clienteFecha en la que el producto fue añadido a la lista de deseosNombre predeterminado de lista de deseosNo paginarEditar títuloEmailIcono personalizado del botón para compartir por Correo electrónicoIcono para compartir por Correo electrónicoEstilo del botón para compartir por Correo electrónicoActivar carga de AJAXHabilitar deslizador en la lista de deseosActivar la característica ''Añadir a la lista de deseos'' en el bucle de los productos de WooCommerceActiva esta opción para permitir a los usuarios compartir su lista de deseos en redes socialesIntroduce el nombre para la lista de deseos predeterminada. Esta es la lista de deseos que se creará automáticamente si los usuarios no crean una personalizadaIntroduce un texto para el botón ''Añadir a la lista de deseos''Introduce un texto para el botón ''Añadir al carrito''Introduce el texto para el enlace ''Echas un vistazo a la lista de deseos'' en la página de productoIntroduce el CSS personalizado a aplicar en los elementos de la Lista de deseos (opcional)Introduce el texto para el mensaje mostrado cuando el usuario ve un producto que ya está en su lista de deseosIntroduce el texto del mensaje mostrado cuando el usuario añade un producto a la lista de deseosError. No hemos podido eliminar el producto de la lista de deseos.FacebookIcono personalizado del botón para compartir en FacebookIcono del botón para compartir en FacebookEstilo del botón para compartir en Facebook¡Gratis!Ajustes GeneralesAjustes generalesDestacar colorID del producto a añadir a la lista de deseos (déjalo vacío para usar el producto global)ID de la lista de deseos a mostrar (ej: K6EOWXB888ZD)Icono para el botón (utiliza cualquier clase válida de FontAwesome, o déjalo vacío para usar los ajustes predeterminados)Icono para eliminar el producto de la lista de deseos - a la izquierda del productoSi quieres beneficiarte de esta característica, podrías considerar la compra de la %s.En stockPara usar esta integración debes instalar y activar YITH WooCommerce Frequently Bought Together. <a href="%s">Leer más</a>Mostrar en la tabla de la lista de deseosArtículo de lista de deseos no válido.Lista de deseos no válida.Será usado para fijar la lista de deseos en Pinterest.Artículos añadidosCargar cualquier artículo de lista de deseos cacheable via AJXLas opciones del bucle serán visibles en la página Tienda, en página de categoría, shortcodes de producto, carruseles y todos los demás lugares en los que el bucle de los productos de WooCommerce es usadoAjustes de loopMiembros de nuestro equipo tienen acceso a la información que nos proporcionas. Por ejemplo, tanto los administradores como los gerentes de tienda pueden acceder a:MoverMover a otra lista &rsaquo;Mi lista de deseos en %sNo se han añadido productos a la lista de deseosNúmero de artículos a mostrar por páginaEn la parte superior de la imagenSolo gente con un enlace a esta lista puede verlaSolo tú puedes ver esta listaLos miembros de nuestro equipo tienen acceso a esta información para ofrecerte mejores ofertas para los productos que te gusten.AgotadoPaginarEscoge una página como la página de Lista de deseos predeterminada; asegúrate de añadir el <span class="code"><code>[yith_wcwl_wishlist]</code></span> shortcode en el contenido de la páginaPinear en PinterestPinterestIcono personalizado del botón para compartir por PinterestIcono para compartir por PinterestEstilo del botón para compartir por PinterestPor favor, asegúrate de haber introducido un título válidoPosición de ''Añadir a la lista de deseos'' en buclePosición de ''Añadir a la lista de deseos'' en la página del productoVersión premiumPrecio:Estilo de botón primarioPrivadaProducto añadido al carrito con éxito¡Producto añadido!Nombre del productoAjustes de página de productoPrecio de productoInventario de producto (muestra si el producto está disponible o no)Producto eliminado satisfactoriamente.Variaciones de producto seleccionada por el usuario (ejemplo: talla o color)Productos que has agregado a la lista de deseos: lo usaremos para mostrarte a ti y a otros usuarios tus productos favoritos y para crear campañas de correo electrónico específicas.PúblicaCantidadCantidad:Redirigir al carritoRedireccionar a los usuarios a la página de carrito cuando añaden un producto al carrito desde la página de la lista de deseosQuitarEliminar de la listaEliminar de la lista de deseosQuitar si se añade al carritoEliminar el producto de la lista de deseos tras haber sido añadido al carritoEliminar este productoEliminada lista de deseos %s.El mismo usado para Añadir a la lista de deseosEstilo de botón secundarioSelecciona un icono para el botón ''Añadir al carrito'' (opcional)Selecciona un icono para el botón ''Añadir a la lista de deseos'' (opcional)Selecciona un icono para el botón ''Añadido a la lista de deseos'' (opcional)Selecciona un icono para el botón para compartir por Correo electrónicoSelecciona un icono para el botón para compartir en FacebookSelecciona un icono para el botón para compartir por PinterestSelecciona un icono para el botón para compartir en TwitterSelecciona un icono para el botón para compartir por WhatsAppConfigura el radio para el botón ''Añadir al carrito''Color de texto de botón para compartirCompartir por URLCompartir por correo electrónicoCompartir en FacebookCompartir en WhatsAppCompartir en redes socialesCompartir en:Compartir por correo electrónicoCompartir lista de deseosCompartidasTítulo a compartirMostrar el bucle ''Añadir a la lista de deseos''Mostrar enlace a ''Eliminar de la lista''Mostrar el campo ''Compartir URL'' en la página de la lista de deseosMostrar enlace a ''Ver lista de deseos''URL de imagen socialTexto socialEstado de inventarioEn inventario:Personalización de estilo y colorPersonalización de estilo y colorEstilo de ''Añadir al carrito''Estilo del ''Añadir a la lista de deseos''TextoAl pasar el cursor por el textoPersonalización de textoAl pasar el cursor por el textoTextual (anclaje)El artículo no puede ser añadido a la lista de deseos¡El producto ya está en tu lista de deseos!TítuloTokenTwittear en TwitterTwitterIcono personalizado para compartir en TwitterIcono del botón para compartir en TwitterEstilo del botón para compartir en TwitterIntroduce el mensaje que quieres publicar cuando compartes una lista de deseos en Twitter y PinterestURL de la página de lista de deseos (déjalo vacío para usar los ajustes predeterminados)Precio por unidadActualizarSube un icono que te gustaría usar para el botón ''Añadir a la lista de deseos'' (sugerencia: 32px x 32px)Sube un icono que te gustaría usar para el botón para compartir en Facebook (sugerencia: 32px x 32px)Sube un icono que te gustaría usar para el botón para compartir por Pinterest (sugerencia: 32px x 32px)Sube un icono que te gustaría usar para el botón para compartir en Twitter (sugerencia:: 32px x 32px)Sube un icono que te gustaría usar para el botón para compartir por WhatsApp (sugerencia: 32px x 32px)Sube un icono que te gustaría usar para el botón ''Añadir al carrito'' (sugerencia: 32px x 32px)Sube un icono que te gustaría usar para el botón para compartir por Correo electrónico (sugerencia: 32px x 32px)Usar shortcodeVer &rsaquo;VisibilidadLo siento, pero esta característica solo está disponible si las cookies de tu navegador están habilitadas.También usaremos cookies para realizar un seguimiento del contenido de la lista de deseos mientras navegas por nuestro sitio.WhatsAppIcono personalizado del botón para compartir por WhatsAppIcono de botón para compartir por WhatsAppEstilo del botón para compartir por WhatsAppWhatsAppMientras visitas nuestro sitio, nosotros rastrearemos:WishlistLa lista de deseos %s ha sido retenida.Página de detalles de la lista de deseosURL de la lista de deseosDetalles de la lista de deseos, como productos agregados, fecha de adición, nombre y configuración de privacidad de tus listas de deseosPágina de Lista de deseosOpciones de la página Lista de deseosEstilo de la tabla de la lista de deseosTítulo de la lista de deseos usado para compartir (solo en Twitter y Pinterest)Listas de deseosListas de deseos que has creado: recopilaremos las listas de deseos que crees y las haremos visibles al personal de la tiendaIntegración de productos YITH WooCommerce comprados juntos frecuentementeTú y el usuario %sTú y los usuarios %dEres el primerocopiartiene este artículo en la lista de deseostiene este artículo en la lista de deseostienen este artículo en la lista de deseosoeste enlace a la lista de deseos y compártelo en cualquier parte)en añadir este artículo a la lista de deseosPK`x1\�>e����,languages/yith-woocommerce-wishlist-tr_TR.ponu�[���# Copyright (C) 2019 YITH WooCommerce Wishlist
# This file is distributed under the same license as the YITH WooCommerce Wishlist package.
msgid ""
msgstr ""
"Project-Id-Version: YITH WooCommerce Wishlist\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/yith-woocommerce-"
"wishlist\n"
"POT-Creation-Date: 2021-11-11 13:53:53+00:00\n"
"PO-Revision-Date: 2020-10-16 14:06+0200\n"
"Last-Translator: Caner Öncel <caneroncel@gmail.com>\n"
"Language-Team: Caner Öncel (@egonomik) <caneroncel@gmail.com>\n"
"Language: tr_TR\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;_n:1,2;__ngettext:1,2;"
"__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;"
"_nx_noop:4c,1,2\n"
"X-Poedit-Basepath: .\n"
"Plural-Forms: nplurals=2; plural=n!=1;\n"
"X-Poedit-SourceCharset: UTF-8\n"
"X-Generator: Poedit 2.4.1\n"
"X-Poedit-SearchPath-0: ..\n"
"X-Poedit-SearchPathExcluded-0: ../plugin-fw\n"

#: includes/class-yith-wcwl-admin.php:126
#, fuzzy
msgid "Wishlist Page"
msgstr "İstek Listesi"

#: includes/class-yith-wcwl-admin.php:148
msgid "General settings"
msgstr ""

#: includes/class-yith-wcwl-admin.php:149
msgid "Add to wishlist options"
msgstr ""

#: includes/class-yith-wcwl-admin.php:150
msgid "Wishlist page options"
msgstr ""

#: includes/class-yith-wcwl-admin.php:151
msgid "Premium Version"
msgstr ""

#: includes/class-yith-wcwl-admin.php:249
#: includes/class-yith-wcwl-install.php:342
msgid "Wishlist"
msgstr "İstek Listesi"

#: includes/class-yith-wcwl-admin.php:251
msgid ""
"Allows your customers to create and share lists of products that they want "
"to purchase on your e-commerce."
msgstr ""

#: includes/class-yith-wcwl-ajax-handler.php:75
#: templates/add-to-wishlist-remove.php:59
msgid "View &rsaquo;"
msgstr ""

#: includes/class-yith-wcwl-ajax-handler.php:76
#: templates/add-to-wishlist-remove.php:58
msgid "or"
msgstr ""

#: includes/class-yith-wcwl-ajax-handler.php:77
msgid "Close"
msgstr ""

#: includes/class-yith-wcwl-ajax-handler.php:155
#: includes/class-yith-wcwl-ajax-handler.php:195
msgid "Product successfully removed."
msgstr "Ürün başarıyla kaldırıldı."

#: includes/class-yith-wcwl-form-handler.php:156
msgid "Please, make sure to enter a valid title"
msgstr ""

#: includes/class-yith-wcwl-frontend.php:461
msgid ""
"We are sorry, but this feature is available only if cookies on your browser "
"are enabled."
msgstr ""

#: includes/class-yith-wcwl-frontend.php:462
msgid "Product added to cart successfully"
msgstr ""

#: includes/class-yith-wcwl-frontend.php:725
#: includes/class-yith-wcwl-shortcode.php:239
#: plugin-options/wishlist_page-options.php:240
#: templates/wishlist-view-footer-mobile.php:46
#: templates/wishlist-view-footer.php:46
msgid "Add to cart"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:52
msgid "While you visit our site, we’ll track:"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:54
msgid ""
"Products you’ve added to the wishlist: we’ll use this to show you and other "
"users your favourite products, and to create targeted email campaigns."
msgstr ""

#: includes/class-yith-wcwl-privacy.php:55
msgid ""
"Wishlists you’ve created: we’ll keep track of the wishlists you create, and "
"make them visible to the store staff"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:57
msgid ""
"We’ll also use cookies to keep track of wishlist contents while you’re "
"browsing our site."
msgstr ""

#: includes/class-yith-wcwl-privacy.php:60
msgid ""
"Members of our team have access to the information you provide us with. For "
"example, both Administrators and Shop Managers can access:"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:62
msgid ""
"Wishlist details, such as products added, date of addition, name and privacy "
"settings of your wishlists"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:64
msgid ""
"Our team members have access to this information to offer you better deals "
"for the products you love."
msgstr ""

#: includes/class-yith-wcwl-privacy.php:84
#: includes/class-yith-wcwl-privacy.php:100
msgid "Customer wishlists"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:137 plugin-options/lists-options.php:25
#: plugin-options/lists-options.php:32
msgid "Wishlists"
msgstr "İstek Listesi"

#. Translators: %s Order number.
#: includes/class-yith-wcwl-privacy.php:199
msgid "Removed wishlist %s."
msgstr "%s üzerinde istek listem"

#. Translators: %s Order number.
#: includes/class-yith-wcwl-privacy.php:203
msgid "Wishlist %s has been retained."
msgstr "İstek listesi tablo metni"

#: includes/class-yith-wcwl-privacy.php:227
msgid "Token"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:228
msgid "Wishlist URL"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:229
msgid "Title"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:231
msgid "Visibility"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:232
msgid "Items added"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:58
msgid ""
"ID of the product to add to the wishlist (leave empty to use the global "
"product)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:63
msgid "URL of the wishlist page (leave empty to use the default settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:68
msgid "Button label (leave empty to use the default settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:73
msgid "\"Browse wishlist\" label (leave empty to use the default settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:78
msgid ""
"\"Product already in wishlist\" label (leave empty to use the default "
"settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:83
msgid ""
"\"Product added to wishlist\" label (leave empty to use the default settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:88
msgid ""
"Icon for the button (use any FontAwesome valid class, or leave empty to use "
"the default settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:93
msgid ""
"Additional CSS classes for the button (leave empty to use the default "
"settings)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:107
msgid "Choose whether to paginate items in the wishlist or show them all"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:110
#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:118
msgid "Paginate"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:111
#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:119
msgid "Do not paginate"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:116
msgid "Number of items to show per page"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:121
msgid "ID of the wishlist to show (e.g. K6EOWXB888ZD)"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:414
msgid "Share on:"
msgstr "Paylaşım seçenekleri:"

#: includes/class-yith-wcwl-shortcode.php:438
#: plugin-options/wishlist_page-options.php:138
msgid "Share on Facebook"
msgstr "Facebook'ta Paylaş"

#: includes/class-yith-wcwl-shortcode.php:455
#: plugin-options/wishlist_page-options.php:147
msgid "Tweet on Twitter"
msgstr "Twitter'da Tweetle"

#: includes/class-yith-wcwl-shortcode.php:473
#: plugin-options/wishlist_page-options.php:156
msgid "Pin on Pinterest"
msgstr "Pinterest'te Pinle"

#: includes/class-yith-wcwl-shortcode.php:487
msgid "Share via email"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:510
#: plugin-options/wishlist_page-options.php:174
msgid "Share on WhatsApp"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:621
msgid "Remove from list"
msgstr ""

#: includes/class-yith-wcwl-wishlist-item.php:189
msgid "Free!"
msgstr "Ücretsiz!"

#: includes/class-yith-wcwl.php:164
msgid "The item cannot be added to this wishlist"
msgstr ""

#: includes/class-yith-wcwl.php:168 includes/class-yith-wcwl.php:174
msgid "An error occurred while adding the products to the wishlist."
msgstr ""

#: includes/class-yith-wcwl.php:235 includes/class-yith-wcwl.php:241
msgid "Error. Unable to remove the product from the wishlist."
msgstr "Hata. Ürün istek listenizden kaldırılamadı. "

#: includes/data-stores/class-yith-wcwl-wishlist-data-store.php:152
#: includes/data-stores/class-yith-wcwl-wishlist-data-store.php:174
msgid "Invalid wishlist."
msgstr ""

#: includes/data-stores/class-yith-wcwl-wishlist-item-data-store.php:119
msgid "Invalid wishlist item."
msgstr ""

#. translators: 1. Number of users.
#: includes/functions-yith-wcwl.php:249
msgid "%d user"
msgid_plural "%d users"
msgstr[0] ""
msgstr[1] ""

#: includes/functions-yith-wcwl.php:250
msgid "has this item in wishlist"
msgid_plural "have this item in wishlist"
msgstr[0] ""
msgstr[1] ""

#: includes/functions-yith-wcwl.php:252
msgid "You're the first"
msgstr ""

#: includes/functions-yith-wcwl.php:253
msgid "to add this item in wishlist"
msgstr ""

#. translators: 1. Count of users when many, or "another" when only one.
#: includes/functions-yith-wcwl.php:257
msgid "You and %s user"
msgid_plural "You and %d users"
msgstr[0] ""
msgstr[1] ""

#: includes/functions-yith-wcwl.php:257
msgid "another"
msgstr ""

#: includes/functions-yith-wcwl.php:258
msgid "have this item in wishlist"
msgstr ""

#: includes/functions-yith-wcwl.php:425
msgid "None"
msgstr ""

#: includes/functions-yith-wcwl.php:426
#, fuzzy
msgid "Custom"
msgstr "Özel CSS"

#: includes/functions-yith-wcwl.php:447
msgid "Shared"
msgstr "Paylaşım seçenekleri:"

#: includes/functions-yith-wcwl.php:451
msgid "Only people with a link to this list can see it"
msgstr ""

#: includes/functions-yith-wcwl.php:457
msgid "Private"
msgstr ""

#: includes/functions-yith-wcwl.php:461
msgid "Only you can see this list"
msgstr ""

#: includes/functions-yith-wcwl.php:467
msgid "Public"
msgstr ""

#: includes/functions-yith-wcwl.php:471
msgid "Anyone can search for and see this list"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:118
#: plugin-options/add_to_wishlist-options.php:127
msgid "Add to wishlist"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:128
#: plugin-options/add_to_wishlist-options.php:143
msgid "Browse wishlist"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:138
#, fuzzy
msgid "Product already in wishlist"
msgstr "Ürün zaten istek listenizde."

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:148
#, fuzzy
msgid "Product added to wishlist"
msgstr "Ürün zaten istek listenizde."

#: init.php:160
msgid "is enabled but not effective. It requires WooCommerce to work."
msgstr ""

#: init.php:176
msgid "You can't activate the free version of"
msgstr ""

#: init.php:176
msgid "while you are using the premium one."
msgstr ""

#: plugin-options/add_to_wishlist-options.php:20
#: plugin-options/settings-options.php:27
msgid "General Settings"
msgstr "Genel Ayarlar"

#: plugin-options/add_to_wishlist-options.php:27
msgid "After product is added to wishlist"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:28
msgid ""
"Choose the look of the Wishlist button when the product has already been "
"added to a wishlist"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:32
#, fuzzy
msgid "Show \"Add to wishlist\" button"
msgstr "Ürün zaten istek listenizde."

#: plugin-options/add_to_wishlist-options.php:33
msgid "Show \"View wishlist\" link"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:34
msgid "Show \"Remove from list\" link"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:48
msgid "Loop settings"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:50
msgid ""
"Loop options will be visible on Shop page, category pages, product "
"shortcodes, products sliders, and all the other places where the WooCommerce "
"products' loop is used"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:55
msgid "Show \"Add to wishlist\" in loop"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:56
msgid "Enable the \"Add to wishlist\" feature in WooCommerce products' loop"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:64
msgid "Position of \"Add to wishlist\" in loop"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:65
msgid ""
"Choose where to show \"Add to wishlist\" button or link in WooCommerce "
"products' loop. <span class=\"addon\">Copy this shortcode <span class=\"code"
"\"><code>[yith_wcwl_add_to_wishlist]</code></span> and paste it where you "
"want to show the \"Add to wishlist\" link or button</span>"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:72
msgid "On top of the image"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:73
msgid "Before \"Add to cart\" button"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:74
msgid "After \"Add to cart\" button"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:75
#: plugin-options/add_to_wishlist-options.php:107
msgid "Use shortcode"
msgstr "Kısa kod kullan"

#: plugin-options/add_to_wishlist-options.php:89
msgid "Product page settings"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:96
msgid "Position of \"Add to wishlist\" on product page"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:97
msgid ""
"Choose where to show \"Add to wishlist\" button or link on the product page. "
"<span class=\"addon\">Copy this shortcode <span class=\"code"
"\"><code>[yith_wcwl_add_to_wishlist]</code></span> and paste it where you "
"want to show the \"Add to wishlist\" link or button</span>"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:104
msgid "After \"Add to cart\""
msgstr "\"Sepete Ekle\"den sonra"

#: plugin-options/add_to_wishlist-options.php:105
msgid "After thumbnails"
msgstr "Küçük resimlerden sonra"

#: plugin-options/add_to_wishlist-options.php:106
msgid "After summary"
msgstr "Özet bilgisinden sonra"

#: plugin-options/add_to_wishlist-options.php:117
#: plugin-options/wishlist_page-options.php:222
msgid "Text customization"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:124
msgid "\"Add to wishlist\" text"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:125
msgid "Enter a text for \"Add to wishlist\" button"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:132
msgid "\"Product added\" text"
msgstr "Ürün eklendi!"

#: plugin-options/add_to_wishlist-options.php:133
msgid ""
"Enter the text of the message displayed when the user adds a product to the "
"wishlist"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:135
msgid "Product added!"
msgstr "Ürün eklendi!"

#: plugin-options/add_to_wishlist-options.php:140
msgid "\"Browse wishlist\" text"
msgstr "İstek Listesini Görüntüle"

#: plugin-options/add_to_wishlist-options.php:141
msgid "Enter a text for the \"Browse wishlist\" link on the product page"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:148
msgid "\"Product already in wishlist\" text"
msgstr "Ürün zaten istek listenizde."

#: plugin-options/add_to_wishlist-options.php:149
msgid ""
"Enter the text for the message displayed when the user views a product that "
"is already in the wishlist"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:151
msgid "The product is already in your wishlist!"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:161
msgid "Style & Color customization"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:168
msgid "Style of \"Add to wishlist\""
msgstr ""

#: plugin-options/add_to_wishlist-options.php:169
msgid ""
"Choose if you want to show a textual \"Add to wishlist\" link or a button"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:172
#: plugin-options/wishlist_page-options.php:261
msgid "Textual (anchor)"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:173
#: plugin-options/wishlist_page-options.php:262
msgid "Button with theme style"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:174
#: plugin-options/wishlist_page-options.php:263
msgid "Button with custom style"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:182
msgid "\"Add to wishlist\" button style"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:188
msgid "Choose colors for the \"Add to wishlist\" button"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:190
#: plugin-options/wishlist_page-options.php:279
#: plugin-options/wishlist_page-options.php:368
#: plugin-options/wishlist_page-options.php:417
#: plugin-options/wishlist_page-options.php:465
#: plugin-options/wishlist_page-options.php:552
#: plugin-options/wishlist_page-options.php:592
#: plugin-options/wishlist_page-options.php:632
#: plugin-options/wishlist_page-options.php:672
#: plugin-options/wishlist_page-options.php:712
msgid "Background"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:195
#: plugin-options/wishlist_page-options.php:284
#: plugin-options/wishlist_page-options.php:373
#: plugin-options/wishlist_page-options.php:422
#: plugin-options/wishlist_page-options.php:470
#: plugin-options/wishlist_page-options.php:507
msgid "Text"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:200
#: plugin-options/wishlist_page-options.php:289
#: plugin-options/wishlist_page-options.php:378
#: plugin-options/wishlist_page-options.php:427
#: plugin-options/wishlist_page-options.php:475
msgid "Border"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:206
msgid "Choose colors for the \"Add to wishlist\" button on hover state"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:208
#: plugin-options/wishlist_page-options.php:297
#: plugin-options/wishlist_page-options.php:386
#: plugin-options/wishlist_page-options.php:435
msgid "Background Hover"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:213
#: plugin-options/wishlist_page-options.php:302
#: plugin-options/wishlist_page-options.php:391
#: plugin-options/wishlist_page-options.php:440
msgid "Text Hover"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:218
#: plugin-options/wishlist_page-options.php:307
#: plugin-options/wishlist_page-options.php:396
#: plugin-options/wishlist_page-options.php:445
msgid "Border Hover"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:231
#: plugin-options/wishlist_page-options.php:320
msgid "Border radius"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:232
msgid "Choose radius for the \"Add to wishlist\" button"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:246
msgid "\"Add to wishlist\" icon"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:247
msgid "Select an icon for the \"Add to wishlist\" button (optional)"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:257
msgid "\"Add to wishlist\" custom icon"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:258
#: plugin-options/add_to_wishlist-options.php:282
msgid ""
"Upload an icon you'd like to use for \"Add to wishlist\" button (suggested "
"32px x 32px)"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:270
msgid "\"Added to wishlist\" icon"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:271
msgid "Select an icon for the \"Added to wishlist\" button (optional)"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:277
msgid "Same used for Add to wishlist"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:281
msgid "\"Added to wishlist\" custom icon"
msgstr ""

#: plugin-options/add_to_wishlist-options.php:294
msgid "Custom CSS"
msgstr "Özel CSS"

#: plugin-options/add_to_wishlist-options.php:295
msgid "Enter custom CSS to be applied to Wishlist elements (optional)"
msgstr ""

#: plugin-options/lists-options.php:34
msgid "Search list"
msgstr ""

#. translators: 1. Anchor to Frequently Bought Together landing page on
#. yithemes.com.
#: plugin-options/settings-options.php:19
msgid ""
"If you want to take advantage of this feature, you could consider purchasing "
"the %s."
msgstr ""

#: plugin-options/settings-options.php:34
msgid "Enable AJAX loading"
msgstr ""

#: plugin-options/settings-options.php:35
msgid "Load any cacheable wishlist item via AJAX"
msgstr ""

#: plugin-options/settings-options.php:48
msgid "YITH WooCommerce Frequently Bought Together Integration"
msgstr ""

#. translators: 1. Url to Frequently Bought Together landing page on
#. yithemes.com.
#: plugin-options/settings-options.php:51
msgid ""
"In order to use this integration you have to install and activate YITH "
"WooCommerce Frequently Bought Together. <a href=\"%s\">Learn more</a>"
msgstr ""

#: plugin-options/settings-options.php:56
msgid "Enable slider in wishlist"
msgstr ""

#. translators: 1. Example image of the integration. 2. CTA to buy Frequently
#. Bought Together.
#: plugin-options/settings-options.php:58
msgid ""
"Enable the slider with linked products on the Wishlist page (<a href=\"%1$s"
"\" class=\"thickbox\">Example</a>). %2$s"
msgstr ""

#: plugin-options/wishlist_page-options.php:19
msgid "All your wishlists"
msgstr ""

#: plugin-options/wishlist_page-options.php:26
msgid "Wishlist page"
msgstr ""

#: plugin-options/wishlist_page-options.php:27
msgid ""
"Pick a page as the main Wishlist page; make sure you add the <span class="
"\"code\"><code>[yith_wcwl_wishlist]</code></span> shortcode into the page "
"content"
msgstr ""

#: plugin-options/wishlist_page-options.php:40
msgid "Wishlist Detail Page"
msgstr ""

#: plugin-options/wishlist_page-options.php:47
#: plugin-options/wishlist_page-options.php:56
#: plugin-options/wishlist_page-options.php:65
#: plugin-options/wishlist_page-options.php:74
#: plugin-options/wishlist_page-options.php:83
#: plugin-options/wishlist_page-options.php:92
#: plugin-options/wishlist_page-options.php:101
msgid "In wishlist table show"
msgstr ""

#: plugin-options/wishlist_page-options.php:48
msgid "Product variations selected by the user (example: size or color)"
msgstr ""

#: plugin-options/wishlist_page-options.php:57
msgid "Product price"
msgstr ""

#: plugin-options/wishlist_page-options.php:66
msgid "Product stock (show if the product is available or not)"
msgstr ""

#: plugin-options/wishlist_page-options.php:75
msgid "Date on which the product was added to the wishlist"
msgstr ""

#: plugin-options/wishlist_page-options.php:84
msgid "Add to cart option for each product"
msgstr ""

#: plugin-options/wishlist_page-options.php:93
msgid ""
"Icon to remove the product from the wishlist - to the left of the product"
msgstr ""

#: plugin-options/wishlist_page-options.php:102
msgid ""
"Button to remove the product from the wishlist - to the right of the product"
msgstr ""

#: plugin-options/wishlist_page-options.php:110
msgid "Redirect to cart"
msgstr "Sepete yönlendir"

#: plugin-options/wishlist_page-options.php:111
msgid ""
"Redirect users to the cart page when they add a product to the cart from the "
"wishlist page"
msgstr ""

#: plugin-options/wishlist_page-options.php:119
msgid "Remove if added to the cart"
msgstr "Sepete eklenmişse kaldır"

#: plugin-options/wishlist_page-options.php:120
msgid ""
"Remove the product from the wishlist after it has been added to the cart"
msgstr ""

#: plugin-options/wishlist_page-options.php:128
msgid "Share wishlist"
msgstr ""

#: plugin-options/wishlist_page-options.php:129
msgid "Enable this option to let users share their wishlist on social media"
msgstr ""

#: plugin-options/wishlist_page-options.php:137
#: plugin-options/wishlist_page-options.php:146
#: plugin-options/wishlist_page-options.php:155
#: plugin-options/wishlist_page-options.php:164
#: plugin-options/wishlist_page-options.php:173
msgid "Share on social media"
msgstr ""

#: plugin-options/wishlist_page-options.php:165
msgid "Share by email"
msgstr ""

#: plugin-options/wishlist_page-options.php:182
msgid "Share by URL"
msgstr ""

#: plugin-options/wishlist_page-options.php:183
msgid "Show \"Share URL\" field on wishlist page"
msgstr ""

#: plugin-options/wishlist_page-options.php:191
msgid "Sharing title"
msgstr ""

#: plugin-options/wishlist_page-options.php:192
msgid "Wishlist title used for sharing (only used on Twitter and Pinterest)"
msgstr ""

#. translators: 1. Blog name.
#: plugin-options/wishlist_page-options.php:195
msgid "My wishlist on %s"
msgstr "%s üzerinde istek listem"

#: plugin-options/wishlist_page-options.php:200
msgid "Social text"
msgstr "Sosyal medya metni"

#: plugin-options/wishlist_page-options.php:201
msgid ""
"Type the message you want to publish when you share your wishlist on Twitter "
"and Pinterest"
msgstr ""

#: plugin-options/wishlist_page-options.php:209
msgid "Social image URL"
msgstr "Sosyal medya resim URL'i"

#: plugin-options/wishlist_page-options.php:210
msgid "It will be used to pin the wishlist on Pinterest."
msgstr ""

#: plugin-options/wishlist_page-options.php:229
msgid "Default wishlist name"
msgstr ""

#: plugin-options/wishlist_page-options.php:230
msgid ""
"Enter a name for the default wishlist. This is the wishlist that will be "
"automatically generated for all users if they do not create any custom one"
msgstr ""

#: plugin-options/wishlist_page-options.php:232
#, fuzzy
msgid "My wishlist"
msgstr "%s üzerinde istek listem"

#: plugin-options/wishlist_page-options.php:237
msgid "\"Add to cart\" text"
msgstr ""

#: plugin-options/wishlist_page-options.php:238
msgid "Enter a text for the \"Add to cart\" button"
msgstr ""

#: plugin-options/wishlist_page-options.php:250
msgid "Style & color customization"
msgstr ""

#: plugin-options/wishlist_page-options.php:257
msgid "Style of \"Add to cart\""
msgstr ""

#: plugin-options/wishlist_page-options.php:258
msgid "Choose whether to show a textual \"Add to cart\" link or a button"
msgstr ""

#: plugin-options/wishlist_page-options.php:271
msgid "\"Add to cart\" button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:277
msgid "Choose the colors for the \"Add to cart\" button"
msgstr ""

#: plugin-options/wishlist_page-options.php:295
msgid "Choose colors for the \"Add to cart\" button on hover state"
msgstr ""

#: plugin-options/wishlist_page-options.php:321
msgid "Set the radius for the \"Add to cart\" button"
msgstr ""

#: plugin-options/wishlist_page-options.php:335
msgid "\"Add to cart\" icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:336
msgid "Select an icon for the \"Add to cart\" button (optional)"
msgstr ""

#: plugin-options/wishlist_page-options.php:351
msgid "\"Add to cart\" custom icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:352
msgid ""
"Upload an icon you'd like to use for the \"Add to cart\" button (suggested "
"32px x 32px)"
msgstr ""

#: plugin-options/wishlist_page-options.php:360
msgid "Primary button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:366
msgid ""
"Choose colors for the primary button<br/><small>This style will be applied "
"to \"Edit title\" button on Wishlist view, \"Submit Changes\" button on "
"Manage view and \"Search wishlist\" button on Search view</small>"
msgstr ""

#: plugin-options/wishlist_page-options.php:384
msgid ""
"Choose colors for the primary button on hover state<br/><small>This style "
"will be applied to \"Edit title\" button on Wishlist view, \"Submit Changes"
"\" button on Manage view and \"Search wishlist\" button on Search view</"
"small>"
msgstr ""

#: plugin-options/wishlist_page-options.php:409
msgid "Secondary button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:415
#: plugin-options/wishlist_page-options.php:433
msgid ""
"Choose colors of the secondary button<br/><small>This style will be applied "
"to the buttons that allow showing and hiding the Edit title form on Wishlist "
"view and \"Create new Wishlist\" button on Manage view</small>"
msgstr ""

#: plugin-options/wishlist_page-options.php:458
msgid "Wishlist table style"
msgstr ""

#: plugin-options/wishlist_page-options.php:459
msgid ""
"Choose the colors for the wishlist table (when set to \"Traditional\" layout)"
msgstr ""

#: plugin-options/wishlist_page-options.php:487
msgid "Highlight color"
msgstr ""

#: plugin-options/wishlist_page-options.php:488
msgid ""
"Choose the color for all sections with background<br/><small>This color will "
"be used as background for the wishlist table heading and footer (when set to "
"\"Traditional\" layout), and for various form across wishlist views</small>"
msgstr ""

#: plugin-options/wishlist_page-options.php:500
msgid "Share button text color"
msgstr ""

#: plugin-options/wishlist_page-options.php:501
msgid "Choose colors for share buttons text"
msgstr ""

#: plugin-options/wishlist_page-options.php:512
msgid "Text hover"
msgstr ""

#: plugin-options/wishlist_page-options.php:525
msgid "Facebook share button icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:526
msgid "Select an icon for the Facebook share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:536
msgid "Facebook share button custom icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:537
msgid ""
"Upload an icon you'd like to use for Facebook share button (suggested 32px x "
"32px)"
msgstr ""

#: plugin-options/wishlist_page-options.php:545
msgid "Facebook share button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:546
msgid "Choose colors for Facebook share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:557
#: plugin-options/wishlist_page-options.php:597
#: plugin-options/wishlist_page-options.php:637
#: plugin-options/wishlist_page-options.php:677
#: plugin-options/wishlist_page-options.php:717
msgid "Background hover"
msgstr ""

#: plugin-options/wishlist_page-options.php:565
msgid "Twitter share button icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:566
msgid "Select an icon for the Twitter share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:576
msgid "Twitter share button custom icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:577
msgid ""
"Upload an icon you'd like to use for Twitter share button (suggested 32px x "
"32px)"
msgstr ""

#: plugin-options/wishlist_page-options.php:585
msgid "Twitter share button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:586
msgid "Choose colors for Twitter share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:605
msgid "Pinterest share button icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:606
msgid "Select an icon for the Pinterest share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:616
msgid "Pinterest share button custom icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:617
msgid ""
"Upload an icon you'd like to use for Pinterest share button (suggested 32px "
"x 32px)"
msgstr ""

#: plugin-options/wishlist_page-options.php:625
msgid "Pinterest share button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:626
msgid "Choose colors for Pinterest share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:645
msgid "Email share button icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:646
msgid "Select an icon for the Email share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:656
msgid "Email share button custom icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:657
msgid ""
"Upload an icon you'd like to use for the Email share button (suggested 32px "
"x 32px)"
msgstr ""

#: plugin-options/wishlist_page-options.php:665
msgid "Email share button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:666
msgid "Choose colors for the Email share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:685
msgid "WhatsApp share button icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:686
msgid "Select an icon for the WhatsApp share button"
msgstr ""

#: plugin-options/wishlist_page-options.php:696
msgid "WhatsApp share button custom icon"
msgstr ""

#: plugin-options/wishlist_page-options.php:697
msgid ""
"Upload an icon you'd like to use for WhatsApp share button (suggested 32px x "
"32px)"
msgstr ""

#: plugin-options/wishlist_page-options.php:705
msgid "WhatsApp share button style"
msgstr ""

#: plugin-options/wishlist_page-options.php:706
msgid "Choose colors for WhatsApp share button"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:168
#: templates/admin/wishlist-panel-premium.php:309
msgid ""
"Upgrade to the %1$spremium version%2$s%3$sof %1$sYITH WooCommerce Wishlist"
"%2$s to benefit from all features!"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:170
#: templates/admin/wishlist-panel-premium.php:311
msgid "Upgrade"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:176
msgid "Premium Features"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:180
msgid "Allow your customers to create multiple wishlists"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:182
msgid ""
"Christmas, Birthday... users will be able to create and manage multiple "
"wishlists, in case they prefer to keep the products sorted by category or "
"other parameters."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:185
msgid "Multiple Wishlist"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:192
msgid "Wishlist Private"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:196
msgid "A transparent privacy management"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:198
msgid ""
"Your customers can set a privacy option for each wishlist and choose whether "
"sharing the wishlist or making it private."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:206
msgid ""
"Allow your customers to ask for an estimate, directly from their wishlist "
"page"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:208
msgid ""
"And give only registered users the privilege to use the wishlist "
"functionalities."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:211
msgid "Estimate Cost"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:218
msgid "Admin Panel"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:222
msgid "An advanced and more versatile management of the wishlist"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:224
msgid ""
"Your customers can sort the products in the wishlist thanks to the drag&drop "
"option, move products from one wishlist to another, manage product quantity, "
"download the wishlist content to a .pdf file, share the wishlist on their "
"social networks, and much more!"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:232
msgid "Monitor your customers’ wishlists and the popular products"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:234
msgid ""
"You can see your customers’ wishlists, gain insight into the products they "
"are more interested in and plan targeted marketing strategies."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:237
msgid "Search Wishlists"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:244
msgid "'ADD TO CART'"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:248
msgid ""
"Send promotional emails for products in wishlists to push customers to buy"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:250
msgid ""
"Just three clicks to send promotional emails with discount coupons to "
"customers who have added specific products to their wishlist and push them "
"to buy."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:258
msgid "Let users buy the product right from the wishlist page"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:260
msgid ""
"Let them move products from one wishlist to the cart in one click, keeping "
"also the information about the size, colour or quantity selected when added "
"to the wishlist."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:263
msgid "DISABLE WISHLIST"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:271
msgid "Choose a charming layout for your wishlist page"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:273
msgid ""
"The wishlist is one of the most used functionalities in an ecommerce store "
"but often the page layout is not enhanced enough and looks unattractive to "
"the user. With our plugin, you can choose among some alternative layouts and "
"offer an even more interesting experience to users who creates a wishlist on "
"your website."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:276
msgid "UNLOGGED USERS"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:284
msgid "Wishlist widgets for the header and sidebars"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:286
msgid ""
"Increase the wishlist visibility through our modern widgets that you can use "
"in the header, in the sidebars, wherever you want."
msgstr ""

#: templates/admin/wishlist-panel-premium.php:289
msgid "POPULAR TABLE"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:296
msgid "FUNCTIONALITIES"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:300
msgid "Allow users to monitor the price of the products in their wishlist"
msgstr ""

#: templates/admin/wishlist-panel-premium.php:302
msgid ""
"We took inspiration from one of the most interesting features of Amazon "
"product pages: from now on, users can realise what’s the best time to buy a "
"product and how much they can save when there’s a promotion running or a "
"discount on the product they’ve added to the wishlist."
msgstr ""

#: templates/share.php:51 templates/share.php:52
msgid "Facebook"
msgstr "Facebook"

#: templates/share.php:59 templates/share.php:60
msgid "Twitter"
msgstr "Twitter"

#: templates/share.php:67 templates/share.php:68
msgid "Pinterest"
msgstr "Pinterest'te Pinle"

#: templates/share.php:75 templates/share.php:76
msgid "Email"
msgstr ""

#: templates/share.php:83
msgid "WhatsApp"
msgstr ""

#: templates/share.php:84
msgid "Whatsapp"
msgstr ""

#: templates/share.php:93
msgid "(Now"
msgstr ""

#: templates/share.php:93
msgid "copy"
msgstr ""

#: templates/share.php:93
msgid "this wishlist link and share it anywhere)"
msgstr ""

#: templates/wishlist-view-footer-mobile.php:44
#: templates/wishlist-view-footer.php:44
msgid "Apply this action to all the selected items:"
msgstr ""

#: templates/wishlist-view-footer-mobile.php:49
#: templates/wishlist-view-footer.php:49
msgid "Remove from wishlist"
msgstr ""

#. translators: 1. Wishlist formatted name.
#: templates/wishlist-view-footer-mobile.php:67
#: templates/wishlist-view-footer.php:67
msgid "Move to %s"
msgstr ""

#: templates/wishlist-view-footer-mobile.php:73
#: templates/wishlist-view-footer.php:73
msgid "Apply"
msgstr ""

#: templates/wishlist-view-footer-mobile.php:81
#: templates/wishlist-view-footer.php:81
msgid "Update"
msgstr ""

#: templates/wishlist-view-footer-mobile.php:87
#: templates/wishlist-view-footer.php:103
msgid "Add all to cart"
msgstr ""

#: templates/wishlist-view-header.php:48
msgid "Edit title"
msgstr "İstek listesi başlığı"

#: templates/wishlist-view-mobile.php:136
msgid "Added on:"
msgstr ""

#: templates/wishlist-view-mobile.php:147
msgid "Price:"
msgstr ""

#: templates/wishlist-view-mobile.php:174
msgid "Quantity:"
msgstr ""

#: templates/wishlist-view-mobile.php:189
msgid "Stock:"
msgstr ""

#: templates/wishlist-view-mobile.php:192 templates/wishlist-view.php:229
msgid "Out of stock"
msgstr ""

#: templates/wishlist-view-mobile.php:192 templates/wishlist-view.php:229
msgid "In Stock"
msgstr "Stokta"

#: templates/wishlist-view-mobile.php:212 templates/wishlist-view.php:262
msgid "Move"
msgstr ""

#: templates/wishlist-view-mobile.php:233 templates/wishlist-view.php:283
msgid "Move to another list &rsaquo;"
msgstr ""

#: templates/wishlist-view-mobile.php:241 templates/wishlist-view.php:157
#: templates/wishlist-view.php:293
msgid "Remove this product"
msgstr "Bu ürünü kaldır"

#: templates/wishlist-view-mobile.php:252 templates/wishlist-view.php:313
msgid "No products added to the wishlist"
msgstr ""

#: templates/wishlist-view.php:79
msgid "Product name"
msgstr ""

#: templates/wishlist-view.php:87
msgid "Unit price"
msgstr ""

#: templates/wishlist-view.php:96
msgid "Quantity"
msgstr ""

#: templates/wishlist-view.php:105
msgid "Stock status"
msgstr ""

#: templates/wishlist-view.php:123
msgid "Arrange"
msgstr ""

#. translators: date added label: 1 date added.
#: templates/wishlist-view.php:243
msgid "Added on: %s"
msgstr ""

#: templates/wishlist-view.php:293
msgid "Remove"
msgstr ""

#. Description of the plugin/theme
msgid ""
"<code><strong>YITH WooCommerce Wishlist</strong></code> gives your users the "
"possibility to create, fill, manage and share their wishlists allowing you "
"to analyze their interests and needs to improve your marketing strategies. "
"<a href=\"https://yithemes.com/\" target=\"_blank\">Get more plugins for "
"your e-commerce on <strong>YITH</strong></a>"
msgstr ""

#: includes/class-yith-wcwl-admin.php:261
msgctxt "[HELP TAB] Video title"
msgid ""
"Check this video to learn how to <b>configure wishlist and customize options:"
"</b>"
msgstr ""

#: includes/class-yith-wcwl-install.php:340
msgctxt "page_slug"
msgid "wishlist"
msgstr ""

#: includes/class-yith-wcwl-privacy.php:230
msgctxt "date when wishlist was created"
msgid "Created on"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:52
msgctxt "[gutenberg]: block name"
msgid "YITH Add to wishlist"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:101
msgctxt "[gutenberg]: block name"
msgid "YITH Wishlist"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:53
msgctxt "[gutenberg]: block description"
msgid "Shows Add to wishlist button"
msgstr ""

#: includes/class-yith-wcwl-shortcode.php:102
msgctxt "[gutenberg]: block description"
msgid "Shows a list of products in wishlist"
msgstr ""

#. translators: 1. % of reduction/increase in price.
#: includes/class-yith-wcwl-wishlist-item.php:428
msgctxt ""
"Part of the template that shows price variation since addition to list; "
"placeholder will be replaced with a percentage"
msgid "Price is %1$s%%"
msgstr ""

#. translators: 2: original product price.
#: includes/class-yith-wcwl-wishlist-item.php:430
msgctxt ""
"Part of the template that shows price variation since addition to list; "
"placeholder will be replaced with a price"
msgid "(Was %2$s when added  in list)"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:45
msgctxt "Elementor widget name"
msgid "YITH Wishlist Add button"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:45
#, fuzzy
msgctxt "Elementor widget name"
msgid "YITH Wishlist"
msgstr "İstek Listesi"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:87
#, fuzzy
msgctxt "Elementor section title"
msgid "Product"
msgstr "Ürün eklendi!"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:107
msgctxt "Elementor section title"
msgid "Labels"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:157
msgctxt "Elementor section title"
msgid "Advanced"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:87
#, fuzzy
msgctxt "Elementor section title"
msgid "Wishlist"
msgstr "İstek Listesi"

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:107
msgctxt "Elementor section title"
msgid "Pagination"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:95
#, fuzzy
msgctxt "Elementor control label"
msgid "Product ID"
msgstr "Ürün eklendi!"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:115
msgctxt "Elementor control label"
msgid "Button label"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:125
#, fuzzy
msgctxt "Elementor control label"
msgid "\"Browse wishlist\" label"
msgstr "İstek Listesini Görüntüle"

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:135
#, fuzzy
msgctxt "Elementor control label"
msgid "\"Product already in wishlist\" label"
msgstr "Ürün zaten istek listenizde."

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:145
#, fuzzy
msgctxt "Elementor control label"
msgid "\"Product added to wishlist\" label"
msgstr "Ürün zaten istek listenizde."

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:165
msgctxt "Elementor control label"
msgid "URL of the wishlist page"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:175
msgctxt "Elementor control label"
msgid "Icon for the button"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php:185
msgctxt "Elementor control label"
msgid "Additional CSS classes for the button"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:95
#, fuzzy
msgctxt "Elementor control label"
msgid "Wishlist ID"
msgstr "İstek Listesi"

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:115
msgctxt "Elementor control label"
msgid "Paginate items"
msgstr ""

#: includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php:128
msgctxt "yith-woocommerce-wishlist"
msgid "Items per page"
msgstr ""

#~ msgid "My wishlist on "
#~ msgstr "%s üzerinde istek listem"

#~ msgid "YITH WooCommerce Wishlist"
#~ msgstr "İstek Listeme Ekle"
PK`x1\�<w�
�
,languages/yith-woocommerce-wishlist-he_IL.monu�[������%�pq�"��
��
�
�6	@IZcu������	

#1:	Yc)z�B��(6 _"�U��	"	&6	]	0r	 �	*�	 �	&
7
O
`
q
~
�
 �
�
	

"Browse wishlist" text"Product added" text"Product already in wishlist" textAfter "Add to cart"After summaryAfter thumbnailsCustom CSSEdit titleError. Unable to remove the product from the wishlist.FacebookGeneral SettingsIn StockMy wishlist on %sProduct added!Product successfully removed.Redirect to cartRemove if added to the cartRemove this productRemoved wishlist %s.Share on FacebookShare on:SharedTwitterUse shortcodeWishlistWishlist %s has been retained.WishlistsProject-Id-Version: YITH WooCommerce Wishlist
Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/yith-woocommerce-wishlist
POT-Creation-Date: 2021-11-11 13:53:53+00:00
PO-Revision-Date: 2020-10-16 14:05+0200
Last-Translator: Nicola Mustone <mail@nicolamustone.it>
Language-Team: Your Inspiration Themes <plugins@yithemes.com>
Language: he_IL
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Generator: Poedit 2.4.1
X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;_n:1,2;__ngettext:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2
X-Poedit-Basepath: .
Plural-Forms: nplurals=2; plural=n!=1;
X-Poedit-SourceCharset: UTF-8
X-Poedit-SearchPath-0: ..
X-Poedit-SearchPathExcluded-0: ../plugin-fw
צפה ברשימת השמורים שלךהמוצר נשמר!המוצר עדיין נמצא ברשימת המשאלות שלך.לאחר "הוספה לסל"אחרי תיאור מוצראחרי התמונות המוקטנותהכנס שורות CSS משלךכותרת רשימת משאלותשגיאה. לא הצלחנו להסיר את המוצר מרשימת המשאלות.פייסבוקהגדרות כלליותקיים במלאירשימת המשאלות שלי ב-%sהמוצר נשמר!המוצר הוסר מהרשימה בהצלחה.הפנייה לסל הקניותהסר מהרשימה אם הוסף לסלהסרת מוצר מהרשימהרשימת המשאלות שלי ב-%sשתף בפייסבוקשתף ברשת:שתף ברשת:טוויטרהשתמש בקוד מקוצררשימת משאלותטקסט בטבלת הרשימהרשימת משאלותPK`x1\��ܵ�plugin-fw/init.phpnu�[���<?php
/**
 * Framework Name: YIT Plugin Framework
 * Version: 3.8.3
 * Author: YITH
 * Text Domain: yith-plugin-fw
 * Domain Path: /languages/
 *
 * @author  YITH
 * @version 3.8.3
 * @package YITH\PluginFramework
 */

defined( 'ABSPATH' ) || exit; // Exit if accessed directly.

if ( ! function_exists( 'yit_maybe_plugin_fw_loader' ) ) {
	/**
	 * Load the framework if it's not yet loaded.
	 *
	 * @param string $plugin_path The plugin path.
	 */
	function yit_maybe_plugin_fw_loader( $plugin_path ) {
		global $plugin_fw_data, $plugin_upgrade_fw_data;

		$default_headers = array(
			'Name'       => 'Framework Name',
			'Version'    => 'Version',
			'Author'     => 'Author',
			'TextDomain' => 'Text Domain',
			'DomainPath' => 'Domain Path',
		);

		$plugin_path         = trailingslashit( $plugin_path );
		$framework_data      = get_file_data( $plugin_path . 'plugin-fw/init.php', $default_headers );
		$plugin_fw_main_file = $plugin_path . 'plugin-fw/yit-plugin.php';

		if ( ! empty( $plugin_fw_data ) ) {
			foreach ( $plugin_fw_data as $version => $path ) {
				if ( version_compare( $version, $framework_data['Version'], '<' ) ) {
					$plugin_fw_data = array( $framework_data['Version'] => $plugin_fw_main_file );
				}
			}
		} else {
			$plugin_fw_data = array( $framework_data['Version'] => $plugin_fw_main_file );
		}

		// Check for license & upgrade classes.
		$upgrade_fw_init_file = $plugin_path . 'plugin-upgrade/init.php';
		$framework_data       = file_exists( $upgrade_fw_init_file ) ? get_file_data( $upgrade_fw_init_file, $default_headers ) : $framework_data;
		$plugin_license_path  = $plugin_path . 'plugin-upgrade';
		$plugin_upgrade_path  = $plugin_path . 'plugin-upgrade';

		if ( ! file_exists( $plugin_upgrade_path ) ) {
			// Check path for OLD plugin framework version.
			if ( file_exists( $plugin_path . 'plugin-fw/licence' ) ) {
				$plugin_license_path = $plugin_path . 'plugin-fw/licence';
				$plugin_upgrade_path = $plugin_path . 'plugin-fw/';
			} else {
				$plugin_upgrade_path = false;
				$plugin_license_path = false;
			}
		}

		if ( file_exists( $plugin_upgrade_path ) ) {
			if ( ! empty( $plugin_upgrade_fw_data ) ) {
				foreach ( $plugin_upgrade_fw_data as $version => $files ) {
					if ( version_compare( $version, $framework_data['Version'], '<' ) ) {
						$plugin_upgrade_fw_data = array( $framework_data['Version'] => yit_get_upgrade_files( $plugin_license_path, $plugin_upgrade_path ) );
					}
				}
			} else {
				$plugin_upgrade_fw_data = array( $framework_data['Version'] => yit_get_upgrade_files( $plugin_license_path, $plugin_upgrade_path ) );
			}
		}
	}
}

if ( ! function_exists( 'yit_get_upgrade_files' ) ) {
	/**
	 * Retrieve the core files to include to manage license and upgrade if exists.
	 *
	 * @param string $plugin_license_path The license path.
	 * @param string $plugin_upgrade_path The upgrade path.
	 *
	 * @return array to files to include
	 */
	function yit_get_upgrade_files( $plugin_license_path, $plugin_upgrade_path = '' ) {
		$to_include = array();

		if ( ! ! $plugin_license_path ) {
			$plugin_upgrade_path = empty( $plugin_upgrade_path ) ? $plugin_license_path : $plugin_upgrade_path;
			$license_files       = array(
				'%yith-license-path%/lib/yit-licence.php',
				'%yith-license-path%/lib/yit-plugin-licence.php',
				'%yith-license-path%/lib/yit-theme-licence.php',
			);

			$upgrade_files = array( '%yith-upgrade-path%/lib/yit-plugin-upgrade.php' );

			$to_include_license = str_replace( '%yith-license-path%', $plugin_license_path, $license_files );
			$to_include_upgrade = str_replace( '%yith-upgrade-path%', $plugin_upgrade_path, $upgrade_files );

			$to_include = array_merge( $to_include_license, $to_include_upgrade );
		}

		return $to_include;
	}
}
PK`x1\��z WW+plugin-fw/yit-woocommerce-compatibility.phpnu�[���<?php
/**
 * Functions for WooCommerce 3.0 compatibility.
 *
 * @package YITH\PluginFramework
 */

defined( 'ABSPATH' ) || exit; // Exit if accessed directly.

if ( ! function_exists( 'WC' ) ) {
	return;
}

$changed_objects = array();

if ( ! function_exists( 'yit_get_prop' ) ) {
	/**
	 * Retrieve a property.
	 *
	 * @param object $object  The object.
	 * @param string $key     The Meta Key.
	 * @param bool   $single  Return first found meta with key, or all.
	 * @param string $context What the value is for. Valid values are view and edit.
	 *
	 * @return mixed|null The related value or null (if the $object is not a valid object).
	 * @deprecated 3.5 | use the WooCommerce CRUD directly instead.
	 */
	function yit_get_prop( $object, $key, $single = true, $context = 'view' ) {
		$prop_map   = yit_return_new_attribute_map();
		$is_wc_data = $object instanceof WC_Data;

		if ( $is_wc_data ) {
			$key    = ( array_key_exists( $key, $prop_map ) ) ? $prop_map[ $key ] : $key;
			$getter = false;
			if ( method_exists( $object, "get{$key}" ) ) {
				$getter = "get{$key}";
			} elseif ( method_exists( $object, "get_{$key}" ) ) {
				$getter = "get_{$key}";
			}

			if ( $getter ) {
				return $object->$getter( $context );
			} else {
				return $object->get_meta( $key, $single );
			}
		} else {
			$key = ( in_array( $key, $prop_map, true ) ) ? array_search( $key, $prop_map, true ) : $key;

			if ( isset( $object->$key ) ) {
				return $object->$key;
			} elseif ( yit_wc_check_post_columns( $key ) ) {
				return $object->post->$key;
			} else {
				$object_id = 0;
				$getter    = $object instanceof WC_Customer ? 'get_user_meta' : 'get_post_meta';

				if ( ! ! $object ) {
					$object_id = is_callable( array( $object, 'get_id' ) ) ? $object->get_id() : $object->id;
				}

				return ! ! $object_id ? $getter( $object_id, $key, true ) : null;
			}
		}
	}
}

if ( ! function_exists( 'yit_set_prop' ) ) {
	/**
	 * Set prop or props.
	 *
	 * @param object       $object The object.
	 * @param array|string $arg1   The key of the prop to set, or an array of props to set.
	 * @param false        $arg2   The value to set, or false if you want to set an array of props.
	 *
	 * @deprecated 3.5 | use the WooCommerce CRUD directly instead.
	 */
	function yit_set_prop( $object, $arg1, $arg2 = false ) {
		if ( ! is_array( $arg1 ) ) {
			$arg1 = array(
				$arg1 => $arg2,
			);
		}

		$prop_map   = yit_return_new_attribute_map();
		$is_wc_data = $object instanceof WC_Data;

		foreach ( $arg1 as $key => $value ) {
			if ( $is_wc_data ) {
				$key = ( array_key_exists( $key, $prop_map ) ) ? $prop_map[ $key ] : $key;

				$setter = false;
				if ( method_exists( $object, "set{$key}" ) ) {
					$setter = "set{$key}";
				} elseif ( method_exists( $object, "set_{$key}" ) ) {
					$setter = "set_{$key}";
				}

				if ( $setter ) {
					$object->$setter( $value );
				} else {
					$object->update_meta_data( $key, $value );
				}
			} else {
				$key = ( in_array( $key, $prop_map, true ) ) ? array_search( $key, $prop_map, true ) : $key;
				if ( ( strpos( $key, '_' ) === 0 ) ) {
					$key = substr( $key, 1 );
				}

				if ( yit_wc_check_post_columns( $key ) ) {
					$object->post->$key = $value;
				} else {
					$object->$key = $value;
				}
			}
		}
	}
}

if ( ! function_exists( 'yit_save_prop' ) ) {
	/**
	 * Save prop or props.
	 *
	 * @param object       $object       The object.
	 * @param array|string $arg1         The key of the prop to set, or an array of props to set.
	 * @param false        $arg2         The value to set, or false if you want to set an array of props.
	 * @param false        $force_update Unused attribute.
	 *
	 * @deprecated 3.5 | use the WooCommerce CRUD directly instead.
	 */
	function yit_save_prop( $object, $arg1, $arg2 = false, $force_update = false ) {
		if ( ! is_array( $arg1 ) ) {
			$arg1 = array(
				$arg1 => $arg2,
			);
		}

		$is_wc_data = $object instanceof WC_Data;

		foreach ( $arg1 as $key => $value ) {
			yit_set_prop( $object, $key, $value );

			if ( ! $is_wc_data ) {

				if ( yit_wc_check_post_columns( $key ) ) {
					yit_store_changes( $object->post, $key, $value );
				} else {
					$object_id = is_callable( array( $object, 'get_id' ) ) ? $object->get_id() : $object->id;

					update_post_meta( $object_id, $key, $value );
				}
			}
		}

		if ( $is_wc_data ) {
			$object->save();
		}
	}
}

if ( ! function_exists( 'yit_delete_prop' ) ) {
	/**
	 * Delete a prop.
	 *
	 * @param object $object The object.
	 * @param string $key    The key.
	 * @param string $value  The value.
	 *
	 * @deprecated 3.5 | use the WooCommerce CRUD directly instead.
	 */
	function yit_delete_prop( $object, $key, $value = '' ) {
		$prop_map   = yit_return_new_attribute_map();
		$is_wc_data = $object instanceof WC_Data;

		if ( $is_wc_data ) {
			$key = ( array_key_exists( $key, $prop_map ) ) ? $prop_map[ $key ] : $key;

			$getter = false;
			$setter = false;
			if ( method_exists( $object, "get{$key}" ) ) {
				$getter = "get{$key}";
			} elseif ( method_exists( $object, "get_{$key}" ) ) {
				$getter = "get_{$key}";
			}

			if ( method_exists( $object, "set{$key}" ) ) {
				$setter = "set{$key}";
			} elseif ( method_exists( $object, "set_{$key}" ) ) {
				$setter = "set_{$key}";
			}

			if ( $setter && $getter && method_exists( $object, $setter ) && method_exists( $object, $getter ) && ( ! $value || $object->$getter === $value ) ) {
				$object->$setter( '' );
			} elseif ( ( ! $value || $object->get_meta( $key ) === $value ) ) {
				$object->delete_meta_data( $key, $value );
			}

			$object->save();
		} else {
			if ( yit_wc_check_post_columns( $key ) && ( ! $value || $object->post->$key === $value ) ) {
				yit_store_changes( $object->post, $key, '' );
			} else {
				$object_id = is_callable( array( $object, 'get_id' ) ) ? $object->get_id() : $object->id;

				delete_post_meta( $object_id, $key, $value );
			}
		}
	}
}

if ( ! function_exists( 'yit_return_new_attribute_map' ) ) {
	/**
	 * Return the attribute map array.
	 *
	 * @return string[]
	 * @deprecated 3.5
	 */
	function yit_return_new_attribute_map() {
		return array(
			'post_parent'                => 'parent_id',
			'post_title'                 => 'name',
			'post_status'                => 'status',
			'post_content'               => 'description',
			'post_excerpt'               => 'short_description',
			// Orders --------------------.
			'paid_date'                  => 'date_paid',
			'_paid_date'                 => '_date_paid',
			'completed_date'             => 'date_completed',
			'_completed_date'            => '_date_completed',
			'_order_date'                => '_date_created',
			'order_date'                 => 'date_created',
			'order_total'                => 'total',
			'customer_user'              => 'customer_id',
			'_customer_user'             => 'customer_id',
			// Products ---------------------.
			'visibility'                 => 'catalog_visibility',
			'_visibility'                => '_catalog_visibility',
			'sale_price_dates_from'      => 'date_on_sale_from',
			'_sale_price_dates_from'     => '_date_on_sale_from',
			'sale_price_dates_to'        => 'date_on_sale_to',
			'_sale_price_dates_to'       => '_date_on_sale_to',
			'product_attributes'         => 'attributes',
			'_product_attributes'        => '_attributes',
			// Coupons ---------------------.
			'coupon_amount'              => 'amount',
			'exclude_product_ids'        => 'excluded_product_ids',
			'exclude_product_categories' => 'excluded_product_categories',
			'customer_email'             => 'email_restrictions',
			'expiry_date'                => 'date_expires',
		);
	}
}

if ( ! function_exists( 'yit_store_changes' ) ) {
	/**
	 * Store changes
	 *
	 * @param object      $object The object.
	 * @param string      $key    The key.
	 * @param false|mixes $value  The value.
	 *
	 * @deprecated 3.5
	 */
	function yit_store_changes( $object, $key, $value = false ) {
		global $changed_objects;

		$is_wc_data = $object instanceof WC_Data;

		if ( $is_wc_data ) {
			$object_reference = $object->get_id();

			$changed_objects[ $object_reference ]['object']          = $object;
			$changed_objects[ $object_reference ]['changes'][ $key ] = $value;

		} else {
			$changed_objects[ $object->ID ][ $key ] = $value;
		}
	}
}

if ( ! function_exists( 'yit_send_changes_to_db' ) ) {
	/**
	 * Send changes to DB.
	 *
	 * @deprecated 3.5
	 */
	function yit_send_changes_to_db() {
		global $changed_objects;

		if ( ! empty( $changed_objects ) ) {
			foreach ( $changed_objects as $id => $data ) {
				if ( version_compare( WC()->version, '2.7.0', '>=' ) ) {
					$object = is_a( $data['object'], 'WC_Product' ) ? wc_get_product( $id ) : wc_get_order( $id );

					yit_set_prop( $object, $data['changes'] );
					$object->save();
				} else {
					$data['ID'] = $id;
					wp_update_post( $data );
				}
			}
		}
	}
}

if ( ! function_exists( 'yit_get_orders' ) ) {
	/**
	 * Retrieve orders
	 *
	 * @param array $args Arguments.
	 *
	 * @return WC_Order[]
	 * @deprecated 3.5 | use wc_get_orders instead.
	 */
	function yit_get_orders( $args ) {
		if ( version_compare( WC()->version, '2.7', '<' ) ) {
			$args['fields'] = 'objects';
			$posts          = get_posts( $args );

			return array_map( 'wc_get_order', $posts );
		} else {
			return wc_get_orders( $args );
		}
	}
}

if ( ! function_exists( 'yit_get_products' ) ) {
	/**
	 * Retrieve products.
	 *
	 * @param array $args Arguments.
	 *
	 * @return WC_Product[]
	 * @deprecated 3.5 | use wc_get_orders instead.
	 */
	function yit_get_products( $args ) {
		if ( version_compare( WC()->version, '2.7', '<' ) ) {
			$args['fields'] = 'objects';
			$posts          = get_posts( $args );

			return array_map( 'wc_get_product', $posts );
		} else {
			return wc_get_products( $args );
		}
	}
}

if ( ! function_exists( 'yit_update_product_stock' ) ) {
	/**
	 * Update product stock.
	 *
	 * @param WC_Product $product        The product.
	 * @param int        $stock_quantity The stock quantity.
	 * @param string     $operation      The operation. Available values: set, increase, decrease.
	 *
	 * @return bool|int|null
	 * @deprecated 3.5 | use wc_update_product_stock instead.
	 */
	function yit_update_product_stock( $product, $stock_quantity = 1, $operation = 'set' ) {
		if ( function_exists( 'wc_update_product_stock' ) ) {
			$stock = wc_update_product_stock( $product, $stock_quantity, $operation );
		} else {
			switch ( $operation ) {
				case 'increase':
					$stock = $product->increase_stock( $stock_quantity );
					break;
				case 'decrease':
					$stock = $product->reduce_stock( $stock_quantity );
					break;
				case 'set':
				default:
					$stock = $product->set_stock( $stock_quantity );
					break;
			}
		}

		return $stock;
	}
}

if ( ! function_exists( 'yit_wc_deprecated_filters' ) ) {
	/**
	 * Deprecated filters.
	 *
	 * @return mixed|void
	 * @deprecated 3.5
	 */
	function yit_wc_deprecated_filters() {
		$filters = array(
			'woocommerce_email_order_schema_markup'      => 'woocommerce_structured_data_order',
			'woocommerce_product_width'                  => 'woocommerce_product_get_width',
			'woocommerce_product_height'                 => 'woocommerce_product_get_height',
			'woocommerce_product_length'                 => 'woocommerce_product_get_length',
			'woocommerce_product_weight'                 => 'woocommerce_product_get_weight',
			'woocommerce_get_sku'                        => 'woocommerce_product_get_sku',
			'woocommerce_get_price'                      => 'woocommerce_product_get_price',
			'woocommerce_get_price'                      => 'woocommerce_product_variation_get_price',
			'woocommerce_get_regular_price'              => 'woocommerce_product_get_regular_price',
			'woocommerce_get_sale_price'                 => 'woocommerce_product_get_sale_price',
			'woocommerce_product_tax_class'              => 'woocommerce_product_get_tax_class',
			'woocommerce_get_stock_quantity'             => 'woocommerce_product_get_stock_quantity',
			'woocommerce_get_product_attributes'         => 'woocommerce_product_get_attributes',
			'woocommerce_product_gallery_attachment_ids' => 'woocommerce_product_get_gallery_image_ids',
			'woocommerce_product_review_count'           => 'woocommerce_product_get_review_count',
			'woocommerce_product_files'                  => 'woocommerce_product_get_downloads',
			'woocommerce_get_currency'                   => 'woocommerce_order_get_currency',
			'woocommerce_order_amount_discount_total'    => 'woocommerce_order_get_discount_total',
			'woocommerce_order_amount_discount_tax'      => 'woocommerce_order_get_discount_tax',
			'woocommerce_order_amount_shipping_total'    => 'woocommerce_order_get_shipping_total',
			'woocommerce_order_amount_shipping_tax'      => 'woocommerce_order_get_shipping_tax',
			'woocommerce_order_amount_cart_tax'          => 'woocommerce_order_get_cart_tax',
			'woocommerce_order_amount_total'             => 'woocommerce_order_get_total',
			'woocommerce_order_amount_total_tax'         => 'woocommerce_order_get_total_tax',
			'woocommerce_order_amount_total_discount'    => 'woocommerce_order_get_total_discount',
			'woocommerce_order_amount_subtotal'          => 'woocommerce_order_get_subtotal',
			'woocommerce_order_tax_totals'               => 'woocommerce_order_get_tax_totals',
			'woocommerce_refund_amount'                  => 'woocommerce_get_order_refund_get_amount',
			'woocommerce_refund_reason'                  => 'woocommerce_get_order_refund_get_reason',
			'default_checkout_country'                   => 'default_checkout_billing_country',
			'default_checkout_state'                     => 'default_checkout_billing_state',
			'default_checkout_postcode'                  => 'default_checkout_billing_postcode',
		);

		return apply_filters( 'yit_wc_deprecated_filters', $filters );
	}
}

if ( ! function_exists( 'yit_fix_wc_deprecated_filters' ) ) {
	/**
	 * Fix WooCommerce deprecated filters.
	 *
	 * @deprecated 3.5
	 */
	function yit_fix_wc_deprecated_filters() {
		if ( ! version_compare( WC()->version, '2.7.0', '<' ) ) {
			return;
		}

		$deprecated_filters = yit_wc_deprecated_filters();
		foreach ( $deprecated_filters as $old => $new ) {
			add_filter( $old, 'yit_wc_deprecated_filter_mapping', 10, 100 );
		}
	}
}

if ( ! function_exists( 'yit_wc_deprecated_filter_mapping' ) ) {
	/**
	 * Deprecated filter mapping.
	 *
	 * @return mixed
	 * @deprecated 3.5
	 */
	function yit_wc_deprecated_filter_mapping() {
		$deprecated_filters = yit_wc_deprecated_filters();

		$filter = current_filter();
		$args   = func_get_args();
		$data   = $args[0];

		if ( isset( $deprecated_filters[ $filter ] ) ) {
			if ( has_filter( $deprecated_filters[ $filter ] ) ) {
				$data = apply_filters_ref_array( $deprecated_filters[ $filter ], $args );
			}
		}

		return $data;
	}
}

if ( ! function_exists( 'yit_wc_check_post_columns' ) ) {
	/**
	 * Check the post columns.
	 *
	 * @param string $key The key.
	 *
	 * @return bool
	 * @deprecated 3.5
	 */
	function yit_wc_check_post_columns( $key ) {
		$columns = array(
			'post_author',
			'post_date',
			'post_date_gmt',
			'post_content',
			'post_title',
			'post_excerpt',
			'post_status',
			'comment_status',
			'ping_status',
			'post_password',
			'post_name',
			'to_ping',
			'pinged',
			'post_modified',
			'post_modified_gmt',
			'post_content_filtered',
			'post_parent',
			'guid',
			'menu_order',
			'post_type',
			'post_mime_type',
			'comment_count',
		);

		return in_array( $key, $columns, true );
	}
}


/*  Shortcuts for common functions   */

if ( ! function_exists( 'yit_get_order_id' ) ) {
	/**
	 * Retrieve the order id
	 *
	 * @param WC_Order $order The Order.
	 *
	 * @return int
	 * @deprecated 3.5 | use $order->get_id() instead.
	 */
	function yit_get_order_id( $order ) {
		return yit_get_prop( $order, 'id' );
	}
}

if ( ! function_exists( 'yit_get_product_id' ) ) {
	/**
	 * Retrieve the product id
	 *
	 * @param WC_Product $product The product.
	 *
	 * @return mixed
	 * @deprecated 3.5 | use $product->get_id() instead.
	 */
	function yit_get_product_id( $product ) {
		return yit_get_prop( $product, 'id' );
	}
}

if ( ! function_exists( 'yit_get_base_product_id' ) ) {
	/**
	 * Retrieve the parent product ID for WC_Product_Variation instances
	 * or the product ID in the other cases.
	 *
	 * @param WC_Product $product The product.
	 *
	 * @return int
	 */
	function yit_get_base_product_id( $product ) {

		return $product instanceof WC_Data && $product->is_type( 'variation' ) ?
			yit_get_prop( $product, 'parent_id' ) :
			yit_get_prop( $product, 'id' );
	}
}

if ( ! function_exists( 'yit_get_display_price' ) ) {
	/**
	 * Get the display price.
	 *
	 * @param WC_Product $product The product.
	 * @param string     $price   The price.
	 * @param int        $qty     The quantity.
	 *
	 * @return string The price to display
	 */
	function yit_get_display_price( $product, $price = '', $qty = 1 ) {
		if ( version_compare( WC()->version, '2.7.0', '>=' ) ) {
			$price = wc_get_price_to_display(
				$product,
				array(
					'qty'   => $qty,
					'price' => $price,
				)
			);
		} else {
			$price = $product->get_display_price( $price, $qty );
		}

		return $price;
	}
}

if ( ! function_exists( 'yit_get_price_excluding_tax' ) ) {
	/**
	 * Get price excluding taxes.
	 *
	 * @param WC_Product $product The product.
	 * @param int        $qty     The quantity.
	 * @param string     $price   The price.
	 *
	 * @return float|string
	 */
	function yit_get_price_excluding_tax( $product, $qty = 1, $price = '' ) {
		if ( version_compare( WC()->version, '2.7.0', '>=' ) ) {
			$price = wc_get_price_excluding_tax(
				$product,
				array(
					'qty'   => $qty,
					'price' => $price,
				)
			);
		} else {
			$price = $product->get_price_excluding_tax( $qty, $price );
		}

		return $price;
	}
}

if ( ! function_exists( 'yit_get_price_including_tax' ) ) {
	/**
	 * Get price including taxes.
	 *
	 * @param WC_Product $product The product.
	 * @param int        $qty     The quantity.
	 * @param string     $price   The price.
	 *
	 * @return float|string
	 */
	function yit_get_price_including_tax( $product, $qty = 1, $price = '' ) {
		if ( version_compare( WC()->version, '2.7.0', '>=' ) ) {
			$price = wc_get_price_including_tax(
				$product,
				array(
					'qty'   => $qty,
					'price' => $price,
				)
			);
		} else {
			$price = $product->get_price_including_tax( $qty, $price );
		}

		return $price;
	}
}

if ( ! function_exists( 'yit_get_product_image_id' ) ) {
	/**
	 * Get the product image ID
	 *
	 * @param WC_Product $product The product.
	 * @param string     $context What the value is for. Valid values are view and edit.
	 *
	 * @return mixed
	 * @deprecated 3.5 | use $product->get_image_id() instead.
	 */
	function yit_get_product_image_id( $product, $context = 'view' ) {
		if ( version_compare( WC()->version, '2.7.0', '>=' ) ) {
			$image_id = $product->get_image_id( $context );
		} else {
			$image_id = $product->get_image_id();
		}

		return $image_id;
	}
}

if ( ! function_exists( 'yit_get_refund_amount' ) ) {
	/**
	 * Get the refund amount.
	 *
	 * @param WC_Order_Refund $refunded_order The Refunded order.
	 * @param string          $context        What the value is for. Valid values are view and edit.
	 *
	 * @return float
	 * @deprecated 3.5 | use $refunded_order->get_amount() instead.
	 */
	function yit_get_refund_amount( $refunded_order, $context = 'view' ) {
		$is_wc_data = $refunded_order instanceof WC_Data;

		if ( $is_wc_data ) {
			return $refunded_order->get_amount( $context );
		} else {
			return $refunded_order->get_refund_amount();
		}
	}
}

if ( ! function_exists( 'yit_set_refund_amount' ) ) {
	/**
	 * Set the refund amount.
	 *
	 * @param WC_Order_Refund $refunded_order The Refunded order.
	 * @param float           $amount         The amount.
	 *
	 * @throws WC_Data_Exception Exception if the amount is invalid.
	 * @deprecated 3.5 | use $refunded_order->set_amount() instead.
	 */
	function yit_set_refund_amount( $refunded_order, $amount ) {
		$is_wc_data = $refunded_order instanceof WC_Data;

		if ( $is_wc_data ) {
			$refunded_order->set_amount( $amount );
		} else {
			$refunded_order->refund_amount = $amount;
		}
	}
}

if ( ! function_exists( 'yit_get_refund_reason' ) ) {
	/**
	 * Retrieve the refund reason.
	 *
	 * @param WC_Order_Refund $refunded_order The Refunded order.
	 *
	 * @return string
	 * @deprecated 3.5 | use $refunded_order->get_reason() instead.
	 */
	function yit_get_refund_reason( $refunded_order ) {
		$is_wc_data = $refunded_order instanceof WC_Data;

		if ( $is_wc_data ) {
			return $refunded_order->get_reason();
		} else {
			return $refunded_order->get_refund_reason();
		}
	}
}

if ( ! function_exists( 'yit_product_visibility_meta' ) ) {
	/**
	 * Visibility meta query.
	 *
	 * @param array $args Arguments.
	 *
	 * @return array
	 */
	function yit_product_visibility_meta( $args ) {
		if ( version_compare( WC()->version, '2.7.0', '<' ) ) {
			$args['meta_query']   = isset( $args['meta_query'] ) ? $args['meta_query'] : array(); // phpcs:ignore WordPress.DB.SlowDBQuery.slow_db_query_meta_query
			$args['meta_query'][] = WC()->query->visibility_meta_query();
		} elseif ( taxonomy_exists( 'product_visibility' ) ) {
			$product_visibility_term_ids = wc_get_product_visibility_term_ids();
			$args['tax_query']           = isset( $args['tax_query'] ) ? $args['tax_query'] : array(); // phpcs:ignore WordPress.DB.SlowDBQuery.slow_db_query_tax_query
			$args['tax_query'][]         = array(
				'taxonomy' => 'product_visibility',
				'field'    => 'term_taxonomy_id',
				'terms'    => is_search() ? $product_visibility_term_ids['exclude-from-search'] : $product_visibility_term_ids['exclude-from-catalog'],
				'operator' => 'NOT IN',
			);
		}

		return $args;
	}
}

if ( ! function_exists( 'yit_datetime_to_timestamp' ) ) {
	/**
	 * Convert string date to timestamp.
	 *
	 * @param string $date The date.
	 *
	 * @return false|int
	 */
	function yit_datetime_to_timestamp( $date ) {
		if ( ! is_int( $date ) ) {
			$date = strtotime( $date );
		}

		return $date;
	}
}

yit_fix_wc_deprecated_filters();
add_action( 'shutdown', 'yit_send_changes_to_db' );
PK`x1\��,Կ�plugin-fw/phpcs.xmlnu�[���<?xml version="1.0"?>
<ruleset name="YITH Plugin Framework Coding Standards">
    <description>YITH Plugin Framework - PHP_CodeSniffer ruleset.</description>

    <file>.</file>

    <!-- Exclude paths -->
    <exclude-pattern>Gruntfile.js</exclude-pattern>
    <exclude-pattern>/assets/*</exclude-pattern>
    <exclude-pattern>/bin/*</exclude-pattern>
    <exclude-pattern>/dist/*</exclude-pattern>
    <exclude-pattern>/languages/*</exclude-pattern>
    <exclude-pattern>*/node_modules/*</exclude-pattern>
    <exclude-pattern>*/tests/*</exclude-pattern>
    <exclude-pattern>*/tools/*</exclude-pattern>
    <exclude-pattern>*/vendor/*</exclude-pattern>

    <!-- Show progress, show the error codes for each message (source). -->
    <arg value="ps"/>

    <!-- Strip the filepaths in reports down to the relevant bit. -->
    <arg name="basepath" value="./"/>

    <!-- Check up to 8 files simultaneously. -->
    <arg name="parallel" value="8"/>

    <!-- Configs -->
    <config name="minimum_supported_wp_version" value="5.2"/>
    <!-- Check for cross-version support for PHP 5.6 and higher. -->
    <config name="testVersion" value="7.0-"/>

    <!-- Rules -->

    <!-- WordPress -->
    <rule ref="WordPress">
        <exclude name="WordPress.DB.DirectDatabaseQuery.NoCaching" />
        <exclude name="WordPress.DB.DirectDatabaseQuery.DirectQuery" />
        <exclude name="WordPress.DB.DirectDatabaseQuery.SchemaChange" />
    </rule>

    <rule ref="WordPress.Security.ValidatedSanitizedInput">
        <properties>
            <property name="customSanitizingFunctions" type="array" value="wc_clean,wc_sanitize_tooltip,wc_format_decimal,wc_stock_amount,wc_sanitize_permalink,wc_sanitize_textarea"/>
        </properties>
    </rule>

    <rule ref="WordPress.Security.EscapeOutput">
        <properties>
            <property name="customEscapingFunctions" type="array" value="wc_help_tip,wc_sanitize_tooltip,wc_selected,wc_kses_notice,wc_esc_json,wc_query_string_form_fields,wc_make_phone_clickable,yith_plugin_fw_html_data_to_string,yith_field_deps_data,yith_panel_field_deps_data,yith_plugin_fw_html_attributes_to_string"/>
        </properties>
    </rule>
</ruleset>
PK`x1\�ej}��!plugin-fw/yit-deactive-plugin.phpnu�[���<?php
/**
 * Functions for deactivating plugins.
 *
 * @package YITH\PluginFramework
 */

defined( 'ABSPATH' ) || exit; // Exit if accessed directly.

if ( ! function_exists( 'yit_deactive_free_version' ) ) {
	/**
	 * Deactivate the free version of the plugin.
	 *
	 * @param string $to_deactivate The constant name of the plugin to deactivate.
	 * @param string $to_activate   The path of the File of the plugin to activate.
	 */
	function yit_deactive_free_version( $to_deactivate, $to_activate ) {
		if ( ! function_exists( 'is_plugin_active' ) ) {
			require_once ABSPATH . 'wp-admin/includes/plugin.php';
		}

		if ( defined( $to_deactivate ) && is_plugin_active( constant( $to_deactivate ) ) ) {
			deactivate_plugins( constant( $to_deactivate ) );

			if ( ! function_exists( 'wp_create_nonce' ) ) {
				header( 'Location: plugins.php' );
				exit();
			}

			global $status, $page, $s;
			$redirect = 'plugins.php?action=activate&plugin=' . $to_activate . '&plugin_status=' . $status . '&paged=' . $page . '&s=' . $s;
			$redirect = esc_url_raw( add_query_arg( '_wpnonce', wp_create_nonce( 'activate-plugin_' . $to_activate ), $redirect ) );

			header( 'Location: ' . $redirect );
			exit();
		}
	}
}
PK`x1\K$fGG+plugin-fw/languages/yith-plugin-fw-nl_NL.monu�[��������@A[,s �
����
"61Nh%�3�,2>
q��������	!
03>4r3�'�	"!8Z@b���
��!&(O\4e%����-�-
5@ZV��E9
�!�/�7�B$@g;�=�g"3��-���'�&�6p?��J�'Gey���	��
����d�
P[
q���#��� - M e u � � )� '� (� &(!O!n!�!�!�!�!�!�!�!�	"0�#0�#1$'G$
o$Oz$�$�$
�$�$�$%
%
+%9%F%S%e%v%�%�%�%�%�%�%�%	�%	�%�%&&
3&A&M&`&v&�&�&>�&H�&:='�x'}(l�(=�(K+)6w)�),�)	�)]�)W*^*d*v**�*�*�*�*<�*+')+(Q+z++�+�+�+�+�+ �+,2(,5[,�-"�-6�-%.+.7.D."T.$w.�.�.>�.i/+k/=�/>�/P0e0x0�0�0�0	�0
�0�0�0�0�0�01&"1?I1<�1=�10252A2P2X2
d2@o2�2�2�2
�23	!3+3B3N3^3
u34�3*�3�3�34 4,4
94D4\Y4��4^X5�6
�6�6�67(7B7b7#{7U�7�788�-8�8
�8�8d9#s9�9K�9�9:::<:K:Z:
c:q:�:�:�:�:�:;+;G;Y;
i;t;�;�;�;�;	�;�;
�;�;<&<;<L<R<X<_<e<
{<�<	�<
�<
�<�<
�<
�<��<m>�>�>�>	�>Z�>5?A?a?s?|?�?�?�?�?�?�?@@"@/@@@Z@q@~@�@	�@�@�@#�@�@	A
A#A
/A:ACA'LAAtAF�AK�A�IB��BykCJ�C\0D�D�D�D	�D`�DLESEZE
oE}E�E�E�E�EA�EF*F.F1F6FKFhFuF�F�F3�F�F8�Fq�gWa5�6R X=7{�Y��x
��4��&
��%I~���?'H�Q�V�S,��}U��E3l.p>��KeD�	����MP[]t�*��"��b���B�����w��#!|-mN�+�����$�1�u�/�k<s�d9Z�OrF@;�A)o��y:\�n�z0f���^�`�ThG��J��(i�cj_��v2�CL�8����%1$s (#%2$s &ndash; %3$s)%1$s needs %2$s enabled%1$s needs at least %2$s of available memory%1$s needs at least %2$s version:) Thanks!Action linksSettingsAdd AllAdd Images to GalleryAdd custom product tabAdd imagesAdd to galleryAn error has occurred during import. Please try again.An error has occurred, which probably means the feed is down. Try again later.Are you sure you want to delete "%s"?Are you sure you want to delete the selected items?Are you sure you want to move "%s" to trash?Are you sure you want to trash the selected items?Are you sure?Available MemoryBack to "%s"Back to the listButton labelCloseButton textCancelButton textConfirmChoose a sidebarClearClear colorClose allColor valueConfirm deleteConfirm trashContact your hosting company in order to enable it.Contact your hosting company in order to install it.Contact your hosting company in order to update it.Content of the tab. (HTML is supported)Copied!Copy CodeCopy-to-clipboard button textCopyCopy-to-clipboard messageCopied!Custom:Data: %1$.2fMB | Index: %2$.2fMB | Free: %3$.2fMB | Engine: %4$sDatabase Data SizeDatabase Free SizeDatabase Index SizeDatabase InfoDatabase imported correctly.DefaultDefined WP_CACHEDeleteDelete confirmation actionYes, deleteDelete imageDisabledDiscover all our plugins available on: %1$s and %2$sDo you want to remove the custom tab?DownloadElement deleted correctly.Element updated correctly.Elementor Widget - section title%s - OptionsEnabledExpand allExternal object cacheFor optimal functioning of our plugins, we suggest setting at least %s of available memoryFrom now on, you can find all plugin options in YITH menu. Plugin customization settings will be available as a new entry in YITH menu.From now on, you can find the option panel of YITH plugins in YITH menu. Every time one of our plugins is added, a new entry will be added to this menu. For example, after the update, plugin options (such as for YITH WooCommerce Wishlist, YITH WooCommerce Ajax Search, etc.) will be moved from previous location to YITH menu.Further actionsGD LibraryHelp tab FAQ linkView all FAQs >Help tab FAQ titleLast FAQs in our Help CenterHelp tab Read Documentation linkRead the documentationHelp tab Read Documentation linkto learn from basics how it worksHelp tab Watch Videotutorials linkVideos are also available in:Help tab Watch Videotutorials linkWatch our videotutorialsHelp tab Watch Videotutorials linkWe show you some use casesHelp tab default descriptionWe want to help you to enjoy a wonderful experience with all our products.Help tab default titleThank you for purchasing %s!Help tab nameHelpHelp tab submit ticket buttonSubmit a ticketHelp tab submit ticket descriptionIf you are experiencing some technical issue ask help to our developers. Submit a ticket in our support desk and we will help you as soon as possible.Help tab submit ticket titleNeed help?Help tab view FAQs linkCheck the FAQsHelp tab view FAQs linkto find answers to your doubtsHelp tab view all video linkCheck the full <a href="%s" target="_blank">Playlist on Youtube</a> to learn more >How to install premium versionIconv ModuleIf you continue with this action, you will reset all options in this page.Image height field labelHeightImage width field labelWidthImageMagick VersionLatest news from YITH BlogLeft SidebarLeft sidebarLicenseLog FilesMultiByte StringMySQL versionN/ANameNoNo Log file available. Enable the WordPress debug by adding this in the %s file of your installationNo sidebarOPCache Save CommentsOptions SavedOutput IP AddressPHP VersionPHP error_log filePHPInfoPlugin FWLatest update released onPlugin FWView ChangelogPlugin Row MetaDocumentationPlugin Row MetaLive DemoPlugin Row MetaPremium versionPlugin Row MetaSupportPlugin SettingsPlugins ActivatedPlugins RequirementsPlugins UpgradedPosition in the "Dimensions" fieldBottomPosition in the "Dimensions" fieldLeftPosition in the "Dimensions" fieldRightPosition in the "Dimensions" fieldTopPost actionDelete PermanentlyPost actionDuplicatePost actionEditPost actionPreviewPost actionRestorePost actionTrashPost actionViewPreview:Privacy Policy ContentPaymentsPrivacy Policy ContentThis sample language includes the basics around what personal data your store may be collecting, storing and sharing, as well as who may have access to that data. Depending on what settings are enabled and which additional plugins are used, the specific information shared by your store will vary. We recommend consulting with a lawyer when deciding what information to disclose on your privacy policy.Privacy Policy ContentWhat we collect and storePrivacy Policy ContentWhat we share with othersPrivacy Policy ContentWho on our team has accessPrivacy Policy Guide TitleYITH PluginsRSS Error:Read more %1$shere%2$s or contact your hosting company in order to increase it.RemoveRemove %1$s from %2$s fileRemove AllResetReset DefaultsReset to defaultRight SidebarRight sidebarSave ChangesSave OptionsSearch CategoriesSearch CustomersSearch PostsSearch ProductSelect ColorSelect default colorSet DefaultSettingsSettings resetSettings savedSimpleXMLSite InfoSite URLSorry, import is disabled.Sorting successful.System StatusTLS VersionTerm actionDeleteTerm actionDuplicateTerm actionEditTerm actionViewThe added file is not valid.The changes you have made will be lost if you leave this page.The element you have entered already exists. Please, enter another name.The file size exceeds 8 megabytes so it must be downloadedThe system check cannot determine which %1$s version is installed because %2$s module is disabled. Ask your hosting company to enable it.The system check cannot determine which %1$s version is installed due to a connection issue between your site and our server.The system check has detected some compatibility issues on your installation.%1$sClick here%2$s to know moreThere was an error with your request; please try again later.This action cannot be undone and you will not be able to recover this data.Tooltip in the "Dimensions" fieldLink values togetherTotal Database SizeTrash confirmation actionYes, move to trashURL FOpenUpdate it to the latest version in order to benefit of all new features and security updates.UploadValueWP debug.log fileWarning!We need your supportWooCommerceWooCommerce VersionWordPress CronWordPress VersionWordPress recommends a minimum MySQL version of 5.6. See: %sWordPress requirementsYES/NO button: use MAX 4 characters!NOYES/NO button: use MAX 4 characters!YESYITHYITH Latest UpdatesYITH Plugin Framework VersionYITH PluginsYITH System InformationYes[gutenberg]: Category NameYITHhelp us by leaving a good reviewloaded by %sto keep updating and improving the plugin. Please,Project-Id-Version: YITH Framework
Report-Msgid-Bugs-To: YITH <plugins@yithemes.com>
PO-Revision-Date: 2021-09-29 11:02:22+0000
Language: nl
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Plural-Forms: nplurals=2; plural=n != 1;
X-Generator: GlotPress/3.0.0-alpha.2
%1$s (#%2$s &ndash; %3$s)%1$s heeft nodig %2$s ingeschakeld%1$ss heeft ten minste %2$s beschikbaar geheugen nodig%1$s heeft minstens %2$s versie nodig:) Bedankt!InstellingenAllen toevoegenAfbeeldingen toevoegen aan galerijAangepaste product tabblad toevoegenVoeg images toeAan galerij toevoegenEr is een fout opgetreden tijdens importeren. Probeer opnieuw.Er is een fout opgetreden, wat waarschijnlijk betekent dat de feed niet werkt. Probeer het later opnieuw.Weet je zeker dat je "%s" wilt verwijderen?Weet je zeker dat je de geselecteerde items wilt verwijderen?Weet je zeker dat je "%s" naar de prullenbak wilt verplaatsen?Weet je zeker dat je het geselecteerde item naar de prullenbak wilt verplaatsen?Weet je het zeker?Beschikbaar geheugenTerug naar "%s"Terug naar de lijstSluitenAnnulerenBevestigenKies een sidebarWissenKleur wissenSluit allenKleurwaardeVerwijderen bevestigenVerplaatsen naar prullenbak bevestigenNeem contact op met uw hosting provider om het in te schakelen.Neem contact op met je hostingbedrijf om het te installeren.Neem contact op met uw hosting provider om het bij te werken.Inhoud van het tabblad. (HTML wordt ondersteund)Gekopieerd!Code kopiërenKopieerGekopieerd!Aangepast:Data: %1$.2fMB | Index: %2$.2fMB | Free: %3$.2fMB | Engine: %4$sDatabase Data grootteDatabase gratis grootteDatabase Index grootteDatabase InfoDatabase juist geïmporteerd.StandaardGedefinieerde WP_CACHEVerwijderenJa, verwijderenAfbeelding verwijderenUitgeschakeldOntdek al onze beschikbare plugins op: %1$s and %2$sWil je dit aangepaste tabblad verwijderen?DownloadElement juist verwijderd.Element juist geüpdatet.%s - OptiesIngeschakeldOpen allenExterne object cacheOm de plugins optimaal te laten functioneren, adviseren wij minstens %s beschikbaar geheugenVanaf nu kun je alle plugin opties vinden in het YITH Plugins menu. Plugin aanpassingen instellingen zullen beschikbaar zijn als nieuwe toegang in het YITH menu.Vanaf nu kun je het optiepaneel van YITH plugins vinden in het YITH menu. Elke keer dat een van onze plugins wordt toegevoegd, wordt er een nieuw item aan dit menu toegevoegd. Bijvoorbeeld na de update worden plugin opties (zoals voor YITH WooCommerce Wishlist, YITH WooCommerce Ajax Search, enz.) verplaatst van de vorige locatie naar het YITH menu.Verdere actiesGD LibraryBekijk alle FAQs >Laatste FAQs in ons Help CenterLees de documentatieom vanaf de basis te leren hoe het werktVideos zijn ook beschikbaar in:Bekijk onze video uitlegWe tonen je enkele gebruikscasussenWe willen je helpen om te genieten van de geweldige ervaringen met al onze producten.Bedankt voor het kopen van %s!HelpVerstuur een ticketAls je een technisch probleem ondervindt, vraag dan hulp aan onze developers. Je kunt een ticket indienen bij onze supportdesk en we helpen je zo snel mogelijk verder.Hulp nodig?Check de FAQsom je twijfels te beantwoordenBekijk de volledige <a href="%s" target="_blank">Playlist op Youtube</a> om meer te weten te komen >Hoe installeer ik de premium versieVerzendmodule inschakelenAls je doorgaat met deze actie, zal je alle opties op deze pagina resetten.HoogteBreedteImageMagick VersieLaatste nieuws van YITH BlogLinker sidebarLinker sidebarLicentieLog bestandenMultiByte StringMySQL versieN.v.tNameNeeGeen log bestand beschikbaar. WordPress debug inschakelen door dit bestand toe te voegen aan het %s bestand van je installatie Geen sidebarOPCache Opmerkingen opslaanOpties opgeslagenOutput IP AdresPHP VersiePHP error_log bestandPHPInfoLaatste update uitgebracht opBekijk wijzigingenlogboekDocumentatieLive DemoPremium versieOndersteuningPlugin instellingenPlugins geactiveerdPlugin benodigdhedenPlugins UpgradedOnderLinksRechtsBovenPermanent verijwderenDuplicerenBewerkenVoorbeeldHerstellenPrullenbakBekijkenVoorbeeld:BetalingenDit geschreven voorbeeld bevat de basis rondom welke persoonlijke gegevens je winkel mag verzamelen, bewaren en delen, en wie toegang heeft tot deze gegevens. Afhankelijk van welke instellingen zijn ingeschakeld en welke aanvullende plugins worden gebruikt, zal de informatie die wordt gedeeld door je winkel variëren. We raden aan om een advocaat te raadplegen wanneer je besluit je privacy beleid op te stellen.Wat we verzamelen en bewarenWat wij delen met anderenWie van ons team heeft toegangYITH PluginsRSS-fout:Lees %1$s hier%2$s meer, of neem contact op met uw hostingmaatschappij om het te verhogen.VerwijderenVerwijder %1$s uit %2$s bestandAllen verwijderenResettenReset Standaard instellingenResetten naar standaardRechter sidebarRechter sidebarWijzigingen opslaanOpties opslaanZoek categorieënKlanten zoekenPosts zoekenZoek ProductKleur selecterenStandaardkleur selecterenOp standaard instellenInstellingenInstellingen resettenInstellingen opgeslagenSimpleXMLSite informatieSite URLSorry, importeren is uitgeschakeld.Succesvol gesorteerd.Systeem StatusTLS VersieVerwijderenDuplicerenBewerkenBekijkenHet toegevoegde bestand is niet geldig.Als je deze pagina verlaat zullen alle wijzigingen verloren gaan.Het element dat je hebt ingevoerd bestaat al. Voer een andere naam in.De bestandsgrootte overschrijd 8 megabytes, dus het moet worden gedownload We kunnen niet bepalen welke %1$s versie is geïnstalleerd omdat %2$s de module is uitgeschakeld. Vraag je hostingmaatschappij om het in te schakelen.De systeemcontrole kan niet bepalen welke versie van %1$s is geïnstalleerd vanwege een verbindingsprobleem tussen je site en onze server.Het systeem heeft enkele compatibiliteitsproblemen gevonden op uw installatie.%1$sklik hier%2$s om meer te weten te komenEr is een fout opgetreden met je verzoek, probeer het later opnieuw a.u.b.Deze actie kan niet ongedaan gemaakt worden en je zult deze gegevens niet kunnen herstellen.Waarden aan elkaar koppelenTotale Database grootteJa, verplaatsen naar prullenbakURL FOpenBijwerken naar de laatste versie, om te profiteren van alle nieuwe opties en veiligheidsupdates.UploadWaardeWP debug.log bestandWaarschuwing!We hebben je hulp nodigWooCommerceWooCommerce VersieWordPress CronWordPress VersieWordPress raadt een minimale MySQL versie aan van 5.6. Bekijk: %sWordPress vereistenNEEJAYITHYITH laatste updatesYITH Plugin Framework VersieYITH PluginsYITH Systeem InformatieJaYITHhelp ons door een goede beoordeling achter te latengeladen door %som de plugin te blijven bijwerken en verbeteren. A.u.b.,PK`x1\U)R'�G�G+plugin-fw/languages/yith-plugin-fw-it_IT.monu�[��������@A[,s �
����
"61Nh%�3�,2>
q��������	!
03>4r3�'�	"!8Z@b���
��!&(O\4e%����-�-
5@ZV��E9
�!�/�7�B$@g;�=�g"3��-���'�&�6p?��J�'Gey���	��
����d�
P[
q���#��� - M e u � � )� '� (� &(!O!n!�!�!�!�!�!�!�!�	"0�#0�#1$'G$
o$Oz$�$�$
�$�$�$%
%
+%9%F%S%e%v%�%�%�%�%�%�%�%	�%	�%�%&&
3&A&M&`&v&�&�&>�&H�&:='�x'}(l�(=�(K+)6w)�),�)	�)]�)W*^*d*v**�*�*�*�*<�*+')+(Q+z++�+�+�+�+�+ �+,2(,5[,�-'�-4�-).
2.=.J.Y.'y.�.�.B�.^
/#l/6�/.�/A�/80D0X0e0v0}0�0�0�0�0�0�0�0�02
14=11r10�1�1�1�1�1�1C
2N2!g2�2
�2!�2�2�2�2�233:$3(_3�3�3"�3�3	�3
�3�3l4�{4h5�6
�6�6'�6�6%�6"767U7Pt7�7�7�7��7�8�8%�8[�8#M9q9U~9�9	�9�9�9:3:K:]:f:w:�:�:�:n�:;;/;?;V;c;v;"~;�;�;	�;�;
�;�;<<#<5<
><I<R<Z<s<{<	�<
�<�<
�<
�<	�<��<�>�>5�>�>?Z?k?s?
�?
�? �?%�?�?@@*@;@K@_@n@�@�@ �@�@�@�@	
A	A!A,.A$[A�A�A�A�A�A
�A�A?�AE#BOiB��B�ZC~�CDnDT�DEE4E	LEpVE�E�E�E�E �EF F8FGF>]F�F�F�F�F�F�F�FGGG5$GZG:iGq�gWa5�6R X=7{�Y��x
��4��&
��%I~���?'H�Q�V�S,��}U��E3l.p>��KeD�	����MP[]t�*��"��b���B�����w��#!|-mN�+�����$�1�u�/�k<s�d9Z�OrF@;�A)o��y:\�n�z0f���^�`�ThG��J��(i�cj_��v2�CL�8����%1$s (#%2$s &ndash; %3$s)%1$s needs %2$s enabled%1$s needs at least %2$s of available memory%1$s needs at least %2$s version:) Thanks!Action linksSettingsAdd AllAdd Images to GalleryAdd custom product tabAdd imagesAdd to galleryAn error has occurred during import. Please try again.An error has occurred, which probably means the feed is down. Try again later.Are you sure you want to delete "%s"?Are you sure you want to delete the selected items?Are you sure you want to move "%s" to trash?Are you sure you want to trash the selected items?Are you sure?Available MemoryBack to "%s"Back to the listButton labelCloseButton textCancelButton textConfirmChoose a sidebarClearClear colorClose allColor valueConfirm deleteConfirm trashContact your hosting company in order to enable it.Contact your hosting company in order to install it.Contact your hosting company in order to update it.Content of the tab. (HTML is supported)Copied!Copy CodeCopy-to-clipboard button textCopyCopy-to-clipboard messageCopied!Custom:Data: %1$.2fMB | Index: %2$.2fMB | Free: %3$.2fMB | Engine: %4$sDatabase Data SizeDatabase Free SizeDatabase Index SizeDatabase InfoDatabase imported correctly.DefaultDefined WP_CACHEDeleteDelete confirmation actionYes, deleteDelete imageDisabledDiscover all our plugins available on: %1$s and %2$sDo you want to remove the custom tab?DownloadElement deleted correctly.Element updated correctly.Elementor Widget - section title%s - OptionsEnabledExpand allExternal object cacheFor optimal functioning of our plugins, we suggest setting at least %s of available memoryFrom now on, you can find all plugin options in YITH menu. Plugin customization settings will be available as a new entry in YITH menu.From now on, you can find the option panel of YITH plugins in YITH menu. Every time one of our plugins is added, a new entry will be added to this menu. For example, after the update, plugin options (such as for YITH WooCommerce Wishlist, YITH WooCommerce Ajax Search, etc.) will be moved from previous location to YITH menu.Further actionsGD LibraryHelp tab FAQ linkView all FAQs >Help tab FAQ titleLast FAQs in our Help CenterHelp tab Read Documentation linkRead the documentationHelp tab Read Documentation linkto learn from basics how it worksHelp tab Watch Videotutorials linkVideos are also available in:Help tab Watch Videotutorials linkWatch our videotutorialsHelp tab Watch Videotutorials linkWe show you some use casesHelp tab default descriptionWe want to help you to enjoy a wonderful experience with all our products.Help tab default titleThank you for purchasing %s!Help tab nameHelpHelp tab submit ticket buttonSubmit a ticketHelp tab submit ticket descriptionIf you are experiencing some technical issue ask help to our developers. Submit a ticket in our support desk and we will help you as soon as possible.Help tab submit ticket titleNeed help?Help tab view FAQs linkCheck the FAQsHelp tab view FAQs linkto find answers to your doubtsHelp tab view all video linkCheck the full <a href="%s" target="_blank">Playlist on Youtube</a> to learn more >How to install premium versionIconv ModuleIf you continue with this action, you will reset all options in this page.Image height field labelHeightImage width field labelWidthImageMagick VersionLatest news from YITH BlogLeft SidebarLeft sidebarLicenseLog FilesMultiByte StringMySQL versionN/ANameNoNo Log file available. Enable the WordPress debug by adding this in the %s file of your installationNo sidebarOPCache Save CommentsOptions SavedOutput IP AddressPHP VersionPHP error_log filePHPInfoPlugin FWLatest update released onPlugin FWView ChangelogPlugin Row MetaDocumentationPlugin Row MetaLive DemoPlugin Row MetaPremium versionPlugin Row MetaSupportPlugin SettingsPlugins ActivatedPlugins RequirementsPlugins UpgradedPosition in the "Dimensions" fieldBottomPosition in the "Dimensions" fieldLeftPosition in the "Dimensions" fieldRightPosition in the "Dimensions" fieldTopPost actionDelete PermanentlyPost actionDuplicatePost actionEditPost actionPreviewPost actionRestorePost actionTrashPost actionViewPreview:Privacy Policy ContentPaymentsPrivacy Policy ContentThis sample language includes the basics around what personal data your store may be collecting, storing and sharing, as well as who may have access to that data. Depending on what settings are enabled and which additional plugins are used, the specific information shared by your store will vary. We recommend consulting with a lawyer when deciding what information to disclose on your privacy policy.Privacy Policy ContentWhat we collect and storePrivacy Policy ContentWhat we share with othersPrivacy Policy ContentWho on our team has accessPrivacy Policy Guide TitleYITH PluginsRSS Error:Read more %1$shere%2$s or contact your hosting company in order to increase it.RemoveRemove %1$s from %2$s fileRemove AllResetReset DefaultsReset to defaultRight SidebarRight sidebarSave ChangesSave OptionsSearch CategoriesSearch CustomersSearch PostsSearch ProductSelect ColorSelect default colorSet DefaultSettingsSettings resetSettings savedSimpleXMLSite InfoSite URLSorry, import is disabled.Sorting successful.System StatusTLS VersionTerm actionDeleteTerm actionDuplicateTerm actionEditTerm actionViewThe added file is not valid.The changes you have made will be lost if you leave this page.The element you have entered already exists. Please, enter another name.The file size exceeds 8 megabytes so it must be downloadedThe system check cannot determine which %1$s version is installed because %2$s module is disabled. Ask your hosting company to enable it.The system check cannot determine which %1$s version is installed due to a connection issue between your site and our server.The system check has detected some compatibility issues on your installation.%1$sClick here%2$s to know moreThere was an error with your request; please try again later.This action cannot be undone and you will not be able to recover this data.Tooltip in the "Dimensions" fieldLink values togetherTotal Database SizeTrash confirmation actionYes, move to trashURL FOpenUpdate it to the latest version in order to benefit of all new features and security updates.UploadValueWP debug.log fileWarning!We need your supportWooCommerceWooCommerce VersionWordPress CronWordPress VersionWordPress recommends a minimum MySQL version of 5.6. See: %sWordPress requirementsYES/NO button: use MAX 4 characters!NOYES/NO button: use MAX 4 characters!YESYITHYITH Latest UpdatesYITH Plugin Framework VersionYITH PluginsYITH System InformationYes[gutenberg]: Category NameYITHhelp us by leaving a good reviewloaded by %sto keep updating and improving the plugin. Please,Project-Id-Version: YITH Framework
Report-Msgid-Bugs-To: YITH <plugins@yithemes.com>
PO-Revision-Date: 2021-10-27 15:32:46+0000
Language: it
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Plural-Forms: nplurals=2; plural=n != 1;
X-Generator: GlotPress/3.0.0-alpha.2
%1$s (#%2$s &ndash; %3$s)%1$s necessita dell'attivazione di %2$s%1$s necessita di almeno %2$s di memoria disponibile%1$s necessita almeno della versione %2$s:) Grazie!ImpostazioniAggiungi tuttiAggiungi immagini alla galleriaAggiungi scheda prodotto personalizzataAggiungi immaginiAggiungi alla galleriaSi è verificato un errore durante l'importazione. Prova di nuovo.Si è verificato un errore probabilmente causato dal feed non disponibile. Riprova più tardi.Sei sicuro di voler eliminare "%s"?Se sicuro di voler eliminare gli elementi selezionati?Sei sicuro di voler spostare "%s" nel cestino?Se sicuro di voler spostare nel cestino gli elementi selezionati?Sei sicuro?Memoria disponibileTorna a "%s"Torna all'elencoChiudiAnnullaConfermaScegli una barra lateraleRimuoviRimuovi coloreChiudi tuttiValore del coloreConferma eliminazioneConferma eliminazionePer attivarlo contatta il tuo servizio di hosting.Per installarlo contatta il tuo servizio di hosting.Contatta il tuo servizio hosting per aggiornarlo.Contenuto della scheda (codice HTML supportato).Copiato!Copia codiceCopiaCopiato!Personalizzato:Dati: %1$.2fMB | Indice: %2$.2fMB | Libero: %3$.2fMB | Engine: %4$sDimensione dati databaseDimensione spazio libero databaseDimensione indice databaseInfo databaseDatabase importato correttamente.PredefinitoDefined WP_CACHERimuoviSì, eliminaRimuovi immagineDisabilitatoScopri tutti i nostri plugin disponibili su: %1$s and %2$sVuoi rimuovere la scheda personalizzata?ScaricaElemento rimosso correttamente.Elemento aggiornato correttamente.%s - OpzioniAbilitatoEspandi tuttiExternal object cachePer il funzionamento ottimale dei nostri plugin consigliamo di impostare almeno %s della memoria disponibileD'ora in poi puoi trovare tutte le opzioni dei plugin nel menù YITH. Le impostazioni di personalizzazione saranno disponibili come una nuova voce in YITH.D'ora in poi puoi trovare il pannello opzioni dei plugin YITH nel menù YITH. Ogni volta che viene aggiunto uno dei nostri plugin comparirà una nuova voce in questo menù. Ad esempio, dopo l'aggiornamento, le opzioni del plugin (come per YITH WooCommerce Wishlist, YITH WooCommerce Ajax Search, etc.) saranno spostate dalla posizione precedente al menù YITH.Altre azioniGD LibraryVedi tutte le FAQUltime FAQ nel nostro Centro AssistenzaConsulta la documentazioneper imparare dalle basi come funzionaI video sono disponibili anche in:Guarda i nostri video tutorialTi mostriamo alcuni casi d'usoVogliamo aiutarti ad avere un'esperienza fantastica con tutti i nostri prodotti.Grazie per aver acquistato %s!HelpInvia un ticketSe stai riscontrando problemi tecnici chiedi aiuto ai nostri sviluppatori. Invia un ticket dalla nostra piattaforma di supporto e ti daremo assistenza il più presto possibile.Ti serve aiuto?Controlla le FAQper trovare le risposte ai tuoi dubbiPer saperne di più, vedi la <a href="%s" target="_blank">Playlist completa su Youtube</a>>Come installare la versione premiumIconv ModuleSe prosegui con questa azione, tutte le opzioni di questa pagina saranno reimpostate.AltezzaLarghezzaVersione di ImageMagickUltime novità dal blog YITHBarra laterale sinistraBarra laterale sinistraChiave di licenzaFile logMultiByte StringVersione MySQLN.D.NomeNoNessun file log disponibile. Abilita il debug WordPress aggiungendo questo nel file %s della tua installazioneNessuna barra lateraleOPCache Save CommentsOpzioni salvateIndirizzo IP di outputVersione PHPPHP error_log filePHPInfoUltimo aggiornamento rilasciato ilVisualizza il changelogDocumentazioneLive DemoVersione premiumAssistenzaImpostazioni pluginPlugin attivatiRequisiti pluginPlugin aggiornatiIn bassoA sinistraA destraIn altoCancella definitivamenteDuplicaModificaAnteprimaRipristinaCestinaVisualizzaAnteprima:PagamentiQuesto esempio include gli elementi di base sulla raccolta dei dati personali, la memorizzazione e la condivisione, nonché su chi è autorizzato ad accedere a tali dati. In base alle impostazioni abilitate e ai moduli di estensione aggiuntivi utilizzati, le informazioni specifiche condivise dal nostro negozio possono variare. Ti consigliamo di consultare un legale al momento di decidere quali informazioni divulgare nell'informativa sulla privacy.Cosa raccogliamo e salviamoCosa condividiamo con gli altriPersone del nostro gruppo di lavoro che hanno accessoYITH PluginsErrore RSS:Per maggiori informazioni %1$sleggi questo%2$s oppure contatta il tuo host per un upgrade.RimuoviRimuovi %1$s dal file %2$sRimuovi tuttiRipristinaRipristina impostazioni inizialiRipristina configurazione predefinitaBarra laterale destraBarra laterale destraSalva modificheSalva le opzioniCerca categorieCerca fra i clientiCerca articoliCerca un prodottoSeleziona il coloreSeleziona il colore predefinitoRipristina impostazioni inizialiImpostazioniImpostazioni azzerateImpostazioni salvateSimpleXMLInfo sitoURL del sitoCi dispiace, l'importazione è disabilitata.Ordinamento effettuato con successo.Stato del sistemaVersione TLSEliminaDuplicaModificaVisualizzaIl file aggiunto non è valido.Perderai tutti i cambiamenti effettuati se lasci questa pagina.L'elemento inserito esiste già. Per favore, inserisci un altro nome.La dimensione del file supera gli 8 megabyte ed è quindi necessario scaricarloNon ci è stato possibile determinare quale versione di %1$s è installata in quanto il modulo %2$s è disattivato. Chiedi al tuo servizio hosting di attivarlo.Non ci è stato possibile determinare quale versione di %1$s è installata a causa di un problema di connessione fra il tuo sito e il nostro server.Il controllo di sistema ha individuato delle incompatibilità con la tua installazione. %1$sVedi qui%2$s per maggiori dettagliSi è verificato un errore con la tua richiesta. Riprova più tardi.Quest'azione non può essere annullata e non sarà possibile recuperare questi dati.Collega i valoriDimensione totale databaseSì, sposta nel cestinoURL FOpenAggiorna all'ultima versione per beneficiare di tutte le nuove funzionalità e degli aggiornamenti di sicurezza.CaricaValoreWP debug.log fileAttenzione!Abbiamo bisogno del tuo sostegnoWooCommerceVersione di WooCommerceCron WordPressVersione di WordPressWordPress consiglia una versione minima 5.6 di MySQL. Vedi: %sRequisiti WordPressNOSÌYITHUltimi aggiornamenti da YITHYITH Plugin Framework VersionPlugin YITHYITH System InformationSìYITHPuoi darci una mano lasciando una recensione positivacaricato da %sper poter continuare ad aggiornare e migliorare il plugin.PK`x1\�jx}�Z�Z&plugin-fw/languages/yith-plugin-fw.potnu�[���# Copyright (C) 2021
# This file is distributed under the same license as the  package.
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: YITH <plugins@yithemes.com>\n"
"POT-Creation-Date: 2021-11-09 12:50:28+00:00\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"PO-Revision-Date: 2021-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: YITH <info@yithemes.com>\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"

#: includes/class-yit-assets.php:146 yit-functions.php:1979
msgid "Confirm trash"
msgstr ""

#: includes/class-yit-assets.php:147
msgid "Are you sure you want to trash the selected items?"
msgstr ""

#: includes/class-yit-assets.php:149 includes/class-yit-assets.php:153
#: templates/sysinfo/tabs/main.php:42 templates/sysinfo/tabs/main.php:50
#: yit-functions.php:1981 yit-functions.php:1999
msgid "No"
msgstr ""

#: includes/class-yit-assets.php:150 yit-functions.php:1997
#: yit-functions.php:2125
msgid "Confirm delete"
msgstr ""

#: includes/class-yit-assets.php:151
msgid "Are you sure you want to delete the selected items?"
msgstr ""

#: includes/class-yit-assets.php:151 yit-functions.php:1913
#: yit-functions.php:2073
msgid "This action cannot be undone and you will not be able to recover this data."
msgstr ""

#: includes/class-yit-assets.php:164
msgid "Clear"
msgstr ""

#: includes/class-yit-assets.php:165
msgid "Clear color"
msgstr ""

#: includes/class-yit-assets.php:166
msgid "Default"
msgstr ""

#: includes/class-yit-assets.php:167
msgid "Select default color"
msgstr ""

#: includes/class-yit-assets.php:168
msgid "Select Color"
msgstr ""

#: includes/class-yit-assets.php:169
msgid "Color value"
msgstr ""

#: includes/class-yit-help-desk.php:152
msgid "There was an error with your request; please try again later."
msgstr ""

#: includes/class-yit-plugin-panel-woocommerce.php:423
msgid "The changes you have made will be lost if you leave this page."
msgstr ""

#: includes/class-yit-plugin-panel.php:83
msgid "Plugin Settings"
msgstr ""

#: includes/class-yit-plugin-panel.php:84
msgid "Settings"
msgstr ""

#: includes/class-yit-plugin-panel.php:451
#: includes/class-yit-plugin-panel.php:454
msgid "How to install premium version"
msgstr ""

#: includes/class-yit-plugin-panel.php:652
#: includes/class-yit-plugin-subpanel.php:132
msgid "Save Changes"
msgstr ""

#: includes/class-yit-plugin-panel.php:657
#: includes/class-yit-plugin-subpanel.php:136
#: templates/panel/woocommerce/woocommerce-form.php:14
msgid "If you continue with this action, you will reset all options in this page."
msgstr ""

#: includes/class-yit-plugin-panel.php:657
#: includes/class-yit-plugin-subpanel.php:136
#: templates/panel/woocommerce/woocommerce-form.php:14
msgid "Are you sure?"
msgstr ""

#: includes/class-yit-plugin-panel.php:661
#: includes/class-yit-plugin-subpanel.php:139
msgid "Reset to default"
msgstr ""

#: includes/class-yit-plugin-panel.php:979
msgid "The element you have entered already exists. Please, enter another name."
msgstr ""

#: includes/class-yit-plugin-panel.php:980
msgid "Settings saved"
msgstr ""

#: includes/class-yit-plugin-panel.php:981
msgid "Settings reset"
msgstr ""

#: includes/class-yit-plugin-panel.php:982
msgid "Element deleted correctly."
msgstr ""

#: includes/class-yit-plugin-panel.php:983
#: includes/class-yit-plugin-panel.php:984
msgid "Element updated correctly."
msgstr ""

#: includes/class-yit-plugin-panel.php:985
msgid "Database imported correctly."
msgstr ""

#: includes/class-yit-plugin-panel.php:986
msgid "An error has occurred during import. Please try again."
msgstr ""

#: includes/class-yit-plugin-panel.php:987
msgid "The added file is not valid."
msgstr ""

#: includes/class-yit-plugin-panel.php:988
msgid "Sorry, import is disabled."
msgstr ""

#: includes/class-yit-plugin-panel.php:989
msgid "Sorting successful."
msgstr ""

#: includes/class-yit-plugin-panel.php:1457
msgid "We need your support"
msgstr ""

#: includes/class-yit-plugin-panel.php:1458
msgid "to keep updating and improving the plugin. Please,"
msgstr ""

#: includes/class-yit-plugin-panel.php:1460
msgid "help us by leaving a good review"
msgstr ""

#: includes/class-yit-plugin-panel.php:1461
msgid ":) Thanks!"
msgstr ""

#: includes/class-yit-pointers.php:80
msgid "Plugins Activated"
msgstr ""

#: includes/class-yit-pointers.php:81
msgid ""
"From now on, you can find all plugin options in YITH menu. Plugin "
"customization settings will be available as a new entry in YITH menu."
msgstr ""

#: includes/class-yit-pointers.php:84 includes/class-yit-pointers.php:100
#. translators: 1. YITH site link; 2. WordPress site link.
msgid "Discover all our plugins available on: %1$s and %2$s"
msgstr ""

#: includes/class-yit-pointers.php:96
msgid "Plugins Upgraded"
msgstr ""

#: includes/class-yit-pointers.php:97
msgid ""
"From now on, you can find the option panel of YITH plugins in YITH menu. "
"Every time one of our plugins is added, a new entry will be added to this "
"menu. For example, after the update, plugin options (such as for YITH "
"WooCommerce Wishlist, YITH WooCommerce Ajax Search, etc.) will be moved "
"from previous location to YITH menu."
msgstr ""

#: includes/class-yith-dashboard.php:35
msgid "YITH Latest Updates"
msgstr ""

#: includes/class-yith-dashboard.php:36
msgid "Latest news from YITH Blog"
msgstr ""

#: includes/class-yith-dashboard.php:56
msgid "RSS Error:"
msgstr ""

#: includes/class-yith-dashboard.php:63
msgid ""
"An error has occurred, which probably means the feed is down. Try again "
"later."
msgstr ""

#: includes/class-yith-post-type-admin.php:286
#. translators: %s is the name of the post type (example Back to "Membership
#. Plans").
msgid "Back to \"%s\""
msgstr ""

#: includes/class-yith-post-type-admin.php:286
msgid "Back to the list"
msgstr ""

#: includes/class-yith-system-status.php:110
msgid "WordPress Version"
msgstr ""

#: includes/class-yith-system-status.php:111
msgid "WooCommerce Version"
msgstr ""

#: includes/class-yith-system-status.php:112
msgid "Available Memory"
msgstr ""

#: includes/class-yith-system-status.php:113
msgid "PHP Version"
msgstr ""

#: includes/class-yith-system-status.php:114
msgid "TLS Version"
msgstr ""

#: includes/class-yith-system-status.php:115
msgid "WordPress Cron"
msgstr ""

#: includes/class-yith-system-status.php:116
msgid "SimpleXML"
msgstr ""

#: includes/class-yith-system-status.php:117
msgid "MultiByte String"
msgstr ""

#: includes/class-yith-system-status.php:118
msgid "ImageMagick Version"
msgstr ""

#: includes/class-yith-system-status.php:119
msgid "GD Library"
msgstr ""

#: includes/class-yith-system-status.php:120
msgid "Iconv Module"
msgstr ""

#: includes/class-yith-system-status.php:121
msgid "OPCache Save Comments"
msgstr ""

#: includes/class-yith-system-status.php:122
msgid "URL FOpen"
msgstr ""

#: includes/class-yith-system-status.php:140
#: includes/class-yith-system-status.php:141
#: templates/sysinfo/system-information-panel.php:11
msgid "System Status"
msgstr ""

#: includes/class-yith-system-status.php:183
msgid "YITH Plugins"
msgstr ""

#: includes/class-yith-system-status.php:191
msgid "WooCommerce"
msgstr ""

#: includes/class-yith-system-status.php:342
msgid "Warning!"
msgstr ""

#: includes/class-yith-system-status.php:346
#. translators: %1$s open link tag, %2$s open link tag
msgid ""
"The system check has detected some compatibility issues on your "
"installation.%1$sClick here%2$s to know more"
msgstr ""

#: includes/class-yith-system-status.php:488
msgid "Enabled"
msgstr ""

#: includes/class-yith-system-status.php:488
msgid "Disabled"
msgstr ""

#: includes/class-yith-system-status.php:493
msgid "N/A"
msgstr ""

#: includes/class-yith-system-status.php:520
#. translators: %1$s plugin name, %2$s requirement name
msgid "%1$s needs %2$s enabled"
msgstr ""

#: includes/class-yith-system-status.php:523
#. translators: %1$s plugin name, %2$s required memory amount
msgid "%1$s needs at least %2$s of available memory"
msgstr ""

#: includes/class-yith-system-status.php:526
#. translators: %1$s plugin name, %2$s version number
msgid "%1$s needs at least %2$s version"
msgstr ""

#: includes/class-yith-system-status.php:550
msgid ""
"Update it to the latest version in order to benefit of all new features and "
"security updates."
msgstr ""

#: includes/class-yith-system-status.php:554
#: includes/class-yith-system-status.php:560
msgid "Contact your hosting company in order to update it."
msgstr ""

#: includes/class-yith-system-status.php:558
msgid "Contact your hosting company in order to install it."
msgstr ""

#: includes/class-yith-system-status.php:565
#. translators: %1$s code, %2$s file name
msgid "Remove %1$s from %2$s file"
msgstr ""

#: includes/class-yith-system-status.php:573
msgid "Contact your hosting company in order to enable it."
msgstr ""

#: includes/class-yith-system-status.php:577
#: includes/class-yith-system-status.php:600
#. translators: %1$s opening link tag, %2$s closing link tag
msgid ""
"Read more %1$shere%2$s or contact your hosting company in order to increase "
"it."
msgstr ""

#: includes/class-yith-system-status.php:597
#. translators: %s recommended memory amount
msgid ""
"For optimal functioning of our plugins, we suggest setting at least %s of "
"available memory"
msgstr ""

#: includes/class-yith-system-status.php:605
#. translators: %1$s TLS label, %2$s cURL label
msgid ""
"The system check cannot determine which %1$s version is installed because "
"%2$s module is disabled. Ask your hosting company to enable it."
msgstr ""

#: includes/class-yith-system-status.php:608
#. translators: %1$s TLS label
msgid ""
"The system check cannot determine which %1$s version is installed due to a "
"connection issue between your site and our server."
msgstr ""

#: templates/fields/ajax-customers.php:41
msgid "Search Customers"
msgstr ""

#: templates/fields/ajax-customers.php:68
#: templates/fields/ajax-customers.php:79
#. translators: 1. user display name; 2. user ID; 3. user email.
msgid "%1$s (#%2$s &ndash; %3$s)"
msgstr ""

#: templates/fields/ajax-posts.php:41
msgid "Search Posts"
msgstr ""

#: templates/fields/ajax-products.php:14
msgid "Search Product"
msgstr ""

#: templates/fields/ajax-terms.php:41
msgid "Search Categories"
msgstr ""

#: templates/fields/customtabs.php:17
msgid "Close all"
msgstr ""

#: templates/fields/customtabs.php:17
msgid "Expand all"
msgstr ""

#: templates/fields/customtabs.php:25 templates/fields/customtabs.php:68
msgid "Remove"
msgstr ""

#: templates/fields/customtabs.php:34 templates/fields/customtabs.php:76
msgid "Name"
msgstr ""

#: templates/fields/customtabs.php:40 templates/fields/customtabs.php:81
msgid "Value"
msgstr ""

#: templates/fields/customtabs.php:41 templates/fields/customtabs.php:82
msgid "Content of the tab. (HTML is supported)"
msgstr ""

#: templates/fields/customtabs.php:52
msgid "Add custom product tab"
msgstr ""

#: templates/fields/customtabs.php:93
msgid "Do you want to remove the custom tab?"
msgstr ""

#: templates/fields/date-format.php:65
msgid "Custom:"
msgstr ""

#: templates/fields/date-format.php:70
msgid "Preview:"
msgstr ""

#: templates/fields/icons.php:78
msgid "Set Default"
msgstr ""

#: templates/fields/image-gallery.php:29 templates/fields/image-gallery.php:40
msgid "Delete image"
msgstr ""

#: templates/fields/image-gallery.php:37
msgid "Add Images to Gallery"
msgstr ""

#: templates/fields/image-gallery.php:38
msgid "Add to gallery"
msgstr ""

#: templates/fields/image-gallery.php:39
msgid "Add images"
msgstr ""

#: templates/fields/image-gallery.php:41
msgid "Delete"
msgstr ""

#: templates/fields/select-buttons.php:19
msgid "Add All"
msgstr ""

#: templates/fields/select-buttons.php:20
msgid "Remove All"
msgstr ""

#: templates/fields/sidebars.php:20
msgid "Left sidebar"
msgstr ""

#: templates/fields/sidebars.php:23
msgid "Right sidebar"
msgstr ""

#: templates/fields/sidebars.php:26 templates/fields/sidebars.php:29
msgid "No sidebar"
msgstr ""

#: templates/fields/sidebars.php:39
msgid "Left Sidebar"
msgstr ""

#: templates/fields/sidebars.php:41 templates/fields/sidebars.php:56
msgid "Choose a sidebar"
msgstr ""

#: templates/fields/sidebars.php:54
msgid "Right Sidebar"
msgstr ""

#: templates/fields/upload.php:34
#: templates/panel/woocommerce/woocommerce-upload.php:37
msgid "Upload"
msgstr ""

#: templates/fields/upload.php:39
msgid "Reset"
msgstr ""

#: templates/panel/woocommerce/woocommerce-form.php:28
#: templates/panel/woocommerce/woocommerce-form.php:32
msgid "Save Options"
msgstr ""

#: templates/panel/woocommerce/woocommerce-form.php:32
msgid "Options Saved"
msgstr ""

#: templates/panel/woocommerce/woocommerce-form.php:38
msgid "Reset Defaults"
msgstr ""

#: templates/sysinfo/system-information-panel.php:12
msgid "PHPInfo"
msgstr ""

#: templates/sysinfo/system-information-panel.php:13
#: templates/sysinfo/tabs/error-log.php:25
msgid "Log Files"
msgstr ""

#: templates/sysinfo/system-information-panel.php:22
msgid "YITH System Information"
msgstr ""

#: templates/sysinfo/tabs/error-log.php:13
msgid "WP debug.log file"
msgstr ""

#: templates/sysinfo/tabs/error-log.php:18
msgid "PHP error_log file"
msgstr ""

#: templates/sysinfo/tabs/error-log.php:60
msgid "Download"
msgstr ""

#: templates/sysinfo/tabs/error-log.php:72
msgid "The file size exceeds 8 megabytes so it must be downloaded"
msgstr ""

#: templates/sysinfo/tabs/error-log.php:96
#. translators: %s file name.
msgid ""
"No Log file available. Enable the WordPress debug by adding this in the %s "
"file of your installation"
msgstr ""

#: templates/sysinfo/tabs/error-log.php:105
msgid "Copied!"
msgstr ""

#: templates/sysinfo/tabs/error-log.php:105
msgid "Copy Code"
msgstr ""

#: templates/sysinfo/tabs/main.php:17
msgid "Site Info"
msgstr ""

#: templates/sysinfo/tabs/main.php:22
msgid "Site URL"
msgstr ""

#: templates/sysinfo/tabs/main.php:31
msgid "Output IP Address"
msgstr ""

#: templates/sysinfo/tabs/main.php:39
msgid "Defined WP_CACHE"
msgstr ""

#: templates/sysinfo/tabs/main.php:42 templates/sysinfo/tabs/main.php:50
msgid "Yes"
msgstr ""

#: templates/sysinfo/tabs/main.php:47
msgid "External object cache"
msgstr ""

#: templates/sysinfo/tabs/main.php:55
msgid "YITH Plugin Framework Version"
msgstr ""

#: templates/sysinfo/tabs/main.php:64
#. translators: %s is the name of the plugin that is loading the framework.
msgid "loaded by %s"
msgstr ""

#: templates/sysinfo/tabs/main.php:73
msgid "Plugins Requirements"
msgstr ""

#: templates/sysinfo/tabs/main.php:108
msgid "Database Info"
msgstr ""

#: templates/sysinfo/tabs/main.php:113
msgid "MySQL version"
msgstr ""

#: templates/sysinfo/tabs/main.php:123
#. Translators: %s: Codex link.
msgid "WordPress recommends a minimum MySQL version of 5.6. See: %s"
msgstr ""

#: templates/sysinfo/tabs/main.php:123
msgid "WordPress requirements"
msgstr ""

#: templates/sysinfo/tabs/main.php:130
msgid "Total Database Size"
msgstr ""

#: templates/sysinfo/tabs/main.php:138
msgid "Database Data Size"
msgstr ""

#: templates/sysinfo/tabs/main.php:146
msgid "Database Index Size"
msgstr ""

#: templates/sysinfo/tabs/main.php:154
msgid "Database Free Size"
msgstr ""

#: templates/sysinfo/tabs/main.php:168
#. Translators: %1$f: Table size, %2$f: Index size, %3$f: Free size, %4$s
#. Engine.
msgid "Data: %1$.2fMB | Index: %2$.2fMB | Free: %3$.2fMB | Engine: %4$s"
msgstr ""

#: yit-functions.php:1911
#. translators: %s is the title of the post object.
msgid "Are you sure you want to move \"%s\" to trash?"
msgstr ""

#: yit-functions.php:1913 yit-functions.php:2073
#. translators: %s is the title of the post object.
msgid "Are you sure you want to delete \"%s\"?"
msgstr ""

#: yit-functions.php:2011 yit-functions.php:2019 yit-functions.php:2136
msgid "Further actions"
msgstr ""

#: yit-plugin.php:205
msgid "License"
msgstr ""

#. Author of the plugin/theme
msgid "YITH"
msgstr ""

#: includes/builders/elementor/class-yith-elementor-widget.php:252
#. translators: %s it the Elementor Widget title.
msgctxt "Elementor Widget - section title"
msgid "%s - Options"
msgstr ""

#: includes/builders/gutenberg/class-yith-gutenberg.php:149
msgctxt "[gutenberg]: Category Name"
msgid "YITH"
msgstr ""

#: includes/class-yit-assets.php:134
msgctxt "Button text"
msgid "Confirm"
msgstr ""

#: includes/class-yit-assets.php:135
msgctxt "Button text"
msgid "Cancel"
msgstr ""

#: includes/class-yit-assets.php:148 yit-functions.php:1982
msgctxt "Trash confirmation action"
msgid "Yes, move to trash"
msgstr ""

#: includes/class-yit-assets.php:152 yit-functions.php:2000
#: yit-functions.php:2127
msgctxt "Delete confirmation action"
msgid "Yes, delete"
msgstr ""

#: includes/class-yit-plugin-panel.php:488
msgctxt "Help tab name"
msgid "Help"
msgstr ""

#: includes/class-yit-plugin-panel.php:798
#. translators: 1. Plugin name.
msgctxt "Help tab default title"
msgid "Thank you for purchasing %s!"
msgstr ""

#: includes/class-yit-plugin-panel.php:799
msgctxt "Help tab default description"
msgid "We want to help you to enjoy a wonderful experience with all our products."
msgstr ""

#: includes/class-yith-dashboard.php:96
msgctxt "Plugin FW"
msgid "View Changelog"
msgstr ""

#: includes/class-yith-dashboard.php:97
msgctxt "Plugin FW"
msgid "Latest update released on"
msgstr ""

#: includes/class-yith-dashboard.php:137
msgctxt "Button label"
msgid "Close"
msgstr ""

#: includes/privacy/class-yith-privacy.php:61
msgctxt "Privacy Policy Guide Title"
msgid "YITH Plugins"
msgstr ""

#: includes/privacy/class-yith-privacy.php:93
msgctxt "Privacy Policy Content"
msgid ""
"This sample language includes the basics around what personal data your "
"store may be collecting, storing and sharing, as well as who may have "
"access to that data. Depending on what settings are enabled and which "
"additional plugins are used, the specific information shared by your store "
"will vary. We recommend consulting with a lawyer when deciding what "
"information to disclose on your privacy policy."
msgstr ""

#: includes/privacy/class-yith-privacy.php:97
msgctxt "Privacy Policy Content"
msgid "What we collect and store"
msgstr ""

#: includes/privacy/class-yith-privacy.php:100
msgctxt "Privacy Policy Content"
msgid "Who on our team has access"
msgstr ""

#: includes/privacy/class-yith-privacy.php:103
msgctxt "Privacy Policy Content"
msgid "What we share with others"
msgstr ""

#: includes/privacy/class-yith-privacy.php:106
msgctxt "Privacy Policy Content"
msgid "Payments"
msgstr ""

#: templates/fields/copy-to-clipboard.php:41
msgctxt "Copy-to-clipboard message"
msgid "Copied!"
msgstr ""

#: templates/fields/copy-to-clipboard.php:45
msgctxt "Copy-to-clipboard button text"
msgid "Copy"
msgstr ""

#: templates/fields/dimensions.php:13
msgctxt "Position in the \"Dimensions\" field"
msgid "Top"
msgstr ""

#: templates/fields/dimensions.php:14
msgctxt "Position in the \"Dimensions\" field"
msgid "Right"
msgstr ""

#: templates/fields/dimensions.php:15
msgctxt "Position in the \"Dimensions\" field"
msgid "Bottom"
msgstr ""

#: templates/fields/dimensions.php:16
msgctxt "Position in the \"Dimensions\" field"
msgid "Left"
msgstr ""

#: templates/fields/dimensions.php:94
msgctxt "Tooltip in the \"Dimensions\" field"
msgid "Link values together"
msgstr ""

#: templates/fields/image-dimensions.php:18
msgctxt "Image width field label"
msgid "Width"
msgstr ""

#: templates/fields/image-dimensions.php:23
msgctxt "Image height field label"
msgid "Height"
msgstr ""

#: templates/fields/onoff.php:28
msgctxt "YES/NO button: use MAX 4 characters!"
msgid "YES"
msgstr ""

#: templates/fields/onoff.php:29
msgctxt "YES/NO button: use MAX 4 characters!"
msgid "NO"
msgstr ""

#: templates/panel/help-tab.php:87
#. translators: 1. Url to EN playlist.
msgctxt "Help tab view all video link"
msgid ""
"Check the full <a href=\"%s\" target=\"_blank\">Playlist on Youtube</a> to "
"learn more >"
msgstr ""

#: templates/panel/help-tab.php:94
msgctxt "Help tab Watch Videotutorials link"
msgid "Videos are also available in:"
msgstr ""

#: templates/panel/help-tab.php:137
msgctxt "Help tab Watch Videotutorials link"
msgid "Watch our videotutorials"
msgstr ""

#: templates/panel/help-tab.php:140
msgctxt "Help tab Watch Videotutorials link"
msgid "We show you some use cases"
msgstr ""

#: templates/panel/help-tab.php:124
msgctxt "Help tab Read Documentation link"
msgid "Read the documentation"
msgstr ""

#: templates/panel/help-tab.php:127
msgctxt "Help tab Read Documentation link"
msgid "to learn from basics how it works"
msgstr ""

#: templates/panel/help-tab.php:150
msgctxt "Help tab view FAQs link"
msgid "Check the FAQs"
msgstr ""

#: templates/panel/help-tab.php:153
msgctxt "Help tab view FAQs link"
msgid "to find answers to your doubts"
msgstr ""

#: templates/panel/help-tab.php:169
msgctxt "Help tab FAQ title"
msgid "Last FAQs in our Help Center"
msgstr ""

#: templates/panel/help-tab.php:183
msgctxt "Help tab FAQ link"
msgid "View all FAQs >"
msgstr ""

#: templates/panel/help-tab.php:192
msgctxt "Help tab submit ticket title"
msgid "Need help?"
msgstr ""

#: templates/panel/help-tab.php:195
msgctxt "Help tab submit ticket description"
msgid ""
"If you are experiencing some technical issue ask help to our developers. "
"Submit a ticket in our support desk and we will help you as soon as "
"possible."
msgstr ""

#: templates/panel/help-tab.php:203
msgctxt "Help tab submit ticket button"
msgid "Submit a ticket"
msgstr ""

#: yit-functions.php:1925
msgctxt "Post action"
msgid "Preview"
msgstr ""

#: yit-functions.php:1934
msgctxt "Post action"
msgid "View"
msgstr ""

#: yit-functions.php:1945
msgctxt "Post action"
msgid "Edit"
msgstr ""

#: yit-functions.php:1953
msgctxt "Post action"
msgid "Duplicate"
msgstr ""

#: yit-functions.php:1965
msgctxt "Post action"
msgid "Restore"
msgstr ""

#: yit-functions.php:1973
msgctxt "Post action"
msgid "Trash"
msgstr ""

#: yit-functions.php:1990
msgctxt "Post action"
msgid "Delete Permanently"
msgstr ""

#: yit-functions.php:2087
msgctxt "Term action"
msgid "View"
msgstr ""

#: yit-functions.php:2097
msgctxt "Term action"
msgid "Edit"
msgstr ""

#: yit-functions.php:2105
msgctxt "Term action"
msgid "Duplicate"
msgstr ""

#: yit-functions.php:2118
msgctxt "Term action"
msgid "Delete"
msgstr ""

#: yit-plugin.php:84
msgctxt "Plugin Row Meta"
msgid "Live Demo"
msgstr ""

#: yit-plugin.php:88
msgctxt "Plugin Row Meta"
msgid "Documentation"
msgstr ""

#: yit-plugin.php:92
msgctxt "Plugin Row Meta"
msgid "Support"
msgstr ""

#: yit-plugin.php:96
msgctxt "Plugin Row Meta"
msgid "Premium version"
msgstr ""

#: yit-plugin.php:201
msgctxt "Action links"
msgid "Settings"
msgstr ""PK`x1\����;t;t+plugin-fw/languages/yith-plugin-fw-es_ES.ponu�[���# Translation of YITH Framework in Spanish (Spain)
# This file is distributed under the same license as the YITH Framework package.
msgid ""
msgstr ""
"Project-Id-Version: YITH Framework\n"
"Report-Msgid-Bugs-To: YITH <plugins@yithemes.com>\n"
"POT-Creation-Date: 2021-11-09 12:50:28+00:00\n"
"PO-Revision-Date: 2021-09-28 13:56:41+0000\n"
"Language: es\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: GlotPress/3.0.0-alpha.2\n"

#: includes/class-yit-assets.php:146 yit-functions.php:1979
msgid "Confirm trash"
msgstr "Confirmar el traslado a la papelera"

#: includes/class-yit-assets.php:147
msgid "Are you sure you want to trash the selected items?"
msgstr ""
"¿Estás seguro de que quieres mover a la papelera los elementos seleccionados?"

#: includes/class-yit-assets.php:149 includes/class-yit-assets.php:153
#: templates/sysinfo/tabs/main.php:42 templates/sysinfo/tabs/main.php:50
#: yit-functions.php:1981 yit-functions.php:1999
msgid "No"
msgstr "No"

#: includes/class-yit-assets.php:150 yit-functions.php:1997
#: yit-functions.php:2125
msgid "Confirm delete"
msgstr "Confirmar el borrado"

#: includes/class-yit-assets.php:151
msgid "Are you sure you want to delete the selected items?"
msgstr "¿Estás seguro de que quieres borrar los elementos seleccionados?"

#: includes/class-yit-assets.php:151 yit-functions.php:1913
#: yit-functions.php:2073
msgid ""
"This action cannot be undone and you will not be able to recover this data."
msgstr "Esta acción no se puede revertir y no podrá recuperar estos datos."

#: includes/class-yit-assets.php:164
msgid "Clear"
msgstr "Borrar"

#: includes/class-yit-assets.php:165
msgid "Clear color"
msgstr "Borrar color"

#: includes/class-yit-assets.php:166
msgid "Default"
msgstr "Predeterminado"

#: includes/class-yit-assets.php:167
msgid "Select default color"
msgstr "Seleccionar color predeterminado"

#: includes/class-yit-assets.php:168
msgid "Select Color"
msgstr "Seleccionar color"

#: includes/class-yit-assets.php:169
msgid "Color value"
msgstr "Valor del color"

#: includes/class-yit-help-desk.php:152
msgid "There was an error with your request; please try again later."
msgstr ""
"Se ha producido un error en tu solicitud; inténtalo de nuevo más tarde."

#: includes/class-yit-plugin-panel-woocommerce.php:423
msgid "The changes you have made will be lost if you leave this page."
msgstr "Los cambios que has hecho se perderán si abandonas esta página."

#: includes/class-yit-plugin-panel.php:83
msgid "Plugin Settings"
msgstr "Ajustes del plugin"

#: includes/class-yit-plugin-panel.php:84
msgid "Settings"
msgstr "Ajustes"

#: includes/class-yit-plugin-panel.php:451
#: includes/class-yit-plugin-panel.php:454
msgid "How to install premium version"
msgstr "Cómo instalar la versión premium"

#: includes/class-yit-plugin-panel.php:652
#: includes/class-yit-plugin-subpanel.php:132
msgid "Save Changes"
msgstr "Guardar cambios"

#: includes/class-yit-plugin-panel.php:657
#: includes/class-yit-plugin-subpanel.php:136
#: templates/panel/woocommerce/woocommerce-form.php:14
msgid ""
"If you continue with this action, you will reset all options in this page."
msgstr ""
"Si continúas con esta acción, restablecerás todas las opciones en esta "
"página."

#: includes/class-yit-plugin-panel.php:657
#: includes/class-yit-plugin-subpanel.php:136
#: templates/panel/woocommerce/woocommerce-form.php:14
msgid "Are you sure?"
msgstr "¿Estás seguro?"

#: includes/class-yit-plugin-panel.php:661
#: includes/class-yit-plugin-subpanel.php:139
msgid "Reset to default"
msgstr "Restablecer valores predeterminados"

#: includes/class-yit-plugin-panel.php:979
msgid ""
"The element you have entered already exists. Please, enter another name."
msgstr ""
"El elemento que has introducido ya existe. Por favor, introduce otro nombre."

#: includes/class-yit-plugin-panel.php:980
msgid "Settings saved"
msgstr "Ajustes guardados"

#: includes/class-yit-plugin-panel.php:981
msgid "Settings reset"
msgstr "Restablecer ajustes"

#: includes/class-yit-plugin-panel.php:982
msgid "Element deleted correctly."
msgstr "Elemento eliminado correctamente."

#: includes/class-yit-plugin-panel.php:983
#: includes/class-yit-plugin-panel.php:984
msgid "Element updated correctly."
msgstr "Elemento actualizado correctamente."

#: includes/class-yit-plugin-panel.php:985
msgid "Database imported correctly."
msgstr "Base de datos importada correctamente."

#: includes/class-yit-plugin-panel.php:986
msgid "An error has occurred during import. Please try again."
msgstr ""
"Ha ocurrido un error durante la importación. Por favor, inténtalo de nuevo."

#: includes/class-yit-plugin-panel.php:987
msgid "The added file is not valid."
msgstr "El archivo añadido no es válido."

#: includes/class-yit-plugin-panel.php:988
msgid "Sorry, import is disabled."
msgstr "Lo siento, la importación está desactivada."

#: includes/class-yit-plugin-panel.php:989
msgid "Sorting successful."
msgstr "Clasificación realizada con éxito"

#: includes/class-yit-plugin-panel.php:1457
msgid "We need your support"
msgstr "Necesitamos tu apoyo"

#: includes/class-yit-plugin-panel.php:1458
msgid "to keep updating and improving the plugin. Please,"
msgstr "para que podamos seguir actualizando y mejorando el plugin. Por favor,"

#: includes/class-yit-plugin-panel.php:1460
msgid "help us by leaving a good review"
msgstr "ayúdanos dejando una buena valoración"

#: includes/class-yit-plugin-panel.php:1461
msgid ":) Thanks!"
msgstr ":) ¡Gracias!"

#: includes/class-yit-pointers.php:80
msgid "Plugins Activated"
msgstr "Plugins activados"

#: includes/class-yit-pointers.php:81
msgid ""
"From now on, you can find all plugin options in YITH menu. Plugin "
"customization settings will be available as a new entry in YITH menu."
msgstr ""
"Desde ahora, puedes encontrar todas las opciones de los plugins en el menú "
"YITH plugins. La personalización de los ajustes del plugins estará "
"disponible como una nueva entrada en el menú YITH plugins."

#. translators: 1. YITH site link; 2. WordPress site link.
#: includes/class-yit-pointers.php:84 includes/class-yit-pointers.php:100
msgid "Discover all our plugins available on: %1$s and %2$s"
msgstr "Descubre todos nuestros plugins disponibles en: %1$s y %2$s"

#: includes/class-yit-pointers.php:96
msgid "Plugins Upgraded"
msgstr "Plugins mejorados"

#: includes/class-yit-pointers.php:97
msgid ""
"From now on, you can find the option panel of YITH plugins in YITH menu. "
"Every time one of our plugins is added, a new entry will be added to this "
"menu. For example, after the update, plugin options (such as for YITH "
"WooCommerce Wishlist, YITH WooCommerce Ajax Search, etc.) will be moved from "
"previous location to YITH menu."
msgstr ""
"Desde ahora puedes encontrar la opción en el panel de Plugins de YITH en el "
"menú YITH plugins. Cada vez que uno de nuestros plugins es añadido, una "
"nueva entrada será añadida a este menú. Por ejemplo, tras la actualización, "
"las opciones de los plugins (tales como YITH WooCommerce Wishlist, YITH "
"WooCommerce Ajax Search, etc.) serán movidos de la ubicación previa a la "
"pestaña de YITH plugins."

#: includes/class-yith-dashboard.php:35
msgid "YITH Latest Updates"
msgstr "Últimas actualizaciones de YITH"

#: includes/class-yith-dashboard.php:36
msgid "Latest news from YITH Blog"
msgstr "Últimas novedades del Blog de YITH"

#: includes/class-yith-dashboard.php:56
msgid "RSS Error:"
msgstr "Error RSS:"

#: includes/class-yith-dashboard.php:63
msgid ""
"An error has occurred, which probably means the feed is down. Try again "
"later."
msgstr ""
"Ha ocurrido un error, lo que puede que signifique que el feed ha caído. "
"Inténtalo de nuevo más tarde."

#. translators: %s is the name of the post type (example Back to "Membership
#. Plans").
#: includes/class-yith-post-type-admin.php:286
msgid "Back to \"%s\""
msgstr "Volver a \"%s\""

#: includes/class-yith-post-type-admin.php:286
msgid "Back to the list"
msgstr "Volver a la lista"

#: includes/class-yith-system-status.php:110
msgid "WordPress Version"
msgstr "Versión de WordPress"

#: includes/class-yith-system-status.php:111
msgid "WooCommerce Version"
msgstr "Versión de WooCommerce"

#: includes/class-yith-system-status.php:112
msgid "Available Memory"
msgstr "Memoria disponible"

#: includes/class-yith-system-status.php:113
msgid "PHP Version"
msgstr "Versión PHP"

#: includes/class-yith-system-status.php:114
msgid "TLS Version"
msgstr "Versión TLS"

#: includes/class-yith-system-status.php:115
msgid "WordPress Cron"
msgstr "Cron de WordPress"

#: includes/class-yith-system-status.php:116
msgid "SimpleXML"
msgstr "SimpleXML"

#: includes/class-yith-system-status.php:117
msgid "MultiByte String"
msgstr "Cadena MultiByte"

#: includes/class-yith-system-status.php:118
msgid "ImageMagick Version"
msgstr "Versión ImageMagick"

#: includes/class-yith-system-status.php:119
msgid "GD Library"
msgstr "Biblioteca GD"

#: includes/class-yith-system-status.php:120
msgid "Iconv Module"
msgstr "Módulo Iconv"

#: includes/class-yith-system-status.php:121
msgid "OPCache Save Comments"
msgstr "Guardar comentarios OPCache"

#: includes/class-yith-system-status.php:122
msgid "URL FOpen"
msgstr "URL FOpen"

#: includes/class-yith-system-status.php:140
#: includes/class-yith-system-status.php:141
#: templates/sysinfo/system-information-panel.php:11
msgid "System Status"
msgstr "Estado del sistema"

#: includes/class-yith-system-status.php:183
msgid "YITH Plugins"
msgstr "YITH Plugins"

#: includes/class-yith-system-status.php:191
msgid "WooCommerce"
msgstr "WooCommerce"

#: includes/class-yith-system-status.php:342
msgid "Warning!"
msgstr "¡Atención!"

#. translators: %1$s open link tag, %2$s open link tag
#: includes/class-yith-system-status.php:346
msgid ""
"The system check has detected some compatibility issues on your installation."
"%1$sClick here%2$s to know more"
msgstr ""
"La comprobación del sistema ha detectado algunos problemas de compatibilidad "
"en tu instalación.%1$sHaz clic quí%2$s para saber más"

#: includes/class-yith-system-status.php:488
msgid "Enabled"
msgstr "Activado"

#: includes/class-yith-system-status.php:488
msgid "Disabled"
msgstr "Desactivado"

#: includes/class-yith-system-status.php:493
msgid "N/A"
msgstr "N/D"

#. translators: %1$s plugin name, %2$s requirement name
#: includes/class-yith-system-status.php:520
msgid "%1$s needs %2$s enabled"
msgstr "%1$s necesita %2$s activado"

#. translators: %1$s plugin name, %2$s required memory amount
#: includes/class-yith-system-status.php:523
msgid "%1$s needs at least %2$s of available memory"
msgstr "%1$s necesita al menos %2$s de memoria disponible"

#. translators: %1$s plugin name, %2$s version number
#: includes/class-yith-system-status.php:526
msgid "%1$s needs at least %2$s version"
msgstr "%1$s necesita al menos la versión %2$s"

#: includes/class-yith-system-status.php:550
msgid ""
"Update it to the latest version in order to benefit of all new features and "
"security updates."
msgstr ""
"Actualízalo a la última versión para beneficiarte de todas las "
"características y actualizaciones de seguridad."

#: includes/class-yith-system-status.php:554
#: includes/class-yith-system-status.php:560
msgid "Contact your hosting company in order to update it."
msgstr "Ponte en contacto con tu empresa de hosting para actualizarlo."

#: includes/class-yith-system-status.php:558
msgid "Contact your hosting company in order to install it."
msgstr "Ponte en contacto con tu empresa de hosting para instalarlo."

#. translators: %1$s code, %2$s file name
#: includes/class-yith-system-status.php:565
msgid "Remove %1$s from %2$s file"
msgstr "Eliminar %1$s desde el archivo %2$s "

#: includes/class-yith-system-status.php:573
msgid "Contact your hosting company in order to enable it."
msgstr "Contacta con tu empresa de hosting para activarlo."

#. translators: %1$s opening link tag, %2$s closing link tag
#: includes/class-yith-system-status.php:577
#: includes/class-yith-system-status.php:600
msgid ""
"Read more %1$shere%2$s or contact your hosting company in order to increase "
"it."
msgstr ""
"Lee más %1$saquí%2$s o contacta a tu empresa de hosting para incrementarlo."

#. translators: %s recommended memory amount
#: includes/class-yith-system-status.php:597
msgid ""
"For optimal functioning of our plugins, we suggest setting at least %s of "
"available memory"
msgstr ""
"Para el óptimo funcionamiento de nuestros plugins, sugerimos al menos %s de "
"memoria disponible"

#. translators: %1$s TLS label, %2$s cURL label
#: includes/class-yith-system-status.php:605
msgid ""
"The system check cannot determine which %1$s version is installed because "
"%2$s module is disabled. Ask your hosting company to enable it."
msgstr ""
"La comprobación del sistema no ha podido determinar qué versión de %1$s está "
"instalada porque el módulo %2$s está desactivado. Solicita a tu compañia de "
"hosting que lo active."

#. translators: %1$s TLS label
#: includes/class-yith-system-status.php:608
msgid ""
"The system check cannot determine which %1$s version is installed due to a "
"connection issue between your site and our server."
msgstr ""
"La comprobación del sistema no ha podido determinar qué versión de %1$s está "
"instalada debido a un error entre tu sitio y nuestro servidor."

#: templates/fields/ajax-customers.php:41
msgid "Search Customers"
msgstr "Buscar clientes"

#. translators: 1. user display name; 2. user ID; 3. user email.
#: templates/fields/ajax-customers.php:68
#: templates/fields/ajax-customers.php:79
msgid "%1$s (#%2$s &ndash; %3$s)"
msgstr "%1$s (#%2$s &ndash; %3$s)"

#: templates/fields/ajax-posts.php:41
msgid "Search Posts"
msgstr "Buscar entradas"

#: templates/fields/ajax-products.php:14
msgid "Search Product"
msgstr "Buscar producto"

#: templates/fields/ajax-terms.php:41
msgid "Search Categories"
msgstr "Buscar categorías"

#: templates/fields/customtabs.php:17
msgid "Close all"
msgstr "Cerrar todo"

#: templates/fields/customtabs.php:17
msgid "Expand all"
msgstr "Expandir todo"

#: templates/fields/customtabs.php:25 templates/fields/customtabs.php:68
msgid "Remove"
msgstr "Eliminar"

#: templates/fields/customtabs.php:34 templates/fields/customtabs.php:76
msgid "Name"
msgstr "Nombre"

#: templates/fields/customtabs.php:40 templates/fields/customtabs.php:81
msgid "Value"
msgstr "Valor"

#: templates/fields/customtabs.php:41 templates/fields/customtabs.php:82
msgid "Content of the tab. (HTML is supported)"
msgstr "Contenido de la pestaña. (Compatible con HTML)"

#: templates/fields/customtabs.php:52
msgid "Add custom product tab"
msgstr "Añadir pestaña de producto personalizada"

#: templates/fields/customtabs.php:93
msgid "Do you want to remove the custom tab?"
msgstr "¿Quieres eliminar la pestaña personalizada?"

#: templates/fields/date-format.php:65
msgid "Custom:"
msgstr "Personalizado:"

#: templates/fields/date-format.php:70
msgid "Preview:"
msgstr "Vista previa:"

#: templates/fields/icons.php:78
msgid "Set Default"
msgstr "Establecer predeterminado"

#: templates/fields/image-gallery.php:29 templates/fields/image-gallery.php:40
msgid "Delete image"
msgstr "Eliminar imagen"

#: templates/fields/image-gallery.php:37
msgid "Add Images to Gallery"
msgstr "Añadir imágenes a la Galería"

#: templates/fields/image-gallery.php:38
msgid "Add to gallery"
msgstr "Añadir a la galería"

#: templates/fields/image-gallery.php:39
msgid "Add images"
msgstr "Añadir imágenes"

#: templates/fields/image-gallery.php:41
msgid "Delete"
msgstr "Eliminar"

#: templates/fields/select-buttons.php:19
msgid "Add All"
msgstr "Añadir todo"

#: templates/fields/select-buttons.php:20
msgid "Remove All"
msgstr "Eliminar todo"

#: templates/fields/sidebars.php:20
msgid "Left sidebar"
msgstr "Barra lateral izquierda"

#: templates/fields/sidebars.php:23
msgid "Right sidebar"
msgstr "Barra lateral derecha"

#: templates/fields/sidebars.php:26 templates/fields/sidebars.php:29
msgid "No sidebar"
msgstr "Sin barra lateral"

#: templates/fields/sidebars.php:39
msgid "Left Sidebar"
msgstr "Barra lateral izquierda"

#: templates/fields/sidebars.php:41 templates/fields/sidebars.php:56
msgid "Choose a sidebar"
msgstr "Elige una barra lateral"

#: templates/fields/sidebars.php:54
msgid "Right Sidebar"
msgstr "Barra lateral derecha"

#: templates/fields/upload.php:34
#: templates/panel/woocommerce/woocommerce-upload.php:37
msgid "Upload"
msgstr "Subir"

#: templates/fields/upload.php:39
msgid "Reset"
msgstr "Restablecer"

#: templates/panel/woocommerce/woocommerce-form.php:28
#: templates/panel/woocommerce/woocommerce-form.php:32
msgid "Save Options"
msgstr "Guardar Opciones"

#: templates/panel/woocommerce/woocommerce-form.php:32
msgid "Options Saved"
msgstr "Opciones guardadas"

#: templates/panel/woocommerce/woocommerce-form.php:38
msgid "Reset Defaults"
msgstr "Restablecer valores predeterminados"

#: templates/sysinfo/system-information-panel.php:12
msgid "PHPInfo"
msgstr "Información PHP"

#: templates/sysinfo/system-information-panel.php:13
#: templates/sysinfo/tabs/error-log.php:25
msgid "Log Files"
msgstr "Archivos de registro"

#: templates/sysinfo/system-information-panel.php:22
msgid "YITH System Information"
msgstr "Información de Sistema de YITH"

#: templates/sysinfo/tabs/error-log.php:13
msgid "WP debug.log file"
msgstr "Archivo WP debug.log"

#: templates/sysinfo/tabs/error-log.php:18
msgid "PHP error_log file"
msgstr "Archivo PHP error_log"

#: templates/sysinfo/tabs/error-log.php:60
msgid "Download"
msgstr "Descargar"

#: templates/sysinfo/tabs/error-log.php:72
msgid "The file size exceeds 8 megabytes so it must be downloaded"
msgstr "El archivo excede los 8 megabytes por lo que debe ser descargado"

#. translators: %s file name.
#: templates/sysinfo/tabs/error-log.php:96
msgid ""
"No Log file available. Enable the WordPress debug by adding this in the %s "
"file of your installation"
msgstr ""
"No hay archivo de registro disponible. Activa la depuración de WordPress "
"añadiendo este código en el archivo %s de tu instalación"

#: templates/sysinfo/tabs/error-log.php:105
msgid "Copied!"
msgstr "¡Copiado!"

#: templates/sysinfo/tabs/error-log.php:105
msgid "Copy Code"
msgstr "Copiar código"

#: templates/sysinfo/tabs/main.php:17
msgid "Site Info"
msgstr "Información del sitio"

#: templates/sysinfo/tabs/main.php:22
msgid "Site URL"
msgstr "URL del sitio"

#: templates/sysinfo/tabs/main.php:31
msgid "Output IP Address"
msgstr "Dirección IP de salida"

#: templates/sysinfo/tabs/main.php:39
msgid "Defined WP_CACHE"
msgstr "WP_CACHE definido"

#: templates/sysinfo/tabs/main.php:42 templates/sysinfo/tabs/main.php:50
msgid "Yes"
msgstr "Sí"

#: templates/sysinfo/tabs/main.php:47
msgid "External object cache"
msgstr "Caché objeto externo"

#: templates/sysinfo/tabs/main.php:55
msgid "YITH Plugin Framework Version"
msgstr "Versión del YITH Plugin Framework "

#. translators: %s is the name of the plugin that is loading the framework.
#: templates/sysinfo/tabs/main.php:64
msgid "loaded by %s"
msgstr "cargado por %s"

#: templates/sysinfo/tabs/main.php:73
msgid "Plugins Requirements"
msgstr "Requerimientos de los plugins"

#: templates/sysinfo/tabs/main.php:108
msgid "Database Info"
msgstr "Información de la base de datos"

#: templates/sysinfo/tabs/main.php:113
msgid "MySQL version"
msgstr "Versión de MySQL"

#. Translators: %s: Codex link.
#: templates/sysinfo/tabs/main.php:123
msgid "WordPress recommends a minimum MySQL version of 5.6. See: %s"
msgstr "WordPress recomienda como versión mínima para MySQL la 5.6. Ver: %s"

#: templates/sysinfo/tabs/main.php:123
msgid "WordPress requirements"
msgstr "Requerimientos de WordPress"

#: templates/sysinfo/tabs/main.php:130
msgid "Total Database Size"
msgstr "Tamaño total de la base de datos:"

#: templates/sysinfo/tabs/main.php:138
msgid "Database Data Size"
msgstr "Tamaño de los datos en la base de datos:"

#: templates/sysinfo/tabs/main.php:146
msgid "Database Index Size"
msgstr "Tamaño del índice en la base de datos:"

#: templates/sysinfo/tabs/main.php:154
msgid "Database Free Size"
msgstr "Espacio libre en la base de datos:"

#. Translators: %1$f: Table size, %2$f: Index size, %3$f: Free size, %4$s
#. Engine.
#: templates/sysinfo/tabs/main.php:168
msgid "Data: %1$.2fMB | Index: %2$.2fMB | Free: %3$.2fMB | Engine: %4$s"
msgstr "Datos: %1$.2fMB | Índice: %2$.2fMB | Libre: %3$.2fMB | Motor: %4$s"

#. translators: %s is the title of the post object.
#: yit-functions.php:1911
msgid "Are you sure you want to move \"%s\" to trash?"
msgstr "¿Estás seguro de que quieres mover \"%s\" a la papelera?"

#. translators: %s is the title of the post object.
#: yit-functions.php:1913 yit-functions.php:2073
msgid "Are you sure you want to delete \"%s\"?"
msgstr "¿Estás seguro de que quieres borrar \"%s\"?"

#: yit-functions.php:2011 yit-functions.php:2019 yit-functions.php:2136
msgid "Further actions"
msgstr "Otras acciones"

#: yit-plugin.php:205
msgid "License"
msgstr "Licencia"

#. Author of the plugin/theme
msgid "YITH"
msgstr "YITH"

#. translators: %s it the Elementor Widget title.
#: includes/builders/elementor/class-yith-elementor-widget.php:252
msgctxt "Elementor Widget - section title"
msgid "%s - Options"
msgstr "%s - Opciones"

#: includes/builders/gutenberg/class-yith-gutenberg.php:149
msgctxt "[gutenberg]: Category Name"
msgid "YITH"
msgstr "YITH"

#: includes/class-yit-assets.php:134
msgctxt "Button text"
msgid "Confirm"
msgstr "Confirmar"

#: includes/class-yit-assets.php:135
msgctxt "Button text"
msgid "Cancel"
msgstr "Cancelar"

#: includes/class-yit-assets.php:148 yit-functions.php:1982
msgctxt "Trash confirmation action"
msgid "Yes, move to trash"
msgstr "Sí, mover a la papelera"

#: includes/class-yit-assets.php:152 yit-functions.php:2000
#: yit-functions.php:2127
msgctxt "Delete confirmation action"
msgid "Yes, delete"
msgstr "Si, borrar"

#: includes/class-yit-plugin-panel.php:488
msgctxt "Help tab name"
msgid "Help"
msgstr "Ayuda"

#. translators: 1. Plugin name.
#: includes/class-yit-plugin-panel.php:798
msgctxt "Help tab default title"
msgid "Thank you for purchasing %s!"
msgstr "¡Gracias por comprar %s!"

#: includes/class-yit-plugin-panel.php:799
msgctxt "Help tab default description"
msgid ""
"We want to help you to enjoy a wonderful experience with all our products."
msgstr ""
"Queremos ayudarte a disfrutar de una experiencia maravillosa con todos "
"nuestros productos."

#: includes/class-yith-dashboard.php:96
msgctxt "Plugin FW"
msgid "View Changelog"
msgstr "Ver Registro de cambios"

#: includes/class-yith-dashboard.php:97
msgctxt "Plugin FW"
msgid "Latest update released on"
msgstr "Última actualización publicada el"

#: includes/class-yith-dashboard.php:137
msgctxt "Button label"
msgid "Close"
msgstr "Cerrar"

#: includes/privacy/class-yith-privacy.php:61
msgctxt "Privacy Policy Guide Title"
msgid "YITH Plugins"
msgstr "Plugins de YITH"

#: includes/privacy/class-yith-privacy.php:93
msgctxt "Privacy Policy Content"
msgid ""
"This sample language includes the basics around what personal data your "
"store may be collecting, storing and sharing, as well as who may have access "
"to that data. Depending on what settings are enabled and which additional "
"plugins are used, the specific information shared by your store will vary. "
"We recommend consulting with a lawyer when deciding what information to "
"disclose on your privacy policy."
msgstr ""
"Este idioma de prueba incluye la información principal sobre qué tipo de "
"información puede estar recopilando, almacenando y compartiendo tu tienda, "
"así como quién tiene acceso a esa información. Dependiendo de los ajustes "
"configurados y qué plugins adicionales sean usados, la información "
"específica compartida por tu sitio variará. Recomendamos consultar con un "
"abogado cuando decidas qué información mostrar en tu política de privacidad."

#: includes/privacy/class-yith-privacy.php:97
msgctxt "Privacy Policy Content"
msgid "What we collect and store"
msgstr "Qué recopilamos y almacenamos"

#: includes/privacy/class-yith-privacy.php:100
msgctxt "Privacy Policy Content"
msgid "Who on our team has access"
msgstr "Quién en nuestro equipo tiene acceso"

#: includes/privacy/class-yith-privacy.php:103
msgctxt "Privacy Policy Content"
msgid "What we share with others"
msgstr "Qué compartimos con otros"

#: includes/privacy/class-yith-privacy.php:106
msgctxt "Privacy Policy Content"
msgid "Payments"
msgstr "Pagos"

#: templates/fields/copy-to-clipboard.php:41
msgctxt "Copy-to-clipboard message"
msgid "Copied!"
msgstr "¡Copiado!"

#: templates/fields/copy-to-clipboard.php:45
msgctxt "Copy-to-clipboard button text"
msgid "Copy"
msgstr "Copiar"

#: templates/fields/dimensions.php:13
msgctxt "Position in the \"Dimensions\" field"
msgid "Top"
msgstr "Parte superior"

#: templates/fields/dimensions.php:14
msgctxt "Position in the \"Dimensions\" field"
msgid "Right"
msgstr "Derecha"

#: templates/fields/dimensions.php:15
msgctxt "Position in the \"Dimensions\" field"
msgid "Bottom"
msgstr "Parte inferior"

#: templates/fields/dimensions.php:16
msgctxt "Position in the \"Dimensions\" field"
msgid "Left"
msgstr "Izquierda"

#: templates/fields/dimensions.php:94
msgctxt "Tooltip in the \"Dimensions\" field"
msgid "Link values together"
msgstr "Enlazar valores juntos"

#: templates/fields/image-dimensions.php:18
msgctxt "Image width field label"
msgid "Width"
msgstr "Anchura"

#: templates/fields/image-dimensions.php:23
msgctxt "Image height field label"
msgid "Height"
msgstr "Altura"

#: templates/fields/onoff.php:28
msgctxt "YES/NO button: use MAX 4 characters!"
msgid "YES"
msgstr "SÍ"

#: templates/fields/onoff.php:29
msgctxt "YES/NO button: use MAX 4 characters!"
msgid "NO"
msgstr "NO"

#. translators: 1. Url to EN playlist.
#: templates/panel/help-tab.php:87
msgctxt "Help tab view all video link"
msgid ""
"Check the full <a href=\"%s\" target=\"_blank\">Playlist on Youtube</a> to "
"learn more >"
msgstr ""
"Consulta la <a href=\"%s\" target=\"_blank\">Lista de reproducción en "
"Youtube</a> para saber más >"

#: templates/panel/help-tab.php:94
msgctxt "Help tab Watch Videotutorials link"
msgid "Videos are also available in:"
msgstr "Los vídeos también están disponibles en:"

#: templates/panel/help-tab.php:137
msgctxt "Help tab Watch Videotutorials link"
msgid "Watch our videotutorials"
msgstr "Vea nuestros videotutoriales"

#: templates/panel/help-tab.php:140
msgctxt "Help tab Watch Videotutorials link"
msgid "We show you some use cases"
msgstr "Te mostramos algunos ejemplos de uso"

#: templates/panel/help-tab.php:124
msgctxt "Help tab Read Documentation link"
msgid "Read the documentation"
msgstr "Lee la documentación"

#: templates/panel/help-tab.php:127
msgctxt "Help tab Read Documentation link"
msgid "to learn from basics how it works"
msgstr "para aprender desde lo más básico cómo funciona"

#: templates/panel/help-tab.php:150
msgctxt "Help tab view FAQs link"
msgid "Check the FAQs"
msgstr "Comprueba los FAQ"

#: templates/panel/help-tab.php:153
msgctxt "Help tab view FAQs link"
msgid "to find answers to your doubts"
msgstr "para encontrar respuestas a tus dudas"

#: templates/panel/help-tab.php:169
msgctxt "Help tab FAQ title"
msgid "Last FAQs in our Help Center"
msgstr "Últimos FAQs en nuestro Centro de Ayuda"

#: templates/panel/help-tab.php:183
msgctxt "Help tab FAQ link"
msgid "View all FAQs >"
msgstr "Ver todos los FAQs >"

#: templates/panel/help-tab.php:192
msgctxt "Help tab submit ticket title"
msgid "Need help?"
msgstr "¿Necesitas ayuda?"

#: templates/panel/help-tab.php:195
msgctxt "Help tab submit ticket description"
msgid ""
"If you are experiencing some technical issue ask help to our developers. "
"Submit a ticket in our support desk and we will help you as soon as possible."
msgstr ""
"Si tienes algún problema técnico, pide ayuda a nuestros desarrolladores. "
"Envía un ticket en nuestro panel de soporte y te ayudaremos lo antes posible."

#: templates/panel/help-tab.php:203
msgctxt "Help tab submit ticket button"
msgid "Submit a ticket"
msgstr "Enviar ticket"

#: yit-functions.php:1925
msgctxt "Post action"
msgid "Preview"
msgstr "Previsualizar"

#: yit-functions.php:1934
msgctxt "Post action"
msgid "View"
msgstr "Ver"

#: yit-functions.php:1945
msgctxt "Post action"
msgid "Edit"
msgstr "Editar"

#: yit-functions.php:1953
msgctxt "Post action"
msgid "Duplicate"
msgstr "Duplicar"

#: yit-functions.php:1965
msgctxt "Post action"
msgid "Restore"
msgstr "Restaurar"

#: yit-functions.php:1973
msgctxt "Post action"
msgid "Trash"
msgstr "A la papelera"

#: yit-functions.php:1990
msgctxt "Post action"
msgid "Delete Permanently"
msgstr "Borrar permanentemente"

#: yit-functions.php:2087
msgctxt "Term action"
msgid "View"
msgstr "Ver"

#: yit-functions.php:2097
msgctxt "Term action"
msgid "Edit"
msgstr "Editar"

#: yit-functions.php:2105
msgctxt "Term action"
msgid "Duplicate"
msgstr "Duplicar"

#: yit-functions.php:2118
msgctxt "Term action"
msgid "Delete"
msgstr "Borrar"

#: yit-plugin.php:84
msgctxt "Plugin Row Meta"
msgid "Live Demo"
msgstr "Demostración en vivo"

#: yit-plugin.php:88
msgctxt "Plugin Row Meta"
msgid "Documentation"
msgstr "Documentación"

#: yit-plugin.php:92
msgctxt "Plugin Row Meta"
msgid "Support"
msgstr "Soporte"

#: yit-plugin.php:96
msgctxt "Plugin Row Meta"
msgid "Premium version"
msgstr "Versión premium"

#: yit-plugin.php:201
msgctxt "Action links"
msgid "Settings"
msgstr "Ajustes"
PK`x1\MgA��x�x(plugin-fw/languages/yith-plugin-fw-el.ponu�[���# Translation of YITH Framework in Greek
# This file is distributed under the same license as the YITH Framework package.
msgid ""
msgstr ""
"Project-Id-Version: YITH Framework\n"
"Report-Msgid-Bugs-To: YITH <plugins@yithemes.com>\n"
"POT-Creation-Date: 2021-11-09 12:50:28+00:00\n"
"PO-Revision-Date: 2021-02-11 18:07:46+0000\n"
"Language: el_GR\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: GlotPress/3.0.0-alpha.2\n"

#: includes/class-yit-assets.php:146 yit-functions.php:1979
msgid "Confirm trash"
msgstr ""

#: includes/class-yit-assets.php:147
msgid "Are you sure you want to trash the selected items?"
msgstr ""

#: includes/class-yit-assets.php:149 includes/class-yit-assets.php:153
#: templates/sysinfo/tabs/main.php:42 templates/sysinfo/tabs/main.php:50
#: yit-functions.php:1981 yit-functions.php:1999
msgid "No"
msgstr "Όχι"

#: includes/class-yit-assets.php:150 yit-functions.php:1997
#: yit-functions.php:2125
msgid "Confirm delete"
msgstr ""

#: includes/class-yit-assets.php:151
msgid "Are you sure you want to delete the selected items?"
msgstr ""

#: includes/class-yit-assets.php:151 yit-functions.php:1913
#: yit-functions.php:2073
msgid ""
"This action cannot be undone and you will not be able to recover this data."
msgstr ""

#: includes/class-yit-assets.php:164
msgid "Clear"
msgstr "Καθαρισμός"

#: includes/class-yit-assets.php:165
msgid "Clear color"
msgstr "Καθαρισμός χρώματος"

#: includes/class-yit-assets.php:166
msgid "Default"
msgstr "Προεπιλεγμένο"

#: includes/class-yit-assets.php:167
msgid "Select default color"
msgstr "Επιλογή προεπιλεγμένου χρώματος"

#: includes/class-yit-assets.php:168
msgid "Select Color"
msgstr "Επιλογή Χρώματος"

#: includes/class-yit-assets.php:169
msgid "Color value"
msgstr "Αξία χρώματος"

#: includes/class-yit-help-desk.php:152
msgid "There was an error with your request; please try again later."
msgstr ""

#: includes/class-yit-plugin-panel-woocommerce.php:423
msgid "The changes you have made will be lost if you leave this page."
msgstr ""
"Οι αλλαγές που έχετε δημιουργήσει θα χαθούν αν αφήσετε αυτήν την σελίδα."

#: includes/class-yit-plugin-panel.php:83
msgid "Plugin Settings"
msgstr "Ρυθμίσεις Προσθέτου"

#: includes/class-yit-plugin-panel.php:84
msgid "Settings"
msgstr "Ρυθμίσεις"

#: includes/class-yit-plugin-panel.php:451
#: includes/class-yit-plugin-panel.php:454
msgid "How to install premium version"
msgstr "Πώς να εγκαταστήσετε την προηγμένη έκδοση"

#: includes/class-yit-plugin-panel.php:652
#: includes/class-yit-plugin-subpanel.php:132
msgid "Save Changes"
msgstr "Αποθήκευση Αλλαγών"

#: includes/class-yit-plugin-panel.php:657
#: includes/class-yit-plugin-subpanel.php:136
#: templates/panel/woocommerce/woocommerce-form.php:14
msgid ""
"If you continue with this action, you will reset all options in this page."
msgstr ""
"Αν συνεχίσετε με αυτή την ενέργεια θα επαναφέρετε όλες τις επιλογές στη "
"σελίδα."

#: includes/class-yit-plugin-panel.php:657
#: includes/class-yit-plugin-subpanel.php:136
#: templates/panel/woocommerce/woocommerce-form.php:14
msgid "Are you sure?"
msgstr "Είστε σίγουρος;"

#: includes/class-yit-plugin-panel.php:661
#: includes/class-yit-plugin-subpanel.php:139
msgid "Reset to default"
msgstr "Επαναφορά σε προεπιλεγμένο"

#: includes/class-yit-plugin-panel.php:979
msgid ""
"The element you have entered already exists. Please, enter another name."
msgstr "Το στοιχείο που εισάγατε υπάρχει ήδη. Παρακαλώ, εισάγετε άλλο όνομα."

#: includes/class-yit-plugin-panel.php:980
msgid "Settings saved"
msgstr "Ρυθμίσεις αποθηκεύτηκαν"

#: includes/class-yit-plugin-panel.php:981
msgid "Settings reset"
msgstr "Επαναφορά ρυθμίσεων"

#: includes/class-yit-plugin-panel.php:982
msgid "Element deleted correctly."
msgstr "Το στοιχείο διαγράφηκε επιτυχώς."

#: includes/class-yit-plugin-panel.php:983
#: includes/class-yit-plugin-panel.php:984
msgid "Element updated correctly."
msgstr "Το στοιχείο αναβαθμίστηκε επιτυχώς."

#: includes/class-yit-plugin-panel.php:985
msgid "Database imported correctly."
msgstr "Επιτυχής εισαγωγή βάσης δεδομένων."

#: includes/class-yit-plugin-panel.php:986
msgid "An error has occurred during import. Please try again."
msgstr "Παρουσιάστηκε σφάλμα κατά την εισαγωγή. Παρακαλώ προσπαθήστε ξανά."

#: includes/class-yit-plugin-panel.php:987
msgid "The added file is not valid."
msgstr "Το προστιθέμενο αρχείο δεν είναι έγκυρο."

#: includes/class-yit-plugin-panel.php:988
msgid "Sorry, import is disabled."
msgstr "Συγνώμη, η εισαγωγή είναι απενεργοποιημένη."

#: includes/class-yit-plugin-panel.php:989
msgid "Sorting successful."
msgstr "Διαλογή επιτυχής."

#: includes/class-yit-plugin-panel.php:1457
msgid "We need your support"
msgstr "Χρειαζόμαστε την υποστήριξή σας"

#: includes/class-yit-plugin-panel.php:1458
msgid "to keep updating and improving the plugin. Please,"
msgstr ""
"για να διατηρήσετε την ενημέρωση και τη βελτίωση του πρόσθετου. Παρακαλώ,"

#: includes/class-yit-plugin-panel.php:1460
msgid "help us by leaving a good review"
msgstr ""

#: includes/class-yit-plugin-panel.php:1461
msgid ":) Thanks!"
msgstr ":) Ευχαριστώ!"

#: includes/class-yit-pointers.php:80
msgid "Plugins Activated"
msgstr "Ενεργοποιημένα Πρόσθετα"

#: includes/class-yit-pointers.php:81
msgid ""
"From now on, you can find all plugin options in YITH menu. Plugin "
"customization settings will be available as a new entry in YITH menu."
msgstr ""

#. translators: 1. YITH site link; 2. WordPress site link.
#: includes/class-yit-pointers.php:84 includes/class-yit-pointers.php:100
msgid "Discover all our plugins available on: %1$s and %2$s"
msgstr "Ανακαλύψτε όλα τα διαθέσιμά μας πρόσθετα στο: %1$s και %2$s"

#: includes/class-yit-pointers.php:96
msgid "Plugins Upgraded"
msgstr "Αναβαθμισμένα Πρόσθετα"

#: includes/class-yit-pointers.php:97
msgid ""
"From now on, you can find the option panel of YITH plugins in YITH menu. "
"Every time one of our plugins is added, a new entry will be added to this "
"menu. For example, after the update, plugin options (such as for YITH "
"WooCommerce Wishlist, YITH WooCommerce Ajax Search, etc.) will be moved from "
"previous location to YITH menu."
msgstr ""

#: includes/class-yith-dashboard.php:35
msgid "YITH Latest Updates"
msgstr "Τελευταίες Αναβαθμίσεις YITH"

#: includes/class-yith-dashboard.php:36
msgid "Latest news from YITH Blog"
msgstr "Τελευταία νέα από YITH Blog"

#: includes/class-yith-dashboard.php:56
msgid "RSS Error:"
msgstr "Σφάλμα RSS:"

#: includes/class-yith-dashboard.php:63
msgid ""
"An error has occurred, which probably means the feed is down. Try again "
"later."
msgstr ""
"Παρουσιάστηκε σφάλμα, που πιθανότατα σημαίνει ότι έπεσε το τροφοδοτικό. "
"Προσπαθήστε ξανά αργότερα."

#. translators: %s is the name of the post type (example Back to "Membership
#. Plans").
#: includes/class-yith-post-type-admin.php:286
msgid "Back to \"%s\""
msgstr ""

#: includes/class-yith-post-type-admin.php:286
msgid "Back to the list"
msgstr ""

#: includes/class-yith-system-status.php:110
msgid "WordPress Version"
msgstr "Έκδοση WordPress"

#: includes/class-yith-system-status.php:111
msgid "WooCommerce Version"
msgstr "Έκδοση WooCommerce"

#: includes/class-yith-system-status.php:112
msgid "Available Memory"
msgstr "Διαθέσιμη Μνήμη"

#: includes/class-yith-system-status.php:113
msgid "PHP Version"
msgstr "Έκδοση PHP"

#: includes/class-yith-system-status.php:114
msgid "TLS Version"
msgstr "Έκδοση TLS"

#: includes/class-yith-system-status.php:115
msgid "WordPress Cron"
msgstr "WordPress Cron"

#: includes/class-yith-system-status.php:116
msgid "SimpleXML"
msgstr "SimpleXML"

#: includes/class-yith-system-status.php:117
msgid "MultiByte String"
msgstr "MultiByte String"

#: includes/class-yith-system-status.php:118
msgid "ImageMagick Version"
msgstr "Έκδοση ImageMagick"

#: includes/class-yith-system-status.php:119
msgid "GD Library"
msgstr "Βιβλιοθήκη GD"

#: includes/class-yith-system-status.php:120
msgid "Iconv Module"
msgstr "Άρθρωμα Iconv"

#: includes/class-yith-system-status.php:121
msgid "OPCache Save Comments"
msgstr "OPCache Save Comments"

#: includes/class-yith-system-status.php:122
msgid "URL FOpen"
msgstr "URL FOpen"

#: includes/class-yith-system-status.php:140
#: includes/class-yith-system-status.php:141
#: templates/sysinfo/system-information-panel.php:11
msgid "System Status"
msgstr "Κατάσταση Συστήματος"

#: includes/class-yith-system-status.php:183
msgid "YITH Plugins"
msgstr "Πρόσθετα YITH"

#: includes/class-yith-system-status.php:191
msgid "WooCommerce"
msgstr "WooCommerce"

#: includes/class-yith-system-status.php:342
msgid "Warning!"
msgstr "Προσοχή!"

#. translators: %1$s open link tag, %2$s open link tag
#: includes/class-yith-system-status.php:346
msgid ""
"The system check has detected some compatibility issues on your installation."
"%1$sClick here%2$s to know more"
msgstr ""
"Ο έλεγχος συστήματος έχει εντοπίσει κάποια προβλήματα συμβατότητας στην "
"εγκατάστασή σας.%1$sΚάντε κλικ εδώ%2$s για να μάθετε περισσότερα"

#: includes/class-yith-system-status.php:488
msgid "Enabled"
msgstr "Ενεργοποιημένο"

#: includes/class-yith-system-status.php:488
msgid "Disabled"
msgstr "Απενεργοποιημένο"

#: includes/class-yith-system-status.php:493
msgid "N/A"
msgstr "N/A"

#. translators: %1$s plugin name, %2$s requirement name
#: includes/class-yith-system-status.php:520
msgid "%1$s needs %2$s enabled"
msgstr "%1$s χρειάζεται %2$s ενεργοποιημένο"

#. translators: %1$s plugin name, %2$s required memory amount
#: includes/class-yith-system-status.php:523
msgid "%1$s needs at least %2$s of available memory"
msgstr "%1$s χρειάζεται τουλάχιστον %2$s διαθέσιμης μνήμης"

#. translators: %1$s plugin name, %2$s version number
#: includes/class-yith-system-status.php:526
msgid "%1$s needs at least %2$s version"
msgstr "%1$s χρειάζεται τουλάχιστον %2$s έκδοση"

#: includes/class-yith-system-status.php:550
msgid ""
"Update it to the latest version in order to benefit of all new features and "
"security updates."
msgstr ""
"Κάντε αναβάθμιση της τελευταίας έκδοσης για να επωφεληθείτε από τα νέα "
"χαρακτηριστικά και τις αναβαθμίσεις προστασίας."

#: includes/class-yith-system-status.php:554
#: includes/class-yith-system-status.php:560
msgid "Contact your hosting company in order to update it."
msgstr "Επικοινωνήστε με την εταιρεία hosting σας για να αναβαθμίσετε."

#: includes/class-yith-system-status.php:558
msgid "Contact your hosting company in order to install it."
msgstr "Επικοινωνήστε με την εταιρεία hosting σας για να το ενεργοποιήσετε."

#. translators: %1$s code, %2$s file name
#: includes/class-yith-system-status.php:565
msgid "Remove %1$s from %2$s file"
msgstr "Αφαίρεση %1$s από αρχείο %2$s"

#: includes/class-yith-system-status.php:573
msgid "Contact your hosting company in order to enable it."
msgstr "Επικοινωνήστε με την εταιρεία hosting σας για να ενεργοποιήσετε."

#. translators: %1$s opening link tag, %2$s closing link tag
#: includes/class-yith-system-status.php:577
#: includes/class-yith-system-status.php:600
msgid ""
"Read more %1$shere%2$s or contact your hosting company in order to increase "
"it."
msgstr ""
"Μάθετε περισσότερα %1$sεδώ%2$s ή επικοινωνήστε με την εταιρεία hosting σας "
"για να το βελτιώσετε."

#. translators: %s recommended memory amount
#: includes/class-yith-system-status.php:597
msgid ""
"For optimal functioning of our plugins, we suggest setting at least %s of "
"available memory"
msgstr ""
"Για την βέλτιστη λειτουργικότητα των προσθέτων μας, προτείνουμε να ορίσετε "
"τουλάχιστον %s διαθέσιμης μνήμης"

#. translators: %1$s TLS label, %2$s cURL label
#: includes/class-yith-system-status.php:605
msgid ""
"The system check cannot determine which %1$s version is installed because "
"%2$s module is disabled. Ask your hosting company to enable it."
msgstr ""
"Το σύστημα δεν μπορεί να καθορίσει ποια %1$s έκδοση έχει εγκατασταθεί γιατί "
"το %2$s άρθρωμα είναι απενεργοποιημένο. Ζητήστε από την εταιρεία hosting σας "
"να το ενεργοποιήσει."

#. translators: %1$s TLS label
#: includes/class-yith-system-status.php:608
msgid ""
"The system check cannot determine which %1$s version is installed due to a "
"connection issue between your site and our server."
msgstr ""
"Ο έλεγχος συστήματος δεν μπορεί να διευκρινήσει ποια έκδοση %1$s έχει "
"εγκατασταθεί λόγω προβλήματος σύνδεσης ανάμεσα στον ιστότοπο σας και τον "
"διακομιστή μας."

#: templates/fields/ajax-customers.php:41
msgid "Search Customers"
msgstr "Αναζήτηση Πελατών"

#. translators: 1. user display name; 2. user ID; 3. user email.
#: templates/fields/ajax-customers.php:68
#: templates/fields/ajax-customers.php:79
msgid "%1$s (#%2$s &ndash; %3$s)"
msgstr "%1$s (#%2$s &ndash; %3$s)"

#: templates/fields/ajax-posts.php:41
msgid "Search Posts"
msgstr "Αναζήτηση Άρθρου"

#: templates/fields/ajax-products.php:14
msgid "Search Product"
msgstr "Αναζήτηση Προϊόντος"

#: templates/fields/ajax-terms.php:41
msgid "Search Categories"
msgstr "Αναζήτηση Κατηγοριών"

#: templates/fields/customtabs.php:17
msgid "Close all"
msgstr "Απενεργοποίηση όλων"

#: templates/fields/customtabs.php:17
msgid "Expand all"
msgstr "Ανάπτυξη όλων"

#: templates/fields/customtabs.php:25 templates/fields/customtabs.php:68
msgid "Remove"
msgstr "Αφαίρεση"

#: templates/fields/customtabs.php:34 templates/fields/customtabs.php:76
msgid "Name"
msgstr "Όνομα"

#: templates/fields/customtabs.php:40 templates/fields/customtabs.php:81
msgid "Value"
msgstr "Τιμή"

#: templates/fields/customtabs.php:41 templates/fields/customtabs.php:82
msgid "Content of the tab. (HTML is supported)"
msgstr "Περιεχόμενο καρτέλας. (Υποστηρίζεται HTML)"

#: templates/fields/customtabs.php:52
msgid "Add custom product tab"
msgstr "Προσθέστε καρτέλα προσαρμοσμένου προϊόντος"

#: templates/fields/customtabs.php:93
msgid "Do you want to remove the custom tab?"
msgstr "Θέλετε να αφαιρέσετε την προσαρμοσμένη καρτέλα;"

#: templates/fields/date-format.php:65
msgid "Custom:"
msgstr "Προσαρμογή:"

#: templates/fields/date-format.php:70
msgid "Preview:"
msgstr "Προεπισκόπηση:"

#: templates/fields/icons.php:78
msgid "Set Default"
msgstr "Ορίστε Προεπιλεγμένο"

#: templates/fields/image-gallery.php:29 templates/fields/image-gallery.php:40
msgid "Delete image"
msgstr "Διαγραφή εικόνας"

#: templates/fields/image-gallery.php:37
msgid "Add Images to Gallery"
msgstr "Προσθέστε Εικόνες στη Συλλογή"

#: templates/fields/image-gallery.php:38
msgid "Add to gallery"
msgstr "Προσθέστε στη συλλογή"

#: templates/fields/image-gallery.php:39
msgid "Add images"
msgstr "Προσθέστε εικόνες"

#: templates/fields/image-gallery.php:41
msgid "Delete"
msgstr "Διαγραφή"

#: templates/fields/select-buttons.php:19
msgid "Add All"
msgstr "Προσθήκη Όλων"

#: templates/fields/select-buttons.php:20
msgid "Remove All"
msgstr "Αφαίρεση Όλων"

#: templates/fields/sidebars.php:20
msgid "Left sidebar"
msgstr "Αριστερή πλευρική στήλη"

#: templates/fields/sidebars.php:23
msgid "Right sidebar"
msgstr "Δεξιά πλευρική στήλη"

#: templates/fields/sidebars.php:26 templates/fields/sidebars.php:29
msgid "No sidebar"
msgstr "Χωρίς πλευρική στήλη"

#: templates/fields/sidebars.php:39
msgid "Left Sidebar"
msgstr "Αριστερή Πλευρική Στήλη"

#: templates/fields/sidebars.php:41 templates/fields/sidebars.php:56
msgid "Choose a sidebar"
msgstr "Επιλέξτε πλευρική στήλη"

#: templates/fields/sidebars.php:54
msgid "Right Sidebar"
msgstr "Δεξιά Πλευρική Στήλη"

#: templates/fields/upload.php:34
#: templates/panel/woocommerce/woocommerce-upload.php:37
msgid "Upload"
msgstr "Ανέβασμα"

#: templates/fields/upload.php:39
msgid "Reset"
msgstr "Επαναφορά"

#: templates/panel/woocommerce/woocommerce-form.php:28
#: templates/panel/woocommerce/woocommerce-form.php:32
msgid "Save Options"
msgstr ""

#: templates/panel/woocommerce/woocommerce-form.php:32
msgid "Options Saved"
msgstr ""

#: templates/panel/woocommerce/woocommerce-form.php:38
msgid "Reset Defaults"
msgstr "Επαναφορά Προεπιλεγμένων"

#: templates/sysinfo/system-information-panel.php:12
msgid "PHPInfo"
msgstr "PHPInfo"

#: templates/sysinfo/system-information-panel.php:13
#: templates/sysinfo/tabs/error-log.php:25
msgid "Log Files"
msgstr "Αρχεία Καταγραφής"

#: templates/sysinfo/system-information-panel.php:22
msgid "YITH System Information"
msgstr "Σύστημα Πληροφοριών YITH"

#: templates/sysinfo/tabs/error-log.php:13
msgid "WP debug.log file"
msgstr "Αρχείο WP debug.log"

#: templates/sysinfo/tabs/error-log.php:18
msgid "PHP error_log file"
msgstr "Αρχείο PHP error_log"

#: templates/sysinfo/tabs/error-log.php:60
msgid "Download"
msgstr "Κατέβασμα"

#: templates/sysinfo/tabs/error-log.php:72
msgid "The file size exceeds 8 megabytes so it must be downloaded"
msgstr ""
"Το μέγεθος αρχείου υπερβαίνει τα 8 megabytes οπότε θα πρέπει να το κατεβάσετε"

#. translators: %s file name.
#: templates/sysinfo/tabs/error-log.php:96
msgid ""
"No Log file available. Enable the WordPress debug by adding this in the %s "
"file of your installation"
msgstr ""
"Δεν υπάρχει διαθέσιμο αρχείο Καταγραφής. Ενεργοποιήστε την αποσφαλμάτωση "
"WordPress προσθέτοντάς το στο αρχείο %s της εγκατάστασής σας"

#: templates/sysinfo/tabs/error-log.php:105
msgid "Copied!"
msgstr "Έγινε αντιγραφή!"

#: templates/sysinfo/tabs/error-log.php:105
msgid "Copy Code"
msgstr "Αντιγραφή Κώδικα"

#: templates/sysinfo/tabs/main.php:17
msgid "Site Info"
msgstr "Στοιχεία Ιστότοπου"

#: templates/sysinfo/tabs/main.php:22
msgid "Site URL"
msgstr "URL Ιστοσελίδας"

#: templates/sysinfo/tabs/main.php:31
msgid "Output IP Address"
msgstr "Διεύθυνση IP Παραγωγής"

#: templates/sysinfo/tabs/main.php:39
msgid "Defined WP_CACHE"
msgstr "Καθορισμένο WP_CACHE"

#: templates/sysinfo/tabs/main.php:42 templates/sysinfo/tabs/main.php:50
msgid "Yes"
msgstr "Ναι"

#: templates/sysinfo/tabs/main.php:47
msgid "External object cache"
msgstr "Cache εξωτερικού αντικειμένου"

#: templates/sysinfo/tabs/main.php:55
msgid "YITH Plugin Framework Version"
msgstr ""

#. translators: %s is the name of the plugin that is loading the framework.
#: templates/sysinfo/tabs/main.php:64
msgid "loaded by %s"
msgstr ""

#: templates/sysinfo/tabs/main.php:73
msgid "Plugins Requirements"
msgstr "Προϋποθέσεις Πρόσθετων"

#: templates/sysinfo/tabs/main.php:108
msgid "Database Info"
msgstr ""

#: templates/sysinfo/tabs/main.php:113
msgid "MySQL version"
msgstr ""

#. Translators: %s: Codex link.
#: templates/sysinfo/tabs/main.php:123
msgid "WordPress recommends a minimum MySQL version of 5.6. See: %s"
msgstr ""

#: templates/sysinfo/tabs/main.php:123
msgid "WordPress requirements"
msgstr ""

#: templates/sysinfo/tabs/main.php:130
msgid "Total Database Size"
msgstr ""

#: templates/sysinfo/tabs/main.php:138
msgid "Database Data Size"
msgstr ""

#: templates/sysinfo/tabs/main.php:146
msgid "Database Index Size"
msgstr ""

#: templates/sysinfo/tabs/main.php:154
msgid "Database Free Size"
msgstr ""

#. Translators: %1$f: Table size, %2$f: Index size, %3$f: Free size, %4$s
#. Engine.
#: templates/sysinfo/tabs/main.php:168
msgid "Data: %1$.2fMB | Index: %2$.2fMB | Free: %3$.2fMB | Engine: %4$s"
msgstr ""

#. translators: %s is the title of the post object.
#: yit-functions.php:1911
msgid "Are you sure you want to move \"%s\" to trash?"
msgstr ""

#. translators: %s is the title of the post object.
#: yit-functions.php:1913 yit-functions.php:2073
msgid "Are you sure you want to delete \"%s\"?"
msgstr ""

#: yit-functions.php:2011 yit-functions.php:2019 yit-functions.php:2136
msgid "Further actions"
msgstr ""

#: yit-plugin.php:205
msgid "License"
msgstr "Άδεια χρήσης προϊόντος"

#. Author of the plugin/theme
msgid "YITH"
msgstr "YITH"

#. translators: %s it the Elementor Widget title.
#: includes/builders/elementor/class-yith-elementor-widget.php:252
msgctxt "Elementor Widget - section title"
msgid "%s - Options"
msgstr ""

#: includes/builders/gutenberg/class-yith-gutenberg.php:149
msgctxt "[gutenberg]: Category Name"
msgid "YITH"
msgstr "YITH"

#: includes/class-yit-assets.php:134
msgctxt "Button text"
msgid "Confirm"
msgstr ""

#: includes/class-yit-assets.php:135
msgctxt "Button text"
msgid "Cancel"
msgstr ""

#: includes/class-yit-assets.php:148 yit-functions.php:1982
msgctxt "Trash confirmation action"
msgid "Yes, move to trash"
msgstr ""

#: includes/class-yit-assets.php:152 yit-functions.php:2000
#: yit-functions.php:2127
msgctxt "Delete confirmation action"
msgid "Yes, delete"
msgstr ""

#: includes/class-yit-plugin-panel.php:488
msgctxt "Help tab name"
msgid "Help"
msgstr ""

#. translators: 1. Plugin name.
#: includes/class-yit-plugin-panel.php:798
msgctxt "Help tab default title"
msgid "Thank you for purchasing %s!"
msgstr ""

#: includes/class-yit-plugin-panel.php:799
msgctxt "Help tab default description"
msgid ""
"We want to help you to enjoy a wonderful experience with all our products."
msgstr ""

#: includes/class-yith-dashboard.php:96
msgctxt "Plugin FW"
msgid "View Changelog"
msgstr "Προβολή Αρχείου Καταγραφής"

#: includes/class-yith-dashboard.php:97
msgctxt "Plugin FW"
msgid "Latest update released on"
msgstr "Τελευταία αναβάθμιση κυκλοφόρησε στις"

#: includes/class-yith-dashboard.php:137
msgctxt "Button label"
msgid "Close"
msgstr "Απενεργοποίηση"

#: includes/privacy/class-yith-privacy.php:61
msgctxt "Privacy Policy Guide Title"
msgid "YITH Plugins"
msgstr "Πρόσθετα YITH"

#: includes/privacy/class-yith-privacy.php:93
msgctxt "Privacy Policy Content"
msgid ""
"This sample language includes the basics around what personal data your "
"store may be collecting, storing and sharing, as well as who may have access "
"to that data. Depending on what settings are enabled and which additional "
"plugins are used, the specific information shared by your store will vary. "
"We recommend consulting with a lawyer when deciding what information to "
"disclose on your privacy policy."
msgstr ""
"Αυτό το δείγμα γλώσσας περιλαμβάνει τα βασικά στοιχεία γύρω από το τι "
"προσωπικά δεδομένα το κατάστημά σας μπορεί να συλλέγει, την αποθήκευση και "
"την κοινή χρήση, καθώς και ποιοι μπορεί να έχουν πρόσβαση σε αυτά τα "
"δεδομένα. Ανάλογα με τις ρυθμίσεις που είναι ενεργοποιημένες και ποια "
"επιπλέον πρόσθετα χρησιμοποιούνται, οι συγκεκριμένες πληροφορίες που "
"κοινοποιούνται από το κατάστημά σας θα ποικίλλουν. Συνιστούμε τη διαβούλευση "
"με έναν δικηγόρο, όταν αποφασίζετε ποιες πληροφορίες να αποκαλύπτετε στην "
"πολιτική απορρήτου σας."

#: includes/privacy/class-yith-privacy.php:97
msgctxt "Privacy Policy Content"
msgid "What we collect and store"
msgstr "Τι συλλέγουμε και αποθηκεύουμε"

#: includes/privacy/class-yith-privacy.php:100
msgctxt "Privacy Policy Content"
msgid "Who on our team has access"
msgstr "Ποιος στην ομάδα μας έχει πρόσβαση"

#: includes/privacy/class-yith-privacy.php:103
msgctxt "Privacy Policy Content"
msgid "What we share with others"
msgstr "Τι μοιραζόμαστε με τους άλλους"

#: includes/privacy/class-yith-privacy.php:106
msgctxt "Privacy Policy Content"
msgid "Payments"
msgstr "Πληρωμές"

#: templates/fields/copy-to-clipboard.php:41
msgctxt "Copy-to-clipboard message"
msgid "Copied!"
msgstr ""

#: templates/fields/copy-to-clipboard.php:45
msgctxt "Copy-to-clipboard button text"
msgid "Copy"
msgstr ""

#: templates/fields/dimensions.php:13
msgctxt "Position in the \"Dimensions\" field"
msgid "Top"
msgstr "Κορυφή"

#: templates/fields/dimensions.php:14
msgctxt "Position in the \"Dimensions\" field"
msgid "Right"
msgstr "Δεξιά"

#: templates/fields/dimensions.php:15
msgctxt "Position in the \"Dimensions\" field"
msgid "Bottom"
msgstr "Κάτω"

#: templates/fields/dimensions.php:16
msgctxt "Position in the \"Dimensions\" field"
msgid "Left"
msgstr "Αριστερά"

#: templates/fields/dimensions.php:94
msgctxt "Tooltip in the \"Dimensions\" field"
msgid "Link values together"
msgstr "Συνδέστε αξίες"

#: templates/fields/image-dimensions.php:18
msgctxt "Image width field label"
msgid "Width"
msgstr ""

#: templates/fields/image-dimensions.php:23
msgctxt "Image height field label"
msgid "Height"
msgstr ""

#: templates/fields/onoff.php:28
msgctxt "YES/NO button: use MAX 4 characters!"
msgid "YES"
msgstr "ΝΑΙ"

#: templates/fields/onoff.php:29
msgctxt "YES/NO button: use MAX 4 characters!"
msgid "NO"
msgstr "ΟΧΙ"

#. translators: 1. Url to EN playlist.
#: templates/panel/help-tab.php:87
msgctxt "Help tab view all video link"
msgid ""
"Check the full <a href=\"%s\" target=\"_blank\">Playlist on Youtube</a> to "
"learn more >"
msgstr ""

#: templates/panel/help-tab.php:94
msgctxt "Help tab Watch Videotutorials link"
msgid "Videos are also available in:"
msgstr ""

#: templates/panel/help-tab.php:137
msgctxt "Help tab Watch Videotutorials link"
msgid "Watch our videotutorials"
msgstr ""

#: templates/panel/help-tab.php:140
msgctxt "Help tab Watch Videotutorials link"
msgid "We show you some use cases"
msgstr ""

#: templates/panel/help-tab.php:124
msgctxt "Help tab Read Documentation link"
msgid "Read the documentation"
msgstr ""

#: templates/panel/help-tab.php:127
msgctxt "Help tab Read Documentation link"
msgid "to learn from basics how it works"
msgstr ""

#: templates/panel/help-tab.php:150
msgctxt "Help tab view FAQs link"
msgid "Check the FAQs"
msgstr ""

#: templates/panel/help-tab.php:153
msgctxt "Help tab view FAQs link"
msgid "to find answers to your doubts"
msgstr ""

#: templates/panel/help-tab.php:169
msgctxt "Help tab FAQ title"
msgid "Last FAQs in our Help Center"
msgstr ""

#: templates/panel/help-tab.php:183
msgctxt "Help tab FAQ link"
msgid "View all FAQs >"
msgstr ""

#: templates/panel/help-tab.php:192
msgctxt "Help tab submit ticket title"
msgid "Need help?"
msgstr ""

#: templates/panel/help-tab.php:195
msgctxt "Help tab submit ticket description"
msgid ""
"If you are experiencing some technical issue ask help to our developers. "
"Submit a ticket in our support desk and we will help you as soon as possible."
msgstr ""

#: templates/panel/help-tab.php:203
msgctxt "Help tab submit ticket button"
msgid "Submit a ticket"
msgstr ""

#: yit-functions.php:1925
msgctxt "Post action"
msgid "Preview"
msgstr ""

#: yit-functions.php:1934
msgctxt "Post action"
msgid "View"
msgstr ""

#: yit-functions.php:1945
msgctxt "Post action"
msgid "Edit"
msgstr ""

#: yit-functions.php:1953
msgctxt "Post action"
msgid "Duplicate"
msgstr ""

#: yit-functions.php:1965
msgctxt "Post action"
msgid "Restore"
msgstr ""

#: yit-functions.php:1973
msgctxt "Post action"
msgid "Trash"
msgstr ""

#: yit-functions.php:1990
msgctxt "Post action"
msgid "Delete Permanently"
msgstr ""

#: yit-functions.php:2087
msgctxt "Term action"
msgid "View"
msgstr ""

#: yit-functions.php:2097
msgctxt "Term action"
msgid "Edit"
msgstr ""

#: yit-functions.php:2105
msgctxt "Term action"
msgid "Duplicate"
msgstr ""

#: yit-functions.php:2118
msgctxt "Term action"
msgid "Delete"
msgstr ""

#: yit-plugin.php:84
msgctxt "Plugin Row Meta"
msgid "Live Demo"
msgstr "Live Demo"

#: yit-plugin.php:88
msgctxt "Plugin Row Meta"
msgid "Documentation"
msgstr "Εγχειρίδιο χρήσης"

#: yit-plugin.php:92
msgctxt "Plugin Row Meta"
msgid "Support"
msgstr "Υποστήριξη"

#: yit-plugin.php:96
msgctxt "Plugin Row Meta"
msgid "Premium version"
msgstr "Premium έκδοση"

#: yit-plugin.php:201
msgctxt "Action links"
msgid "Settings"
msgstr "Ρυθμίσεις"
PK`x1\��4�@r@r+plugin-fw/languages/yith-plugin-fw-nl_NL.ponu�[���# Translation of YITH Framework in Dutch
# This file is distributed under the same license as the YITH Framework package.
msgid ""
msgstr ""
"Project-Id-Version: YITH Framework\n"
"Report-Msgid-Bugs-To: YITH <plugins@yithemes.com>\n"
"POT-Creation-Date: 2021-11-09 12:50:28+00:00\n"
"PO-Revision-Date: 2021-09-29 11:02:22+0000\n"
"Language: nl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: GlotPress/3.0.0-alpha.2\n"

#: includes/class-yit-assets.php:146 yit-functions.php:1979
msgid "Confirm trash"
msgstr "Verplaatsen naar prullenbak bevestigen"

#: includes/class-yit-assets.php:147
msgid "Are you sure you want to trash the selected items?"
msgstr ""
"Weet je zeker dat je het geselecteerde item naar de prullenbak wilt "
"verplaatsen?"

#: includes/class-yit-assets.php:149 includes/class-yit-assets.php:153
#: templates/sysinfo/tabs/main.php:42 templates/sysinfo/tabs/main.php:50
#: yit-functions.php:1981 yit-functions.php:1999
msgid "No"
msgstr "Nee"

#: includes/class-yit-assets.php:150 yit-functions.php:1997
#: yit-functions.php:2125
msgid "Confirm delete"
msgstr "Verwijderen bevestigen"

#: includes/class-yit-assets.php:151
msgid "Are you sure you want to delete the selected items?"
msgstr "Weet je zeker dat je de geselecteerde items wilt verwijderen?"

#: includes/class-yit-assets.php:151 yit-functions.php:1913
#: yit-functions.php:2073
msgid ""
"This action cannot be undone and you will not be able to recover this data."
msgstr ""
"Deze actie kan niet ongedaan gemaakt worden en je zult deze gegevens niet "
"kunnen herstellen."

#: includes/class-yit-assets.php:164
msgid "Clear"
msgstr "Wissen"

#: includes/class-yit-assets.php:165
msgid "Clear color"
msgstr "Kleur wissen"

#: includes/class-yit-assets.php:166
msgid "Default"
msgstr "Standaard"

#: includes/class-yit-assets.php:167
msgid "Select default color"
msgstr "Standaardkleur selecteren"

#: includes/class-yit-assets.php:168
msgid "Select Color"
msgstr "Kleur selecteren"

#: includes/class-yit-assets.php:169
msgid "Color value"
msgstr "Kleurwaarde"

#: includes/class-yit-help-desk.php:152
msgid "There was an error with your request; please try again later."
msgstr ""
"Er is een fout opgetreden met je verzoek, probeer het later opnieuw a.u.b."

#: includes/class-yit-plugin-panel-woocommerce.php:423
msgid "The changes you have made will be lost if you leave this page."
msgstr "Als je deze pagina verlaat zullen alle wijzigingen verloren gaan."

#: includes/class-yit-plugin-panel.php:83
msgid "Plugin Settings"
msgstr "Plugin instellingen"

#: includes/class-yit-plugin-panel.php:84
msgid "Settings"
msgstr "Instellingen"

#: includes/class-yit-plugin-panel.php:451
#: includes/class-yit-plugin-panel.php:454
msgid "How to install premium version"
msgstr "Hoe installeer ik de premium versie"

#: includes/class-yit-plugin-panel.php:652
#: includes/class-yit-plugin-subpanel.php:132
msgid "Save Changes"
msgstr "Wijzigingen opslaan"

#: includes/class-yit-plugin-panel.php:657
#: includes/class-yit-plugin-subpanel.php:136
#: templates/panel/woocommerce/woocommerce-form.php:14
msgid ""
"If you continue with this action, you will reset all options in this page."
msgstr ""
"Als je doorgaat met deze actie, zal je alle opties op deze pagina resetten."

#: includes/class-yit-plugin-panel.php:657
#: includes/class-yit-plugin-subpanel.php:136
#: templates/panel/woocommerce/woocommerce-form.php:14
msgid "Are you sure?"
msgstr "Weet je het zeker?"

#: includes/class-yit-plugin-panel.php:661
#: includes/class-yit-plugin-subpanel.php:139
msgid "Reset to default"
msgstr "Resetten naar standaard"

#: includes/class-yit-plugin-panel.php:979
msgid ""
"The element you have entered already exists. Please, enter another name."
msgstr "Het element dat je hebt ingevoerd bestaat al. Voer een andere naam in."

#: includes/class-yit-plugin-panel.php:980
msgid "Settings saved"
msgstr "Instellingen opgeslagen"

#: includes/class-yit-plugin-panel.php:981
msgid "Settings reset"
msgstr "Instellingen resetten"

#: includes/class-yit-plugin-panel.php:982
msgid "Element deleted correctly."
msgstr "Element juist verwijderd."

#: includes/class-yit-plugin-panel.php:983
#: includes/class-yit-plugin-panel.php:984
msgid "Element updated correctly."
msgstr "Element juist geüpdatet."

#: includes/class-yit-plugin-panel.php:985
msgid "Database imported correctly."
msgstr "Database juist geïmporteerd."

#: includes/class-yit-plugin-panel.php:986
msgid "An error has occurred during import. Please try again."
msgstr "Er is een fout opgetreden tijdens importeren. Probeer opnieuw."

#: includes/class-yit-plugin-panel.php:987
msgid "The added file is not valid."
msgstr "Het toegevoegde bestand is niet geldig."

#: includes/class-yit-plugin-panel.php:988
msgid "Sorry, import is disabled."
msgstr "Sorry, importeren is uitgeschakeld."

#: includes/class-yit-plugin-panel.php:989
msgid "Sorting successful."
msgstr "Succesvol gesorteerd."

#: includes/class-yit-plugin-panel.php:1457
msgid "We need your support"
msgstr "We hebben je hulp nodig"

#: includes/class-yit-plugin-panel.php:1458
msgid "to keep updating and improving the plugin. Please,"
msgstr "om de plugin te blijven bijwerken en verbeteren. A.u.b.,"

#: includes/class-yit-plugin-panel.php:1460
msgid "help us by leaving a good review"
msgstr "help ons door een goede beoordeling achter te laten"

#: includes/class-yit-plugin-panel.php:1461
msgid ":) Thanks!"
msgstr ":) Bedankt!"

#: includes/class-yit-pointers.php:80
msgid "Plugins Activated"
msgstr "Plugins geactiveerd"

#: includes/class-yit-pointers.php:81
msgid ""
"From now on, you can find all plugin options in YITH menu. Plugin "
"customization settings will be available as a new entry in YITH menu."
msgstr ""
"Vanaf nu kun je alle plugin opties vinden in het YITH Plugins menu. Plugin "
"aanpassingen instellingen zullen beschikbaar zijn als nieuwe toegang in het "
"YITH menu."

#. translators: 1. YITH site link; 2. WordPress site link.
#: includes/class-yit-pointers.php:84 includes/class-yit-pointers.php:100
msgid "Discover all our plugins available on: %1$s and %2$s"
msgstr "Ontdek al onze beschikbare plugins op: %1$s and %2$s"

#: includes/class-yit-pointers.php:96
msgid "Plugins Upgraded"
msgstr "Plugins Upgraded"

#: includes/class-yit-pointers.php:97
msgid ""
"From now on, you can find the option panel of YITH plugins in YITH menu. "
"Every time one of our plugins is added, a new entry will be added to this "
"menu. For example, after the update, plugin options (such as for YITH "
"WooCommerce Wishlist, YITH WooCommerce Ajax Search, etc.) will be moved from "
"previous location to YITH menu."
msgstr ""
"Vanaf nu kun je het optiepaneel van YITH plugins vinden in het YITH menu. "
"Elke keer dat een van onze plugins wordt toegevoegd, wordt er een nieuw item "
"aan dit menu toegevoegd. Bijvoorbeeld na de update worden plugin opties "
"(zoals voor YITH WooCommerce Wishlist, YITH WooCommerce Ajax Search, enz.) "
"verplaatst van de vorige locatie naar het YITH menu."

#: includes/class-yith-dashboard.php:35
msgid "YITH Latest Updates"
msgstr "YITH laatste updates"

#: includes/class-yith-dashboard.php:36
msgid "Latest news from YITH Blog"
msgstr "Laatste nieuws van YITH Blog"

#: includes/class-yith-dashboard.php:56
msgid "RSS Error:"
msgstr "RSS-fout:"

#: includes/class-yith-dashboard.php:63
msgid ""
"An error has occurred, which probably means the feed is down. Try again "
"later."
msgstr ""
"Er is een fout opgetreden, wat waarschijnlijk betekent dat de feed niet "
"werkt. Probeer het later opnieuw."

#. translators: %s is the name of the post type (example Back to "Membership
#. Plans").
#: includes/class-yith-post-type-admin.php:286
msgid "Back to \"%s\""
msgstr "Terug naar \"%s\""

#: includes/class-yith-post-type-admin.php:286
msgid "Back to the list"
msgstr "Terug naar de lijst"

#: includes/class-yith-system-status.php:110
msgid "WordPress Version"
msgstr "WordPress Versie"

#: includes/class-yith-system-status.php:111
msgid "WooCommerce Version"
msgstr "WooCommerce Versie"

#: includes/class-yith-system-status.php:112
msgid "Available Memory"
msgstr "Beschikbaar geheugen"

#: includes/class-yith-system-status.php:113
msgid "PHP Version"
msgstr "PHP Versie"

#: includes/class-yith-system-status.php:114
msgid "TLS Version"
msgstr "TLS Versie"

#: includes/class-yith-system-status.php:115
msgid "WordPress Cron"
msgstr "WordPress Cron"

#: includes/class-yith-system-status.php:116
msgid "SimpleXML"
msgstr "SimpleXML"

#: includes/class-yith-system-status.php:117
msgid "MultiByte String"
msgstr "MultiByte String"

#: includes/class-yith-system-status.php:118
msgid "ImageMagick Version"
msgstr "ImageMagick Versie"

#: includes/class-yith-system-status.php:119
msgid "GD Library"
msgstr "GD Library"

#: includes/class-yith-system-status.php:120
msgid "Iconv Module"
msgstr "Verzendmodule inschakelen"

#: includes/class-yith-system-status.php:121
msgid "OPCache Save Comments"
msgstr "OPCache Opmerkingen opslaan"

#: includes/class-yith-system-status.php:122
msgid "URL FOpen"
msgstr "URL FOpen"

#: includes/class-yith-system-status.php:140
#: includes/class-yith-system-status.php:141
#: templates/sysinfo/system-information-panel.php:11
msgid "System Status"
msgstr "Systeem Status"

#: includes/class-yith-system-status.php:183
msgid "YITH Plugins"
msgstr "YITH Plugins"

#: includes/class-yith-system-status.php:191
msgid "WooCommerce"
msgstr "WooCommerce"

#: includes/class-yith-system-status.php:342
msgid "Warning!"
msgstr "Waarschuwing!"

#. translators: %1$s open link tag, %2$s open link tag
#: includes/class-yith-system-status.php:346
msgid ""
"The system check has detected some compatibility issues on your installation."
"%1$sClick here%2$s to know more"
msgstr ""
"Het systeem heeft enkele compatibiliteitsproblemen gevonden op uw "
"installatie.%1$sklik hier%2$s om meer te weten te komen"

#: includes/class-yith-system-status.php:488
msgid "Enabled"
msgstr "Ingeschakeld"

#: includes/class-yith-system-status.php:488
msgid "Disabled"
msgstr "Uitgeschakeld"

#: includes/class-yith-system-status.php:493
msgid "N/A"
msgstr "N.v.t"

#. translators: %1$s plugin name, %2$s requirement name
#: includes/class-yith-system-status.php:520
msgid "%1$s needs %2$s enabled"
msgstr "%1$s heeft nodig %2$s ingeschakeld"

#. translators: %1$s plugin name, %2$s required memory amount
#: includes/class-yith-system-status.php:523
msgid "%1$s needs at least %2$s of available memory"
msgstr "%1$ss heeft ten minste %2$s beschikbaar geheugen nodig"

#. translators: %1$s plugin name, %2$s version number
#: includes/class-yith-system-status.php:526
msgid "%1$s needs at least %2$s version"
msgstr "%1$s heeft minstens %2$s versie nodig"

#: includes/class-yith-system-status.php:550
msgid ""
"Update it to the latest version in order to benefit of all new features and "
"security updates."
msgstr ""
"Bijwerken naar de laatste versie, om te profiteren van alle nieuwe opties en "
"veiligheidsupdates."

#: includes/class-yith-system-status.php:554
#: includes/class-yith-system-status.php:560
msgid "Contact your hosting company in order to update it."
msgstr "Neem contact op met uw hosting provider om het bij te werken."

#: includes/class-yith-system-status.php:558
msgid "Contact your hosting company in order to install it."
msgstr "Neem contact op met je hostingbedrijf om het te installeren."

#. translators: %1$s code, %2$s file name
#: includes/class-yith-system-status.php:565
msgid "Remove %1$s from %2$s file"
msgstr "Verwijder %1$s uit %2$s bestand"

#: includes/class-yith-system-status.php:573
msgid "Contact your hosting company in order to enable it."
msgstr "Neem contact op met uw hosting provider om het in te schakelen."

#. translators: %1$s opening link tag, %2$s closing link tag
#: includes/class-yith-system-status.php:577
#: includes/class-yith-system-status.php:600
msgid ""
"Read more %1$shere%2$s or contact your hosting company in order to increase "
"it."
msgstr ""
"Lees %1$s hier%2$s meer, of neem contact op met uw hostingmaatschappij om "
"het te verhogen."

#. translators: %s recommended memory amount
#: includes/class-yith-system-status.php:597
msgid ""
"For optimal functioning of our plugins, we suggest setting at least %s of "
"available memory"
msgstr ""
"Om de plugins optimaal te laten functioneren, adviseren wij minstens %s "
"beschikbaar geheugen"

#. translators: %1$s TLS label, %2$s cURL label
#: includes/class-yith-system-status.php:605
msgid ""
"The system check cannot determine which %1$s version is installed because "
"%2$s module is disabled. Ask your hosting company to enable it."
msgstr ""
"We kunnen niet bepalen welke %1$s versie is geïnstalleerd omdat %2$s de "
"module is uitgeschakeld. Vraag je hostingmaatschappij om het in te schakelen."

#. translators: %1$s TLS label
#: includes/class-yith-system-status.php:608
msgid ""
"The system check cannot determine which %1$s version is installed due to a "
"connection issue between your site and our server."
msgstr ""
"De systeemcontrole kan niet bepalen welke versie van %1$s is geïnstalleerd "
"vanwege een verbindingsprobleem tussen je site en onze server."

#: templates/fields/ajax-customers.php:41
msgid "Search Customers"
msgstr "Klanten zoeken"

#. translators: 1. user display name; 2. user ID; 3. user email.
#: templates/fields/ajax-customers.php:68
#: templates/fields/ajax-customers.php:79
msgid "%1$s (#%2$s &ndash; %3$s)"
msgstr "%1$s (#%2$s &ndash; %3$s)"

#: templates/fields/ajax-posts.php:41
msgid "Search Posts"
msgstr "Posts zoeken"

#: templates/fields/ajax-products.php:14
msgid "Search Product"
msgstr "Zoek Product"

#: templates/fields/ajax-terms.php:41
msgid "Search Categories"
msgstr "Zoek categorieën"

#: templates/fields/customtabs.php:17
msgid "Close all"
msgstr "Sluit allen"

#: templates/fields/customtabs.php:17
msgid "Expand all"
msgstr "Open allen"

#: templates/fields/customtabs.php:25 templates/fields/customtabs.php:68
msgid "Remove"
msgstr "Verwijderen"

#: templates/fields/customtabs.php:34 templates/fields/customtabs.php:76
msgid "Name"
msgstr "Name"

#: templates/fields/customtabs.php:40 templates/fields/customtabs.php:81
msgid "Value"
msgstr "Waarde"

#: templates/fields/customtabs.php:41 templates/fields/customtabs.php:82
msgid "Content of the tab. (HTML is supported)"
msgstr "Inhoud van het tabblad. (HTML wordt ondersteund)"

#: templates/fields/customtabs.php:52
msgid "Add custom product tab"
msgstr "Aangepaste product tabblad toevoegen"

#: templates/fields/customtabs.php:93
msgid "Do you want to remove the custom tab?"
msgstr "Wil je dit aangepaste tabblad verwijderen?"

#: templates/fields/date-format.php:65
msgid "Custom:"
msgstr "Aangepast:"

#: templates/fields/date-format.php:70
msgid "Preview:"
msgstr "Voorbeeld:"

#: templates/fields/icons.php:78
msgid "Set Default"
msgstr "Op standaard instellen"

#: templates/fields/image-gallery.php:29 templates/fields/image-gallery.php:40
msgid "Delete image"
msgstr "Afbeelding verwijderen"

#: templates/fields/image-gallery.php:37
msgid "Add Images to Gallery"
msgstr "Afbeeldingen toevoegen aan galerij"

#: templates/fields/image-gallery.php:38
msgid "Add to gallery"
msgstr "Aan galerij toevoegen"

#: templates/fields/image-gallery.php:39
msgid "Add images"
msgstr "Voeg images toe"

#: templates/fields/image-gallery.php:41
msgid "Delete"
msgstr "Verwijderen"

#: templates/fields/select-buttons.php:19
msgid "Add All"
msgstr "Allen toevoegen"

#: templates/fields/select-buttons.php:20
msgid "Remove All"
msgstr "Allen verwijderen"

#: templates/fields/sidebars.php:20
msgid "Left sidebar"
msgstr "Linker sidebar"

#: templates/fields/sidebars.php:23
msgid "Right sidebar"
msgstr "Rechter sidebar"

#: templates/fields/sidebars.php:26 templates/fields/sidebars.php:29
msgid "No sidebar"
msgstr "Geen sidebar"

#: templates/fields/sidebars.php:39
msgid "Left Sidebar"
msgstr "Linker sidebar"

#: templates/fields/sidebars.php:41 templates/fields/sidebars.php:56
msgid "Choose a sidebar"
msgstr "Kies een sidebar"

#: templates/fields/sidebars.php:54
msgid "Right Sidebar"
msgstr "Rechter sidebar"

#: templates/fields/upload.php:34
#: templates/panel/woocommerce/woocommerce-upload.php:37
msgid "Upload"
msgstr "Upload"

#: templates/fields/upload.php:39
msgid "Reset"
msgstr "Resetten"

#: templates/panel/woocommerce/woocommerce-form.php:28
#: templates/panel/woocommerce/woocommerce-form.php:32
msgid "Save Options"
msgstr "Opties opslaan"

#: templates/panel/woocommerce/woocommerce-form.php:32
msgid "Options Saved"
msgstr "Opties opgeslagen"

#: templates/panel/woocommerce/woocommerce-form.php:38
msgid "Reset Defaults"
msgstr "Reset Standaard instellingen"

#: templates/sysinfo/system-information-panel.php:12
msgid "PHPInfo"
msgstr "PHPInfo"

#: templates/sysinfo/system-information-panel.php:13
#: templates/sysinfo/tabs/error-log.php:25
msgid "Log Files"
msgstr "Log bestanden"

#: templates/sysinfo/system-information-panel.php:22
msgid "YITH System Information"
msgstr "YITH Systeem Informatie"

#: templates/sysinfo/tabs/error-log.php:13
msgid "WP debug.log file"
msgstr "WP debug.log bestand"

#: templates/sysinfo/tabs/error-log.php:18
msgid "PHP error_log file"
msgstr "PHP error_log bestand"

#: templates/sysinfo/tabs/error-log.php:60
msgid "Download"
msgstr "Download"

#: templates/sysinfo/tabs/error-log.php:72
msgid "The file size exceeds 8 megabytes so it must be downloaded"
msgstr ""
"De bestandsgrootte overschrijd 8 megabytes, dus het moet worden gedownload "

#. translators: %s file name.
#: templates/sysinfo/tabs/error-log.php:96
msgid ""
"No Log file available. Enable the WordPress debug by adding this in the %s "
"file of your installation"
msgstr ""
"Geen log bestand beschikbaar. WordPress debug inschakelen door dit bestand "
"toe te voegen aan het %s bestand van je installatie "

#: templates/sysinfo/tabs/error-log.php:105
msgid "Copied!"
msgstr "Gekopieerd!"

#: templates/sysinfo/tabs/error-log.php:105
msgid "Copy Code"
msgstr "Code kopiëren"

#: templates/sysinfo/tabs/main.php:17
msgid "Site Info"
msgstr "Site informatie"

#: templates/sysinfo/tabs/main.php:22
msgid "Site URL"
msgstr "Site URL"

#: templates/sysinfo/tabs/main.php:31
msgid "Output IP Address"
msgstr "Output IP Adres"

#: templates/sysinfo/tabs/main.php:39
msgid "Defined WP_CACHE"
msgstr "Gedefinieerde WP_CACHE"

#: templates/sysinfo/tabs/main.php:42 templates/sysinfo/tabs/main.php:50
msgid "Yes"
msgstr "Ja"

#: templates/sysinfo/tabs/main.php:47
msgid "External object cache"
msgstr "Externe object cache"

#: templates/sysinfo/tabs/main.php:55
msgid "YITH Plugin Framework Version"
msgstr "YITH Plugin Framework Versie"

#. translators: %s is the name of the plugin that is loading the framework.
#: templates/sysinfo/tabs/main.php:64
msgid "loaded by %s"
msgstr "geladen door %s"

#: templates/sysinfo/tabs/main.php:73
msgid "Plugins Requirements"
msgstr "Plugin benodigdheden"

#: templates/sysinfo/tabs/main.php:108
msgid "Database Info"
msgstr "Database Info"

#: templates/sysinfo/tabs/main.php:113
msgid "MySQL version"
msgstr "MySQL versie"

#. Translators: %s: Codex link.
#: templates/sysinfo/tabs/main.php:123
msgid "WordPress recommends a minimum MySQL version of 5.6. See: %s"
msgstr "WordPress raadt een minimale MySQL versie aan van 5.6. Bekijk: %s"

#: templates/sysinfo/tabs/main.php:123
msgid "WordPress requirements"
msgstr "WordPress vereisten"

#: templates/sysinfo/tabs/main.php:130
msgid "Total Database Size"
msgstr "Totale Database grootte"

#: templates/sysinfo/tabs/main.php:138
msgid "Database Data Size"
msgstr "Database Data grootte"

#: templates/sysinfo/tabs/main.php:146
msgid "Database Index Size"
msgstr "Database Index grootte"

#: templates/sysinfo/tabs/main.php:154
msgid "Database Free Size"
msgstr "Database gratis grootte"

#. Translators: %1$f: Table size, %2$f: Index size, %3$f: Free size, %4$s
#. Engine.
#: templates/sysinfo/tabs/main.php:168
msgid "Data: %1$.2fMB | Index: %2$.2fMB | Free: %3$.2fMB | Engine: %4$s"
msgstr "Data: %1$.2fMB | Index: %2$.2fMB | Free: %3$.2fMB | Engine: %4$s"

#. translators: %s is the title of the post object.
#: yit-functions.php:1911
msgid "Are you sure you want to move \"%s\" to trash?"
msgstr "Weet je zeker dat je \"%s\" naar de prullenbak wilt verplaatsen?"

#. translators: %s is the title of the post object.
#: yit-functions.php:1913 yit-functions.php:2073
msgid "Are you sure you want to delete \"%s\"?"
msgstr "Weet je zeker dat je \"%s\" wilt verwijderen?"

#: yit-functions.php:2011 yit-functions.php:2019 yit-functions.php:2136
msgid "Further actions"
msgstr "Verdere acties"

#: yit-plugin.php:205
msgid "License"
msgstr "Licentie"

#. Author of the plugin/theme
msgid "YITH"
msgstr "YITH"

#. translators: %s it the Elementor Widget title.
#: includes/builders/elementor/class-yith-elementor-widget.php:252
msgctxt "Elementor Widget - section title"
msgid "%s - Options"
msgstr "%s - Opties"

#: includes/builders/gutenberg/class-yith-gutenberg.php:149
msgctxt "[gutenberg]: Category Name"
msgid "YITH"
msgstr "YITH"

#: includes/class-yit-assets.php:134
msgctxt "Button text"
msgid "Confirm"
msgstr "Bevestigen"

#: includes/class-yit-assets.php:135
msgctxt "Button text"
msgid "Cancel"
msgstr "Annuleren"

#: includes/class-yit-assets.php:148 yit-functions.php:1982
msgctxt "Trash confirmation action"
msgid "Yes, move to trash"
msgstr "Ja, verplaatsen naar prullenbak"

#: includes/class-yit-assets.php:152 yit-functions.php:2000
#: yit-functions.php:2127
msgctxt "Delete confirmation action"
msgid "Yes, delete"
msgstr "Ja, verwijderen"

#: includes/class-yit-plugin-panel.php:488
msgctxt "Help tab name"
msgid "Help"
msgstr "Help"

#. translators: 1. Plugin name.
#: includes/class-yit-plugin-panel.php:798
msgctxt "Help tab default title"
msgid "Thank you for purchasing %s!"
msgstr "Bedankt voor het kopen van %s!"

#: includes/class-yit-plugin-panel.php:799
msgctxt "Help tab default description"
msgid ""
"We want to help you to enjoy a wonderful experience with all our products."
msgstr ""
"We willen je helpen om te genieten van de geweldige ervaringen met al onze "
"producten."

#: includes/class-yith-dashboard.php:96
msgctxt "Plugin FW"
msgid "View Changelog"
msgstr "Bekijk wijzigingenlogboek"

#: includes/class-yith-dashboard.php:97
msgctxt "Plugin FW"
msgid "Latest update released on"
msgstr "Laatste update uitgebracht op"

#: includes/class-yith-dashboard.php:137
msgctxt "Button label"
msgid "Close"
msgstr "Sluiten"

#: includes/privacy/class-yith-privacy.php:61
msgctxt "Privacy Policy Guide Title"
msgid "YITH Plugins"
msgstr "YITH Plugins"

#: includes/privacy/class-yith-privacy.php:93
msgctxt "Privacy Policy Content"
msgid ""
"This sample language includes the basics around what personal data your "
"store may be collecting, storing and sharing, as well as who may have access "
"to that data. Depending on what settings are enabled and which additional "
"plugins are used, the specific information shared by your store will vary. "
"We recommend consulting with a lawyer when deciding what information to "
"disclose on your privacy policy."
msgstr ""
"Dit geschreven voorbeeld bevat de basis rondom welke persoonlijke gegevens "
"je winkel mag verzamelen, bewaren en delen, en wie toegang heeft tot deze "
"gegevens. Afhankelijk van welke instellingen zijn ingeschakeld en welke "
"aanvullende plugins worden gebruikt, zal de informatie die wordt gedeeld "
"door je winkel variëren. We raden aan om een advocaat te raadplegen wanneer "
"je besluit je privacy beleid op te stellen."

#: includes/privacy/class-yith-privacy.php:97
msgctxt "Privacy Policy Content"
msgid "What we collect and store"
msgstr "Wat we verzamelen en bewaren"

#: includes/privacy/class-yith-privacy.php:100
msgctxt "Privacy Policy Content"
msgid "Who on our team has access"
msgstr "Wie van ons team heeft toegang"

#: includes/privacy/class-yith-privacy.php:103
msgctxt "Privacy Policy Content"
msgid "What we share with others"
msgstr "Wat wij delen met anderen"

#: includes/privacy/class-yith-privacy.php:106
msgctxt "Privacy Policy Content"
msgid "Payments"
msgstr "Betalingen"

#: templates/fields/copy-to-clipboard.php:41
msgctxt "Copy-to-clipboard message"
msgid "Copied!"
msgstr "Gekopieerd!"

#: templates/fields/copy-to-clipboard.php:45
msgctxt "Copy-to-clipboard button text"
msgid "Copy"
msgstr "Kopieer"

#: templates/fields/dimensions.php:13
msgctxt "Position in the \"Dimensions\" field"
msgid "Top"
msgstr "Boven"

#: templates/fields/dimensions.php:14
msgctxt "Position in the \"Dimensions\" field"
msgid "Right"
msgstr "Rechts"

#: templates/fields/dimensions.php:15
msgctxt "Position in the \"Dimensions\" field"
msgid "Bottom"
msgstr "Onder"

#: templates/fields/dimensions.php:16
msgctxt "Position in the \"Dimensions\" field"
msgid "Left"
msgstr "Links"

#: templates/fields/dimensions.php:94
msgctxt "Tooltip in the \"Dimensions\" field"
msgid "Link values together"
msgstr "Waarden aan elkaar koppelen"

#: templates/fields/image-dimensions.php:18
msgctxt "Image width field label"
msgid "Width"
msgstr "Breedte"

#: templates/fields/image-dimensions.php:23
msgctxt "Image height field label"
msgid "Height"
msgstr "Hoogte"

#: templates/fields/onoff.php:28
msgctxt "YES/NO button: use MAX 4 characters!"
msgid "YES"
msgstr "JA"

#: templates/fields/onoff.php:29
msgctxt "YES/NO button: use MAX 4 characters!"
msgid "NO"
msgstr "NEE"

#. translators: 1. Url to EN playlist.
#: templates/panel/help-tab.php:87
msgctxt "Help tab view all video link"
msgid ""
"Check the full <a href=\"%s\" target=\"_blank\">Playlist on Youtube</a> to "
"learn more >"
msgstr ""
"Bekijk de volledige <a href=\"%s\" target=\"_blank\">Playlist op Youtube</a> "
"om meer te weten te komen >"

#: templates/panel/help-tab.php:94
msgctxt "Help tab Watch Videotutorials link"
msgid "Videos are also available in:"
msgstr "Videos zijn ook beschikbaar in:"

#: templates/panel/help-tab.php:137
msgctxt "Help tab Watch Videotutorials link"
msgid "Watch our videotutorials"
msgstr "Bekijk onze video uitleg"

#: templates/panel/help-tab.php:140
msgctxt "Help tab Watch Videotutorials link"
msgid "We show you some use cases"
msgstr "We tonen je enkele gebruikscasussen"

#: templates/panel/help-tab.php:124
msgctxt "Help tab Read Documentation link"
msgid "Read the documentation"
msgstr "Lees de documentatie"

#: templates/panel/help-tab.php:127
msgctxt "Help tab Read Documentation link"
msgid "to learn from basics how it works"
msgstr "om vanaf de basis te leren hoe het werkt"

#: templates/panel/help-tab.php:150
msgctxt "Help tab view FAQs link"
msgid "Check the FAQs"
msgstr "Check de FAQs"

#: templates/panel/help-tab.php:153
msgctxt "Help tab view FAQs link"
msgid "to find answers to your doubts"
msgstr "om je twijfels te beantwoorden"

#: templates/panel/help-tab.php:169
msgctxt "Help tab FAQ title"
msgid "Last FAQs in our Help Center"
msgstr "Laatste FAQs in ons Help Center"

#: templates/panel/help-tab.php:183
msgctxt "Help tab FAQ link"
msgid "View all FAQs >"
msgstr "Bekijk alle FAQs >"

#: templates/panel/help-tab.php:192
msgctxt "Help tab submit ticket title"
msgid "Need help?"
msgstr "Hulp nodig?"

#: templates/panel/help-tab.php:195
msgctxt "Help tab submit ticket description"
msgid ""
"If you are experiencing some technical issue ask help to our developers. "
"Submit a ticket in our support desk and we will help you as soon as possible."
msgstr ""
"Als je een technisch probleem ondervindt, vraag dan hulp aan onze "
"developers. Je kunt een ticket indienen bij onze supportdesk en we helpen je "
"zo snel mogelijk verder."

#: templates/panel/help-tab.php:203
msgctxt "Help tab submit ticket button"
msgid "Submit a ticket"
msgstr "Verstuur een ticket"

#: yit-functions.php:1925
msgctxt "Post action"
msgid "Preview"
msgstr "Voorbeeld"

#: yit-functions.php:1934
msgctxt "Post action"
msgid "View"
msgstr "Bekijken"

#: yit-functions.php:1945
msgctxt "Post action"
msgid "Edit"
msgstr "Bewerken"

#: yit-functions.php:1953
msgctxt "Post action"
msgid "Duplicate"
msgstr "Dupliceren"

#: yit-functions.php:1965
msgctxt "Post action"
msgid "Restore"
msgstr "Herstellen"

#: yit-functions.php:1973
msgctxt "Post action"
msgid "Trash"
msgstr "Prullenbak"

#: yit-functions.php:1990
msgctxt "Post action"
msgid "Delete Permanently"
msgstr "Permanent verijwderen"

#: yit-functions.php:2087
msgctxt "Term action"
msgid "View"
msgstr "Bekijken"

#: yit-functions.php:2097
msgctxt "Term action"
msgid "Edit"
msgstr "Bewerken"

#: yit-functions.php:2105
msgctxt "Term action"
msgid "Duplicate"
msgstr "Dupliceren"

#: yit-functions.php:2118
msgctxt "Term action"
msgid "Delete"
msgstr "Verwijderen"

#: yit-plugin.php:84
msgctxt "Plugin Row Meta"
msgid "Live Demo"
msgstr "Live Demo"

#: yit-plugin.php:88
msgctxt "Plugin Row Meta"
msgid "Documentation"
msgstr "Documentatie"

#: yit-plugin.php:92
msgctxt "Plugin Row Meta"
msgid "Support"
msgstr "Ondersteuning"

#: yit-plugin.php:96
msgctxt "Plugin Row Meta"
msgid "Premium version"
msgstr "Premium versie"

#: yit-plugin.php:201
msgctxt "Action links"
msgid "Settings"
msgstr "Instellingen"
PK`x1\$��b�r�r+plugin-fw/languages/yith-plugin-fw-it_IT.ponu�[���# Translation of YITH Framework in Italian
# This file is distributed under the same license as the YITH Framework package.
msgid ""
msgstr ""
"Project-Id-Version: YITH Framework\n"
"Report-Msgid-Bugs-To: YITH <plugins@yithemes.com>\n"
"POT-Creation-Date: 2021-11-09 12:50:28+00:00\n"
"PO-Revision-Date: 2021-10-27 15:32:46+0000\n"
"Language: it\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: GlotPress/3.0.0-alpha.2\n"

#: includes/class-yit-assets.php:146 yit-functions.php:1979
msgid "Confirm trash"
msgstr "Conferma eliminazione"

#: includes/class-yit-assets.php:147
msgid "Are you sure you want to trash the selected items?"
msgstr "Se sicuro di voler spostare nel cestino gli elementi selezionati?"

#: includes/class-yit-assets.php:149 includes/class-yit-assets.php:153
#: templates/sysinfo/tabs/main.php:42 templates/sysinfo/tabs/main.php:50
#: yit-functions.php:1981 yit-functions.php:1999
msgid "No"
msgstr "No"

#: includes/class-yit-assets.php:150 yit-functions.php:1997
#: yit-functions.php:2125
msgid "Confirm delete"
msgstr "Conferma eliminazione"

#: includes/class-yit-assets.php:151
msgid "Are you sure you want to delete the selected items?"
msgstr "Se sicuro di voler eliminare gli elementi selezionati?"

#: includes/class-yit-assets.php:151 yit-functions.php:1913
#: yit-functions.php:2073
msgid ""
"This action cannot be undone and you will not be able to recover this data."
msgstr ""
"Quest'azione non può essere annullata e non sarà possibile recuperare questi "
"dati."

#: includes/class-yit-assets.php:164
msgid "Clear"
msgstr "Rimuovi"

#: includes/class-yit-assets.php:165
msgid "Clear color"
msgstr "Rimuovi colore"

#: includes/class-yit-assets.php:166
msgid "Default"
msgstr "Predefinito"

#: includes/class-yit-assets.php:167
msgid "Select default color"
msgstr "Seleziona il colore predefinito"

#: includes/class-yit-assets.php:168
msgid "Select Color"
msgstr "Seleziona il colore"

#: includes/class-yit-assets.php:169
msgid "Color value"
msgstr "Valore del colore"

#: includes/class-yit-help-desk.php:152
msgid "There was an error with your request; please try again later."
msgstr "Si è verificato un errore con la tua richiesta. Riprova più tardi."

#: includes/class-yit-plugin-panel-woocommerce.php:423
msgid "The changes you have made will be lost if you leave this page."
msgstr "Perderai tutti i cambiamenti effettuati se lasci questa pagina."

#: includes/class-yit-plugin-panel.php:83
msgid "Plugin Settings"
msgstr "Impostazioni plugin"

#: includes/class-yit-plugin-panel.php:84
msgid "Settings"
msgstr "Impostazioni"

#: includes/class-yit-plugin-panel.php:451
#: includes/class-yit-plugin-panel.php:454
msgid "How to install premium version"
msgstr "Come installare la versione premium"

#: includes/class-yit-plugin-panel.php:652
#: includes/class-yit-plugin-subpanel.php:132
msgid "Save Changes"
msgstr "Salva modifiche"

#: includes/class-yit-plugin-panel.php:657
#: includes/class-yit-plugin-subpanel.php:136
#: templates/panel/woocommerce/woocommerce-form.php:14
msgid ""
"If you continue with this action, you will reset all options in this page."
msgstr ""
"Se prosegui con questa azione, tutte le opzioni di questa pagina saranno "
"reimpostate."

#: includes/class-yit-plugin-panel.php:657
#: includes/class-yit-plugin-subpanel.php:136
#: templates/panel/woocommerce/woocommerce-form.php:14
msgid "Are you sure?"
msgstr "Sei sicuro?"

#: includes/class-yit-plugin-panel.php:661
#: includes/class-yit-plugin-subpanel.php:139
msgid "Reset to default"
msgstr "Ripristina configurazione predefinita"

#: includes/class-yit-plugin-panel.php:979
msgid ""
"The element you have entered already exists. Please, enter another name."
msgstr "L'elemento inserito esiste già. Per favore, inserisci un altro nome."

#: includes/class-yit-plugin-panel.php:980
msgid "Settings saved"
msgstr "Impostazioni salvate"

#: includes/class-yit-plugin-panel.php:981
msgid "Settings reset"
msgstr "Impostazioni azzerate"

#: includes/class-yit-plugin-panel.php:982
msgid "Element deleted correctly."
msgstr "Elemento rimosso correttamente."

#: includes/class-yit-plugin-panel.php:983
#: includes/class-yit-plugin-panel.php:984
msgid "Element updated correctly."
msgstr "Elemento aggiornato correttamente."

#: includes/class-yit-plugin-panel.php:985
msgid "Database imported correctly."
msgstr "Database importato correttamente."

#: includes/class-yit-plugin-panel.php:986
msgid "An error has occurred during import. Please try again."
msgstr "Si è verificato un errore durante l'importazione. Prova di nuovo."

#: includes/class-yit-plugin-panel.php:987
msgid "The added file is not valid."
msgstr "Il file aggiunto non è valido."

#: includes/class-yit-plugin-panel.php:988
msgid "Sorry, import is disabled."
msgstr "Ci dispiace, l'importazione è disabilitata."

#: includes/class-yit-plugin-panel.php:989
msgid "Sorting successful."
msgstr "Ordinamento effettuato con successo."

#: includes/class-yit-plugin-panel.php:1457
msgid "We need your support"
msgstr "Abbiamo bisogno del tuo sostegno"

#: includes/class-yit-plugin-panel.php:1458
msgid "to keep updating and improving the plugin. Please,"
msgstr "per poter continuare ad aggiornare e migliorare il plugin."

#: includes/class-yit-plugin-panel.php:1460
msgid "help us by leaving a good review"
msgstr "Puoi darci una mano lasciando una recensione positiva"

#: includes/class-yit-plugin-panel.php:1461
msgid ":) Thanks!"
msgstr ":) Grazie!"

#: includes/class-yit-pointers.php:80
msgid "Plugins Activated"
msgstr "Plugin attivati"

#: includes/class-yit-pointers.php:81
msgid ""
"From now on, you can find all plugin options in YITH menu. Plugin "
"customization settings will be available as a new entry in YITH menu."
msgstr ""
"D'ora in poi puoi trovare tutte le opzioni dei plugin nel menù YITH. Le "
"impostazioni di personalizzazione saranno disponibili come una nuova voce in "
"YITH."

#. translators: 1. YITH site link; 2. WordPress site link.
#: includes/class-yit-pointers.php:84 includes/class-yit-pointers.php:100
msgid "Discover all our plugins available on: %1$s and %2$s"
msgstr "Scopri tutti i nostri plugin disponibili su: %1$s and %2$s"

#: includes/class-yit-pointers.php:96
msgid "Plugins Upgraded"
msgstr "Plugin aggiornati"

#: includes/class-yit-pointers.php:97
msgid ""
"From now on, you can find the option panel of YITH plugins in YITH menu. "
"Every time one of our plugins is added, a new entry will be added to this "
"menu. For example, after the update, plugin options (such as for YITH "
"WooCommerce Wishlist, YITH WooCommerce Ajax Search, etc.) will be moved from "
"previous location to YITH menu."
msgstr ""
"D'ora in poi puoi trovare il pannello opzioni dei plugin YITH nel menù YITH. "
"Ogni volta che viene aggiunto uno dei nostri plugin comparirà una nuova voce "
"in questo menù. Ad esempio, dopo l'aggiornamento, le opzioni del plugin "
"(come per YITH WooCommerce Wishlist, YITH WooCommerce Ajax Search, etc.) "
"saranno spostate dalla posizione precedente al menù YITH."

#: includes/class-yith-dashboard.php:35
msgid "YITH Latest Updates"
msgstr "Ultimi aggiornamenti da YITH"

#: includes/class-yith-dashboard.php:36
msgid "Latest news from YITH Blog"
msgstr "Ultime novità dal blog YITH"

#: includes/class-yith-dashboard.php:56
msgid "RSS Error:"
msgstr "Errore RSS:"

#: includes/class-yith-dashboard.php:63
msgid ""
"An error has occurred, which probably means the feed is down. Try again "
"later."
msgstr ""
"Si è verificato un errore probabilmente causato dal feed non disponibile. "
"Riprova più tardi."

#. translators: %s is the name of the post type (example Back to "Membership
#. Plans").
#: includes/class-yith-post-type-admin.php:286
msgid "Back to \"%s\""
msgstr "Torna a \"%s\""

#: includes/class-yith-post-type-admin.php:286
msgid "Back to the list"
msgstr "Torna all'elenco"

#: includes/class-yith-system-status.php:110
msgid "WordPress Version"
msgstr "Versione di WordPress"

#: includes/class-yith-system-status.php:111
msgid "WooCommerce Version"
msgstr "Versione di WooCommerce"

#: includes/class-yith-system-status.php:112
msgid "Available Memory"
msgstr "Memoria disponibile"

#: includes/class-yith-system-status.php:113
msgid "PHP Version"
msgstr "Versione PHP"

#: includes/class-yith-system-status.php:114
msgid "TLS Version"
msgstr "Versione TLS"

#: includes/class-yith-system-status.php:115
msgid "WordPress Cron"
msgstr "Cron WordPress"

#: includes/class-yith-system-status.php:116
msgid "SimpleXML"
msgstr "SimpleXML"

#: includes/class-yith-system-status.php:117
msgid "MultiByte String"
msgstr "MultiByte String"

#: includes/class-yith-system-status.php:118
msgid "ImageMagick Version"
msgstr "Versione di ImageMagick"

#: includes/class-yith-system-status.php:119
msgid "GD Library"
msgstr "GD Library"

#: includes/class-yith-system-status.php:120
msgid "Iconv Module"
msgstr "Iconv Module"

#: includes/class-yith-system-status.php:121
msgid "OPCache Save Comments"
msgstr "OPCache Save Comments"

#: includes/class-yith-system-status.php:122
msgid "URL FOpen"
msgstr "URL FOpen"

#: includes/class-yith-system-status.php:140
#: includes/class-yith-system-status.php:141
#: templates/sysinfo/system-information-panel.php:11
msgid "System Status"
msgstr "Stato del sistema"

#: includes/class-yith-system-status.php:183
msgid "YITH Plugins"
msgstr "Plugin YITH"

#: includes/class-yith-system-status.php:191
msgid "WooCommerce"
msgstr "WooCommerce"

#: includes/class-yith-system-status.php:342
msgid "Warning!"
msgstr "Attenzione!"

#. translators: %1$s open link tag, %2$s open link tag
#: includes/class-yith-system-status.php:346
msgid ""
"The system check has detected some compatibility issues on your installation."
"%1$sClick here%2$s to know more"
msgstr ""
"Il controllo di sistema ha individuato delle incompatibilità con la tua "
"installazione. %1$sVedi qui%2$s per maggiori dettagli"

#: includes/class-yith-system-status.php:488
msgid "Enabled"
msgstr "Abilitato"

#: includes/class-yith-system-status.php:488
msgid "Disabled"
msgstr "Disabilitato"

#: includes/class-yith-system-status.php:493
msgid "N/A"
msgstr "N.D."

#. translators: %1$s plugin name, %2$s requirement name
#: includes/class-yith-system-status.php:520
msgid "%1$s needs %2$s enabled"
msgstr "%1$s necessita dell'attivazione di %2$s"

#. translators: %1$s plugin name, %2$s required memory amount
#: includes/class-yith-system-status.php:523
msgid "%1$s needs at least %2$s of available memory"
msgstr "%1$s necessita di almeno %2$s di memoria disponibile"

#. translators: %1$s plugin name, %2$s version number
#: includes/class-yith-system-status.php:526
msgid "%1$s needs at least %2$s version"
msgstr "%1$s necessita almeno della versione %2$s"

#: includes/class-yith-system-status.php:550
msgid ""
"Update it to the latest version in order to benefit of all new features and "
"security updates."
msgstr ""
"Aggiorna all'ultima versione per beneficiare di tutte le nuove funzionalità "
"e degli aggiornamenti di sicurezza."

#: includes/class-yith-system-status.php:554
#: includes/class-yith-system-status.php:560
msgid "Contact your hosting company in order to update it."
msgstr "Contatta il tuo servizio hosting per aggiornarlo."

#: includes/class-yith-system-status.php:558
msgid "Contact your hosting company in order to install it."
msgstr "Per installarlo contatta il tuo servizio di hosting."

#. translators: %1$s code, %2$s file name
#: includes/class-yith-system-status.php:565
msgid "Remove %1$s from %2$s file"
msgstr "Rimuovi %1$s dal file %2$s"

#: includes/class-yith-system-status.php:573
msgid "Contact your hosting company in order to enable it."
msgstr "Per attivarlo contatta il tuo servizio di hosting."

#. translators: %1$s opening link tag, %2$s closing link tag
#: includes/class-yith-system-status.php:577
#: includes/class-yith-system-status.php:600
msgid ""
"Read more %1$shere%2$s or contact your hosting company in order to increase "
"it."
msgstr ""
"Per maggiori informazioni %1$sleggi questo%2$s oppure contatta il tuo host "
"per un upgrade."

#. translators: %s recommended memory amount
#: includes/class-yith-system-status.php:597
msgid ""
"For optimal functioning of our plugins, we suggest setting at least %s of "
"available memory"
msgstr ""
"Per il funzionamento ottimale dei nostri plugin consigliamo di impostare "
"almeno %s della memoria disponibile"

#. translators: %1$s TLS label, %2$s cURL label
#: includes/class-yith-system-status.php:605
msgid ""
"The system check cannot determine which %1$s version is installed because "
"%2$s module is disabled. Ask your hosting company to enable it."
msgstr ""
"Non ci è stato possibile determinare quale versione di %1$s è installata in "
"quanto il modulo %2$s è disattivato. Chiedi al tuo servizio hosting di "
"attivarlo."

#. translators: %1$s TLS label
#: includes/class-yith-system-status.php:608
msgid ""
"The system check cannot determine which %1$s version is installed due to a "
"connection issue between your site and our server."
msgstr ""
"Non ci è stato possibile determinare quale versione di %1$s è installata a "
"causa di un problema di connessione fra il tuo sito e il nostro server."

#: templates/fields/ajax-customers.php:41
msgid "Search Customers"
msgstr "Cerca fra i clienti"

#. translators: 1. user display name; 2. user ID; 3. user email.
#: templates/fields/ajax-customers.php:68
#: templates/fields/ajax-customers.php:79
msgid "%1$s (#%2$s &ndash; %3$s)"
msgstr "%1$s (#%2$s &ndash; %3$s)"

#: templates/fields/ajax-posts.php:41
msgid "Search Posts"
msgstr "Cerca articoli"

#: templates/fields/ajax-products.php:14
msgid "Search Product"
msgstr "Cerca un prodotto"

#: templates/fields/ajax-terms.php:41
msgid "Search Categories"
msgstr "Cerca categorie"

#: templates/fields/customtabs.php:17
msgid "Close all"
msgstr "Chiudi tutti"

#: templates/fields/customtabs.php:17
msgid "Expand all"
msgstr "Espandi tutti"

#: templates/fields/customtabs.php:25 templates/fields/customtabs.php:68
msgid "Remove"
msgstr "Rimuovi"

#: templates/fields/customtabs.php:34 templates/fields/customtabs.php:76
msgid "Name"
msgstr "Nome"

#: templates/fields/customtabs.php:40 templates/fields/customtabs.php:81
msgid "Value"
msgstr "Valore"

#: templates/fields/customtabs.php:41 templates/fields/customtabs.php:82
msgid "Content of the tab. (HTML is supported)"
msgstr "Contenuto della scheda (codice HTML supportato)."

#: templates/fields/customtabs.php:52
msgid "Add custom product tab"
msgstr "Aggiungi scheda prodotto personalizzata"

#: templates/fields/customtabs.php:93
msgid "Do you want to remove the custom tab?"
msgstr "Vuoi rimuovere la scheda personalizzata?"

#: templates/fields/date-format.php:65
msgid "Custom:"
msgstr "Personalizzato:"

#: templates/fields/date-format.php:70
msgid "Preview:"
msgstr "Anteprima:"

#: templates/fields/icons.php:78
msgid "Set Default"
msgstr "Ripristina impostazioni iniziali"

#: templates/fields/image-gallery.php:29 templates/fields/image-gallery.php:40
msgid "Delete image"
msgstr "Rimuovi immagine"

#: templates/fields/image-gallery.php:37
msgid "Add Images to Gallery"
msgstr "Aggiungi immagini alla galleria"

#: templates/fields/image-gallery.php:38
msgid "Add to gallery"
msgstr "Aggiungi alla galleria"

#: templates/fields/image-gallery.php:39
msgid "Add images"
msgstr "Aggiungi immagini"

#: templates/fields/image-gallery.php:41
msgid "Delete"
msgstr "Rimuovi"

#: templates/fields/select-buttons.php:19
msgid "Add All"
msgstr "Aggiungi tutti"

#: templates/fields/select-buttons.php:20
msgid "Remove All"
msgstr "Rimuovi tutti"

#: templates/fields/sidebars.php:20
msgid "Left sidebar"
msgstr "Barra laterale sinistra"

#: templates/fields/sidebars.php:23
msgid "Right sidebar"
msgstr "Barra laterale destra"

#: templates/fields/sidebars.php:26 templates/fields/sidebars.php:29
msgid "No sidebar"
msgstr "Nessuna barra laterale"

#: templates/fields/sidebars.php:39
msgid "Left Sidebar"
msgstr "Barra laterale sinistra"

#: templates/fields/sidebars.php:41 templates/fields/sidebars.php:56
msgid "Choose a sidebar"
msgstr "Scegli una barra laterale"

#: templates/fields/sidebars.php:54
msgid "Right Sidebar"
msgstr "Barra laterale destra"

#: templates/fields/upload.php:34
#: templates/panel/woocommerce/woocommerce-upload.php:37
msgid "Upload"
msgstr "Carica"

#: templates/fields/upload.php:39
msgid "Reset"
msgstr "Ripristina"

#: templates/panel/woocommerce/woocommerce-form.php:28
#: templates/panel/woocommerce/woocommerce-form.php:32
msgid "Save Options"
msgstr "Salva le opzioni"

#: templates/panel/woocommerce/woocommerce-form.php:32
msgid "Options Saved"
msgstr "Opzioni salvate"

#: templates/panel/woocommerce/woocommerce-form.php:38
msgid "Reset Defaults"
msgstr "Ripristina impostazioni iniziali"

#: templates/sysinfo/system-information-panel.php:12
msgid "PHPInfo"
msgstr "PHPInfo"

#: templates/sysinfo/system-information-panel.php:13
#: templates/sysinfo/tabs/error-log.php:25
msgid "Log Files"
msgstr "File log"

#: templates/sysinfo/system-information-panel.php:22
msgid "YITH System Information"
msgstr "YITH System Information"

#: templates/sysinfo/tabs/error-log.php:13
msgid "WP debug.log file"
msgstr "WP debug.log file"

#: templates/sysinfo/tabs/error-log.php:18
msgid "PHP error_log file"
msgstr "PHP error_log file"

#: templates/sysinfo/tabs/error-log.php:60
msgid "Download"
msgstr "Scarica"

#: templates/sysinfo/tabs/error-log.php:72
msgid "The file size exceeds 8 megabytes so it must be downloaded"
msgstr ""
"La dimensione del file supera gli 8 megabyte ed è quindi necessario "
"scaricarlo"

#. translators: %s file name.
#: templates/sysinfo/tabs/error-log.php:96
msgid ""
"No Log file available. Enable the WordPress debug by adding this in the %s "
"file of your installation"
msgstr ""
"Nessun file log disponibile. Abilita il debug WordPress aggiungendo questo "
"nel file %s della tua installazione"

#: templates/sysinfo/tabs/error-log.php:105
msgid "Copied!"
msgstr "Copiato!"

#: templates/sysinfo/tabs/error-log.php:105
msgid "Copy Code"
msgstr "Copia codice"

#: templates/sysinfo/tabs/main.php:17
msgid "Site Info"
msgstr "Info sito"

#: templates/sysinfo/tabs/main.php:22
msgid "Site URL"
msgstr "URL del sito"

#: templates/sysinfo/tabs/main.php:31
msgid "Output IP Address"
msgstr "Indirizzo IP di output"

#: templates/sysinfo/tabs/main.php:39
msgid "Defined WP_CACHE"
msgstr "Defined WP_CACHE"

#: templates/sysinfo/tabs/main.php:42 templates/sysinfo/tabs/main.php:50
msgid "Yes"
msgstr "Sì"

#: templates/sysinfo/tabs/main.php:47
msgid "External object cache"
msgstr "External object cache"

#: templates/sysinfo/tabs/main.php:55
msgid "YITH Plugin Framework Version"
msgstr "YITH Plugin Framework Version"

#. translators: %s is the name of the plugin that is loading the framework.
#: templates/sysinfo/tabs/main.php:64
msgid "loaded by %s"
msgstr "caricato da %s"

#: templates/sysinfo/tabs/main.php:73
msgid "Plugins Requirements"
msgstr "Requisiti plugin"

#: templates/sysinfo/tabs/main.php:108
msgid "Database Info"
msgstr "Info database"

#: templates/sysinfo/tabs/main.php:113
msgid "MySQL version"
msgstr "Versione MySQL"

#. Translators: %s: Codex link.
#: templates/sysinfo/tabs/main.php:123
msgid "WordPress recommends a minimum MySQL version of 5.6. See: %s"
msgstr "WordPress consiglia una versione minima 5.6 di MySQL. Vedi: %s"

#: templates/sysinfo/tabs/main.php:123
msgid "WordPress requirements"
msgstr "Requisiti WordPress"

#: templates/sysinfo/tabs/main.php:130
msgid "Total Database Size"
msgstr "Dimensione totale database"

#: templates/sysinfo/tabs/main.php:138
msgid "Database Data Size"
msgstr "Dimensione dati database"

#: templates/sysinfo/tabs/main.php:146
msgid "Database Index Size"
msgstr "Dimensione indice database"

#: templates/sysinfo/tabs/main.php:154
msgid "Database Free Size"
msgstr "Dimensione spazio libero database"

#. Translators: %1$f: Table size, %2$f: Index size, %3$f: Free size, %4$s
#. Engine.
#: templates/sysinfo/tabs/main.php:168
msgid "Data: %1$.2fMB | Index: %2$.2fMB | Free: %3$.2fMB | Engine: %4$s"
msgstr "Dati: %1$.2fMB | Indice: %2$.2fMB | Libero: %3$.2fMB | Engine: %4$s"

#. translators: %s is the title of the post object.
#: yit-functions.php:1911
msgid "Are you sure you want to move \"%s\" to trash?"
msgstr "Sei sicuro di voler spostare \"%s\" nel cestino?"

#. translators: %s is the title of the post object.
#: yit-functions.php:1913 yit-functions.php:2073
msgid "Are you sure you want to delete \"%s\"?"
msgstr "Sei sicuro di voler eliminare \"%s\"?"

#: yit-functions.php:2011 yit-functions.php:2019 yit-functions.php:2136
msgid "Further actions"
msgstr "Altre azioni"

#: yit-plugin.php:205
msgid "License"
msgstr "Chiave di licenza"

#. Author of the plugin/theme
msgid "YITH"
msgstr "YITH"

#. translators: %s it the Elementor Widget title.
#: includes/builders/elementor/class-yith-elementor-widget.php:252
msgctxt "Elementor Widget - section title"
msgid "%s - Options"
msgstr "%s - Opzioni"

#: includes/builders/gutenberg/class-yith-gutenberg.php:149
msgctxt "[gutenberg]: Category Name"
msgid "YITH"
msgstr "YITH"

#: includes/class-yit-assets.php:134
msgctxt "Button text"
msgid "Confirm"
msgstr "Conferma"

#: includes/class-yit-assets.php:135
msgctxt "Button text"
msgid "Cancel"
msgstr "Annulla"

#: includes/class-yit-assets.php:148 yit-functions.php:1982
msgctxt "Trash confirmation action"
msgid "Yes, move to trash"
msgstr "Sì, sposta nel cestino"

#: includes/class-yit-assets.php:152 yit-functions.php:2000
#: yit-functions.php:2127
msgctxt "Delete confirmation action"
msgid "Yes, delete"
msgstr "Sì, elimina"

#: includes/class-yit-plugin-panel.php:488
msgctxt "Help tab name"
msgid "Help"
msgstr "Help"

#. translators: 1. Plugin name.
#: includes/class-yit-plugin-panel.php:798
msgctxt "Help tab default title"
msgid "Thank you for purchasing %s!"
msgstr "Grazie per aver acquistato %s!"

#: includes/class-yit-plugin-panel.php:799
msgctxt "Help tab default description"
msgid ""
"We want to help you to enjoy a wonderful experience with all our products."
msgstr ""
"Vogliamo aiutarti ad avere un'esperienza fantastica con tutti i nostri "
"prodotti."

#: includes/class-yith-dashboard.php:96
msgctxt "Plugin FW"
msgid "View Changelog"
msgstr "Visualizza il changelog"

#: includes/class-yith-dashboard.php:97
msgctxt "Plugin FW"
msgid "Latest update released on"
msgstr "Ultimo aggiornamento rilasciato il"

#: includes/class-yith-dashboard.php:137
msgctxt "Button label"
msgid "Close"
msgstr "Chiudi"

#: includes/privacy/class-yith-privacy.php:61
msgctxt "Privacy Policy Guide Title"
msgid "YITH Plugins"
msgstr "YITH Plugins"

#: includes/privacy/class-yith-privacy.php:93
msgctxt "Privacy Policy Content"
msgid ""
"This sample language includes the basics around what personal data your "
"store may be collecting, storing and sharing, as well as who may have access "
"to that data. Depending on what settings are enabled and which additional "
"plugins are used, the specific information shared by your store will vary. "
"We recommend consulting with a lawyer when deciding what information to "
"disclose on your privacy policy."
msgstr ""
"Questo esempio include gli elementi di base sulla raccolta dei dati "
"personali, la memorizzazione e la condivisione, nonché su chi è autorizzato "
"ad accedere a tali dati. In base alle impostazioni abilitate e ai moduli di "
"estensione aggiuntivi utilizzati, le informazioni specifiche condivise dal "
"nostro negozio possono variare. Ti consigliamo di consultare un legale al "
"momento di decidere quali informazioni divulgare nell'informativa sulla "
"privacy."

#: includes/privacy/class-yith-privacy.php:97
msgctxt "Privacy Policy Content"
msgid "What we collect and store"
msgstr "Cosa raccogliamo e salviamo"

#: includes/privacy/class-yith-privacy.php:100
msgctxt "Privacy Policy Content"
msgid "Who on our team has access"
msgstr "Persone del nostro gruppo di lavoro che hanno accesso"

#: includes/privacy/class-yith-privacy.php:103
msgctxt "Privacy Policy Content"
msgid "What we share with others"
msgstr "Cosa condividiamo con gli altri"

#: includes/privacy/class-yith-privacy.php:106
msgctxt "Privacy Policy Content"
msgid "Payments"
msgstr "Pagamenti"

#: templates/fields/copy-to-clipboard.php:41
msgctxt "Copy-to-clipboard message"
msgid "Copied!"
msgstr "Copiato!"

#: templates/fields/copy-to-clipboard.php:45
msgctxt "Copy-to-clipboard button text"
msgid "Copy"
msgstr "Copia"

#: templates/fields/dimensions.php:13
msgctxt "Position in the \"Dimensions\" field"
msgid "Top"
msgstr "In alto"

#: templates/fields/dimensions.php:14
msgctxt "Position in the \"Dimensions\" field"
msgid "Right"
msgstr "A destra"

#: templates/fields/dimensions.php:15
msgctxt "Position in the \"Dimensions\" field"
msgid "Bottom"
msgstr "In basso"

#: templates/fields/dimensions.php:16
msgctxt "Position in the \"Dimensions\" field"
msgid "Left"
msgstr "A sinistra"

#: templates/fields/dimensions.php:94
msgctxt "Tooltip in the \"Dimensions\" field"
msgid "Link values together"
msgstr "Collega i valori"

#: templates/fields/image-dimensions.php:18
msgctxt "Image width field label"
msgid "Width"
msgstr "Larghezza"

#: templates/fields/image-dimensions.php:23
msgctxt "Image height field label"
msgid "Height"
msgstr "Altezza"

#: templates/fields/onoff.php:28
msgctxt "YES/NO button: use MAX 4 characters!"
msgid "YES"
msgstr "SÌ"

#: templates/fields/onoff.php:29
msgctxt "YES/NO button: use MAX 4 characters!"
msgid "NO"
msgstr "NO"

#. translators: 1. Url to EN playlist.
#: templates/panel/help-tab.php:87
msgctxt "Help tab view all video link"
msgid ""
"Check the full <a href=\"%s\" target=\"_blank\">Playlist on Youtube</a> to "
"learn more >"
msgstr ""
"Per saperne di più, vedi la <a href=\"%s\" target=\"_blank\">Playlist "
"completa su Youtube</a>>"

#: templates/panel/help-tab.php:94
msgctxt "Help tab Watch Videotutorials link"
msgid "Videos are also available in:"
msgstr "I video sono disponibili anche in:"

#: templates/panel/help-tab.php:137
msgctxt "Help tab Watch Videotutorials link"
msgid "Watch our videotutorials"
msgstr "Guarda i nostri video tutorial"

#: templates/panel/help-tab.php:140
msgctxt "Help tab Watch Videotutorials link"
msgid "We show you some use cases"
msgstr "Ti mostriamo alcuni casi d'uso"

#: templates/panel/help-tab.php:124
msgctxt "Help tab Read Documentation link"
msgid "Read the documentation"
msgstr "Consulta la documentazione"

#: templates/panel/help-tab.php:127
msgctxt "Help tab Read Documentation link"
msgid "to learn from basics how it works"
msgstr "per imparare dalle basi come funziona"

#: templates/panel/help-tab.php:150
msgctxt "Help tab view FAQs link"
msgid "Check the FAQs"
msgstr "Controlla le FAQ"

#: templates/panel/help-tab.php:153
msgctxt "Help tab view FAQs link"
msgid "to find answers to your doubts"
msgstr "per trovare le risposte ai tuoi dubbi"

#: templates/panel/help-tab.php:169
msgctxt "Help tab FAQ title"
msgid "Last FAQs in our Help Center"
msgstr "Ultime FAQ nel nostro Centro Assistenza"

#: templates/panel/help-tab.php:183
msgctxt "Help tab FAQ link"
msgid "View all FAQs >"
msgstr "Vedi tutte le FAQ"

#: templates/panel/help-tab.php:192
msgctxt "Help tab submit ticket title"
msgid "Need help?"
msgstr "Ti serve aiuto?"

#: templates/panel/help-tab.php:195
msgctxt "Help tab submit ticket description"
msgid ""
"If you are experiencing some technical issue ask help to our developers. "
"Submit a ticket in our support desk and we will help you as soon as possible."
msgstr ""
"Se stai riscontrando problemi tecnici chiedi aiuto ai nostri sviluppatori. "
"Invia un ticket dalla nostra piattaforma di supporto e ti daremo assistenza "
"il più presto possibile."

#: templates/panel/help-tab.php:203
msgctxt "Help tab submit ticket button"
msgid "Submit a ticket"
msgstr "Invia un ticket"

#: yit-functions.php:1925
msgctxt "Post action"
msgid "Preview"
msgstr "Anteprima"

#: yit-functions.php:1934
msgctxt "Post action"
msgid "View"
msgstr "Visualizza"

#: yit-functions.php:1945
msgctxt "Post action"
msgid "Edit"
msgstr "Modifica"

#: yit-functions.php:1953
msgctxt "Post action"
msgid "Duplicate"
msgstr "Duplica"

#: yit-functions.php:1965
msgctxt "Post action"
msgid "Restore"
msgstr "Ripristina"

#: yit-functions.php:1973
msgctxt "Post action"
msgid "Trash"
msgstr "Cestina"

#: yit-functions.php:1990
msgctxt "Post action"
msgid "Delete Permanently"
msgstr "Cancella definitivamente"

#: yit-functions.php:2087
msgctxt "Term action"
msgid "View"
msgstr "Visualizza"

#: yit-functions.php:2097
msgctxt "Term action"
msgid "Edit"
msgstr "Modifica"

#: yit-functions.php:2105
msgctxt "Term action"
msgid "Duplicate"
msgstr "Duplica"

#: yit-functions.php:2118
msgctxt "Term action"
msgid "Delete"
msgstr "Elimina"

#: yit-plugin.php:84
msgctxt "Plugin Row Meta"
msgid "Live Demo"
msgstr "Live Demo"

#: yit-plugin.php:88
msgctxt "Plugin Row Meta"
msgid "Documentation"
msgstr "Documentazione"

#: yit-plugin.php:92
msgctxt "Plugin Row Meta"
msgid "Support"
msgstr "Assistenza"

#: yit-plugin.php:96
msgctxt "Plugin Row Meta"
msgid "Premium version"
msgstr "Versione premium"

#: yit-plugin.php:201
msgctxt "Action links"
msgid "Settings"
msgstr "Impostazioni"
PK`x1\;�@II+plugin-fw/languages/yith-plugin-fw-es_ES.monu�[��������@A[,s �
����
"61Nh%�3�,2>
q��������	!
03>4r3�'�	"!8Z@b���
��!&(O\4e%����-�-
5@ZV��E9
�!�/�7�B$@g;�=�g"3��-���'�&�6p?��J�'Gey���	��
����d�
P[
q���#��� - M e u � � )� '� (� &(!O!n!�!�!�!�!�!�!�!�	"0�#0�#1$'G$
o$Oz$�$�$
�$�$�$%
%
+%9%F%S%e%v%�%�%�%�%�%�%�%	�%	�%�%&&
3&A&M&`&v&�&�&>�&H�&:='�x'}(l�(=�(K+)6w)�),�)	�)]�)W*^*d*v**�*�*�*�*<�*+')+(Q+z++�+�+�+�+�+ �+,2(,5[,�-�-1�-'�-
!./.7.D.*d.�.�.M�.h/+n/B�/8�/O0f0w0
�0�0�0�0	�0�0�0�0�0�01#!12E1<x1>�1/�1
$2/2>2
E2P2C_2)�2"�2(�2 3&:3a3p3�3
�3�3�3;�3-�3	4!&4#H4
l4z4
�4�4_�4�5��5h7
w7�7(�7�72�7+888$U8Zz8�8�8
�8�9�9�9%�9`�9"I:
l:Rz:�:�:�:#�:;-;E;N;c;t;�;�;�;��;<,<H<[<s<�<�<#�<�<�<�<==!=4=F=d=v=	�=�=�=�=�=�=
�=	�=
�=�=
�=>�>�?�?%
@0@
@@MK@�@$�@
�@�@#�@#A)A?AUAeAvA�A�A�A�A �A�ABB"B	4B>B
UB-cB#�B�B�B�B�B�B�B"�BACLUC@�C��C��D�*EI�ED�E@F"WFzF	�Fr�FGGG1G>GSG_GwG�GE�G�GHHH 
H#.HRH_HH�H'�H�HF�Hq�gWa5�6R X=7{�Y��x
��4��&
��%I~���?'H�Q�V�S,��}U��E3l.p>��KeD�	����MP[]t�*��"��b���B�����w��#!|-mN�+�����$�1�u�/�k<s�d9Z�OrF@;�A)o��y:\�n�z0f���^�`�ThG��J��(i�cj_��v2�CL�8����%1$s (#%2$s &ndash; %3$s)%1$s needs %2$s enabled%1$s needs at least %2$s of available memory%1$s needs at least %2$s version:) Thanks!Action linksSettingsAdd AllAdd Images to GalleryAdd custom product tabAdd imagesAdd to galleryAn error has occurred during import. Please try again.An error has occurred, which probably means the feed is down. Try again later.Are you sure you want to delete "%s"?Are you sure you want to delete the selected items?Are you sure you want to move "%s" to trash?Are you sure you want to trash the selected items?Are you sure?Available MemoryBack to "%s"Back to the listButton labelCloseButton textCancelButton textConfirmChoose a sidebarClearClear colorClose allColor valueConfirm deleteConfirm trashContact your hosting company in order to enable it.Contact your hosting company in order to install it.Contact your hosting company in order to update it.Content of the tab. (HTML is supported)Copied!Copy CodeCopy-to-clipboard button textCopyCopy-to-clipboard messageCopied!Custom:Data: %1$.2fMB | Index: %2$.2fMB | Free: %3$.2fMB | Engine: %4$sDatabase Data SizeDatabase Free SizeDatabase Index SizeDatabase InfoDatabase imported correctly.DefaultDefined WP_CACHEDeleteDelete confirmation actionYes, deleteDelete imageDisabledDiscover all our plugins available on: %1$s and %2$sDo you want to remove the custom tab?DownloadElement deleted correctly.Element updated correctly.Elementor Widget - section title%s - OptionsEnabledExpand allExternal object cacheFor optimal functioning of our plugins, we suggest setting at least %s of available memoryFrom now on, you can find all plugin options in YITH menu. Plugin customization settings will be available as a new entry in YITH menu.From now on, you can find the option panel of YITH plugins in YITH menu. Every time one of our plugins is added, a new entry will be added to this menu. For example, after the update, plugin options (such as for YITH WooCommerce Wishlist, YITH WooCommerce Ajax Search, etc.) will be moved from previous location to YITH menu.Further actionsGD LibraryHelp tab FAQ linkView all FAQs >Help tab FAQ titleLast FAQs in our Help CenterHelp tab Read Documentation linkRead the documentationHelp tab Read Documentation linkto learn from basics how it worksHelp tab Watch Videotutorials linkVideos are also available in:Help tab Watch Videotutorials linkWatch our videotutorialsHelp tab Watch Videotutorials linkWe show you some use casesHelp tab default descriptionWe want to help you to enjoy a wonderful experience with all our products.Help tab default titleThank you for purchasing %s!Help tab nameHelpHelp tab submit ticket buttonSubmit a ticketHelp tab submit ticket descriptionIf you are experiencing some technical issue ask help to our developers. Submit a ticket in our support desk and we will help you as soon as possible.Help tab submit ticket titleNeed help?Help tab view FAQs linkCheck the FAQsHelp tab view FAQs linkto find answers to your doubtsHelp tab view all video linkCheck the full <a href="%s" target="_blank">Playlist on Youtube</a> to learn more >How to install premium versionIconv ModuleIf you continue with this action, you will reset all options in this page.Image height field labelHeightImage width field labelWidthImageMagick VersionLatest news from YITH BlogLeft SidebarLeft sidebarLicenseLog FilesMultiByte StringMySQL versionN/ANameNoNo Log file available. Enable the WordPress debug by adding this in the %s file of your installationNo sidebarOPCache Save CommentsOptions SavedOutput IP AddressPHP VersionPHP error_log filePHPInfoPlugin FWLatest update released onPlugin FWView ChangelogPlugin Row MetaDocumentationPlugin Row MetaLive DemoPlugin Row MetaPremium versionPlugin Row MetaSupportPlugin SettingsPlugins ActivatedPlugins RequirementsPlugins UpgradedPosition in the "Dimensions" fieldBottomPosition in the "Dimensions" fieldLeftPosition in the "Dimensions" fieldRightPosition in the "Dimensions" fieldTopPost actionDelete PermanentlyPost actionDuplicatePost actionEditPost actionPreviewPost actionRestorePost actionTrashPost actionViewPreview:Privacy Policy ContentPaymentsPrivacy Policy ContentThis sample language includes the basics around what personal data your store may be collecting, storing and sharing, as well as who may have access to that data. Depending on what settings are enabled and which additional plugins are used, the specific information shared by your store will vary. We recommend consulting with a lawyer when deciding what information to disclose on your privacy policy.Privacy Policy ContentWhat we collect and storePrivacy Policy ContentWhat we share with othersPrivacy Policy ContentWho on our team has accessPrivacy Policy Guide TitleYITH PluginsRSS Error:Read more %1$shere%2$s or contact your hosting company in order to increase it.RemoveRemove %1$s from %2$s fileRemove AllResetReset DefaultsReset to defaultRight SidebarRight sidebarSave ChangesSave OptionsSearch CategoriesSearch CustomersSearch PostsSearch ProductSelect ColorSelect default colorSet DefaultSettingsSettings resetSettings savedSimpleXMLSite InfoSite URLSorry, import is disabled.Sorting successful.System StatusTLS VersionTerm actionDeleteTerm actionDuplicateTerm actionEditTerm actionViewThe added file is not valid.The changes you have made will be lost if you leave this page.The element you have entered already exists. Please, enter another name.The file size exceeds 8 megabytes so it must be downloadedThe system check cannot determine which %1$s version is installed because %2$s module is disabled. Ask your hosting company to enable it.The system check cannot determine which %1$s version is installed due to a connection issue between your site and our server.The system check has detected some compatibility issues on your installation.%1$sClick here%2$s to know moreThere was an error with your request; please try again later.This action cannot be undone and you will not be able to recover this data.Tooltip in the "Dimensions" fieldLink values togetherTotal Database SizeTrash confirmation actionYes, move to trashURL FOpenUpdate it to the latest version in order to benefit of all new features and security updates.UploadValueWP debug.log fileWarning!We need your supportWooCommerceWooCommerce VersionWordPress CronWordPress VersionWordPress recommends a minimum MySQL version of 5.6. See: %sWordPress requirementsYES/NO button: use MAX 4 characters!NOYES/NO button: use MAX 4 characters!YESYITHYITH Latest UpdatesYITH Plugin Framework VersionYITH PluginsYITH System InformationYes[gutenberg]: Category NameYITHhelp us by leaving a good reviewloaded by %sto keep updating and improving the plugin. Please,Project-Id-Version: YITH Framework
Report-Msgid-Bugs-To: YITH <plugins@yithemes.com>
PO-Revision-Date: 2021-09-28 13:56:41+0000
Language: es
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Plural-Forms: nplurals=2; plural=n != 1;
X-Generator: GlotPress/3.0.0-alpha.2
%1$s (#%2$s &ndash; %3$s)%1$s necesita %2$s activado%1$s necesita al menos %2$s de memoria disponible%1$s necesita al menos la versión %2$s:) ¡Gracias!AjustesAñadir todoAñadir imágenes a la GaleríaAñadir pestaña de producto personalizadaAñadir imágenesAñadir a la galeríaHa ocurrido un error durante la importación. Por favor, inténtalo de nuevo.Ha ocurrido un error, lo que puede que signifique que el feed ha caído. Inténtalo de nuevo más tarde.¿Estás seguro de que quieres borrar "%s"?¿Estás seguro de que quieres borrar los elementos seleccionados?¿Estás seguro de que quieres mover "%s" a la papelera?¿Estás seguro de que quieres mover a la papelera los elementos seleccionados?¿Estás seguro?Memoria disponibleVolver a "%s"Volver a la listaCerrarCancelarConfirmarElige una barra lateralBorrarBorrar colorCerrar todoValor del colorConfirmar el borradoConfirmar el traslado a la papeleraContacta con tu empresa de hosting para activarlo.Ponte en contacto con tu empresa de hosting para instalarlo.Ponte en contacto con tu empresa de hosting para actualizarlo.Contenido de la pestaña. (Compatible con HTML)¡Copiado!Copiar códigoCopiar¡Copiado!Personalizado:Datos: %1$.2fMB | Índice: %2$.2fMB | Libre: %3$.2fMB | Motor: %4$sTamaño de los datos en la base de datos:Espacio libre en la base de datos:Tamaño del índice en la base de datos:Información de la base de datosBase de datos importada correctamente.PredeterminadoWP_CACHE definidoEliminarSi, borrarEliminar imagenDesactivadoDescubre todos nuestros plugins disponibles en: %1$s y %2$s¿Quieres eliminar la pestaña personalizada?DescargarElemento eliminado correctamente.Elemento actualizado correctamente.%s - OpcionesActivadoExpandir todoCaché objeto externoPara el óptimo funcionamiento de nuestros plugins, sugerimos al menos %s de memoria disponibleDesde ahora, puedes encontrar todas las opciones de los plugins en el menú YITH plugins. La personalización de los ajustes del plugins estará disponible como una nueva entrada en el menú YITH plugins.Desde ahora puedes encontrar la opción en el panel de Plugins de YITH en el menú YITH plugins. Cada vez que uno de nuestros plugins es añadido, una nueva entrada será añadida a este menú. Por ejemplo, tras la actualización, las opciones de los plugins (tales como YITH WooCommerce Wishlist, YITH WooCommerce Ajax Search, etc.) serán movidos de la ubicación previa a la pestaña de YITH plugins.Otras accionesBiblioteca GDVer todos los FAQs >Últimos FAQs en nuestro Centro de AyudaLee la documentaciónpara aprender desde lo más básico cómo funcionaLos vídeos también están disponibles en:Vea nuestros videotutorialesTe mostramos algunos ejemplos de usoQueremos ayudarte a disfrutar de una experiencia maravillosa con todos nuestros productos.¡Gracias por comprar %s!AyudaEnviar ticketSi tienes algún problema técnico, pide ayuda a nuestros desarrolladores. Envía un ticket en nuestro panel de soporte y te ayudaremos lo antes posible.¿Necesitas ayuda?Comprueba los FAQpara encontrar respuestas a tus dudasConsulta la <a href="%s" target="_blank">Lista de reproducción en Youtube</a> para saber más >Cómo instalar la versión premiumMódulo IconvSi continúas con esta acción, restablecerás todas las opciones en esta página.AlturaAnchuraVersión ImageMagickÚltimas novedades del Blog de YITHBarra lateral izquierdaBarra lateral izquierdaLicenciaArchivos de registroCadena MultiByteVersión de MySQLN/DNombreNoNo hay archivo de registro disponible. Activa la depuración de WordPress añadiendo este código en el archivo %s de tu instalaciónSin barra lateralGuardar comentarios OPCacheOpciones guardadasDirección IP de salidaVersión PHPArchivo PHP error_logInformación PHPÚltima actualización publicada elVer Registro de cambiosDocumentaciónDemostración en vivoVersión premiumSoporteAjustes del pluginPlugins activadosRequerimientos de los pluginsPlugins mejoradosParte inferiorIzquierdaDerechaParte superiorBorrar permanentementeDuplicarEditarPrevisualizarRestaurarA la papeleraVerVista previa:PagosEste idioma de prueba incluye la información principal sobre qué tipo de información puede estar recopilando, almacenando y compartiendo tu tienda, así como quién tiene acceso a esa información. Dependiendo de los ajustes configurados y qué plugins adicionales sean usados, la información específica compartida por tu sitio variará. Recomendamos consultar con un abogado cuando decidas qué información mostrar en tu política de privacidad.Qué recopilamos y almacenamosQué compartimos con otrosQuién en nuestro equipo tiene accesoPlugins de YITHError RSS:Lee más %1$saquí%2$s o contacta a tu empresa de hosting para incrementarlo.EliminarEliminar %1$s desde el archivo %2$s Eliminar todoRestablecerRestablecer valores predeterminadosRestablecer valores predeterminadosBarra lateral derechaBarra lateral derechaGuardar cambiosGuardar OpcionesBuscar categoríasBuscar clientesBuscar entradasBuscar productoSeleccionar colorSeleccionar color predeterminadoEstablecer predeterminadoAjustesRestablecer ajustesAjustes guardadosSimpleXMLInformación del sitioURL del sitioLo siento, la importación está desactivada.Clasificación realizada con éxitoEstado del sistemaVersión TLSBorrarDuplicarEditarVerEl archivo añadido no es válido.Los cambios que has hecho se perderán si abandonas esta página.El elemento que has introducido ya existe. Por favor, introduce otro nombre.El archivo excede los 8 megabytes por lo que debe ser descargadoLa comprobación del sistema no ha podido determinar qué versión de %1$s está instalada porque el módulo %2$s está desactivado. Solicita a tu compañia de hosting que lo active.La comprobación del sistema no ha podido determinar qué versión de %1$s está instalada debido a un error entre tu sitio y nuestro servidor.La comprobación del sistema ha detectado algunos problemas de compatibilidad en tu instalación.%1$sHaz clic quí%2$s para saber másSe ha producido un error en tu solicitud; inténtalo de nuevo más tarde.Esta acción no se puede revertir y no podrá recuperar estos datos.Enlazar valores juntosTamaño total de la base de datos:Sí, mover a la papeleraURL FOpenActualízalo a la última versión para beneficiarte de todas las características y actualizaciones de seguridad.SubirValorArchivo WP debug.log¡Atención!Necesitamos tu apoyoWooCommerceVersión de WooCommerceCron de WordPressVersión de WordPressWordPress recomienda como versión mínima para MySQL la 5.6. Ver: %sRequerimientos de WordPressNOSÍYITHÚltimas actualizaciones de YITHVersión del YITH Plugin Framework YITH PluginsInformación de Sistema de YITHSíYITHayúdanos dejando una buena valoracióncargado por %spara que podamos seguir actualizando y mejorando el plugin. Por favor,PK`x1\�ym�t=t=(plugin-fw/languages/yith-plugin-fw-el.monu�[�����������,+ X
y����
��6�N 

o
}
�
�
�
�
	�
�
3�
43C'w�	�������4%Agp��
��Z�
*5TJa�����	�!d$
������#� >Xx����)�'(*&Sz���0M0~1�'�
	Odk
����
�
����,AMVe	t	~���
���>�H6:��}Dl�6/	f]p�����+:'L(t������2�82k;�W�B\s�7�Q�!*(L{u��� � � ,!-!%B!%h!�!p�!u"l�"J�"G#f#�#@�#�#�#$)$ I$dj$X�$(%<;%Bx%�%�%3�%�&&�&M'S'�h'�'*(,>(,k(*�(!�(�(�(
�()�)&�)"*(8*a*r*�*G�*2�*!+	2+<+Q+%f+-�++�++�+,,
,,7,D,`,�q,9>08x0?�0�01�1�1.�1�12/*22Z2&�2&�2#�2'�2!'3I3%i3�3<�3'�34%'4-M4	{4#�4�4P�4 5'65^5Jo5��5|?6��60A7!r8��9�:	�:��:�;�;�;�;;�;<<4<C<Z<a<h<2m<�<*�<�<�<��<U�\�C$P��.A,�o:M~�Q0�tyegDG%f&+#q{-dYSzT='�@V9;`7h��n/>?*1bZ�2�v	F]x 6c3kruJ�RLaN
[p
5s^<}HI4�W8_�B!O"K)X|i(jlwmE%1$s (#%2$s &ndash; %3$s)%1$s needs %2$s enabled%1$s needs at least %2$s of available memory%1$s needs at least %2$s version:) Thanks!Action linksSettingsAdd AllAdd Images to GalleryAdd custom product tabAdd imagesAdd to galleryAn error has occurred during import. Please try again.An error has occurred, which probably means the feed is down. Try again later.Are you sure?Available MemoryButton labelCloseChoose a sidebarClearClear colorClose allColor valueContact your hosting company in order to enable it.Contact your hosting company in order to install it.Contact your hosting company in order to update it.Content of the tab. (HTML is supported)Copied!Copy CodeCustom:Database imported correctly.DefaultDefined WP_CACHEDeleteDelete imageDisabledDiscover all our plugins available on: %1$s and %2$sDo you want to remove the custom tab?DownloadElement deleted correctly.Element updated correctly.EnabledExpand allExternal object cacheFor optimal functioning of our plugins, we suggest setting at least %s of available memoryGD LibraryHow to install premium versionIconv ModuleIf you continue with this action, you will reset all options in this page.ImageMagick VersionLatest news from YITH BlogLeft SidebarLeft sidebarLicenseLog FilesMultiByte StringN/ANameNoNo Log file available. Enable the WordPress debug by adding this in the %s file of your installationNo sidebarOPCache Save CommentsOutput IP AddressPHP VersionPHP error_log filePHPInfoPlugin FWLatest update released onPlugin FWView ChangelogPlugin Row MetaDocumentationPlugin Row MetaLive DemoPlugin Row MetaPremium versionPlugin Row MetaSupportPlugin SettingsPlugins ActivatedPlugins RequirementsPlugins UpgradedPosition in the "Dimensions" fieldBottomPosition in the "Dimensions" fieldLeftPosition in the "Dimensions" fieldRightPosition in the "Dimensions" fieldTopPreview:Privacy Policy ContentPaymentsPrivacy Policy ContentThis sample language includes the basics around what personal data your store may be collecting, storing and sharing, as well as who may have access to that data. Depending on what settings are enabled and which additional plugins are used, the specific information shared by your store will vary. We recommend consulting with a lawyer when deciding what information to disclose on your privacy policy.Privacy Policy ContentWhat we collect and storePrivacy Policy ContentWhat we share with othersPrivacy Policy ContentWho on our team has accessPrivacy Policy Guide TitleYITH PluginsRSS Error:Read more %1$shere%2$s or contact your hosting company in order to increase it.RemoveRemove %1$s from %2$s fileRemove AllResetReset DefaultsReset to defaultRight SidebarRight sidebarSave ChangesSearch CategoriesSearch CustomersSearch PostsSearch ProductSelect ColorSelect default colorSet DefaultSettingsSettings resetSettings savedSimpleXMLSite InfoSite URLSorry, import is disabled.Sorting successful.System StatusTLS VersionThe added file is not valid.The changes you have made will be lost if you leave this page.The element you have entered already exists. Please, enter another name.The file size exceeds 8 megabytes so it must be downloadedThe system check cannot determine which %1$s version is installed because %2$s module is disabled. Ask your hosting company to enable it.The system check cannot determine which %1$s version is installed due to a connection issue between your site and our server.The system check has detected some compatibility issues on your installation.%1$sClick here%2$s to know moreTooltip in the "Dimensions" fieldLink values togetherURL FOpenUpdate it to the latest version in order to benefit of all new features and security updates.UploadValueWP debug.log fileWarning!We need your supportWooCommerceWooCommerce VersionWordPress CronWordPress VersionYES/NO button: use MAX 4 characters!NOYES/NO button: use MAX 4 characters!YESYITHYITH Latest UpdatesYITH PluginsYITH System InformationYes[gutenberg]: Category NameYITHto keep updating and improving the plugin. Please,Project-Id-Version: YITH Framework
Report-Msgid-Bugs-To: YITH <plugins@yithemes.com>
PO-Revision-Date: 2021-02-11 18:07:46+0000
Language: el_GR
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Plural-Forms: nplurals=2; plural=n != 1;
X-Generator: GlotPress/3.0.0-alpha.2
%1$s (#%2$s &ndash; %3$s)%1$s χρειάζεται %2$s ενεργοποιημένο%1$s χρειάζεται τουλάχιστον %2$s διαθέσιμης μνήμης%1$s χρειάζεται τουλάχιστον %2$s έκδοση:) Ευχαριστώ!ΡυθμίσειςΠροσθήκη ΌλωνΠροσθέστε Εικόνες στη ΣυλλογήΠροσθέστε καρτέλα προσαρμοσμένου προϊόντοςΠροσθέστε εικόνεςΠροσθέστε στη συλλογήΠαρουσιάστηκε σφάλμα κατά την εισαγωγή. Παρακαλώ προσπαθήστε ξανά.Παρουσιάστηκε σφάλμα, που πιθανότατα σημαίνει ότι έπεσε το τροφοδοτικό. Προσπαθήστε ξανά αργότερα.Είστε σίγουρος;Διαθέσιμη ΜνήμηΑπενεργοποίησηΕπιλέξτε πλευρική στήληΚαθαρισμόςΚαθαρισμός χρώματοςΑπενεργοποίηση όλωνΑξία χρώματοςΕπικοινωνήστε με την εταιρεία hosting σας για να ενεργοποιήσετε.Επικοινωνήστε με την εταιρεία hosting σας για να το ενεργοποιήσετε.Επικοινωνήστε με την εταιρεία hosting σας για να αναβαθμίσετε.Περιεχόμενο καρτέλας. (Υποστηρίζεται HTML)Έγινε αντιγραφή!Αντιγραφή ΚώδικαΠροσαρμογή:Επιτυχής εισαγωγή βάσης δεδομένων.ΠροεπιλεγμένοΚαθορισμένο WP_CACHEΔιαγραφήΔιαγραφή εικόναςΑπενεργοποιημένοΑνακαλύψτε όλα τα διαθέσιμά μας πρόσθετα στο: %1$s και %2$sΘέλετε να αφαιρέσετε την προσαρμοσμένη καρτέλα;ΚατέβασμαΤο στοιχείο διαγράφηκε επιτυχώς.Το στοιχείο αναβαθμίστηκε επιτυχώς.ΕνεργοποιημένοΑνάπτυξη όλωνCache εξωτερικού αντικειμένουΓια την βέλτιστη λειτουργικότητα των προσθέτων μας, προτείνουμε να ορίσετε τουλάχιστον %s διαθέσιμης μνήμηςΒιβλιοθήκη GDΠώς να εγκαταστήσετε την προηγμένη έκδοσηΆρθρωμα IconvΑν συνεχίσετε με αυτή την ενέργεια θα επαναφέρετε όλες τις επιλογές στη σελίδα.Έκδοση ImageMagickΤελευταία νέα από YITH BlogΑριστερή Πλευρική ΣτήληΑριστερή πλευρική στήληΆδεια χρήσης προϊόντοςΑρχεία ΚαταγραφήςMultiByte StringN/AΌνομαΌχιΔεν υπάρχει διαθέσιμο αρχείο Καταγραφής. Ενεργοποιήστε την αποσφαλμάτωση WordPress προσθέτοντάς το στο αρχείο %s της εγκατάστασής σαςΧωρίς πλευρική στήληOPCache Save CommentsΔιεύθυνση IP ΠαραγωγήςΈκδοση PHPΑρχείο PHP error_logPHPInfoΤελευταία αναβάθμιση κυκλοφόρησε στιςΠροβολή Αρχείου ΚαταγραφήςΕγχειρίδιο χρήσηςLive DemoPremium έκδοσηΥποστήριξηΡυθμίσεις ΠροσθέτουΕνεργοποιημένα ΠρόσθεταΠροϋποθέσεις ΠρόσθετωνΑναβαθμισμένα ΠρόσθεταΚάτωΑριστεράΔεξιάΚορυφήΠροεπισκόπηση:ΠληρωμέςΑυτό το δείγμα γλώσσας περιλαμβάνει τα βασικά στοιχεία γύρω από το τι προσωπικά δεδομένα το κατάστημά σας μπορεί να συλλέγει, την αποθήκευση και την κοινή χρήση, καθώς και ποιοι μπορεί να έχουν πρόσβαση σε αυτά τα δεδομένα. Ανάλογα με τις ρυθμίσεις που είναι ενεργοποιημένες και ποια επιπλέον πρόσθετα χρησιμοποιούνται, οι συγκεκριμένες πληροφορίες που κοινοποιούνται από το κατάστημά σας θα ποικίλλουν. Συνιστούμε τη διαβούλευση με έναν δικηγόρο, όταν αποφασίζετε ποιες πληροφορίες να αποκαλύπτετε στην πολιτική απορρήτου σας.Τι συλλέγουμε και αποθηκεύουμεΤι μοιραζόμαστε με τους άλλουςΠοιος στην ομάδα μας έχει πρόσβασηΠρόσθετα YITHΣφάλμα RSS:Μάθετε περισσότερα %1$sεδώ%2$s ή επικοινωνήστε με την εταιρεία hosting σας για να το βελτιώσετε.ΑφαίρεσηΑφαίρεση %1$s από αρχείο %2$sΑφαίρεση ΌλωνΕπαναφοράΕπαναφορά ΠροεπιλεγμένωνΕπαναφορά σε προεπιλεγμένοΔεξιά Πλευρική ΣτήληΔεξιά πλευρική στήληΑποθήκευση ΑλλαγώνΑναζήτηση ΚατηγοριώνΑναζήτηση ΠελατώνΑναζήτηση ΆρθρουΑναζήτηση ΠροϊόντοςΕπιλογή ΧρώματοςΕπιλογή προεπιλεγμένου χρώματοςΟρίστε ΠροεπιλεγμένοΡυθμίσειςΕπαναφορά ρυθμίσεωνΡυθμίσεις αποθηκεύτηκανSimpleXMLΣτοιχεία ΙστότοπουURL ΙστοσελίδαςΣυγνώμη, η εισαγωγή είναι απενεργοποιημένη.Διαλογή επιτυχής.Κατάσταση ΣυστήματοςΈκδοση TLSΤο προστιθέμενο αρχείο δεν είναι έγκυρο.Οι αλλαγές που έχετε δημιουργήσει θα χαθούν αν αφήσετε αυτήν την σελίδα.Το στοιχείο που εισάγατε υπάρχει ήδη. Παρακαλώ, εισάγετε άλλο όνομα.Το μέγεθος αρχείου υπερβαίνει τα 8 megabytes οπότε θα πρέπει να το κατεβάσετεΤο σύστημα δεν μπορεί να καθορίσει ποια %1$s έκδοση έχει εγκατασταθεί γιατί το %2$s άρθρωμα είναι απενεργοποιημένο. Ζητήστε από την εταιρεία hosting σας να το ενεργοποιήσει.Ο έλεγχος συστήματος δεν μπορεί να διευκρινήσει ποια έκδοση %1$s έχει εγκατασταθεί λόγω προβλήματος σύνδεσης ανάμεσα στον ιστότοπο σας και τον διακομιστή μας.Ο έλεγχος συστήματος έχει εντοπίσει κάποια προβλήματα συμβατότητας στην εγκατάστασή σας.%1$sΚάντε κλικ εδώ%2$s για να μάθετε περισσότεραΣυνδέστε αξίεςURL FOpenΚάντε αναβάθμιση της τελευταίας έκδοσης για να επωφεληθείτε από τα νέα χαρακτηριστικά και τις αναβαθμίσεις προστασίας.ΑνέβασμαΤιμήΑρχείο WP debug.logΠροσοχή!Χρειαζόμαστε την υποστήριξή σαςWooCommerceΈκδοση WooCommerceWordPress CronΈκδοση WordPressΟΧΙΝΑΙYITHΤελευταίες Αναβαθμίσεις YITHΠρόσθετα YITHΣύστημα Πληροφοριών YITHΝαιYITHγια να διατηρήσετε την ενημέρωση και τη βελτίωση του πρόσθετου. Παρακαλώ,PK`x1\��0"��#plugin-fw/lib/yit-plugin-common.phpnu�[���<?php
/**
 * Deprecated file. Use the correct one in includes folder instead
 *
 * @package YITH\PluginFramework\Classes
 */

/**
 * Require the correct file
 */
require_once __DIR__ . '/../includes/class-yit-plugin-common.php';
PK`x1\������#plugin-fw/lib/yit-theme-licence.phpnu�[���<?php
/**
 * Deprecated file. Use the correct one in includes folder instead
 *
 * @package YITH\PluginFramework\Classes
 */

/**
 * Require the correct file
 */
require_once __DIR__ . '/../includes/class-yit-theme-licence.php';
PK`x1\B�����plugin-fw/lib/yit-icons.phpnu�[���<?php
/**
 * Deprecated file. Use the correct one in includes folder instead
 *
 * @package YITH\PluginFramework\Classes
 */

/**
 * Require the correct file
 */
require_once __DIR__ . '/../includes/class-yit-icons.php';
PK`x1\(�sh�� plugin-fw/lib/yith-dashboard.phpnu�[���<?php
/**
 * Deprecated file. Use the correct one in includes folder instead
 *
 * @package YITH\PluginFramework\Classes
 */

/**
 * Require the correct file
 */
require_once __DIR__ . '/../includes/class-yith-dashboard.php';
PK`x1\�#����%plugin-fw/lib/yit-plugin-panel-wc.phpnu�[���<?php
/**
 * Deprecated file. Use the correct one in includes folder instead
 *
 * @package YITH\PluginFramework\Classes
 */

/**
 * Require the correct file
 */
require_once __DIR__ . '/../includes/class-yit-plugin-panel-woocommerce.php';
PK`x1\�8!��plugin-fw/lib/yit-metabox.phpnu�[���<?php
/**
 * Deprecated file. Use the correct one in includes folder instead
 *
 * @package YITH\PluginFramework\Classes
 */

/**
 * Require the correct file
 */
require_once __DIR__ . '/../includes/class-yit-metabox.php';
PK`x1\�>����&plugin-fw/lib/yit-plugin-gradients.phpnu�[���<?php
/**
 * Deprecated file. Use the correct one in includes folder instead
 *
 * @package YITH\PluginFramework\Classes
 */

/**
 * Require the correct file
 */
require_once __DIR__ . '/../includes/class-yit-gradients.php';
PK`x1\�����$plugin-fw/lib/yith-system-status.phpnu�[���<?php
/**
 * Deprecated file. Use the correct one in includes folder instead
 *
 * @package YITH\PluginFramework\Classes
 */

/**
 * Require the correct file
 */
require_once __DIR__ . '/../includes/class-yith-system-status.php';
PK`x1\�+_��plugin-fw/lib/yit-video.phpnu�[���<?php
/**
 * Deprecated file. Use the correct one in includes folder instead
 *
 * @package YITH\PluginFramework\Classes
 */

/**
 * Require the correct file
 */
require_once __DIR__ . '/../includes/class-yit-video.php';
PK`x1\��N/��plugin-fw/lib/yit-ajax.phpnu�[���<?php
/**
 * Deprecated file. Use the correct one in includes folder instead
 *
 * @package YITH\PluginFramework\Classes
 */

/**
 * Require the correct file
 */
require_once __DIR__ . '/../includes/class-yit-ajax.php';
PK`x1\xL��� plugin-fw/lib/yith-gutenberg.phpnu�[���<?php
/**
 * Deprecated file. Use the correct one in includes folder instead
 *
 * @package YITH\PluginFramework\Classes
 */

/**
 * Require the correct file
 */
require_once __DIR__ . '/../includes/builders/gutenberg/class-yith-gutenberg.php';
PK`x1\'8����%plugin-fw/lib/privacy/yit-privacy.phpnu�[���<?php
/**
 * Deprecated file. Use the correct one in includes folder instead
 *
 * @package YITH\PluginFramework\Classes
 */

/**
 * Require the correct file
 */
require_once __DIR__ . '/../../includes/privacy/class-yith-privacy.php';
PK`x1\��_��5plugin-fw/lib/privacy/yit-privacy-plugin-abstract.phpnu�[���<?php
/**
 * Deprecated file. Use the correct one in includes folder instead
 *
 * @package YITH\PluginFramework\Classes
 */

/**
 * Require the correct file
 */
require_once __DIR__ . '/../../includes/privacy/class-yith-privacy-plugin-abstract.php';
PK`x1\��:��#plugin-fw/lib/yit-cpt-unlimited.phpnu�[���<?php
/**
 * Deprecated file. Use the correct one in includes folder instead
 *
 * @package YITH\PluginFramework\Classes
 */

/**
 * Require the correct file
 */
require_once __DIR__ . '/../includes/class-yit-cpt-unlimited.php';
PK`x1\�Ե��plugin-fw/lib/yit-upgrade.phpnu�[���<?php
/**
 * Deprecated file. Use the correct one in includes folder instead
 *
 * @package YITH\PluginFramework\Classes
 */

/**
 * Require the correct file
 */
require_once __DIR__ . '/../includes/class-yit-upgrade.php';
PK`x1\.�>���plugin-fw/lib/yit-debug.phpnu�[���<?php
/**
 * Deprecated file. Use the correct one in includes folder instead
 *
 * @package YITH\PluginFramework\Classes
 */

/**
 * Require the correct file
 */
require_once __DIR__ . '/../includes/class-yith-debug.php';
PK`x1\�Q���plugin-fw/lib/yit-pointers.phpnu�[���<?php
/**
 * Deprecated file. Use the correct one in includes folder instead
 *
 * @package YITH\PluginFramework\Classes
 */

/**
 * Require the correct file
 */
require_once __DIR__ . '/../includes/class-yit-pointers.php';
PK`x1\�3�C��plugin-fw/lib/yit-assets.phpnu�[���<?php
/**
 * Deprecated file. Use the correct one in includes folder instead
 *
 * @package YITH\PluginFramework\Classes
 */

/**
 * Require the correct file
 */
require_once __DIR__ . '/../includes/class-yit-assets.php';
PK`x1\�jO���%plugin-fw/lib/yit-plugin-subpanel.phpnu�[���<?php
/**
 * Deprecated file. Use the correct one in includes folder instead
 *
 * @package YITH\PluginFramework\Classes
 */

/**
 * Require the correct file
 */
require_once __DIR__ . '/../includes/class-yit-plugin-subpanel.php';
PK`x1\������"plugin-fw/lib/yit-plugin-panel.phpnu�[���<?php
/**
 * Deprecated file. Use the correct one in includes folder instead
 *
 * @package YITH\PluginFramework\Classes
 */

/**
 * Require the correct file
 */
require_once __DIR__ . '/../includes/class-yit-plugin-panel.php';
PK`x1\c�Y��$plugin-fw/lib/yit-plugin-licence.phpnu�[���<?php
/**
 * Deprecated file. Use the correct one in includes folder instead
 *
 * @package YITH\PluginFramework\Classes
 */

/**
 * Require the correct file
 */
require_once __DIR__ . '/../includes/class-yit-plugin-licence.php';
PK`x1\�{�"njnjplugin-fw/LICENSE.txtnu�[���YITH Plugin Framework

Copyright 2015-2021 Your Inspiration Solutions (email : plugins@yithemes.com)

This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA

YITH Plugin Framework is released under the GPL

=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=

  GNU GENERAL PUBLIC LICENSE
                       Version 3, 29 June 2007

 Copyright © 2007 Free Software Foundation, Inc. <https://fsf.org/>
 Everyone is permitted to copy and distribute verbatim copies
 of this license document, but changing it is not allowed.

                            Preamble

  The GNU General Public License is a free, copyleft license for
software and other kinds of works.

  The licenses for most software and other practical works are designed
to take away your freedom to share and change the works.  By contrast,
the GNU General Public License is intended to guarantee your freedom to
share and change all versions of a program--to make sure it remains free
software for all its users.  We, the Free Software Foundation, use the
GNU General Public License for most of our software; it applies also to
any other work released this way by its authors.  You can apply it to
your programs, too.

  When we speak of free software, we are referring to freedom, not
price.  Our General Public Licenses are designed to make sure that you
have the freedom to distribute copies of free software (and charge for
them if you wish), that you receive source code or can get it if you
want it, that you can change the software or use pieces of it in new
free programs, and that you know you can do these things.

  To protect your rights, we need to prevent others from denying you
these rights or asking you to surrender the rights.  Therefore, you have
certain responsibilities if you distribute copies of the software, or if
you modify it: responsibilities to respect the freedom of others.

  For example, if you distribute copies of such a program, whether
gratis or for a fee, you must pass on to the recipients the same
freedoms that you received.  You must make sure that they, too, receive
or can get the source code.  And you must show them these terms so they
know their rights.

  Developers that use the GNU GPL protect your rights with two steps:
(1) assert copyright on the software, and (2) offer you this License
giving you legal permission to copy, distribute and/or modify it.

  For the developers' and authors' protection, the GPL clearly explains
that there is no warranty for this free software.  For both users' and
authors' sake, the GPL requires that modified versions be marked as
changed, so that their problems will not be attributed erroneously to
authors of previous versions.

  Some devices are designed to deny users access to install or run
modified versions of the software inside them, although the manufacturer
can do so.  This is fundamentally incompatible with the aim of
protecting users' freedom to change the software.  The systematic
pattern of such abuse occurs in the area of products for individuals to
use, which is precisely where it is most unacceptable.  Therefore, we
have designed this version of the GPL to prohibit the practice for those
products.  If such problems arise substantially in other domains, we
stand ready to extend this provision to those domains in future versions
of the GPL, as needed to protect the freedom of users.

  Finally, every program is threatened constantly by software patents.
States should not allow patents to restrict development and use of
software on general-purpose computers, but in those that do, we wish to
avoid the special danger that patents applied to a free program could
make it effectively proprietary.  To prevent this, the GPL assures that
patents cannot be used to render the program non-free.

  The precise terms and conditions for copying, distribution and
modification follow.

                       TERMS AND CONDITIONS

  0. Definitions.

  "This License" refers to version 3 of the GNU General Public License.

  "Copyright" also means copyright-like laws that apply to other kinds of
works, such as semiconductor masks.

  "The Program" refers to any copyrightable work licensed under this
License.  Each licensee is addressed as "you".  "Licensees" and
"recipients" may be individuals or organizations.

  To "modify" a work means to copy from or adapt all or part of the work
in a fashion requiring copyright permission, other than the making of an
exact copy.  The resulting work is called a "modified version" of the
earlier work or a work "based on" the earlier work.

  A "covered work" means either the unmodified Program or a work based
on the Program.

  To "propagate" a work means to do anything with it that, without
permission, would make you directly or secondarily liable for
infringement under applicable copyright law, except executing it on a
computer or modifying a private copy.  Propagation includes copying,
distribution (with or without modification), making available to the
public, and in some countries other activities as well.

  To "convey" a work means any kind of propagation that enables other
parties to make or receive copies.  Mere interaction with a user through
a computer network, with no transfer of a copy, is not conveying.

  An interactive user interface displays "Appropriate Legal Notices"
to the extent that it includes a convenient and prominently visible
feature that (1) displays an appropriate copyright notice, and (2)
tells the user that there is no warranty for the work (except to the
extent that warranties are provided), that licensees may convey the
work under this License, and how to view a copy of this License.  If
the interface presents a list of user commands or options, such as a
menu, a prominent item in the list meets this criterion.

  1. Source Code.

  The "source code" for a work means the preferred form of the work
for making modifications to it.  "Object code" means any non-source
form of a work.

  A "Standard Interface" means an interface that either is an official
standard defined by a recognized standards body, or, in the case of
interfaces specified for a particular programming language, one that
is widely used among developers working in that language.

  The "System Libraries" of an executable work include anything, other
than the work as a whole, that (a) is included in the normal form of
packaging a Major Component, but which is not part of that Major
Component, and (b) serves only to enable use of the work with that
Major Component, or to implement a Standard Interface for which an
implementation is available to the public in source code form.  A
"Major Component", in this context, means a major essential component
(kernel, window system, and so on) of the specific operating system
(if any) on which the executable work runs, or a compiler used to
produce the work, or an object code interpreter used to run it.

  The "Corresponding Source" for a work in object code form means all
the source code needed to generate, install, and (for an executable
work) run the object code and to modify the work, including scripts to
control those activities.  However, it does not include the work's
System Libraries, or general-purpose tools or generally available free
programs which are used unmodified in performing those activities but
which are not part of the work.  For example, Corresponding Source
includes interface definition files associated with source files for
the work, and the source code for shared libraries and dynamically
linked subprograms that the work is specifically designed to require,
such as by intimate data communication or control flow between those
subprograms and other parts of the work.

  The Corresponding Source need not include anything that users
can regenerate automatically from other parts of the Corresponding
Source.

  The Corresponding Source for a work in source code form is that
same work.

  2. Basic Permissions.

  All rights granted under this License are granted for the term of
copyright on the Program, and are irrevocable provided the stated
conditions are met.  This License explicitly affirms your unlimited
permission to run the unmodified Program.  The output from running a
covered work is covered by this License only if the output, given its
content, constitutes a covered work.  This License acknowledges your
rights of fair use or other equivalent, as provided by copyright law.

  You may make, run and propagate covered works that you do not
convey, without conditions so long as your license otherwise remains
in force.  You may convey covered works to others for the sole purpose
of having them make modifications exclusively for you, or provide you
with facilities for running those works, provided that you comply with
the terms of this License in conveying all material for which you do
not control copyright.  Those thus making or running the covered works
for you must do so exclusively on your behalf, under your direction
and control, on terms that prohibit them from making any copies of
your copyrighted material outside their relationship with you.

  Conveying under any other circumstances is permitted solely under
the conditions stated below.  Sublicensing is not allowed; section 10
makes it unnecessary.

  3. Protecting Users' Legal Rights From Anti-Circumvention Law.

  No covered work shall be deemed part of an effective technological
measure under any applicable law fulfilling obligations under article
11 of the WIPO copyright treaty adopted on 20 December 1996, or
similar laws prohibiting or restricting circumvention of such
measures.

  When you convey a covered work, you waive any legal power to forbid
circumvention of technological measures to the extent such circumvention
is effected by exercising rights under this License with respect to
the covered work, and you disclaim any intention to limit operation or
modification of the work as a means of enforcing, against the work's
users, your or third parties' legal rights to forbid circumvention of
technological measures.

  4. Conveying Verbatim Copies.

  You may convey verbatim copies of the Program's source code as you
receive it, in any medium, provided that you conspicuously and
appropriately publish on each copy an appropriate copyright notice;
keep intact all notices stating that this License and any
non-permissive terms added in accord with section 7 apply to the code;
keep intact all notices of the absence of any warranty; and give all
recipients a copy of this License along with the Program.

  You may charge any price or no price for each copy that you convey,
and you may offer support or warranty protection for a fee.

  5. Conveying Modified Source Versions.

  You may convey a work based on the Program, or the modifications to
produce it from the Program, in the form of source code under the
terms of section 4, provided that you also meet all of these conditions:

    a) The work must carry prominent notices stating that you modified
    it, and giving a relevant date.

    b) The work must carry prominent notices stating that it is
    released under this License and any conditions added under section
    7.  This requirement modifies the requirement in section 4 to
    "keep intact all notices".

    c) You must license the entire work, as a whole, under this
    License to anyone who comes into possession of a copy.  This
    License will therefore apply, along with any applicable section 7
    additional terms, to the whole of the work, and all its parts,
    regardless of how they are packaged.  This License gives no
    permission to license the work in any other way, but it does not
    invalidate such permission if you have separately received it.

    d) If the work has interactive user interfaces, each must display
    Appropriate Legal Notices; however, if the Program has interactive
    interfaces that do not display Appropriate Legal Notices, your
    work need not make them do so.

  A compilation of a covered work with other separate and independent
works, which are not by their nature extensions of the covered work,
and which are not combined with it such as to form a larger program,
in or on a volume of a storage or distribution medium, is called an
"aggregate" if the compilation and its resulting copyright are not
used to limit the access or legal rights of the compilation's users
beyond what the individual works permit.  Inclusion of a covered work
in an aggregate does not cause this License to apply to the other
parts of the aggregate.

  6. Conveying Non-Source Forms.

  You may convey a covered work in object code form under the terms
of sections 4 and 5, provided that you also convey the
machine-readable Corresponding Source under the terms of this License,
in one of these ways:

    a) Convey the object code in, or embodied in, a physical product
    (including a physical distribution medium), accompanied by the
    Corresponding Source fixed on a durable physical medium
    customarily used for software interchange.

    b) Convey the object code in, or embodied in, a physical product
    (including a physical distribution medium), accompanied by a
    written offer, valid for at least three years and valid for as
    long as you offer spare parts or customer support for that product
    model, to give anyone who possesses the object code either (1) a
    copy of the Corresponding Source for all the software in the
    product that is covered by this License, on a durable physical
    medium customarily used for software interchange, for a price no
    more than your reasonable cost of physically performing this
    conveying of source, or (2) access to copy the
    Corresponding Source from a network server at no charge.

    c) Convey individual copies of the object code with a copy of the
    written offer to provide the Corresponding Source.  This
    alternative is allowed only occasionally and noncommercially, and
    only if you received the object code with such an offer, in accord
    with subsection 6b.

    d) Convey the object code by offering access from a designated
    place (gratis or for a charge), and offer equivalent access to the
    Corresponding Source in the same way through the same place at no
    further charge.  You need not require recipients to copy the
    Corresponding Source along with the object code.  If the place to
    copy the object code is a network server, the Corresponding Source
    may be on a different server (operated by you or a third party)
    that supports equivalent copying facilities, provided you maintain
    clear directions next to the object code saying where to find the
    Corresponding Source.  Regardless of what server hosts the
    Corresponding Source, you remain obligated to ensure that it is
    available for as long as needed to satisfy these requirements.

    e) Convey the object code using peer-to-peer transmission, provided
    you inform other peers where the object code and Corresponding
    Source of the work are being offered to the general public at no
    charge under subsection 6d.

  A separable portion of the object code, whose source code is excluded
from the Corresponding Source as a System Library, need not be
included in conveying the object code work.

  A "User Product" is either (1) a "consumer product", which means any
tangible personal property which is normally used for personal, family,
or household purposes, or (2) anything designed or sold for incorporation
into a dwelling.  In determining whether a product is a consumer product,
doubtful cases shall be resolved in favor of coverage.  For a particular
product received by a particular user, "normally used" refers to a
typical or common use of that class of product, regardless of the status
of the particular user or of the way in which the particular user
actually uses, or expects or is expected to use, the product.  A product
is a consumer product regardless of whether the product has substantial
commercial, industrial or non-consumer uses, unless such uses represent
the only significant mode of use of the product.

  "Installation Information" for a User Product means any methods,
procedures, authorization keys, or other information required to install
and execute modified versions of a covered work in that User Product from
a modified version of its Corresponding Source.  The information must
suffice to ensure that the continued functioning of the modified object
code is in no case prevented or interfered with solely because
modification has been made.

  If you convey an object code work under this section in, or with, or
specifically for use in, a User Product, and the conveying occurs as
part of a transaction in which the right of possession and use of the
User Product is transferred to the recipient in perpetuity or for a
fixed term (regardless of how the transaction is characterized), the
Corresponding Source conveyed under this section must be accompanied
by the Installation Information.  But this requirement does not apply
if neither you nor any third party retains the ability to install
modified object code on the User Product (for example, the work has
been installed in ROM).

  The requirement to provide Installation Information does not include a
requirement to continue to provide support service, warranty, or updates
for a work that has been modified or installed by the recipient, or for
the User Product in which it has been modified or installed.  Access to a
network may be denied when the modification itself materially and
adversely affects the operation of the network or violates the rules and
protocols for communication across the network.

  Corresponding Source conveyed, and Installation Information provided,
in accord with this section must be in a format that is publicly
documented (and with an implementation available to the public in
source code form), and must require no special password or key for
unpacking, reading or copying.

  7. Additional Terms.

  "Additional permissions" are terms that supplement the terms of this
License by making exceptions from one or more of its conditions.
Additional permissions that are applicable to the entire Program shall
be treated as though they were included in this License, to the extent
that they are valid under applicable law.  If additional permissions
apply only to part of the Program, that part may be used separately
under those permissions, but the entire Program remains governed by
this License without regard to the additional permissions.

  When you convey a copy of a covered work, you may at your option
remove any additional permissions from that copy, or from any part of
it.  (Additional permissions may be written to require their own
removal in certain cases when you modify the work.)  You may place
additional permissions on material, added by you to a covered work,
for which you have or can give appropriate copyright permission.

  Notwithstanding any other provision of this License, for material you
add to a covered work, you may (if authorized by the copyright holders of
that material) supplement the terms of this License with terms:

    a) Disclaiming warranty or limiting liability differently from the
    terms of sections 15 and 16 of this License; or

    b) Requiring preservation of specified reasonable legal notices or
    author attributions in that material or in the Appropriate Legal
    Notices displayed by works containing it; or

    c) Prohibiting misrepresentation of the origin of that material, or
    requiring that modified versions of such material be marked in
    reasonable ways as different from the original version; or

    d) Limiting the use for publicity purposes of names of licensors or
    authors of the material; or

    e) Declining to grant rights under trademark law for use of some
    trade names, trademarks, or service marks; or

    f) Requiring indemnification of licensors and authors of that
    material by anyone who conveys the material (or modified versions of
    it) with contractual assumptions of liability to the recipient, for
    any liability that these contractual assumptions directly impose on
    those licensors and authors.

  All other non-permissive additional terms are considered "further
restrictions" within the meaning of section 10.  If the Program as you
received it, or any part of it, contains a notice stating that it is
governed by this License along with a term that is a further
restriction, you may remove that term.  If a license document contains
a further restriction but permits relicensing or conveying under this
License, you may add to a covered work material governed by the terms
of that license document, provided that the further restriction does
not survive such relicensing or conveying.

  If you add terms to a covered work in accord with this section, you
must place, in the relevant source files, a statement of the
additional terms that apply to those files, or a notice indicating
where to find the applicable terms.

  Additional terms, permissive or non-permissive, may be stated in the
form of a separately written license, or stated as exceptions;
the above requirements apply either way.

  8. Termination.

  You may not propagate or modify a covered work except as expressly
provided under this License.  Any attempt otherwise to propagate or
modify it is void, and will automatically terminate your rights under
this License (including any patent licenses granted under the third
paragraph of section 11).

  However, if you cease all violation of this License, then your
license from a particular copyright holder is reinstated (a)
provisionally, unless and until the copyright holder explicitly and
finally terminates your license, and (b) permanently, if the copyright
holder fails to notify you of the violation by some reasonable means
prior to 60 days after the cessation.

  Moreover, your license from a particular copyright holder is
reinstated permanently if the copyright holder notifies you of the
violation by some reasonable means, this is the first time you have
received notice of violation of this License (for any work) from that
copyright holder, and you cure the violation prior to 30 days after
your receipt of the notice.

  Termination of your rights under this section does not terminate the
licenses of parties who have received copies or rights from you under
this License.  If your rights have been terminated and not permanently
reinstated, you do not qualify to receive new licenses for the same
material under section 10.

  9. Acceptance Not Required for Having Copies.

  You are not required to accept this License in order to receive or
run a copy of the Program.  Ancillary propagation of a covered work
occurring solely as a consequence of using peer-to-peer transmission
to receive a copy likewise does not require acceptance.  However,
nothing other than this License grants you permission to propagate or
modify any covered work.  These actions infringe copyright if you do
not accept this License.  Therefore, by modifying or propagating a
covered work, you indicate your acceptance of this License to do so.

  10. Automatic Licensing of Downstream Recipients.

  Each time you convey a covered work, the recipient automatically
receives a license from the original licensors, to run, modify and
propagate that work, subject to this License.  You are not responsible
for enforcing compliance by third parties with this License.

  An "entity transaction" is a transaction transferring control of an
organization, or substantially all assets of one, or subdividing an
organization, or merging organizations.  If propagation of a covered
work results from an entity transaction, each party to that
transaction who receives a copy of the work also receives whatever
licenses to the work the party's predecessor in interest had or could
give under the previous paragraph, plus a right to possession of the
Corresponding Source of the work from the predecessor in interest, if
the predecessor has it or can get it with reasonable efforts.

  You may not impose any further restrictions on the exercise of the
rights granted or affirmed under this License.  For example, you may
not impose a license fee, royalty, or other charge for exercise of
rights granted under this License, and you may not initiate litigation
(including a cross-claim or counterclaim in a lawsuit) alleging that
any patent claim is infringed by making, using, selling, offering for
sale, or importing the Program or any portion of it.

  11. Patents.

  A "contributor" is a copyright holder who authorizes use under this
License of the Program or a work on which the Program is based.  The
work thus licensed is called the contributor's "contributor version".

  A contributor's "essential patent claims" are all patent claims
owned or controlled by the contributor, whether already acquired or
hereafter acquired, that would be infringed by some manner, permitted
by this License, of making, using, or selling its contributor version,
but do not include claims that would be infringed only as a
consequence of further modification of the contributor version.  For
purposes of this definition, "control" includes the right to grant
patent sublicenses in a manner consistent with the requirements of
this License.

  Each contributor grants you a non-exclusive, worldwide, royalty-free
patent license under the contributor's essential patent claims, to
make, use, sell, offer for sale, import and otherwise run, modify and
propagate the contents of its contributor version.

  In the following three paragraphs, a "patent license" is any express
agreement or commitment, however denominated, not to enforce a patent
(such as an express permission to practice a patent or covenant not to
sue for patent infringement).  To "grant" such a patent license to a
party means to make such an agreement or commitment not to enforce a
patent against the party.

  If you convey a covered work, knowingly relying on a patent license,
and the Corresponding Source of the work is not available for anyone
to copy, free of charge and under the terms of this License, through a
publicly available network server or other readily accessible means,
then you must either (1) cause the Corresponding Source to be so
available, or (2) arrange to deprive yourself of the benefit of the
patent license for this particular work, or (3) arrange, in a manner
consistent with the requirements of this License, to extend the patent
license to downstream recipients.  "Knowingly relying" means you have
actual knowledge that, but for the patent license, your conveying the
covered work in a country, or your recipient's use of the covered work
in a country, would infringe one or more identifiable patents in that
country that you have reason to believe are valid.

  If, pursuant to or in connection with a single transaction or
arrangement, you convey, or propagate by procuring conveyance of, a
covered work, and grant a patent license to some of the parties
receiving the covered work authorizing them to use, propagate, modify
or convey a specific copy of the covered work, then the patent license
you grant is automatically extended to all recipients of the covered
work and works based on it.

  A patent license is "discriminatory" if it does not include within
the scope of its coverage, prohibits the exercise of, or is
conditioned on the non-exercise of one or more of the rights that are
specifically granted under this License.  You may not convey a covered
work if you are a party to an arrangement with a third party that is
in the business of distributing software, under which you make payment
to the third party based on the extent of your activity of conveying
the work, and under which the third party grants, to any of the
parties who would receive the covered work from you, a discriminatory
patent license (a) in connection with copies of the covered work
conveyed by you (or copies made from those copies), or (b) primarily
for and in connection with specific products or compilations that
contain the covered work, unless you entered into that arrangement,
or that patent license was granted, prior to 28 March 2007.

  Nothing in this License shall be construed as excluding or limiting
any implied license or other defenses to infringement that may
otherwise be available to you under applicable patent law.

  12. No Surrender of Others' Freedom.

  If conditions are imposed on you (whether by court order, agreement or
otherwise) that contradict the conditions of this License, they do not
excuse you from the conditions of this License.  If you cannot convey a
covered work so as to satisfy simultaneously your obligations under this
License and any other pertinent obligations, then as a consequence you may
not convey it at all.  For example, if you agree to terms that obligate you
to collect a royalty for further conveying from those to whom you convey
the Program, the only way you could satisfy both those terms and this
License would be to refrain entirely from conveying the Program.

  13. Use with the GNU Affero General Public License.

  Notwithstanding any other provision of this License, you have
permission to link or combine any covered work with a work licensed
under version 3 of the GNU Affero General Public License into a single
combined work, and to convey the resulting work.  The terms of this
License will continue to apply to the part which is the covered work,
but the special requirements of the GNU Affero General Public License,
section 13, concerning interaction through a network will apply to the
combination as such.

  14. Revised Versions of this License.

  The Free Software Foundation may publish revised and/or new versions of
the GNU General Public License from time to time.  Such new versions will
be similar in spirit to the present version, but may differ in detail to
address new problems or concerns.

  Each version is given a distinguishing version number.  If the
Program specifies that a certain numbered version of the GNU General
Public License "or any later version" applies to it, you have the
option of following the terms and conditions either of that numbered
version or of any later version published by the Free Software
Foundation.  If the Program does not specify a version number of the
GNU General Public License, you may choose any version ever published
by the Free Software Foundation.

  If the Program specifies that a proxy can decide which future
versions of the GNU General Public License can be used, that proxy's
public statement of acceptance of a version permanently authorizes you
to choose that version for the Program.

  Later license versions may give you additional or different
permissions.  However, no additional obligations are imposed on any
author or copyright holder as a result of your choosing to follow a
later version.

  15. Disclaimer of Warranty.

  THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
APPLICABLE LAW.  EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE.  THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
IS WITH YOU.  SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.

  16. Limitation of Liability.

  IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
SUCH DAMAGES.

  17. Interpretation of Sections 15 and 16.

  If the disclaimer of warranty and limitation of liability provided
above cannot be given local legal effect according to their terms,
reviewing courts shall apply local law that most closely approximates
an absolute waiver of all civil liability in connection with the
Program, unless a warranty or assumption of liability accompanies a
copy of the Program in return for a fee.

                     END OF TERMS AND CONDITIONS

            How to Apply These Terms to Your New Programs

  If you develop a new program, and you want it to be of the greatest
possible use to the public, the best way to achieve this is to make it
free software which everyone can redistribute and change under these terms.

  To do so, attach the following notices to the program.  It is safest
to attach them to the start of each source file to most effectively
state the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is found.

    <one line to give the program's name and a brief idea of what it does.>
    Copyright © <year>  <name of author>

    This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program.  If not, see <https://www.gnu.org/licenses/>.

Also add information on how to contact you by electronic and paper mail.

  If the program does terminal interaction, make it output a short
notice like this when it starts in an interactive mode:

    <program>  Copyright © <year>  <name of author>
    This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
    This is free software, and you are welcome to redistribute it
    under certain conditions; type `show c' for details.

The hypothetical commands `show w' and `show c' should show the appropriate
parts of the General Public License.  Of course, your program's commands
might be different; for a GUI interface, you would use an "about box".

  You should also get your employer (if you work as a programmer) or school,
if any, to sign a "copyright disclaimer" for the program, if necessary.
For more information on this, and how to apply and follow the GNU GPL, see
<https://www.gnu.org/licenses/>.

  The GNU General Public License does not permit incorporating your program
into proprietary programs.  If your program is a subroutine library, you
may consider it more useful to permit linking proprietary applications with
the library.  If this is what you want to do, use the GNU Lesser General
Public License instead of this License.  But first, please read
<https://www.gnu.org/philosophy/why-not-lgpl.html>.PK`x1\���L�5�5$plugin-fw/assets/fonts/yith-icon.ttfnu�[����0GSUB����8BOS/28�K
|Vcmapнp���glyf73K�(�headd���6hhea51�$hmtxs����loca���xmaxpYV name��	f0�"post[�g23 �.����;��l_<�ݠ3�ݠ3����;J

�
,DFLTliga��fGf��PfEd@��.
�����������������,��,
���$���������PR	",.54.
*039-(
8:'2)6#/ 7%+1$!&�=��������	����������"�	�	�
�
,��.��5�
�
4������.��������
����*��0��3��9��-��(������
��� � �!�!�"�"�#�#8�$�$:����'����2��)��6�	�	#�
�
��/���
�
 ��7��%������������+��1����$��!��&$6J\n~��b�B�n���4N�2f�^	�	�
.
d
�L�$��
�����8t�0���B~�+/?CSWgk{�������#5!#"3!2654&%3#!#";26=4&53#";26=4&535#";26=4&537#";26=4&537#";26=4&53'#";26=4&53#";264&3#";264&#3#";264&+";264&3#";264&�+��+r����GrG�����((c(d)d(\'
T

-

M�dd��dHH��d��99�+�****dd�dd++y���%77����d����%'77���s������	j��������%'7o�����������'7'7���������7'7'7����������%''	���x������%''7�����}�����#/;GS_dhm�7#";264&3#";264&3#";264&";264&#3";264&+";264&3#";264&3#";264&'?'577#32#!"54;7#"3!2654&t66'+�66L�LQqba�&4�<����MP/�T$����Q��
��

��#',15<@Fdhmv326=4/&;#"3!26=4&+535+53%57!5"953#50#!7%35>4'&'57&'5#&7'47&7"264&"&462����=  �U��Y��;  ��9��

	
	
%



$				,6��	4�  <�yx�ӗ��  \ e			B
�$$=				#'+EQ#54&+"#54&+"#"3!2654&'3#'3##%3;26=;26=3##33535#�UrU���V�9UrV�9999��w�ddd���))((�999
#'5CGKe���5#326=##5#73354&+";#'3#73354&+"3#5#;26=#'3#73#7#3#%35#"3!2654&#5.'75&'&546753&''54'69r99�99qUV�9UU��	
.5�E))))�;E(((�w��w���	
#	$\	9	#'+/SW[u3#73#73#73#3#73#73#73#3#73#73#73##54&+"#54&+"#"3!2654&'3#'3##%3;26=;26=3rUUV�UUV�UUVqUrU���V�9UrV++S�w�ddd���))((�$-CYb!"3!2654&#!"543!2"264&"&4627#";#";26=4&#53264&+";264&3'.3�<�
�<��""0""y		"		�		"��]J��

��J"0""0"Xd	H	e	eH		e	-RZm���	'7������b� �w!".4>2"2>4.'77EvEEv�vEEvE>h>>h|h>>hQV?jEv�vEEv�vE�>h|h>>h|h>��N9���7'7���0��~+;7"&=46;2354&+";5#"&=46;2";26=4&#A�&�&&U)�&&�&&����UU&&�&�&�&&�&1����''7'77����������������'���V�����V��V#'?O46;5#"33#%354&';5#"&3##5##"#3;26=4&+"&=46;2&1
��$`__@r=&$$&�&&
���&7_�$��$$&=r&&�&����#/;GS!"3!2654&!2!54!"=!'3#'#";264&+";264&3#";264&3#";264&�<��0��8�<�f  �<o6���77����c ����#57'7#7'7'3'7'537�)�+KO+�-OL)�+KO+�-OO+�-OL)�*LO+�-OL)�*L
	7#'77��z�)@B?��LB�y�@D@�WKD���':KN&'&'#"'327676?"+32654'&#"67632&#"&76�
),;4 +FN! +-GA.'��

%�i(&=@.,
$,m��V&-IC'	%>;�#2$*
 %	#$

i%		$l��%+'%	=P
���$-6%"'&'&/76762%2767&'&""&462'"264&GA.'-Z�Z.'.A�� ,E�F+ &-I�I-�%%4%%z %		!<=!		% �%+*$%,+c$4%%4$`
��15Wco|�������%&1#6765&'&'54&+";26=3276767>5&#53'&'57613767167673&462"'"/&462"&4?627&4?62"'746312#1"46372#'"&%32#'"&463327676'5654&"+"'53'2#54'&'&546�



\;U<!%)���C0/?E	*B
	!�(�''�()z)(R

�9989�
&6&N�


|


bx\	
2	
	a)w))''�''+8	6hB#

	&&&5G
�


 (1:!"3!2654&'&"'&"7)41/7264&"72"&46�8�GX�fq���sNQ�$$1##
�8���FX�f��p��qNPr$1##1$\3#3#!"3!2654&!��8��-��+*�|�8���8!!".4>2"2>4.3#3#EvEEv�vEEvE>h>>h|h>>hLEv�vEEv�vE�>h|h>>h|h>d+*����%(BV[7'75'7/7'"/!!3''#53&'#53467#5365#5#!?67654.#"6'�/##/#/m
H��$]	N�..7''[.2d$#U�E	*&5)�GE�.
^
/B.��	H�eX3NS1��!,	.d�9w)5%'	4GF��#3@#54."#"3!26=4&%4>2##!"&=463!2#5&5462�(DPD(*�� 7A7!���		*�
'B(D((D(B��B 7!!7 B�		�I
??��#8J%'>54."32672644>2".%.#"763232>6=4&"326�z<ewf;;f;)Kz�4XiX33XiX4<A&.&%5	zK);f;;fwe<z4X44XiX33X�#
d				
�'3'7'#5#!"&546;#"76754+5325"/3!2�VR/�<�������	���RV0�ɑ��

����ř���!5�**�!!�@`iz75&/&'&5332654./.4>753+'.#"#".4>2654."327&7"264&"/.62762�	
!
'	
%6!#>h>>h|h>
	Ev�vEEvE-,O%44J44/	(	�	


  		
	

	e>h|h>>h>#"	,.EvEEv�vE
�4I44I4H3	+	�+264&"264&"264&"G##�$$�##$$$�-Pl'#"';7676?676;7676'&?676;7676'&'&+;7676?676761'1&'471�l9M
			FA



M9l
��	
M9l%.]�		
_B		9	
#$'�!Y ^
_ Y *��_ Y$!/#�e�S
%
��*3<EO.#!"3!2654&'#5!;'+#53264&+327+53264&+327#3##5�/��r$,��T�

#{!"}.,,�/��&,���U	���%c0!'
.cH<O'c
���#,5OSX^264&"72"&467264&"72"&46264&"72"&46#54&+"#"3!26=4&#737#0+53V'�''8'' �(	Ay�y���zy����yz	((E'8''8'j  �((E]=

=
��ո�����%##5#53533��*��*����*����!!3#����!7'7'!2#!!2>=4.|��.VR4A 44 ��c&B''B�-RV65@ 4'B'@'B&��+7'77#4>32.#"''7"&'732>53KG35B6]7<dW3/P/�45JG�<dV4/P/6]�I53-7]7A7.8/P{53GJ�A6/8/Q/7]7��#!%!"3!27632'"264&7!!�V�8~���g�!//B//?���V����8�g�/B//B/�S��+LQV%'&'&'&/7676?6767&'&'#5.'75&'&546753&''54'65&6'-X

I336&5�I*00*I/*CC*�

07	+?Yu
')$$
uY?+
P�[55[� $$ �
&
'a 
;	��%'775'7���������������'7''7'W������+����Q���U%#"&46;2'6=4&".';264&+"'4>726=4'''.#"2>54�		!:d<8_<:b;'F�)>�<#W0EvEEv�vE��6?<f>7[7;f>		�-D> "Ev�vEEvEJ�!)!3;27653+"&5!3#'3#335#3�L#�#?�6ya�����**��  ;����;WW!";7'7#!#32654&�8�.RV4�ț��81UR2��8�$*04?V"2>4.4>32.".%7#'>?'.54632"&'7!?4&'>54'7FuEEu�uEEu��>h>K=*2;4%- 7JN!&0�+ 1"(
J)L,&3!%>hEu�uEEu�uE�>h>..0)E(O|%
RV
7$
0	%-��(E)7U/>h>
�2=KN7!27654&#!"45!2!!."#";267!264&"&476272?>/&7&�
�L��G��$A		B#=��
4MN%%�
	
��		�d	�-8	c	Q����%&"3!264%'3#53#�����%�����
	��JW+���$&,138>@�I"2>4.67#='#&'67#63&&'6377&'53757"#&&'6?64/&"&'6'54&+"&/&"";2?67;26=6'672?64/&'677326=4&+'#"/&/+"&=&75'&/"/&4?6?'&/+"&=46;2376?'&/&4?6276?5&=46;276?6236;2�#;##;E;##;!U!< TT P"<!Tp	
'
		
'
		
'
	
'
	

	

	





�";F;"";F;"T:

 +


 +7

&

		

&

&

		

&

B	









	�<B676'&632#"767654&6327676732767676"767�$7=J=		"3
'-.	U&6U85-!:'	��
E$A^QATG.+ -` 
'&,ME;c2�"A�				"	-
+6a	t	�	�	�	�	�	
V�	&6yith-iconRegularyith-iconyith-iconVersion 1.0yith-iconGenerated by svg2ttf from Fontello project.http://fontello.comyith-iconRegularyith-iconyith-iconVersion 1.0yith-iconGenerated by svg2ttf from Fontello project.http://fontello.com;	

 !"#$%&'()*+,-./0123456789:;<
accountingarrow-down-alt
arrow-downarrow-left-alt
arrow-leftarrow-right-altarrow-rightarrow-up-altarrow-up
bank-checkbankcalendar-addcalendar-moneycalendarcash	check-altcheck-circlecheckclone	close-altclosecopycredit-carddragedit
eye-closedeyehelping-handimageinfo-squaredinfolist-searchlock	magnifiermail-out	minus-altminusmoney-checkmorepaypalpdfpeopleplus-altplusreplyresetsaveshield-moneysort-altsort
time-checktrashuploaduser-offvideowarning-triangleworld-settingsyithPK`x1\�J�5��&plugin-fw/assets/fonts/yith-icon.woff2nu�[���wOF2�5��BV�H
�|�r6$�lx �"�%~,E�!��"*6M��䶙�Z�3���U#�l1�b�{���t���G��G؇�|�J	����I��k,X�B(�B
�_I�����9�1�+�i+&�H��/��JW�*�U�~�,��X�^����v��,���$��B
���1� ř���24@C���O��)1?��`��%wx��(]48O���^�(�bw�SN{߳�o�9�-�	�#M6��U8�p]g��H��m^D�3Z�*P�%���˘@c,�tuۢ�;�fiw�<UU�V�ʺ������f�&9����$)JxJ�i�7F�+dY����������� �__��.u�R��;F�1������u��������X�=%~Ģ�1�X����|%����ߌ>8A2���i�}M�֑MZ�������2�B��D���N�ee���T��D�[��������Z;9�Y���Ԑ����up�2�d���:��*����Ά�6Zz.�_DL��N�H�V�=����=C� �2�,�C2�Ġ�90�$�SB��NPG(�.�5HS�T4�
4�����6U
u�[hh7h+h3hIhm �*�@@�N,]$�
p�p�7�
�30�7�"���9�`ΐ���
y�
`ZP��A	��`Ɛ�8���
&�01�Aja�P��z�4����M�b��~��ҷ�.���QbN;%-�ݜ(3vI�'ƶ�_Z�ǘ���ƺ���`4�
8�0Q��Y�!*�!%8~AHǃD�#oH"�0%����S���H
"]'#�HcQ���#��Ѓ֥��^!Ę���Ft"y��1�;54��V��i��ٖ���^+��bWOHV��ZC��•(���xn�3����'-bdʈ37���it!aHŐ����ǘ��m���2<D&�fpR~q8p��"�:�[��%�=��T*�l�F	���fWb�~�5�+o�5��B��~��|��p�G�B�v�_�v��M�,8Q��9�!��<Ӑ��S��+�]̈��%�)b���c��q�X*Q}C7�6
8�+�5�[�
[�yS��a�&e4N�VO:�ס�d�D$B�d_��C*�RmdFG�����;*^M���Ϟ��&��E�I��C2N@��!C
������G�u�u1q�W,ǮVe~<�,E_��%`��8�ց0鸅v	;,�hXAGi>qY�1 {�~oG.�͌��p�U߬�ks�u���Y��+��h�� ��id>h+%�z_�K�,H:�&��n�!CKM��l�'9o�ڷ�L�lM��A��Q�
۪ FC�t�a4"Rw�=�p��(D<y��ݍ�YC;~u���ek���^u�)�ar{���|9o����[�tP�[�q�,+E��qtF����ú�q��9��r
�Yۻk���vau�p����Z���U�U_ԗ�-��_v���]��&��b���ΏI��טwֆ�����&�"�
95�uR/�\�ٶcj�x-�<Y�1]ZNJ�*H�/D5*��:p]���L���w�zw~�}na���-N��Qt��ɻ�����$�؎�؊�류��z�?q�t��R(ܜ�&!�[��'��ʬ_-Ʊ��a�JZ�Գ�A�xsc��9+&���(���a����X%���j2�R��o%��‹[�1���v���cJL+���8�h��J?&R.2����G��&u������9K6#�rV�n |�!h�P�|#@�5_���Y+3d� ��-/6t�k����g��
x��@�}#7�3g�>A��>��B����HHKx�$ǚ��6��9<Wj����Qe:U�w���ʷ��hKƔSIIC��2��0�h�g��\��Y�7:����v�;�)��86�2���a:M}C�bp��Y׬��:73�G95�� ;! ��È��#/��d�!�Mr�MN%+90��]���}"�SDi���q�C�&��]#�q7dk�-���
��q.T(���P�����S��I�j���
���z�%{x2?���ضy����z�����M^���S��}4���\����m�[�|��\�36�}��X��č<G	�?M�t���.~�L`�.
��NOD�����mn�ou@�,�G��r��L|���hٟ{�)�&	&����.d;�,G�k�y�,Ca��ex�ҟ_�?�XAA��(T�[��=LO.��R��w��W�G*�t�ϐi�#�~&��i�^�4d�����p;�o���wci�`a���=���+nL���<;���5w
@�Y����{�����|Cp�V�ߛ=A&xSw��PVK�A�}(`�s��H �O������V��(�o���Mj|�m�ߺ]f�a�(���ڒ�b���O�Y�/��!���a٧��]O�ʴ7��b�F�m6����곳 ϕn����y�X��k���'���9�ѷLߚ[W�z��
�t�;lj�woM�GE�#�e��1�-�8���鍜_���pq���M��-Վ��hO��$��F,��l$�^���&�n�)Aj���zO�������o��F�ۥ�"���n�~	�48ZՁ~��
Qf���@v����M=/�\7�P;��r�jr{��$���|�
~8��'��^�R�|Ҟ�]�p��V7-��\�D�K�A�vb�I���*�`�h��'���k60�Q&՞{t��Fp��9�;.x/c����u+��768��2&H!�6�p�a�dx󥙘�0�)Ӈ���T!�Ϳr��ؚ�6d:/������W9ȏ�:=fZ|(�\���Tޱ�W�a6�F��
J�'��6����07���̉�"-t�����I{��4LSH�l��b�I�^L�+B(�<�Pbk���p�鬴�
6�f

Grd���BR�0��`�U�𻿐c��үT�\!�Vt~l�Z�O�<~�/��?|x�w{�y�v����éV��3�p1GPO�@E�O;��w�I��^bO��!(��1X�g�À�+�bNxan�Ks��^��Ǻ�1k~ݹ�H}_���I�סׄT�R�5����&��X<�ӆ�����G��B����J�4YIU!�|����~�j��F�J`��**�v���m��eRy�Auv�����9w�����I:�|Jz��	Ox��
�v�;�;(^��������\5^��*DkN Ӷ{�6��zNc� ����>g ��qL��-��{�TRҗn���O%8B�P��h�E)ES"�$9�^��2�T�
5_р:�B��f�*���e
������+������p_"�z��h[���1�!�����
[K�4E����F`C������*���Z��iI�@�o��ڟ�!�v����x��pXUXьI�䘃�c~؛�k��&ϒbv��'�?Ν�Y�M
	������Z{�����'�&���L~�5�؟^��V=-@�O#/�(Ò���vf1\��p �g���Ѡ�LZ���BY��/��*��/���DxV���Ngg�ye���X,���<��)��fy�j�ƃ��1!��\��O�x� ��=���r|������J/T����5�c@�+ʭ&�lz�{�t��@++F���(�Bt�}�o�������]LNAA.�c߉s�����}nc��Q/jlau��}w��x9�R�>/�f�1�y�e
)�}S�+"S��m�_��C�V�y�Dë8bf��f�:�󭞊��u1̞/�`~�i���Y��3U�x^F/^�]���[/E0Xs<�<$eא�W5��m���������kL!]/^L֔z~_��Act3x�3ԋ�-;}����R	��j�0ŶM\���N�4��!K%��q��F���	�ƈ�;���>�m�X�tZ��.����?/�L���C��]�f��8�`�U8�=�ƃ݄�qF�Lfp;�4-o�,�0��߳8��M�V�qq�ګ���31;n��ªdt"fVc3����܅:�}W*�.��JK�%.���G$T�qϑTJ�Ӳ�~�R�/2C(��~�p��yPw�٤!4��+�PYI&�}��:�����
�t�`bbc�b�=��\��^�^~�
�B��Գ���^�?�=6$�r��|C��{�߈�F�����/�e�j��=3g@�p��m�s����7K"����atduI��d,mC�"-��gL�ɶ�_f�yԬ�T���9�f�1fs��h�5�2���6X����^�R(3��y=Z7��?�z�9�P���5�\�~E���*2�2�HpV���^_���	II��%�+��+�ɶ��q��P}��a'�I
S^������屵�d�<��@많b�ݨ�5P�����N�Y��k"&�����d8ڦ�[���
l��6j�*�Z{��7�B���fB����:V����=�g�ЁP���o��+y��{����
ñ��ڙ�w��}P��G�����#P��^^���Mo���s?�G:�&������<<����LG�ld��jA�������~%S�>�Y����_ ue�)^(���з�����5�Uc���l	j����ʙu&�f�uuK,�h���ҕ"�<h�B�5x}dȄ�j���6G�̹>bI���U#;0S���W�9��-^S�x�6NOc̚��k�'����N�D#�wQ��2᪶5J,��)�>��
�*D���(�H��/�OQߏ�}�~J$�N�R"ULN+�E*�e�A
+X�����._��ݒn)i�ILU%:����*���\dB��C}ɵ���D@� J�?��%�8MH�}���ߜ{�P�:��VH��7���t�~��A?z
�.L�П����IPi}��}*h�Z�ޥAڠ���BΟ�,C�^����OH�j�:���������S4z&�l������K���(*�`A��2��������b��o��Z���z�H��=�XnI֞��q����Ǟ*W��2Y���?S҉?���;�h�bn������
�.�-׫nܨwh٪Ӟ
�[y�^���M�&;��S�W�@4g�P��5ڇ#��R�@�vnX�	Ά�G���2��Z���~�.
^�����f��KcvŽo2p3R�*�i?1��b4�?2>e�9�e����$U�Iی�4�A8�4��1�Vv�קޣ��2��)�U2�@_S�/Mp�|��*�O�)3���Jy�#��G�=?36~
]�[N勞ܮ�K-Ś��w�mY'��,�2����L���'�M�����Kk�LIyH�'z���×U�Ss�f�[C_�?<7��[Ys*��c��lKH.�׉]E�Ì�މ��|�8�4*�W
���M-�!@����� >�y�Mk�vO@o��K��n��Y��X�P��Fq���56�d��}��+�A�	��V��(��?�w��$h���v[��l��j��c�9t��}�d����de�@�G�z����wiZJ�z?�9�P���z �3�G7�����ģ.W�
����j��b�EC����d]29��p,��x\��T�*�G7��4>�o7�	�
��noM-�@Mki���X�9��x���\C�ne�u���i%-�2\1b�&	Oʋ�r���䦭÷���h궶�mH�����%u�С�i�s���Wߺ��ɦ�#VTl�ׄ�	�3��Z����F����Ǹ(��!%��H��g"t�[�tA��x�q���U#疪�YR�<K��xާb�X�L�O$�}���}˲z��F���"�l/��|X�ZP�g#���,+�w5]@�P@��T�]"^@n��� �/�|F� ��k;J����6�P���r.�+c�H�-������ً|X���W�Q�XR��HL���6�|+G�ј�ők��\`ߪ��8�w�j�(O�*D�/3�����e������G�����x�ss���І���kل�G�!�r��ÖR*�h%��o�H;%���>J~��z��b�9���+����H�Nv�z���0�(��N8WYѥ��\.��7D�Bħ�Ac����rW���(���px}���6�
�G0�<We���pP#�k"j��|��@��S�?�F4�oӫ��P��u�}~W����	��bJ<V�ot:E���x�K���F��_8����J#�<�ћɫ��@b��'W�l���;uxi�p���DH�$�����ot�w4�/N� �&�rS���ܩ��98����l�	^���K�+��^��66��wv����ON��/.�W�7�w��O�/�o��`8ǽ(��"����XH�{�s/�0(�tF��7�{�t8�{��mR�Pn�Et7�=�A��A,xBP��f�c��}�$����%�(L���a8�5��w���:o��l[w��������C�Tk���P�@f<P	l�I�y0�O��6q�$v����
���@�r�m��[������6,��’	���ê"W\��	Ss)�,�#5T��	����Ƣb�ҶS�(�*͓˪���7��Xa��G�<@JɪTF���`���Vw73��OPK`x1\A�Gt6t6$plugin-fw/assets/fonts/yith-icon.eotnu�[���t6�5�LPl���yith-iconRegularVersion 1.0yith-icon�0GSUB����8BOS/28�K
|Vcmapнp���glyf73K�(�headd���6hhea51�$hmtxs����loca���xmaxpYV name��	f0�"post[�g23 �.����;��l_<�ݠ3�ݠ3����;J

�
,DFLTliga��fGf��PfEd@��.
�����������������,��,
���$���������PR	",.54.
*039-(
8:'2)6#/ 7%+1$!&�=��������	����������"�	�	�
�
,��.��5�
�
4������.��������
����*��0��3��9��-��(������
��� � �!�!�"�"�#�#8�$�$:����'����2��)��6�	�	#�
�
��/���
�
 ��7��%������������+��1����$��!��&$6J\n~��b�B�n���4N�2f�^	�	�
.
d
�L�$��
�����8t�0���B~�+/?CSWgk{�������#5!#"3!2654&%3#!#";26=4&53#";26=4&535#";26=4&537#";26=4&537#";26=4&53'#";26=4&53#";264&3#";264&#3#";264&+";264&3#";264&�+��+r����GrG�����((c(d)d(\'
T

-

M�dd��dHH��d��99�+�****dd�dd++y���%77����d����%'77���s������	j��������%'7o�����������'7'7���������7'7'7����������%''	���x������%''7�����}�����#/;GS_dhm�7#";264&3#";264&3#";264&";264&#3";264&+";264&3#";264&3#";264&'?'577#32#!"54;7#"3!2654&t66'+�66L�LQqba�&4�<����MP/�T$����Q��
��

��#',15<@Fdhmv326=4/&;#"3!26=4&+535+53%57!5"953#50#!7%35>4'&'57&'5#&7'47&7"264&"&462����=  �U��Y��;  ��9��

	
	
%



$				,6��	4�  <�yx�ӗ��  \ e			B
�$$=				#'+EQ#54&+"#54&+"#"3!2654&'3#'3##%3;26=;26=3##33535#�UrU���V�9UrV�9999��w�ddd���))((�999
#'5CGKe���5#326=##5#73354&+";#'3#73354&+"3#5#;26=#'3#73#7#3#%35#"3!2654&#5.'75&'&546753&''54'69r99�99qUV�9UU��	
.5�E))))�;E(((�w��w���	
#	$\	9	#'+/SW[u3#73#73#73#3#73#73#73#3#73#73#73##54&+"#54&+"#"3!2654&'3#'3##%3;26=;26=3rUUV�UUV�UUVqUrU���V�9UrV++S�w�ddd���))((�$-CYb!"3!2654&#!"543!2"264&"&4627#";#";26=4&#53264&+";264&3'.3�<�
�<��""0""y		"		�		"��]J��

��J"0""0"Xd	H	e	eH		e	-RZm���	'7������b� �w!".4>2"2>4.'77EvEEv�vEEvE>h>>h|h>>hQV?jEv�vEEv�vE�>h|h>>h|h>��N9���7'7���0��~+;7"&=46;2354&+";5#"&=46;2";26=4&#A�&�&&U)�&&�&&����UU&&�&�&�&&�&1����''7'77����������������'���V�����V��V#'?O46;5#"33#%354&';5#"&3##5##"#3;26=4&+"&=46;2&1
��$`__@r=&$$&�&&
���&7_�$��$$&=r&&�&����#/;GS!"3!2654&!2!54!"=!'3#'#";264&+";264&3#";264&3#";264&�<��0��8�<�f  �<o6���77����c ����#57'7#7'7'3'7'537�)�+KO+�-OL)�+KO+�-OO+�-OL)�*LO+�-OL)�*L
	7#'77��z�)@B?��LB�y�@D@�WKD���':KN&'&'#"'327676?"+32654'&#"67632&#"&76�
),;4 +FN! +-GA.'��

%�i(&=@.,
$,m��V&-IC'	%>;�#2$*
 %	#$

i%		$l��%+'%	=P
���$-6%"'&'&/76762%2767&'&""&462'"264&GA.'-Z�Z.'.A�� ,E�F+ &-I�I-�%%4%%z %		!<=!		% �%+*$%,+c$4%%4$`
��15Wco|�������%&1#6765&'&'54&+";26=3276767>5&#53'&'57613767167673&462"'"/&462"&4?627&4?62"'746312#1"46372#'"&%32#'"&463327676'5654&"+"'53'2#54'&'&546�



\;U<!%)���C0/?E	*B
	!�(�''�()z)(R

�9989�
&6&N�


|


bx\	
2	
	a)w))''�''+8	6hB#

	&&&5G
�


 (1:!"3!2654&'&"'&"7)41/7264&"72"&46�8�GX�fq���sNQ�$$1##
�8���FX�f��p��qNPr$1##1$\3#3#!"3!2654&!��8��-��+*�|�8���8!!".4>2"2>4.3#3#EvEEv�vEEvE>h>>h|h>>hLEv�vEEv�vE�>h|h>>h|h>d+*����%(BV[7'75'7/7'"/!!3''#53&'#53467#5365#5#!?67654.#"6'�/##/#/m
H��$]	N�..7''[.2d$#U�E	*&5)�GE�.
^
/B.��	H�eX3NS1��!,	.d�9w)5%'	4GF��#3@#54."#"3!26=4&%4>2##!"&=463!2#5&5462�(DPD(*�� 7A7!���		*�
'B(D((D(B��B 7!!7 B�		�I
??��#8J%'>54."32672644>2".%.#"763232>6=4&"326�z<ewf;;f;)Kz�4XiX33XiX4<A&.&%5	zK);f;;fwe<z4X44XiX33X�#
d				
�'3'7'#5#!"&546;#"76754+5325"/3!2�VR/�<�������	���RV0�ɑ��

����ř���!5�**�!!�@`iz75&/&'&5332654./.4>753+'.#"#".4>2654."327&7"264&"/.62762�	
!
'	
%6!#>h>>h|h>
	Ev�vEEvE-,O%44J44/	(	�	


  		
	

	e>h|h>>h>#"	,.EvEEv�vE
�4I44I4H3	+	�+264&"264&"264&"G##�$$�##$$$�-Pl'#"';7676?676;7676'&?676;7676'&'&+;7676?676761'1&'471�l9M
			FA



M9l
��	
M9l%.]�		
_B		9	
#$'�!Y ^
_ Y *��_ Y$!/#�e�S
%
��*3<EO.#!"3!2654&'#5!;'+#53264&+327+53264&+327#3##5�/��r$,��T�

#{!"}.,,�/��&,���U	���%c0!'
.cH<O'c
���#,5OSX^264&"72"&467264&"72"&46264&"72"&46#54&+"#"3!26=4&#737#0+53V'�''8'' �(	Ay�y���zy����yz	((E'8''8'j  �((E]=

=
��ո�����%##5#53533��*��*����*����!!3#����!7'7'!2#!!2>=4.|��.VR4A 44 ��c&B''B�-RV65@ 4'B'@'B&��+7'77#4>32.#"''7"&'732>53KG35B6]7<dW3/P/�45JG�<dV4/P/6]�I53-7]7A7.8/P{53GJ�A6/8/Q/7]7��#!%!"3!27632'"264&7!!�V�8~���g�!//B//?���V����8�g�/B//B/�S��+LQV%'&'&'&/7676?6767&'&'#5.'75&'&546753&''54'65&6'-X

I336&5�I*00*I/*CC*�

07	+?Yu
')$$
uY?+
P�[55[� $$ �
&
'a 
;	��%'775'7���������������'7''7'W������+����Q���U%#"&46;2'6=4&".';264&+"'4>726=4'''.#"2>54�		!:d<8_<:b;'F�)>�<#W0EvEEv�vE��6?<f>7[7;f>		�-D> "Ev�vEEvEJ�!)!3;27653+"&5!3#'3#335#3�L#�#?�6ya�����**��  ;����;WW!";7'7#!#32654&�8�.RV4�ț��81UR2��8�$*04?V"2>4.4>32.".%7#'>?'.54632"&'7!?4&'>54'7FuEEu�uEEu��>h>K=*2;4%- 7JN!&0�+ 1"(
J)L,&3!%>hEu�uEEu�uE�>h>..0)E(O|%
RV
7$
0	%-��(E)7U/>h>
�2=KN7!27654&#!"45!2!!."#";267!264&"&476272?>/&7&�
�L��G��$A		B#=��
4MN%%�
	
��		�d	�-8	c	Q����%&"3!264%'3#53#�����%�����
	��JW+���$&,138>@�I"2>4.67#='#&'67#63&&'6377&'53757"#&&'6?64/&"&'6'54&+"&/&"";2?67;26=6'672?64/&'677326=4&+'#"/&/+"&=&75'&/"/&4?6?'&/+"&=46;2376?'&/&4?6276?5&=46;276?6236;2�#;##;E;##;!U!< TT P"<!Tp	
'
		
'
		
'
	
'
	

	

	





�";F;"";F;"T:

 +


 +7

&

		

&

&

		

&

B	









	�<B676'&632#"767654&6327676732767676"767�$7=J=		"3
'-.	U&6U85-!:'	��
E$A^QATG.+ -` 
'&,ME;c2�"A�				"	-
+6a	t	�	�	�	�	�	
V�	&6yith-iconRegularyith-iconyith-iconVersion 1.0yith-iconGenerated by svg2ttf from Fontello project.http://fontello.comyith-iconRegularyith-iconyith-iconVersion 1.0yith-iconGenerated by svg2ttf from Fontello project.http://fontello.com;	

 !"#$%&'()*+,-./0123456789:;<
accountingarrow-down-alt
arrow-downarrow-left-alt
arrow-leftarrow-right-altarrow-rightarrow-up-altarrow-up
bank-checkbankcalendar-addcalendar-moneycalendarcash	check-altcheck-circlecheckclone	close-altclosecopycredit-carddragedit
eye-closedeyehelping-handimageinfo-squaredinfolist-searchlock	magnifiermail-out	minus-altminusmoney-checkmorepaypalpdfpeopleplus-altplusreplyresetsaveshield-moneysort-altsort
time-checktrashuploaduser-offvideowarning-triangleworld-settingsyithPK`x1\R�m�

3plugin-fw/assets/images/ui-icons_222222_256x240.pngnu�[����PNG


IHDR�E�r@bKGD"�b�	pHYsHHF�k>'IDATx��{he�}�?g����{��1)�����]K&qq�U�4kbiK�R(H��B��P(I�vJ�_��ӮIV�@nB�5i�N��iG�jq�&
~A#Q����rX'����9�:�ܫ{�3�E{�=�y�o~3g~��Mp�&��1Xxh8<�#dlЅ�Mx1�&��$�5~��V��	��c�$�ױ���,��	��ƹ�i���N:�Z
��ߊY���>�"�B��H!�������-C�u�8t�}����8�!�B��	*�OF�.[�aͲ��l��B&���1h�>��M]hN���4MAb��̐!(�hE�1�5jձcO�<6�e7�,e���S(�f�o�16+3�y
JR|{�^3�^����{�88������~'����pxh8<4��
�g����������2�n6e̘�����{�����Q����pӀ��P�A��iۺߖ�f�S����(�D��'�L�6=����T:s�f�q��羀l��.c�I
���ǧ�=�i���M�>��ڠLN{U��&������&��{u��o����.�.��4~#����pxh8<4��
�g��Û��p���^i����/�0���TW�c����Q��� �@)��y��u}`L��Uc��%T�������ȥ
�A��R��@�?��P�-`����BKl�
b����Z}�������Ш��͢uJ��%U�]�K2��e
ts�Y���@,ee���豅r��jcܭs��M�n�0
A���mP��y
�D�K(5�,�lN�&b�D�m�rwYDV����t�e$��謷�
�L���[��C��0O��	P��&��0���+�;�
�g���3@������pxh8<4����Y��`��O����F�Z<��h�\J!c��`����j
�;TK�Vr�0��ʹqc�cGz�䟾c�[ ̕P5�t�h�)���ti���З߭ty��׎����&��M/Е����S���u����@��݅���n���b�9��`y�9�󉡔�Ya�SX�0e���q�J`nB���g����b�����3���4P�- k�**�@HC�z(}�򯂬�U����cj2��=��Ob����3�
���R��05���1U�\8SMi�U��}���΀�l�Hl�N�
���J��q+%e�7s���"�<։�ּ�z���M�L�T��ƾP�1f�1i�Ѹ��Vp������pxh8<4�z�A��+ o`�I_�R�����~�~��f��սh`�Ic�K�h����Q�p��xx`=�j�`]|S�B�(����(��v���F3�4v�؁6��T��4
���5���:���*��-D#�n6��a��J<U���~�y(�1��(,�|t�z�}��d��j��0u]PT��-D}@����
�n�+[�Ύ� A�B�T���(V� K������BT<𑹗[F{m��=��-�ڤ����$��.��JR�U
j��:X��e�n�e���bՅ��"C	��e2�@�Ј�݂�	�Ѱ��xxh8<4��
��1@kX6I��<��M*�Љ�Ѣ�+�b���04(�.�M3Z�<]&i�UuY�a�^2�w�ͻ�ɨn�U�@�n����E�4
���O�Us�.J���}��dw�Ed�p��� �me^f���mF
gg�����T��G4�Ѱ����m��������N��է��N�c�����������5�L�xi���D��9�|��%ܔ�h�P=�áb����o�p�VBG�X ,�#E��+�\�^��oʼdM��ɳ]�d����.�@ 䮚��D���e��FU6'g6��)��52p|��f��X�_a�"z��x���� �w�.c�t�
�
�g���3@ñ�`"�i��K�9���s
D07�
ӕS��E�oC�Y�Z�l'N��~_Sƞ��y���a��xK�������z�-&|(�ϜC�K�����Xg�d����5Ig��8k8YTL=�,/
]s��w-~��t�����e�	^�~�&6vh�}�Զ�:g��?m�bG!����1�:O8���]�%��2�����v
�E�@�5"�6	Y�rXcRb��ݎ���E%���`�#�D��r¤��Z�:�ϛ!�x�R��h�!��}v�۴��ϳ����x�y}FrA1#�*�u�T�?>��!�x#�~��G���k���@3K@�:>P�R����M�A|��e]K�g�F.B����t�l�OY d��!(v�V�X��%m�#��I[RR�`2�T��	��H��w�Y�u=��b�YPEc�U%�&@�Ĺ�]��}�q���o7*�G�L�
��e�QX�5�U����-����³��8| ���_�ݟ��5\�5�p�VH^��\
�Fآ��a��a��5�l1�4[�#�b�o�P�1�E��is��wMJ'5�T���06�B|I�,b�����`�ՈP���X�k��B�$�[��-E�OHt�|�3�D�(i��d9�N6@x/ؠm�(�#�wj�P�t��/Z���obq%[:��3^�~a��5���5���|E닃�^�E��$�L�-���_s,
߫��㕔Ņ�&��
�_�,�������#F�}����&���.��<4��
�g���O��rdh9�����M7L(5꓂.���?M(�����stզ��-?�:��[ڧC�r�]�'��YB�2�l�C|
l�eXS��pG��0KcI��~�u�L0/��y�Lt�r�I�?�R�%�����-�w�Ƿ�h��$L�J�V���Ϳ�Ӣ,���g�
x�_7��l��4�*��u�M+�@�x�<}���q>��<�#��`�i�
:=��*��ۿ�{��)��_�8hs���������p�CWғ�K�`B]H��"}���_P�N���t�Q�l��1Y�Q�h+����&?��x�5:�	֘aY�ҭ���=\��En������.�Yʸ��J���E%uTj5�����F�'�����b;[��v�ט4�u��6]�lkw�3�÷���,: �%&��
�[|��|��|Yi�q`:�����qXc�2+u|~/�wrz�[j-�I>#���,�9�Q:�#,2����5@�@%��S@@6ÅJ�{��6��{��)h���W�~q]����t��<�+|�'�0O�a����6���3�U��HW������l;�����'�Z9�Z\�o��O�嵁���e�e�Ƣ[o��da����rEm&�ʧ�������3m���6��=�g�^S��x
Hj���mi�(v��ۈ�{.�h�_���%�8��nF�7y{����O���FS5�:����/��ա���W�P�H+b�����Gx��/9��I�Yy�.����M�t�T�eە,�ѿ�-�R���e�d��
��;�Ә:�9k��T�5��m���������E�G��|\Wu���ǣ��@^L��E�
��4��
�g���y��;
J'U��䐎N׷�<�p2m���ӫ��.Z������Z5<� V
,��p�3��w�=~�3j��ǿě�#����ʭ�|�S��f�yk��=C�n1]�C�'I_O��*,�J՞�D\\I���}�E�\�$�M�(�E��\�߮�?ƫw
�����NJ��E�b�6��t�z�:<��u��d��k��vs!��PfM��7dT����3	��*S,�AZl+N����l�R�&{�I��T�G�O�*�M~�;�����XFS��j����^�Q���N�n3�Z��0Ne�R�]�3�8��<�$@�˜c.�t�=�.{e��'�TI�s��u���>-?B��p���?��X�J	$�x�QJ}�!#��Ո2�Ht!VɽV�\'��Y�3�6����6Yu��JOAa�[5e���]p9=7����t�_�y��?�OS���<V��q.��Ի���;�8�~��YE����KSȀ��Xjq@M�
���/�p�X�۴�[�S��c7�'S6	�E� ������_Ձ'�_��)^3�b�h���+Z	��"rLz�ZA��#��[��'?�Z7{mZl�Ӭ�Q�De+^��o�*D��g��r؈;/�."�HF�Ƴ5�)F	��2�c.�W�~�`����VEl���6�R��8ظ�ky�k�.����`��Fp7pps"�"��KR{(us�[�%6
u�s�ͻ���,BD����/�ȷ�_Pt?�Y�Vy�.s���Y�3����3���\�V*#��y�f2j��g���A��Ѣ�
�g�-�5����Fh�-1�9�v��<�s	�����m�� =/�_f�WX�M�&�לi�†RvٗQt��_��"����Q<�(�1[��_~��b"T z3��sxh8��������p�`Z�/�NΧ���F��{�"p�i`��
�gsO��s�.�G}��t<��9�ug���g�R`���&��X�t�岇�}�	�����7���2J�X�e\��	08j=�XJ�Ql�l���x�6z(\5Q��I�=�l
8�7Ɏ��E�a4�O�;�-�M�1Iy�vV�y^�b�EN��sQ���Cw[
�2	��V�Ǽ�	o�yw�7J����K'�Tu�l�>_�i���T��<͛<�iM
�p������7�YMW���=�ӡl(����u�+���^j��>3��2N묳}��jH�Q
RT�Ȣ�� ���n�fݮ�~�+��c�iQ��<
����Ma=��|�*����
�$@'��Ԍ��ǕqUO;�5~@��eI�2��9�w��"��O�~��s��s��k{‰��$�m��>����v�z��^2���v�ow�`a������4c��M C����b�>����q:��o�=�-�p`_2�ng:6K��XV,����2�Ǿ��6��
�g���3@�� ��ś�sa���R��WWB
g-N�;F[��Ւa�A�V�L�F�<-m
VbMC����7���K)�X��P�y�
�s�~��=�����<�ܒ�{�x!�=����Ãq�R��l�]���/��� 0�l)'�}�#�^tX��孋�t�8FC�Y�$)�PUBE�(~��Ҟ��V�2^��*SL�H�l��S��'IA[������Z���x-V�"ȥ�J�+���\�|�5u�W��nLJ�k�ܟ���(0�0����JyꞄ���a���f��g����6��
�g���3@Ñg��[�}��Z����Q�k?ҳ=��z�I$Т�:�9FW��m�x��:\(�W���+��e���F�9�,��*�!Gh�D��L��8�[v��o����)�A�a�K�5�S/�)^c����(��W�H�N�W8T�r=op��p]MC�O?���*��
D΢Ob/�hs�0�ڜb�9�1C�9-����o�ۿ���ԗ��u���Q��Fc���|W�%@�HB�2�9�����/Dx�D`�U:�Ƈ�gi����"`�%��ᄽ
������t
�E`t���6�2k�)P�E�ѿO,�?�k��_�yh(/����=@��u
�g���3@������v@]��<���]���~��WD�`��.��f���~�o��ʈ�N�VA�߈�ե�M����
�^��y��M�Q|��ߛ^-{o�~��>��w���Ѓ
��(��g��X���ץ�i��&�X
u��D�U���͕l� ��ғޥ�ߞ���k������PH�H�C�J�~��S�@O�� �׋�ѓy7���
�k {��25���of����ϫ�o���{��'!�'��Z%��q�*)�g���C\���#��\���'�0���P_���WL��7��&AlJ���\��� Z��p��,���Y�x��j�c�����O�(6z�I�V�� u�:ג��T��D��O��9�ׄ�Q<��*y
=���2��~����/?J,����WJ�Q�W�>����W��u�?��#G��/���4�"�K���{㧏�',I��ҟ综E;���|R�ݠ��~��W�7i8�6����pxh8<4��
��r�<}8� kG�o;��u�C��P��v�)��A�<$��ց;��{l��� ���� �#`�F���C�!f�	Ӆ/`7��(��0R!9�9�z���@%!/m�]���Ad�hv�G�����3@������pxh8<4{���P/ 3@�}��	B&�^�16�{.
����ߠa�Q�o
���2l���mt���!\%@�X���?5��ճa�~
��ʠM65wk��a�)T��F��_�
2�$�x�5�_9!�VxRd�1!}����'�`�$���Uԇ��r�?�	�Q
�`7`�.��k����_V����zԄ��p�]]�GO�LXCk�3�%tEXtdate:create2013-02-01T05:33:10-08:00)`��%tEXtdate:modify2013-02-01T05:33:10-08:00X=x.tEXtSoftwareAdobe ImageReadyq�e<IEND�B`�PK`x1\���*plugin-fw/assets/images/double-sidebar.pngnu�[����PNG


IHDRK2i
�ptEXtSoftwareAdobe ImageReadyq�e<"iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS6 (Windows)" xmpMM:InstanceID="xmp.iid:27C197D68CEA11E387BDBAA23E7E1159" xmpMM:DocumentID="xmp.did:27C197D78CEA11E387BDBAA23E7E1159"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:27C197D48CEA11E387BDBAA23E7E1159" stRef:documentID="xmp.did:27C197D58CEA11E387BDBAA23E7E1159"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>O2�+	PLTE������������tRNS@��fIDAT(�c


Y+@\�Q�Q�Q�a%x'�T�
u�IEND�B`�PK`x1\���7dd,plugin-fw/assets/images/colorbox/loading.gifnu�[���GIF89a  �����������������������퀀������㸸������٨����񱱱�����������乹���綶�������XXX���ddd���VVV������qqq���}}}��۠����܃����������恁����\\\������```yyyYYY��ͣ��������zzz������]]]������ooouuu������nnn�����▖������ґ��������|||��������������ǿ��vvv��ԛ����Ƈ�����������xxx___rrr�����������ݕ����Ë�����ttt������ccc��ј��������kkkfff������mmmggghhhaaajjjZZZUUU!�NETSCAPE2.0!��,  @����������_@^@$3 �*��B�&�D�,��J�������=i����,D
G�
D���̜V;�n4K�F3gC��ئD�*:BKK8�E�JJל�
��EJ�"vM	�*\ȰІ-+|1SR��3�L��&�/Kf�%Ƅp�	8�`-lfLqa�1��8 kVONEDı��DNƅC4		3��s���y�<$k-�20U�8��C��T�	�
0�jf�ۆx�&!�,��������Vg?5��J_]/e�i&�L�9J�q%-.��x9�I-LX�J)]xW���Z7	9LTupR�'7X3�b��Y7-VӉi1��Jڃ&PM=��$�+b�Qf�f�H:b�PQO��
�RHCA
b!��T,��6�@��@!�,��������KpB��7pj-�1D�	pvL�r!Q�)�X��GNhrV�eJK.�`!WWsw+`&�B`e_M*;;�T��i��Gkܑ���1==T��QV=.,�(k�Q�O��"DtPpЀ	
#J��a� )�q�8B�!�,�����$���?sZ��J!?oW��?w-�=NU5�e�_��+NFF>�I�I�qo_
VYNca&$@^dMx <T�GYU`�&�a Z��k�Z?�;ډ*�*��
TD��
�;6�D��A"G
R�`�J�H�� 	��A"�h?�XT��_ !�,�����fQ���M9SP���c9@m�J�`3@r��Jc3g!�G�H"qH�U3^lK#-,�(+BqYD.X9Q2/4�V[Y=�b(�l�4V�G�[�+<h�D
��:d��
��p��A"�#�P!�#J�H��E�J,8��ŏ�$H
!�,�����G=>J����8_).��'_	l*���`�
�(>D�A_Xc�No9b�RM*q_%A�Nv2�=fP0r_>t�]0�Td$+5�
�*Ij2<I�d8��Z�I��df���$����0��� 2�pJ��,j�ȱ���Gy�d1!�,�����EE����>la1���Ba!"��J�N�1Q�D��eA�Y#oZ�JiVE�ZaeK�6Cwt!*�;�.
1lI�$#�p�,:=;��lotF�5,�Puc��VG��
��rt��(��A�M�ԙ�@��| 	�@м���J���Ǐ C.��1!�,�����*����P���6N��*6UB�*H>��*�"�9@M�(;
$6nZ[\g#`�*
D&T;A&.�#?$�Db;�A@#CN��,��#sU���0=������
B�fF�
zB�a	%	jA1AD���H�Ca"�<�I��I^R!�,���������J;J���TMB1��Q������VM[+�GZ_	8�
E�0M8�)XLU�D


QW	L3.�DD��K�\6�
G�RL\Y�GƊ50���a^L>*E�+2]]-�۷�� X�fʍ{�
P��ŋ3P@(!�,���������,Q.���V$Q��
J���8a!��VV*8IeWq��,�0f�:�W7��
��!W)[���V�֓�Jk5��*��n3g%N��t�pu1��j�jt:�'�H&L"� 8�C�D9q'aV ���� L9!!�,�����*����(���1�,��:1�dY'&���5T='Uc$���&:6�`5��J�$NcIMƐ5Fm+Аk���܃,)%L`D�[##?�U�o��U�
U--RT�ǏP'q�$D�8���F��:��@&�!�,���������J���,DD,�����
�JHV���DbE�1Z["D��EDGb+Bqq����0�'R���"A$��(;���

���"!WU��ZL9�3Y��O@��Y���Yr��F���y�T�IS��.2�4���.>&hB�"	�J��qR�!�,���������J*��������,�ET���D(.$$�
��E=$PG��*�fPZ0���bOVJƼE�͏���Ona`q҂WW__[�P	���`�[��J��55넞��c��$]����]��RX�&�X�!�,	�����
�������,��:;��;10>*��,�.;���
0H��
�����"Y'M�Fca�M�$!!h�+�ZNN+�����dV܃Zo?�*epwsAJ�N>Mppu?k�Y8�Oʤ��E�IV.�B�/2j�!�,	����*��������G���
D
��DD&
�������&TD���������=P+�i"q66Y5�VN��i�K$G���G=>݃+@3qܙ(,J?g\"�gw�s?^\R$58�!DY�ya�⑉9lU�3���:4��Ç�G�d80��ɓ�!�,	��������������J,��
���D��DD���
�����J��T==b��PMM�TB�B+G�dM+��*J*�i1J�	_Ɛ*&�`3X)O�[2?:$S3%)=�g4<I���+qb#	C��t$˔f ��� �n�|�!�	,��	��	�������		E���
��*�����*�*
H�0QVVk�bf�f:,�:.di����1��R!a�(�N_emJ�pSk	)_rmi�\]F�O-�[�^�a�)Wd�l]p8�8��i	%*\!�,	��������������������
������EE*�(&
�1�1�&kkb���(�b;�VUY�G�Z�;D*"anA��d?Rs\:QmalH�
`B�%tC'*h����
~Йc���I¤I���0�(1�퐀t�<�d�K
�H�@���@!�,	�����G�������*��E����������
��D�D�����
E������D��,P?�1B+5J�jU�
�6Z>�.] <.P@-H:�O&�@oO7#\�RYK>��L#�8�t�̉b��&0�"t$� ':e	H��d��I2!�>,	��>��>���������,*������������
��>��
,��81�*
�% 28�;$=��4<�(>.+8&�>'4/=>	!>+�&3#�!97�0����79)"�5:*�kacЄ����ŃM��$2j�!�,	��������������������E*�����
$k�G�-/pf�1�Z<26
�k=5T�Y2joQRen(bf=>�(X\PJcWI8�TR=kՊGhWmZ�*
H
��mWhO��`�+�Z�:&A��Q !�,��������������������EHi���&h	'�����Q�G�Wjo$�DD�husK�
�D;bD�$�og=VnKEk��Kto#O�'c'�D�,�b_9P�ncA$�J
!0�@�1.ē$��'f^�x�ᕀTL�ȑc !�,��E����G�r-nK���#  ��VL#n����G���fi��!sg����as#SO��D�ĹC�X05K��D,�e#@9$Bqk�
D�B@3KqOϟ��1kJ��P���`AO�0���5d8�����!�,��������������������=^Cc�^�d�@//<.�,Q	S�J��.:��
aSXV�
�U\L)G��-e�Q���aL	W�*P.b�
��	_�+P���T�PPR�UR�"�XAR@ӄ"J�!�,
��G�����QS^l��\]<<V��,9jjd��iW%Y����VH*��-e>��G6)mR�J��$7hlbi����ci�QQ
�Eтhad�.QT,�J�;&�VQH걂Qk���o���!�,	���1&�����[U����XN(��
$��G*��N3@SF��Rttpp$��.o��R�A	X7qG�JG��>;΃"mnH�mFA0�J�dIFK�(E���*KFN6k&D�E����C�

���H���8��o�(�`�%B�!�,���������	��� #:��K I��
%(��>���G��F	L%N�I?�CCM�F@��$�&F!B������GH(��&�A"OHԃ
��>'"
�"BM�,9��"
O�h04`�@��!�@�A�#BJ8
0`�ɓ'!�,��������&#P���Y/4]:��B<xK��)<vV��85����7_Y��n9933\�*A	��.�b'aal+��GGŏ҂GfO��dZD�DRi��DfVE�Jk>�*�,��	`�€�}*L!�,���������X@���"j]1��Zpv][��pt0��R���G��b"`hm[��J*6WW_77V�*!��Q��EB''q$��*�����
ɇiR>�k0T
��=0k(ыG�G>1�0��֡��O�b8�H	!�,�����V����N	b��T%\8�g-���6ouo@��Cotw:a��hCwp6����sf��V*�Ã
ZUU�Ocaa`I>�MN���,V��J։J
�;H(G�
T(���dG��!�@*
)��/��{�:`�b`�@!�	,��	���	P.J��V;�A4Z��*"^Sf�\ '��e@#g$�3���B3@?^1	+p?D�	F3gCK���,l3S.ŋ=ĩJуf[KK8�Qq6YY'H�iB���G>$$k��JJ֕*G��Xi�O"�
N�����A:�+4�����1	B��;PK`x1\��hpp,plugin-fw/assets/images/colorbox/border2.pngnu�[����PNG


IHDR26�597IDAT[cd```�Bf da`e`c`B������	'1�`�	��~3�a���!\�F��IEND�B`�PK`x1\���*uu,plugin-fw/assets/images/colorbox/border1.pngnu�[����PNG


IHDR2b��H�<IDATx��1N�@��]�$T��{�p�W��!P(9%��&%g����$3��o
V���l��;�ݯ�g��̺r�4�>�&�������Ds0�Dl�k;)�#|�LL60��I1�X�-b��R� E�H�`~t�-a'�왞D�|ҙ��9D)��$ vJ- ��O6Rr�j-A`��"��	J2�3��k|5{5a"V��(��I�j:<,�i���_����+I�1�EX�R@RM����۳0+M�4²$��Wi�1'a	�Ѵ�D��<>%�v��*����$)@��0G�,�G�X#��>9��xD��r����`aBH@(��^��f" �����D�ٯ&��8|tH����$��¾>����d"�:�w;vl�@�B$�4���Qf�!���exw���.��+>Fp������/$�pb*ܠ:��(��b����~�AS�!�*�&��@�@�yd
�)�%��@6@>o����H� A�	$�D�]&��2�a��s�L��ef�Vd����_���IEND�B`�PK`x1\P���&plugin-fw/assets/images/no-sidebar.pngnu�[����PNG


IHDRK2.���tEXtSoftwareAdobe ImageReadyq�e<"iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS6 (Windows)" xmpMM:InstanceID="xmp.iid:7FEEC4A48CEA11E394E3E99B3656B41C" xmpMM:DocumentID="xmp.did:7FEEC4A58CEA11E394E3E99B3656B41C"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:7FEEC4A28CEA11E394E3E99B3656B41C" stRef:documentID="xmp.did:7FEEC4A38CEA11E394E3E99B3656B41C"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>X��PLTE����a6KIDATc`��&��lIEND�B`�PK`x1\Դ;WW3plugin-fw/assets/images/ui-icons_888888_256x240.pngnu�[����PNG


IHDR�E�r@bKGD�I�( 	pHYsHHF�k>tIDATx��{le�}�?g�
k�u��J�>D�C�^�Q���M��H��*MU��
h�(*$H���R�*j�	�D�]����)Ż(M6��F�6!6�-
�xI���i�-�� HN�8��s�uι��g�����f����7��3����ƣ��7�x^/2&�v&v^DL�	l6I�-�o?��cn��D Iy�e�#d0+�0�3��~�����0�g'L�V���[��R�C:B�~(��)$q�vXu�B@��E@`H�NG��`TA�%=]�qAw��J)��u)�9�:e9d`V��0�A{�=��BS*�ڦ�S��gFA�-(D��R˷@�"����g'�U�,eSwʿ���j��*�)l[����.HLyϰ��9�����j�a�I6��MR~��~�nG�ٕ�3�
����@������pxh8�4~=@>���(��mE��3a\`~��=u����Q����[�f3W��A���i��oK}3wէ�gV�����,j���n2��*ߕ���m��M�]
y=��xn"�co�.�L"�7]��EC�:dHz�E@W�.�f+^�eƦ6vռE4��O���`��̴�.�)l�:��7����){�_Я��~"����pxh8�4^/
����/�#�\@��S��^�T�0sZs1�J�1�Pr��h�w�V��E�g���S��T��Q5�[	\B���O
`+�˾>}����\�6��/0��k�g���1[
�Kh��l�Xʿ��_�Z�^IA���^�N�4v���OW=%i^�<��9�t�f �2����С��B�Hg�6���!u�\ҭZ�&蒶�
�2����s	���U�]��i�T����� ��]�Uaq;]�A
�:�rG-3�<F�n��*�ݴ�T�ݯ	4<;�������@������pxh8�4^ysh�,ux��$\j��"Z-�mo��SJ��9���{�
���e˹[
�\�fָ�ұ��y�2LT��0�K@�9Լ��Ţ=���?Х��B���=c"��v�T�6
Tokza���9T���s&�6��ո���v�� }3�':��[�5�)�,�xU!��҃@}����U� �kc��
ꈡ����Y,]��`&߬('u*�^�v	��O�wu�?}2�&�C����Ȗr�}ݾ^g�[`�yc*�9s�"���f_��b��
uuT?�M���f�

e���ۏ�0e�vb�c�J��EM%�6���Po��l�M`n�~Esչd�j|�z��)miOq/{�ک��Jq���A�G������pxh8�4^��a��+ ����ʥ�5�݃F�����+��Y�&{�˾���I�
�z��\e�X�����oJ}Hȯ�iW��)~�n��m߮ɞh�����l*7TP3k���XJ7R"�����"NX�U�}ٔއA���/(qW�\���v6�$2�
��-��˶Ezd��j��0u]PT{�[�:>>�LDkZ�Y���ֺ�14�ZC�WU���b�d�12zB���Y�$i".�~A�i=�����Œ��۪>���E��AI�b�\Ϋ�������
c6��O�SB\��ɅJ#"�RE�Ȱ_'�I.�aluI��������	��YX^/
����@����=h��$i3�7[��d:Qu!Ztw�Ul�~F��Ż�b�k�K"$-c��.�3���@�,�y�;i�-�JӉR�޽H���!���ɷjN��;��Ldw�Ed�p��� fO�,�j�T�q��������+
򩸹�h[@Vef��6KV��x��\�b���|���l}_�$U+�W!��?o[�����y�B(�p3
��r_�5P�2ݚ�la�˱*�x��GXG$�`�W~9?�r+��y�-k��d����.�@ <]�����#<R�y0/��99����T����^w�
����.�?0�ꠁ{�]0j"<�v�g��Qxh8�4^��$S�L��@����oԆ�5	�l\q+�VN�!��߆���j��L�b-����=UK<��׳�6��R���?S�j����b�s�'�\
>U��\Z,��W����4Ig��9��L�1�sa��R���O�^�.�P����(�>�K��\�c�6m^�um
��Ql��g�"�y[ө�D�/����[V�*3谨�X�m�@[�q�X#r,a��5�	kLK"0���񢐻(����q��A�O�VP�U
j�(�iJ�l�Wq���l�i�����x�S�� T!s��XD@��s�9�k��y8��\a���Y���"�r������v֗u-	��v!���H�
���
�4<��@��(B$"Pd�V�Z��5Ɯ��	�ߦ�����s0k��B�5h$�=�dpϪ�_�@0+�����4@"h�O�t���c�ky5�v��z�K���\��1@ޒZ��]��B�_.܋ؿ�!�I�Xd��WpW0�Z%y9�s9�jaK���0��h�sN��,�lU�����X!����h�f!�2.)��0����� 6�B|Iq/�Ӽ��0�jD��F[,�5�
!m`�-������$�J~1w�WQ�J�D#"YO��
�6hV�Q��5C��t��/���7	�8�-*�"����_E�U�y0�x�+Cxg�h|����+`6H��i�A|]�����Z=^JE\`20
�~]���f 5X��`?S�0��Q^��?J�1�%[�Gxh8�4^/{��S�"��rؘ���ɛn�RZԧ[v�-�P����O��I'�Z~tt����O�N�z����q����g���آ�4��X�����ԃ,s�e��q�9
,2�)�^���Ķ/�����(��rS?�=<��B|W{|�&~�OO�������
�t�q���uZt�E��A��)n��7
�;O&-��+�D쏬iEcG����F�	?�c|�Ǹ��54�:�,lz��O�l	�7s��'~C���%B�f�2:`��ě਒�T��T��bjn�
F�E���,�,p�n��F4'өkLWr�"�P[oa��o��s��k�qNkҭ����\��n������.�Y�xS�V(A����q��t+/ԫ-�u�p0w�-z��4��ƴaY�=zt���n�g~��2�7Y,,耄��L
d�=|�|�|Y�p�z��?2�\���f�˼��\~'f�{�[j,�	>#���(�9�a:��,��وK� �x�R�.  ��B%�f6����n�ϻV���/Σ������� %O��+|���!��I��6���3�e��HW���O�� vXIK�O�rZ�8���g�g8=C��2�9Ǫ[�P��B'���rAmK"zʻ�!����
���m���6�뱾�3����y5����ܓ��"�[<
�J��sϏ��U9Z^��8_�fD!Zq��_\��- ��-`<uQS,�y����b�]z@h`�*�*GZ�����>��)����D�g��鲔��iqIb.JXT���bj�k�$��M��1^�K6�<��˿�9��C_��fr��E���M~���8]�T�xX��u5�_<���t_0PA���𶀆�@������p4O"�qGA餦�����v�GbQ��p�rz��E��3�3�U
�6����+��$�q?�W
1��X�K<�8�
���[����sC!��}E~5C~=C�n1[x�LO
��g�U�X���=�����̪�y�hs��l(&U�'/qg�v�|�^�8Sx(��o(�B�x�e�\�ӑ�����ľ�U��s���:�҅ͅ2k
W�!�B�Ԝ�i�
V���EO�f�X6�g�A5�kOد2���jS��6ۼ�[J���S��j����Q��:(���Z��0Ne
�Z�]L2�$����4@��8�B,��,�Nj(�t'�8.��JC�L�K�U���i��5�#�Xx�#|�U:��@��m��??d,^q5�L!�]�Mr��I4�pZ��;��>�g@��M�F�K�)(�}�f��U�.�{���]��~5��5������>�"����$c�����+�ן?��Q��c�#
�mK-6�)࿁���_�Y�n��G+��:�|a������"�~ϯ��ٯb�q�~=�+���,j�?�M��y
9"�y��D��ʍn��g����6-z<�,+tK�����xW"����'l��˾�H��[yJ�&�a�@�~/�9�"�a�%�$iѣ��6.S��8ظ�+y�+�*�o�jo�mp-���k��1	�u����%�=�����-�"�
��4wq�-��Ր�E���K
�|�Uf�G�
-��Ua]X�r���x.�\���˅h�:"����LF�dF���5p���f�覊�)n�Yͣ�n��Fh�
1{�'��\��<ϫlik)$H�䇙�5��%y�kni�b
��/���O���E���OjZ�<�,�b�������P	���p�+�@��<[��/
���#/�Z�wp6�$�5�D��E�����
���|6w�^>7��{ԇ�Nĭ��Pw���f�>��k�7�/��c͗=��cM��ﴯ߁A�E`�q��:N*��N��Q��b�UG�`��ʟ�Ƴ���Cᨉ"��5�w5�.��&�v;����.ܱ��7e$�$��y�K�YE<[�y�8����M
n�m%�U�4@��[��&����EC�(�.�/��b���C��>Z�1�_P�O�^�;�����!�N�wc��l�^���]`C1�L�����8GO{�
<��fpY�8���:�X�! ��W�Z���Vc��ʺ��b���+����_ݖ�fp9U�4��u
*��QD�I�3cv�1e\�ݎe�(ֲ$��ؿ��.�]��z�)�/�>�>.|mO9Q��HN
�P��{����;�=�YJ���7'�[��ɂ-����b<
Xӌ�2��@}�޺Pw������aŨ�M�	lqG{R\p��Dx�s��T3�X�ؓ����@������pxh8��ѱx��e l TZ�B��H�a�e�c��t*ZHF��b52�iiS�[:�DH�S
�))%��_rp�S���eUӮ@��*I�3�*�C�
3��=���&�&5�CB���`����Ê�,o]���~����]3�t������ح�jXe�x����0CTA3œy �5�{�t����!k@QV+Vr��
3�e!�̰Bː�ۓ��O�A����԰‰	#	���U4V��D�ч�D����*Oݕ��<:�Xl��Bxh8�L`������pxh8�4y0�؃���J��k5��#;��ǮD"-�鞺#t�Ln3ã|��Áysɩ�q�v��A2t�>�}�<���Jw�Z,ӱ:�-�*��%��A$-�lp�I�d���5�S/���BGs�iN�z,v�~�79P�r5�q��p]MM�O?�m���~"g�ǀ����9VhAmn`��0G�)�����ԧ_ԇ��U�����W�1}�3�y
A�����p��;d��U��>X����J��x��<mV5'Ṟ�a�0�Wa��s��w��A2�����<w�F}b@�`fQ���=�{Ɂ�h����s<���5P�ŏ�.�_�px[@������pxh82��P�~���G�Mt��M���-�v@]���ܠ�.߰�	�����~��K�9�4}��6��. �/n�:��&"O�'�"�'G�SH��;U�k�A��'��U峕_������4]|]̅�+%�w~�tUFD�w_���/}�����e��7��%~�B*E����K����e�Uپ^̀���Y��`]�����2���Y��O�ޯF��g��E��OB�O���Z5��v�*)���*�C��63ه
��(��/�w0��zP_���WL��
7��AlJ���(�� ��p��
,���Y����j�c����w�(6z�I�V�?+�_�Ԓ�༔���D��O+��9�7��Q��*y
=���2��|��/?J,����+%q�{^�?�@�r_O�ץ�����^��c�A�o���.�J��㻏�,K��ҟ��E;��7|B`�N�]�a�+�/i8�5����pxh8�4^/
�hr?<}4� [��o���u�#�bP�u���\��������l�{l��V��{h��102p�1#=�СG�y����/��(�b0V!9�9�z��&@%!m�]���A�ju�G�����@������pxh8�4�W&��P? @�y��)B���	6��SY&�ϰak�����ͽY6��pakݞ�}���(|�!,���W/�	���/��A�lj�֮�x�)T�I#}ˏ�YL`2eM�)���
w�B4!��1����FIx���>�8�c��&�G)�j���I�����}@�5��V�&J?��	Y����!�\=jb��<�����h�jo%tEXtdate:create2013-02-01T05:33:10-08:00)`��%tEXtdate:modify2013-02-01T05:33:10-08:00X=x.tEXtSoftwareAdobe ImageReadyq�e<IEND�B`�PK`x1\
��&plugin-fw/assets/images/arrow_down.svgnu�[���<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 23.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->
<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"
	 viewBox="0 0 600 600" style="enable-background:new 0 0 600 600;" xml:space="preserve">
<style type="text/css">
	.st0{fill:#d9d9d9;}
</style>
<polygon class="st0" points="50,200 300.01,449.99 550,200 499.99,150.01 300.01,349.99 99.99,150.01 "/>
</svg>
PK`x1\;?nn)plugin-fw/assets/images/licence-error.pngnu�[����PNG


IHDR#"Յ`�tEXtSoftwareAdobe ImageReadyq�e<"iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS6 (Windows)" xmpMM:InstanceID="xmp.iid:67C022AA9BDE11E4B16BA691703D4DA1" xmpMM:DocumentID="xmp.did:67C022AB9BDE11E4B16BA691703D4DA1"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:67C022A89BDE11E4B16BA691703D4DA1" stRef:documentID="xmp.did:67C022A99BDE11E4B16BA691703D4DA1"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>_�B�IDATxڴ��KTQ��8��ٴ�m�6����$J��0��ͺ���qY���jaX�$Е�����C	e�uN|o�w{��~8�e��w�9��޹��;^�y�fI?IG�)RI\/B%�=B�Ο�AౌQ�􊛤/�m�f�rA �g~w'@܊�a�w���v��}/
*�O�U�YDǯ���+���$�:���0@���%mZ h-V#�_��5D�p�.7�I'�Z�C�5�)@B�!Ʈ����h��|#�t���e�ci������񛦓��H����w�}�#��q�˩ͪ�Q�jDp��������Q��K1�Þ}�1��M�1 Q0�㻫���H�I�@��tH�1@&�Z�z��8@Z�=��
3咀Jb��q�e-1c�K���Q��t�<��ȵ,k�t��o�\��w?^^�r̓D��0�k�=�H�����y�>O��L��`�ŷ�q�O���.,_2�&�_s$p�kya�kͣLkL
�aH���@�ia��P�Og�}�^d��3�ع���^��x�4s�4/��UB�zy�QˌE�26L��j/K�װad�
9��׊�������B0�S/�	!��=����JΣ�J̙�q�n����8M]�~�iRBs�sn<w= ��t���k��=7��d�_������s�!�&���~�|��UԵY��1[�.��Ck�a�iԪ�ԓ�g�$��Y�[����biD�IEND�B`�PK`x1\�o�$PP3plugin-fw/assets/images/ui-icons_454545_256x240.pngnu�[����PNG


IHDR�E�r@bKGDE�;�-	pHYsHHF�k>mIDATx��{leG}�?g�K��$����U�!�>T��؈�J��i6A"�V��R%;��"��*UP)�
�/���z�RJ�F��QP��z��BQH�VU������5sμ�9��^�3ߕ��{~��7s�7��<���.��`���� c���Ab/�@�[�V�D��0��3AX9�0�N��_�B��&��>~�>�
c�;ab�D�ߎE����Qz�'k���M�ayԉ�6�!�:u:�:@RŤ�B�yDD���'�L��-�f�]S��q!�f�
S�Q�&�S��7MC��r==3dJ��{��f�Z���S0�Ms��:0K٦g�ʿ��&H�U�=�mc�4�i?UĔG��U4�hc��Qb�]�!�hL���W/
����@������pxh8�~�|�A��Qf?�ێ�1f¸����=u����Q�GJH��p����PϠI�w״m췥���ԧ>2���"�WÓP&{��n���T:s�f�q���H@���.c�I�����~S�s+�^|B�n�29�dH����]��v�-ˌ-m�e�h�>�����q&ت��g�9x�#c�n�~!����pxh8�4^/
����o�#�Z@��S���^�4� KZKP�d�9���C@F[�����,��a+����]8��v��K�qHl�w9ק�84�KB��ץ|��&��#��[�\C����`��R��!�����:�F
z��C���6��)A���T1wU.I�җ!4��ig�3w��������E:��q7����n�0uA���mP��y
�T�K(5ͬ�lNæb�T���rw�DV�]��t�e4���7�
�L���[��C��0��P��&��0���+�+�
����@������pxh8�4����Y��`��O����E�Z<��h�\J!��䞋��j
�;TK�Vr�0��ͬq�cˇ��u���a����p����E{B�w"�K��5���n-��c"w�v�T�6
T�hzီ|6�ŝ���Ι��N{	t��]��K��^m1(�6��m�3��'�R�f���`Ô�� �_�>��j�,�*�-E)�e��{�U�,��
\u���oV��:
`o��m�Ke�t��_W�O��dW3���Z
Քrv|�~^�g��`jyc���p�*���f��b�]M5��9��.��L��N��q+%����ۯ�0�vc�c�J��EM5���kk�#I�<���x_��	�I#0D�w��4xh8�4^/
��^c���
����d�r��DM{w�Q�t�e�{��^�`��b�r./��M:0գ��*���z���`]|S�B�(�e)�h͎/V����ܮ�"aO!�o�
,�u�^���Љ�^�=�z��t`�WeCC�MQϱo��0q��%���U�o?�<��@6��HG/���������uAQ-_�u||���ִ*2l��ٍ�uG�@� j
!�B��r�����	q�L!*)�h����.�V�{3���-��!�w�$dP�*�����/P[�t1���l3�hl�y�p������0b��g�L�} �3���$�%\/��.)TwQ�"uK7d�+�2�!�@������pxh8�4�'�aY$m��f�6�lB'�.D��
��Р��x7S�x��tI��eW�e}���d0�R�W��^ݢ��0](U�݋T�x����|��T�|����@v�^Df׹Lb��(�2��H��0n8;���_�Q�O��}D���&3{��Y��W�w��5*��e˗?�̖�G�
�:H iZӖ)/MP���(:�!�/�|B��[i����:�Gf
�L�`�~��:z$aa���^����ʭ|P�- kbݞ<ەL&�xJ�AABȼ�Hvᑢ�[�yS��ə�w�NJuy��%pw�0�_a"z��x���� �3i�1|��=����@����%�JW����A��m�\���
��l��X�m9+�(��)������S��� or��ro*E`�Z��1��&=�ޗ�g�!�Rt<<�A.-V���+�l�|����suK��,&�ȇ��%����y�q�s��(A�K�*�q^�~���anb�1`�6��G�P�a�&.�	�)b���muL��I���fnE! k̠Ò�c��m���c�ȱD�-B֥֙�D`:G��e�tQ	��7�0���0��������YQ�Ӕ،?�mb�/�e׸L{8�<�
q�{��X4��$s���D@���s�9����e8�\c(���Y���"�r���7��q6�u-	|��B���R��ix!��9^P�HD����g�t7K���|��2��"�.�t���V����w�E�u>�b�������f���a?q�h'y'r�y���#\��&��
o+��Ԫ���|�Y�%�_Hp��"����k��1��*ɫ���U[��&x�9�xA��s�mf�e��<�_����7�;y�6m���i
�
:�[��)�EB���7̰����8f��CH��`⾿�h�)�����}�(�%m���'��&���
;��(�ݚ!�{:^����R��@���N���Kү"�*�<�V�敡�=��o�h~q���+`6I��i�I<#�����Z=^IE\`�0]1���%�D��A��^�a0f��,���c %[�Gxh8�4^/�����rdh9�����M7L)-�ӂ-���?K(����stբ�h-?�:��[ڧC�r�]�G�(�YB�3�|�C|
l�eXW��_�x�V8Ɗ�b����bQ����7����V�4J�]������l!��=�
D?��'a`^���a�q��8��:-��O��YP��x�ۀ���֝��X�5Q"�Gִ����W}���
���I>ȓ<�c��b�YV
6=��*��ۿ�-\��įi|��BH���J_F�Wx�CWғ�_�K�`B]J��"}�`�_R��β��&nDsp����t%G-�^���V����yIc�b�9.hM�u�K��ĭ��6T���6��5Ko(�
%Hz߲�:.��n�z�ōO>���c��lpVZM_gڰ�C�v��eG{����<_d�����0՗e���N�%N�y�ƍ��Ȅp��~�Ú�/���k�������n������|��(G�����#.�s��9�J�ۇ��l���[��6�ɻ�&�.X���{�����SDf�†�<����y?O�~��ƅDP���*~b���gco��s{;�����'�Z9�Z��.��O�孁���e��U�~?�Ӆ1N3��ڶD�(��1Gx�x�k�S�H�I~ی?O�����k���,��i�(���ׁۈ�{.�h�_���5�؋�nF�7��0Q��O����S5�:�'���/��ա���J�r����
�.���KN�wu�e��r>n��-�U�$U`I�v%�����.A�U����e�d��
��;�Ә:�+�a&�XĎ �y����������������G�с���	��"�4��pxh8�4^��	@d6�((�Ԕ{�C::[�>�H,
�ɴNVN����hr.�~N������Z��`�3�᝼���K��Q�|$�%�t��!�Vn%�=�*�7����f��g(�m!fy��"�k�I6Y�/�eZ�ٳ���+��z�g�6W8ɦbQ%�y�{9����Ï�*ŕ�#�7��b-t��X�͕8y��nO�{]�!ټ�*���\� �(��p�2.�H�ٙ�d�.�^Z�(N��&�l�2�&k�	�U&ף���#~�.���7�����6���58A7����}P:��BlkU�[�8�)�j�w0�$��W� �!s\�������QF�n(qRK��:'�X���@����=$��x����|�5:��@��]���2�S�i�.�&��
��$`
8�t����S =�&[#�߫��U3���Wҳq��^H{���➇�Z��4������"��A��H��#����U��0+̱�1�Ɏ�;���O9���"�D�E
�C+n�U:�|a��ɔ�M|�?H�����W1�$~=�k��U�џ�V������V����l{��7�	�����^�;<�,�t[�����T"�3SU9l��˾�H���x^�&�a�@���)�E��&�<<B4�(b����p�����Ƶ\˫\�u�f����7r����������^��Ci�[��.��h���_�^��mD�"DD�_3��e������e��X�	�,�B@�fU���/�?���g���B�R���C�&��2��P�8��@3ZtS�<����v7�^#�另�;c'�Nȹ����6�g[�J!Az^ ?�<̯�oɛ�_s[Kg{(e�}�E�~J��,�m<<�����U���g
"&B%�7�~�{�/
G�l�4^���j����Ԓt���cA��0\(�����ܓ�Ԡ�Q�8��YN�Bݝ�?[���R��$�k���\�{�u���׾~�Q��q�)�8���z:G�G��UK�:�
07��6�-��
WMY<�����
��2�Ѱ��$5�&v�}%��8�)#9&)/��K^2�+��B̳�i���\Ҥ����V�}�LD���1/i��n�]2č��>��I?U�7x���G�4�c�*�i��
�5)ñ>�wH�����f5[q���O�.���d&J_�~W\`G{�
|-���e/���Чk��d� E�����(���N�i�v=��C`�̲�Z���+��%m
)s�!ī�6Fei�N��%���O*㪞v,s��@��%���4���tS/<E�%��0wr��k{ʉ2b�6ɻ��*���;�����zs�]�۝,�B��!,ų�uM�zȐ"�={����O��E����۴��w80��ۙ��%�\PL����
��H�[/
����@������G����9��A�Pi�G
ѫ+!��'��^��u'þ��:�Z�@�LxZ�:�Ɩ����oQA_�RR�`��E��,���~�]M�y_��xD�$��&J�B�k�Q�@����3����=�A_��هA`��RN�#�"��tX��孋�0Z죡�Ԭa�t����R��Mi�C-k��r�a�fH4@�C��ܓ���-��`$�~���Ul�$^�Ufr)�0�*-C�n9W-��@M�1��a���@7�g!�7
?̣|�l�R��/ᭁytX5��L݇��p�����@������pxh8�`:{�1����J��5��#;���ǾD"-��s�ct�Ln3�<D��B���d1w]���=4H�α�'�!���r�+t��d����eG���{h	@�.���k�q���v�e�5V�h.0�©|U������
��C��u����k��G��O��C��Y�	�"@�E�"mNzP�S,��1���rzk�M}�����y�.�{+j{���xL��wE^DPk�$�3�cA�Y�~Y���
�/�C�H�F�����<m�47Ṟ�Q�3��Wa�o�~o�)�C�d݇��E�ƀl7�(̢b��s��ڸ���<<�Fx�~?@��m
����@������v@]��<���=���~��WD�`��.��f���~�o��ʈ�n�VA{_��ե�M����
�^��y��M�Q|��ߟ^-{�~��>������Ѓ
��(��g��X���7��i��&�X
5WJ"�*V���J6s{��I��w�oO_��5~���YX�w(�R��!�m���)^�'��D������ɸ�����5�=�@��+���~���j�yQ`O�`�$�D��<B�F0C<�^%�@��?t�k3�}�@����{�^�y��U��|���pS�nĦ�t���e��=��$�v��>`��H_�B���T#%].Xx��D�ѫ�OR��2�E���\K"��R\T|��:m�O���
�x��*y
=���2��~����/?J,����+%q�	�W�ޛ���3����?ܕ�?����
�^��e�����	+R����oҎ�5س�~�o����Bo
l8�4^/
����@�!��/ON�G����ۮ2t]��С8�cݮ5�z=7��������ˮ���g��@�/�aE[��y#�3�#z��7L�.|��
��(cR�c�S��m�Q�$�6�ץ{D���a�{T�_j8�4^/
����@ñ`�/���_g�"d���`�ɾ���0�
���{�����
�����C�j����_9��jD�Ջa�~?�	dc�[�����0�*a��������,&
0��&�+���O�B4!��1��~��Ix���>�8�c��&�G)�j���I�����=@�5@�v�&J?��Q�l�Ç@��Q�����?��^����%tEXtdate:create2013-02-01T05:33:10-08:00)`��%tEXtdate:modify2013-02-01T05:33:10-08:00X=x.tEXtSoftwareAdobe ImageReadyq�e<IEND�B`�PK`x1\<�V��#plugin-fw/assets/images/spinner.pngnu�[����PNG


IHDR(/D�=PLTE������522744���744'�K�tRNS��™� .IDAT�cpqqa�cF

��Q�a������l��l��A6U�c����IEND�B`�PK`x1\O����3plugin-fw/assets/images/ui-icons_2e83ff_256x240.pngnu�[����PNG


IHDR��IJ�PLTE.��.��.��.��.��.��.��.��.��.��.��.��.��.��.��.��.��.��.��.��.��.��.��.��.��.��.��.��.��.��.��.��.��.��.��.��.��.��.��.��.��.��.��.��.��.��.��.��.��.��.��.��.��.��.��.��.��.��.��.��.��.��.��.��.��.��.��.��.��.��.��.��.��.��.��.��.��.��.��.��.��.��.��.��.��.��.��.��.��.����oYtRNS3P���/"Uq@f`2�
!<BHK Z#'1S,�4���j���8E���|��������)��Q$�
��b�J��mߜGc?o�h�@^�bKGD�H	pHYsHHF�k>dIDATx��]c۶�H�阒]�K���d��%٫뺮��lm���w]��|�p��X�m�-��}<�w(1$��	;�F�@��%��?����B,Lh{�t���#��T@�/?j�9	m��N� #���+`��`��I�
��_�-s�ʹU0�M��[��
s�4`x��š�#��
�D<�~؀�K��.4�]`��PDDDDDDĈq����Ek@����A�~�*���	!Y���X�`hv3\LX�Ot�J2b�ؓl�QI<��� �6�-X�lֈ�6�H��|=j�`E�iq���Cv:�q���C?�?���x�,�r*t�ݻ}|;kP�4���d�Y���f���K��~[	>�X:+�i����ĆQV9\����e�'���A�tOS�:7��2����YsxM�ہ��B��&���z�>n�C��@��r@�*a�ӝ��%��MFDDDDDD�T�ߖ���H,���E���RU��n
ب<��V-
@�/Nm�թ��������Hw����*�+��#��$o�e�{�% �7\X��ǀ���2��~0��&n��sbA,�D��
�A�V�I��|�
�Og���鴋�	�7�y	7Jf����:_�w^�H	v{/O�9���<���Y�`+�� HRٰ����[��?��
�����=���c""""""F�˽�sG�<*k9c��E�8薽�������zfm��r�1�N������nq�w��&=O�\}K`
#���2��~��L�|?�m>�\�f�͹�:}�4ᦋ���{�)�n[��
�̰E
KY��D�ۇ-��	�+�Kl=�Ӄ��L`љ�|�%��n�	a�	���N�#��5�	(4��?����EDDDD\o�W�Ffq;��\E��_������,���W!%�zE!F�¶.�(USHQ0d�w)T���8#p,�x�B��K���� *�x��X��E�e������
K솎%mK�X~s�FE���~������tdc�a��I���1��Af4��dH��c�G�S�B`��0�wev`����"�{��	�.�GDDDD�,d�O�6�k"qk��Me�fS_����U��KŌ&g~>n� �H�})��L���F%8(�)r���!�[4统qQk�0�m[Le���_�7���0�@>1 X0A��Z���Vc�E�V ���Lt�k�3�EJ��44�Zﮊ�N`rt�>`�˥�	�	�
A��HBLH�@��c���Uq=j������cM����2�s����J��CL�iR �NQ�������0=��Yi�-�|4�V��]��]��B^�ޞ���_H�����$�<�$�	
a����=��d@�	(Z�Ap_�}�~s���:�N{DC>����m�^��ƒ����S�&�, ;�N����&�B} ��<_A��B]H�u��N(B0�{h���1�IK���Ds��j����'��M���8�.�ӫ1�h3�df}mq��	��n�U{��L�o�z\=?@	((��e�|=ơ麄�C�i����1r<|�OO�;�
`�H��p�Qy�zԈu�����Z���V��Ʋ�!�)��5m�C��2�Ly�g�;���֑�R���jW�a@��@V�L�&W���ru=Z
�̥�=U���5}���������7�;b(�����nP&�s��k�4����8�ͥ��0���1�U�W�v�k�18dq���T��ՌE]qH8������G�F�����K���'��r����Or�r�̧��6"fp��T�^3c��"�����n��Mم-�/��W=�tJ,�X�)���{�P
Rm|K��>mX�8v5h��<������_{ꘀ�Y�F�|&_G;&�>^�����W⁃�&�K���(��81�EB@F&��;"L���'wfw��E-6��o&/̫'X�e,>~�ee��|��A����=)	d��Q�`}P[���K��N��˂����/�~)����O[d�O=�3E�l5'Y�$?��7�m��Tzզ.�\��.��` WE���"""""v�)��V���<��K�ZX.Ex�~Ч)��ߚ����W_}�5|��s��/!?��'poդ���tC3����@�Q�)��t��`���b!,dY9�6A2���������/튮���n�t�TK>���#]�L;zq�J��r���²[��\-t�ҽ�5
@�ͷϟ��n�T@��+;�c���Qh�C*���T�ڙ��A<Sku�µb�E
/��$�Z���.e�j�����_ʤrWaB6d���(��S�s[�|���竕
/5R���(�4X�����76��`3|���P�p�'�H~<R?M�2�)�  ��g��Vp��B�n�=�|W�ͬ\��V0_�81Oׄ�Kz||lP_��ω���lxX;ǀ�Ju<��Ng[��]=�(�#]������p�P�a���i���s�f��
V�z�]ౚ����z>�Vr�?�f�?����
�Q�1�T`��} H�k���,{�VZˋT��ϛ�?I̯u�QK�LM�e͆��~��q������y�m0�9�S�;���j�����5 ��i��Q��]7k0�U�ޭ���G�kX����3#���lY��_Цx����j޶9��`�#
M	[z��KuO_z˿Dܭ��*��kOJ�(7��n��\�e�
I�T�ƨ�l�/�U������߶uw�.�~���;#�r��.�����8
�o# 5L��h>1�i�����p��V�M?�/u7��0� X@��L��+M�+�����{��Fkt�{�ŧ89�0`��. ĀC�R+\��/��t�R����;
�TӲ���]�aL���|�efđ��	�>�ۣ��G�|�P`P��8C1K՛�A�̍<�2��ۂ��K�r�l@L
L��������8�@�E>`n����PNԍ,��p�����E��Ɔ���Z�FlÎ;���F��7��Ȯ;�
��s�wSz)g7�{r�s��S��gȋ��(߄~�AWytX�$�NV����R�_��<6�p.�O�8�O[�OdDk>_��O�O�}���JS���d��mV�?�W(_��m� ��j��~=H IԁF>T/��{*]IGJ@i��qam�NF|Q�5���0+���E�S8�:�v�`p~v���j:B����p96�o�ys%��������
�|@H�����]��+�@��t]W�k}}���7��Fʮr���A�����B���\m�-�_�2PY8�����x�ՎN�.h�~��@+7��z5������t�_/�����/�?���0�S>��)���z�i0n�/�B����`{D��W���#`����B��o���[,�g��FVЁ�pP߾���C]Bz�� ��,X�����X�fԃ����A�:H�� k�7��d�Z9��oc}o�]�0�vd�:R]�0�ve���]刈����j����у����|
	?�+(��OǍ�+	�#��ys���ߍ�n�p���Fru<��.HȺotM�3h���}��߆P}�������˗��v�����P�}mǀ���?��W��Z@���������}��������@��@��FD�������l�%tEXtdate:create2013-02-01T05:33:10-08:00)`��%tEXtdate:modify2013-02-01T05:33:10-08:00X=x.tEXtSoftwareAdobe ImageReadyq�e<IEND�B`�PK`x1\K%���%plugin-fw/assets/images/yith-icon.svgnu�[���<?xml version="1.0" standalone="no"?><!-- Generator: Gravit.io -->
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 20.5 20.479" width="20.5" height="20.479">
    <defs>
        <clipPath id="_clipPath_BBRuGaomYLKjPKjOOHpnNdPxBnLPFPyk">
            <rect width="20.5" height="20.479"/>
        </clipPath>
    </defs>
    <g clip-path="url(#_clipPath_BBRuGaomYLKjPKjOOHpnNdPxBnLPFPyk)">
        <g>
            <path d=" M 18.24 7.628 C 17.291 8.284 16.076 8.971 14.587 9.688 C 15.344 7.186 15.765 4.851 15.849 2.684 C 15.912 0.939 15.133 0.045 13.514 0.003 C 11.558 -0.06 10.275 1.033 9.665 3.284 C 10.007 3.137 10.359 3.063 10.723 3.063 C 11.021 3.063 11.267 3.184 11.459 3.426 C 11.651 3.668 11.736 3.947 11.715 4.262 C 11.695 5.082 11.276 5.961 10.46 6.896 C 9.644 7.833 8.918 8.3 8.282 8.3 C 7.837 8.3 7.625 7.922 7.646 7.165 C 7.667 6.765 7.804 5.955 8.056 4.735 C 8.287 3.579 8.403 2.801 8.403 2.401 C 8.403 1.707 8.224 1.144 7.867 0.713 C 7.509 0.282 6.994 0.098 6.321 0.161 C 5.858 0.203 5.175 0.624 4.27 1.422 C 3.596 2.035 2.923 2.644 2.25 3.254 L 2.976 4.106 C 3.564 3.664 3.922 3.443 4.048 3.443 C 4.448 3.443 4.637 3.717 4.617 4.263 C 4.617 4.306 4.427 4.968 4.049 6.251 C 3.671 7.534 3.471 8.491 3.449 9.122 C 3.407 9.985 3.565 10.647 3.924 11.109 C 4.367 11.677 5.106 11.919 6.142 11.835 C 7.366 11.751 8.591 11.298 9.816 10.479 C 10.323 10.142 10.808 9.753 11.273 9.311 C 11.105 10.153 10.905 10.868 10.673 11.457 C 8.402 12.487 6.762 13.37 5.752 14.107 C 4.321 15.137 3.554 16.241 3.449 17.419 C 3.259 19.459 4.29 20.479 6.541 20.479 C 8.055 20.479 9.517 19.554 10.926 17.703 C 12.125 16.126 13.166 14.022 14.049 11.394 C 15.578 10.635 16.87 9.892 17.928 9.164 C 17.894 9.409 18.319 7.308 18.24 7.628 Z  M 7.393 16.095 C 7.056 16.095 6.898 15.947 6.919 15.653 C 6.961 15.106 7.908 14.38 9.759 13.476 C 8.791 15.221 8.002 16.095 7.393 16.095 Z "
                  fill="rgb(255,255,255)"/>
        </g>
    </g>
</svg>PK`x1\c]8Ѽ�)plugin-fw/assets/images/yithemes-icon.pngnu�[����PNG


IHDR(-S�PLTE!0A /@ /@ /@ /@!1B#3E#3E /@"2C#3E /@#3E#3E#3E#3E#3E#3E#3E#3E"1C /@#3E#3E#3E!1B#3E#3E /@!0A#3E#3E#3E /@"1C#3E /@O\j^iw��󘠨���@N^���{��lw����2AQ�����������#3E�:߷%tRNS������"z�q�hr�w�u��ft�|��s��l�,[�IDATx�=���0F�9�{�&�Z5Cx�W+D��|�@1�i�O��d�f�F��c+b�!�P���I�
��XW�%�G�9ϯSb�p��Q�FDw�):��UV�&�a��� ��hi���,��]� ��
:���~�v᭺�_��Jp�h*nz�X<tC4
���+��
��IEND�B`�PK`x1\򹡉��(plugin-fw/assets/images/sidebar-left.pngnu�[����PNG


IHDRK2i
�ptEXtSoftwareAdobe ImageReadyq�e<"iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS6 (Windows)" xmpMM:InstanceID="xmp.iid:6471D63E8CEA11E3A6B2CFA97FF7973C" xmpMM:DocumentID="xmp.did:6471D63F8CEA11E3A6B2CFA97FF7973C"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:6471D63C8CEA11E3A6B2CFA97FF7973C" stRef:documentID="xmp.did:6471D63D8CEA11E3A6B2CFA97FF7973C"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>l��'	PLTE������������tRNS@��fIDAT(�c


Y�V0������
+1�13��%�IEND�B`�PK`x1\@�����plugin-fw/assets/images/x.pngnu�[����PNG


IHDR�W�?)PLTE������EEE���$$$���444���XXX������lll��������������򻻻�����������ƹ��������������������������������������������������������󩩩��������������������������Ę��������UUU���ppp���uuuVVVttt������[P�{BtRNS	MM%
M�MEMQM$"�MM�M�M��

(
*-HJ.�):Q���Q6IJ=(G�H�Q�b�IDATx^M��v!���%�JܭI��V➺��C8{�n����k�_nEi���s_=SX%2o,�9����$��m�����gA��NUeL���@ƪE�(�<��m��9��)j�"�x���{_c6S-B���q�Y����:B1€��u�K��
i�ܶ�.��LLy�|$xl4b��2��J'�~G^�v�:���I�ã揯yr��'��Ţ���:!��a�J4ʥ�P*7)� I���bXq*W�:5C�Iu,��2B�P�
ZA��
gIEND�B`�PK`x1\]�F/��)plugin-fw/assets/images/sidebar-right.pngnu�[����PNG


IHDRK2i
�ptEXtSoftwareAdobe ImageReadyq�e<"iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS6 (Windows)" xmpMM:InstanceID="xmp.iid:72CC82938CEA11E39B63972533DE18E4" xmpMM:DocumentID="xmp.did:72CC82948CEA11E39B63972533DE18E4"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:72CC82918CEA11E39B63972533DE18E4" stRef:documentID="xmp.did:72CC82928CEA11E39B63972533DE18E4"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>Lj�c	PLTE������������tRNS@��fIDAT(�cX�V����0������
+1��3����IEND�B`�PK`x1\��d!+!+*plugin-fw/assets/images/banner-premium.pngnu�[����PNG


IHDR�-�}tEXtSoftwareAdobe ImageReadyq�e<iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.6-c142 79.160924, 2017/07/13-01:06:39        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmpMM:OriginalDocumentID="xmp.did:7706a20a-f17b-42fc-a8cf-79ea14e11515" xmpMM:DocumentID="xmp.did:CE50FF6F1CCD11EAB070D6715D83780A" xmpMM:InstanceID="xmp.iid:CE50FF6E1CCD11EAB070D6715D83780A" xmp:CreatorTool="Adobe Photoshop CC (Windows)"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:332f214f-4285-494b-aba3-ee79c39d514b" stRef:documentID="adobe:docid:photoshop:9b92e163-aedb-084f-b2a6-b6296c8ae3b3"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>W��'8IDATx��	��y���=3���
� � ���H"eZGtT�	e�%���v�*q9Uq�R����J�QUb9q�\�L�\:LJq,J�	R�$I��I,`q-vg�������kvz�gwv���
����y��������/��6+Θ&V�P钏�H��.ڠ�.5C"b���|MՏ[���SA*�$}��F�8D<!F�~3Rq#�:��sz,�P�'4�/i��A9�sI�A�t�ǟz��Oa�?�U��~�K�"]�(Y5�L���."7
�F�,�~T3jD�t���Е6���q�x� R�&��w�����d�zX���꫸=]��4�������Ta��=,!�9�P��@�Y�!sI!�G	�^�� �u����k�G$�tIƅX�̇��J���<`�{P��5瞩Q�u�Z��&)lF�u���J"7��|���+����3u�r�(7>F*" s���%��"��q���@;X��?t���AѬ�]s�,�GX�9�Pv+��`�=f-a��ej<N�
"�7����Ԉ�훑Z������V�#�0��w��E�&��e����yғ��k*#�a�<�xf�@��}&2W{���"][2[�ZY���u��`_�#e�9���6��4Y��W3tIi��
��Q��~u#Z�ZGJ/~oR��R��L�"Z�h��i0'(g���4��S�����g5,������qၲ�6l=}�Zˎ���Xv�;�ؖ�֑�d%�ܬޓeu���Δ��J�CS��pg>�
k�"IM���-�_m�����0'J�z�=���]�6�o㇒�7�؇��:�����%�m7�ﰼ��U�1Ҏ�����t�9���6O�H�H>�{0�h<N�������:�Ò��{���:3p!9�=)�U�'3�,I���7��SA��!L��"%�0��s6Xi*��R<����i�2�%��'�A�CK8r
2�!�9��th��'�5��w�fH(g�L�\�V�jJZY�/�
"�{��{�IhQT��5�ju��d��4��|�H�s.�TcS����6R�'�M6�]�8R۶n�{��b-K���+P�n�-F���4/U)Iʹ��y#�J�x�a�����p��4g�B��p�'�;�����π��I�h���t�i�8A)2��J�qT����w+�1m�EI!�0�Mp\�UO!��3ֈT#�r����i����׈5χ�X_yH�2JL���Sͯ����W�>>~�_|��Oܳg*[��1$�p	k�,�kD�F��G���}�c�*+�o���'���O�H+�{�wt�@�Y�d�K[����W��ڡ�*�Za4s/+;-L2��{�6��k3�b}��BO�
<�8�B�΅�Q�kܾ���".|ئk3>�}'�ݣO9q�	��q�&==��;������
�������k�A?+�u���P�nng�L�o
,1�`C
�4�F�Ol=�����ڊ:��d���@�t��0�M!7���4n���:z�x(U,r�3����ӂU4�r��o�f�� R����9~�
U�֛׎l_;���r:ܭj���2��iq���w�"<16�SB�d
*��x
���G�y��b��ѽ��Ћ`�Q���j��1dr�����N�ˆ��G��-����=����Gk�a�t���[�����D͚�fC�T�.M
��O���x�U|���;7�n�Qm�����[�m�z΅<u�hM��.�3g�Q#T�ZT��/~F�H�x(1���{r�HDU��������ƣ�5p��pK��s�ND,��y�+(}q��=\�4n���U`Ӌ�ӈ��
<<��̈p{'i���- D���k��3q6lc
�+)��KSg�ͤ���n����AzX�?�O�VO�R
�i{TC�*�H�0�S2����ԭ���=�Ĭ��,����U�Q)�P��I�,vx->��s�h[
��qZ9��D�qe�Ȧb�Uv��!X��e��{"�쉿Hk��{��H/OE�Hi_
F,Ժ�{A�2-���х�f3R뇫�S�۶�}q�C�^���*��VN��d͐U��G��vn�%�߈"O�PiMT�%�wF�n���h�r��A�}*5�K晣�<7��;�{	!�&�R�%��V���u�y!��g0bK�9
,*=�w 𬒉��z��×�YP����d#j+���
X�O:f?uCE!�i���H���Co��;<�Ž�N^�|��]�u��w.��+�N}�}N�Q�ut���y�櫂��p�?���/<����ް��w�̬��wN��p�o���M�G�^�˗�lD�k��ᑓ_~���F�����!8�S��%�n��M6�~��h�}G#,�Y3Ɠ��Ii4)��R��e������U�>X����>�T��J'ɨiu�:A��7xN]���l�fi�Ë��{��E�
,wrk<���K���Ǟ�O���mz��k�O<��_}<h4�g�|���>ņ�=�7J�T*��~�w{�ܹ��@��صq��ܰ+"����GY��<������ֵZ�Ƚ{���W�a�8�'�o۽��7�Q'le�K�
*�;�	��|9�����U=��B)���П���_<vC̄/K0�'�G,�z���Ł-<`��R�&OK�N��.t���X*���:{4�����`#rm-����ҧ���F��V���o�=9�?��AӾ.����A���1_�!����׾wnb���}������9~�~z�Άj�k�����ޖ�����ML�i���s%=�37��D?zs�[�ɚ��m�'�Hů���|!<Q�m���)!lCTB��=}���3���	��s\�xNԹ�8�`�L$"���L0��X�t#�H��R!�q\R��?񺊧q<��6lq��'9|<R��f�{�y��_06����]9ל��U�����S��L�+��sQU����+�(DRn�R�e��H�����S�}��Sf�H��{���{�L�Hſq�����k_�NF�o�ժ�Y�/7�an9��^�~A��O�Y,��~uш�,CQ��ݥNŏSD��|��'����]�P�97�}�=���S�H9�x:�ȉLĔ&�J���Vn&�_�TDg�Z��{�5��!���I����_y���vC���o��s4m_7���r����O<��o>E�Ӵ �q�6~����r�놪O�y��$Nv�e�
<!nܾ)>�z3���+�ݸcS=��h2��F���AȄ�b�h�'��҇�1���I_�Lq�_<���;A���$a対�j�|2�5!~Շ���U�;��kK��%V�����ƻ�fI���2��3H;`�/;�M7M�O����:894�f�ٱ�O����ؽ��7�<�Ƒ�f)�ۺ�3~�M����?z�w�/0��]��#��׏~��j�cg'�z��K��Hm��Qe#�և�/�Fh����9r�Ƶ� 
"��ɋ�f3��_���X?�8T�<!4єՁr�6�!jэt�9������͘�S��ݽ^F=�~G����V%�BׯR/Z�'Dm{Q�)�^+���1w�4[��u�&e/wZO�u8cP���}P�K P,�J���_'�`��rm����m�/>�"Ū�Ɋ͖
�֡҂�&�N�3;�C�@���o�y޷��en�&��e��e�#��vKv��D�6�ׯ�0\��:�a/ԛ�0bJ_�e�F�M5�?<v�̅m�F>|�&j�[�)�Bɠ�~��hI)�
٠g	=�7�m!�^�"���V]&gc����9�̔�!JJeE�h��,{1�;h<��\���yR��<K���egi=n�e�{K;�v����.�]웎���(2ꎑvf���ɖ@DE_m<�a��|�)'S���:Τ4/iZ��j�8V�����^z�>Yg��VٴfHi)-�ػL'ѭ�֬�U�֩s��D��g�Pu��gyœ�CAop��m��~�w���ةsFg�3���/�}�d3��,z+�@ϔ'�}U�6S��c��a�1?}
M�.<�R |[ڜ��U�o�Qw�\�)o͆����T�1�����B4��K��`k"ꤗ�4�Q>�� �ĕ�E&���s���D�+QiSbǩ�4��bO��n����g(0`xyw�8xj���
�k�k���jU��*O<���}̓��F��mQ���'�^O��۵qԅ�l�~��d/{���׮Ĝ�8Ŕf�ʳ?9��\o���OY�ypl<����|���[\m��B�(Qm"s�{�t�p��rn/�ĝ�%̍���;l��e�W�Y:��Fi'�h�<74�dxf�����;����3������{����VIKv��"yq��2Z&<�d)+K�3rYל��j����X�]^g"M��<��K,0 ����5'Fba&�v���h͏_��ؿ���5A�Q����n��J�5����N����]�y��UW�����cgq��Hů�^3���EVm=4}���Wl�������[֍p�J�0����̴�I���i<��'ץ-A�Ɣ��_z��N#�S�v>�I+=�*�g����R>��N���e�J�*�&[�f��]-1��7-����C��zG"u�L�>B�یA�?ᳬw���:*��'
5o����
��̮��듲�z<!<_78n����x���i�E/��'�;���������vL�{.�lm�r�<�����7���U�LL��'^�����og�I�&��*�kSa��k?�����ڵ#����f��1���_�e��T�^�U7�s��ҥ�x�|d�ޑ*A|2jS�����[L��k�哲➉���1!�,[W��,Γ�G�'�E]�D9WV�g!snjRG�&1��t|ڎ��+U�}��3�e���:��6ۛ��8�4c^2�βCm*l���iT�^z�*2U��x|��
J�T��x"u��D"�0�9:~��t��q4I������;�����G�'�v��<�?T���������{ir6�{�ػ��O�����/�{��I�+O� �G��ޫv��x��s�;�_3t��
U��掠��/�qC=�:��	�����Ń�DZ��-���a��N}�ϗZ���6�e�I
B٪H�&e�V�.ڙ.<!*ުHXSD��wgvb1ec��Mױ��!��9�_���'�0�k2eR��oa����Ob^,c(s
�k����ũ\�:�4=�n����(�ؒ4��(�����w��X���ɝ�M5���C�k�M��fx��m�Fj�<n������W^��ޔR��G�z��G�M�Iq�����3L��ё�{�_{�F�|:�㽾��Af�x~�������߹��@�g'���o<Z��M��y�=��?���-l=�,��Γ�Kx��#M�eQ��d�Z��ѮO*�'��a{9���<)dB����Nٙ��m�X�[���|Y�r��h�G3_�%픢��<�m�1���d��I�v�
��z;s��xi�B^���3z�����-��8�N�<�J�K����5��s�������|��
�z��$��C�U<�s��뇢D�a6r�{����>���췞fN�b��GO���=W����{�e�z�ȴ�Z���F׎|�c�m_7�g_k�l��yӺ���|y��u|��u��8c'�OL5ø
��^���j����?r��헚A�S����!JpϘ�ŧ���8O�C��+���y�X�k5G�8�8'�*I�4-yW��D4*n�Ո&��\t��}�L��.o�J�:�:��'�e ��j����BՒ|d*�H+��߾��+��x�\Yl~�5��&'���[�
}�'�J�\|{)@7`ȩ�yB���7?��;���$eU�r��-��[���{��w�G�ۯ���˝����$w\}�k�Ʋc1)�qק~���wl�hw\�����r>�aM<OW�����O��[�ߺq��ё��d#P&�it���D�<�q��g>����۹���M�x]z?
V4DhM$%4L���\��}.��є#����4��HS<��H���z�F�RYIAb��ɴW)���Cb�И�_3+�V&����1��h����{K����Nk�i�l��sW����4�����D�K�T���V@�������S�䁱�'�:6�v�ݳc����j|���lモ�m���nX��_}h�pm�����J��g^���1�Wo^���wݹ{[œ�0�8;�x���8*�q��gǖ���y�e��P�C՗������n�f�P�3���_�y��۹etx*l9��ˏ6T}o�+��˴�/4T񫲨��*z�\A�#�w��G�
�f�m#O�-��w�'B�TE��c�V�j+"cu����l흯�@�)�d���7�����m��'��ߍ�����I�7��z���@��K/�2�'M>�5U��ً_ܻ/�9{��}[���f��o�����dTK�O}a��W�IoֈTv��'�'�o�[�W<Ϥϊ��КZe�7�U���K�����[6#]�B
ꁂʊ5�24���_<oXܞ@�2�ʗr��i�NQ���x��WK�o�Q��I��K1�& -S������,�s,�?J�:,"S�+�(��}��i�l��+C�@�ȸ/w�� �P�c���?fJ� +"�z�;�&R���'^;���-vl�t�܄��ޯ���J��I/ZS���?hK���m�ڕo��.0��Q+j`��J��45ێP"��i��;�mt^J�5MT��1ֿ��M��\���O#��,�u�d�2M�TZ�.2�e�]v/��3�u�H¶�I6Er9�Y�%`V��!Ӂ�A{�X<9��6	����}�cM��|�]�.xz���Q���G�/��G�y�շч������7�2!=�Y�sӕ{vlv.�v\ԬÑ�3_�<W���>%⅕W����`�rD*/i��m�K��z<��O�z�����iyŭ��W{�﴿�^_'�~Ei=cB_����M��C't����_�gB�Ip-�pz�M��.�AZ'��b���@����I����‡��H/O���8�����c�b������[�+�=r���&z'�/�y�'D�T)�,h�p��fNe�GE��mIy^FG��	�{��s���ӥRo����� ��g�N������iyqL-{��:���)���tc���3D��$N�x|���|�5CL�>�ȯ�k��ԓ\�kjb�5b�C��Ln{��+��d-�G }P���'ęK����=~������^�ٿz�[/�nf���w��vg��o
�Q�?Yژ
t�º���U�%.e\)s*/�jZԇ@��t��7���O9�u��-��Ӓv�J�Dڹv��|ծ�tzs00�,EI"�Tڙ�佾�I��(pb��Ӟ�?XZ�t){�uAD�ȱ�۔SQċ�@���x*�����:v�
U��_{�����8sa�y�PZ�C�_�V^��d���tQ#ݷRܖ*x��p�6GܒRΓ\��RƮo�O�'\��J��!��8�����f,:긵S��u�fi�����m�;XB��1�l:Ye֝S��[��m�D����4h�F���\�9T� �z��N����d]xz�ȧ��~O�޷O0O��у0:�L�d�f���~ۮ�N]�*-P̛��H�v�����BW����F)����Rտ2+�T�~ρ�df�5b��ٹ�h�LG1��mt]�We'R&U��ȭ\����j$x۔�De:4k��WNʎ��̼��b�'�L]b�F:�I������Şzz"����%��GM4�V��[���s����D#�2o����f��}+Óu@�]Ff4�K���rl<I��)K���$�`0B��V߬�j4�e�P�Q�A:�'Q|2��%d��[o*�ș. �3<:n]J3��ϦS��N�i�$�$n4�3*{�5A@�����*��꧂.>2�nȧ��o�R�9��Xy�_k�?u�����Hq����Y@	��_�����s[���@�Qx
Gݹ��4a��M]j�����{U�%�;C�i[�mд-�S����vh���&��0�v���"�R}8K2V�0O�8���!f�8�Ό�<:�|�n���h�^|PO'nkdB�L(g�1i�V�I�3�=�j�T�Z�B�5�X�����x�gr<�L
�&&ćo��3}`Ӛ��fPnݓބ�H�F����0 D�НqB������f��aI��8�ᔉ��b��Rxv,��یT��nܪ}K��R��<�����M�6�gu�e�2�����V��mg� ��F-�wݒ��e&�o?�}���O�f\�:�K鰁�s�9��E�6y2��'�RfŭibO����b.h���'N���1�G�\m�0���w��|�?z��ً�җo}���a��ZS���ނ�q���h�}q�<]�%'�#�(��Ħ3�e�]��-T^<���'ShLu%�O�0�<b髭��G�N�)0m��4u'y0�����:'\���.���L핽yۼvj��A��i�.$eKf�G�����˕�j9�H���D��=M�4��Ȳ"ɸ�K���7x{�o�s�U7���T$��Q`n��iF�+w�s���q�r�޺y��`�Z:m&�bD��S��X1*��t5�ǖ(�z�%�4�W����K���5߫X;Z{*��'�\"�Ԉn%]�Ӽ;m�Of�H];-u'Cs	�\"�lGb�5{fܡY��y��ʣ���Z)ݬ�#�jʲ��闀թ�̙r�t�5��t�4����?�ɇ*�a����Y�p�R��	;ב�
���E���I!o)=�	h��m�f4w��ű�mb�)����S5���#�B�Х�Kl�s] n�1e2��\�-�\\��n�
<s&�fS�,S�=<�#jб�ΌuZ�^Ms�d[RW���z:�f
eK�p�x�SZ	k��\R+����Y�R�ɾAn��_%rN7�gg�2N<�}QډD�]JS���ɜb����4I�+i!.(=��+�X���ʍPu�;����j�Ѣv_��C\��JQ�� ԺD���}�;�,]X�G��?���r����ls�9��<��I�����j�"Ut�C�4KЬ7�^Ǵu$�ΜG��E�T}�r����`J�ډ�:��fI�|u�9��-�j=���H���}n��lv�Q���V�1G67��r(`��=�./�X�1��������0��^���ٽi݌TXj���綳e���Q�$�q�U��V�/;�/�6��A���f�?k�m�i�S�M��hk�q��Z\�ԝĻ�<���o����V}��!�|�͚��.�����2�e���93�Q|���&OdJI��a<���:^�#+ۣҚ=�c��nn��F!y���%�P���/��ڶqx���IEND�B`�PK`x1\���uu!plugin-fw/assets/images/sleep.pngnu�[����PNG


IHDR:~�UsRGB���gAMA���a	pHYs���o�d
IDATc�6_g�IEND�B`�PK`x1\¨Rp~~plugin-fw/assets/css/admin.cssnu�[���/*-----------------------
        YITH Debug
 ------------------------*/
#wpadminbar .yith-debug-admin-bar div,
#wpadminbar .yith-debug-admin-bar:hover div {
	background: #05789c !important;
	color: #fff !important;
}

#wpadminbar .yith-debug-admin-bar a,
#wpadminbar .yith-debug-admin-bar strong {
	color: #fff !important;
}

#wpadminbar .yith-debug-admin-bar strong {
	font-weight: 600;
}

#wpadminbar .yith-debug-admin-bar-post-meta .ab-empty-item,
#wpadminbar .yith-debug-admin-bar-option .ab-empty-item {
	display: none;
}

#wpadminbar #wp-admin-bar-yith-debug-admin-bar-post-meta-default,
#wpadminbar #wp-admin-bar-yith-debug-admin-bar-option-default {
	padding: 0;
	max-height: 500px;
	overflow-y: auto;
}

#wpadminbar .yith-debug-admin-bar pre {
	padding: 10px;
	line-height: 1.5em;
}

.notice-yith {
	margin-left: 0;
	border-left-color: #acc327;
}

.notice-yith.notice-alt {
	background-color: #ecf7ed;
}

.yith-promo-banner-image-link {
	display: block;
	margin-bottom: 15px;
}

.yith-promo-banner-image {
	max-width: 100%;
	margin: 0 auto;
	display: block;
}

/*-----------------------
    YITH FEEDS
 ------------------------*/

.yith-feeds-logo {
	display: table-cell;
	background: #005b7c;
	padding: 5px;
	border-radius: 50%;
	margin-right: 10px;
	vertical-align: text-bottom;
	width: 18px;
	height: auto;
	vertical-align: middle;
}

.yith-feeds-plugin-name {
	display: table-cell;
	vertical-align: middle;
}

/*-----------------------
    YITH Plugins Columns
 ------------------------*/
@media screen and (min-width: 783px) {

	.auto-fold #adminmenu .yith-plugin-fw-menu-2-columns.wp-not-current-submenu .wp-submenu-head {
		width: 100%;
	}

	#adminmenu .yith-plugin-fw-menu-2-columns.wp-not-current-submenu .wp-submenu {
		min-width: 320px;
		display: flex;
		flex-flow: row wrap;
	}

	#adminmenu .yith-plugin-fw-menu-2-columns.wp-not-current-submenu .wp-submenu li:not(.wp-submenu-head) {
		width: 50%;
		border-left: 1px solid #555;
		box-sizing: border-box;
	}

	#adminmenu .yith-plugin-fw-menu-2-columns.wp-not-current-submenu .wp-submenu li:not(.wp-submenu-head):nth-child(2n) {
		border-left: none;
	}

	#adminmenu .yith-plugin-fw-menu-3-columns.wp-not-current-submenu .wp-submenu {
		min-width: 480px;
		display: flex;
		flex-flow: row wrap;
	}

	#adminmenu .yith-plugin-fw-menu-3-columns.wp-not-current-submenu .wp-submenu li:not(.wp-submenu-head) {
		width: calc(100% / 3);
		border-left: 1px solid #555;
		box-sizing: border-box;
	}

	#adminmenu .yith-plugin-fw-menu-3-columns.wp-not-current-submenu .wp-submenu li:not(.wp-submenu-head):nth-child(3n + 2) {
		border-left: none;
	}
}

/*---------------------------
    YITH System Information
 ----------------------------*/

.yith-system-info-wrap table.form-table {
	margin: 0;
	background: #fff;
}

.yith-system-info-wrap table.form-table th, .yith-system-info-wrap table.form-table td {
	padding: 30px 20px !important;
}

.yith-system-info-wrap table.form-table th {
	min-width: 200px;
	width: auto !important;
}

.yith-system-info-wrap table.form-table textarea.yith-system-info-debug {
	width: 100%;
	height: 400px !important;
}

.yith-phpinfo-wrap div table.form-table {
	border-bottom: none;
	margin-bottom: 0;
}

.yith-phpinfo-wrap div h2 {
	border-top: 1px solid #d8d8d8 !important;
}

.yith-phpinfo-wrap div {
	margin-bottom: 40px;
	border-bottom: 1px solid #d8d8d8;
}

.yith-phpinfo-wrap div:last-child {
	margin-bottom: 0;
}

.yith-phpinfo-wrap table.form-table h1.p {
	color: #2a8db0;
	text-transform: uppercase;
	padding: 0;
	line-height: 64px;
}


.yith-phpinfo-wrap table.form-table img {
	float: right;
	border: 0;
}

.yith-system-info-wrap .yith-plugin-fw-field-wrapper.progress:after {
	color: #336374;
	display: inline-block;
	font: 400 20px/1 dashicons;
	speak: none;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	vertical-align: top;
	line-height: 28px;
	content: '\f463';
	-webkit-animation: rotation 2s infinite linear;
	animation: rotation 2s infinite linear
}

.yith-system-info h2.yith-sysinfo-title {
	color: #00729f;
	font-size: 25px;
	text-transform: uppercase;
	font-weight: 800;
	line-height: 25px;
	padding: 20px 0;
	background: none;
	border: none;
}

#yith-system-alert span.yith-logo,
.yith-system-info h2 span.yith-logo {
	border-radius: 50%;
	background: #265b7a;
	height: 30px;
	width: 30px;
	display: flex;
	text-align: center;
	margin: 0 10px 0 0;
	float: left;
	align-items: center;
	justify-content: center;
}


.yith-system-info table td {
	word-break: break-all;
	padding: 20px 12px;
}

.yith-system-info table td.requirement-value,
.yith-system-info table td.info-value {
	font-size: 14px;
	vertical-align: middle;
	text-align: left;
	color: #5da726;
	line-height: 19px;
}

.yith-system-info table td.requirement-value {
	width: 120px;
}

.yith-system-info table td.requirement-value.has-errors {
	color: #a00;
}

.yith-system-info table td.requirement-value.has-warnings {
	color: #ffa200;
}

.yith-system-info table td.requirement-messages ul {
	margin: 0;
	padding: 0 0 10px 0;
	list-style: none !important;
}

.yith-system-info table td.requirement-messages ul li {
	margin-bottom: 3px;
}

.yith-system-info table td.requirement-messages span.error {
	color: #a00;
	font-weight: bold;
}

.yith-system-info table td.requirement-messages span.warning {
	color: #a00;
	font-weight: bold;
}

.yith-system-info .debug-code {
	font-family: monospace;
	padding: 15px;
	display: inline-block;
	background: #f2f3f4;
	line-height: 22px;
	border: 2px solid #dfe3e6;
	border-radius: 5px;
	margin-right: 20px;
}

.yith-system-info .copy-link {
	font-size: 11px;
	font-weight: 600;
	padding-left: 1.7em;
	position: relative;
	text-decoration: none;
	color: #3889d3;
}

.yith-system-info .copy-link:hover {
	color: #004b91;
}

.yith-system-info .copy-link:before {
	background-color: #ffffff;
	border: 1px solid;
	bottom: 2px;
	content: '';
	display: inline-block;
	height: 0.9em;
	left: 0;
	position: absolute;
	width: 0.9em;
	z-index: 2;
}

.yith-system-info .copy-link:after {
	background-color: #ffffff;
	border: 1px solid;
	bottom: 5px;
	content: '';
	display: inline-block;
	height: 0.9em;
	left: 3px;
	position: absolute;
	width: 0.9em;
	z-index: 1;
}

.yith-system-info .copy-link .copied-tooltip {
	width: 140px;
	background-color: #555;
	color: #fff;
	text-align: center;
	border-radius: 6px;
	padding: 5px;
	position: absolute;
	z-index: 1;
	bottom: 150%;
	left: 50%;
	margin-left: -75px;
	transition: all ease .3s;
}

.yith-system-info .copy-link .copied-tooltip:after {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -5px;
	border-width: 5px;
	border-style: solid;
	border-color: #555 transparent transparent transparent;
}

.yith-system-info-menu {
	font-weight: bold;
	font-size: 11px !important;
}
PK`x1\�a���%plugin-fw/assets/css/yit-upgrader.cssnu�[���/* === Plugins Upgrader === */

.yit-plugin-changelog-wrapper {
    display: none;
}

.yit-plugin-changelog-title {
    text-transform: uppercase;
}

.yit-plugin-changelog {
    height     : calc(100% - 15px);
    width      : calc(100% - 15px);
    overflow-x : hidden;
    overflow-y : auto;
    z-index    : 999;
    background: #fcfcfc;
}

.yith-updating:before{
    animation: rotation 2s infinite linear;
}PK`x1\ۻ4�pmpm)plugin-fw/assets/css/yit-plugin-panel.cssnu�[���/*
 * This file belongs to the YIT Plugin Framework.
 *
 * This source file is subject to the GNU GENERAL PUBLIC LICENSE (GPL 3.0)
 * that is bundled with this package in the file LICENSE.txt.
 * It is also available through the world-wide-web at this URL:
 * http://www.gnu.org/licenses/gpl-3.0.txt
 */
.plugin-option tr {
    border-bottom : 1px solid #ebebeb;
}

.plugin-option .yit_options,
.plugin-option .yit-options {
    border-bottom : 0px;
}

.plugin-option .yit-options .option,
.plugin-option .yit_options .option {
    width : 600px;
}

.plugin-option .form-table > tbody > tr > td {
    padding : 25px 15px;
}

.ie8 .yit_options select,
.ie8 .yit-options select {
    height : 26px;
}

/* Style to woocommerce panel*/

#plugin-fw-wc, #yith-plugin-fw-panel {
    padding-top : 20px;
}

#plugin-fw-wc table.form-table, #yith-plugin-fw-panel table.form-table, .yith-plugin-fw-panel-custom-tab-container {
    background-color : #fff;
    margin-bottom    : 20px;
}

.yith-plugin-fw-panel-custom-tab-container {
    padding      : 20px;
    box-sizing   : border-box;
    margin-right : 15px;
}

.yith-plugin-ui .yith-plugin-fw-panel-custom-tab-container {
    border     : 1px solid #ddd;
    border-top : 0;
}

.yith-plugin-ui .yith-plugin-fw-panel-custom-sub-tab-container {
    padding    : 20px;
    box-sizing : border-box;
    border     : 1px solid #ccc;
    border-top : 0;
    margin     : -20px 0 0 0;
}

.yith-plugin-fw-panel-custom-tab-container > h2,
.yith-plugin-fw-panel-custom-tab-container h2,
.yith-plugin-ui .yith-plugin-fw-panel-custom-tab-container > h2,
.yith-plugin-ui .yith-plugin-fw-panel-custom-tab-container h2,
.yith-plugin-ui .yith-plugin-fw-panel-custom-sub-tab-container > h2,
.yith-plugin-ui .yith-plugin-fw-panel-custom-sub-tab-container h2 {
    border  : none;
    padding : 15px 0;
}

#plugin-fw-wc table.form-table th, #yith-plugin-fw-panel table.form-table th {
    padding : 20px;
}

#plugin-fw-wc h3, #yith-plugin-fw-panel h3 {
    padding : 0 0 0 10px;
    margin  : 0;
}

/**
 Help tab
 */

.yith-plugin-fw-panel-help-tab-container {
    background-color : #fff;
    padding          : 60px 25px;
}

.yith-plugin-fw-panel-help-tab-content {
    background-color : #f4f4f4;
    border-radius    : 15px;
    max-width        : 1100px;
    margin           : 0 auto;
    padding          : 40px 40px 60px;
}

.yith-plugin-fw-panel-help-tab-content p,
.yith-plugin-fw-panel-help-tab-content a {
    font-size : 16px;
}

.yith-plugin-fw-panel-help-tab-content .row {
    margin      : 0 -15px 50px;
    white-space : nowrap;
}

.yith-plugin-fw-panel-help-tab-content .row:last-child {
    margin-bottom : 0;
}

.yith-plugin-fw-panel-help-tab-content .row .column-left,
.yith-plugin-fw-panel-help-tab-content .row .column-right {
    display        : inline-block;
    padding        : 0 15px;
    vertical-align : top;
    width          : 66%;
}

.yith-plugin-fw-panel-help-tab-content .row .column-right {
    width : 33%;
}

.yith-plugin-fw-panel-help-tab-content .yith-plugin-fw-help-tab-video,
.yith-plugin-fw-panel-help-tab-content .yith-plugin-fw-help-tab-actions,
.yith-plugin-fw-panel-help-tab-content .yith-plugin-fw-hc-articles,
.yith-plugin-fw-panel-help-tab-content .yith-plugin-fw-submit-ticket {
    box-sizing  : border-box;
    white-space : normal;
}

.yith-plugin-fw-panel-help-tab-content h2.yith-plugin-fw-panel-help-tab-title {
    background  : none;
    border      : none;
    font-size   : 22px;
    line-height : 1.5em;
    padding     : 0;
    text-align  : center;
}

.yith-plugin-fw-panel-help-tab-content h3 {
    color     : #03689f;
    font-size : 15px;
}

.yith-plugin-fw-panel-help-tab-content .yith-plugin-fw-panel-tab-description {
    font-size     : 18px;
    text-align    : center;
    margin-bottom : 40px;
}

.yith-plugin-fw-panel-help-tab-content .yith-plugin-fw-help-tab-video {
    text-align : center;
}

.yith-plugin-fw-panel-help-tab-content .yith-plugin-fw-help-tab-video p.video-description {
    margin-bottom : 25px;
}

.yith-plugin-fw-panel-help-tab-content .yith-plugin-fw-help-tab-video .video-caption p {
    margin : 5px 0;
}

.yith-plugin-fw-panel-help-tab-content .yith-plugin-fw-help-tab-video .video-container {
    margin      : 0 auto 50px;
    overflow    : hidden;
    padding-top : 56.25%;
    position    : relative;
}

.yith-plugin-fw-panel-help-tab-content .yith-plugin-fw-help-tab-video .video-container iframe {
    border   : 0;
    height   : 100%;
    left     : 0;
    position : absolute;
    top      : 0;
    width    : 100%;
}

.yith-plugin-fw-panel-help-tab-content .box-with-shadow {
    display          : block;
    background-color : #fff;
    border-radius    : 5px;
    box-shadow       : 0 0 15px 5px rgba(174, 201, 207, 0.3);
    transition       : all .2s ease;
}

.yith-plugin-fw-panel-help-tab-content ul.yith-plugin-fw-help-tab-actions,
.yith-plugin-fw-panel-help-tab-content .yith-plugin-fw-submit-ticket {
    margin    : 0 auto;
    max-width : 640px;
}

.yith-plugin-fw-panel-help-tab-content ul.yith-plugin-fw-help-tab-actions:not( .full-width ) {
    padding-top : 65px !important;
}

.yith-plugin-fw-panel-help-tab-content ul.yith-plugin-fw-help-tab-actions li {
    margin-bottom : 20px;
}

.yith-plugin-fw-panel-help-tab-content ul.yith-plugin-fw-help-tab-actions li > a {
    display         : block;
    padding         : 15px 20px 15px 75px !important;
    text-decoration : none;
}

.yith-plugin-fw-panel-help-tab-content ul.yith-plugin-fw-help-tab-actions li:hover {
    box-shadow : 0 0 15px 5px rgba(177, 220, 228, 0.6);
    transform  : scale(1.04);
}

.yith-plugin-fw-panel-help-tab-content ul.yith-plugin-fw-help-tab-actions li a:before {
    color                   : #03689f;
    float                   : left;
    font-family             : 'yith-icon';
    font-size               : 36px;
    line-height             : 1;
    margin-left             : -50px;
    -webkit-font-smoothing  : antialiased;
    -moz-osx-font-smoothing : grayscale;
}

.yith-plugin-fw-panel-help-tab-content ul.yith-plugin-fw-help-tab-actions li.read-documentation a:before {
    content : '\f10d';
}

.yith-plugin-fw-panel-help-tab-content ul.yith-plugin-fw-help-tab-actions li.watch-videotutorials a:before {
    content : '\f10e';
}

.yith-plugin-fw-panel-help-tab-content ul.yith-plugin-fw-help-tab-actions li.check-faqs a:before {
    content : '\f10c';
}

.yith-plugin-fw-panel-help-tab-content ul.yith-plugin-fw-help-tab-actions li h4 {
    margin : 0 0 5px;
}

.yith-plugin-fw-panel-help-tab-content ul.yith-plugin-fw-help-tab-actions li h4 a {
    color           : #03689f;
    text-decoration : none;
}

.yith-plugin-fw-panel-help-tab-content ul.yith-plugin-fw-help-tab-actions li .description {
    margin    : 0;
    font-size : 14px;
}

.yith-plugin-fw-panel-help-tab-content ul.yith-plugin-fw-help-tab-actions li .separator {
    display : inline-block;
    margin  : 0 5px;
}

.yith-plugin-fw-panel-help-tab-content .yith-plugin-fw-hc-articles h3 {
    font-size : 18px;
    margin    : 0;
    padding   : 10px 0;
    position  : relative;

}

.yith-plugin-fw-panel-help-tab-content .yith-plugin-fw-hc-articles h3:before {
    content    : '';
    background : #03689f;
    display    : block;
    height     : 100%;
    left       : -40px;
    position   : absolute;
    top        : 0;
    width      : 15px;

}

.yith-plugin-fw-panel-help-tab-content .yith-plugin-fw-hc-articles a.button {
    font-size : 16px;
}

.yith-plugin-fw-panel-help-tab-content .yith-plugin-fw-hc-articles-list {
    margin : 15px 0 30px;
}

.yith-plugin-fw-panel-help-tab-content .yith-plugin-fw-hc-articles-list li {
    display       : block;
    margin-bottom : 10px;
}

.yith-plugin-fw-panel-help-tab-content .yith-plugin-fw-hc-articles-list li:before {
    content : '-';
}

.yith-plugin-fw-panel-help-tab-content .yith-plugin-fw-hc-articles-list a {
    text-decoration : none;
}

.yith-plugin-fw-panel-help-tab-content .yith-plugin-fw-submit-ticket > .box-with-shadow {
    padding : 30px !important;
}

.yith-plugin-fw-panel-help-tab-content .yith-plugin-fw-submit-ticket h3 {
    color     : #b90a0a;
    font-size : 18px;
    margin    : 0 0 15px;
}

.yith-plugin-fw-panel-help-tab-content .yith-plugin-fw-submit-ticket p {
    margin-bottom : 35px;
}

.yith-plugin-fw-panel-help-tab-content .yith-plugin-fw-submit-ticket .button {
    border-radius : 7px;
    display       : block;
    font-size     : 15px;
    padding       : 7px 15px;
    text-align    : center;
}

/**
 Post type Edit
 */

.yith-plugin-fw-wp-page-wrapper {
    margin : 23px 20px 0 2px;
}

.yith-plugin-fw-wp-page-wrapper .notice,
.yith-plugin-fw-wp-page-wrapper div.updated,
.yith-plugin-fw-wp-page-wrapper div.error {
    margin : 5px 15px 15px 0;
}

.yith-plugin-fw-wp-page-wrapper .wrap, .yith-plugin-fw-wp-page__sub-tab-wrap {
    border     : 1px solid #d8d8d8;
    border-top : 0;
    margin     : 0 15px 0 0;
    background : #fff;
    padding    : 20px;
    box-sizing : border-box;
}

.yith-plugin-fw-wp-page-wrapper .yith-plugin-fw-wp-page__sub-tab-wrap .wrap {
    margin : -20px 0 0 0;
}

#wpwrap .yith-plugin-fw-wp-page-wrapper .yith-plugin-ui h2.nav-tab-wrapper, #wpbody-content .yith-plugin-fw-wp-page-wrapper .yith-plugin-ui h2.nav-tab-wrapper {
    padding-bottom : 0;
}

.yith-plugin-fw-wp-page-wrapper .postbox {
    box-shadow : none;
}

.yith-plugin-fw-wp-page-wrapper h1.nav-tab-wrapper, .yith-plugin-fw-wp-page-wrapper h2.nav-tab-wrapper, .yith-plugin-fw-wp-page-wrapper .nav-tab-wrapper {
    padding-top    : 9px;
    padding-bottom : 0;
}

.yith-plugin-fw-wp-page-wrapper .wrap h1.wp-heading-inline {
    color       : #2a8db0;
    font-size   : 16px;
    font-weight : 600;
}

.yith-plugin-fw-wp-page-wrapper .wrap a.page-title-action,
.yith-plugin-fw-wp-page-wrapper .wrap a.page-title-action:active {
    border-radius    : 3px;
    text-transform   : uppercase;
    box-shadow       : none;
    border           : 0;
    font-weight      : 700;
    font-size        : 11px;
    padding          : 0 14px;
    outline          : none;
    height           : auto;
    transition       : all ease 0.3s;
    text-shadow      : none;
    vertical-align   : middle;
    line-height      : 26px;
    display          : inline-block;
    text-decoration  : none;
    cursor           : pointer;
    background-color : #375f6b;
    color            : #fff;
    margin-left      : 10px !important;
}

.yith-plugin-fw-wp-page-wrapper .wrap a.page-title-action:hover {
    border-color : #007694;
    background   : #007694;
    color        : #fff;
}

.yith-plugin-fw-wp-page-wrapper #wp-content-editor-tools {
    background : transparent;
}

/* === Plugins Upgrader === */

.yit-plugin-changelog-wrapper {
    display : none;
}

.yit-plugin-changelog-title {
    text-transform : uppercase;
}

.yit-plugin-changelog {
    height     : calc(100% - 15px);
    width      : calc(100% - 15px);
    overflow-x : hidden;
    overflow-y : auto;
    z-index    : 999;
    background : #fcfcfc;
}

/* === Plugins Licence Activation === */

.yit-container.plugin-licence-activation {
    font-family : 'Raleway', sans-serif;
}

.yit-container.plugin-licence-activation .to-active-wrapper {
    margin-bottom : 60px;
}

.yit-container.plugin-licence-activation .to-active-wrapper form.to-active-form {
    position     : relative;
    border-color : #e1e1e1;
    border-style : solid;
    border-width : 0;
}

.yit-container.plugin-licence-activation .to-active-wrapper form.to-active-form:first-child {
    border-top-width : 1px;
}

.yit-container.plugin-licence-activation .to-active-wrapper form.to-active-form:last-child {
    border-bottom-width : 1px;
}

.yit-container.plugin-licence-activation .to-active-wrapper table.to-active-table {
    border-width   : 0;
    border-spacing : 0;
    width          : 100%;
}

.yit-container.plugin-licence-activation .message {
    display       : none;
    line-height   : normal;
    background    : #fff url(../images/licence-error.png) 15px center no-repeat;
    padding-left  : 65px;
    padding-right : 15px;
    width         : 150px;
}

.yit-container.plugin-licence-activation .message-wrapper {
    height   : 75px;
    display  : none;
    position : absolute;
    top      : 0;
    right    : -250px;
    border   : 1px solid #ff3838;
}

.yit-container.plugin-licence-activation .message-wrapper.visible {
    display : table;
}

.yit-container.plugin-licence-activation .message {
    display        : table-cell;
    vertical-align : middle;
}

.yit-container.plugin-licence-activation .arrow-left:after,
.yit-container.plugin-licence-activation .arrow-left:before {
    content  : "";
    display  : block;
    width    : 0;
    height   : 0;
    position : absolute;
}

.yit-container.plugin-licence-activation .arrow-left:before {
    border-top    : 9px solid transparent;
    border-bottom : 9px solid transparent;
    border-right  : 9px solid #ff3838;
    top           : 26px;
    left          : -9px;
}

.yit-container.plugin-licence-activation .arrow-left:after {
    border-top    : 8px solid transparent;
    border-bottom : 8px solid transparent;
    border-right  : 8px solid #fff;
    left          : -8px;
    top           : 27px;
}

.yit-container.plugin-licence-activation h2,
.yit-container.plugin-licence-activation h3 {
    text-transform : uppercase;
    font-weight    : 800;
    margin-bottom  : 30px;
}

.yit-container.plugin-licence-activation h2 {
    color     : #808a97;
    font-size : 25px;
}

.yit-container.plugin-licence-activation h3 {
    color     : #313131;
    font-size : 15px;
    height    : 20px;
}

.yit-container.plugin-licence-activation h3.to-active {
    height         : 20px;
    position       : relative;
    vertical-align : top;
}

.yit-container.plugin-licence-activation .spinner.show {
    display        : inline-block;
    vertical-align : middle;
    float          : none;
}

.yit-container.plugin-licence-activation h3.to-active > .spinner.show {
    display  : inline-block;
    float    : none;
    top      : -3px;
    position : relative;
}

.yit-container.plugin-licence-activation .licence-check-section {
    margin-bottom : 60px;
}

.yit-container.plugin-licence-activation span.licence-label {
    font-weight   : 500;
    color         : #606060;
    margin-bottom : 30px;
}

.yit-container.plugin-licence-activation .button-licence {
    border             : 0;
    font-size          : 13px;
    text-transform     : uppercase;
    background-color   : #808a97;
    color              : #fff;
    font-weight        : 700;
    border-radius      : 3px;
    cursor             : pointer;
    text-decoration    : none;
    padding            : 5px 7px;
    -webkit-transition : background-color 0.3s ease;
    -moz-transition    : background-color 0.3s ease;
    -ms-transition     : background-color 0.3s ease;
    -o-transition      : background-color 0.3s ease;
    transition         : background-color 0.3s ease;
}

.yit-container.plugin-licence-activation .button-licence:hover {
    background-color : #4d5c6f;
}

.yit-container.plugin-licence-activation .button-licence.clicked {
    cursor           : not-allowed;
    background-color : #e2e2e2 !important;
}

.yit-container.plugin-licence-activation .button-licence.licence-check {
    font-weight : 400;
    padding     : 12px 19px;
}

.yit-container.plugin-licence-activation .button-licence.licence-renew {
    text-decoration : none;
    padding         : 7px 12px;
    font-size       : 9px;
}

.yit-container.plugin-licence-activation .button-licence.licence-renew:focus {
    box-shadow : none;
}

.yit-container.plugin-licence-activation table:not(.to-active-table) {
    width           : 100%;
    border          : 1px solid #dcdcdc;
    border-spacing  : 0;
    border-radius   : 5px;
    border-collapse : separate;
    overflow        : hidden;
}

.yit-container.plugin-licence-activation table:not(.to-active-table) th {
    border-bottom : 1px solid #dcdcdc;
}

.yit-container.plugin-licence-activation table:not(.to-active-table) td,
.yit-container.plugin-licence-activation table:not(.to-active-table) th {
    border-right : 1px solid #dcdcdc;
}

.yit-container.plugin-licence-activation table td:last-child,
.yit-container.plugin-licence-activation table th:last-child {
    border-right : 0;
}

.yit-container.plugin-licence-activation table thead tr {
    background-color : #f6f4f4;
}

.yit-container.plugin-licence-activation table tbody tr {
    background-color : #fff;
}

.yit-container.plugin-licence-activation table thead tr th {
    font-size      : 13px;
    color          : #313131;
    text-transform : uppercase;
    font-weight    : bold;
}

.yit-container.plugin-licence-activation table thead tr,
.yit-container.plugin-licence-activation table tbody tr {
    line-height : 60px;
}

.yit-container.plugin-licence-activation table tbody tr td {
    text-align  : center;
    line-height : 20px;
    padding     : 10px 5px;
}

.yit-container.plugin-licence-activation .button-licence.licence-activation {
    padding : 12px 18px;
}

.yit-container.plugin-licence-activation .to-active-table tr {
    line-height : 75px;
}

.yit-container.plugin-licence-activation .to-active-table tr.plugin-row {
    background-color   : transparent;
    -webkit-transition : all 0.3s ease;
    -moz-transition    : all 0.3s ease;
    -ms-transition     : all 0.3s ease;
    -o-transition      : all 0.3s ease;
    transition         : all 0.3s ease;
}

.yit-container.plugin-licence-activation .to-active-table tr.plugin-row.error {
    background-color : #ffdcdc;
}

.yit-container.plugin-licence-activation .to-active-table td {
    padding-right : 12px;
    width         : 33%;
}

.yit-container.plugin-licence-activation .to-active-table td.plugin-name {
    color          : #808a97;
    font-size      : 12px;
    text-transform : uppercase;
    font-weight    : bold;
    line-height    : 20px;
    width          : 20%;
    padding-left   : 20px;
}

.yit-container.plugin-licence-activation .to-active-table td.activate-button {
    width    : 15%;
    position : relative;
}

.yit-container.plugin-licence-activation input[type=text],
.yit-container.plugin-licence-activation input[type=email] {
    -webkit-transition : all 0.3s ease;
    -moz-transition    : all 0.3s ease;
    -ms-transition     : all 0.3s ease;
    -o-transition      : all 0.3s ease;
    transition         : all 0.3s ease;

    border             : 1px solid #dcdcdc;
    padding            : 0 15px;
    border-radius      : 3px;
    height             : 41px;
    width              : 100%;
}

.yit-container.plugin-licence-activation input[type=text].require,
.yit-container.plugin-licence-activation input[type=email].require {
    border : 1px solid #ff3838;
}

.yit-container.plugin-licence-activation input[type=text]:focus,
.yit-container.plugin-licence-activation input[type=email]:focus {
    webkit-box-shadow : 0 0 1px rgba(30, 140, 190, .8);
    box-shadow        : 0 0 1px rgba(30, 140, 190, .8);
}

.yit-container.plugin-licence-activation input[type=text] {
    text-transform : uppercase;
    text-align     : center;
}

.yit-container.plugin-licence-activation input[type=email] {
    text-align : left;
}

.yit-container.plugin-licence-activation input[type=submit]:focus {
    outline : 0;
}

/* === Woocommerce panel === */
#plugin-fw-wc .yit_options {
    padding : 0;
    border  : 0;
}

#plugin-fw-wc .yit_options input.upload_button, .yit_options input.button {
    background : none;
    border     : 1px solid #ccc;
}

/* === WP Pointers === */

#adminmenu li.menu-top.yit-pointer-selected-row,
#adminmenu li.menu-top.yit-pointer-selected-row:hover,
#adminmenu li.yit-pointer-selected-row a.menu-top {
    background-color : #acc327;
    color            : #000;
}

#adminmenu a.menu-top.toplevel_page_yit_plugin_panel.yit-pointer {
    color : #000;
}

#adminmenu a.menu-top.toplevel_page_yit_plugin_panel.yit-pointer:hover,
#adminmenu .wp-submenu a.yit-pointer-selected-row {
    color : #fff;
}

#adminmenu .wp-submenu a.yit-pointer-selected-row:hover {
    color : #45bbe6;
}

/* WooCommerce 2.4 Support */
.woocommerce table.form-table .colorpick {
    width : 6em;
}

#wpwrap h2.nav-tab-wrapper, #wpbody-content h2.nav-tab-wrapper {
    border-bottom  : 1px solid #ccc;
    margin-right   : 15px;
    text-transform : uppercase;
}

/* === YIT FRAMEWORK === */
.plugin-card .plugin-icon img {
    max-width : 100%;
    width     : auto;
    height    : auto;
}

/* === Panel Content and Container === */
.yit-admin-panel-container {
    position     : relative;
    margin-right : 15px;
}

.yith-plugin-ui .yit-admin-panel-container {
    position     : relative;
    margin-right : 15px;
    z-index      : 0;
}

.yit-admin-panel-content-wrap {
    width   : auto;
    display : block;
}

.yith-disabled {
    opacity        : 0.3;
    pointer-events : none;
}

.yith-plugin-fw-select,
.yith-plugin-fw-slider-container,
.yith-plugin-fw-text-input,
.yith-plugin-fw-text-array-table,
.yith-plugin-fw-textarea {
    width     : 400px;
    max-width : 100%;
}

.yith-plugin-fw-text-array-table input {
    width : 100%;
}

.yith-plugin-fw-panel-wc-row.preview {
    float : none;
}

.yith-plugin-fw-panel .subsubsub {
    margin : 0;
}

/**
 * Sub Tabs
 */
.yith-plugin-ui .yith-plugin-fw-sub-tabs-nav {
    background   : #fff;
    padding      : 10px 20px 0;
    box-sizing   : border-box;
    margin-right : 15px;
    border-left  : 1px solid #d8d8d8;
    border-right : 1px solid #d8d8d8;
}

.yith-plugin-ui .yith-plugin-fw-wp-page-wrapper .wrap {
    margin-top : -29px;
}

.yith-plugin-ui .yith-plugin-fw-sub-tabs-nav h3.nav-tab-wrapper {
    text-transform   : uppercase;
    line-height      : inherit;
    font-weight      : 600;
    margin           : 20px 0 0 0;
    box-sizing       : border-box;
    background-color : #f1f1f1;
    padding-top      : 0;
    border           : 1px solid #ccc;
    border-bottom    : 0;
}

.yith-plugin-ui .yith-plugin-fw-sub-tabs-nav .nav-tab {
    line-height      : 1.71428571;
    margin-left      : 0;
    margin-right     : 0;
    background-color : #f1f1f1;
    color            : #336374;
    font-size        : 12px;
    padding          : 8px 20px 9px;
    border           : 0;
}

.yith-plugin-ui .yith-plugin-fw-sub-tabs-nav .nav-tab .yith-nav-sub-tab__title,
.yith-plugin-ui .yith-plugin-fw-sub-tabs-nav .nav-tab .yith-nav-sub-tab__icon {
    vertical-align : middle;
}

.yith-plugin-ui .yith-plugin-fw-sub-tabs-nav .nav-tab .yith-nav-sub-tab__icon {
    margin-left  : 8px;
    font-size    : 22px;
    margin-right : -3px;
}

.yith-plugin-ui .yith-plugin-fw-sub-tabs-nav .nav-tab .yith-nav-sub-tab__icon:before {
    color : inherit;
}

.yith-plugin-ui .yith-plugin-fw-sub-tabs-nav .yith-nav-sub-tab--highlight {
    color      : #fff;
    background : #2a8db0;
}

.yith-plugin-ui .yith-plugin-fw-sub-tabs-nav .nav-tab-active {
    color         : #2a8db0;
    background    : #fff;
    border-bottom : 0;
}

.yith-plugin-ui .yith-plugin-fw-sub-tabs-nav .nav-tab:first-child {
    border : 0;
}

.yith-plugin-fw-wp-page-wrapper.yith-current-subtab-opened > .wrap {
    /* padding-top: 0; */
}

.yith-plugin-fw-wp-page-wrapper .nav-tab-wrapper {
    border-bottom  : 2px solid #e9e9e9;
    margin         : 0;
    padding-top    : 9px;
    padding-bottom : 0;
    line-height    : inherit;
}

div.nav-subtab-wrap {
    position    : absolute;
    top         : 100%;
    left        : 1px;
    padding-top : 10px;
    visibility  : hidden; /* hides sub-menu */
}

ul.nav-subtab {
    opacity          : 0;
    background-color : #fff;
    transition       : max-height 0.5s ease-in;
    max-height       : 0;
    z-index          : 100;
    overflow         : hidden;
    border           : 1px solid #f2f2f2;
    padding          : 14px 15px;
}

ul.yith-plugin-fw-tabs {
    display : block;
    margin  : 0;
}

li.yith-plugin-fw-tab-element {
    position : relative;
    margin   : 0;
    padding  : 0;
    display  : inline-block;
    overflow : visible;
    z-index  : 10;
}

.yith-plugin-ui li.yith-plugin-fw-tab-element {
    margin-bottom : -1px;
}

li.yith-plugin-fw-tab-element:hover {
    cursor : pointer;
}

li.nav-subtab-item {
    padding : 3px 0 0;
}

li.nav-subtab-item a {
    font-size       : 12px;
    text-decoration : none;
    letter-spacing  : 0.05em;
    color           : #336374;
}

li.nav-subtab-item a:hover {
    color : #228fb6;
}

li.yith-plugin-fw-tab-element a:hover .nav-subtab-wrap,
li.yith-plugin-fw-tab-element:hover .nav-subtab-wrap {
    visibility : visible; /* shows sub-menu */
}

li.yith-plugin-fw-tab-element a:hover ul.nav-subtab,
li.yith-plugin-fw-tab-element:hover ul.nav-subtab {
    max-height         : 200px;
    -webkit-box-shadow : -2px 2px 10px rgba(0, 111, 101, 0.27);
    -moz-box-shadow    : -2px 2px 10px rgba(0, 111, 101, 0.27);
    box-shadow         : -2px 2px 10px rgba(0, 111, 101, 0.27);
    opacity            : 1;
    transition-delay   : 0s, 0s, 0.3s;
    min-width          : 180px;
}

li.yith-plugin-fw-tab-element a.nav-tab i {
    margin-left : 10px;
    font-size   : 12px;
    font-weight : 600;
}

li.yith-plugin-fw-tab-element a.nav-tab i:before {
    color : #fff;
}

.yith-plugin-ui .yith-plugin-fw-sub-tabs-nav ~ .yit-admin-panel-container {
    margin-top  : 0;
    padding-top : 0;
}

.yith-plugin-ui .yith-plugin-fw-sub-tabs-nav ~ .yit-admin-panel-container,
.yith-plugin-ui .yith-plugin-fw-sub-tabs-nav ~ .yith-plugin-fw-wp-page__sub-tab-wrap {
    border     : 1px solid #d8d8d8;
    border-top : 0;
    margin     : 0 15px 0 0;
    background : #fff;
    padding    : 0 20px 20px 20px;
    box-sizing : border-box;
}


.yith-plugin-ui .yith-plugin-fw-sub-tabs-nav ~ .yith-plugin-fw-wp-page__sub-tab-wrap .wrap {
    margin : 0;
}

/**
 * Float Save Button
 */

button#yith-plugin-fw-float-save-button {
    display        : none;
    align-items    : center;
    border-radius  : 60px;
    bottom         : 50px;
    box-shadow     : 0 0 6px 3px rgba(0, 121, 159, .2);
    padding        : 6px 20px;
    position       : fixed;
    right          : 70px;
    text-transform : uppercase;
    z-index        : 2;
    transition     : 0.3s ease-in-out;
}

.ywtenv-is-sandbox button#yith-plugin-fw-float-save-button {
    bottom : 100px;
}

button#yith-plugin-fw-float-save-button.visible {
    display : flex;
}

button#yith-plugin-fw-float-save-button i {
    font-size    : 15px;
    margin-right : 8px;
}

button#yith-plugin-fw-float-save-button:hover {
    box-shadow : 0px 1px 6px 3px rgba(0, 121, 159, .3);
}

button#yith-plugin-fw-float-save-button.green {
    background-color : #98aa36;
    border-color     : #98aa36;
    box-shadow       : 0 0 6px 3px rgba(152, 170, 54, .2);
    transition       : all 0.8s linear;
}

.rtl button#yith-plugin-fw-float-save-button {
    right : auto;
    left  : 70px;
}

.rtl button#yith-plugin-fw-float-save-button i {
    margin-left  : 8px;
    margin-right : 0;
}


/* === Responsive === */

@media (max-width : 767px) {

}

@media (max-width : 480px) {

}

@media (max-width : 992px) {
    .yith-plugin-fw-panel-help-tab-content .row {
        white-space   : normal;
        margin-bottom : 0;
    }

    .yith-plugin-fw-panel-help-tab-content .row .column-left,
    .yith-plugin-fw-panel-help-tab-content .row .column-right {
        width         : 100%;
        margin-bottom : 50px;
    }

    .yith-plugin-fw-panel-help-tab-content ul.yith-plugin-fw-help-tab-actions {
        padding-top : 0 !important;
    }
}

@media (min-width : 768px) and (max-width : 992px) {
}

@media (min-width : 980px) and (max-width : 1199px) {
}

@media (min-width : 1200px) {
    .yit-container.plugin-licence-activation {
        width : 900px;
    }
}

@media only screen and (-webkit-min-device-pixel-ratio : 1.5), only screen and (-o-min-device-pixel-ratio : 3/2), only screen and (min--moz-device-pixel-ratio : 1.5), only screen and (min-device-pixel-ratio : 1.5) {
}
PK`x1\�LRAA"plugin-fw/assets/css/yith-icon.cssnu�[���/**
 * DO NOT EDIT THIS FILE DIRECTLY
 * This file is automatically built using a build process
 */

/* stylelint-disable function-url-quotes, declaration-colon-newline-after */
@font-face {
	font-family: yith-icon;
	src: url("../fonts/yith-icon.eot?47f77c3e4343c8aa92110ae8ec8e9276");
	src: url("../fonts/yith-icon.eot?47f77c3e4343c8aa92110ae8ec8e9276#iefix") format("embedded-opentype"),
		url("data:application/x-font-woff;charset=utf-8;base64,d09GRgABAAAAACAQAAsAAAAANcgAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABHU1VCAAABCAAAADMAAABCsP6z7U9TLzIAAAE8AAAAQAAAAFY4xksKY21hcAAAAXwAAAGpAAAEyNC9cJFnbHlmAAADKAAAGPkAACj8NzNL12hlYWQAABwkAAAAMAAAADYcZKiiaGhlYQAAHFQAAAAeAAAAJAQ1AjFobXR4AAAcdAAAAC0AAADsc+X/6GxvY2EAABykAAAAeAAAAHgUux7ebWF4cAAAHRwAAAAfAAAAIAFZAVZuYW1lAAAdPAAAATAAAAIiyMcJZnBvc3QAAB5sAAABpAAAAqVbl2cyeJxjYGRgYOBikGPQYWB0cfMJYeBgYGGAAJAMY05meiJQDMoDyrGAaQ4gZoOIAgCKIwNPAHicY2Bk/M44gYGVgYNBjDGNgYHBHUp/ZZBkaGFgYGJgZWbACgLSXFMYHF4yfJRiAnH1mNgYeIE0I4gDAI+GCE54nO3UV47bQBCE4Z+SqJyztDl4ndY5G/AdDB/TB/KTL9CAX/oE6xqWj2EKn0AO0wy6i0ANtOVeOlD9pqJsvzRaNeNths14h5867uvXgrjNVh4fHrRHVlmXvWardP47P5qn1vQYMGXJhgPXcs9LPvCeC/baO+HImImueMZr3vGFFzxhpGcMmbFjwTmf+cqWx6x4y1M+csMZrzjlkk880kw6dPXGOc95w5pbrrjTJLr838blr/Xn39G3Uikr9Y7KSv2jZaoW0TbVjeiY6kPUploSXVNViZ6ptkTfVGliYM340EqPxchUfWJs6ghiYuoNYmrqEmJm6hdibs29C1MPEUtTNxErK6uPtVGevbFmLVtT1xE7U/8Re1MnEgdTTxJHU3cSJ6Y+JU6NsqYzK5mJcyu5iQujrOPSKO+8Mso6ro1y342p75UxUwKUMVMWyJYpFWRtygfZNSWF7JkyQ/ZN6SEHphyRQ1OiyJEpW+TYlDJyYsobOTUlj5yZMkjOrXwXcmHlW5JLo8xrZZS5rI1y38aUX3JrSjK5M8q1e1O6yYMp5+TRuPsL0OuV/gAAAHicrVoJsB1lle7T2999e7m37+3l3Xv77ku/fbtL5/G25MHLRggJ5CVBdvKC4EApOIiJKFFrUARkrHGMJhFxFwZrxnIDtSAzBRh0SlEGBqFw1DwdF8rBODNuod+cv/u+JQmiVs2rm9P/3v85/1m+83cYk8E/eIZlmBTjMFmmjxlippmzmQuZXcxrmb9i3sLcytzN/B3zEeYB5kHmUeZJHF1plaxKWbQM026URtsto1mvNawKZ5QMDttzYNrjMNqehGadtBoWeYW21iu0+X9mm/cKbfS9UUuz3lhVrqyu9MErD4KH+oKFPjWRUOFGpMETCwsb4MYNC7SFkpcWvp6j5ZxiGN25VcU9rmoYKiXd7jxtUmhnT25+VfslhON5jhJPoaUYJwjcjpDGsD4Qixp5/rzlgXBkfj6hBkfogjCvJjZuDA7AfHAExqIX07eM5XJHDCVOa0j64vEDCVWnb9XVRK+u955em6cjca0D8/N9p8yDfbzIv8qPqsdiwDAswDsZgWFq4Du+A0ywmD/+o8I8QP748TyOCfXoZGeMF405af70p+YbQxp2M8ziIrybBTpGkMEhDrwuWAyXAPqHz844JO+Ek0tr4bjXn6TL8CFdWeuD0VqO53s+fIDuJFolHywur3NXtI5Pxzjvo3s5yYcU+VoM+fpg9B7iyQDHozXgzeEzXGaZt7uWxiFvP6UrnHxrSGm3SgnLwG8YBe2oglY0zmxAK7qcmWeuYa5n7sId/BEdXV12VqvuKs1l//RU8Ig1jTL1SAsl5ldIYxQttFIqo32Og3+awf61TjVQR21rx1lBYONhiWogJR4thCP6ohKS4686A9Qt79+y3U24N1zlXvn+ut5k2WCCZX+u/q+aTKrwKNJHz1Su815d92Db0C93VH9jZJP/Vvhw8sj2HBsELAssm0tqQRAuzGpJRovOEX1YhfGYfmaEaTETzFpmfUf2b0IfxkAj9BZDUI9Dx31YHUdCZUIdSR9Qz0RpDUVoEavUIuUxrObYSksYrpR8oUZsx2q0pqDp1b2W7fhIK5YOpoPtdd82idf0sUCPhR4KKdeb7VHbFGFBFyXpV4T8SpLEBFDbhMeRKpPFAhSDuYWFi4IXx6FYhPsgGAP4evDrWMI1TEuTU7om6zYtSqZZ07S8ppnJTKaaySSJLOuyDP2S2Jb4Axz3dl5uitJThlqgL0BSLE4cdPP73lxwn3rq4MGDbrF4SRH2WiqbMlmzIIt8niWWzKZSrIU1Icc6gsHOxLg0/+MsvqCanaQv0GWq+atk3MfMMtvDSBB51dzq0qmK5mFkoP/ArNRSDWvJbTvLpQapWBWrgVJttCpwfC70cTeGTm5uWUyHcrmv53Kwk8pm9Yidz7tjY/iDxwrUpRUiaqjBzeHU21WjMD8/H3wELfo9PdRx90A3fXQforNchtGW+eIYgymE3LUw/m1gzmX2MrcxdzB/i3ziGZNQf3CrWDZtn+53ieNxNmLxlMaGE42MmFzqr/jIqhGKonWaoDhcehA833Zada/earZ91EbbIXUPqW2ZotcSLdNpelYbxm4cQxG4ORdF4YaCwLI75rrHwybatdQ+FrbfMBeJbkWi/24nXFk1uhwlkemyM4aSSDixRHow0cKY8JmcO4uywj+MGB2huq473inOdkdCzIV/wc1Uuu5qoQf3dXWBTDIaWxGJYibTXJfDKlmZrQph9ZI8r8pjspin4YVJrDoDgv4z3sEihY6uDYVo5GLmJgQpS2Ls/BP+RD31/6KhN7ruXC6Hv52uu8j8scoNf6Hqgtv56zvtCRf+hcqM4iOd+PM0Si/LVJkB1OGLmKtQd0unqVknJGDdIme4qaUYZS0HlhBhVVqNJQC1hLww4DgNbxCI0IAfBRPLXj4W+n14lF3oKpeHy+Uu3HvaMPYVRFkWDROdoFjG4kumQYthaxlLwGfyOc5Wgn+4FDYn1SDQkkkNWDUZ/CD0+OxmuthweXeyK4m/eVmVNuI/Sdwryns3SiousxeXUWUYuOA1isJdH+IWGhc4+C71XjLQsM1ywZNP5f4RLHgouOpo8V64maFaF8qOpVE8jVrHlMqD0JyC0TyYOnBldO95GEWfPwhcB9nMvml29k3voWR26pqpqWtuoWT7TnP6dXanHQksdDqQBEe3WmPvSHawRADPdjCJA853/jX1RUg7w1+1PgVvM5b3Q+2B4vFxHFeu4zG0Uew2OpbW6oNoCZXVnabInQqOK+vith3/Ztx269lvZuv17Bz0hE9KftLps+Pf7jzn5jp97rc745HASKcXyQoe+ip8FW2VCRFHiK2Ql/yR/JGlHzCrKlS4OPZL8KXQxnEWeCkgAB81g/tNE3biA75Iy7AzJMyyTlM5UJ+QDr3BNHM+egHKbpRCNAhabi30ux7Jg4D/wq469RQCdcHhMBpgVoSSMkWU4LLYLNeOSxLyTG1vxM13CVoyeNHlq11dXbp5xeWXw9ob3clsvVqNZBJbEQc8EkqW+Jd/GAdXeZe1vi84BTcJBfcgHT/p3tiRYvDfy9JGtqSOvd6LnDmhp1tCjGdYrFAazUGp1cT2SShZZuiv/oy05hRwuNpEg2E0z2ANPI6WCseuLhaP6Usob2K59PrlUnsZ+MFHqGVGuEtNuqzvs8Hv2UOH2D1F51Xzh98v/poV8RzRtoBgYHR8jzg+umj6QH7CB+Zx+ICvmD3/3Geee77Z9y8D5vlbTqkBPh+KWh/stbZg7RtR7QmsdeyGsCLDo3w1avPEhwpqJ306cDi4Vd8Pb+9ZOzMdfH+LBKkZVgxu3afDgbXnrA12SedC8hy6hLD4B1xHgB/jyXjMWYgEtuK+MSh7iP5EIlbKWGiM+m2/PQ1CuQ9ord1qIgA3xRSpV8oER8UBMaFNcxcBBzZGHdpBIzip+6QNJzWrp98abxb71m8tFZ2+gQ3rBj1LIcFJdO+OpmVqomPed213fXLtYL+jSyRmVvuvN+Hzwc76wKazMzkP42uNmxr/TEoERU9WHDs3Ws32Sl1a0amlEnLFEaoZTXM43QTxWrVg11JxWY4nq851uMqTtWyf5HG1DJEnc9tSIQziO3zfzthhBGljtlNGrutDQHkddewCUM6IWEPOKP/Yh7w6S9HDW4onwHS4kQoDr3ngNYN5iSiWN7gueK7YP3tkfV8RWbht08BDmVqtWatldNN0TXM/7ttMyHKpMDFZKMlyIlVziu+qZfp6s9Vatr8vu6eKg5vVK+hg1+xgN/gs/DZE/LuYPczrmVuY25mDzCeYzzGPM08yP0YO6uGWR3SoIA8UWhFEUqfGsknoHKc/Ba06eo2GI4b43m87OhAdnBHRbmDNH6GDGhauyFGeC2DrUPbwYYplTC2widh48iJKZBrao370iJo8v9lujKC7IWZlpEyw4o/i9IpXrtcaSyVsJZaIehNtyGuhXtVRrA71WB4iQtPDFUzKUwhpvAgrwidjKT0RS5ox1SQ8xLouyY7rSkLRQzI3UTJrPXacYyG4T9efdc8eHprOz9pyryOgDybCjBvriku6TJJW6XleUvhuHojCP+DRMiV38YBtisT38Mp+nlIpbLgAJEEkoGmHJGFMlIBSAuYaLBJxTJAk4W6IKTabUkQOoKverm/lJEhAIZ5wJEHiCpwoSs7dKstKvKqCFBOIKiUdwgkxXY/dQkncEFU3rnGSqFz15ktkwsdGWWKIgsrTd8sxno3LPHIR1y24klcI3Rzhb+5ZKqp8xAKSd64U+9aIRBbbyjWCyEqqxJG8pEgsUchMRYtpoGInV3e70He3NnAxluP/xk5IWkzixGyXwJNYPJYIY6G4jB3ijMsUmW7UxbPO9OHEQEuJQ0jS4EMPNEfQqhyLo+ZCzcanBkTPHxaCNeHNzzFKN/Aqv/swrwhX3wBicDvcw75x6/avdVWrI5VKGjFSBlM3xlBWprjBd9cLwu6DPH81xIMn3hAsAnvD1m03QopOGaleksrQWaG9L++dxmSKuEN8bVHcfNr+wSgZJ2h8PLFqc8EAHIMDfb2fhltW7yBw4Viw5pT1Ka7KMaVXQ1ak8+Y/gq220Je/MrSaxx3QeLp4EuPpy4irFMzkangSM8xOzBoY36E3Ni0aY4ZYGmhQNdFYSckoOQgX0Jgc2+QaXkr00PLrlGDyhdRqOy1EEEZpmqWuAzdJHbiTR8fedjyROHeYQ5VUPJ6qDJluSOH6mORIGyF4B1Qvha6svFV6enDQ97yLBx0prlrG6Hy1MncCZiUi6pLs9KbrLeAKXameOzZw/Ow/mYN5W7tMswpD5oxu5wfN4DuyJG18O8vs3W00cra1VXLgwpHgE7qe6yq56f5EDmR1cD4Yu1kQ1ETK6upJt2pK2pMlvrlBENZHZwCPQxDipwazNsraBwFlH2ZCqy9AatHRYLtgipgmhAgJO6nLEgnmp9TVjNpwGLrP2XZONyTT6ST0Ig1+WPTX+aWXICuJwTMU00OvKL1bwgwwYSfAm+k+pxt/M+nkt+gcJDNFv1TyizO/o4O/RVOBTZLGTU9LCUxEI91ZXAx1x8Z9r2E205s39M7RzlFrMOL6Dg02K/qEulWjZ4QOOw805GKUaqB2OSFz9OjQb1LPitF3fyY3sffmq8fHrx7vOTe/n1elwG3uvnZ3o4GkCRPWuvpgXUCHIBRqhVZCIILEmixmHMCi+rCi1LU/f27POF3g5r0Tucx+XlIh0dzd7CzyrkIlwyvoOGw3I4rKvKrI1OEQ5DYGZDnngBOouR6eC5Oi95weylgwItmj2bXDRCwHDoaCVpNeTI3aXCvUXsvEczlq7rzAGnJBRVgWwrtPfYr9xTMcz3784wjPnuZl7jjNxOAO64KdqeHHnnjfSlrlstl7DrHgsm4yOPHYhzj20GPsCrY/ATbdIVilFpxAe7Z6e1f1xWlfqmSVdPRVLujusq1TrL6WuYK5ltmPdtdC4EDDU8NqUFhAz24IBrnmFBtdbdgUUPSBF9kVnmkB8pyps8RyEGMtOQq0T9tprz54f+V+zQmFMQg0FCNCycN/yRqbELg8OqyUGBM8Oa6IRE0pBUWLiQLHuhiGkrqRFCWxpiRUkegptV2qLDkaRZONJecz0K+eX2s2NzebyhAvcXkORJmzuzlU7jtzmLtIKVliNU1VRElgY6ykxM24SthikRUFRZJlPoaHTiSeVTgpppsJTWZze5WO35qqlGW1f3DJ1yViH2tuauJvY4PnMpxMuFQfL8odPYGHoA/1xGAyKPeI8TKiw9MLG9KVNP7em66m8Xd3VAMmSWvp5CmPzrroMRHnbWOuw3IHVXgUvcbZEMB6poP4KMS51AOOgx1ikjogqFlV9RBMhSCLw5NaPQHhU3jKZCREjd5I3Wv6I/CcLmWvGzuP1zCYcxYyK0vrOUFfJ8XEGGtzvBjT+PPGrsvGOC640+J4Ikd1hRdrg5e+T5ZJjLscgBeVGQknj5ksT8fYhlKReA5Rr2fqiCjg05lSJn1R0UCAI5HL4pLIAkhofmi9+uVEQuhjFC8qFnqDo8u1amkoWwkHBHvx6AgtBheKBHsRPLFiPq7VkhrHsrxKwitRKfp+Bi8wKfRUBaYXbXmCmaVZKqpl5bQw6pFKCzUzTEUNz6ZpqEXvVkiYxlmo2mHbKS1RWMRhcGRIIsHPlr5TCWq1P3gKEpK44+WYZWt2xRZ4RVHjylv0bK5UzrJSwlD1+FsH+/tt+OSQlFCDA+HkOo+gqD84DAfmRDlYeE6qGe6eYcEgJU8bzO7ZKOUSE+en7JS3h2FioR8GWOjoX4XpR6x9Puapu5nLUBvPgC/+GS3OmS2n3MWtjkBCxW8gxyknNUzFsDOVy3m5nCkpiqEon3c9b43nuQnHKTrOV8xcrtt1TTnsW7fPUD+kGvvCm7LHaJL7mf2w78uH4dAHYN9+kOnQ7tysmlDxF6fLrPFeR5cpOg+f0nfppGYY2qShfZku9aBqPP1g7mlIQfDLB1f7xxP07qMWXge3GtTDwYkXel/A3y8oeaFz30HHhfcd1FumGkYl9JgLLnWawARuZz1Wge8wtFKKEuJSGIQxolVwGgawSQqQ4Jbg8cEUOvwmrCs2C4VmMbgH9tRnPG8G7h5AD2+2C63CWuzKeTPeWm+mvozx4GX4FuIiK7xPYqK7GlJB90pDJKHuVwch/K5FynXPpz4WQ20DN3DuBqvRMmfc9qX+xHw6Y+1qDG0bgr9vtszNG14OW3Y2sQX7f77JRDEM+JciEFAG1wxtewsusGHzoXVtdWjN0PYh7OjsZ/G3YVznQ3up0LsgBJe1FUuhkdsyvOXLSR+FAO/dGayBtwXviECmgLZMXvuh0tDQzNDQdPAjjPcLO4P3wjE3AqIsSvTe1/4n7Z0Z+tiFNKcP5fAC/C6UwRZmO2JDRBT1lfR2GqKAFGW4hKOeqx3luIj1ROcvuJ5nRMtt1dtJVvUGdmMub25qNFQ22a63XOuos6l3eLh3kzPUe3Y+f3bvB20jH9OSmbSSdDO2m1SMZFoxssOGn0iInOz0TV90k8Zj9tzjONVqOs5rN1003WfHYNttF7ey2dbFt8WtYrVaNB9Pd0GMuDpbx4BnpbJcOs0qboz1BEmxk9kri7wWG5fFAt/RzaOICYVQi0N9CPGxA/BI/qP35h+mlH04f++9+VsfeQQfnTmPsEw0J0IrRqitu8yHHzbvv59S6DOPHjUfCLZ/1jp61IogzlIOoDBz1GKo/dNLNxQYQbFhet1BZ6jwziDrrVxqEQ811A/dQ+gcvHx41+ikvI7KRrlDqwnfzwmyLOTo/a9VOmt+ArGYxK+5fELgedoo5gQezrpqHLAZvPXuwR5r6g/mRGXX8FL4/Qn24O/jZnt64uopjheWpnH+xT5HV2PHr57iOTZ6Ecux+fThgdQ5wJlTxfISYNi8rGfPhflglPP0ULumH31oaETlbhkNLrp/bBkl0vn2wNFPR+jo4blgS8U00ifShlmZNvUTugntfbnclbkcuTP3eA7e5QYv9nZZVlcvmMGL2WIxC+b49773PbhrfNeuJf8Uyju/koVisFm6cUNTw9d0krpOpvk/g9R7NJ+FY4cPY30pnwRrxJy7wBo9SdM5N8rtlr4zhDldFaPdMNNkpqktwepkDkLfQl0LtmK0c5DSWs1EVOETmkJVEM1PU+yHpkTdEEc9T2kaVSGE+dQLUe0AZv1Ns7M33UlJ8AzipnMne+Oj4828mawNgJorgp+23M1bS/Vh7j9yYl/R0q30SLmrO7a5Z0s+A6IO/fWkKTRKtalrWKazEpJFBhcbHLQz7rDr9MSTs926Xjj/FrsWUy/YGVP8aqwwrDiiXLMLA04quD+XcSHZPZuM9zi67hfmhnD6cv4fg2fD6DjKTEa3hX4pPOlmvYMAHDvVbJUQpFoloYRSEUnnchYl1sbBqPECDY3hLZvp26PTMIVguU61Hy2tDl8wJcHUgi2qIUgJ+AJwEGyAp4NHBbea49fRJGpGyFZcASZRc4MPE1vjSYbwTU7iziMgbiVxt1a7JybKwGFc04KXZSxm6f90COYNxzFQxw3TpA9XTsRFRRHjX2PZAS7BrxEkeY+8PWsx/OLLFAuEZx99o2NqXL1MODGM381aFqgut2gW//JLfJI/wUkSLCCCqj3//M9oAu/ADwkJcpImKTJ8Kdi8q+8H76GWEmIMFnDdJK6aRt2tMvXwS34Dc78pzCk+B5vQ65xyYdBGX1yZBNtBzIpuuO3Tb/OVNmYP9IKu7ljY5jR8emVLP9M3RL/llyt1OhTxK/2fAOU4iLS6ch8o4uB6p8csAGrr0i0hunraQk+Gvlhc+TzYxlfbnR66Kq36jc6XM2rpdH/hdTC9J6Q3gThoCGiTFX6yib5F1P2W12mO7hJxOTSQsGnV1wrkqNMc3S3imjT1mYbWqs9ANgqh0xyOoG+NNtCIvngElfFKZXyWErOUNYU50zBKrG4aydSEW9zBC7Cj6JrbUkmjDNhqmBPZ0g5efAPL6xIGX5nXdV3zNEEWEkmAbMpMoS6lErwsYCv2JWTRSWWzKTSgRGeoJCRSy0OTCWFpKC9j/iRpBIeDQqSElMRcQFAx8xbwGRdERVBjdlrBTpMowCpZW5EFVcAuHYcoJCbGRU4jcoIo4XyNw4bYynyVj8Xs7Mr8tB1TV89X8cklxRjOhwPl8fXj5ZDs4Ewnf1aWiylpl1NiXNHk8vk+VsMU1XHPaPYBjIQQE7Q6cqshT5jrq5SnlKgSZJAIGjJbR2yZjGSQQiuMxlKBitFYnIITZT4ai8sljI7IZjpbl7VTti7qIpeQDNJhPc6J2umsOxmN7fCOoovFThWdJnLxlfkJDhdcJXqUkxyJfjmWwzdYDjOcGSyJJEz/CPXfBMFq2Q+vyeqhsmMjvTQSnTBJ9CNQJXau2c22QAeLcKzquxw3udlWdSUOMNmF/MpyNm2UG0lbiIMLoBnewGAqKcpz9TZP5ta0BkpneXLwkgbsbBXWpTOXbV/HsjuEpJrfkIsP9sUzRZbND9iGBVd0FZMWxxW0RMH23Hr/ebPje3JZYfQ5xSyvY/4PDjEZNQAAAHicY2BkYGAA4jufbkyJ57f5ysDNxAACdxcYX4PR/3/9/8zEzcQG5HIwgKUBkWwN/3icY2BkYGBiAAI9Job/v/5/ZeJmYGRABdYAXzsEagAAeJxjYGBgYALj//+Y4Gxk/P8/djY+MRT5X1D6Nwgz3sOnlhb4/18YGwDYOREyAAAAAAAAAAESASQBNgFKAVwBbgF+AZIBpAJiAxQDgARCBOQFbgWCBbgFygYaBjQGTga8BzIHZgeKCAYIXgmgCf4KLgpkCvALTAu8DAgMFgwkDNAM/A2gDhAOmA6sDsAO8A84D3QP+hAUEDAQqBDoERgRoBIWEkIUFhR+eJxjYGRgYLBm9GIQYQABJiDmAkIGhv9gPgMAF6MBsQB4nG2PPW7CQBCFn/mLAlKEEilSulWKNBHmp6DgANBT0Buz/kG211oWJC6QE+QMOUNOkDJnyFHybEYuEnal1ffevNnRABjiCx6q4+G2fqvTwg3VhdukoXCH/CTcxQDPwj36I+E+XjEXHuABAX/wOtVv93DCLdzhTbhN/124Q/4Q7uIRn8I9+t/CfWzwIzzAizc/py4ZpaEp1jo+ZoFtdAMbbQ+pKdTUnzTeShfaBk7v1PasDqd45lykImtytTSF01lmVGnNXofOT5wrF+NxJL4fmhxnpNwm4dYpQhgUWEMjxhEZN7ZX6v+dDTssDtSVUpjCx+RKbsVcUWcDVjR2zG6ZU+w9ceaMrkNEHTFjkJOWdWeVzngNnbKu7emE9H1OqLpKLDDmjf7k/Xp2/gurBGCqeJxtkVeXmzAQRvnWwsGYeDe9916U3jd/RpEG0LGQFAnWh38fijfZh+hB594zRcyQHCTzSZP/n2McYAGGFEucQ4YVcqxR4Dw2OMQRLuAiLuEyruAqruE6buAmbuE27uAu7uE+HuAhHuExnuApnuE5XuAlXuE1ON7gLd7hPT7gIz7hM77gK77hO37gGD+TXEjpOttqW21ECG7HldtZLkyb/9N9xFDZnomMejhj0FU9hdZnvJi582MgO5X8l7BbLmuSWzZiIYUhq0TgQqnNX2mcpT47VSZFrFdT0dismEnqIA2lk6TSDBWr4Y40pqQTMel8v5aBlG65FEExFUTFRs2pJz4lqcWARU3GD0vgtbAq1Y2oqNC2dDz+7sRQz0ZZGx1bHkkEWTPj5HY15FldagpZI7ThrmtXjbZdnD5hovU0yX7gxgVaetF7YRZelUtPzhvKvJkr2AhpIG/64Y7UsihOqIi1JqP2K4kuTJtmI+StbmjunbZh2NGy88YJlXWRAndlmZ5oRe5oJ4Idh2uDFrYytNm5MHQcXhh/fGS9busk+QOYc8P5") format("woff"),
		url("../fonts/yith-icon.ttf?47f77c3e4343c8aa92110ae8ec8e9276") format("truetype");
	font-weight: 400;
	font-style: normal;
}
/* stylelint-enable */


[class^="yith-icon-"], [class*=" yith-icon-"] {
	font-family: yith-icon !important;
	speak: never;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;

	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;

	width: 1em;
	height: 1em;
	font-size: 20px;
}

/* Icons */

.yith-icon-accounting:before {
	content: "\e91d";
}

.yith-icon-arrow-down-alt:before {
	content: "\f110";
}

.yith-icon-arrow-down:before {
	content: "\e900";
}

.yith-icon-arrow-left-alt:before {
	content: "\f111";
}

.yith-icon-arrow-left:before {
	content: "\e901";
}

.yith-icon-arrow-right-alt:before {
	content: "\f112";
}

.yith-icon-arrow-right:before {
	content: "\e902";
}

.yith-icon-arrow-up-alt:before {
	content: "\f113";
}

.yith-icon-arrow-up:before {
	content: "\e903";
}

.yith-icon-bank-check:before {
	content: "\e91e";
}

.yith-icon-bank:before {
	content: "\e91c";
}

.yith-icon-calendar-add:before {
	content: "\e913";
}

.yith-icon-calendar-money:before {
	content: "\e914";
}

.yith-icon-calendar:before {
	content: "\e904";
}

.yith-icon-calendar2:before {
	content: "\e915";
}

.yith-icon-cash:before {
	content: "\e91f";
}

.yith-icon-check-alt:before {
	content: "\f114";
}

.yith-icon-check-circle:before {
	content: "\e921";
}

.yith-icon-check:before {
	content: "\e905";
}

.yith-icon-clone:before {
	content: "\f105";
}

.yith-icon-close-alt:before {
	content: "\f117";
}

.yith-icon-close:before {
	content: "\e906";
}

.yith-icon-copy:before {
	content: "\f101";
}

.yith-icon-credit-card:before {
	content: "\e920";
}

.yith-icon-drag:before {
	content: "\e90f";
}

.yith-icon-edit:before {
	content: "\e907";
}

.yith-icon-eye-closed:before {
	content: "\e912";
}

.yith-icon-eye:before {
	content: "\e911";
}

.yith-icon-helping-hand:before {
	content: "\f10c";
}

.yith-icon-image:before {
	content: "\f10a";
}

.yith-icon-info-squared:before {
	content: "\e922";
}

.yith-icon-info:before {
	content: "\e90e";
}

.yith-icon-list-search:before {
	content: "\f10d";
}

.yith-icon-lock:before {
	content: "\f119";
}

.yith-icon-magnifier:before {
	content: "\e908";
}

.yith-icon-mail-out:before {
	content: "\f109";
}

.yith-icon-minus-alt:before {
	content: "\f118";
}

.yith-icon-minus:before {
	content: "\f10f";
}

.yith-icon-money-check:before {
	content: "\f11a";
}

.yith-icon-more:before {
	content: "\f102";
}

.yith-icon-paypal:before {
	content: "\e91b";
}

.yith-icon-pdf:before {
	content: "\f107";
}

.yith-icon-pencil:before {
	content: "\e909";
}

.yith-icon-people:before {
	content: "\e916";
}

.yith-icon-plus-alt:before {
	content: "\f115";
}

.yith-icon-plus:before {
	content: "\e90a";
}

.yith-icon-reply:before {
	content: "\e91a";
}

.yith-icon-reset:before {
	content: "\e910";
}

.yith-icon-save:before {
	content: "\f10b";
}

.yith-icon-shield-money:before {
	content: "\e917";
}

.yith-icon-sort-alt:before {
	content: "\f116";
}

.yith-icon-sort:before {
	content: "\f106";
}

.yith-icon-time-check:before {
	content: "\e918";
}

.yith-icon-trash:before {
	content: "\e90d";
}

.yith-icon-update:before {
	content: "\e90b";
}

.yith-icon-upload:before {
	content: "\e90c";
}

.yith-icon-user-off:before {
	content: "\f108";
}

.yith-icon-video:before {
	content: "\f10e";
}

.yith-icon-warning-triangle:before {
	content: "\e923";
}

.yith-icon-world-settings:before {
	content: "\e919";
}

.yith-icon-yith:before {
	content: "\e924";
}

/** -------------------------------------------
* Deprecated icons
*/

/** Deprecated: use yith-icon-paypal instead */
.yith-icon-paypal-svgrepo-com:before {
  content: "\e91b";
}

/** Deprecated: use yith-icon-arrow-down instead */
.yith-icon-arrow_down:before {
	content: "\e900";
}

/** Deprecated: use yith-icon-eye instead */
.yith-icon-arrow_eye:before {
	content: "\e911";
}

/** Deprecated: use yith-icon-eye-closed instead */
.yith-icon-arrow_eye_closed:before {
	content: "\e912";
}

/** Deprecated: use yith-icon-arrow-left instead */
.yith-icon-arrow_left:before {
	content: "\e901";
}

/** Deprecated: use yith-icon-arrow-right instead */
.yith-icon-arrow_right:before {
	content: "\e902";
}

/** Deprecated: use yith-icon-arrow-up instead */
.yith-icon-arrow_up:before {
	content: "\e903";
}

/** Deprecated: use yith-icon-calendar instead */
.yith-icon-calendar2:before {
	content: "\e904";
}

/** Deprecated: use yith-icon-calendar-add instead */
.yith-icon-calendar_add:before {
	content: "\e913";
}

/** Deprecated: use yith-icon-calendar-money instead */
.yith-icon-calendar_money:before {
	content: "\e914";
}

/** Deprecated: use yith-icon-shield-money instead */
.yith-icon-shield_money:before {
	content: "\e917";
}

/** Deprecated: use yith-icon-time-check instead */
.yith-icon-time_check:before {
	content: "\e918";
}

/** Deprecated: use yith-icon-world-settings instead */
.yith-icon-world_settings:before {
	content: "\e919";
}

/** Deprecated: use yith-icon-edit instead */
.yith-icon-pencil:before {
    content: "\e907";
}

/** Deprecated: use yith-icon-reset instead */
.yith-icon-update:before {
    content: "\e910";
}PK`x1\q�*s--'plugin-fw/assets/css/yith-plugin-ui.cssnu�[���@charset "UTF-8";
/**
 * YITH Plugin UI style
 *
 * IMPORTANT: This file is automatically generated through SCSS files.
 * Please don't edit it manually!
 */
/**
 * YITH CSS Variables
 */
:root {
  --yith-content-bg: #ffffff;
  --yith-content-text: #3c434a;
  --yith-primary: #00799f;
  --yith-primary-hover: #0094c4;
  --yith-primary-focus: #bddce6;
  --yith-primary-text: #ffffff;
  --yith-delete: #c41d04;
  --yith-delete-hover: #dd2105;
  --yith-delete-text: #ffffff;
  --yith-delete-focus: #f0d2cd;
  --yith-update: #94aa09;
  --yith-update-hover: #7f9208;
  --yith-update-text: #ffffff;
  --yith-update-focus: #e7eccc;
  --yith-outline-text: #0087b3;
  --yith-outline-border: #0094c4;
  --yith-outline-bg: rgba(255, 255, 255, 0);
  --yith-outline-bg-hover: rgba(157, 198, 205, 0.2);
  --yith-outline-border-hover: #007ba3;
  --yith-outline-focus: #dfeef2;
  --yith-delete-outline-text: #c41d04;
  --yith-delete-outline-border: #c41d04;
  --yith-delete-outline-bg: rgba(205, 157, 157, 0);
  --yith-delete-outline-bg-hover: rgba(232, 184, 184, 0.15);
  --yith-delete-outline-border-hover: #db2b11;
  --yith-delete-outline-focus: #ffe9e7;
  --yith-accent: #98aa36;
  --yith-light-bg: #f0f6fb;
  --yith-light-border-color: #d7e3e7;
  --yith-light-shadow: rgba(145, 191, 227, 0.11);
  --yith-light-accent: #0079b0;
  --yith-success: #98aa36;
  --yith-success-light: #d4df9a;
  --yith-success-lighter: #eaefcc;
  --yith-success-lightest: #f5f8e7;
  --yith-table-row-highlight: #f0f6fb;
  --yith-table-row-striped: #f6f7f7;
  --yith-table-border-light: #eff0f0;
  --yith-field-border-color: #d8d8d8;
  --yith-field-border-weight: #d8d8d8;
  --yith-field-border: 1px solid #d8d8d8;
  --yith-link: #0079b0;
}

/**
 * YITH Plugin UI - WP Pages
 */
.yith-plugin-fw-wp-page-wrapper .yith-plugin-fw__back-to-wp-list__wrapper {
  margin: -5px 0 15px;
}

.yith-plugin-fw-wp-page-wrapper .yith-plugin-fw__back-to-wp-list__wrapper .yith-plugin-fw__back-to-wp-list {
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--yith-link);
  vertical-align: middle;
}

.yith-plugin-fw-wp-page-wrapper .yith-plugin-fw__back-to-wp-list__wrapper .yith-plugin-fw__back-to-wp-list:before {
  content: "\e901";
  font-family: yith-icon;
  margin-right: 5px;
  font-size: .8em;
  vertical-align: middle;
}

.yith-plugin-fw-wp-page-wrapper .wrap div#message.updated {
  display: none;
  padding: 15px 40px 15px 45px;
  margin: 15px 0 20px;
  border-radius: 5px;
  background: var(--yith-success-lightest);
  border: 1px solid var(--yith-success-light);
  font-weight: 600;
  font-size: 14px;
  text-align: left;
  color: var(--yith-content-text);
  box-shadow: 1px 1px 2px var(--yith-success-lighter);
}

.yith-plugin-fw-wp-page-wrapper .wrap div#message.updated:before {
  font-family: yith-icon;
  content: "\e921";
  position: absolute;
  top: 50%;
  left: 13px;
  font-size: 21px;
  font-weight: 400;
  transform: translateY(-50%);
  color: var(--yith-success);
}

.yith-plugin-fw-wp-page-wrapper .wrap div#message.updated p {
  padding: 0;
  margin: 0;
}

.yith-plugin-fw-wp-page-wrapper .wrap div#message.updated .notice-dismiss {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  border-radius: 50%;
  color: var(--yith-success);
  padding: 7px;
  background: transparent;
  box-shadow: 0 0 0 5px rgba(0, 0, 0, 0);
  transition: all .3s ease-in-out;
}

.yith-plugin-fw-wp-page-wrapper .wrap div#message.updated .notice-dismiss:before {
  font-family: yith-icon;
  content: "\e906";
  font-weight: 600;
  font-size: 12px;
  color: inherit;
}

.yith-plugin-fw-wp-page-wrapper .wrap div#message.updated .notice-dismiss:hover {
  box-shadow: 0 0 0 0 var(--yith-success-lighter);
  background: var(--yith-success-lighter);
}

.yith-plugin-fw-wp-page-wrapper .wrap div#message.updated .notice-dismiss:hover:before, .yith-plugin-fw-wp-page-wrapper .wrap div#message.updated .notice-dismiss:active:before, .yith-plugin-fw-wp-page-wrapper .wrap div#message.updated .notice-dismiss:focus:before {
  color: inherit;
}

/**
 * YITH Plugin UI - Taxonomy Style
 */
.yith-plugin-ui.yith-plugin-ui--taxonomy-type #col-container, .yith-plugin-ui--taxonomy-type #col-container {
  display: flex;
}

.yith-plugin-ui.yith-plugin-ui--taxonomy-type #col-left, .yith-plugin-ui--taxonomy-type #col-left {
  padding: 20px;
  background: #f1f1f1;
  border-radius: 8px;
  box-sizing: border-box;
  margin-right: 15px;
}

.yith-plugin-ui.yith-plugin-ui--taxonomy-type #col-right, .yith-plugin-ui--taxonomy-type #col-right {
  flex: 1;
}

.yith-plugin-ui.yith-plugin-ui--taxonomy-type h2, .yith-plugin-ui--taxonomy-type h2 {
  border: none;
  padding: 0;
  font-size: 14px;
  background: transparent;
}

.yith-plugin-ui.yith-plugin-ui--taxonomy-type .wrap h1, .yith-plugin-ui--taxonomy-type .wrap h1 {
  color: #2a8db0;
  font-size: 16px;
  font-weight: 600;
}

@media screen and (max-width: 782px) {
  .yith-plugin-ui.yith-plugin-ui--taxonomy-type #col-container {
    display: block;
  }
  .yith-plugin-ui.yith-plugin-ui--taxonomy-type #col-left, .yith-plugin-ui.yith-plugin-ui--taxonomy-type #col-right {
    float: none;
    width: 100%;
  }
}

/**
 * YITH Plugin UI - Components
 */
.yith-plugin-ui .yith-plugin-fw__action-button, .yith-plugin-fw__action-button {
  height: 35px;
  width: 35px;
  background-color: var(--yith-content-bg);
  display: inline-block;
  border: 0;
  border-radius: 50%;
  transition: .3s;
  cursor: pointer;
  box-shadow: 0 2px 7px rgba(170, 198, 222, 0.5);
  outline: none;
  position: relative;
  margin: 0 5px 5px 0;
  vertical-align: middle;
}

.yith-plugin-ui .yith-plugin-fw__action-button .yith-plugin-fw__action-button__link, .yith-plugin-fw__action-button .yith-plugin-fw__action-button__link {
  height: 100%;
  width: 100%;
  display: inline-block;
}

.yith-plugin-ui .yith-plugin-fw__action-button .yith-plugin-fw__action-button__icon, .yith-plugin-fw__action-button .yith-plugin-fw__action-button__icon {
  position: absolute;
  color: var(--yith-link);
  font-size: 17px;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

.yith-plugin-ui .yith-plugin-fw__action-button.yith-plugin-fw__action-button--trash-action .yith-plugin-fw__action-button__icon,
.yith-plugin-ui .yith-plugin-fw__action-button.yith-plugin-fw__action-button--delete-action .yith-plugin-fw__action-button__icon, .yith-plugin-fw__action-button.yith-plugin-fw__action-button--trash-action .yith-plugin-fw__action-button__icon,
.yith-plugin-fw__action-button.yith-plugin-fw__action-button--delete-action .yith-plugin-fw__action-button__icon {
  color: #a10000;
}

.yith-plugin-ui .yith-plugin-fw__action-button .yith-plugin-fw__action-button__menu, .yith-plugin-fw__action-button .yith-plugin-fw__action-button__menu {
  position: absolute;
  display: none;
  flex-direction: column;
  width: max-content;
  right: 0;
  margin: 5px 0 0 0;
  padding: 8px 0;
  background: var(--yith-content-bg);
  border-radius: 5px;
  box-shadow: 0 2px 7px rgba(170, 198, 222, 0.5);
  z-index: 10;
  animation: yith-plugin-fw-appear-from-top .3s forwards;
}

.yith-plugin-ui .yith-plugin-fw__action-button .yith-plugin-fw__action-button__menu__item, .yith-plugin-fw__action-button .yith-plugin-fw__action-button__menu__item {
  margin: 0;
  display: block;
  padding: 7px 25px;
  color: var(--yith-content-text);
  cursor: pointer;
  text-decoration: none;
  text-align: right;
}

.yith-plugin-ui .yith-plugin-fw__action-button .yith-plugin-fw__action-button__menu__item:hover, .yith-plugin-fw__action-button .yith-plugin-fw__action-button__menu__item:hover {
  color: var(--yith-link);
}

.yith-plugin-ui .yith-plugin-fw__action-button.yith-plugin-fw__action-button--has-menu .yith-plugin-fw__action-button__icon, .yith-plugin-fw__action-button.yith-plugin-fw__action-button--has-menu .yith-plugin-fw__action-button__icon {
  color: var(--yith-content-text);
}

.yith-plugin-ui .yith-plugin-fw__action-button.yith-plugin-fw__action-button--has-menu.yith-plugin-fw__action-button--opened .yith-plugin-fw__action-button__icon, .yith-plugin-fw__action-button.yith-plugin-fw__action-button--has-menu.yith-plugin-fw__action-button--opened .yith-plugin-fw__action-button__icon {
  color: var(--yith-link);
}

.yith-plugin-ui .yith-plugin-fw__action-button.yith-plugin-fw__action-button--has-menu.yith-plugin-fw__action-button--opened .yith-plugin-fw__action-button__menu, .yith-plugin-fw__action-button.yith-plugin-fw__action-button--has-menu.yith-plugin-fw__action-button--opened .yith-plugin-fw__action-button__menu {
  display: flex;
}

.yith-plugin-ui .button-primary, .yith-plugin-ui .button-secondary, .wp-core-ui .yith-plugin-ui .button-primary, .wp-core-ui .yith-plugin-ui .button-secondary {
  border-radius: 3px;
  text-transform: none;
  box-shadow: none;
  border: 1px solid;
  font-weight: 600;
  padding: 0 12px;
  outline: none;
  height: auto;
  transition: all ease 0.3s;
  text-shadow: none;
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}

.yith-plugin-ui .button-primary:focus, .yith-plugin-ui .button-secondary:focus, .wp-core-ui .yith-plugin-ui .button-primary:focus, .wp-core-ui .yith-plugin-ui .button-secondary:focus {
  outline: none;
  box-shadow: none;
}

.yith-plugin-ui .button-primary.button-small, .yith-plugin-ui .button-secondary.button-small, .wp-core-ui .yith-plugin-ui .button-primary.button-small, .wp-core-ui .yith-plugin-ui .button-secondary.button-small {
  padding: 0 8px;
}

.yith-plugin-ui .button-secondary, .wp-core-ui .yith-plugin-ui .button-secondary {
  background: var(--yith-outline-bg);
  border: 1px solid var(--yith-outline-border);
  color: var(--yith-outline-text);
}

.yith-plugin-ui .button-secondary:focus, .wp-core-ui .yith-plugin-ui .button-secondary:focus {
  background: var(--yith-outline-bg);
  border: 1px solid var(--yith-outline-border);
  color: var(--yith-outline-text);
  box-shadow: 0 0 0 3px var(--yith-outline-focus);
}

.yith-plugin-ui .button-secondary:hover, .yith-plugin-ui .button-secondary:active, .wp-core-ui .yith-plugin-ui .button-secondary:hover, .wp-core-ui .yith-plugin-ui .button-secondary:active {
  background: var(--yith-outline-bg-hover);
  border-color: var(--yith-outline-border-hover);
  color: var(--yith-outline-text);
}

.yith-plugin-ui .button-primary, .wp-core-ui .yith-plugin-ui .button-primary {
  background: var(--yith-primary);
  color: var(--yith-primary-text);
  border: 1px solid var(--yith-primary);
}

.yith-plugin-ui .button-primary:focus, .wp-core-ui .yith-plugin-ui .button-primary:focus {
  background: var(--yith-primary);
  color: var(--yith-primary-text);
  border: 1px solid var(--yith-primary);
  box-shadow: 0 0 0 3px var(--yith-primary-focus);
}

.yith-plugin-ui .button-primary:hover, .yith-plugin-ui .button-primary:active, .wp-core-ui .yith-plugin-ui .button-primary:hover, .wp-core-ui .yith-plugin-ui .button-primary:active {
  background: var(--yith-primary-hover);
  color: var(--yith-primary-text);
  border: 1px solid var(--yith-primary-hover);
}

.yith-plugin-ui .button.action,
.yith-plugin-ui #doaction,
.yith-plugin-ui #doaction2,
.yith-plugin-ui #post-query-submit,
.yith-plugin-ui #posts-filter #delete_all,
.yith-plugin-ui #search-submit,
.yith-plugin-ui .button.filter-button, .wp-core-ui .yith-plugin-ui .button.action,
.wp-core-ui .yith-plugin-ui #doaction,
.wp-core-ui .yith-plugin-ui #doaction2,
.wp-core-ui .yith-plugin-ui #post-query-submit,
.wp-core-ui .yith-plugin-ui #posts-filter #delete_all,
.wp-core-ui .yith-plugin-ui #search-submit,
.wp-core-ui .yith-plugin-ui .button.filter-button {
  display: inline-block;
  height: auto;
  line-height: 30px;
  border-radius: 4px;
  padding: 0 17px;
  font-weight: 600;
  cursor: pointer;
  transition: all .3s ease-in-out;
  text-decoration: none;
  white-space: nowrap;
  background: var(--yith-outline-bg);
  border: 1px solid var(--yith-outline-border);
  color: var(--yith-outline-text);
  height: auto;
  line-height: 33px;
  border-radius: 8px;
  padding: 0 15px;
  font-weight: 600;
}

.yith-plugin-ui .button.action:focus,
.yith-plugin-ui #doaction:focus,
.yith-plugin-ui #doaction2:focus,
.yith-plugin-ui #post-query-submit:focus,
.yith-plugin-ui #posts-filter #delete_all:focus,
.yith-plugin-ui #search-submit:focus,
.yith-plugin-ui .button.filter-button:focus, .wp-core-ui .yith-plugin-ui .button.action:focus,
.wp-core-ui .yith-plugin-ui #doaction:focus,
.wp-core-ui .yith-plugin-ui #doaction2:focus,
.wp-core-ui .yith-plugin-ui #post-query-submit:focus,
.wp-core-ui .yith-plugin-ui #posts-filter #delete_all:focus,
.wp-core-ui .yith-plugin-ui #search-submit:focus,
.wp-core-ui .yith-plugin-ui .button.filter-button:focus {
  outline: none;
  box-shadow: none;
}

.yith-plugin-ui .button.action:focus,
.yith-plugin-ui #doaction:focus,
.yith-plugin-ui #doaction2:focus,
.yith-plugin-ui #post-query-submit:focus,
.yith-plugin-ui #posts-filter #delete_all:focus,
.yith-plugin-ui #search-submit:focus,
.yith-plugin-ui .button.filter-button:focus, .wp-core-ui .yith-plugin-ui .button.action:focus,
.wp-core-ui .yith-plugin-ui #doaction:focus,
.wp-core-ui .yith-plugin-ui #doaction2:focus,
.wp-core-ui .yith-plugin-ui #post-query-submit:focus,
.wp-core-ui .yith-plugin-ui #posts-filter #delete_all:focus,
.wp-core-ui .yith-plugin-ui #search-submit:focus,
.wp-core-ui .yith-plugin-ui .button.filter-button:focus {
  background: var(--yith-outline-bg);
  border: 1px solid var(--yith-outline-border);
  color: var(--yith-outline-text);
  box-shadow: 0 0 0 3px var(--yith-outline-focus);
}

.yith-plugin-ui .button.action:hover, .yith-plugin-ui .button.action:active,
.yith-plugin-ui #doaction:hover,
.yith-plugin-ui #doaction:active,
.yith-plugin-ui #doaction2:hover,
.yith-plugin-ui #doaction2:active,
.yith-plugin-ui #post-query-submit:hover,
.yith-plugin-ui #post-query-submit:active,
.yith-plugin-ui #posts-filter #delete_all:hover,
.yith-plugin-ui #posts-filter #delete_all:active,
.yith-plugin-ui #search-submit:hover,
.yith-plugin-ui #search-submit:active,
.yith-plugin-ui .button.filter-button:hover,
.yith-plugin-ui .button.filter-button:active, .wp-core-ui .yith-plugin-ui .button.action:hover, .wp-core-ui .yith-plugin-ui .button.action:active,
.wp-core-ui .yith-plugin-ui #doaction:hover,
.wp-core-ui .yith-plugin-ui #doaction:active,
.wp-core-ui .yith-plugin-ui #doaction2:hover,
.wp-core-ui .yith-plugin-ui #doaction2:active,
.wp-core-ui .yith-plugin-ui #post-query-submit:hover,
.wp-core-ui .yith-plugin-ui #post-query-submit:active,
.wp-core-ui .yith-plugin-ui #posts-filter #delete_all:hover,
.wp-core-ui .yith-plugin-ui #posts-filter #delete_all:active,
.wp-core-ui .yith-plugin-ui #search-submit:hover,
.wp-core-ui .yith-plugin-ui #search-submit:active,
.wp-core-ui .yith-plugin-ui .button.filter-button:hover,
.wp-core-ui .yith-plugin-ui .button.filter-button:active {
  background: var(--yith-outline-bg-hover);
  border-color: var(--yith-outline-border-hover);
  color: var(--yith-outline-text);
}

.yith-plugin-ui #posts-filter #delete_all, .wp-core-ui .yith-plugin-ui #posts-filter #delete_all {
  background: var(--yith-delete-outline-bg);
  border: 1px solid var(--yith-delete-outline-border);
  color: var(--yith-delete-outline-text);
}

.yith-plugin-ui #posts-filter #delete_all:focus, .wp-core-ui .yith-plugin-ui #posts-filter #delete_all:focus {
  background: var(--yith-delete-outline-bg);
  border: 1px solid var(--yith-delete-outline-border);
  color: var(--yith-delete-outline-text);
  box-shadow: 0 0 0 3px var(--yith-delete-outline-focus);
}

.yith-plugin-ui #posts-filter #delete_all:hover, .yith-plugin-ui #posts-filter #delete_all:active, .wp-core-ui .yith-plugin-ui #posts-filter #delete_all:hover, .wp-core-ui .yith-plugin-ui #posts-filter #delete_all:active {
  background: var(--yith-delete-outline-bg-hover);
  border-color: var(--yith-delete-outline-border-hover);
  color: var(--yith-delete-outline-text);
}

.yith-plugin-ui .tablenav .tablenav-pages .button,
.yith-plugin-ui .tablenav .tablenav-pages .tablenav-pages-navspan, .wp-core-ui .yith-plugin-ui .tablenav .tablenav-pages .button,
.wp-core-ui .yith-plugin-ui .tablenav .tablenav-pages .tablenav-pages-navspan {
  background: var(--yith-outline-bg);
  border: 1px solid var(--yith-outline-border);
  color: var(--yith-outline-text);
}

.yith-plugin-ui .tablenav .tablenav-pages .button:focus,
.yith-plugin-ui .tablenav .tablenav-pages .tablenav-pages-navspan:focus, .wp-core-ui .yith-plugin-ui .tablenav .tablenav-pages .button:focus,
.wp-core-ui .yith-plugin-ui .tablenav .tablenav-pages .tablenav-pages-navspan:focus {
  background: var(--yith-outline-bg);
  border: 1px solid var(--yith-outline-border);
  color: var(--yith-outline-text);
  box-shadow: 0 0 0 3px var(--yith-outline-focus);
}

.yith-plugin-ui .tablenav .tablenav-pages .button:hover, .yith-plugin-ui .tablenav .tablenav-pages .button:active,
.yith-plugin-ui .tablenav .tablenav-pages .tablenav-pages-navspan:hover,
.yith-plugin-ui .tablenav .tablenav-pages .tablenav-pages-navspan:active, .wp-core-ui .yith-plugin-ui .tablenav .tablenav-pages .button:hover, .wp-core-ui .yith-plugin-ui .tablenav .tablenav-pages .button:active,
.wp-core-ui .yith-plugin-ui .tablenav .tablenav-pages .tablenav-pages-navspan:hover,
.wp-core-ui .yith-plugin-ui .tablenav .tablenav-pages .tablenav-pages-navspan:active {
  background: var(--yith-outline-bg-hover);
  border-color: var(--yith-outline-border-hover);
  color: var(--yith-outline-text);
}

@media screen and (max-width: 782px) {
  .yith-plugin-ui .tablenav .tablenav-pages .button, .yith-plugin-ui .tablenav .tablenav-pages .tablenav-pages-navspan, .wp-core-ui .yith-plugin-ui .tablenav .tablenav-pages .button, .wp-core-ui .yith-plugin-ui .tablenav .tablenav-pages .tablenav-pages-navspan {
    min-width: 44px;
    padding: 12px 8px;
    font-size: 18px;
    line-height: 1;
  }
}

.yith-plugin-ui .yith-plugin-fw__button, .yith-plugin-ui [class^="yith-plugin-fw__button--"], .yith-plugin-ui [class*=" yith-plugin-fw__button--"],
.yith-plugin-ui .yith-add-button, .yith-plugin-ui .yith-edit-button, .yith-plugin-ui .yith-update-button, .yith-plugin-ui .yith-remove-button, .yith-plugin-ui .yith-plugin-fw-upload-button, .yith-plugin-ui .yith-save-button, .yith-plugin-ui .yith-plugin-fw-select-all, .yith-plugin-ui .yith-plugin-fw-deselect-all, .yith-plugin-ui .yith-plugin-fw-upload-button-reset, .wp-core-ui .yith-plugin-ui .yith-plugin-fw__button, .wp-core-ui .yith-plugin-ui [class^="yith-plugin-fw__button--"], .wp-core-ui .yith-plugin-ui [class*=" yith-plugin-fw__button--"],
.wp-core-ui .yith-plugin-ui .yith-add-button, .wp-core-ui .yith-plugin-ui .yith-edit-button, .wp-core-ui .yith-plugin-ui .yith-update-button, .wp-core-ui .yith-plugin-ui .yith-remove-button, .wp-core-ui .yith-plugin-ui .yith-plugin-fw-upload-button, .wp-core-ui .yith-plugin-ui .yith-save-button, .wp-core-ui .yith-plugin-ui .yith-plugin-fw-select-all, .wp-core-ui .yith-plugin-ui .yith-plugin-fw-deselect-all, .wp-core-ui .yith-plugin-ui .yith-plugin-fw-upload-button-reset {
  display: inline-block;
  height: auto;
  line-height: 30px;
  border-radius: 4px;
  padding: 0 17px;
  font-weight: 600;
  cursor: pointer;
  transition: all .3s ease-in-out;
  text-decoration: none;
  white-space: nowrap;
}

.yith-plugin-ui .yith-plugin-fw__button:focus, .yith-plugin-ui [class^="yith-plugin-fw__button--"]:focus, .yith-plugin-ui [class*=" yith-plugin-fw__button--"]:focus,
.yith-plugin-ui .yith-add-button:focus, .yith-plugin-ui .yith-edit-button:focus, .yith-plugin-ui .yith-update-button:focus, .yith-plugin-ui .yith-remove-button:focus, .yith-plugin-ui .yith-plugin-fw-upload-button:focus, .yith-plugin-ui .yith-save-button:focus, .yith-plugin-ui .yith-plugin-fw-select-all:focus, .yith-plugin-ui .yith-plugin-fw-deselect-all:focus, .yith-plugin-ui .yith-plugin-fw-upload-button-reset:focus, .wp-core-ui .yith-plugin-ui .yith-plugin-fw__button:focus, .wp-core-ui .yith-plugin-ui [class^="yith-plugin-fw__button--"]:focus, .wp-core-ui .yith-plugin-ui [class*=" yith-plugin-fw__button--"]:focus,
.wp-core-ui .yith-plugin-ui .yith-add-button:focus, .wp-core-ui .yith-plugin-ui .yith-edit-button:focus, .wp-core-ui .yith-plugin-ui .yith-update-button:focus, .wp-core-ui .yith-plugin-ui .yith-remove-button:focus, .wp-core-ui .yith-plugin-ui .yith-plugin-fw-upload-button:focus, .wp-core-ui .yith-plugin-ui .yith-save-button:focus, .wp-core-ui .yith-plugin-ui .yith-plugin-fw-select-all:focus, .wp-core-ui .yith-plugin-ui .yith-plugin-fw-deselect-all:focus, .wp-core-ui .yith-plugin-ui .yith-plugin-fw-upload-button-reset:focus {
  outline: none;
  box-shadow: none;
}

.yith-plugin-ui .yith-plugin-fw__button--primary, .wp-core-ui .yith-plugin-ui .yith-plugin-fw__button--primary {
  background: var(--yith-primary);
  color: var(--yith-primary-text);
  border: 1px solid var(--yith-primary);
}

.yith-plugin-ui .yith-plugin-fw__button--primary:focus, .wp-core-ui .yith-plugin-ui .yith-plugin-fw__button--primary:focus {
  background: var(--yith-primary);
  color: var(--yith-primary-text);
  border: 1px solid var(--yith-primary);
  box-shadow: 0 0 0 3px var(--yith-primary-focus);
}

.yith-plugin-ui .yith-plugin-fw__button--primary:hover, .yith-plugin-ui .yith-plugin-fw__button--primary:active, .wp-core-ui .yith-plugin-ui .yith-plugin-fw__button--primary:hover, .wp-core-ui .yith-plugin-ui .yith-plugin-fw__button--primary:active {
  background: var(--yith-primary-hover);
  color: var(--yith-primary-text);
  border: 1px solid var(--yith-primary-hover);
}

.yith-plugin-ui .yith-plugin-fw__button--secondary, .wp-core-ui .yith-plugin-ui .yith-plugin-fw__button--secondary {
  background: var(--yith-outline-bg);
  border: 1px solid var(--yith-outline-border);
  color: var(--yith-outline-text);
}

.yith-plugin-ui .yith-plugin-fw__button--secondary:focus, .wp-core-ui .yith-plugin-ui .yith-plugin-fw__button--secondary:focus {
  background: var(--yith-outline-bg);
  border: 1px solid var(--yith-outline-border);
  color: var(--yith-outline-text);
  box-shadow: 0 0 0 3px var(--yith-outline-focus);
}

.yith-plugin-ui .yith-plugin-fw__button--secondary:hover, .yith-plugin-ui .yith-plugin-fw__button--secondary:active, .wp-core-ui .yith-plugin-ui .yith-plugin-fw__button--secondary:hover, .wp-core-ui .yith-plugin-ui .yith-plugin-fw__button--secondary:active {
  background: var(--yith-outline-bg-hover);
  border-color: var(--yith-outline-border-hover);
  color: var(--yith-outline-text);
}

.yith-plugin-ui .yith-plugin-fw__button--delete, .wp-core-ui .yith-plugin-ui .yith-plugin-fw__button--delete {
  background: var(--yith-delete);
  color: var(--yith-delete-text);
  border: 1px solid var(--yith-delete);
}

.yith-plugin-ui .yith-plugin-fw__button--delete:focus, .wp-core-ui .yith-plugin-ui .yith-plugin-fw__button--delete:focus {
  background: var(--yith-delete);
  color: var(--yith-delete-text);
  border: 1px solid var(--yith-delete);
  box-shadow: 0 0 0 3px var(--yith-delete-focus);
}

.yith-plugin-ui .yith-plugin-fw__button--delete:hover, .yith-plugin-ui .yith-plugin-fw__button--delete:active, .wp-core-ui .yith-plugin-ui .yith-plugin-fw__button--delete:hover, .wp-core-ui .yith-plugin-ui .yith-plugin-fw__button--delete:active {
  background: var(--yith-delete-hover);
  color: var(--yith-delete-text);
  border: 1px solid var(--yith-delete-hover);
}

.yith-plugin-ui .yith-plugin-fw__button--add, .yith-plugin-ui .yith-add-button, .wp-core-ui .yith-plugin-ui .yith-plugin-fw__button--add, .wp-core-ui .yith-plugin-ui .yith-add-button {
  background: var(--yith-primary);
  color: var(--yith-primary-text);
  border: 1px solid var(--yith-primary);
}

.yith-plugin-ui .yith-plugin-fw__button--add:focus, .yith-plugin-ui .yith-add-button:focus, .wp-core-ui .yith-plugin-ui .yith-plugin-fw__button--add:focus, .wp-core-ui .yith-plugin-ui .yith-add-button:focus {
  background: var(--yith-primary);
  color: var(--yith-primary-text);
  border: 1px solid var(--yith-primary);
  box-shadow: 0 0 0 3px var(--yith-primary-focus);
}

.yith-plugin-ui .yith-plugin-fw__button--add:hover, .yith-plugin-ui .yith-plugin-fw__button--add:active, .yith-plugin-ui .yith-add-button:hover, .yith-plugin-ui .yith-add-button:active, .wp-core-ui .yith-plugin-ui .yith-plugin-fw__button--add:hover, .wp-core-ui .yith-plugin-ui .yith-plugin-fw__button--add:active, .wp-core-ui .yith-plugin-ui .yith-add-button:hover, .wp-core-ui .yith-plugin-ui .yith-add-button:active {
  background: var(--yith-primary-hover);
  color: var(--yith-primary-text);
  border: 1px solid var(--yith-primary-hover);
}

.yith-plugin-ui .yith-plugin-fw__button--add:before, .yith-plugin-ui .yith-add-button:before, .wp-core-ui .yith-plugin-ui .yith-plugin-fw__button--add:before, .wp-core-ui .yith-plugin-ui .yith-add-button:before {
  font-family: yith-icon;
  content: "";
  margin: 0 8px 0 -5px;
  font-size: 1.15em;
  font-weight: 400;
  vertical-align: top;
}

.yith-plugin-ui .yith-plugin-fw__button--add:before, .yith-plugin-ui .yith-add-button:before, .wp-core-ui .yith-plugin-ui .yith-plugin-fw__button--add:before, .wp-core-ui .yith-plugin-ui .yith-add-button:before {
  display: inline-block;
  margin: 0 10px 0 -5px;
  font-size: .95em;
  transition: transform .2s, margin .2s, font-size .2s;
  transition-timing-function: ease-in-out;
}

.yith-plugin-ui .yith-plugin-fw__button--add.closed, .yith-plugin-ui .yith-add-button.closed, .wp-core-ui .yith-plugin-ui .yith-plugin-fw__button--add.closed, .wp-core-ui .yith-plugin-ui .yith-add-button.closed {
  background: var(--yith-outline-bg);
  border: 1px solid var(--yith-outline-border);
  color: var(--yith-outline-text);
}

.yith-plugin-ui .yith-plugin-fw__button--add.closed:focus, .yith-plugin-ui .yith-add-button.closed:focus, .wp-core-ui .yith-plugin-ui .yith-plugin-fw__button--add.closed:focus, .wp-core-ui .yith-plugin-ui .yith-add-button.closed:focus {
  background: var(--yith-outline-bg);
  border: 1px solid var(--yith-outline-border);
  color: var(--yith-outline-text);
  box-shadow: 0 0 0 3px var(--yith-outline-focus);
}

.yith-plugin-ui .yith-plugin-fw__button--add.closed:hover, .yith-plugin-ui .yith-plugin-fw__button--add.closed:active, .yith-plugin-ui .yith-add-button.closed:hover, .yith-plugin-ui .yith-add-button.closed:active, .wp-core-ui .yith-plugin-ui .yith-plugin-fw__button--add.closed:hover, .wp-core-ui .yith-plugin-ui .yith-plugin-fw__button--add.closed:active, .wp-core-ui .yith-plugin-ui .yith-add-button.closed:hover, .wp-core-ui .yith-plugin-ui .yith-add-button.closed:active {
  background: var(--yith-outline-bg-hover);
  border-color: var(--yith-outline-border-hover);
  color: var(--yith-outline-text);
}

.yith-plugin-ui .yith-plugin-fw__button--add.closed:before, .yith-plugin-ui .yith-add-button.closed:before, .wp-core-ui .yith-plugin-ui .yith-plugin-fw__button--add.closed:before, .wp-core-ui .yith-plugin-ui .yith-add-button.closed:before {
  font-size: 1.15em;
  margin: 0 8px 0 -5px;
  transform: rotate(-45deg);
}

.yith-plugin-ui .yith-plugin-fw__button--close, .wp-core-ui .yith-plugin-ui .yith-plugin-fw__button--close {
  background: var(--yith-outline-bg);
  border: 1px solid var(--yith-outline-border);
  color: var(--yith-outline-text);
}

.yith-plugin-ui .yith-plugin-fw__button--close:focus, .wp-core-ui .yith-plugin-ui .yith-plugin-fw__button--close:focus {
  background: var(--yith-outline-bg);
  border: 1px solid var(--yith-outline-border);
  color: var(--yith-outline-text);
  box-shadow: 0 0 0 3px var(--yith-outline-focus);
}

.yith-plugin-ui .yith-plugin-fw__button--close:hover, .yith-plugin-ui .yith-plugin-fw__button--close:active, .wp-core-ui .yith-plugin-ui .yith-plugin-fw__button--close:hover, .wp-core-ui .yith-plugin-ui .yith-plugin-fw__button--close:active {
  background: var(--yith-outline-bg-hover);
  border-color: var(--yith-outline-border-hover);
  color: var(--yith-outline-text);
}

.yith-plugin-ui .yith-plugin-fw__button--close:before, .wp-core-ui .yith-plugin-ui .yith-plugin-fw__button--close:before {
  font-family: yith-icon;
  content: "";
  margin: 0 8px 0 -5px;
  font-size: 1.15em;
  font-weight: 400;
  vertical-align: top;
}

.yith-plugin-ui .yith-plugin-fw__button--edit, .yith-plugin-ui .yith-edit-button, .wp-core-ui .yith-plugin-ui .yith-plugin-fw__button--edit, .wp-core-ui .yith-plugin-ui .yith-edit-button {
  background: var(--yith-outline-bg);
  border: 1px solid var(--yith-outline-border);
  color: var(--yith-outline-text);
}

.yith-plugin-ui .yith-plugin-fw__button--edit:focus, .yith-plugin-ui .yith-edit-button:focus, .wp-core-ui .yith-plugin-ui .yith-plugin-fw__button--edit:focus, .wp-core-ui .yith-plugin-ui .yith-edit-button:focus {
  background: var(--yith-outline-bg);
  border: 1px solid var(--yith-outline-border);
  color: var(--yith-outline-text);
  box-shadow: 0 0 0 3px var(--yith-outline-focus);
}

.yith-plugin-ui .yith-plugin-fw__button--edit:hover, .yith-plugin-ui .yith-plugin-fw__button--edit:active, .yith-plugin-ui .yith-edit-button:hover, .yith-plugin-ui .yith-edit-button:active, .wp-core-ui .yith-plugin-ui .yith-plugin-fw__button--edit:hover, .wp-core-ui .yith-plugin-ui .yith-plugin-fw__button--edit:active, .wp-core-ui .yith-plugin-ui .yith-edit-button:hover, .wp-core-ui .yith-plugin-ui .yith-edit-button:active {
  background: var(--yith-outline-bg-hover);
  border-color: var(--yith-outline-border-hover);
  color: var(--yith-outline-text);
}

.yith-plugin-ui .yith-plugin-fw__button--edit:before, .yith-plugin-ui .yith-edit-button:before, .wp-core-ui .yith-plugin-ui .yith-plugin-fw__button--edit:before, .wp-core-ui .yith-plugin-ui .yith-edit-button:before {
  font-family: yith-icon;
  content: "";
  margin: 0 8px 0 -5px;
  font-size: 1.15em;
  font-weight: 400;
  vertical-align: top;
}

.yith-plugin-ui .yith-plugin-fw__button--update, .yith-plugin-ui .yith-update-button, .wp-core-ui .yith-plugin-ui .yith-plugin-fw__button--update, .wp-core-ui .yith-plugin-ui .yith-update-button {
  background: var(--yith-update);
  color: var(--yith-update-text);
  border: 1px solid var(--yith-update);
}

.yith-plugin-ui .yith-plugin-fw__button--update:focus, .yith-plugin-ui .yith-update-button:focus, .wp-core-ui .yith-plugin-ui .yith-plugin-fw__button--update:focus, .wp-core-ui .yith-plugin-ui .yith-update-button:focus {
  background: var(--yith-update);
  color: var(--yith-update-text);
  border: 1px solid var(--yith-update);
  box-shadow: 0 0 0 3px var(--yith-update-focus);
}

.yith-plugin-ui .yith-plugin-fw__button--update:hover, .yith-plugin-ui .yith-plugin-fw__button--update:active, .yith-plugin-ui .yith-update-button:hover, .yith-plugin-ui .yith-update-button:active, .wp-core-ui .yith-plugin-ui .yith-plugin-fw__button--update:hover, .wp-core-ui .yith-plugin-ui .yith-plugin-fw__button--update:active, .wp-core-ui .yith-plugin-ui .yith-update-button:hover, .wp-core-ui .yith-plugin-ui .yith-update-button:active {
  background: var(--yith-update-hover);
  color: var(--yith-update-text);
  border: 1px solid var(--yith-update-hover);
}

.yith-plugin-ui .yith-plugin-fw__button--update:before, .yith-plugin-ui .yith-update-button:before, .wp-core-ui .yith-plugin-ui .yith-plugin-fw__button--update:before, .wp-core-ui .yith-plugin-ui .yith-update-button:before {
  font-family: yith-icon;
  content: "";
  margin: 0 8px 0 -5px;
  font-size: 1.15em;
  font-weight: 400;
  vertical-align: top;
}

.yith-plugin-ui .yith-plugin-fw__button--trash, .yith-plugin-ui .yith-remove-button, .wp-core-ui .yith-plugin-ui .yith-plugin-fw__button--trash, .wp-core-ui .yith-plugin-ui .yith-remove-button {
  background: var(--yith-delete);
  color: var(--yith-delete-text);
  border: 1px solid var(--yith-delete);
}

.yith-plugin-ui .yith-plugin-fw__button--trash:focus, .yith-plugin-ui .yith-remove-button:focus, .wp-core-ui .yith-plugin-ui .yith-plugin-fw__button--trash:focus, .wp-core-ui .yith-plugin-ui .yith-remove-button:focus {
  background: var(--yith-delete);
  color: var(--yith-delete-text);
  border: 1px solid var(--yith-delete);
  box-shadow: 0 0 0 3px var(--yith-delete-focus);
}

.yith-plugin-ui .yith-plugin-fw__button--trash:hover, .yith-plugin-ui .yith-plugin-fw__button--trash:active, .yith-plugin-ui .yith-remove-button:hover, .yith-plugin-ui .yith-remove-button:active, .wp-core-ui .yith-plugin-ui .yith-plugin-fw__button--trash:hover, .wp-core-ui .yith-plugin-ui .yith-plugin-fw__button--trash:active, .wp-core-ui .yith-plugin-ui .yith-remove-button:hover, .wp-core-ui .yith-plugin-ui .yith-remove-button:active {
  background: var(--yith-delete-hover);
  color: var(--yith-delete-text);
  border: 1px solid var(--yith-delete-hover);
}

.yith-plugin-ui .yith-plugin-fw__button--trash:before, .yith-plugin-ui .yith-remove-button:before, .wp-core-ui .yith-plugin-ui .yith-plugin-fw__button--trash:before, .wp-core-ui .yith-plugin-ui .yith-remove-button:before {
  font-family: yith-icon;
  content: "";
  margin: 0 8px 0 -5px;
  font-size: 1.15em;
  font-weight: 400;
  vertical-align: top;
}

.yith-plugin-ui .yith-plugin-fw__button--upload, .yith-plugin-ui .yith-plugin-fw-upload-button, .wp-core-ui .yith-plugin-ui .yith-plugin-fw__button--upload, .wp-core-ui .yith-plugin-ui .yith-plugin-fw-upload-button {
  background: var(--yith-primary);
  color: var(--yith-primary-text);
  border: 1px solid var(--yith-primary);
}

.yith-plugin-ui .yith-plugin-fw__button--upload:focus, .yith-plugin-ui .yith-plugin-fw-upload-button:focus, .wp-core-ui .yith-plugin-ui .yith-plugin-fw__button--upload:focus, .wp-core-ui .yith-plugin-ui .yith-plugin-fw-upload-button:focus {
  background: var(--yith-primary);
  color: var(--yith-primary-text);
  border: 1px solid var(--yith-primary);
  box-shadow: 0 0 0 3px var(--yith-primary-focus);
}

.yith-plugin-ui .yith-plugin-fw__button--upload:hover, .yith-plugin-ui .yith-plugin-fw__button--upload:active, .yith-plugin-ui .yith-plugin-fw-upload-button:hover, .yith-plugin-ui .yith-plugin-fw-upload-button:active, .wp-core-ui .yith-plugin-ui .yith-plugin-fw__button--upload:hover, .wp-core-ui .yith-plugin-ui .yith-plugin-fw__button--upload:active, .wp-core-ui .yith-plugin-ui .yith-plugin-fw-upload-button:hover, .wp-core-ui .yith-plugin-ui .yith-plugin-fw-upload-button:active {
  background: var(--yith-primary-hover);
  color: var(--yith-primary-text);
  border: 1px solid var(--yith-primary-hover);
}

.yith-plugin-ui .yith-plugin-fw__button--upload:before, .yith-plugin-ui .yith-plugin-fw-upload-button:before, .wp-core-ui .yith-plugin-ui .yith-plugin-fw__button--upload:before, .wp-core-ui .yith-plugin-ui .yith-plugin-fw-upload-button:before {
  font-family: yith-icon;
  content: "";
  margin: 0 8px 0 -5px;
  font-size: 1.15em;
  font-weight: 400;
  vertical-align: top;
}

.yith-plugin-ui .yith-save-button, .wp-core-ui .yith-plugin-ui .yith-save-button {
  background: var(--yith-primary);
  color: var(--yith-primary-text);
  border: 1px solid var(--yith-primary);
}

.yith-plugin-ui .yith-save-button:focus, .wp-core-ui .yith-plugin-ui .yith-save-button:focus {
  background: var(--yith-primary);
  color: var(--yith-primary-text);
  border: 1px solid var(--yith-primary);
  box-shadow: 0 0 0 3px var(--yith-primary-focus);
}

.yith-plugin-ui .yith-save-button:hover, .yith-plugin-ui .yith-save-button:active, .wp-core-ui .yith-plugin-ui .yith-save-button:hover, .wp-core-ui .yith-plugin-ui .yith-save-button:active {
  background: var(--yith-primary-hover);
  color: var(--yith-primary-text);
  border: 1px solid var(--yith-primary-hover);
}

.yith-plugin-ui .yith-plugin-fw-select-all,
.yith-plugin-ui .yith-plugin-fw-deselect-all,
.yith-plugin-ui .yith-plugin-fw-upload-button-reset, .wp-core-ui .yith-plugin-ui .yith-plugin-fw-select-all,
.wp-core-ui .yith-plugin-ui .yith-plugin-fw-deselect-all,
.wp-core-ui .yith-plugin-ui .yith-plugin-fw-upload-button-reset {
  background: var(--yith-outline-bg);
  border: 1px solid var(--yith-outline-border);
  color: var(--yith-outline-text);
}

.yith-plugin-ui .yith-plugin-fw-select-all:focus,
.yith-plugin-ui .yith-plugin-fw-deselect-all:focus,
.yith-plugin-ui .yith-plugin-fw-upload-button-reset:focus, .wp-core-ui .yith-plugin-ui .yith-plugin-fw-select-all:focus,
.wp-core-ui .yith-plugin-ui .yith-plugin-fw-deselect-all:focus,
.wp-core-ui .yith-plugin-ui .yith-plugin-fw-upload-button-reset:focus {
  background: var(--yith-outline-bg);
  border: 1px solid var(--yith-outline-border);
  color: var(--yith-outline-text);
  box-shadow: 0 0 0 3px var(--yith-outline-focus);
}

.yith-plugin-ui .yith-plugin-fw-select-all:hover, .yith-plugin-ui .yith-plugin-fw-select-all:active,
.yith-plugin-ui .yith-plugin-fw-deselect-all:hover,
.yith-plugin-ui .yith-plugin-fw-deselect-all:active,
.yith-plugin-ui .yith-plugin-fw-upload-button-reset:hover,
.yith-plugin-ui .yith-plugin-fw-upload-button-reset:active, .wp-core-ui .yith-plugin-ui .yith-plugin-fw-select-all:hover, .wp-core-ui .yith-plugin-ui .yith-plugin-fw-select-all:active,
.wp-core-ui .yith-plugin-ui .yith-plugin-fw-deselect-all:hover,
.wp-core-ui .yith-plugin-ui .yith-plugin-fw-deselect-all:active,
.wp-core-ui .yith-plugin-ui .yith-plugin-fw-upload-button-reset:hover,
.wp-core-ui .yith-plugin-ui .yith-plugin-fw-upload-button-reset:active {
  background: var(--yith-outline-bg-hover);
  border-color: var(--yith-outline-border-hover);
  color: var(--yith-outline-text);
}

.yith-plugin-ui .button-secondary span.yith-icon, .wp-core-ui .yith-plugin-ui .button-secondary span.yith-icon {
  margin-left: 0;
  margin-right: 10px;
  line-height: normal;
}

.yith-plugin-ui .button-secondary span.yith-icon:before, .wp-core-ui .yith-plugin-ui .button-secondary span.yith-icon:before {
  color: inherit;
  font-size: 15px;
  font-weight: 400;
}

.yith-plugin-ui .yith-plugin-fw__button--with-icon, .wp-core-ui .yith-plugin-ui .yith-plugin-fw__button--with-icon {
  position: relative;
  padding-left: 30px;
}

.yith-plugin-ui .yith-plugin-fw__button--with-icon i, .wp-core-ui .yith-plugin-ui .yith-plugin-fw__button--with-icon i {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  font-size: 1em;
  font-weight: 400;
}

.yith-plugin-ui .yith-plugin-fw__button--xl, .yith-plugin-ui .button-xl, .wp-core-ui .yith-plugin-ui .yith-plugin-fw__button--xl, .wp-core-ui .yith-plugin-ui .button-xl {
  padding: 0 20px;
  font-size: 14px;
  line-height: 38px;
}

.yith-plugin-ui .yith-plugin-fw__button--xl::before, .yith-plugin-ui .button-xl::before, .wp-core-ui .yith-plugin-ui .yith-plugin-fw__button--xl::before, .wp-core-ui .yith-plugin-ui .button-xl::before {
  margin: 0 10px 0 -5px;
}

.yith-plugin-ui .yith-plugin-fw__button--xl.yith-plugin-fw__button--with-icon, .yith-plugin-ui .button-xl.yith-plugin-fw__button--with-icon, .wp-core-ui .yith-plugin-ui .yith-plugin-fw__button--xl.yith-plugin-fw__button--with-icon, .wp-core-ui .yith-plugin-ui .button-xl.yith-plugin-fw__button--with-icon {
  padding-left: 40px;
}

.yith-plugin-ui .yith-plugin-fw__button--xl.yith-plugin-fw__button--with-icon i, .yith-plugin-ui .button-xl.yith-plugin-fw__button--with-icon i, .wp-core-ui .yith-plugin-ui .yith-plugin-fw__button--xl.yith-plugin-fw__button--with-icon i, .wp-core-ui .yith-plugin-ui .button-xl.yith-plugin-fw__button--with-icon i {
  left: 14px;
}

.yith-plugin-ui .yith-plugin-fw__button--xxl, .wp-core-ui .yith-plugin-ui .yith-plugin-fw__button--xxl {
  padding: 0 28px;
  font-size: 16px;
  line-height: 45px;
}

.yith-plugin-ui .yith-plugin-fw__button--xxl::before, .wp-core-ui .yith-plugin-ui .yith-plugin-fw__button--xxl::before {
  margin: 0 15px 0 -10px;
}

.yith-plugin-ui .yith-plugin-fw__button--xxl.yith-plugin-fw__button--with-icon, .wp-core-ui .yith-plugin-ui .yith-plugin-fw__button--xxl.yith-plugin-fw__button--with-icon {
  padding-left: 45px;
}

.yith-plugin-ui .yith-plugin-fw__button--xxl.yith-plugin-fw__button--with-icon i, .wp-core-ui .yith-plugin-ui .yith-plugin-fw__button--xxl.yith-plugin-fw__button--with-icon i {
  left: 15px;
}

.yith-plugin-fw__boxed-row, .yith-plugin-fw__boxed-row--hover-highlight {
  background: var(--yith-content-bg);
  border-radius: 5px;
  box-shadow: 0 0 0 1px var(--yith-light-border-color), 0 3px 11px 6px var(--yith-light-shadow);
  transition: background-color .2s ease-in-out;
  padding: 25px;
  margin-bottom: 25px;
  margin-top: 25px;
}

.yith-plugin-fw__boxed-row--hover-highlight:hover {
  background: var(--yith-table-row-highlight);
}

.yith-plugin-fw__confirm__wrap .yith-plugin-fw__confirm__message {
  margin-bottom: 20px;
}

.yith-plugin-fw__confirm__wrap .yith-plugin-fw__confirm__footer {
  text-align: right;
}

.yith-plugin-fw__confirm__wrap .yith-plugin-fw__confirm__button {
  height: auto;
  line-height: 33px;
  border-radius: 4px;
  padding: 0 20px;
  font-weight: 600;
  cursor: pointer;
  display: inline-block;
  margin-right: 10px;
  white-space: nowrap;
}

.yith-plugin-fw__confirm__wrap .yith-plugin-fw__confirm__button:last-child {
  margin-right: 0;
}

.yith-plugin-fw__confirm__wrap .yith-plugin-fw__confirm__button.yith-plugin-fw__confirm__button--cancel {
  background: var(--yith-outline-bg);
  border: 1px solid var(--yith-outline-border);
  color: var(--yith-outline-text);
}

.yith-plugin-fw__confirm__wrap .yith-plugin-fw__confirm__button.yith-plugin-fw__confirm__button--cancel:focus {
  background: var(--yith-outline-bg);
  border: 1px solid var(--yith-outline-border);
  color: var(--yith-outline-text);
  box-shadow: 0 0 0 3px var(--yith-outline-focus);
}

.yith-plugin-fw__confirm__wrap .yith-plugin-fw__confirm__button.yith-plugin-fw__confirm__button--cancel:hover, .yith-plugin-fw__confirm__wrap .yith-plugin-fw__confirm__button.yith-plugin-fw__confirm__button--cancel:active {
  background: var(--yith-outline-bg-hover);
  border-color: var(--yith-outline-border-hover);
  color: var(--yith-outline-text);
}

.yith-plugin-fw__confirm__wrap .yith-plugin-fw__confirm__button.yith-plugin-fw__confirm__button--confirm {
  background: var(--yith-primary);
  color: var(--yith-primary-text);
  border: 1px solid var(--yith-primary);
}

.yith-plugin-fw__confirm__wrap .yith-plugin-fw__confirm__button.yith-plugin-fw__confirm__button--confirm:focus {
  background: var(--yith-primary);
  color: var(--yith-primary-text);
  border: 1px solid var(--yith-primary);
  box-shadow: 0 0 0 3px var(--yith-primary-focus);
}

.yith-plugin-fw__confirm__wrap .yith-plugin-fw__confirm__button.yith-plugin-fw__confirm__button--confirm:hover, .yith-plugin-fw__confirm__wrap .yith-plugin-fw__confirm__button.yith-plugin-fw__confirm__button--confirm:active {
  background: var(--yith-primary-hover);
  color: var(--yith-primary-text);
  border: 1px solid var(--yith-primary-hover);
}

.yith-plugin-fw__confirm__wrap .yith-plugin-fw__confirm__button.yith-plugin-fw__confirm__button--delete {
  background: var(--yith-delete);
  color: var(--yith-delete-text);
  border: 1px solid var(--yith-delete);
}

.yith-plugin-fw__confirm__wrap .yith-plugin-fw__confirm__button.yith-plugin-fw__confirm__button--delete:focus {
  background: var(--yith-delete);
  color: var(--yith-delete-text);
  border: 1px solid var(--yith-delete);
  box-shadow: 0 0 0 3px var(--yith-delete-focus);
}

.yith-plugin-fw__confirm__wrap .yith-plugin-fw__confirm__button.yith-plugin-fw__confirm__button--delete:hover, .yith-plugin-fw__confirm__wrap .yith-plugin-fw__confirm__button.yith-plugin-fw__confirm__button--delete:active {
  background: var(--yith-delete-hover);
  color: var(--yith-delete-text);
  border: 1px solid var(--yith-delete-hover);
}

.yith-plugin-fw__list-table-blank-state {
  padding: 30px 30px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.yith-plugin-fw__list-table-blank-state > * {
  margin-bottom: 30px;
}

.yith-plugin-fw__list-table-blank-state img.yith-plugin-fw__list-table-blank-state__icon {
  width: 100px;
  margin: 0 auto 30px;
}

.yith-plugin-fw__list-table-blank-state i.yith-plugin-fw__list-table-blank-state__icon {
  font-size: 65px;
  margin: 0 auto 30px;
}

.yith-plugin-fw__list-table-blank-state .yith-plugin-fw__list-table-blank-state__message {
  font-size: 1.4em;
  line-height: 1.5;
}

.yith-plugin-fw__modal__wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999999;
  background: rgba(34, 59, 80, 0.7);
  animation: yith-plugin-fw-fade-in .3s forwards;
  box-sizing: border-box;
}

.yith-plugin-fw__modal__wrap .yith-plugin-fw__modal__main {
  position: relative;
  background: #fff;
  border-radius: 10px;
  box-shadow: 1px 3px 16px rgba(0, 22, 59, 0.4);
  animation: yith-plugin-fw-appear-from-top .3s forwards;
  overflow: hidden;
  max-width: calc(100% - 20px);
  max-height: calc(100% - 20px);
  display: flex;
  flex-direction: column;
}

.yith-plugin-fw__modal__wrap .yith-plugin-fw__modal__close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #aaa;
  cursor: pointer;
}

.yith-plugin-fw__modal__wrap .yith-plugin-fw__modal__close:hover {
  color: #444;
}

.yith-plugin-fw__modal__wrap .yith-plugin-fw__modal__title {
  padding: 20px 25px;
  font-size: 1.5em;
  font-weight: 600;
  line-height: 1.5em;
  color: var(--yith-primary);
}

.yith-plugin-fw__modal__wrap .yith-plugin-fw__modal__content {
  padding: 0 25px 25px;
}

.yith-plugin-fw__modal__wrap .yith-plugin-fw__modal__footer {
  padding: 25px;
  background: #f7f7f7;
}

.yith-plugin-fw__modal__wrap.yith-plugin-fw__modal__wrap--scroll-content .yith-plugin-fw__modal__content {
  overflow-y: auto;
}

.yith-plugin-fw__modal--opened {
  overflow: hidden;
}

.yith-plugin-fw__modal--allow-wp-menu .yith-plugin-fw__modal__wrap {
  z-index: 99;
  padding-left: 160px;
  padding-top: 32px;
}

.yith-plugin-fw__modal--allow-wp-menu #adminmenuback {
  z-index: 100;
}

@media only screen and (max-width: 960px) {
  .folded .yith-plugin-fw__modal__wrap {
    padding-left: 36px;
  }
  .auto-fold .yith-plugin-fw__modal--allow-wp-menu .yith-plugin-fw__modal__wrap {
    padding-left: 36px;
  }
}

@media screen and (max-width: 782px) {
  .auto-fold .yith-plugin-fw__modal--allow-wp-menu .yith-plugin-fw__modal__wrap {
    z-index: 999999;
    width: 100%;
    height: 100%;
    padding-left: 0;
    padding-top: 0;
  }
  .auto-fold .yith-plugin-fw__modal--allow-wp-menu-in-mobile .yith-plugin-fw__modal__wrap {
    z-index: 99;
    padding-top: 46px;
  }
  .auto-fold .yith-plugin-fw__modal--allow-wp-menu-in-mobile.wp-responsive-open .yith-plugin-fw__modal__wrap {
    padding-left: 190px;
  }
}

#tiptip_holder {
  display: none;
  z-index: 8675309;
  position: absolute;
  top: 0;
  /*rtl:ignore*/
  left: 0;
}

#tiptip_holder.tip_top {
  padding-bottom: 5px;
}

#tiptip_holder.tip_top #tiptip_arrow_inner {
  margin-top: -7px;
  margin-left: -6px;
  border-top-color: #333;
}

#tiptip_holder.tip_bottom {
  padding-top: 5px;
}

#tiptip_holder.tip_bottom #tiptip_arrow_inner {
  margin-top: -5px;
  margin-left: -6px;
  border-bottom-color: #333;
}

#tiptip_holder.tip_right {
  padding-left: 5px;
}

#tiptip_holder.tip_right #tiptip_arrow_inner {
  margin-top: -6px;
  margin-left: -5px;
  border-right-color: #333;
}

#tiptip_holder.tip_left {
  padding-right: 5px;
}

#tiptip_holder.tip_left #tiptip_arrow_inner {
  margin-top: -6px;
  margin-left: -7px;
  border-left-color: #333;
}

#tiptip_holder #tiptip_content {
  color: #fff;
  font-size: 0.8em;
  max-width: 150px;
  background: #333;
  text-align: center;
  border-radius: 3px;
  padding: 0.618em 1em;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

#tiptip_holder #tiptip_content code {
  padding: 1px;
  background: #888;
}

#tiptip_holder #tiptip_arrow,
#tiptip_holder #tiptip_arrow_inner {
  position: absolute;
  border-color: transparent;
  border-style: solid;
  border-width: 6px;
  height: 0;
  width: 0;
}

/**
 * YITH Plugin UI - Post Type Style
 */
table.yith-plugin-fw__classic-table {
  border: 2px solid var(--yith-table-border-light);
  background: var(--yith-content-bg);
  box-shadow: none;
  border-spacing: 0;
}

table.yith-plugin-fw__classic-table th, table.yith-plugin-fw__classic-table thead td, table.yith-plugin-fw__classic-table tfoot td {
  text-align: left;
  line-height: 1.3em;
  font-size: 14px;
}

table.yith-plugin-fw__classic-table thead th, table.yith-plugin-fw__classic-table thead td {
  border-bottom: 0;
}

table.yith-plugin-fw__classic-table tfoot th, table.yith-plugin-fw__classic-table tfoot td {
  border-top: 0;
}

table.yith-plugin-fw__classic-table tbody tr th, table.yith-plugin-fw__classic-table tbody tr td {
  vertical-align: middle;
  padding: 15px;
}

table.yith-plugin-fw__classic-table tbody tr:hover {
  background: var(--yith-table-row-highlight);
}

table.yith-plugin-fw__classic-table thead td, table.yith-plugin-fw__classic-table thead th, table.yith-plugin-fw__classic-table tfoot td, table.yith-plugin-fw__classic-table tfoot th {
  padding: 15px;
  font-weight: 600;
}

table.yith-plugin-fw__classic-table tbody > :nth-child(odd) {
  background-color: var(--yith-table-row-striped);
}

table.yith-plugin-fw__classic-table.wp-list-table tfoot {
  display: none;
}

table.yith-plugin-fw__classic-table.wp-list-table .check-column {
  width: 2em;
}

table.yith-plugin-fw__classic-table.wp-list-table th.sortable a, table.yith-plugin-fw__classic-table.wp-list-table th.sorted a {
  padding: 0 8px 0 0;
  color: inherit;
}

table.yith-plugin-fw__classic-table.wp-list-table th.sortable a:hover, table.yith-plugin-fw__classic-table.wp-list-table th.sorted a:hover {
  color: var(--yith-link);
}

table.yith-plugin-fw__classic-table.wp-list-table .sorting-indicator {
  visibility: visible;
}

table.yith-plugin-fw__classic-table.wp-list-table .sorting-indicator:before {
  font-family: yith-icon;
  content: "\f116";
  color: inherit;
  font-size: 10px;
  top: 0;
  left: 0;
}

table.yith-plugin-fw__classic-table.wp-list-table th.sorted.asc .sorting-indicator:before,
table.yith-plugin-fw__classic-table.wp-list-table th.desc:hover span.sorting-indicator:before,
table.yith-plugin-fw__classic-table.wp-list-table th.desc a:focus span.sorting-indicator:before {
  content: "\f113";
  font-weight: 600;
}

table.yith-plugin-fw__classic-table.wp-list-table th.sorted.desc .sorting-indicator:before,
table.yith-plugin-fw__classic-table.wp-list-table th.asc:hover span.sorting-indicator:before,
table.yith-plugin-fw__classic-table.wp-list-table th.asc a:focus span.sorting-indicator:before {
  content: "\f110";
  font-weight: 600;
}

table.yith-plugin-fw__classic-table.wp-list-table thead th.column-actions, table.yith-plugin-fw__classic-table.wp-list-table tfoot th.column-actions {
  visibility: hidden;
}

table.yith-plugin-fw__classic-table.wp-list-table th.column-actions, table.yith-plugin-fw__classic-table.wp-list-table td.column-actions {
  text-align: right;
}

table.yith-plugin-fw__classic-table.wp-list-table .yith-plugin-fw__action-button:not(.yith-plugin-fw__action-button--visible) {
  opacity: 0;
  transition: .3s;
}

table.yith-plugin-fw__classic-table.wp-list-table tbody tr:hover .yith-plugin-fw__action-button:not(.yith-plugin-fw__action-button--visible) {
  opacity: 1;
}

table.yith-plugin-fw__boxed-table {
  border: 0;
  border-spacing: 0 20px;
  box-shadow: none;
  background: transparent;
}

table.yith-plugin-fw__boxed-table th, table.yith-plugin-fw__boxed-table thead td, table.yith-plugin-fw__boxed-table tfoot td {
  text-align: left;
  line-height: 1.3em;
  font-size: 14px;
}

table.yith-plugin-fw__boxed-table thead th, table.yith-plugin-fw__boxed-table thead td {
  border-bottom: 0;
  padding: 0 0 0 25px;
  font-weight: 600;
}

table.yith-plugin-fw__boxed-table tbody tr {
  background: var(--yith-content-bg);
  border-radius: 5px;
  box-shadow: 0 0 0 1px var(--yith-light-border-color), 0 3px 11px 6px var(--yith-light-shadow);
  transition: background-color .2s ease-in-out;
}

table.yith-plugin-fw__boxed-table tbody tr th, table.yith-plugin-fw__boxed-table tbody tr td {
  background: transparent;
  vertical-align: middle;
  padding: 25px 0 25px 25px;
}

table.yith-plugin-fw__boxed-table tbody tr td:last-child {
  padding-right: 25px;
}

table.yith-plugin-fw__boxed-table tbody tr th:first-child,
table.yith-plugin-fw__boxed-table tbody tr td:first-child {
  border-radius: 5px 0 0 5px;
}

table.yith-plugin-fw__boxed-table tbody tr th:last-child,
table.yith-plugin-fw__boxed-table tbody tr td:last-child {
  padding-right: 25px;
  border-radius: 0 5px 5px 0;
}

table.yith-plugin-fw__boxed-table tbody tr:hover {
  background: var(--yith-table-row-highlight);
}

table.yith-plugin-fw__boxed-table.wp-list-table tfoot {
  display: none;
}

table.yith-plugin-fw__boxed-table.wp-list-table .check-column {
  width: 2em;
}

table.yith-plugin-fw__boxed-table.wp-list-table th.sortable a, table.yith-plugin-fw__boxed-table.wp-list-table th.sorted a {
  padding: 0 8px 0 0;
  color: inherit;
}

table.yith-plugin-fw__boxed-table.wp-list-table th.sortable a:hover, table.yith-plugin-fw__boxed-table.wp-list-table th.sorted a:hover {
  color: var(--yith-link);
}

table.yith-plugin-fw__boxed-table.wp-list-table .sorting-indicator {
  visibility: visible;
}

table.yith-plugin-fw__boxed-table.wp-list-table .sorting-indicator:before {
  font-family: yith-icon;
  content: "\f116";
  color: inherit;
  font-size: 10px;
  top: 0;
  left: 0;
}

table.yith-plugin-fw__boxed-table.wp-list-table th.sorted.asc .sorting-indicator:before,
table.yith-plugin-fw__boxed-table.wp-list-table th.desc:hover span.sorting-indicator:before,
table.yith-plugin-fw__boxed-table.wp-list-table th.desc a:focus span.sorting-indicator:before {
  content: "\f113";
  font-weight: 600;
}

table.yith-plugin-fw__boxed-table.wp-list-table th.sorted.desc .sorting-indicator:before,
table.yith-plugin-fw__boxed-table.wp-list-table th.asc:hover span.sorting-indicator:before,
table.yith-plugin-fw__boxed-table.wp-list-table th.asc a:focus span.sorting-indicator:before {
  content: "\f110";
  font-weight: 600;
}

table.yith-plugin-fw__boxed-table.wp-list-table thead th.column-actions, table.yith-plugin-fw__boxed-table.wp-list-table tfoot th.column-actions {
  visibility: hidden;
}

table.yith-plugin-fw__boxed-table.wp-list-table th.column-actions, table.yith-plugin-fw__boxed-table.wp-list-table td.column-actions {
  text-align: right;
}

table.yith-plugin-fw__boxed-table.wp-list-table .yith-plugin-fw__action-button:not(.yith-plugin-fw__action-button--visible) {
  opacity: 0;
  transition: .3s;
}

table.yith-plugin-fw__boxed-table.wp-list-table tbody tr:hover .yith-plugin-fw__action-button:not(.yith-plugin-fw__action-button--visible) {
  opacity: 1;
}

.yith-plugin-ui--classic-wp-list-style table.wp-list-table, .yith-plugin-ui #plugin-fw-wc .yith-plugin-ui--classic-wp-list-style table.wp-list-table {
  border: 2px solid var(--yith-table-border-light);
  background: var(--yith-content-bg);
  box-shadow: none;
  border-spacing: 0;
}

.yith-plugin-ui--classic-wp-list-style table.wp-list-table th, .yith-plugin-ui--classic-wp-list-style table.wp-list-table thead td, .yith-plugin-ui--classic-wp-list-style table.wp-list-table tfoot td, .yith-plugin-ui #plugin-fw-wc .yith-plugin-ui--classic-wp-list-style table.wp-list-table th, .yith-plugin-ui #plugin-fw-wc .yith-plugin-ui--classic-wp-list-style table.wp-list-table thead td, .yith-plugin-ui #plugin-fw-wc .yith-plugin-ui--classic-wp-list-style table.wp-list-table tfoot td {
  text-align: left;
  line-height: 1.3em;
  font-size: 14px;
}

.yith-plugin-ui--classic-wp-list-style table.wp-list-table thead th, .yith-plugin-ui--classic-wp-list-style table.wp-list-table thead td, .yith-plugin-ui #plugin-fw-wc .yith-plugin-ui--classic-wp-list-style table.wp-list-table thead th, .yith-plugin-ui #plugin-fw-wc .yith-plugin-ui--classic-wp-list-style table.wp-list-table thead td {
  border-bottom: 0;
}

.yith-plugin-ui--classic-wp-list-style table.wp-list-table tfoot th, .yith-plugin-ui--classic-wp-list-style table.wp-list-table tfoot td, .yith-plugin-ui #plugin-fw-wc .yith-plugin-ui--classic-wp-list-style table.wp-list-table tfoot th, .yith-plugin-ui #plugin-fw-wc .yith-plugin-ui--classic-wp-list-style table.wp-list-table tfoot td {
  border-top: 0;
}

.yith-plugin-ui--classic-wp-list-style table.wp-list-table tbody tr th, .yith-plugin-ui--classic-wp-list-style table.wp-list-table tbody tr td, .yith-plugin-ui #plugin-fw-wc .yith-plugin-ui--classic-wp-list-style table.wp-list-table tbody tr th, .yith-plugin-ui #plugin-fw-wc .yith-plugin-ui--classic-wp-list-style table.wp-list-table tbody tr td {
  vertical-align: middle;
  padding: 15px;
}

.yith-plugin-ui--classic-wp-list-style table.wp-list-table tbody tr:hover, .yith-plugin-ui #plugin-fw-wc .yith-plugin-ui--classic-wp-list-style table.wp-list-table tbody tr:hover {
  background: var(--yith-table-row-highlight);
}

.yith-plugin-ui--classic-wp-list-style table.wp-list-table thead td, .yith-plugin-ui--classic-wp-list-style table.wp-list-table thead th, .yith-plugin-ui--classic-wp-list-style table.wp-list-table tfoot td, .yith-plugin-ui--classic-wp-list-style table.wp-list-table tfoot th, .yith-plugin-ui #plugin-fw-wc .yith-plugin-ui--classic-wp-list-style table.wp-list-table thead td, .yith-plugin-ui #plugin-fw-wc .yith-plugin-ui--classic-wp-list-style table.wp-list-table thead th, .yith-plugin-ui #plugin-fw-wc .yith-plugin-ui--classic-wp-list-style table.wp-list-table tfoot td, .yith-plugin-ui #plugin-fw-wc .yith-plugin-ui--classic-wp-list-style table.wp-list-table tfoot th {
  padding: 15px;
  font-weight: 600;
}

.yith-plugin-ui--classic-wp-list-style table.wp-list-table tbody > :nth-child(odd), .yith-plugin-ui #plugin-fw-wc .yith-plugin-ui--classic-wp-list-style table.wp-list-table tbody > :nth-child(odd) {
  background-color: var(--yith-table-row-striped);
}

.yith-plugin-ui--classic-wp-list-style table.wp-list-table tfoot, .yith-plugin-ui #plugin-fw-wc .yith-plugin-ui--classic-wp-list-style table.wp-list-table tfoot {
  display: none;
}

.yith-plugin-ui--classic-wp-list-style table.wp-list-table .check-column, .yith-plugin-ui #plugin-fw-wc .yith-plugin-ui--classic-wp-list-style table.wp-list-table .check-column {
  width: 2em;
}

.yith-plugin-ui--classic-wp-list-style table.wp-list-table th.sortable a, .yith-plugin-ui--classic-wp-list-style table.wp-list-table th.sorted a, .yith-plugin-ui #plugin-fw-wc .yith-plugin-ui--classic-wp-list-style table.wp-list-table th.sortable a, .yith-plugin-ui #plugin-fw-wc .yith-plugin-ui--classic-wp-list-style table.wp-list-table th.sorted a {
  padding: 0 8px 0 0;
  color: inherit;
}

.yith-plugin-ui--classic-wp-list-style table.wp-list-table th.sortable a:hover, .yith-plugin-ui--classic-wp-list-style table.wp-list-table th.sorted a:hover, .yith-plugin-ui #plugin-fw-wc .yith-plugin-ui--classic-wp-list-style table.wp-list-table th.sortable a:hover, .yith-plugin-ui #plugin-fw-wc .yith-plugin-ui--classic-wp-list-style table.wp-list-table th.sorted a:hover {
  color: var(--yith-link);
}

.yith-plugin-ui--classic-wp-list-style table.wp-list-table .sorting-indicator, .yith-plugin-ui #plugin-fw-wc .yith-plugin-ui--classic-wp-list-style table.wp-list-table .sorting-indicator {
  visibility: visible;
}

.yith-plugin-ui--classic-wp-list-style table.wp-list-table .sorting-indicator:before, .yith-plugin-ui #plugin-fw-wc .yith-plugin-ui--classic-wp-list-style table.wp-list-table .sorting-indicator:before {
  font-family: yith-icon;
  content: "\f116";
  color: inherit;
  font-size: 10px;
  top: 0;
  left: 0;
}

.yith-plugin-ui--classic-wp-list-style table.wp-list-table th.sorted.asc .sorting-indicator:before,
.yith-plugin-ui--classic-wp-list-style table.wp-list-table th.desc:hover span.sorting-indicator:before,
.yith-plugin-ui--classic-wp-list-style table.wp-list-table th.desc a:focus span.sorting-indicator:before, .yith-plugin-ui #plugin-fw-wc .yith-plugin-ui--classic-wp-list-style table.wp-list-table th.sorted.asc .sorting-indicator:before,
.yith-plugin-ui #plugin-fw-wc .yith-plugin-ui--classic-wp-list-style table.wp-list-table th.desc:hover span.sorting-indicator:before,
.yith-plugin-ui #plugin-fw-wc .yith-plugin-ui--classic-wp-list-style table.wp-list-table th.desc a:focus span.sorting-indicator:before {
  content: "\f113";
  font-weight: 600;
}

.yith-plugin-ui--classic-wp-list-style table.wp-list-table th.sorted.desc .sorting-indicator:before,
.yith-plugin-ui--classic-wp-list-style table.wp-list-table th.asc:hover span.sorting-indicator:before,
.yith-plugin-ui--classic-wp-list-style table.wp-list-table th.asc a:focus span.sorting-indicator:before, .yith-plugin-ui #plugin-fw-wc .yith-plugin-ui--classic-wp-list-style table.wp-list-table th.sorted.desc .sorting-indicator:before,
.yith-plugin-ui #plugin-fw-wc .yith-plugin-ui--classic-wp-list-style table.wp-list-table th.asc:hover span.sorting-indicator:before,
.yith-plugin-ui #plugin-fw-wc .yith-plugin-ui--classic-wp-list-style table.wp-list-table th.asc a:focus span.sorting-indicator:before {
  content: "\f110";
  font-weight: 600;
}

.yith-plugin-ui--classic-wp-list-style table.wp-list-table thead th.column-actions, .yith-plugin-ui--classic-wp-list-style table.wp-list-table tfoot th.column-actions, .yith-plugin-ui #plugin-fw-wc .yith-plugin-ui--classic-wp-list-style table.wp-list-table thead th.column-actions, .yith-plugin-ui #plugin-fw-wc .yith-plugin-ui--classic-wp-list-style table.wp-list-table tfoot th.column-actions {
  visibility: hidden;
}

.yith-plugin-ui--classic-wp-list-style table.wp-list-table th.column-actions, .yith-plugin-ui--classic-wp-list-style table.wp-list-table td.column-actions, .yith-plugin-ui #plugin-fw-wc .yith-plugin-ui--classic-wp-list-style table.wp-list-table th.column-actions, .yith-plugin-ui #plugin-fw-wc .yith-plugin-ui--classic-wp-list-style table.wp-list-table td.column-actions {
  text-align: right;
}

.yith-plugin-ui--classic-wp-list-style table.wp-list-table .yith-plugin-fw__action-button:not(.yith-plugin-fw__action-button--visible), .yith-plugin-ui #plugin-fw-wc .yith-plugin-ui--classic-wp-list-style table.wp-list-table .yith-plugin-fw__action-button:not(.yith-plugin-fw__action-button--visible) {
  opacity: 0;
  transition: .3s;
}

.yith-plugin-ui--classic-wp-list-style table.wp-list-table tbody tr:hover .yith-plugin-fw__action-button:not(.yith-plugin-fw__action-button--visible), .yith-plugin-ui #plugin-fw-wc .yith-plugin-ui--classic-wp-list-style table.wp-list-table tbody tr:hover .yith-plugin-fw__action-button:not(.yith-plugin-fw__action-button--visible) {
  opacity: 1;
}

.yith-plugin-ui--classic-wp-list-style .tablenav.bottom, .yith-plugin-ui #plugin-fw-wc .yith-plugin-ui--classic-wp-list-style .tablenav.bottom {
  display: none;
}

.yith-plugin-ui--classic-wp-list-style .tablenav.bottom .yith-plugin-fw__list-table-blank-state, .yith-plugin-ui #plugin-fw-wc .yith-plugin-ui--classic-wp-list-style .tablenav.bottom .yith-plugin-fw__list-table-blank-state {
  display: flex;
}

.yith-plugin-ui--boxed-wp-list-style table.wp-list-table, .yith-plugin-ui #plugin-fw-wc .yith-plugin-ui--boxed-wp-list-style table.wp-list-table {
  border: 0;
  border-spacing: 0 20px;
  box-shadow: none;
  background: transparent;
}

.yith-plugin-ui--boxed-wp-list-style table.wp-list-table th, .yith-plugin-ui--boxed-wp-list-style table.wp-list-table thead td, .yith-plugin-ui--boxed-wp-list-style table.wp-list-table tfoot td, .yith-plugin-ui #plugin-fw-wc .yith-plugin-ui--boxed-wp-list-style table.wp-list-table th, .yith-plugin-ui #plugin-fw-wc .yith-plugin-ui--boxed-wp-list-style table.wp-list-table thead td, .yith-plugin-ui #plugin-fw-wc .yith-plugin-ui--boxed-wp-list-style table.wp-list-table tfoot td {
  text-align: left;
  line-height: 1.3em;
  font-size: 14px;
}

.yith-plugin-ui--boxed-wp-list-style table.wp-list-table thead th, .yith-plugin-ui--boxed-wp-list-style table.wp-list-table thead td, .yith-plugin-ui #plugin-fw-wc .yith-plugin-ui--boxed-wp-list-style table.wp-list-table thead th, .yith-plugin-ui #plugin-fw-wc .yith-plugin-ui--boxed-wp-list-style table.wp-list-table thead td {
  border-bottom: 0;
  padding: 0 0 0 25px;
  font-weight: 600;
}

.yith-plugin-ui--boxed-wp-list-style table.wp-list-table tbody tr, .yith-plugin-ui #plugin-fw-wc .yith-plugin-ui--boxed-wp-list-style table.wp-list-table tbody tr {
  background: var(--yith-content-bg);
  border-radius: 5px;
  box-shadow: 0 0 0 1px var(--yith-light-border-color), 0 3px 11px 6px var(--yith-light-shadow);
  transition: background-color .2s ease-in-out;
}

.yith-plugin-ui--boxed-wp-list-style table.wp-list-table tbody tr th, .yith-plugin-ui--boxed-wp-list-style table.wp-list-table tbody tr td, .yith-plugin-ui #plugin-fw-wc .yith-plugin-ui--boxed-wp-list-style table.wp-list-table tbody tr th, .yith-plugin-ui #plugin-fw-wc .yith-plugin-ui--boxed-wp-list-style table.wp-list-table tbody tr td {
  background: transparent;
  vertical-align: middle;
  padding: 25px 0 25px 25px;
}

.yith-plugin-ui--boxed-wp-list-style table.wp-list-table tbody tr td:last-child, .yith-plugin-ui #plugin-fw-wc .yith-plugin-ui--boxed-wp-list-style table.wp-list-table tbody tr td:last-child {
  padding-right: 25px;
}

.yith-plugin-ui--boxed-wp-list-style table.wp-list-table tbody tr th:first-child,
.yith-plugin-ui--boxed-wp-list-style table.wp-list-table tbody tr td:first-child, .yith-plugin-ui #plugin-fw-wc .yith-plugin-ui--boxed-wp-list-style table.wp-list-table tbody tr th:first-child,
.yith-plugin-ui #plugin-fw-wc .yith-plugin-ui--boxed-wp-list-style table.wp-list-table tbody tr td:first-child {
  border-radius: 5px 0 0 5px;
}

.yith-plugin-ui--boxed-wp-list-style table.wp-list-table tbody tr th:last-child,
.yith-plugin-ui--boxed-wp-list-style table.wp-list-table tbody tr td:last-child, .yith-plugin-ui #plugin-fw-wc .yith-plugin-ui--boxed-wp-list-style table.wp-list-table tbody tr th:last-child,
.yith-plugin-ui #plugin-fw-wc .yith-plugin-ui--boxed-wp-list-style table.wp-list-table tbody tr td:last-child {
  padding-right: 25px;
  border-radius: 0 5px 5px 0;
}

.yith-plugin-ui--boxed-wp-list-style table.wp-list-table tbody tr:hover, .yith-plugin-ui #plugin-fw-wc .yith-plugin-ui--boxed-wp-list-style table.wp-list-table tbody tr:hover {
  background: var(--yith-table-row-highlight);
}

.yith-plugin-ui--boxed-wp-list-style table.wp-list-table tfoot, .yith-plugin-ui #plugin-fw-wc .yith-plugin-ui--boxed-wp-list-style table.wp-list-table tfoot {
  display: none;
}

.yith-plugin-ui--boxed-wp-list-style table.wp-list-table .check-column, .yith-plugin-ui #plugin-fw-wc .yith-plugin-ui--boxed-wp-list-style table.wp-list-table .check-column {
  width: 2em;
}

.yith-plugin-ui--boxed-wp-list-style table.wp-list-table th.sortable a, .yith-plugin-ui--boxed-wp-list-style table.wp-list-table th.sorted a, .yith-plugin-ui #plugin-fw-wc .yith-plugin-ui--boxed-wp-list-style table.wp-list-table th.sortable a, .yith-plugin-ui #plugin-fw-wc .yith-plugin-ui--boxed-wp-list-style table.wp-list-table th.sorted a {
  padding: 0 8px 0 0;
  color: inherit;
}

.yith-plugin-ui--boxed-wp-list-style table.wp-list-table th.sortable a:hover, .yith-plugin-ui--boxed-wp-list-style table.wp-list-table th.sorted a:hover, .yith-plugin-ui #plugin-fw-wc .yith-plugin-ui--boxed-wp-list-style table.wp-list-table th.sortable a:hover, .yith-plugin-ui #plugin-fw-wc .yith-plugin-ui--boxed-wp-list-style table.wp-list-table th.sorted a:hover {
  color: var(--yith-link);
}

.yith-plugin-ui--boxed-wp-list-style table.wp-list-table .sorting-indicator, .yith-plugin-ui #plugin-fw-wc .yith-plugin-ui--boxed-wp-list-style table.wp-list-table .sorting-indicator {
  visibility: visible;
}

.yith-plugin-ui--boxed-wp-list-style table.wp-list-table .sorting-indicator:before, .yith-plugin-ui #plugin-fw-wc .yith-plugin-ui--boxed-wp-list-style table.wp-list-table .sorting-indicator:before {
  font-family: yith-icon;
  content: "\f116";
  color: inherit;
  font-size: 10px;
  top: 0;
  left: 0;
}

.yith-plugin-ui--boxed-wp-list-style table.wp-list-table th.sorted.asc .sorting-indicator:before,
.yith-plugin-ui--boxed-wp-list-style table.wp-list-table th.desc:hover span.sorting-indicator:before,
.yith-plugin-ui--boxed-wp-list-style table.wp-list-table th.desc a:focus span.sorting-indicator:before, .yith-plugin-ui #plugin-fw-wc .yith-plugin-ui--boxed-wp-list-style table.wp-list-table th.sorted.asc .sorting-indicator:before,
.yith-plugin-ui #plugin-fw-wc .yith-plugin-ui--boxed-wp-list-style table.wp-list-table th.desc:hover span.sorting-indicator:before,
.yith-plugin-ui #plugin-fw-wc .yith-plugin-ui--boxed-wp-list-style table.wp-list-table th.desc a:focus span.sorting-indicator:before {
  content: "\f113";
  font-weight: 600;
}

.yith-plugin-ui--boxed-wp-list-style table.wp-list-table th.sorted.desc .sorting-indicator:before,
.yith-plugin-ui--boxed-wp-list-style table.wp-list-table th.asc:hover span.sorting-indicator:before,
.yith-plugin-ui--boxed-wp-list-style table.wp-list-table th.asc a:focus span.sorting-indicator:before, .yith-plugin-ui #plugin-fw-wc .yith-plugin-ui--boxed-wp-list-style table.wp-list-table th.sorted.desc .sorting-indicator:before,
.yith-plugin-ui #plugin-fw-wc .yith-plugin-ui--boxed-wp-list-style table.wp-list-table th.asc:hover span.sorting-indicator:before,
.yith-plugin-ui #plugin-fw-wc .yith-plugin-ui--boxed-wp-list-style table.wp-list-table th.asc a:focus span.sorting-indicator:before {
  content: "\f110";
  font-weight: 600;
}

.yith-plugin-ui--boxed-wp-list-style table.wp-list-table thead th.column-actions, .yith-plugin-ui--boxed-wp-list-style table.wp-list-table tfoot th.column-actions, .yith-plugin-ui #plugin-fw-wc .yith-plugin-ui--boxed-wp-list-style table.wp-list-table thead th.column-actions, .yith-plugin-ui #plugin-fw-wc .yith-plugin-ui--boxed-wp-list-style table.wp-list-table tfoot th.column-actions {
  visibility: hidden;
}

.yith-plugin-ui--boxed-wp-list-style table.wp-list-table th.column-actions, .yith-plugin-ui--boxed-wp-list-style table.wp-list-table td.column-actions, .yith-plugin-ui #plugin-fw-wc .yith-plugin-ui--boxed-wp-list-style table.wp-list-table th.column-actions, .yith-plugin-ui #plugin-fw-wc .yith-plugin-ui--boxed-wp-list-style table.wp-list-table td.column-actions {
  text-align: right;
}

.yith-plugin-ui--boxed-wp-list-style table.wp-list-table .yith-plugin-fw__action-button:not(.yith-plugin-fw__action-button--visible), .yith-plugin-ui #plugin-fw-wc .yith-plugin-ui--boxed-wp-list-style table.wp-list-table .yith-plugin-fw__action-button:not(.yith-plugin-fw__action-button--visible) {
  opacity: 0;
  transition: .3s;
}

.yith-plugin-ui--boxed-wp-list-style table.wp-list-table tbody tr:hover .yith-plugin-fw__action-button:not(.yith-plugin-fw__action-button--visible), .yith-plugin-ui #plugin-fw-wc .yith-plugin-ui--boxed-wp-list-style table.wp-list-table tbody tr:hover .yith-plugin-fw__action-button:not(.yith-plugin-fw__action-button--visible) {
  opacity: 1;
}

.yith-plugin-ui--boxed-wp-list-style .tablenav.bottom, .yith-plugin-ui #plugin-fw-wc .yith-plugin-ui--boxed-wp-list-style .tablenav.bottom {
  display: none;
}

.yith-plugin-ui--boxed-wp-list-style .tablenav.bottom .yith-plugin-fw__list-table-blank-state, .yith-plugin-ui #plugin-fw-wc .yith-plugin-ui--boxed-wp-list-style .tablenav.bottom .yith-plugin-fw__list-table-blank-state {
  display: flex;
}

/**
 * YITH Animations
 */
.yith-plugin-fw-animate__appear-from-bottom {
  animation: yith-plugin-fw-appear-from-bottom .3s forwards;
}

.yith-plugin-fw-animate__appear-from-top {
  animation: yith-plugin-fw-appear-from-top .3s forwards;
}

.yith-plugin-fw-animate__fade-in {
  animation: yith-plugin-fw-fade-in .3s forwards;
}

@-webkit-keyframes yith-plugin-fw-appear-from-top {
  from {
    opacity: 0;
    transform: translateY(-30%);
    -webkit-transform: translateY(-30%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    -webkit-transform: translateY(0);
  }
}

@keyframes yith-plugin-fw-appear-from-top {
  from {
    opacity: 0;
    transform: translateY(-30%);
    -webkit-transform: translateY(-30%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    -webkit-transform: translateY(0);
  }
}

@-webkit-keyframes yith-plugin-fw-appear-from-bottom {
  from {
    opacity: 0;
    transform: translateY(30%);
    -webkit-transform: translateY(30%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    -webkit-transform: translateY(0);
  }
}

@keyframes yith-plugin-fw-appear-from-bottom {
  from {
    opacity: 0;
    transform: translateY(30%);
    -webkit-transform: translateY(30%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    -webkit-transform: translateY(0);
  }
}

@-webkit-keyframes yith-plugin-fw-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes yith-plugin-fw-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
PK`x1\�����$plugin-fw/assets/css/yith-fields.cssnu�[���.yith-plugin-fw span.description {
    display    : block;
    margin-top : 5px;
    font-size  : 12px;
    color      : #777;
    font-style : italic;
    clear      : both;
}

.yith-plugin-fw span.description.inline {
    display   : inline-block;
    margin    : 0 0 0 5px;
    min-width : 0;
    max-width : 100%;
}

.yith-disabled {
    opacity        : 0.3;
    pointer-events : none;
}

.yith-plugin-fw-field-wrapper:not(.yith-plugin-fw-title-field-wrapper) {
    display : block;
    width   : 100%;
}

.yith-plugin-fw-field-wrapper .yith-inline-fields > div {
    display        : inline-block;
    vertical-align : middle;
    margin-right   : 5px;
}

.yith-plugin-fw-field-wrapper span.desc {
    display : block;
    width   : 100%;
}

.yith-plugin-fw-title-field-wrapper h3.title {
    width   : 100%;
    padding : 0 !important;
}

.the-metabox .yith-plugin-fw-title-field-wrapper h3.title {
    float : left;
}

.yith-plugin-fw span.color-alpha {
    height : 100% !important;
    width  : 100% !important;
    border : 1px solid #d9d9d9;
    margin : -1px;
}

.yith-plugin-fw .wp-color-result-text {
    height : 100%;
}

.yith-plugin-fw input[type=email],
.yith-plugin-fw input[type=number],
.yith-plugin-fw input[type=text]:not(.select2-search__field),
.yith-plugin-fw select,
.woocommerce .yith-plugin-fw table.form-table input[type=email],
.woocommerce .yith-plugin-fw table.form-table input[type=number],
.yith-plugin-ui input[type=password],
.woocommerce .yith-plugin-fw table.form-table input[type=text]:not(.select2-search__field),
.woocommerce .yith-plugin-fw table.form-table select {
    width       : 400px;
    max-width   : 100%;
    height      : 30px;
    padding     : 5px;
    line-height : 1;
}

.yith-plugin-fw input[type=number],
.woocommerce .yith-plugin-fw table.form-table input[type=number] {
    width     : 70px;
    min-width : 70px;
}

.woocommerce .yith-plugin-fw table.form-table input[type=text].wp-color-picker,
.woocommerce .yith-plugin-fw table.form-table input[type=text].yith-plugin-fw-colorpicker,
.yith-plugin-fw input[type=text].wp-color-picker,
.yith-plugin-fw input[type=text].yith-plugin-fw-colorpicker {
    width     : 6em;
    max-width : none;
    height    : auto;
    padding   : 3px 5px;
}

.wp-core-ui .yith-plugin-fw-colorpicker-field-wrapper button {
    border-color : #7e8993;
}

.woocommerce .yith-plugin-fw table.form-table input[type=text].colorpick,
.yith-plugin-fw input[type=text].colorpick {
    width     : 6em;
    max-width : none;
    height    : auto;
    padding   : 6px;
}

.yith-plugin-fw input.select2-search__field,
.yith-plugin-fw .select2-container .select2-search--inline .select2-search__field,
.woocommerce .yith-plugin-fw input.select2-search__field,
.woocommerce .yith-plugin-fw table.form-table input.select2-search__field {
    padding   : 3px;
    min-width : 380px;
}

.yith-plugin-fw .select2-container .select2-selection--single .select2-selection__rendered {
    line-height : 27px;
}

.yith-plugin-fw textarea:not(.wp-editor-area) {
    width     : 400px;
    max-width : 100%;
    padding   : 5px;
}

/* ------------- ICONS ------------- */
.yit-icons-manager-wrapper {
    width     : 100%;
    max-width : 400px;
}

.yit-icons-manager-text {
    width : 100%;
}

.yit-icons-manager-icon-text {
    width  : calc(100% - 35px) !important;
    height : 30px;
    float  : left;
    margin : 0;
}

.yit-icons-manager-icon-preview {
    width        : 30px;
    height       : 30px;
    margin-right : 5px;
    float        : left;
    padding-top  : 6px;
    box-sizing   : border-box;
    text-align   : center;
    background   : #f1f1f1;
}

.yit-icons-manager-list-wrapper {
    margin     : 10px 0;
    box-shadow : 0 0 0 1px #ddd;
}

ul.yit-icons-manager-list {
    width      : 100%;
    height     : 300px;
    overflow-y : scroll;
    margin     : 0;
}

ul.yit-icons-manager-list li {
    float       : left;
    width       : 30px;
    height      : 30px;
    padding-top : 6px;
    box-sizing  : border-box;
    text-align  : center;
    background  : #f1f1f1;
    margin      : 1px;
    cursor      : pointer;
}

ul.yit-icons-manager-list li:hover {
    background : #c5dcf6;
}

ul.yit-icons-manager-list li.active {
    background : #d4f0ff;
}

.yit-icons-manager-action-set-default {
    margin-bottom : 0;
}

.yit-icons-manager-default-icon-preview {
    height       : 100%;
    display      : inline-block;
    padding-left : 10px;
    border-left  : 1px solid #ccc;
    margin-left  : 10px;
}

/* ------- Text Array ------- */
.yith-plugin-fw-text-array-table td {
    padding : 1px;
}

.yith-plugin-fw-text-array-table input[type=text],
.woocommerce table.form-table table.yith-plugin-fw-text-array-table input[type=text] {
    width : 100%;
}

/* ------- Image Gallery ------- */
.yith-plugin-fw .yith-plugin-fw-image-gallery ul li {
    display     : inline-block;
    width       : 80px;
    margin-left : 10px;
    position    : relative;
}

.yith-plugin-fw .yith-plugin-fw-image-gallery ul li img {
    width  : 80px;
    border : 1px solid #ccc;
}

.yith-plugin-fw .yith-plugin-fw-image-gallery ul li ul {
    position : absolute;
    top      : -6px;
    right    : -1px;
    width    : 20px;
    height   : 20px;
}

.yith-plugin-fw .yith-plugin-fw-image-gallery ul a.delete {
    background  : url(../images/x.png) no-repeat;
    width       : 20px;
    height      : 20px;
    display     : block;
    text-indent : -99999px;
}

/* ------- OnOff ------- */
.yith-plugin-fw-onoff-container {
    display    : inline-block;
    text-align : left;
}

.yith-plugin-fw-onoff-container input {
    display : none;
}

.yith-plugin-fw-onoff-container input + span {
    cursor        : pointer;
    text-indent   : -9999px;
    display       : block;
    width         : 36px;
    line-height   : 1;
    height        : 20px;
    background    : #a4a4a4;
    border-radius : 24px;
    position      : relative;
    transition    : all 0.3s;
}


.yith-plugin-fw-onoff-container input + span:before {
    content       : '';
    background    : #fff;
    width         : 16px;
    height        : 16px;
    border-radius : 50%;
    position      : absolute;
    top           : 2px;
    left          : 2px;
    transition    : all 0.3s;
}

.yith-plugin-fw-onoff-container input:checked + span,
.yith-plugin-fw-onoff-container input.onoffchecked + span {
    background : #0073aa;
}

.yith-plugin-fw-onoff-container input:checked + span:before,
.yith-plugin-fw-onoff-container input.onoffchecked + span:before {
    left : 18px;
}

/* ------- Preview ------- */
.yith-plugin-fw-preview-field {
    max-height : 200px;
}

/* ------- Radio ------- */
.yith-plugin-fw-radio input[type=radio] {
    margin : 0 3px 0 0;
}

.yith-plugin-fw-radio__row {
    margin-bottom : 8px;
}

/* ------- Checkbox Array ------- */
.yith-plugin-fw-checkbox-array input[type=checkbox] {
    margin : 2px 3px 0 0;
}

.yith-plugin-fw-checkbox-array__row {
    margin-bottom : 10px;
    display       : flex;
}

.yith-plugin-fw-checkbox-array__row label {
    display     : inline-block !important;
    width       : auto !important;
    float       : none !important;
    margin      : 0 0 0 10px !important;
    padding     : 0 !important;
    font-weight : 400 !important;
}

.yith-plugin-fw-checkbox-array__row label small {
    display     : block;
    line-height : 2em;
}

/* ------- Sidebar Layout ------- */
.yith-plugin-fw-sidebar-layout input[type="radio"] {
    display : none;
    width   : 0px;
}

.yith-plugin-fw-sidebar-layout input[type="radio"]:first-child {
    margin-right : -2px;
}

.yith-plugin-fw-sidebar-layout input[type="radio"] + img {
    border  : 2px solid #fff;
    padding : 1px;
}

.yith-plugin-fw-sidebar-layout input[type="radio"] + img:hover {
    cursor : pointer;
}

.yith-plugin-fw-sidebar-layout input[checked] + img {
    border  : 2px solid #f2ad35;
    padding : 1px;
}

.yith-plugin-fw-sidebar-layout select {
    vertical-align : 12px;
}

.yit-admin-panel-content-wrap .yith-plugin-fw-sidebar-layout label {
    font-weight : bold;
    width       : 200px;
    float       : left;
    line-height : 23px;
    margin-left : -230px;
}

/* ------- Slider ------- */
.yith-plugin-fw .slider {
    padding-top : 20px;
}

.yith-plugin-fw-slider-container .ui-slider .minCaption {
    position     : absolute;
    right        : 95%;
    top          : -6px;
    margin-right : 11px;
}

.yith-plugin-fw-slider-container .ui-slider .maxCaption {
    position    : absolute;
    left        : 95%;
    top         : -6px;
    margin-left : 20px;
}

.yith-plugin-fw-slider-container .ui-slider-horizontal .ui-slider-handle {
    background    : #fff;
    border        : 0px !important;
    top           : -12px !important;
    border-radius : 50%;
    width         : 27px !important;
    height        : 27px !important;
    box-sizing    : border-box;
    box-shadow    : 0 1px 7px -1px rgba(0, 0, 0, 0.5);
    font-size     : 13px;
    padding       : 6px 0;
    font-weight   : 600;
    color         : #555;
    text-align    : center;
}

.yith-plugin-fw-slider-container .ui-slider.ui-widget-content {
    background    : #ccc;
    border        : none !important;
    height        : 3px !important;
    border-radius : 3px !important;
    width         : 90%;
    margin        : 15px 5% 20px 5%;
}

.yith-plugin-fw-slider-container .ui-slider.ui-widget-content .ui-widget-header {
    background            : #4b93ff;
    left                  : 0px !important;
    -webkit-border-radius : 3px;
    -moz-border-radius    : 3px;
    -khtml-border-radius  : 3px;
    border-radius         : 3px;
}

/* ------- Select2 ------- */
.yith-plugin-fw-select2-wrapper {
    width : 400px;
}

/* ------- Textarea ------- */
.yith-plugin-fw-textarea-editor-field-wrapper {
    max-width : 1000px;
    clear     : both;
}

.yith-plugin-fw-textarea-editor-field-wrapper textarea.wp-editor-area,
.woocommerce table.form-table .yith-plugin-fw-textarea-editor-field-wrapper textarea.wp-editor-area {
    width : 100%;
}

/* ------- Buttons ------- */
.yith-plugin-fw-buttons-field-wrapper {
    margin-top : 7px;
}

/* ------- Select Images ------- */
.yith-plugin-fw-select-images__list {
    margin    : 0;
    display   : flex;
    flex-wrap : wrap;
}

.yith-plugin-fw-select-images__item {
    width           : calc(20% - 10px);
    min-width       : 150px;
    margin          : 0 10px 10px 0;
    padding         : 10px;
    box-sizing      : border-box;
    cursor          : pointer;
    transition      : all .3s;
    border          : 2px solid #eee;
    display         : flex;
    flex-direction  : column;
    justify-content : space-between;
}

.yith-plugin-fw-select-images__item:hover,
.yith-plugin-fw-select-images__item.yith-plugin-fw-select-images__item--selected {
    border-color : #07bcce;
}

.yith-plugin-fw-select-images__item__label {
    text-align    : center;
    font-weight   : 600;
    margin-bottom : 10px;
}

.yith-plugin-fw-select-images__item img {
    display   : block;
    max-width : 100%;
    margin    : 0 auto;
}

/****************
WordPress 5.3 with old panel fixes
 ****************/
.yith-plugin-fw-field-wrapper .select2-container .select2-selection--single {
    height      : auto;
    line-height : 1;
}

.yith-plugin-fw-field-wrapper .select2-container .select2-selection--single .select2-selection__arrow {
    height : 100%;
}

/****************
YITH UI
 ****************/
.yith-plugin-fw-banner {
    width         : 100%;
    height        : 45px;
    background    : #cfd9dd url(../images/banner-premium.png) no-repeat;
    display       : flex;
    align-items   : center;
    padding-right : -23px;
}

.yith-plugin-fw-banner h1 {
    text-transform : uppercase;
    color          : #0c5777;
    font-size      : 15px;
    padding        : 0 0 0 110px;
    font-weight    : 700;
    text-align     : left;
    display        : inline-block;
    box-sizing     : border-box;
}

.yith-plugin-fw-banner span {
    font-style     : italic;
    display        : block;
    font-size      : 15px;
    color          : #214249;
    text-transform : none;
    text-align     : right;
}

.yith-plugin-fw-banner a,
.yith-plugin-fw-banner a:focus {
    text-decoration : none;
    outline         : none;
    box-shadow      : none;
}

.yith-plugin-fw-rate {
    margin : 20px 0;
}

.yith-plugin-fw-rate .dashicons-star-filled {
    font-size : 12px;
    margin    : 4px -4px;
    color     : #0c5777;
}

.yith-plugin-fw-rate a {
    text-decoration : none;
}

.yith-plugin-ui a {
    outline    : none;
    box-shadow : none;
}

.yith-plugin-ui {
    font-family : -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

.yith-plugin-ui #wpwrap h2.nav-tab-wrapper, .yith-plugin-ui #wpbody-content h2.nav-tab-wrapper {
    margin-top : 10px;
}

.yith-plugin-ui .nav-tab {
    background-color : #336374;
    color            : #fff;
    font-size        : 13px;
    padding          : 7px 15px;
    border           : 0;
    margin           : 0 4px 0 0;
    transition       : background-color 0.3s linear;
    float            : none;
    display          : inline-block;
}

.yith-plugin-ui .nav-tab.yith-premium {
    background-color : #be421c;
}

.yith-plugin-ui .yith-nav-tab-wrapper .yith-plugin-fw-tab-element:hover > a.nav-tab:not(.nav-tab-active),
.yith-plugin-ui .yith-nav-tab-wrapper .nav-tab:not(.nav-tab-active):hover {
    background-color : #207a92;
}

.yith-plugin-ui .yith-nav-tab-wrapper .yith-plugin-fw-tab-element:hover > a.nav-tab.yith-premium:not(.nav-tab-active),
.yith-plugin-ui .yith-nav-tab-wrapper .nav-tab.yith-premium:not(.nav-tab-active):hover {
    background-color : #d24318;
}

.yith-plugin-ui .nav-tab-active,
.yith-plugin-ui .nav-tab-active:hover,
.yith-plugin-ui .nav-tab-active:focus,
.yith-plugin-ui .nav-tab-active:focus:active {
    background-color : #fff;
    color            : #336374;
    box-shadow       : 0 3px 0 -1px #fff;
    border-bottom    : 0;
}

.yith-plugin-ui .nav-tab-active.yith-premium,
.yith-plugin-ui .nav-tab-active.yith-premium:hover,
.yith-plugin-ui .nav-tab-active.yith-premium:focus,
.yith-plugin-ui .nav-tab-active.yith-premium:focus:active {
    background-color : #fff;
    color            : #be421c;
    box-shadow       : none;
}

.yith-plugin-ui .yith-plugin-fw-tab-element:first-child .nav-tab-active {
    border-left : 1px solid #ddd;
}

.yith-plugin-ui #plugin-fw-wc {
    padding-top : 0px;
}

.yith-plugin-ui .form-table td {
    padding : 15px 20px;
}

.yith-plugin-ui.metaboxes-tab label {
    color       : #33373b;
    font-size   : 14px;
    margin-left : -248px;
}

.yith-plugin-ui.metaboxes-tab .the-metabox {
    margin      : 40px 0 40px 290px;
    margin-left : 264px;
}

.yith-plugin-ui.metaboxes-tab label {
    width       : 200px;
    font-weight : 600;
}

.yith-plugin-ui span.description {
    color       : #716269;
    font-size   : 13px;
    font-style  : normal;
    font-weight : 400;
    margin-top  : 15px;
    margin-left : 0;
}

#wpwrap .yith-plugin-ui h2.nav-tab-wrapper, #wpbody-content .yith-plugin-ui h2.nav-tab-wrapper {
    border           : 0;
    border-bottom    : 1px solid #ddd;
    margin-right     : 15px;
    margin-bottom    : 0;
    background-color : transparent;
    padding-left     : 0;
}

.yith-plugin-ui #plugin-fw-wc table.form-table,
.yith-plugin-ui #yith-plugin-fw-panel table.form-table,
.yith-plugin-ui table.form-table {
    border        : 1px solid #d8d8d8;
    border-top    : 0;
    margin-bottom : 40px;
}

.yith-plugin-ui #wpwrap h2.nav-tab-wrapper, .yith-plugin-ui #wpbody-content h2.nav-tab-wrapper {
    background-color : transparent;
    border           : 0;
    text-transform   : none;
    border-bottom    : 1px solid #ddd;
}

.yith-plugin-ui h2 {
    color            : #2a8db0;
    font-size        : 16px;
    border           : 1px solid #d8d8d8;
    border-bottom    : 0;
    background-color : #fff;
    padding          : 35px 20px;
    margin           : 0px;
}

.yith-plugin-ui .yith-plugin-fw-custom-tab h2 {
    border       : 0px solid #d8d8d8;
    padding-left : 0;
}

.yith-plugin-ui #plugin-fw-wc table.form-table th, #yith-plugin-fw-panel table.form-table th.titledesc, .yith-plugin-ui #plugin-fw-wc table.form-table td, #yith-plugin-fw-panel table.form-table td.forminp {
    padding : 30px 20px;
}

.yith-plugin-ui #plugin-fw-wc table.form-table tr.toggle-element-fixed td, #yith-plugin-fw-panel table.form-table tr.toggle-element-fixed td.forminp {
    padding : 0 20px 30px;
}

.yith-plugin-ui #plugin-fw-wc h2 + div {
    background     : #fff;
    border-left    : 1px solid #d9d9d9;
    border-right   : 1px solid #d9d9d9;
    margin         : -20px 0 0 0;
    padding-left   : 20px;
    padding-bottom : 5px;
}

.yith-plugin-ui #plugin-fw-wc h2 + div p, .yith-plugin-ui p.info-box {
    background    : #f1f1f1;
    font-size     : 14px;
    font-weight   : 700;
    width         : 50%;
    display       : block;
    padding       : 15px;
    margin-bottom : 0;
}

.yith-plugin-ui #plugin-fw-wc h2 + div p:before, .yith-plugin-ui p.info-box:before {
    content      : "\e90e";
    font-family  : yith-icon;
    font-size    : 30px;
    font-weight  : normal;
    display      : block;
    margin-top   : -12px;
    float        : left;
    margin-right : 15px;
}

.yith-plugin-ui h2:first-child {
    border-top : 0;
}

/*** Icon ***/
.yith-plugin-ui .yith-icon--right-overlay {
    position    : relative;
    left        : -33px;
    line-height : 36px;
    width       : 0;
}

/*** General Input Style ***/

.yith-plugin-ui .yith-plugin-fw select,
.yith-plugin-ui textarea:not(.wp-editor-area),
.yith-plugin-ui input[type=number],
.yith-plugin-ui.metaboxes-tab input[type=number],
.yith-plugin-ui input[type=text],
.yith-plugin-ui input[type=email],
.yith-plugin-ui input[type=password],
.yith-plugin-ui .search-box input[name="s"],
.yith-plugin-fw.yith-plugin-ui input[type=text]:not(.select2-search__field),
.yith-plugin-fw-panel .yith-plugin-ui table.form-table input[type=text],
.woocommerce.yith-plugin-fw-panel .yith-plugin-ui table.form-table input[type=text]:not(.select2-search__field),
.woocommerce.yith-plugin-fw-panel .yith-plugin-ui table.form-table select,
.woocommerce.yith-plugin-fw-panel .yith-plugin-ui table.form-table textarea:not(.wp-editor-area),
.woocommerce .yith-plugin-fw table.form-table input[type=password],
.woocommerce.yith-plugin-fw-panel .yith-plugin-ui table.form-table input[type=number],
.woocommerce.yith-plugin-fw-panel .yith-plugin-ui table.form-table input[type=text] {
    border        : 1px solid #d8d8d8;
    border-radius : 8px;
    padding       : 8px 10px;
    height        : 38px;
    min-width     : 90px;
    box-shadow    : none;
    color         : #716269;
}


.yith-plugin-ui input::-webkit-input-placeholder {
    color : #999999;
}

.yith-plugin-ui input:-ms-input-placeholder {
    color : #999999;
}

.yith-plugin-ui input::-ms-input-placeholder {
    color : #999999;
}

.yith-plugin-ui input::placeholder {
    color : #999999;
}

.woocommerce.yith-plugin-fw-panel .yith-plugin-ui table.form-table input[type=number] {
    min-width : 70px;
}

.yith-plugin-ui textarea:not(.wp-editor-area),
.woocommerce.yith-plugin-fw-panel .yith-plugin-ui table.form-table textarea:not(.wp-editor-area) {
    height  : auto;
    padding : 8px;
}

.yith-plugin-ui input[type=text]:not(.select2-search__field).wp-color-picker,
.yith-plugin-ui table.form-table input[type=text].wp-color-picker,
.woocommerce.yith-plugin-fw-panel .yith-plugin-ui table.form-table input[type=text].wp-color-picker {
    border    : 0;
    height    : 30px;
    max-width : 121px;
    font-size : 11px;
    padding   : 0;
}

.yith-plugin-ui .search-box input[name="s"] {
    height : 35px;
}

.woocommerce.yith-plugin-fw-panel .yith-plugin-ui table.form-table input[type=text].small-text,
.yith-plugin-ui input[type=text].small-text {
    width  : 100px;
    height : 25px;
    border : 1px solid #d9d9d9;
}


.yith-plugin-ui select:focus,
.yith-plugin-ui .yith-plugin-fw select:focus,
.woocommerce .yith-plugin-ui table.form-table select:focus,
.woocommerce.yith-plugin-fw-panel .yith-plugin-ui table.form-table select:focus,
.yith-plugin-ui input[type=text]:not(.select2-search__field):focus,
.woocommerce.yith-plugin-fw-panel .yith-plugin-ui table.form-table input[type=text]:not(.select2-search__field):focus,
.yith-plugin-ui input[type=number]:focus,
.woocommerce.yith-plugin-fw-panel .yith-plugin-ui table.form-table input[type=number]:focus,
.yith-plugin-ui textarea:not(.wp-editor-area):focus,
.woocommerce.yith-plugin-fw-panel .yith-plugin-ui table.form-table textarea:not(.wp-editor-area):focus {
    border-color : #a7d9ec;
}

.woocommerce .yith-plugin-ui table.form-table select,
.woocommerce.yith-plugin-fw-panel .yith-plugin-ui table.form-table select,
.yith-plugin-ui select {
    -webkit-appearance : none;
    line-height        : 1.2em;
    min-height         : 35px;
    background         : #fff url("../images/arrow_down.svg") no-repeat right center;
    background-size    : 35px 13px;
    border-radius      : 8px;
    padding-right      : 30px;
}

.yith-plugin-ui .form-table th {
    width         : 200px;
    padding-right : 50px;
}

/** SELECT 2 **/
.yith-plugin-ui .select2-container,
.yith-plugin-ui .select2-selection--single {
    height  : auto;
    padding : 2px;
    outline : none;
}

.yith-plugin-ui .select2-container .select2-selection--single,
.yith-plugin-ui .select2-container .select2-selection--multiple,
.yith-plugin-ui .select2-container.select2-container--focus .select2-selection--single,
.yith-plugin-ui .select2-container.select2-container--focus .select2-selection--multiple,
.yith-plugin-ui .select2-container.select2-container--open .select2-selection--single,
.yith-plugin-ui .select2-container.select2-container--open .select2-selection--multiple {
    margin     : 0;
    border     : 0;
    box-shadow : none !important;
}

.yith-plugin-ui .select2-container .select2-selection--single .select2-selection__arrow {
    background : none;
}

/* old panel*/

.yith-plugin-fw-select2-container {
    z-index : 9999;
}

.yith-plugin-ui span.select2.select2-container.select2-container--default,
span.select2.select2-container.select2-container--default.yith-plugin-fw-select2-container {
    border        : 1px solid #d8d8d8;
    border-radius : 8px;
}

.yith-plugin-ui span.select2.select2-container.select2-container--default:hover,
.yith-plugin-ui span.select2.select2-container.select2-container--default:active,
.yith-plugin-ui span.select2.select2-container.select2-container--default:focus {
    border-color : #a7d9ec;
}

.yith-plugin-ui .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color : #fff;
}

.woocommerce.yith-plugin-fw-panel .yith-plugin-ui table.form-table input[type=text].select2-search__field,
.yith-plugin-ui .yith-plugin-fw table.form-table input.select2-search__field {
    border    : 0;
    padding   : 0;
    height    : initial;
    min-width : 380px;
}

.yith-plugin-ui .select2-container--default .select2-selection--multiple .select2-selection__choice,
.yith-plugin-ui .select2-selection__choice {
    color            : #fff;
    background-color : #4e8ba2;
    border-radius    : 12px;
    padding          : 3px 11px;
    border-color     : #4e8ba2;
    font-size        : 13px;
}

.wc-wp-version-gte-53 .yith-plugin-ui .select2-container .select2-selection--single .select2-selection__arrow {
    background-image : none;
}

.yith-plugin-ui .select2-container--default .select2-selection--single .select2-selection__arrow:before {
    content     : "\e900";
    font-family : 'yith-icon' !important;
    line-height : 36px;
    color       : #d9d9d9;
}

.yith-plugin-ui .select2-container--default .select2-selection--single .select2-selection__arrow b {
    display : none;
}

.yith-plugin-fw-select2-container.select2-container--open .select2-dropdown:after {
    display : none;
}

.yith-plugin-fw-select2-container.select2-container--open .select2-dropdown--below,
.yith-plugin-fw-select2-container.select2-container--open .select2-dropdown--above {
    margin-top    : 10px;
    border-radius : 8px;
    box-shadow    : 0 2px 4px 0 rgba(0, 0, 0, 0.12), 0 2px 10px 0 rgba(0, 0, 0, 0.12) !important;
    border        : 0;
}

.yith-plugin-fw-select2-container.select2-container--open .select2-dropdown--above {
    margin-top : -10px;
}

.yith-plugin-fw-select2-container.select2-container--default.select2-container--open.select2-container--below .select2-selection--single,
.yith-plugin-fw-select2-container.select2-container--default.select2-container--open.select2-container--above .select2-selection--single {
    border-radius : 8px;
}

.yith-plugin-fw-select2-container .select2-results .select2-results__group, .select2-results .select2-results__option:first-child {
    border-top-left-radius  : 8px;
    border-top-right-radius : 8px;
}

.yith-plugin-fw-select2-container .select2-results .select2-results__group,
.yith-plugin-fw-select2-container .select2-results .select2-results__option:last-child {
    border-bottom-left-radius  : 8px;
    border-bottom-right-radius : 8px;
}

.yith-plugin-fw-select2-container .select2-dropdown {
    border : 0;
}

.yith-plugin-fw-select2-container.select2-container--default .select2-results__option[data-selected=true] {
    background-color : #fff;
    outline          : none;
}

.yith-plugin-fw-select2-container.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color : #e8eff1;
    color            : #4e8ba2;
    outline          : none;
}

.yith-plugin-ui .select2-container--default .select2-selection--multiple .select2-selection__choice__remove,
.yith-plugin-fw-panel .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    float        : right;
    padding-left : 15px;
    text-indent  : -9999px;
}

.yith-plugin-fw-panel .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:after,
.yith-plugin-ui .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:after {
    float       : right;
    color       : #fff;
    content     : "\e906";
    font-family : 'yith-icon' !important;
    font-size   : 9px;
    line-height : 21px;
    text-indent : 0;
}

.yith-plugin-ui .select2-container .select2-selection--multiple,
.yith-plugin-ui .select2-container--default.select2-container--focus .select2-selection--multiple,
.wc-wp-version-gte-53 .yith-plugin-ui .select2-container.select2-container--open .select2-selection--multiple {
    border     : 0;
    box-shadow : none;
}

.yith-plugin-fw .select2-search input[type=text] {
    border  : 0;
    padding : 0;
    height  : auto;
}

.yith-plugin-ui .yith-plugin-fw-select-field-wrapper span.yith-icon.yith-icon-magnifier,
.yith-plugin-fw-panel .yith-plugin-fw-select-field-wrapper span.yith-icon.yith-icon-magnifier {
    position    : absolute;
    padding-top : 5px;
}

.yith-plugin-ui input[type=text].select2-search__field {
    border  : 0;
    padding : 0;
    height  : 30px;
}

.yith-plugin-ui .select2-container--default .select2-search--dropdown .select2-search__field,
.yith-plugin-fw-panel .select2-container--default .select2-search--dropdown .select2-search__field {
    border        : 1px solid #d9d9d9;
    border-radius : 8px;
    box-shadow    : none;
}

.yith-plugin-ui .select2-dropdown,
.yith-plugin-fw-panel .select2-dropdown {
    border : 1px solid #d9d9d9;
}

/** RADIO BUTTON **/
.yith-plugin-ui [type="radio"]:checked,
.yith-plugin-ui [type="radio"]:not(:checked) {
    position : absolute;
    left     : -9999px;
}

.yith-plugin-ui [type="radio"]:checked + label,
.yith-plugin-ui [type="radio"]:not(:checked) + label {
    position     : relative;
    padding-left : 35px;
    cursor       : pointer;
    line-height  : 20px;
    display      : inline-block;
    color        : #716269;
    font-size    : 14px;
}

.yith-plugin-ui [type="radio"]:checked + label:before,
.yith-plugin-ui [type="radio"]:not(:checked) + label:before {
    content       : '';
    position      : absolute;
    left          : 0;
    top           : 0;
    width         : 19px;
    height        : 19px;
    border        : 1px solid #d8d8d8;
    border-radius : 100%;
    background    : #fff;
}

.yith-plugin-ui [type="radio"]:checked + label:after,
.yith-plugin-ui [type="radio"]:not(:checked) + label:after {
    content            : '';
    width              : 13px;
    height             : 13px;
    background         : #4e8ba2;
    position           : absolute;
    top                : 4px;
    left               : 4px;
    border-radius      : 100%;
    -webkit-transition : all 0.2s ease;
    transition         : all 0.2s ease;
}

.yith-plugin-ui [type="radio"]:not(:checked) + label:after {
    opacity           : 0;
    -webkit-transform : scale(0);
    transform         : scale(0);
}

.yith-plugin-ui [type="radio"]:checked + label:after {
    opacity           : 1;
    -webkit-transform : scale(1);
    transform         : scale(1);
}

/** CHECKBOX **/
.yith-plugin-ui input[type="checkbox"] {
    -webkit-appearance : none;
    background-color   : #fff;
    border             : 1px solid #d8d8d8;
    box-shadow         : none;
    width              : 18px;
    height             : 18px;
    border-radius      : 3px;
    display            : inline-block;
    position           : relative;
}

.yith-plugin-ui input[type="checkbox"]:checked {
    background-color : #4e8ba2;
    border-color     : #488197;
}

.yith-plugin-ui .forminp-checkbox span.description.inline {
    margin-left : 10px;
}

.yith-plugin-ui input[type="checkbox"]:checked:before {
    display : none;
}

.yith-plugin-ui input[type="checkbox"]:checked:after {
    content     : "\e905";
    font-family : 'yith-icon';
    font-size   : 10px;
    position    : absolute;
    font-weight : 600;
    top         : 8px;
    left        : 3px;
    color       : #fff;
}

/** ONOFF **/
.yith-plugin-ui .yith-plugin-fw-onoff-container input[type="checkbox"] {
    display : none;
}

.yith-plugin-ui .yith-plugin-fw-onoff-container input + span {
    border           : 1px solid #d8d8d8;
    background-color : #fff;
    width            : 60px;
    height           : 24px;
    line-height      : 14px;
    padding          : 4px;
    box-sizing       : border-box;
}

.yith-plugin-ui .yith-plugin-fw-onoff-container input + span:before {
    background-color : #d8d8d8;
}

.yith-plugin-ui .yith-plugin-fw-onoff-container input + span:before {
    width            : 13px;
    height           : 13px;
    top              : 5px;
    left             : 6px;
    background-color : #d8d8d8;
}

.yith-plugin-ui .yith-plugin-fw-onoff-container input + span:after {
    content      : attr(data-text-off);
    height       : 14px;
    font-size    : 12px;
    font-weight  : 600;
    padding-left : 18px;
    color        : #979797;
    display      : block;
    white-space  : nowrap;
    text-align   : center;
}

.yith-plugin-ui .yith-plugin-fw-onoff-container input:checked + span,
.yith-plugin-ui .yith-plugin-fw-onoff-container input.onoffchecked + span {
    background-color : #fff;
    border-color     : #98aa36;
}

.yith-plugin-ui .yith-plugin-fw-onoff-container input:checked + span:before,
.yith-plugin-ui.yith-plugin-fw-onoff-container input.onoffchecked + span:before {
    background-color : #98aa36;
    left             : 38px;
}

.yith-plugin-ui .yith-plugin-fw-onoff-container input:checked + span:after,
.yith-plugin-ui.yith-plugin-fw-onoff-container input.onoffchecked + span:after {
    content       : attr(data-text-on);
    color         : #98aa36;
    height        : 14px;
    font-size     : 12px;
    font-weight   : 600;
    padding-left  : 0;
    padding-right : 18px;
    display       : block;
    white-space   : nowrap;
    text-align    : center;
}

.yith-plugin-ui .yith-plugin-fw-onoff-container input + span {
    text-indent : 0;
}


/**
DATEPICKER
 */
.yith-plugin-ui .yith-plugin-fw-datepicker + .yith-icon-calendar,
.yith-plugin-fw-datepicker + .yith-icon-calendar {
    color     : #ccc;
    font-size : 18px;
}

div#ui-datepicker-div.yith-plugin-fw-datepicker-div {
    border     : 0;
    box-shadow : 0 2px 4px 0 rgba(0, 0, 0, 0.12), 0 2px 10px 0 rgba(0, 0, 0, 0.12) !important;
}

#ui-datepicker-div.yith-plugin-fw-datepicker-div .ui-datepicker-header.ui-widget-header {
    background  : #4e8ba2;
    color       : #fff;
    font-size   : 11px;
    line-height : 25px;
    border      : 0;
    min-height  : 25px;
}

#ui-datepicker-div.yith-plugin-fw-datepicker-div .ui-datepicker-title {
    line-height : 25px;
}

#ui-datepicker-div.yith-plugin-fw-datepicker-div.ui-datepicker th {
    color : #716269;
}

#ui-datepicker-div.yith-plugin-fw-datepicker-div .ui-widget-header .ui-icon,
#ui-datepicker-div.yith-plugin-fw-datepicker-div .ui-widget-header .ui-state-hover,
#ui-datepicker-div.yith-plugin-fw-datepicker-div.ui-datepicker .ui-datepicker-prev,
#ui-datepicker-div.yith-plugin-fw-datepicker-div.ui-datepicker .ui-datepicker-next,
#ui-datepicker-div.yith-plugin-fw-datepicker-div .ui-icon.ui-icon-circle-triangle-w,
#ui-datepicker-div.yith-plugin-fw-datepicker-div .ui-icon.ui-icon-circle-triangle-e {
    background  : none;
    content     : "";
    border      : 0;
    text-indent : 0;
    width       : 15px;
    height      : 20px;
    display     : block;
    overflow    : hidden;
}

.yith-plugin-ui .yith-password-wrapper {
    display  : inline-block;
    width    : auto;
    position : relative;
}

.yith-plugin-ui .yith-password-wrapper .yith-password-eye-closed:before,
.yith-plugin-ui .yith-password-wrapper .yith-password-eye:before {
    content     : '\e911';
    color       : #999;
    font-family : 'yith-icon';
    font-size   : 20px;
    font-weight : normal;
    width       : 15px;
    display     : block;
    position    : absolute;
    right       : 13px;
    top         : 0;
    line-height : 38px;
    bottom      : 0;
    cursor      : pointer;
}

.yith-plugin-ui .yith-password-wrapper .yith-password-eye-closed:before {
    content : '\e912';
}

#ui-datepicker-div.yith-plugin-fw-datepicker-div .ui-icon.ui-icon-circle-triangle-w:before {
    content     : "\e901";
    color       : #fff;
    font-family : 'yith-icon';
    font-size   : 12px;
    font-weight : normal;
    width       : 15px;
    display     : block;
}

#ui-datepicker-div.yith-plugin-fw-datepicker-div .ui-icon.ui-icon-circle-triangle-e:before {
    content     : "\e902";
    color       : #fff;
    text-indent : 0;
    font-family : 'yith-icon';
    font-size   : 12px;
    font-weight : normal;
    width       : 15px;
    display     : block;
}

/* arrow */
#ui-datepicker-div.yith-plugin-fw-datepicker-div.ui-datepicker .ui-datepicker-prev,
#ui-datepicker-div.yith-plugin-fw-datepicker-div.ui-datepicker .ui-datepicker-next,
#ui-datepicker-div.yith-plugin-fw-datepicker-div .ui-datepicker-prev.ui-datepicker-prev-hover,
#ui-datepicker-div.yith-plugin-fw-datepicker-div .ui-datepicker-prev.ui-datepicker-next-hover {
    top    : 1px;
    cursor : pointer;
}

#ui-datepicker-div.yith-plugin-fw-datepicker-div .ui-datepicker-prev.ui-datepicker-prev,
#ui-datepicker-div.yith-plugin-fw-datepicker-div .ui-datepicker-prev.ui-datepicker-prev-hover {
    left : 5px;
}

#ui-datepicker-div.yith-plugin-fw-datepicker-div.ui-datepicker .ui-datepicker-next,
#ui-datepicker-div.yith-plugin-fw-datepicker-div .ui-datepicker-next.ui-datepicker-next-hover {
    right : 1px;
}

#ui-datepicker-div.yith-plugin-fw-datepicker-div.ui-datepicker table {
    font-size : 10px;
}

#ui-datepicker-div.yith-plugin-fw-datepicker-div .ui-state-default,
#ui-datepicker-div.yith-plugin-fw-datepicker-div.ui-widget-content .ui-state-default,
#ui-datepicker-div.yith-plugin-fw-datepicker-div .ui-widget-header .ui-state-default {
    background : #fff;
    border     : 1px solid #d9d9d9;

}

#ui-datepicker-div.yith-plugin-fw-datepicker-div .ui-state-hover,
#ui-datepicker-div.yith-plugin-fw-datepicker-div.ui-widget-content .ui-state-hover,
#ui-datepicker-div.yith-plugin-fw-datepicker-div a.ui-state-default:focus,
#ui-datepicker-div.yith-plugin-fw-datepicker-div.ui-widget-content .ui-state-focus,
#ui-datepicker-div.yith-plugin-fw-datepicker-div .ui-widget-header .ui-state-focus {
    background : #ebf1f3;
    border     : 1px solid #bfd5dd;
    outline    : none;
    box-shadow : none;
}

#ui-datepicker-div.yith-plugin-fw-datepicker-div .ui-widget-header .ui-state-hover,
.woocommerce #ui-datepicker-div.yith-plugin-fw-datepicker-div .ui-state-focus {
    background : none;
    border     : 0;
}

/** colorpicker **/
.yith-plugin-ui .iris-slider-offset.ui-slider.ui-widget-content {
    background : transparent !important;
    height     : auto !important;
}

.yith-plugin-ui .yith-plugin-fw-field-wrapper .yith-colorpicker-group:not(:first-child) {
    margin-top : 20px;
}

.yith-plugin-ui .yith-plugin-fw-field-wrapper .iris-picker,
.yith-plugin-ui .yith-plugin-fw-field-wrapper .wp-picker-holder {
    display : none !important;
}

.yith-plugin-ui .yith-plugin-fw-field-wrapper .wp-picker-input-wrap,
.yith-plugin-ui .yith-plugin-fw-field-wrapper .wp-picker-input-wrap > * {
    display        : inline-block !important;
    vertical-align : middle;
}

.yith-plugin-ui .yith-plugin-fw-field-wrapper .wp-picker-active .iris-picker,
.yith-plugin-ui .yith-plugin-fw-field-wrapper .wp-picker-active .wp-picker-holder {
    display : block !important;
}

.woocommerce .yith-plugin-ui .wp-picker-container .iris-picker, .yith-plugin-ui .wp-picker-container .iris-picker {
    z-index       : 100;
    position      : absolute;
    margin-top    : 20px;
    border        : 1px solid #d8d8d8;
    border-radius : 4px;
    box-shadow    : 0 1px 3px rgba(0, 0, 0, .2);
}

.yith-plugin-ui .yith-plugin-fw input[type=text].wp-color-picker {
    border  : 0;
    padding : 2px 5px;
    height  : 30px;
}

.yith-plugin-ui .wp-color-result-text {
    display : none;
}

.yith-plugin-ui .wp-picker-container .wp-color-result.button {
    width          : 30px;
    height         : 30px;
    box-shadow     : none;
    border         : 1px solid #d9d9d9;
    margin-bottom  : 0;
    padding        : 0;
    display        : inline-block;
    vertical-align : middle;
    box-sizing     : content-box;
}

.yith-plugin-ui .wp-picker-default-custom {
    cursor         : pointer;
    width          : 25px;
    padding        : 0 5px;
    display        : inline-block;
    vertical-align : middle;
    position       : relative;
}

.yith-plugin-ui .wp-picker-default-custom input.button {
    opacity  : 0;
    margin   : 0;
    padding  : 0;
    position : absolute;
    top      : 0;
    right    : 0;
    left     : 0;
    bottom   : 0;
    z-index  : 2;
}

.yith-plugin-ui .wp-picker-default-custom:before {
    content     : "\e91a";
    text-indent : 0;
    font-family : 'yith-icon';
    font-size   : 16px;
    color       : #d8d8d8;
    font-weight : normal;
    width       : 15px;
    display     : block;
    background  : none;
    line-height : 20px;
    margin-left : 8px;
}

.yith-plugin-ui .wp-picker-container {
    width         : auto;
    display       : inline-block;
    border        : 1px solid #d9d9d9;
    border-radius : 8px;
    padding       : 5px;
}

.yith-plugin-ui .iris-picker .iris-square-inner {
    box-shadow : 0 0 0 1px #d9d9d9 inset;
}

.yith-plugin-ui .iris-picker .iris-square-value {
    width      : 0;
    height     : 0;
    background : transparent;
    border     : 0;
}

.yith-plugin-ui .yith-single-colorpicker {
    display       : inline-block;
    width         : 220px;
    margin-bottom : 10px;
}

.yith-plugin-ui .yith-single-colorpicker > label {
    display        : block;
    font-size      : 11px;
    font-weight    : 600;
    margin         : 0 0 10px 0;
    text-transform : uppercase;
}

.yith-plugin-ui .the-metabox.multi-colorpicker span.description,
.yith-plugin-ui .yith-plugin-fw-panel-wc-row.multi-colorpicker span.description,
.yith-plugin-ui .yith-plugin-fw-multi-colorpicker-field-wrapper span.description {
    margin-top : 0;
}

/* RANGE SLIDER */
.yith-plugin-ui .yith-plugin-fw-slider-container .ui-slider-horizontal .ui-slider-handle {
    top : -45px !important;
}

.yith-plugin-ui .yith-plugin-fw-slider-container .ui-slider-horizontal .ui-slider-handle {
    position           : absolute;
    top                : -33px;
    left               : 0;
    width              : auto !important;
    height             : auto !important;
    padding            : 2px 8px;
    margin-left        : -15px;
    font-size          : 12px;
    line-height        : 20px;
    color              : #4e8ba2;
    text-align         : center;
    background-color   : #fff;
    border             : 1px solid #fff;
    border-radius      : 3px;
    -webkit-transition : opacity .3s ease-in-out 0s;
    transition         : opacity .3s ease-in-out 0s;
    box-shadow         : 0px 1px 7px 0px rgba(1, 1, 1, 0.13);
}

.yith-plugin-ui .yith-plugin-fw-slider-container .ui-slider-horizontal .ui-slider-handle:before {
    position          : absolute;
    bottom            : -3px;
    left              : 50%;
    display           : inline-block;
    width             : 6px;
    height            : 6px;
    margin-left       : -3px;
    content           : "";
    background-color  : #fff;
    -webkit-transform : rotate(-45deg);
    -ms-transform     : rotate(-45deg);
    transform         : rotate(-45deg);
}

.yith-plugin-ui .yith-plugin-fw-slider-container .ui-slider.ui-widget-content .ui-widget-header {
    background : #4e8ba2;
}

.yith-plugin-ui .yith-plugin-fw-slider-container .ui-slider-horizontal .ui-slider-handle:after {
    content       : '';
    width         : 17px;
    height        : 17px;
    display       : block;
    position      : absolute;
    background    : #fff;
    top           : 37px;
    border-radius : 50%;
    box-shadow    : 0px 1px 6px 0px rgba(1, 1, 1, 0.25);
    cursor        : grab;
}

.yith-plugin-ui .yith-plugin-fw-slider-container .ui-slider-horizontal .ui-slider-handle:active:after {
    cursor : grabbing;
}

.yith-plugin-ui .yith-plugin-fw-slider-container .ui-slider.ui-widget-content {
    height : 5px !important;
}

.yith-plugin-ui .yith-plugin-fw-slider-container .ui-slider .minCaption,
.yith-plugin-ui .yith-plugin-fw-slider-container .ui-slider .maxCaption {
    font-weight : 700;
    font-size   : 12px;
}


/* ADD_BOX AND TOGGLE */
.yith-plugin-ui .yith-add-box,
.yith-plugin-ui .yith-toggle-row {
    width         : 70%;
    border        : 1px solid #d9d9d9;
    box-shadow    : none;
    border-radius : 4px;
    margin        : 20px 0;
    padding       : 10px;
    box-sizing    : border-box;
    background    : white;
}

.yith-plugin-ui .yith-toggle-row {
    cursor     : pointer;
    transition : all ease 0.5s;
}

.yith-plugin-ui .yith-toggle-row.fixed {
    margin : 0;
}

.yith-plugin-ui .yith-toggle-row.highlight {
    transition : all ease 0.5s;
    /*box-shadow: 0 0 7px rgb(81, 117, 129);*/
    box-shadow : 0 0 7px rgb(30, 140, 190);

    display    : block;
}

.yith-plugin-ui .yith-add-box {
    padding : 25px;
    display : none;
}

.yith-plugin-ui .yith-toggle-title {
    position : relative;
}

.yith-plugin-ui #plugin-fw-wc .yith-toggle-title h3,
.yith-plugin-ui.metaboxes-tab h3,
.yith-plugin-ui .yith-toggle-title h3,
.metaboxes-tab.yith-plugin-ui .yith-toggle-title h3 {
    padding        : 0px 20px 0px 30px;
    margin         : 3px 0;
    display        : inline-block;
    position       : relative;
    min-width      : 173px;
    box-sizing     : border-box;
    font-weight    : 600;
    font-size      : 15px;
    color          : #23282d;
    text-transform : inherit;
}

.yith-plugin-ui .yith-toggle-title .subtitle {
    padding-left : 0;
    padding-top  : 8px;
    font-size    : 12px;
}

.yith-plugin-ui .yith-toggle {
    position        : absolute;
    width           : 25px;
    cursor          : pointer;
    left            : 0;
    top             : 0;
    bottom          : 0;
    margin          : auto;
    display         : flex;
    align-items     : center;
    box-sizing      : border-box;
    align-items     : center;
    justify-content : center;
}

.yith-plugin-ui .yith-toggle > span:before {
    color : #405e69;
}

.yith-plugin-ui .yith-toggle > span {
    position    : absolute;
    /* right       : 50%; */
    transition  : transform .3s;
    line-height : 1;
    font-size   : 13px;
    font-weight : 600;
}


.yith-plugin-ui .yith-toggle-row-opened .yith-toggle span {
    transform : rotateZ(90deg);
}

.yith-plugin-ui .yith-toggle-content {
    display  : none;
    position : relative;
    padding  : 30px 25px;
}

.yith-plugin-ui .yith-toggle-row-opened .yith-toggle-content {
    /*  display: block;*/
}

.yith-plugin-ui .yith-add-box-row,
.yith-plugin-ui .yith-toggle-content .yith-toggle-content-row {
    display       : table;
    margin-bottom : 40px;
}

.yith-plugin-ui .yith-add-box-row > label,
.yith-plugin-ui .yith-toggle-content .yith-toggle-content-row > label {
    display        : table-cell;
    min-width      : 180px;
    padding-right  : 20px;
    color          : #33373b;
    font-size      : 14px;
    vertical-align : top;
    font-weight    : 600;
}

.yith-plugin-ui .yith-add-box-row .yith-plugin-fw-field-wrapper:not(.yith-plugin-fw-title-field-wrapper),
.yith-plugin-ui .yith-plugin-fw-field-wrapper:not(.yith-plugin-fw-title-field-wrapper) {
    /* display: table-cell;*/
    width          : auto;
    float          : none;
    vertical-align : middle;
    position       : relative;
}

.yith-plugin-ui .yith-add-box-row span.yith-icon,
.yith-plugin-ui .yith-toggle-content .yith-toggle-content-row span.yith-icon {
    position : absolute;
    right    : 15px;
    top      : 0;
    bottom   : 0;
}

.yith-plugin-ui .yith-add-box-buttons,
.yith-plugin-ui .yith-toggle-content-buttons {
    text-align : right;
}

.yith-plugin-ui .yith-toggle-onoff {
    position : absolute;
    cursor   : pointer;
    right    : 0;
}

.yith-plugin-ui .yith-toggle_wrapper.ui-sortable .yith-toggle-onoff {
    right : 30px;
}

.yith-plugin-ui .yith-toggle-row .yith-icon-drag {
    position  : absolute;
    right     : 2px;
    top       : 50%;
    transform : translateY(-50%);
    font-size : 18px;
}

.yith-plugin-ui .yith-toggle-row.with-subtitle .yith-toggle-onoff {
    top : 25%;
}

/** SPINNER **/
.yith-plugin-ui .spinner {
    vertical-align : -5px;
    float          : none;
}

.yith-plugin-ui .spinner.show {
    visibility : visible;
}

/* LIST TABLE */
.yith-plugin-ui .form-table .list-table td {
    padding : 15px 0px;
}

.woocommerce.yith-plugin-fw-panel .yith-plugin-ui table.form-table .bulkactions select {
    border     : 1px solid #d8d8d8;
    max-width  : 200px;
    max-height : 30px;
    padding    : 0 10px;
}

.yith-plugin-ui .form-table .list-table th {
    width : initial;
}

.yith-plugin-ui #plugin-fw-wc table.form-table th.check-column {
    padding-left : 3px;
}

.yith-plugin-ui #plugin-fw-wc table.wp-list-table tbody td {
    padding-left : 20px;
}

.yith-plugin-ui #plugin-fw-wc table.wp-list-table th,
.yith-plugin-ui #plugin-fw-wc table.wp-list-table td {
    padding : 15px 20px 15px 20px;
}

.yith-plugin-ui #plugin-fw-wc table.wp-list-table thead td,
.yith-plugin-ui #plugin-fw-wc table.wp-list-table thead th,
.yith-plugin-ui #plugin-fw-wc table.wp-list-table tfoot td,
.yith-plugin-ui #plugin-fw-wc table.wp-list-table tfoot th {
    padding : 3px 20px;
}

.yith-plugin-ui #plugin-fw-wc table.wp-list-table thead a,
.yith-plugin-ui #plugin-fw-wc table.wp-list-table tfoot a {
    padding-left : 0;
}

.yith-plugin-ui .yith-plugin-fw-list-table .list-table-title {
    margin-bottom : 20px;
    line-height   : 1.2;
}

.yith-plugin-ui .yith-plugin-fw-list-table .list-table-title > * {
    vertical-align : middle;
}

.yith-plugin-ui .yith-plugin-fw-list-table h2 {
    border       : 0;
    padding      : 0;
    display      : inline-block;
    margin-right : 10px;
    line-height  : inherit;
}

.yith-plugin-ui .form-table .yith-plugin-fw-list-table table th {
    vertical-align : middle;
}

.yith-plugin-ui #doaction, .yith-plugin-ui #doaction2,
.yith-plugin-ui #post-query-submit,
.yith-plugin-ui #search-submit,
.yith-plugin-ui .button.filter-button {
    line-height : 33px;
}

.yith-plugin-ui .tablenav {
    margin : 20px 0;
}

.yith-plugin-ui .form-table td p.yith-section-description {
    color         : #716269;
    margin-bottom : 20px;
}

/** Time picker width*/
.yith-plugin-ui input.ui-timepicker-input {
    width : 100px !important;
}

/** date format **/
.yith-plugin-ui .yith-plugin-fw-date-format code {
    margin-left : 30px;
}

.yith-plugin-ui .yith-plugin-fw-date-format input[type=text].small-text {
    margin-left : 45px;
}

/** checkbox columns **/
.yith-plugin-ui td.forminp-checkbox.two-cols fieldset {
    width         : calc(50% - 20px);
    padding-right : 20px;
    float         : left;
}

.yith-plugin-ui td.forminp-checkbox.two-cols fieldset:nth-child(2n+1) {
    clear : both;
}

.yith-plugin-ui td.forminp-checkbox.three-cols fieldset {
    width         : calc(33% - 10px);
    padding-right : 10px;
    float         : left;
}

.yith-plugin-ui td.forminp-checkbox.three-cols fieldset:nth-child(3n+1) {
    clear : both;
}

.yith-plugin-fw-checkbox-field-wrapper {
    display      : inline-block !important;
    margin-right : 10px;
}

.yith-plugin-fw-checkbox-field-wrapper + span.description {
    display        : inline-block;
    vertical-align : middle;
    margin         : 0;
}

.yith-plugin-ui span.description {
    margin-top  : 10px;
    line-height : 20px;
    max-width   : 40%;
    min-width   : min(100%, 360px);
}

.yith-plugin-fw-option-with-description {
    display        : table-cell;
    width          : 90%;
    vertical-align : top;
}


/**
 * Required
 */
.yith-plugin-fw-panel-wc-row.yith-plugin-fw--required th.titledesc > label:after,
.yith-plugin-fw-metabox-field-row.yith-plugin-fw--required label:first-child:after,
.yith-plugin-fw-toggle-element-field-wrapper .yith-plugin-fw--required > label:first-child:after {
    content     : '*';
    color       : #ea0034;
    font-weight : 800;
    margin-left : 4px;
}

/** YITH PANEL **/
.yith-plugin-ui #yith-plugin-fw-panel {
    margin-top : -10px;
}

.yith-plugin-ui #plugin-fw-wc, .yith-plugin-ui #yith-plugin-fw-panel {
    padding-top : 0;
}

.yith-plugin-ui .plugin-option tr {
    border : 0;
}

/** MULTI SELECT AND TEXT ARRAY INLINE STYLE **/
.yith-plugin-ui .yith-plugin-fw-multi-select .yith-single-select,
.yith-plugin-ui .yith-plugin-fw-text-array-inline .yith-single-text {
    display      : inline-block;
    width        : 30%;
    margin-right : 3%;
    max-width    : 400px;
}

.yith-plugin-ui .yith-plugin-fw-multi-select .yith-single-select label,
.yith-plugin-ui .yith-plugin-fw-text-array-inline .yith-single-text label {
    display     : block;
    font-size   : 11px;
    font-weight : 600;
    margin      : 0 0 10px 0;
}

.yith-plugin-ui .yith-plugin-fw-text-array-inline .yith-single-text input,
.yith-plugin-ui .yith-plugin-fw-multi-select .yith-single-select select,
.yith-plugin-ui .yith-plugin-fw-multi-select .yith-single-select span.select2 {
    width     : 100% !important;
    min-width : auto !important;
}

/**
 * Dimensions
 */

.yith-plugin-fw-dimensions {
    display     : flex;
    align-items : flex-end;
}

.yith-plugin-fw-dimensions__units {
    flex          : 1;
    display       : flex;
    margin-left   : 5px;
    width         : calc(100% - 105px);
    flex-wrap     : wrap;
    min-height    : 38px;
    margin-bottom : -8px;
}

.yith-plugin-fw-dimensions__unit {
    display     : inline-block;
    padding     : 0 3px;
    cursor      : pointer;
    font-weight : 700;
}

.yith-plugin-fw-dimensions__unit--selected {
    text-decoration : underline;
    color           : #007694;
}

.yith-plugin-fw-dimensions__unit--unique {
    text-decoration : none;
    cursor          : default;
}

.yith-plugin-fw-dimensions__dimensions {
    display     : flex;
    margin      : 0;
    align-items : flex-end;
    max-width   : 400px;
    width       : 400px;
}

.yith-plugin-fw-dimensions__dimension {
    text-align : center;
    flex       : 1;
}

.yith-plugin-fw-dimensions__dimension > input[type=number].yith-plugin-fw-dimensions__dimension__number,
.woocommerce.yith-plugin-fw-panel .yith-plugin-ui .yith-plugin-fw-dimensions__dimension > input[type=number].yith-plugin-fw-dimensions__dimension__number,
.yith-plugin-ui .yith-plugin-fw-dimensions__dimension > input[type=number].yith-plugin-fw-dimensions__dimension__number,
.woocommerce .yith-plugin-fw table.form-table .yith-plugin-fw-dimensions__dimension > input[type=number].yith-plugin-fw-dimensions__dimension__number {
    width         : 100%;
    min-width     : 0;
    border-radius : 0;
    border        : 1px solid #d8d8d8;
    border-left   : none;
    height        : 38px;
    text-align    : center;
    padding-right : 0;
}

.yith-plugin-fw-dimensions__dimension:first-child > input[type=number].yith-plugin-fw-dimensions__dimension__number,
.woocommerce.yith-plugin-fw-panel .yith-plugin-ui .yith-plugin-fw-dimensions__dimension:first-child > input[type=number].yith-plugin-fw-dimensions__dimension__number,
.yith-plugin-ui .yith-plugin-fw-dimensions__dimension:first-child > input[type=number].yith-plugin-fw-dimensions__dimension__number,
.woocommerce .yith-plugin-fw table.form-table .yith-plugin-fw-dimensions__dimension:first-child > input[type=number].yith-plugin-fw-dimensions__dimension__number {
    border-left   : 1px solid #d8d8d8;
    border-radius : 6px 0 0 6px;
}

.yith-plugin-fw-dimensions__dimension:last-child > input[type=number].yith-plugin-fw-dimensions__dimension__number,
.woocommerce.yith-plugin-fw-panel .yith-plugin-ui .yith-plugin-fw-dimensions__dimension:last-child > input[type=number].yith-plugin-fw-dimensions__dimension__number,
.yith-plugin-ui .yith-plugin-fw-dimensions__dimension:last-child > input[type=number].yith-plugin-fw-dimensions__dimension__number {
    border-radius : 0 6px 6px 0;
}

.metaboxes-tab .yith-plugin-fw-dimensions__dimension__label,
.yith-plugin-ui.metaboxes-tab label.yith-plugin-fw-dimensions__dimension__label {
    float       : none;
    margin      : 0;
    width       : auto;
    font-weight : inherit;
    line-height : inherit;
}

.yith-plugin-fw-dimensions__dimension__label,
.metaboxes-tab .yith-plugin-fw-dimensions__dimension__label,
.yith-plugin-ui.metaboxes-tab label.yith-plugin-fw-dimensions__dimension__label {
    text-transform : uppercase;
    letter-spacing : 1px;
    font-size      : 9px;
    margin-bottom  : 5px;
    display        : inline-block;
}

.yith-plugin-fw-dimensions__linked {
    cursor : pointer;
}

.yith-plugin-fw-dimensions__linked span {
    border        : 1px solid #d8d8d8;
    border-left   : none;
    height        : 38px;
    border-radius : 0 6px 6px 0;
    box-sizing    : border-box;
    padding       : 8px 10px;
    width         : 100%;
}

.yith-plugin-fw-dimensions--linked-active .yith-plugin-fw-dimensions__linked span {
    color        : #fff;
    background   : #007694;
    border-color : #007694;
}

/**
 * Image dimensions
 */
.yith-plugin-ui .yith-plugin-fw-image-dimensions > div {
    display      : inline-block;
    width        : 30%;
    margin-right : 3%;
    max-width    : 100px;
}

.yith-plugin-ui .yith-plugin-fw-image-dimensions label {
    display        : block;
    font-size      : 11px;
    font-weight    : 600;
    text-transform : uppercase;
    margin         : 0 0 10px 0;
}

/**
 * Copy to clipboard
 */
.yith-plugin-fw-copy-to-clipboard {
    background    : #ffffff;
    border-radius : 8px;
    border        : 1px solid #d8d8d8;
    display       : flex;
    align-items   : center;
    padding       : 0 12px;
    max-width     : 400px;
    box-sizing    : border-box;
}

.yith-plugin-fw-copy-to-clipboard.yith-plugin-fw-copy-to-clipboard--readonly {
    background : #f1f1f1;
    border     : 1px dashed #cccccc;
}

.yith-plugin-fw-copy-to-clipboard__field-wrap {
    position : relative;
    flex     : 1;
}

.yith-plugin-fw-copy-to-clipboard__tip {
    display        : none;
    position       : absolute;
    background     : rgba(30, 30, 30, 0.9);
    color          : #ffffff;
    padding        : 7px 10px;
    border-radius  : 3px;
    right          : 8px;
    top            : 50%;
    transform      : translateY(-50%);
    pointer-events : none;
    font-size      : 12px;
    line-height    : 1;
}


.yith-plugin-fw-copy-to-clipboard input[type=text].yith-plugin-fw-copy-to-clipboard__field,
.yith-plugin-fw.yith-plugin-ui .yith-plugin-fw-copy-to-clipboard input[type=text].yith-plugin-fw-copy-to-clipboard__field,
.yith-plugin-fw-panel .yith-plugin-ui table.form-table input[type=text].yith-plugin-fw-copy-to-clipboard__field,
.woocommerce.yith-plugin-fw-panel .yith-plugin-ui table.form-table input[type=text].yith-plugin-fw-copy-to-clipboard__field {
    height        : 38px;
    width         : 100%;
    background    : transparent;
    padding       : 0 10px 0 0;
    border        : 0;
    border-radius : 0;
    box-shadow    : none;
    outline       : none;
}

.yith-plugin-fw-copy-to-clipboard.yith-plugin-fw-copy-to-clipboard--readonly input[type=text].yith-plugin-fw-copy-to-clipboard__field,
.woocommerce.yith-plugin-fw-panel .yith-plugin-ui table.form-table .yith-plugin-fw-copy-to-clipboard--readonly input[type=text].yith-plugin-fw-copy-to-clipboard__field {
    color  : #999;
    cursor : default;
}

.yith-plugin-fw-copy-to-clipboard__copy {
    display       : flex;
    align-items   : center;
    cursor        : pointer;
    border-radius : 2px;
    padding       : 1px;
    user-select   : none;
    line-height   : 1;
    transition    : all .2s ease-in-out;
}

.yith-plugin-fw-copy-to-clipboard__copy:hover {
    box-shadow       : 0 0 0 4px rgba(15, 67, 60, .12);
    background-color : rgba(15, 67, 60, .12);
}

.yith-plugin-fw-copy-to-clipboard__copy__text {
    font-size   : 12px;
    font-weight : 600;
}

.yith-plugin-fw-copy-to-clipboard__copy__icon {
    margin-right : 4px;
    font-size    : 14px;
}

/** OVERRIDE WOOCOMMERCE CLASSES FOR 5.3 */
.branch-5-3 .yith-plugin-fw .select2-container .select2-selection--single .select2-selection__arrow {
    background : none;
}

.branch-5-3 .yith-plugin-fw .select2-container.select2-container--focus .select2-selection--single, .branch-5-3 .yith-plugin-fw .select2-container.select2-container--open .select2-selection--multiple, .branch-5-3 .yith-plugin-fw .select2-container.select2-container--open .select2-selection--single {
    box-shadow : none;
}

@media screen and (max-width : 1440px) {
    .yith-plugin-ui .yith-add-box,
    .yith-plugin-ui .yith-toggle-row:not(.fixed) {
        width : 80%;
    }


    .yith-plugin-ui .yith-add-box-row,
    .yith-plugin-ui .yith-toggle-content .yith-toggle-content-row,
    .yith-plugin-ui .yith-add-box-row label {
        display : block;
    }

    .yith-plugin-ui .yith-toggle-content .yith-toggle-content-row > label {
        display : block;
    }

    .yith-plugin-ui .yith-plugin-fw-option-with-description {
        width : 100%;
    }

    .yith-plugin-ui .yith-add-box-row,
    .yith-plugin-ui .yith-add-box-row label {
        display : block;
    }

    .yith-plugin-ui .yith-toggle-content .yith-plugin-fw-option-with-description,
    .yith-plugin-ui .yith-add-box-row .yith-plugin-fw-option-with-description {
        display     : block;
        padding-top : 20px;
    }


    .yith-plugin-ui .yith-add-box-row .yith-plugin-fw-option-with-description span.description {
        max-width : 100%;
    }
}

@media screen and (max-width : 1024px) {

    .yith-plugin-ui .yith-add-box,
    .yith-plugin-ui .yith-toggle-row:not(.fixed) {
        width : 90%;
    }

    .yith-plugin-ui td.forminp-checkbox.two-cols fieldset {
        width         : 100%;
        padding-right : 20px;
        float         : left;
    }

    .yith-plugin-ui td.forminp-checkbox.three-cols fieldset {
        width         : calc(50% - 10px);
        padding-right : 10px;
        float         : left;
    }

    .yith-plugin-ui td.forminp-checkbox.two-cols fieldset:nth-child(2n+1) {
        clear : both;
    }

    .yith-plugin-ui td.forminp-checkbox.three-cols fieldset:nth-child(3n+1) {
        clear : initial;
    }

}

@media screen and (max-width : 782px) {
    .yith-plugin-fw-banner h1 {
        line-height : 1.2em;
    }

    .yith-plugin-fw-banner h1 {
        font-size     : 12px;
        padding-right : 10px;
    }

    .yith-plugin-ui .yith-add-box,
    .yith-plugin-ui .yith-toggle-row {
        width : 100%;
    }

    .yith-plugin-ui td.forminp-checkbox.two-cols fieldset,
    .yith-plugin-ui td.forminp-checkbox.three-cols fieldset {
        width : 100%;
        clear : initial;
    }

    .yith-plugin-ui .wp-picker-container .wp-color-result.button {
        padding : 0;
    }

    .yith-plugin-ui #plugin-fw-wc table.form-table th,
    #yith-plugin-fw-panel table.form-table th.titledesc,
    .yith-plugin-ui #plugin-fw-wc table.form-table td,
    #yith-plugin-fw-panel table.form-table td.forminp {
        padding : 20px 20px;
    }

    .yith-plugin-ui #plugin-fw-wc table.form-table th.titledesc,
    #yith-plugin-fw-panel table.form-table th.titledesc {
        padding-bottom : 0;
    }
}

@media (max-width : 480px) {
    .yith-plugin-ui .nav-tab {
        font-size : 12px;
    }

    .yith-plugin-ui h2 {
        padding : 20px 20px;
    }

    .yith-plugin-ui [type="radio"]:checked + label:before, .yith-plugin-ui [type="radio"]:not(:checked) + label:before {
        width  : 14px;
        height : 14px;
    }

    .yith-plugin-ui [type="radio"]:checked + label:after, .yith-plugin-ui [type="radio"]:not(:checked) + label:after {
        width  : 10px;
        height : 10px;
        top    : 3px;
        left   : 3px;
    }

    .yith-plugin-ui [type="radio"]:checked + label, .yith-plugin-ui [type="radio"]:not(:checked) + label {
        padding-left : 25px;
    }

    .yith-plugin-ui [type="radio"]:checked + label, .yith-plugin-ui [type="radio"]:not(:checked) + label {
        font-size : 13px;
    }

    .yith-plugin-ui span.description {
        font-size : 12px;
    }

    .yith-plugin-ui #plugin-fw-wc table.form-table th,
    #yith-plugin-fw-panel table.form-table th.titledesc,
    .yith-plugin-ui #plugin-fw-wc table.form-table td,
    #yith-plugin-fw-panel table.form-table td.forminp {
        padding : 15px 20px;
    }

    .yith-plugin-ui .yith-plugin-fw-onoff-container input + span {
        width   : 48px;
        height  : 20px;
        padding : 2px;
    }

    .yith-plugin-ui .yith-plugin-fw-onoff-container input + span:before {
        top    : 4px;
        left   : 3px;
        width  : 10px;
        height : 10px;
    }

    .yith-plugin-ui .yith-plugin-fw-onoff-container input:checked + span:before, .yith-plugin-ui.yith-plugin-fw-onoff-container input.onoffchecked + span:before {
        left : 30px;
    }

    .yith-plugin-ui .yith-plugin-fw-onoff-container input:checked + span:after, .yith-plugin-ui.yith-plugin-fw-onoff-container input.onoffchecked + span:after {
        font-size     : 11px;
        padding-right : 12px;
        margin-top    : 0;
    }

    .yith-plugin-ui .yith-plugin-fw-onoff-container input + span:after {
        font-size    : 11px;
        padding-left : 12px;
        margin-top   : 0;
    }

    .yith-plugin-fw .select2-container .select2-selection--single .select2-selection__rendered {
        font-size : 14px;
    }

    .yith-plugin-ui input {
        font-size : 14px;
    }
}
PK`x1\
�����!plugin-fw/assets/css/colorbox.cssnu�[���/*
    Colorbox Core Style:
    The following CSS is consistent between example themes and should not be altered.
*/
#colorbox, #cboxOverlay, #cboxWrapper{position:absolute; top:0; left:0; z-index:9999; overflow:hidden; -webkit-transform: translate3d(0,0,0);}
#cboxWrapper {max-width:none;}
#cboxOverlay{position:fixed; width:100%; height:100%;}
#cboxMiddleLeft, #cboxBottomLeft{clear:left;}
#cboxContent{position:relative;}
#cboxLoadedContent{overflow:auto; -webkit-overflow-scrolling: touch;}
#cboxTitle{margin:0;}
#cboxLoadingOverlay, #cboxLoadingGraphic{position:absolute; top:0; left:0; width:100%; height:100%;}
#cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow{cursor:pointer;}
.cboxPhoto{float:left; margin:auto; border:0; display:block; max-width:none; -ms-interpolation-mode:bicubic;}
.cboxIframe{width:100%; height:100%; display:block; border:0; padding:0; margin:0;}
#colorbox, #cboxContent, #cboxLoadedContent{box-sizing:content-box; -moz-box-sizing:content-box; -webkit-box-sizing:content-box;}

/* 
    User Style:
    Change the following styles to modify the appearance of Colorbox.  They are
    ordered & tabbed in a way that represents the nesting of the generated HTML.
*/
#cboxOverlay{background:#fff; opacity: 0.9; filter: alpha(opacity = 90);}
#colorbox{outline:0;}
    #cboxTopLeft{width:25px; height:25px; background:url(../images/colorbox/border1.png) no-repeat 0 0;}
    #cboxTopCenter{height:25px; background:url(../images/colorbox/border1.png) repeat-x 0 -50px;}
    #cboxTopRight{width:25px; height:25px; background:url(../images/colorbox/border1.png) no-repeat -25px 0;}
    #cboxBottomLeft{width:25px; height:25px; background:url(../images/colorbox/border1.png) no-repeat 0 -25px;}
    #cboxBottomCenter{height:25px; background:url(../images/colorbox/border1.png) repeat-x 0 -75px;}
    #cboxBottomRight{width:25px; height:25px; background:url(../images/colorbox/border1.png) no-repeat -25px -25px;}
    #cboxMiddleLeft{width:25px; background:url(../images/colorbox/border2.png) repeat-y 0 0;}
    #cboxMiddleRight{width:25px; background:url(../images/colorbox/border2.png) repeat-y -25px 0;}
    #cboxContent{background:#fff; overflow:hidden;}
        .cboxIframe{background:#fff;}
        #cboxError{padding:50px; border:1px solid #ccc;}
        #cboxLoadedContent{margin-bottom:20px;}
        #cboxTitle{position:absolute; bottom:0px; left:0; text-align:center; width:100%; color:#999;}
        #cboxCurrent{position:absolute; bottom:0px; left:100px; color:#999;}
        #cboxLoadingOverlay{background:#fff url(../images/colorbox/loading.gif) no-repeat 5px 5px;}

        /* these elements are buttons, and may need to have additional styles reset to avoid unwanted base styles */
        #cboxPrevious, #cboxNext, #cboxSlideshow, #cboxClose {border:0; padding:0; margin:0; overflow:visible; width:auto; background:none; }
        
        /* avoid outlines on :active (mouseclick), but preserve outlines on :focus (tabbed navigating) */
        #cboxPrevious:active, #cboxNext:active, #cboxSlideshow:active, #cboxClose:active {outline:0;}

        #cboxSlideshow{position:absolute; bottom:0px; right:42px; color:#444;}
        #cboxPrevious{position:absolute; bottom:0px; left:0; color:#444;}
        #cboxNext{position:absolute; bottom:0px; left:63px; color:#444;}
        #cboxClose{position:absolute; bottom:0; right:0; display:block; color:#444;}

/*
  The following fixes a problem where IE7 and IE8 replace a PNG's alpha transparency with a black fill
  when an alpha filter (opacity change) is set on the element or ancestor element.  This style is not applied to or needed in IE9.
  See: http://jacklmoore.com/notes/ie-transparency-problems/
*/
.cboxIE #cboxTopLeft,
.cboxIE #cboxTopCenter,
.cboxIE #cboxTopRight,
.cboxIE #cboxBottomLeft,
.cboxIE #cboxBottomCenter,
.cboxIE #cboxBottomRight,
.cboxIE #cboxMiddleLeft,
.cboxIE #cboxMiddleRight {
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF,endColorstr=#00FFFFFF);
}PK`x1\iS�Zee+plugin-fw/assets/css/yit-upgrade-to-pro.cssnu�[���/* === Upgrade to Premium Landing page === */

#upgrade-to-premium {
    width : 900px;
}

#upgrade-to-premium h1 {
    font-family    : 'Raleway', sans-serif;
    text-transform : uppercase;
    font-size      : 30px;
    font-weight    : 700;
    color          : #808a97;
}

#upgrade-to-premium h3 {
    font-family : 'Raleway', sans-serif;
    font-size   : 20px;
    line-height : 29px;
    font-weight : 700;
    color       : #808a97;
}

#upgrade-to-premium p {
    font-family : 'Open Sans', sans-serif;
    font-size   : 15px;
    line-height : 29px;
    font-weight : 400;
    color       : #6a6a6b;
}

#upgrade-to-premium p.highlighted {
    font-family : 'Raleway', sans-serif;
    font-size   : 20px;
    line-height : 27px;
    color       : #808a97;
    font-weight : 400;
}

#upgrade-to-premium ol {
    counter-reset   : item;
    list-style-type : none;
    margin-left     : 0;
}

#upgrade-to-premium li.step {
    font-family   : 'open sans', sans-serif;
    font-size     : 15px;
    color         : #6a6a6b;
    font-weight   : 400;
    position      : relative;
    padding-left  : 50px;
    line-height   : 25px;
    margin-bottom : 25px;
}

#upgrade-to-premium li.step:before {
    content           : counters(item, ".") " ";
    counter-increment : item;
    position          : absolute;
    left              : 0;
    top               : 0;
    border            : 1px solid #808a97;
    width             : 30px;
    height            : 30px;
    border-radius     : 16px;
    background-color  : #808a97;
    color             : #ffffff;
    font-weight       : 700;
    font-size         : 18px;
    text-align        : center;
    line-height       : 27px;
}

#upgrade-to-premium li.step img {
    border  : 1px solid #b8b8b8;
    width   : 600px;
    display : block;
    margin  : 15px 0 25px 0;
}

#cboxLoadedContent {
    margin-bottom : 60px !important;
}PK`x1\�ZLULU+plugin-fw/assets/css/yith-select2-no-wc.cssnu�[���.select2-container {
    -webkit-box-sizing : border-box;
    box-sizing         : border-box;
    display            : inline-block;
    margin             : 0;
    position           : relative;
    vertical-align     : middle
}

.select2-container .select2-selection--single {
    -webkit-box-sizing  : border-box;
    box-sizing          : border-box;
    cursor              : pointer;
    display             : block;
    height              : 28px;
    margin              : 0 0 -4px;
    -moz-user-select    : none;
    -ms-user-select     : none;
    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 {
    -webkit-box-sizing  : border-box;
    box-sizing          : border-box;
    cursor              : pointer;
    display             : block;
    min-height          : 32px;
    -moz-user-select    : none;
    -ms-user-select     : none;
    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;
    padding : 0
}

.select2-container .select2-search--inline .select2-search__field {
    -webkit-box-sizing : border-box;
    box-sizing         : border-box;
    border             : none;
    font-size          : 100%;
    margin             : 0;
    padding            : 0
}

.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
    -webkit-appearance : none
}

.select2-dropdown {
    background-color   : #fff;
    border             : 1px solid #aaa;
    border-radius      : 4px;
    -webkit-box-sizing : border-box;
    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;
    -moz-user-select    : none;
    -ms-user-select     : none;
    user-select         : none;
    -webkit-user-select : none
}

.select2-results__option[aria-selected], .select2-results__option[data-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%;
    -webkit-box-sizing : border-box;
    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
}

.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 : 700
}

.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 : #fff;
    border           : 1px solid #aaa;
    cursor           : text;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
    -webkit-box-sizing : border-box;
    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;
    margin     : 5px 5px 0 0
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered li:before {
    content : '';
    display : 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  : 700;
    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  : 700;
    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-search--inline, .select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice, .select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__placeholder {
    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 #000 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--multiple, .select2-container--default.select2-container--open.select2-container--above .select2-selection--single {
    border-top-left-radius  : 0;
    border-top-right-radius : 0
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple, .select2-container--default.select2-container--open.select2-container--below .select2-selection--single {
    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         : 0 0;
    border             : none;
    outline            : 0;
    -webkit-box-shadow : none;
    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], .select2-container--default .select2-results__option[data-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], .select2-container--default .select2-results__option--highlighted[data-selected] {
    background-color : #0073aa;
    color            : #fff
}

.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-gradient(linear, left top, left bottom, color-stop(50%, #fff), to(#eee));
    background-image  : -webkit-linear-gradient(top, #fff 50%, #eee 100%);
    background-image  : linear-gradient(to bottom, #fff 50%, #eee 100%);
    background-repeat : repeat-x
}

.select2-container--classic .select2-selection--single:focus {
    border : 1px solid #0073aa
}

.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  : 700;
    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-gradient(linear, left top, left bottom, color-stop(50%, #eee), to(#ccc));
    background-image           : -webkit-linear-gradient(top, #eee 50%, #ccc 100%);
    background-image           : linear-gradient(to bottom, #eee 50%, #ccc 100%);
    background-repeat          : repeat-x
}

.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 #0073aa
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
    background : 0 0;
    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-gradient(linear, left top, left bottom, from(white), color-stop(50%, #eee));
    background-image        : -webkit-linear-gradient(top, #fff 0, #eee 50%);
    background-image        : linear-gradient(to bottom, #fff 0, #eee 50%);
    background-repeat       : repeat-x
}

.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-gradient(linear, left top, left bottom, color-stop(50%, #eee), to(white));
    background-image           : -webkit-linear-gradient(top, #eee 50%, #fff 100%);
    background-image           : linear-gradient(to bottom, #eee 50%, #fff 100%);
    background-repeat          : repeat-x
}

.select2-container--classic .select2-selection--multiple {
    background-color : #fff;
    border           : 1px solid #aaa;
    border-radius    : 4px;
    cursor           : text;
    outline          : 0
}

.select2-container--classic .select2-selection--multiple:focus {
    border : 1px solid #0073aa
}

.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  : 700;
    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 #0073aa
}

.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;
    -webkit-box-shadow : none;
    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], .select2-container--classic .select2-results__option--highlighted[data-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 : #0073aa
}


.select2-drop, .select2-dropdown {
    z-index : 999999 !important
}

.select2-results {
    line-height : 1.5em
}

.select2-results .select2-results__group, .select2-results .select2-results__option {
    margin  : 0;
    padding : 8px
}

.select2-results .description {
    display     : block;
    color       : #999;
    padding-top : 4px
}

.select2-dropdown {
    border-color : #ddd
}

.select2-dropdown--below {
    -webkit-box-shadow : 0 1px 1px rgba(0, 0, 0, .1);
    box-shadow         : 0 1px 1px rgba(0, 0, 0, .1)
}

.select2-dropdown--above {
    -webkit-box-shadow : 0 -1px 1px rgba(0, 0, 0, .1);
    box-shadow         : 0 -1px 1px rgba(0, 0, 0, .1)
}

.select2-container .select2-selection__rendered.ui-sortable li {
    cursor : move
}

.select2-container .select2-selection {
    border-color : #ddd
}

.select2-container .select2-search__field {
    min-width : 150px
}

.select2-container .select2-selection--single {
    height : 32px
}

.select2-container .select2-selection--single .select2-selection__rendered {
    line-height   : 32px;
    padding-right : 24px
}

.select2-container .select2-selection--single .select2-selection__arrow {
    right  : 3px;
    height : 30px
}

.select2-container .select2-selection--multiple {
    min-height    : 28px;
    border-radius : 0;
    line-height   : 1.5
}

.select2-container .select2-selection--multiple li {
    margin : 0
}

.select2-container .select2-selection--multiple .select2-selection__choice {
    padding : 2px 6px
}

.select2-container .select2-selection--multiple .select2-selection__choice .description {
    display : none
}

.select2-container .select2-selection__clear {
    color      : #999;
    margin-top : -1px
}

.select2-container .select2-search--inline .select2-search__field {
    font-family : inherit;
    font-size   : inherit;
    font-weight : inherit;
    padding     : 3px 0
}PK`x1\����bubu0plugin-fw/assets/css/jquery-ui/jquery-ui.min.cssnu�[���/*! jQuery UI - v1.11.4 - 2015-03-11
* http://jqueryui.com
* Includes: core.css, accordion.css, autocomplete.css, button.css, datepicker.css, dialog.css, draggable.css, menu.css, progressbar.css, resizable.css, selectable.css, selectmenu.css, slider.css, sortable.css, spinner.css, tabs.css, tooltip.css, theme.css
* To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Verdana%2CArial%2Csans-serif&fwDefault=normal&fsDefault=1.1em&cornerRadius=4px&bgColorHeader=cccccc&bgTextureHeader=highlight_soft&bgImgOpacityHeader=75&borderColorHeader=aaaaaa&fcHeader=222222&iconColorHeader=222222&bgColorContent=ffffff&bgTextureContent=flat&bgImgOpacityContent=75&borderColorContent=aaaaaa&fcContent=222222&iconColorContent=222222&bgColorDefault=e6e6e6&bgTextureDefault=glass&bgImgOpacityDefault=75&borderColorDefault=d3d3d3&fcDefault=555555&iconColorDefault=888888&bgColorHover=dadada&bgTextureHover=glass&bgImgOpacityHover=75&borderColorHover=999999&fcHover=212121&iconColorHover=454545&bgColorActive=ffffff&bgTextureActive=glass&bgImgOpacityActive=65&borderColorActive=aaaaaa&fcActive=212121&iconColorActive=454545&bgColorHighlight=fbf9ee&bgTextureHighlight=glass&bgImgOpacityHighlight=55&borderColorHighlight=fcefa1&fcHighlight=363636&iconColorHighlight=2e83ff&bgColorError=fef1ec&bgTextureError=glass&bgImgOpacityError=95&borderColorError=cd0a0a&fcError=cd0a0a&iconColorError=cd0a0a&bgColorOverlay=aaaaaa&bgTextureOverlay=flat&bgImgOpacityOverlay=0&opacityOverlay=30&bgColorShadow=aaaaaa&bgTextureShadow=flat&bgImgOpacityShadow=0&opacityShadow=30&thicknessShadow=8px&offsetTopShadow=-8px&offsetLeftShadow=-8px&cornerRadiusShadow=8px
* Copyright 2015 jQuery Foundation and other contributors; Licensed MIT */

.ui-helper-hidden{display:none}.ui-helper-hidden-accessible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoration:none;font-size:100%;list-style:none}.ui-helper-clearfix:before,.ui-helper-clearfix:after{content:"";display:table;border-collapse:collapse}.ui-helper-clearfix:after{clear:both}.ui-helper-clearfix{min-height:0}.ui-helper-zfix{width:100%;height:100%;top:0;left:0;position:absolute;opacity:0;filter:Alpha(Opacity=0)}.ui-front{z-index:100}.ui-state-disabled{cursor:default!important}.ui-icon{display:block;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}.ui-widget-overlay{position:fixed;top:0;left:0;width:100%;height:100%}.ui-accordion .ui-accordion-header{display:block;cursor:pointer;position:relative;margin:2px 0 0 0;padding:.5em .5em .5em .7em;min-height:0;font-size:100%}.ui-accordion .ui-accordion-icons{padding-left:2.2em}.ui-accordion .ui-accordion-icons .ui-accordion-icons{padding-left:2.2em}.ui-accordion .ui-accordion-header .ui-accordion-header-icon{position:absolute;left:.5em;top:50%;margin-top:-8px}.ui-accordion .ui-accordion-content{padding:1em 2.2em;border-top:0;overflow:auto}.ui-autocomplete{position:absolute;top:0;left:0;cursor:default}.ui-button{display:inline-block;position:relative;padding:0;line-height:normal;margin-right:.1em;cursor:pointer;vertical-align:middle;text-align:center;overflow:visible}.ui-button,.ui-button:link,.ui-button:visited,.ui-button:hover,.ui-button:active{text-decoration:none}.ui-button-icon-only{width:2.2em}button.ui-button-icon-only{width:2.4em}.ui-button-icons-only{width:3.4em}button.ui-button-icons-only{width:3.7em}.ui-button .ui-button-text{display:block;line-height:normal}.ui-button-text-only .ui-button-text{padding:.4em 1em}.ui-button-icon-only .ui-button-text,.ui-button-icons-only .ui-button-text{padding:.4em;text-indent:-9999999px}.ui-button-text-icon-primary .ui-button-text,.ui-button-text-icons .ui-button-text{padding:.4em 1em .4em 2.1em}.ui-button-text-icon-secondary .ui-button-text,.ui-button-text-icons .ui-button-text{padding:.4em 2.1em .4em 1em}.ui-button-text-icons .ui-button-text{padding-left:2.1em;padding-right:2.1em}input.ui-button{padding:.4em 1em}.ui-button-icon-only .ui-icon,.ui-button-text-icon-primary .ui-icon,.ui-button-text-icon-secondary .ui-icon,.ui-button-text-icons .ui-icon,.ui-button-icons-only .ui-icon{position:absolute;top:50%;margin-top:-8px}.ui-button-icon-only .ui-icon{left:50%;margin-left:-8px}.ui-button-text-icon-primary .ui-button-icon-primary,.ui-button-text-icons .ui-button-icon-primary,.ui-button-icons-only .ui-button-icon-primary{left:.5em}.ui-button-text-icon-secondary .ui-button-icon-secondary,.ui-button-text-icons .ui-button-icon-secondary,.ui-button-icons-only .ui-button-icon-secondary{right:.5em}.ui-buttonset{margin-right:7px}.ui-buttonset .ui-button{margin-left:0;margin-right:-.3em}input.ui-button::-moz-focus-inner,button.ui-button::-moz-focus-inner{border:0;padding:0}.ui-datepicker{width:17em;padding:.2em .2em 0;display:none}.ui-datepicker .ui-datepicker-header{position:relative;padding:.2em 0}.ui-datepicker .ui-datepicker-prev,.ui-datepicker .ui-datepicker-next{position:absolute;top:2px;width:1.8em;height:1.8em}.ui-datepicker .ui-datepicker-prev-hover,.ui-datepicker .ui-datepicker-next-hover{top:1px}.ui-datepicker .ui-datepicker-prev{left:2px}.ui-datepicker .ui-datepicker-next{right:2px}.ui-datepicker .ui-datepicker-prev-hover{left:1px}.ui-datepicker .ui-datepicker-next-hover{right:1px}.ui-datepicker .ui-datepicker-prev span,.ui-datepicker .ui-datepicker-next span{display:block;position:absolute;left:50%;margin-left:-8px;top:50%;margin-top:-8px}.ui-datepicker .ui-datepicker-title{margin:0 2.3em;line-height:1.8em;text-align:center}.ui-datepicker .ui-datepicker-title select{font-size:1em;margin:1px 0}.ui-datepicker select.ui-datepicker-month,.ui-datepicker select.ui-datepicker-year{width:45%}.ui-datepicker table{width:100%;font-size:.9em;border-collapse:collapse;margin:0 0 .4em}.ui-datepicker th{padding:.7em .3em;text-align:center;font-weight:bold;border:0}.ui-datepicker td{border:0;padding:1px}.ui-datepicker td span,.ui-datepicker td a{display:block;padding:.2em;text-align:right;text-decoration:none}.ui-datepicker .ui-datepicker-buttonpane{background-image:none;margin:.7em 0 0 0;padding:0 .2em;border-left:0;border-right:0;border-bottom:0}.ui-datepicker .ui-datepicker-buttonpane button{float:right;margin:.5em .2em .4em;cursor:pointer;padding:.2em .6em .3em .6em;width:auto;overflow:visible}.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current{float:left}.ui-datepicker.ui-datepicker-multi{width:auto}.ui-datepicker-multi .ui-datepicker-group{float:left}.ui-datepicker-multi .ui-datepicker-group table{width:95%;margin:0 auto .4em}.ui-datepicker-multi-2 .ui-datepicker-group{width:50%}.ui-datepicker-multi-3 .ui-datepicker-group{width:33.3%}.ui-datepicker-multi-4 .ui-datepicker-group{width:25%}.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header{border-left-width:0}.ui-datepicker-multi .ui-datepicker-buttonpane{clear:left}.ui-datepicker-row-break{clear:both;width:100%;font-size:0}.ui-datepicker-rtl{direction:rtl}.ui-datepicker-rtl .ui-datepicker-prev{right:2px;left:auto}.ui-datepicker-rtl .ui-datepicker-next{left:2px;right:auto}.ui-datepicker-rtl .ui-datepicker-prev:hover{right:1px;left:auto}.ui-datepicker-rtl .ui-datepicker-next:hover{left:1px;right:auto}.ui-datepicker-rtl .ui-datepicker-buttonpane{clear:right}.ui-datepicker-rtl .ui-datepicker-buttonpane button{float:left}.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,.ui-datepicker-rtl .ui-datepicker-group{float:right}.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header{border-right-width:0;border-left-width:1px}.ui-dialog{overflow:hidden;position:absolute;top:0;left:0;padding:.2em;outline:0}.ui-dialog .ui-dialog-titlebar{padding:.4em 1em;position:relative}.ui-dialog .ui-dialog-title{float:left;margin:.1em 0;white-space:nowrap;width:90%;overflow:hidden;text-overflow:ellipsis}.ui-dialog .ui-dialog-titlebar-close{position:absolute;right:.3em;top:50%;width:20px;margin:-10px 0 0 0;padding:1px;height:20px}.ui-dialog .ui-dialog-content{position:relative;border:0;padding:.5em 1em;background:none;overflow:auto}.ui-dialog .ui-dialog-buttonpane{text-align:left;border-width:1px 0 0 0;background-image:none;margin-top:.5em;padding:.3em 1em .5em .4em}.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset{float:right}.ui-dialog .ui-dialog-buttonpane button{margin:.5em .4em .5em 0;cursor:pointer}.ui-dialog .ui-resizable-se{width:12px;height:12px;right:-5px;bottom:-5px;background-position:16px 16px}.ui-draggable .ui-dialog-titlebar{cursor:move}.ui-draggable-handle{-ms-touch-action:none;touch-action:none}.ui-menu{list-style:none;padding:0;margin:0;display:block;outline:none}.ui-menu .ui-menu{position:absolute}.ui-menu .ui-menu-item{position:relative;margin:0;padding:3px 1em 3px .4em;cursor:pointer;min-height:0;list-style-image:url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7")}.ui-menu .ui-menu-divider{margin:5px 0;height:0;font-size:0;line-height:0;border-width:1px 0 0 0}.ui-menu .ui-state-focus,.ui-menu .ui-state-active{margin:-1px}.ui-menu-icons{position:relative}.ui-menu-icons .ui-menu-item{padding-left:2em}.ui-menu .ui-icon{position:absolute;top:0;bottom:0;left:.2em;margin:auto 0}.ui-menu .ui-menu-icon{left:auto;right:0}.ui-progressbar{height:2em;text-align:left;overflow:hidden}.ui-progressbar .ui-progressbar-value{margin:-1px;height:100%}.ui-progressbar .ui-progressbar-overlay{background:url("data:image/gif;base64,R0lGODlhKAAoAIABAAAAAP///yH/C05FVFNDQVBFMi4wAwEAAAAh+QQJAQABACwAAAAAKAAoAAACkYwNqXrdC52DS06a7MFZI+4FHBCKoDeWKXqymPqGqxvJrXZbMx7Ttc+w9XgU2FB3lOyQRWET2IFGiU9m1frDVpxZZc6bfHwv4c1YXP6k1Vdy292Fb6UkuvFtXpvWSzA+HycXJHUXiGYIiMg2R6W459gnWGfHNdjIqDWVqemH2ekpObkpOlppWUqZiqr6edqqWQAAIfkECQEAAQAsAAAAACgAKAAAApSMgZnGfaqcg1E2uuzDmmHUBR8Qil95hiPKqWn3aqtLsS18y7G1SzNeowWBENtQd+T1JktP05nzPTdJZlR6vUxNWWjV+vUWhWNkWFwxl9VpZRedYcflIOLafaa28XdsH/ynlcc1uPVDZxQIR0K25+cICCmoqCe5mGhZOfeYSUh5yJcJyrkZWWpaR8doJ2o4NYq62lAAACH5BAkBAAEALAAAAAAoACgAAAKVDI4Yy22ZnINRNqosw0Bv7i1gyHUkFj7oSaWlu3ovC8GxNso5fluz3qLVhBVeT/Lz7ZTHyxL5dDalQWPVOsQWtRnuwXaFTj9jVVh8pma9JjZ4zYSj5ZOyma7uuolffh+IR5aW97cHuBUXKGKXlKjn+DiHWMcYJah4N0lYCMlJOXipGRr5qdgoSTrqWSq6WFl2ypoaUAAAIfkECQEAAQAsAAAAACgAKAAAApaEb6HLgd/iO7FNWtcFWe+ufODGjRfoiJ2akShbueb0wtI50zm02pbvwfWEMWBQ1zKGlLIhskiEPm9R6vRXxV4ZzWT2yHOGpWMyorblKlNp8HmHEb/lCXjcW7bmtXP8Xt229OVWR1fod2eWqNfHuMjXCPkIGNileOiImVmCOEmoSfn3yXlJWmoHGhqp6ilYuWYpmTqKUgAAIfkECQEAAQAsAAAAACgAKAAAApiEH6kb58biQ3FNWtMFWW3eNVcojuFGfqnZqSebuS06w5V80/X02pKe8zFwP6EFWOT1lDFk8rGERh1TTNOocQ61Hm4Xm2VexUHpzjymViHrFbiELsefVrn6XKfnt2Q9G/+Xdie499XHd2g4h7ioOGhXGJboGAnXSBnoBwKYyfioubZJ2Hn0RuRZaflZOil56Zp6iioKSXpUAAAh+QQJAQABACwAAAAAKAAoAAACkoQRqRvnxuI7kU1a1UU5bd5tnSeOZXhmn5lWK3qNTWvRdQxP8qvaC+/yaYQzXO7BMvaUEmJRd3TsiMAgswmNYrSgZdYrTX6tSHGZO73ezuAw2uxuQ+BbeZfMxsexY35+/Qe4J1inV0g4x3WHuMhIl2jXOKT2Q+VU5fgoSUI52VfZyfkJGkha6jmY+aaYdirq+lQAACH5BAkBAAEALAAAAAAoACgAAAKWBIKpYe0L3YNKToqswUlvznigd4wiR4KhZrKt9Upqip61i9E3vMvxRdHlbEFiEXfk9YARYxOZZD6VQ2pUunBmtRXo1Lf8hMVVcNl8JafV38aM2/Fu5V16Bn63r6xt97j09+MXSFi4BniGFae3hzbH9+hYBzkpuUh5aZmHuanZOZgIuvbGiNeomCnaxxap2upaCZsq+1kAACH5BAkBAAEALAAAAAAoACgAAAKXjI8By5zf4kOxTVrXNVlv1X0d8IGZGKLnNpYtm8Lr9cqVeuOSvfOW79D9aDHizNhDJidFZhNydEahOaDH6nomtJjp1tutKoNWkvA6JqfRVLHU/QUfau9l2x7G54d1fl995xcIGAdXqMfBNadoYrhH+Mg2KBlpVpbluCiXmMnZ2Sh4GBqJ+ckIOqqJ6LmKSllZmsoq6wpQAAAh+QQJAQABACwAAAAAKAAoAAAClYx/oLvoxuJDkU1a1YUZbJ59nSd2ZXhWqbRa2/gF8Gu2DY3iqs7yrq+xBYEkYvFSM8aSSObE+ZgRl1BHFZNr7pRCavZ5BW2142hY3AN/zWtsmf12p9XxxFl2lpLn1rseztfXZjdIWIf2s5dItwjYKBgo9yg5pHgzJXTEeGlZuenpyPmpGQoKOWkYmSpaSnqKileI2FAAACH5BAkBAAEALAAAAAAoACgAAAKVjB+gu+jG4kORTVrVhRlsnn2dJ3ZleFaptFrb+CXmO9OozeL5VfP99HvAWhpiUdcwkpBH3825AwYdU8xTqlLGhtCosArKMpvfa1mMRae9VvWZfeB2XfPkeLmm18lUcBj+p5dnN8jXZ3YIGEhYuOUn45aoCDkp16hl5IjYJvjWKcnoGQpqyPlpOhr3aElaqrq56Bq7VAAAOw==");height:100%;filter:alpha(opacity=25);opacity:0.25}.ui-progressbar-indeterminate .ui-progressbar-value{background-image:none}.ui-resizable{position:relative}.ui-resizable-handle{position:absolute;font-size:0.1px;display:block;-ms-touch-action:none;touch-action:none}.ui-resizable-disabled .ui-resizable-handle,.ui-resizable-autohide .ui-resizable-handle{display:none}.ui-resizable-n{cursor:n-resize;height:7px;width:100%;top:-5px;left:0}.ui-resizable-s{cursor:s-resize;height:7px;width:100%;bottom:-5px;left:0}.ui-resizable-e{cursor:e-resize;width:7px;right:-5px;top:0;height:100%}.ui-resizable-w{cursor:w-resize;width:7px;left:-5px;top:0;height:100%}.ui-resizable-se{cursor:se-resize;width:12px;height:12px;right:1px;bottom:1px}.ui-resizable-sw{cursor:sw-resize;width:9px;height:9px;left:-5px;bottom:-5px}.ui-resizable-nw{cursor:nw-resize;width:9px;height:9px;left:-5px;top:-5px}.ui-resizable-ne{cursor:ne-resize;width:9px;height:9px;right:-5px;top:-5px}.ui-selectable{-ms-touch-action:none;touch-action:none}.ui-selectable-helper{position:absolute;z-index:100;border:1px dotted black}.ui-selectmenu-menu{padding:0;margin:0;position:absolute;top:0;left:0;display:none}.ui-selectmenu-menu .ui-menu{overflow:auto;overflow-x:hidden;padding-bottom:1px}.ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup{font-size:1em;font-weight:bold;line-height:1.5;padding:2px 0.4em;margin:0.5em 0 0 0;height:auto;border:0}.ui-selectmenu-open{display:block}.ui-selectmenu-button{display:inline-block;overflow:hidden;position:relative;text-decoration:none;cursor:pointer}.ui-selectmenu-button span.ui-icon{right:0.5em;left:auto;margin-top:-8px;position:absolute;top:50%}.ui-selectmenu-button span.ui-selectmenu-text{text-align:left;padding:0.4em 2.1em 0.4em 1em;display:block;line-height:1.4;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.ui-slider{position:relative;text-align:left}.ui-slider .ui-slider-handle{position:absolute;z-index:2;width:1.2em;height:1.2em;cursor:default;-ms-touch-action:none;touch-action:none}.ui-slider .ui-slider-range{position:absolute;z-index:1;font-size:.7em;display:block;border:0;background-position:0 0}.ui-slider.ui-state-disabled .ui-slider-handle,.ui-slider.ui-state-disabled .ui-slider-range{-webkit-filter:inherit;filter:inherit}.ui-slider-horizontal{height:.8em}.ui-slider-horizontal .ui-slider-handle{top:-.3em;margin-left:-.6em}.ui-slider-horizontal .ui-slider-range{top:0;height:100%}.ui-slider-horizontal .ui-slider-range-min{left:0}.ui-slider-horizontal .ui-slider-range-max{right:0}.ui-slider-vertical{width:.8em;height:100px}.ui-slider-vertical .ui-slider-handle{left:-.3em;margin-left:0;margin-bottom:-.6em}.ui-slider-vertical .ui-slider-range{left:0;width:100%}.ui-slider-vertical .ui-slider-range-min{bottom:0}.ui-slider-vertical .ui-slider-range-max{top:0}.ui-sortable-handle{-ms-touch-action:none;touch-action:none}.ui-spinner{position:relative;display:inline-block;overflow:hidden;padding:0;vertical-align:middle}.ui-spinner-input{border:none;background:none;color:inherit;padding:0;margin:.2em 0;vertical-align:middle;margin-left:.4em;margin-right:22px}.ui-spinner-button{width:16px;height:50%;font-size:.5em;padding:0;margin:0;text-align:center;position:absolute;cursor:default;display:block;overflow:hidden;right:0}.ui-spinner a.ui-spinner-button{border-top:none;border-bottom:none;border-right:none}.ui-spinner .ui-icon{position:absolute;margin-top:-8px;top:50%;left:0}.ui-spinner-up{top:0}.ui-spinner-down{bottom:0}.ui-spinner .ui-icon-triangle-1-s{background-position:-65px -16px}.ui-tabs{position:relative;padding:.2em}.ui-tabs .ui-tabs-nav{margin:0;padding:.2em .2em 0}.ui-tabs .ui-tabs-nav li{list-style:none;float:left;position:relative;top:0;margin:1px .2em 0 0;border-bottom-width:0;padding:0;white-space:nowrap}.ui-tabs .ui-tabs-nav .ui-tabs-anchor{float:left;padding:.5em 1em;text-decoration:none}.ui-tabs .ui-tabs-nav li.ui-tabs-active{margin-bottom:-1px;padding-bottom:1px}.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor,.ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor,.ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor{cursor:text}.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor{cursor:pointer}.ui-tabs .ui-tabs-panel{display:block;border-width:0;padding:1em 1.4em;background:none}.ui-tooltip{padding:8px;position:absolute;z-index:9999;max-width:300px;-webkit-box-shadow:0 0 5px #aaa;box-shadow:0 0 5px #aaa}body .ui-tooltip{border-width:2px}.ui-widget{font-family:Verdana,Arial,sans-serif;font-size:1.1em}.ui-widget .ui-widget{font-size:1em}.ui-widget input,.ui-widget select,.ui-widget textarea,.ui-widget button{font-family:Verdana,Arial,sans-serif;font-size:1em}.ui-widget-content{border:1px solid #aaa;background:#fff url("images/ui-bg_flat_75_ffffff_40x100.png") 50% 50% repeat-x;color:#222}.ui-widget-content a{color:#222}.ui-widget-header{border:1px solid #aaa;background:#ccc url("images/ui-bg_highlight-soft_75_cccccc_1x100.png") 50% 50% repeat-x;color:#222;font-weight:bold}.ui-widget-header a{color:#222}.ui-state-default,.ui-widget-content .ui-state-default,.ui-widget-header .ui-state-default{border:1px solid #d3d3d3;background:#e6e6e6 url("images/ui-bg_glass_75_e6e6e6_1x400.png") 50% 50% repeat-x;font-weight:normal;color:#555}.ui-state-default a,.ui-state-default a:link,.ui-state-default a:visited{color:#555;text-decoration:none}.ui-state-hover,.ui-widget-content .ui-state-hover,.ui-widget-header .ui-state-hover,.ui-state-focus,.ui-widget-content .ui-state-focus,.ui-widget-header .ui-state-focus{border:1px solid #999;background:#dadada url("images/ui-bg_glass_75_dadada_1x400.png") 50% 50% repeat-x;font-weight:normal;color:#212121}.ui-state-hover a,.ui-state-hover a:hover,.ui-state-hover a:link,.ui-state-hover a:visited,.ui-state-focus a,.ui-state-focus a:hover,.ui-state-focus a:link,.ui-state-focus a:visited{color:#212121;text-decoration:none}.ui-state-active,.ui-widget-content .ui-state-active,.ui-widget-header .ui-state-active{border:1px solid #aaa;background:#fff url("images/ui-bg_glass_65_ffffff_1x400.png") 50% 50% repeat-x;font-weight:normal;color:#212121}.ui-state-active a,.ui-state-active a:link,.ui-state-active a:visited{color:#212121;text-decoration:none}.ui-state-highlight,.ui-widget-content .ui-state-highlight,.ui-widget-header .ui-state-highlight{border:1px solid #fcefa1;background:#fbf9ee url("images/ui-bg_glass_55_fbf9ee_1x400.png") 50% 50% repeat-x;color:#363636}.ui-state-highlight a,.ui-widget-content .ui-state-highlight a,.ui-widget-header .ui-state-highlight a{color:#363636}.ui-state-error,.ui-widget-content .ui-state-error,.ui-widget-header .ui-state-error{border:1px solid #cd0a0a;background:#fef1ec url("images/ui-bg_glass_95_fef1ec_1x400.png") 50% 50% repeat-x;color:#cd0a0a}.ui-state-error a,.ui-widget-content .ui-state-error a,.ui-widget-header .ui-state-error a{color:#cd0a0a}.ui-state-error-text,.ui-widget-content .ui-state-error-text,.ui-widget-header .ui-state-error-text{color:#cd0a0a}.ui-priority-primary,.ui-widget-content .ui-priority-primary,.ui-widget-header .ui-priority-primary{font-weight:bold}.ui-priority-secondary,.ui-widget-content .ui-priority-secondary,.ui-widget-header .ui-priority-secondary{opacity:.7;filter:Alpha(Opacity=70);font-weight:normal}.ui-state-disabled,.ui-widget-content .ui-state-disabled,.ui-widget-header .ui-state-disabled{opacity:.35;filter:Alpha(Opacity=35);background-image:none}.ui-state-disabled .ui-icon{filter:Alpha(Opacity=35)}.ui-icon{width:16px;height:16px}.ui-icon,.ui-widget-content .ui-icon{background-image:url("images/ui-icons_222222_256x240.png")}.ui-widget-header .ui-icon{background-image:url("images/ui-icons_222222_256x240.png")}.ui-state-default .ui-icon{background-image:url("images/ui-icons_888888_256x240.png")}.ui-state-hover .ui-icon,.ui-state-focus .ui-icon{background-image:url("images/ui-icons_454545_256x240.png")}.ui-state-active .ui-icon{background-image:url("images/ui-icons_454545_256x240.png")}.ui-state-highlight .ui-icon{background-image:url("images/ui-icons_2e83ff_256x240.png")}.ui-state-error .ui-icon,.ui-state-error-text .ui-icon{background-image:url("images/ui-icons_cd0a0a_256x240.png")}.ui-icon-blank{background-position:16px 16px}.ui-icon-carat-1-n{background-position:0 0}.ui-icon-carat-1-ne{background-position:-16px 0}.ui-icon-carat-1-e{background-position:-32px 0}.ui-icon-carat-1-se{background-position:-48px 0}.ui-icon-carat-1-s{background-position:-64px 0}.ui-icon-carat-1-sw{background-position:-80px 0}.ui-icon-carat-1-w{background-position:-96px 0}.ui-icon-carat-1-nw{background-position:-112px 0}.ui-icon-carat-2-n-s{background-position:-128px 0}.ui-icon-carat-2-e-w{background-position:-144px 0}.ui-icon-triangle-1-n{background-position:0 -16px}.ui-icon-triangle-1-ne{background-position:-16px -16px}.ui-icon-triangle-1-e{background-position:-32px -16px}.ui-icon-triangle-1-se{background-position:-48px -16px}.ui-icon-triangle-1-s{background-position:-64px -16px}.ui-icon-triangle-1-sw{background-position:-80px -16px}.ui-icon-triangle-1-w{background-position:-96px -16px}.ui-icon-triangle-1-nw{background-position:-112px -16px}.ui-icon-triangle-2-n-s{background-position:-128px -16px}.ui-icon-triangle-2-e-w{background-position:-144px -16px}.ui-icon-arrow-1-n{background-position:0 -32px}.ui-icon-arrow-1-ne{background-position:-16px -32px}.ui-icon-arrow-1-e{background-position:-32px -32px}.ui-icon-arrow-1-se{background-position:-48px -32px}.ui-icon-arrow-1-s{background-position:-64px -32px}.ui-icon-arrow-1-sw{background-position:-80px -32px}.ui-icon-arrow-1-w{background-position:-96px -32px}.ui-icon-arrow-1-nw{background-position:-112px -32px}.ui-icon-arrow-2-n-s{background-position:-128px -32px}.ui-icon-arrow-2-ne-sw{background-position:-144px -32px}.ui-icon-arrow-2-e-w{background-position:-160px -32px}.ui-icon-arrow-2-se-nw{background-position:-176px -32px}.ui-icon-arrowstop-1-n{background-position:-192px -32px}.ui-icon-arrowstop-1-e{background-position:-208px -32px}.ui-icon-arrowstop-1-s{background-position:-224px -32px}.ui-icon-arrowstop-1-w{background-position:-240px -32px}.ui-icon-arrowthick-1-n{background-position:0 -48px}.ui-icon-arrowthick-1-ne{background-position:-16px -48px}.ui-icon-arrowthick-1-e{background-position:-32px -48px}.ui-icon-arrowthick-1-se{background-position:-48px -48px}.ui-icon-arrowthick-1-s{background-position:-64px -48px}.ui-icon-arrowthick-1-sw{background-position:-80px -48px}.ui-icon-arrowthick-1-w{background-position:-96px -48px}.ui-icon-arrowthick-1-nw{background-position:-112px -48px}.ui-icon-arrowthick-2-n-s{background-position:-128px -48px}.ui-icon-arrowthick-2-ne-sw{background-position:-144px -48px}.ui-icon-arrowthick-2-e-w{background-position:-160px -48px}.ui-icon-arrowthick-2-se-nw{background-position:-176px -48px}.ui-icon-arrowthickstop-1-n{background-position:-192px -48px}.ui-icon-arrowthickstop-1-e{background-position:-208px -48px}.ui-icon-arrowthickstop-1-s{background-position:-224px -48px}.ui-icon-arrowthickstop-1-w{background-position:-240px -48px}.ui-icon-arrowreturnthick-1-w{background-position:0 -64px}.ui-icon-arrowreturnthick-1-n{background-position:-16px -64px}.ui-icon-arrowreturnthick-1-e{background-position:-32px -64px}.ui-icon-arrowreturnthick-1-s{background-position:-48px -64px}.ui-icon-arrowreturn-1-w{background-position:-64px -64px}.ui-icon-arrowreturn-1-n{background-position:-80px -64px}.ui-icon-arrowreturn-1-e{background-position:-96px -64px}.ui-icon-arrowreturn-1-s{background-position:-112px -64px}.ui-icon-arrowrefresh-1-w{background-position:-128px -64px}.ui-icon-arrowrefresh-1-n{background-position:-144px -64px}.ui-icon-arrowrefresh-1-e{background-position:-160px -64px}.ui-icon-arrowrefresh-1-s{background-position:-176px -64px}.ui-icon-arrow-4{background-position:0 -80px}.ui-icon-arrow-4-diag{background-position:-16px -80px}.ui-icon-extlink{background-position:-32px -80px}.ui-icon-newwin{background-position:-48px -80px}.ui-icon-refresh{background-position:-64px -80px}.ui-icon-shuffle{background-position:-80px -80px}.ui-icon-transfer-e-w{background-position:-96px -80px}.ui-icon-transferthick-e-w{background-position:-112px -80px}.ui-icon-folder-collapsed{background-position:0 -96px}.ui-icon-folder-open{background-position:-16px -96px}.ui-icon-document{background-position:-32px -96px}.ui-icon-document-b{background-position:-48px -96px}.ui-icon-note{background-position:-64px -96px}.ui-icon-mail-closed{background-position:-80px -96px}.ui-icon-mail-open{background-position:-96px -96px}.ui-icon-suitcase{background-position:-112px -96px}.ui-icon-comment{background-position:-128px -96px}.ui-icon-person{background-position:-144px -96px}.ui-icon-print{background-position:-160px -96px}.ui-icon-trash{background-position:-176px -96px}.ui-icon-locked{background-position:-192px -96px}.ui-icon-unlocked{background-position:-208px -96px}.ui-icon-bookmark{background-position:-224px -96px}.ui-icon-tag{background-position:-240px -96px}.ui-icon-home{background-position:0 -112px}.ui-icon-flag{background-position:-16px -112px}.ui-icon-calendar{background-position:-32px -112px}.ui-icon-cart{background-position:-48px -112px}.ui-icon-pencil{background-position:-64px -112px}.ui-icon-clock{background-position:-80px -112px}.ui-icon-disk{background-position:-96px -112px}.ui-icon-calculator{background-position:-112px -112px}.ui-icon-zoomin{background-position:-128px -112px}.ui-icon-zoomout{background-position:-144px -112px}.ui-icon-search{background-position:-160px -112px}.ui-icon-wrench{background-position:-176px -112px}.ui-icon-gear{background-position:-192px -112px}.ui-icon-heart{background-position:-208px -112px}.ui-icon-star{background-position:-224px -112px}.ui-icon-link{background-position:-240px -112px}.ui-icon-cancel{background-position:0 -128px}.ui-icon-plus{background-position:-16px -128px}.ui-icon-plusthick{background-position:-32px -128px}.ui-icon-minus{background-position:-48px -128px}.ui-icon-minusthick{background-position:-64px -128px}.ui-icon-close{background-position:-80px -128px}.ui-icon-closethick{background-position:-96px -128px}.ui-icon-key{background-position:-112px -128px}.ui-icon-lightbulb{background-position:-128px -128px}.ui-icon-scissors{background-position:-144px -128px}.ui-icon-clipboard{background-position:-160px -128px}.ui-icon-copy{background-position:-176px -128px}.ui-icon-contact{background-position:-192px -128px}.ui-icon-image{background-position:-208px -128px}.ui-icon-video{background-position:-224px -128px}.ui-icon-script{background-position:-240px -128px}.ui-icon-alert{background-position:0 -144px}.ui-icon-info{background-position:-16px -144px}.ui-icon-notice{background-position:-32px -144px}.ui-icon-help{background-position:-48px -144px}.ui-icon-check{background-position:-64px -144px}.ui-icon-bullet{background-position:-80px -144px}.ui-icon-radio-on{background-position:-96px -144px}.ui-icon-radio-off{background-position:-112px -144px}.ui-icon-pin-w{background-position:-128px -144px}.ui-icon-pin-s{background-position:-144px -144px}.ui-icon-play{background-position:0 -160px}.ui-icon-pause{background-position:-16px -160px}.ui-icon-seek-next{background-position:-32px -160px}.ui-icon-seek-prev{background-position:-48px -160px}.ui-icon-seek-end{background-position:-64px -160px}.ui-icon-seek-start{background-position:-80px -160px}.ui-icon-seek-first{background-position:-80px -160px}.ui-icon-stop{background-position:-96px -160px}.ui-icon-eject{background-position:-112px -160px}.ui-icon-volume-off{background-position:-128px -160px}.ui-icon-volume-on{background-position:-144px -160px}.ui-icon-power{background-position:0 -176px}.ui-icon-signal-diag{background-position:-16px -176px}.ui-icon-signal{background-position:-32px -176px}.ui-icon-battery-0{background-position:-48px -176px}.ui-icon-battery-1{background-position:-64px -176px}.ui-icon-battery-2{background-position:-80px -176px}.ui-icon-battery-3{background-position:-96px -176px}.ui-icon-circle-plus{background-position:0 -192px}.ui-icon-circle-minus{background-position:-16px -192px}.ui-icon-circle-close{background-position:-32px -192px}.ui-icon-circle-triangle-e{background-position:-48px -192px}.ui-icon-circle-triangle-s{background-position:-64px -192px}.ui-icon-circle-triangle-w{background-position:-80px -192px}.ui-icon-circle-triangle-n{background-position:-96px -192px}.ui-icon-circle-arrow-e{background-position:-112px -192px}.ui-icon-circle-arrow-s{background-position:-128px -192px}.ui-icon-circle-arrow-w{background-position:-144px -192px}.ui-icon-circle-arrow-n{background-position:-160px -192px}.ui-icon-circle-zoomin{background-position:-176px -192px}.ui-icon-circle-zoomout{background-position:-192px -192px}.ui-icon-circle-check{background-position:-208px -192px}.ui-icon-circlesmall-plus{background-position:0 -208px}.ui-icon-circlesmall-minus{background-position:-16px -208px}.ui-icon-circlesmall-close{background-position:-32px -208px}.ui-icon-squaresmall-plus{background-position:-48px -208px}.ui-icon-squaresmall-minus{background-position:-64px -208px}.ui-icon-squaresmall-close{background-position:-80px -208px}.ui-icon-grip-dotted-vertical{background-position:0 -224px}.ui-icon-grip-dotted-horizontal{background-position:-16px -224px}.ui-icon-grip-solid-vertical{background-position:-32px -224px}.ui-icon-grip-solid-horizontal{background-position:-48px -224px}.ui-icon-gripsmall-diagonal-se{background-position:-64px -224px}.ui-icon-grip-diagonal-se{background-position:-80px -224px}.ui-corner-all,.ui-corner-top,.ui-corner-left,.ui-corner-tl{border-top-left-radius:4px}.ui-corner-all,.ui-corner-top,.ui-corner-right,.ui-corner-tr{border-top-right-radius:4px}.ui-corner-all,.ui-corner-bottom,.ui-corner-left,.ui-corner-bl{border-bottom-left-radius:4px}.ui-corner-all,.ui-corner-bottom,.ui-corner-right,.ui-corner-br{border-bottom-right-radius:4px}.ui-widget-overlay{background:#aaa url("images/ui-bg_flat_0_aaaaaa_40x100.png") 50% 50% repeat-x;opacity:.3;filter:Alpha(Opacity=30)}.ui-widget-shadow{margin:-8px 0 0 -8px;padding:8px;background:#aaa url("images/ui-bg_flat_0_aaaaaa_40x100.png") 50% 50% repeat-x;opacity:.3;filter:Alpha(Opacity=30);border-radius:8px}PK`x1\�y�\��Aplugin-fw/assets/css/jquery-ui/images/ui-icons_888888_256x240.pngnu�[����PNG


IHDR��IJ�PLTEGpL�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������菿[tRNSX�G|"2���wf�����ZNz�@e�S�F��caM�hm�s�}�����䁎]����������b�p�
Ιi�8*�yѧȓ�د�͐���ǫ��e�
IDATx����6�a�7��s#@�-l	����Y�xZ�-v�����c~x�n�y��*f6߸��u��h1��-���b�Ҁ��T3=��H����B�S���&F�Z��`L!����
(�
����_�L�~�S`
f6�E�p8���G�	ν^�~`JC���P�?�=|�VK��4 >���i���cZ�~��^q�S��~&XX���U<�
O1lS�mt�W�}�\]�˜����p8��k���}o������PN�z���,C�t����P���9�PK9���
�)���vY1 e�w��k� �����	������XO�\��D{�fq��+��}A�S�C]�^ĭ�J���p8�Y/����Q4��7<W�
(Q��Z��Y��RŴ
��F70G��ǡh �^��]k+����GHs�ڿ��m;��"�� l�a�<b] �8AT��G~ʈ�[�a��<c@�2�˨���y	�!V��y����񕛘l �))n�m��M0���_��s�啨�������p8�+��,3��VG���!�0���5OO���Z6L���8��bׯ�E�7�������-��6�����ʌY��2���)�Rm���ne��{�#+����W
��j�i@�G�Y��a���P�����E�yf���_����yϹ-���p8<�����\���7���L�S�������u,�ﱱ��d����%���(�ӽ�`���l3��׀=�g��ǽPږw�Sl�ߏ
q	�}d<��t����2�O���F���{@���@���Swm����x���W{�ݶ�E��=�1d�`L��J��{�L]���ccp�4>ږf�n�{���!�$U&��d2��y�X�D	K�� J�%�+���>X�~UP�M���G�n%py�Y!��q]���@i�����m<+�N��w6h�&:ꢢ(����d�F��c�@]�n�	d�	 J�b	�B����C��b
!���B�d2J+��:��"2pk��~�$��D?$��=�N�z��N�>��0�t;�p<t8�=�(��K�0.�(�l\���8�A��x�E�O�/�����D��c���/?�X:��� ��x0@��iz`<.��Hq�QW�^e��A�Ԕ=� �Sj�Qs�S���
�g��"�~\�c���tϬa������
ՠ��������P��t������
�rE��?^�I8%P�yMV�,P��2`��%�A-��?s���뀝N�0F�<G��r��^vo'��j��^�8��'�sD�C&��d�^�8pJ��׆x!h	��#֌����VoyS���Nԥi��~���pV����F��}j�Q����蹟��j�@j��8p��4��K�h�m��&�}:�����1q�*���d����ׄTBU����$r5�4��>�q*iM0<�'�[Ѻ^��ƛO^-��)�u���ۋ�w���s�**{�KP�
w��=4�74n-�<+��TH�s̻<O\?^w������gBD��M4t��k@����CV|��tj��{��u�SO/>L�����\�������k<�+��
�,x:����ݽS�(OQj
ԩ<L�f&��?}��ᣟ}��1��yT�b�)�a���Zohþd@rNB	��y!@J�$����e�:�8�b$��x#�q��YF�A��b�~{`���u(f�7Q��4pq��e-�\+�A�J�!u�~�5��$��d2%�
����n�RT�п�1�4��g�&�_}���|����<������%J�vB��w��aY~�I�K
�*���L3{5>%8�.���Tj�͍�;E�/�a:�{���s��P��
{h��3`�5@\���?|����n�Q*��##��m:&�3��F��xA���2�d�f~@�8��~G7�/�Տ����OD���*�ш�U�����(�3�؊R$������ǀ�9Z���umg}N�8N�4�;J������7�o�9��a&
���k��X�VLo�i��'''�:���O�t�%ǀ�|���o�rH��1 ��&���)�
�TfǜE	 �4�<��{n�i 9�~>�3'}�Y�%��V��h�akԢvm�?�)G�A���@��9J{�xI�K���� ��qr�e�{����p�����v��w8�q�4���Ir_:;��''�C&�ɔe$7��.?��
�†_tQx�����0Qį@-C�}1`r�p���������"j�ĽP��v&~Y��@"��+A�~��܌�����GA:8Gh�1���
ԡ�D9��5��~�,0���l���Ԋ�W]4/ԟ�uZ�BRA00x&�	^�-8���!Կ�8� X8G��F�
��
��{�;��7��`�q���, ��1 j��A��g0g�s������3�L&�95V	ú�/$�ϥK�~�0�q<.^���7���>Z/�����Vױ*j
��x��Ǫ<�@@��
��y�6%��lTv�8���)UqZ��=���1����Y���Y _d2�L&C���S����-�3w��g(��q
T��Pɀ}����e���/1S�b���;�=��U�Z��-���8E�R���⃍����[����9<gZr�׆����8�x�`<`����|�,<�Ϙ0�����0.������w�{�!������ii8��`���
U��k���J�3�s�H&��d����<D������ؿ���1���l�������탔;�������!��]�
p#8XWb~ؾٟ��;")v��V���Z��_��-˧�[G�/a�D��������gH8ץ��E���/o�z<�|���4R�
 �3]��;t�\���K�izh���m[:�Ǚ��G�	��҃Z;�HRXWb~b��u���p�Ә�����_������R�n��O&��d2����(����q�@A������ۀ�D�#r�1 �2�L&��\X�~�^����~a��`@������g0�t�E]?�c�t��\�����t@���rH�Q�B����7�_�8���9��IEND�B`�PK`x1\[�YcooEplugin-fw/assets/css/jquery-ui/images/ui-bg_glass_55_fbf9ee_1x400.pngnu�[����PNG


IHDR��:��6IDATx�� ��_6��5=� ���8Go"BZU#�[�҄S�;M�#�o5��0�IEND�B`�PK`x1\�
UIRREplugin-fw/assets/css/jquery-ui/images/ui-bg_glass_65_ffffff_1x400.pngnu�[����PNG


IHDR�J3UIDAT8Oc��0
�%�!6�QHs�%����n�IEND�B`�PK`x1\�>NYYEplugin-fw/assets/css/jquery-ui/images/ui-bg_glass_75_e6e6e6_1x400.pngnu�[����PNG


IHDR�J3U IDATx�cz��0
�����Ȑ��	*>
�
a���IEND�B`�PK`x1\Ѷ�ۿ�Aplugin-fw/assets/css/jquery-ui/images/ui-icons_222222_256x240.pngnu�[����PNG


IHDR��IJ�PLTEGpL"""�Q�EZtRNSw��2��XG|�Z�f����Ȉ���cp�@ys
S�m�㲼h}��Mثz�8���]�aF"��b����N��i�e�ݭ�*ǰ���������ֹz^Y�
IDATx^�QN�@D���� �EB��Z!L�u	>Bٴ��tb2�0����p��#IA�`�����-h�$j�`��u�
((�4�t/�`���%����`�����r�x�c��/�K�>!���3��>�|���`0���G=�yځ
��@-�?��:�����~��Wa*��C�?W,�r0��4����?U\��
�56t�+Q���&.�sx��`0p-����<�9z��oC�E�O3��Cz:��* �a�����^����AJ�d^?��؀@@V��c@�.E�C�(�0��k��t��‚<�� ��sC�M[Ef�.������`0�������⼘9P�R}k���k%�Q��.��z����%@\.��X�j\� �h@i��6�@ԏHr~g�f[� <{�����
�/^��I�@]"��i:U��i��s>"z:�jC���@�q�1,@��!��(�:���$*�Q�7�t!v@�_� 2���[y@������Տ�AE��5������_�G
hZ:ϙX �� �!)�:hX��xP�ߏ#�?8��(�(@�$G�Yk�B��(+������P�η��n���JGd�B�sf���@�����ו���<�<��`0��}�<�K���z�z��8����m�i������{v�m2�n�K�������4~go�Y3��<{�lz�g�'�A{��Xu��e1ԯ���r��
�����g������|8^��@:�
�v���=��}�5�!����O;g��&�m���d'J
*YmW%N%��P���5�<�}����D�
��Z��|X�ڀ��{.YH ��|���T[���"|	�z�.�,�9��T	$��~ؑ�N���,q�e%M �~�Ĉ��l��͞9v��Gc҄4%I�4���7S&���dYV��2�`	�t
V�@�j�+�
�0%��뇴X,B����H;�)VPQ2�1�����U%�$����=��v��	�֭[��M�>�E;�����'�zA5�Z�[��r��A@A��g�	��?�i�E�	�r���_�0v+�x<��Ǩ��|���LJ('��v��?�W)�DG�D�@.��e�Q~�p�Ň��;w�@�[aR��`���y�'��$IƝ�,�_WK�o�H]t*`d�#�nT��KӾ
��@���z�{R�4g��cW.�3�辟����p�����r��C�y����喿[��2m��q`g�?�g�L�������Ǐ��B�������jY�k�����Ή��M�)��K��m�!X�8LJl�3��]�wm��#,���|�$g�H���
��#�0Gڇ}����,���x-~�Z�T� �^�������%���K�LK9�y��L��W�J�&@@�7��´�<�����R
�RA�
�v���mH���֩���}�
�(^��ZZД���P��@E����9�yL�?A�@������ֺ�T�i������\?$ {}�_Q�j�sw�!��S��Z�����ź�L��oV�_k=������s _�aOV����H�'-5���8��\����[�[��XO8f�Dm�e�G������׵�4�HE!����Y>j �����̿o�f���#i���&���"�z��(�ݜ?���5�e��s��O�
E�av[�ngr�G����D(6�>*��vpG��&@�K�Dx�#(�I�Q��,�/����;�+$=|��'�x�s�E�1��~E�w�j´,�u�7	 'QBn�1������Wk�XK1+I���wu�j����z=!D�zԹ�b*�x��r�����������7#��r��@�@�����,�NV��pƬ�
��>�~{B�35����눪�wj�k�����Fw_O
�.VPjn�
@f8Y.�$1]Θ��;��{��m͜�@�|��
��浝׳�8��&�C�d���>�<]r�cx�L�n._�`���&��y�]�P|����	�󙟯�l�G7�YoX.'�I�	>+�)��{���Y�
z����tdmO�n7nP����eX.�,��7}��>��L]f��W��DVXؓ�юx�i�yMO�\����KڧP���#��Y�n�v��E'����4!�Y�燣�׏d����f�{��sr3���+��E����r̻�,<xt,�HV2�{ �#ӦX��fES�Y�E��'��}�E��p�o���0�x���o�4ͽ��[A������c1���cG�9��'�i�� ����o��m�'��S2��R̭ �X,�f�?���o���3����p���* 2�m�@0�
|ӻj�jo�����$�5TX���rW��΀�߹p����K�����@��ۄi����{���mu.��h�M��?t�5z�j����2g/E�m���i�9�ʞۡ�m���*�&�n0�
�p,�)�v�0u�z�$��V�c���x��g*��Y`���S�Y���PpX\"�L����d� ���g��/Ŭ����9�Y�K
�K/3ݷ��\ӵ60#�^��kn�f����4]��R��H����0/8�	`�f<�
ƌ���ۙ����L����
��
��0�4�>x��|2%��3U
�d^�.lL��v��,�k]T���D�������~@\���Ϊ�x[�q�����FwV��ۆ>�+4\9I�)Ϫ�x[�q��
m�+� �7�ճ�߽��&�}!���P�O��9�����r��)�]�i�������
i	�
�I�G�+�:C"�������# ����
�Ky$�u���5H�������>y=��6L� @�B"����:�55�75k��{�^�g{O���ĶKӰ4eۧ1?�t�mOd�x��q�?����P��[�N�;�T�iP<��+ %�]@H"��PC`8\Z��m�(�����0����+��z�vV�z�	���_����BM��g|*���q+ ��z�_�y��+{��`l�s��r�QCq���IEND�B`�PK`x1\Ud%s��Aplugin-fw/assets/css/jquery-ui/images/ui-icons_cd0a0a_256x240.pngnu�[����PNG


IHDR��IJ�PLTEGpL��

�

�

��

�

�

�		�

�

�

�		�

�		�

�		��		�

�		��

�		�		�		�

�

�

�

�

�		�		�		�		�		��		�

�

�		�

�

�

�		�

�		�

�

�

�

�

�		�		�

�		�

�		�		�		�

�

�		�

��		�

�		�

�		���		�

�

�		�

�

�

�		�		�

�		�		�

�		�

�		�

�

;
�[tRNSX�G|"2���wf�����ZNz�@e�S�F��caM�hm�s�}�����䁎]����������b�p�
Ιi�8*�yѧȓ�د�͐���ǫ��e�
IDATx����6�a�7��s#@�-l	����Y�xZ�-v�����c~x�n�y��*f6߸��u��h1��-���b�Ҁ��T3=��H����B�S���&F�Z��`L!����
(�
����_�L�~�S`
f6�E�p8���G�	ν^�~`JC���P�?�=|�VK��4 >���i���cZ�~��^q�S��~&XX���U<�
O1lS�mt�W�}�\]�˜����p8��k���}o������PN�z���,C�t����P���9�PK9���
�)���vY1 e�w��k� �����	������XO�\��D{�fq��+��}A�S�C]�^ĭ�J���p8�Y/����Q4��7<W�
(Q��Z��Y��RŴ
��F70G��ǡh �^��]k+����GHs�ڿ��m;��"�� l�a�<b] �8AT��G~ʈ�[�a��<c@�2�˨���y	�!V��y����񕛘l �))n�m��M0���_��s�啨�������p8�+��,3��VG���!�0���5OO���Z6L���8��bׯ�E�7�������-��6�����ʌY��2���)�Rm���ne��{�#+����W
��j�i@�G�Y��a���P�����E�yf���_����yϹ-���p8<�����\���7���L�S�������u,�ﱱ��d����%���(�ӽ�`���l3��׀=�g��ǽPږw�Sl�ߏ
q	�}d<��t����2�O���F���{@���@���Swm����x���W{�ݶ�E��=�1d�`L��J��{�L]���ccp�4>ږf�n�{���!�$U&��d2��y�X�D	K�� J�%�+���>X�~UP�M���G�n%py�Y!��q]���@i�����m<+�N��w6h�&:ꢢ(����d�F��c�@]�n�	d�	 J�b	�B����C��b
!���B�d2J+��:��"2pk��~�$��D?$��=�N�z��N�>��0�t;�p<t8�=�(��K�0.�(�l\���8�A��x�E�O�/�����D��c���/?�X:��� ��x0@��iz`<.��Hq�QW�^e��A�Ԕ=� �Sj�Qs�S���
�g��"�~\�c���tϬa������
ՠ��������P��t������
�rE��?^�I8%P�yMV�,P��2`��%�A-��?s���뀝N�0F�<G��r��^vo'��j��^�8��'�sD�C&��d�^�8pJ��׆x!h	��#֌����VoyS���Nԥi��~���pV����F��}j�Q����蹟��j�@j��8p��4��K�h�m��&�}:�����1q�*���d����ׄTBU����$r5�4��>�q*iM0<�'�[Ѻ^��ƛO^-��)�u���ۋ�w���s�**{�KP�
w��=4�74n-�<+��TH�s̻<O\?^w������gBD��M4t��k@����CV|��tj��{��u�SO/>L�����\�������k<�+��
�,x:����ݽS�(OQj
ԩ<L�f&��?}��ᣟ}��1��yT�b�)�a���Zohþd@rNB	��y!@J�$����e�:�8�b$��x#�q��YF�A��b�~{`���u(f�7Q��4pq��e-�\+�A�J�!u�~�5��$��d2%�
����n�RT�п�1�4��g�&�_}���|����<������%J�vB��w��aY~�I�K
�*���L3{5>%8�.���Tj�͍�;E�/�a:�{���s��P��
{h��3`�5@\���?|����n�Q*��##��m:&�3��F��xA���2�d�f~@�8��~G7�/�Տ����OD���*�ш�U�����(�3�؊R$������ǀ�9Z���umg}N�8N�4�;J������7�o�9��a&
���k��X�VLo�i��'''�:���O�t�%ǀ�|���o�rH��1 ��&���)�
�TfǜE	 �4�<��{n�i 9�~>�3'}�Y�%��V��h�akԢvm�?�)G�A���@��9J{�xI�K���� ��qr�e�{����p�����v��w8�q�4���Ir_:;��''�C&�ɔe$7��.?��
�†_tQx�����0Qį@-C�}1`r�p���������"j�ĽP��v&~Y��@"��+A�~��܌�����GA:8Gh�1���
ԡ�D9��5��~�,0���l���Ԋ�W]4/ԟ�uZ�BRA00x&�	^�-8���!Կ�8� X8G��F�
��
��{�;��7��`�q���, ��1 j��A��g0g�s������3�L&�95V	ú�/$�ϥK�~�0�q<.^���7���>Z/�����Vױ*j
��x��Ǫ<�@@��
��y�6%��lTv�8���)UqZ��=���1����Y���Y _d2�L&C���S����-�3w��g(��q
T��Pɀ}����e���/1S�b���;�=��U�Z��-���8E�R���⃍����[����9<gZr�׆����8�x�`<`����|�,<�Ϙ0�����0.������w�{�!������ii8��`���
U��k���J�3�s�H&��d����<D������ؿ���1���l�������탔;�������!��]�
p#8XWb~ؾٟ��;")v��V���Z��_��-˧�[G�/a�D��������gH8ץ��E���/o�z<�|���4R�
 �3]��;t�\���K�izh���m[:�Ǚ��G�	��҃Z;�HRXWb~b��u���p�Ә�����_������R�n��O&��d2����(����q�@A������ۀ�D�#r�1 �2�L&��\X�~�^����~a��`@������g0�t�E]?�c�t��\�����t@���rH�Q�B����7�_�8���9��IEND�B`�PK`x1\��VVNplugin-fw/assets/css/jquery-ui/images/ui-bg_highlight-soft_75_cccccc_1x100.pngnu�[����PNG


IHDRdbG�IDAT�cx��@�!$��`3i��,��}�
IEND�B`�PK`x1\w�JJEplugin-fw/assets/css/jquery-ui/images/ui-bg_flat_75_ffffff_40x100.pngnu�[����PNG


IHDR(d�O�IDATxc��%G�Qʑ�J��7IEND�B`�PK`x1\�?${VVDplugin-fw/assets/css/jquery-ui/images/ui-bg_flat_0_aaaaaa_40x100.pngnu�[����PNG


IHDR(dΪ�9PLTE���~��IDATxc��X\�RIEND�B`�PK`x1\¾͜nnEplugin-fw/assets/css/jquery-ui/images/ui-bg_glass_95_fef1ec_1x400.pngnu�[����PNG


IHDR��:��5IDATx���Pᙽ�m#���	���x�[��Ru���\�h�'<u�ߪn��!N|IEND�B`�PK`x1\���YYEplugin-fw/assets/css/jquery-ui/images/ui-bg_glass_75_dadada_1x400.pngnu�[����PNG


IHDR�J3U IDAT8�cx��0
�ČP��Lp>�h��A	�F�(IEND�B`�PK`x1\�qNL��Aplugin-fw/assets/css/jquery-ui/images/ui-icons_454545_256x240.pngnu�[����PNG


IHDR��IJ�PLTEGpLBBBCCCDDDCCCCCCBBBCCCBBBCCCBBBBBBCCCCCCCCCCCCCCCBBBDDDAAABBBCCCCCCDDDCCCCCCCCCAAABBBCCCBBBAAABBBBBBBBBCCCCCCBBBBBBCCCBBBBBBCCCBBBBBBBBBCCCCCCBBBAAACCCBBBCCCCCCBBBCCCBBBBBBCCCCCCBBBCCCBBBBBBCCC:::BBBBBBDDDBBBDDDBBBEEE???CCCCCCCCCCCCCCCCCCCCCCCCCCCBBBCCCCCCCCCBBBBBBBBBCCC�_\f[tRNSX�G|"2���wf�����ZNz�@e�S�F��caM�hm�s�}�����䁎]����������b�p�
Ιi�8*�yѧȓ�د�͐���ǫ��e�
IDATx����6�a�7��s#@�-l	����Y�xZ�-v�����c~x�n�y��*f6߸��u��h1��-���b�Ҁ��T3=��H����B�S���&F�Z��`L!����
(�
����_�L�~�S`
f6�E�p8���G�	ν^�~`JC���P�?�=|�VK��4 >���i���cZ�~��^q�S��~&XX���U<�
O1lS�mt�W�}�\]�˜����p8��k���}o������PN�z���,C�t����P���9�PK9���
�)���vY1 e�w��k� �����	������XO�\��D{�fq��+��}A�S�C]�^ĭ�J���p8�Y/����Q4��7<W�
(Q��Z��Y��RŴ
��F70G��ǡh �^��]k+����GHs�ڿ��m;��"�� l�a�<b] �8AT��G~ʈ�[�a��<c@�2�˨���y	�!V��y����񕛘l �))n�m��M0���_��s�啨�������p8�+��,3��VG���!�0���5OO���Z6L���8��bׯ�E�7�������-��6�����ʌY��2���)�Rm���ne��{�#+����W
��j�i@�G�Y��a���P�����E�yf���_����yϹ-���p8<�����\���7���L�S�������u,�ﱱ��d����%���(�ӽ�`���l3��׀=�g��ǽPږw�Sl�ߏ
q	�}d<��t����2�O���F���{@���@���Swm����x���W{�ݶ�E��=�1d�`L��J��{�L]���ccp�4>ږf�n�{���!�$U&��d2��y�X�D	K�� J�%�+���>X�~UP�M���G�n%py�Y!��q]���@i�����m<+�N��w6h�&:ꢢ(����d�F��c�@]�n�	d�	 J�b	�B����C��b
!���B�d2J+��:��"2pk��~�$��D?$��=�N�z��N�>��0�t;�p<t8�=�(��K�0.�(�l\���8�A��x�E�O�/�����D��c���/?�X:��� ��x0@��iz`<.��Hq�QW�^e��A�Ԕ=� �Sj�Qs�S���
�g��"�~\�c���tϬa������
ՠ��������P��t������
�rE��?^�I8%P�yMV�,P��2`��%�A-��?s���뀝N�0F�<G��r��^vo'��j��^�8��'�sD�C&��d�^�8pJ��׆x!h	��#֌����VoyS���Nԥi��~���pV����F��}j�Q����蹟��j�@j��8p��4��K�h�m��&�}:�����1q�*���d����ׄTBU����$r5�4��>�q*iM0<�'�[Ѻ^��ƛO^-��)�u���ۋ�w���s�**{�KP�
w��=4�74n-�<+��TH�s̻<O\?^w������gBD��M4t��k@����CV|��tj��{��u�SO/>L�����\�������k<�+��
�,x:����ݽS�(OQj
ԩ<L�f&��?}��ᣟ}��1��yT�b�)�a���Zohþd@rNB	��y!@J�$����e�:�8�b$��x#�q��YF�A��b�~{`���u(f�7Q��4pq��e-�\+�A�J�!u�~�5��$��d2%�
����n�RT�п�1�4��g�&�_}���|����<������%J�vB��w��aY~�I�K
�*���L3{5>%8�.���Tj�͍�;E�/�a:�{���s��P��
{h��3`�5@\���?|����n�Q*��##��m:&�3��F��xA���2�d�f~@�8��~G7�/�Տ����OD���*�ш�U�����(�3�؊R$������ǀ�9Z���umg}N�8N�4�;J������7�o�9��a&
���k��X�VLo�i��'''�:���O�t�%ǀ�|���o�rH��1 ��&���)�
�TfǜE	 �4�<��{n�i 9�~>�3'}�Y�%��V��h�akԢvm�?�)G�A���@��9J{�xI�K���� ��qr�e�{����p�����v��w8�q�4���Ir_:;��''�C&�ɔe$7��.?��
�†_tQx�����0Qį@-C�}1`r�p���������"j�ĽP��v&~Y��@"��+A�~��܌�����GA:8Gh�1���
ԡ�D9��5��~�,0���l���Ԋ�W]4/ԟ�uZ�BRA00x&�	^�-8���!Կ�8� X8G��F�
��
��{�;��7��`�q���, ��1 j��A��g0g�s������3�L&�95V	ú�/$�ϥK�~�0�q<.^���7���>Z/�����Vױ*j
��x��Ǫ<�@@��
��y�6%��lTv�8���)UqZ��=���1����Y���Y _d2�L&C���S����-�3w��g(��q
T��Pɀ}����e���/1S�b���;�=��U�Z��-���8E�R���⃍����[����9<gZr�׆����8�x�`<`����|�,<�Ϙ0�����0.������w�{�!������ii8��`���
U��k���J�3�s�H&��d����<D������ؿ���1���l�������탔;�������!��]�
p#8XWb~ؾٟ��;")v��V���Z��_��-˧�[G�/a�D��������gH8ץ��E���/o�z<�|���4R�
 �3]��;t�\���K�izh���m[:�Ǚ��G�	��҃Z;�HRXWb~b��u���p�Ә�����_������R�n��O&��d2����(����q�@A������ۀ�D�#r�1 �2�L&��\X�~�^����~a��`@������g0�t�E]?�c�t��\�����t@���rH�Q�B����7�_�8���9��IEND�B`�PK`x1\v����Aplugin-fw/assets/css/jquery-ui/images/ui-icons_2e83ff_256x240.pngnu�[����PNG


IHDR��IJ�PLTEGpL-��.��.��-��.��.��.��.��-��-��-��.��-��-��.��.��-��-��.��.��.��.��.��-��.��/��.��.��'��.��-��.��.��.��-��.��.��.��.��-��.��.��.��-��-��-��-��.��-��.��.��,��/��-�.��.��.��.��-��-��-��-��-��.��.��.��.�.��-�-��.��.��-��-��.��0��.��.��.��-��.��-��-��-��-��-��.��.��-��.��wx��ZtRNSw��2��XG|�Z�f����Ȉ���cp�@ys
S�m�㲼h}��Mثz�8���]�aF"��b����N��i�e�ݭ�*�Dž��������ֹkL5
IDATx^�[n�0D�G���!(�+��p�8=�=�D�i=�~�5�E}x��\�������1��
���/���JQȿC��-@AY�A�vw6��%p�1�]��i]���Z@��Xl��X!U�K���
6�Bi��Y��Кf!4��`�+���B�ky�� ���Z	�֟*��6�w�@z�������!ǟ#6�zE=
��Y�
~��l�+��\�Dq����0�,0��`��b�T�<5�D��/�hA�M���&�s� v����ņ��HD�
�&s�q�l��b{w�(�f�
��jP��$�%;}�1�=��!����� �E�炶�~0k�s�y���`0xĿ����~1s����-�Ё�b9�~�D5*�Jh|�y��-@L�\�,B5.VT��ݾ̢�G��؝E�$�+T���=Yl
@�P��/ӀN	v,�^ {�i���<D����>"�5�� ���W&J�`zGaа$;Q�e:�%P�m`go���`..���Č=�!�C�C��@��jl6H��8a0�0@�I˥���͉n$��M��M5���q�@�~�"��(pR4��Z�Yuc��<P�r����������<p�T@������'@��1�L���$��םȨЬs��`0�-�~^�5�-��FG>g�j�pXԼګ�V���֒�`9?���I�Jf�r���?8��	��7@so�-��^��@G��ް�f�>��W��h��
����}��^;s|qh����{�i��D�\�ۭ��8q�����`��	w�H���$�8���@V�݉��d�t'�O����`Y�:.���^�)	�$�{�㩔S�xm�����#*`X���P@�E�Z��+�L��'Jp��H����EQa;*� $�#9�-�e�|�����g�9YM�H?��2a@�+.wP�;%
d`	����@��F/+�D����/���t:J�X��P�������NHU�"�eXjD��g�,�/�)��ݻ�tMRێ8��z@@�F�;�,��A�D5�ђ/��ǝ�}�>%����\S������{�?K`�Q������$�*��Hx���x��F�6�����8E|*���{@�
 ���Xܿ�d�AU
�p���?��3~Ȳ'd� /;�f~!�ȣ*�g�[P�k����T�A�'�����3�e��@FC��`��̿����<=�6h�2��eӦWZ�ю8K����:7��M@�gD�kCGGGGdzgjŁS�@�x�>�5T�P5���^�x6�XK��Sja3��ei��%0́���&:=�=�uզ�?���	��<�e��i���X١��Hp�ʉ�K�xu8��Yl����fA�0����2CdBY��Y>3-�P��7�3݃��TQ:�:�<�\�i=u���W��?��6
�z��m� �E���Εg����wv��h�>�!�%es�O��
@	��������������
0�P[���� �فA�Z2�D��=H����l���y��3�O�ZlY�>�`��i7��8Š�Y�N-]���(Rx"���L�ɏw�w��^�4�6э�0˃�%�c��"���P0�v���R=���
���ޭ��ͯ{R�뛫K\�(�G�D	3��< ��ަ��r���Ƿ�g��'I�
�&��}"���\tttttT`}����;&@�O2�L-:7���1�������޳���IO^�9��$�[T4T��wT���êz$?%��L���X�x6>Yi~q��Q�L%�����T�߆��W���:[�1/�Z@���߰,�o��s�o�H%�J��� �X:d�k,����`��nj�d,Iٍ�3����.tD]�#�p����� ��J@u2��|�e��j�X��T		Rb�=��{�{�W�pK6�
�g��1p�K펀�����y�b�bΑx�Xn/��~�A��f��JG��h6���ɂO�'{�|>�&����d���l	�p2�`b�LJa	 ��ڞ<a�o7�H�����s�$o�ۿ�X�B!�^�S�p��b{4g��,I����4��y����j�+ �/��Q
�=� ���{���:�<�p��,�<t����x��v����*7�x������J�M�ۺ.<xڈ�����(Qh[L���[��;�;�*��H<َ�f�%�cvZҪ0H���h_�i���CӉ��;��� �0���м�����ҕ`�����ӟ1���"@S�<r�1��%C.)��Fx��)^;������-T���`�K��~P)
+�����!nz7M�L6A8��m�. ��1�Ɗn��=��)�R�`�[�����6tttttt�r�0,Z�!�}<���]A����(����z+�;=(�x[@�PKQhW�E`�@�؇�^x@�����i��6�%��4R�A��D�qZ"�l`�Mre{�����]���q����Ƹ?�7�8��5��P�)0�Yq2E�����ʘ?�7b�2$N��՟C_@��7�Y	�x�!N�0#�,�g��Fϖ��MꜜZ_D<G�8«!+a�8L08�?���>�����X�q����eX_�_J�;}RJ*�]T1���n���ѣ��EAh]U���Lב�����~@��Q�O�v�����L�2��i����`ō
t���:��.t��j
�aO��F����&�J�7�#��bM�TR0k@�ހxq4KLK{{��� �k��q�HǯH��?4]#�a�T$4{�^dH���P���x�#�M�k�[���D�ׄ��i�ؼ�����e�j׆�t�6�^!-���l�55���5��d�"�J�'��bM۸m�[�m,��t+�����ۍng�SY��Nt;԰u}i ?�
��
����4�=����t@H�M���@w��ttttttt��e�V��_����?9�>	�W��o�/g�_n�X�E���=�/	��c��C���~��_��@�����K��}�{���/s�QCh̬IEND�B`�PK`x1\lk�-�=�="plugin-fw/assets/css/metaboxes.cssnu�[���/* self-clear floats */
.clearfix:after {
    content    : ".";
    display    : block;
    height     : 0;
    clear      : both;
    visibility : hidden;
    overflow   : hidden;
}

/* ie.css */
* html .clearfix { /* IE6 */
    height : 1%;
}

*:first-child + html .clearfix { /* IE7 */
    min-height : 1%;
}

.clearboth {
    clear : both
}

/* === TAB STYLE */
.metaboxes-tab {
    margin : -6px -12px -8px;
}

.metaboxes-tab div.tabs-panel {
    height     : auto;
    overflow   : visible;
    margin-top : 0px;
    padding    : 0 10px;
    background : none;
    border     : 0;
}

.metaboxes-tab ul.metaboxes-tabs {
    background : #f1f1f1;
    margin     : 0;
    padding    : 10px 0 0 5px;
}

.metaboxes-tab ul.metaboxes-tabs li {
    float      : left;
    background : #dedede;
    margin     : 0 0 0 5px;
}

.metaboxes-tab ul.metaboxes-tabs li a {
    color           : #555;
    text-decoration : none;
    padding         : 8px 15px;
    display         : block;
    box-shadow      : none !important;
}

.metaboxes-tab ul.metaboxes-tabs li.tabs {
    background : #fff;
}

.metaboxes-tab p.field-row {
    margin : 20px 0;
}

.metaboxes-tab div.sep {
    height       : 1px;
    background   : #dfdfdf;
    clear        : both;
    margin-left  : -10px;
    margin-right : -10px;
}

.metaboxes-tab label {
    font-weight : bold;
    width       : 160px;
    float       : left;
    line-height : 23px;
    margin-left : -184px;
}

.metaboxes-tab label small {
    font-weight : normal;
    line-height : 15px;
    font-style  : italic;
    color       : #999;
    display     : block;
}

.metaboxes-tab .yith-plugin-fw-radio__row {
    width      : 100%;
    min-height : 20px;
}

.metaboxes-tab .yith-plugin-fw-radio__row label,
.metaboxes-tab .yith-toggle-elements label,
.metaboxes-tab .yith-add-box label {
    margin-left : 0;
    font-weight : normal;
}

.metaboxes-tab.yith-plugin-ui h3 {
    color          : #2a8db0;
    font-size      : 15px;
    text-transform : uppercase;
    padding        : 5px 20px;
    margin         : 0 0 0 -4px;
    width          : auto;
    background     : transparent;
}

.metaboxes-tab.yith-plugin-ui .yith-add-box,
.metaboxes-tab.yith-plugin-ui .yith-toggle-row {
    width : auto;
}

.metaboxes-tab .wp-picker-container label {
    font-weight : inherit;
    width       : auto;
    float       : none;
    line-height : inherit;
    margin-left : 0;
}

.metaboxes-tab.yith-plugin-ui .yith-plugin-fw-radio__row label {
    width       : auto !important;
    display     : inline-block;
    font-weight : normal;
    float       : none;
}

.metaboxes-tab input[type="checkbox"] {
    vertical-align : middle
}

.metaboxes-tab input.button-secondary, .metaboxes-tab input.checkbox {
    width : auto;
}

.metaboxes-tab p.field-row.textarea .description {
    vertical-align : top;
}

.metaboxes-tab p.field-row.checkbox {
    background : none;
}

.metaboxes-tab .the-metabox {
    margin      : 20px 0;
    margin-left : 184px;
}

.metaboxes-tab .the-metabox.no-label {
    margin      : 20px 0;
    margin-left : 0;
}

.metaboxes-tab hr {
    height       : 0px;
    border-top   : 1px solid #dadada;
    width        : auto;
    margin-left  : -10px;
    margin-right : -10px;
}

.metaboxes-tab .the-metabox p {
    margin : 0;
}

.metaboxes-tab .the-metabox:last-child {
    border-bottom : 0px;
}

.metaboxes-tab .the-metabox.checkbox {
    background : none;
}

.metaboxes-tab span.description.inline {
    display     : inline-block;
    line-height : 23px;
    width       : auto;
    margin      : 0;
}

.metaboxes-tab .slider label {
    padding : 15px 0;
}

.metaboxes-tab.yith-plugin-ui ul.metaboxes-tabs {
    background    : transparent;
    border-bottom : 1px solid #d8d8d8;
    padding       : 10px 0 0 0;
    margin        : 0 10px
}


.metaboxes-tab.yith-plugin-ui ul.metaboxes-tabs li {
    background   : #fff;
    border-top   : 1px solid #d8d8d8;
    border-left  : 1px solid #d8d8d8;
    border-right : 1px solid #d8d8d8;
    margin       : 0 0 -1px -1px;
}

.metaboxes-tab.yith-plugin-ui ul.metaboxes-tabs li.tabs {
    border-bottom : 1px solid #fff;
}

.metaboxes-tab.yith-plugin-ui ul.metaboxes-tabs li a {
    color          : #336374;
    padding        : 10px 18px;
    text-transform : uppercase;
    font-weight    : 600;
    display        : inline-block;
}

.metaboxes-tab.yith-plugin-ui ul.metaboxes-tabs li.tabs a {
    color : #2a8db0;
}

/* sortable table posts */

#the-list.ui-sortable tr:hover {
    cursor : move;
}

.the-metabox.preview {
    float : none;
}

.metaboxes-tab .the-metabox.no-label.preview {
    margin-left : 184px;
}

.metaboxes-tab .the-metabox.no-label.preview img {
    box-shadow : 0 1px 8px rgba(0, 0, 0, 0.2);
}

/**************************************
                FIELDS
***************************************/

.metaboxes-tab select,
.metaboxes-tab input[type=text],
.metaboxes-tab input[type=number],
.metaboxes-tab textarea,
.metaboxes-tab .yith-plugin-fw-select,
.metaboxes-tab .yith-plugin-fw-slider-container,
.metaboxes-tab .yith-plugin-fw-text-input,
.metaboxes-tab .yith-plugin-fw-text-array-table,
.metaboxes-tab .yith-plugin-fw-textarea {
    width     : 400px;
    max-width : 100%;
}

.metaboxes-tab.yith-plugin-ui input[type=number] {
    width     : 70px;
    min-width : 70px;
}

.metaboxes-tab.yith-plugin-ui p {
    font-size : 14px;
}

.metaboxes-tab.yith-plugin-ui p.section-description {

    margin : 0 20px 40px 18px;
}

.metaboxes-tab .yith-plugin-fw-text-array-table input[type=text] {
    width : 100%;
}

.metaboxes-tab.yith-plugin-ui .yith-add-box h3 {
    padding     : 0 0 30px 0;
    font-weight : 600;
    margin      : 0;
}

.metaboxes-tab.yith-plugin-ui .select2-container--default .select2-selection--single {
    border : 0;
    margin : 0;
}

/* wp editor */
.the-metabox.textarea-editor .mceIframeContainer {
    background : #fff;
}


.the-metabox.textarea-editor label {
    margin-top : 24px;
}

/* categories */
.categories-panel {
    width        : 30%;
    float        : left;
    margin-right : 4px;
}

.categories-panel .box {
    height     : 200px;
    border     : 1px solid #dfdfdf;
    background : #fff;
    padding    : 6px 10px;
    overflow   : auto;
}

.categories-panel ul {
    list-style : none;
    margin     : 0;
}

.categories-panel ul li {
    line-height : 19px;
    margin      : 0;
    padding     : 0;
    word-wrap   : break-word;
}

.categories-panel ul li label {
    font-weight : normal !important;
    margin-left : 0 !important;
}

.categories-panel input.newcategory {
    width         : 100%;
    margin-bottom : 3px;
}

/* contact form */
.contactform_item {
    border-style     : solid;
    border-width     : 1px;
    line-height      : 1;
    margin-bottom    : 20px;
    padding          : 0;
    background-color : #f5f5f5;
    background-image : -moz-linear-gradient(center top, #f9f9f9, #f5f5f5);
    border-color     : #dfdfdf;
    border-radius    : 3px 3px 3px 3px;
    box-shadow       : 0 1px 0 #fff inset;
    min-width        : 255px;
    position         : relative;
}

.contactform_item .handlediv {
    position : relative;
    top      : -4px;
}

.contactform_item h3 {
    min-height : 21px;
    margin     : 13px;
}

.contactform_item .inside {
    padding : 10px !important;
}

.contactform_item .deps {
    display : none;
}

.contactform_item .addoptions p.option {
    margin : 5px 0 5px 200px
}

.contactform_item .addoptions p label {
    width : 80px !important;
}

.contactform_item .add-field-option {
    margin-bottom : 10px !important;
}

.remove_item {
    float : right;
}

.metabox-sortable-placeholder {
    border : 1px dotted #dedede;
    margin : 10px 0
}

/* features tab */
.featurestab_item {
    border-style     : solid;
    border-width     : 1px;
    line-height      : 1;
    margin-bottom    : 20px;
    padding          : 0;
    background-color : #f5f5f5;
    background-image : -moz-linear-gradient(center top, #f9f9f9, #f5f5f5);
    border-color     : #dfdfdf;
    border-radius    : 3px 3px 3px 3px;
    box-shadow       : 0 1px 0 #fff inset;
    min-width        : 255px;
    position         : relative;
}

.featurestab_item .handlediv {
    position : relative;
    top      : -4px;
}

.featurestab_item h3 {
    min-height : 21px
}

.featurestab_item .inside {
    padding : 10px !important;
}

.featurestab_item .deps {
    display : none;
}

.featurestab_item .addoptions p.option {
    margin : 5px 0 5px 200px
}

.featurestab_item .addoptions p label {
    width : 80px !important;
}

.featurestab_item .add-field-option {
    margin-bottom : 10px !important;
}

.messages-panel.updated {
    margin             : 10px 0px 10px !important;
    max-width          : 1200px;
    border-radius      : 5px;
    -webkit-box-sizing : border-box;
    box-sizing         : border-box;
}

.ui-widget-overlay {
    background-image : none !important;
}

.the-metabox .icon_type {
    width        : 30%;
    float        : left;
    margin-right : 40px
}

#post-type-settings .category-list label {
    width : 187px;
}

.remove_cat {
    float           : right;
    text-align      : center;
    display         : block;
    width           : 20px;
    height          : 20px;
    border-radius   : 20px;
    font-weight     : bold;
    font-size       : 10px;
    background      : #efefef;
    text-decoration : none;
}

/* typography */
.the-metabox.typography .select_wrapper.font-family {
    width : 200px;
}

.the-metabox.typography .spinner_container {
    float        : left;
    margin-right : 10px;
}

.the-metabox.typography .spinner_container input.number {
    width                              : 50px !important;
    -webkit-border-top-right-radius    : 0px;
    -webkit-border-bottom-right-radius : 0px;
    -moz-border-radius-topright        : 0px;
    -moz-border-radius-bottomright     : 0px;
    border-top-right-radius            : 0px;
    border-bottom-right-radius         : 0px;
}

/* number */
.the-metabox.number input.number {
    width : 50px !important;
}

/* number */
.rm_number .number {
    width                              : 70px;
    text-align                         : right;
    -webkit-border-top-right-radius    : 0px;
    -webkit-border-bottom-right-radius : 0px;
    -moz-border-radius-topright        : 0px;
    -moz-border-radius-bottomright     : 0px;
    border-top-right-radius            : 0px;
    border-bottom-right-radius         : 0px;
}

.spinner-wrapper {
    position : relative;
    height   : 23px;
    overflow : hidden;
}

.spinner-wrapper input.number {
    float : left;
}

.spinner-wrapper .spinner-button {
    cursor      : pointer;
    float       : left;
    position    : absolute;
    left        : 69px;
    width       : 15px;
    height      : 12px;
    border      : 1px solid #dfdfdf;
    background  : #fff;
    margin      : 0;
    padding     : 0;
    line-height : 9999px;
    overflow    : hidden;
    background  : url('../images/spinner.png') no-repeat center -11px
}

.spinner-wrapper .spinner-button.button-plus {
    top                             : 0;
    -webkit-border-top-right-radius : 3px !important;
    -moz-border-radius-topright     : 3px !important;
    border-top-right-radius         : 3px !important;
}

.spinner-wrapper .spinner-button.button-minus {
    bottom                             : 0;
    background-position                : center -30px;
    -webkit-border-bottom-right-radius : 3px !important;
    -moz-border-radius-bottomright     : 3px !important;
    border-bottom-right-radius         : 3px !important;
}

.spinner-wrapper .spinner-button.button-plus:active {
    background-position : center 0px;
}

.spinner-wrapper .spinner-button.button-minus:active {
    background-position : center -20px;
}

.rm_typography .spinner_container {
    float        : left;
    margin-right : 10px;
}

.rm_typography .spinner-wrapper {
    height : 28px;
}

.rm_typography .spinner-wrapper input.number {
    height : 28px;
}

.rm_typography .spinner-wrapper .spinner-button.button-plus {
    height              : 15px;
    background-position : center -10px;
}

.rm_typography .spinner-wrapper .spinner-button.button-minus {
    height : 14px;
}

.the-metabox .spinner-wrapper .spinner-button {
    left : 49px;
}

.the-metabox.typography .spinner-wrapper .spinner-button {
    left : 35px;
}

/* images */
.the-metabox.images, .the-metabox.images label {
    margin-left : 0;
    display     : block;
}

.the-metabox.images .slides-wrapper {
    clear : both;
}

.the-metabox.images .slides-wrapper li {
    position : relative;
}

.the-metabox.images a.delete {
    display         : block;
    margin-left     : 4px;
    text-decoration : none;
    font-weight     : bold;
    color           : red;
    position        : absolute;
    top             : 0;
    right           : 0;
    width           : 10px;
    height          : 18px;
    z-index         : 10;
    cursor          : pointer !important;
}

/* wp editor */
.wp_themeSkin iframe {
    background : #fff !important;
}

/* custom tabs */
.customtab_item {
    border-style     : solid;
    border-width     : 1px;
    line-height      : 1;
    margin-bottom    : 20px;
    padding          : 0;
    background-color : #f5f5f5;
    background-image : -moz-linear-gradient(center top, #f9f9f9, #f5f5f5);
    border-color     : #dfdfdf;
    border-radius    : 3px 3px 3px 3px;
    box-shadow       : 0 1px 0 #fff inset;
    min-width        : 255px;
    position         : relative;
}

.customtab_item .handlediv {
    position : relative;
    top      : -4px;
}

.customtab_item h3 {
    min-height : 21px
}

.customtab_item .inside {
    padding : 10px !important;
}

.customtab_item .deps {
    display : none;
}

.customtab_item .addoptions p.option {
    margin : 5px 0 5px 200px
}

.customtab_item .addoptions p label {
    width : 80px !important;
}

.customtab_item .add-field-option {
    margin-bottom : 10px !important;
}

.customtab_item .remove_item {
    float : right;
}

.metabox-sortable-placeholder {
    border : 1px dotted #dedede;
    margin : 10px 0
}

.the-metabox.customtabs {
    margin-left : 0;
}

#customtab_item_sample {
    display : none;
}

.the-metabox.customtabs .field-row {
    margin-bottom : 10px;
}

#yit_custom_tabs label {
    font-weight : normal;
    width       : auto;
    float       : none;
    line-height : auto;
    margin-left : 0;
}

.wp-admin p label input[type=radio] {
    width        : 16px;
    margin-right : 10px;
    margin-top   : 3px;
}

.wp-admin .form-field._preset_onsale_icon_field label input[type=radio] {
    margin-top : 0;
}

.the-metabox .spinner {
    margin-top : 5px;
    float      : none;
}

/*sidebars*/
#choose-sidebars.choose {
    margin-left : 0px;
}

#_active_page_options-container label, #_active_page_options-container p {
    display : inline-block;
    margin  : 0px;
}

#_active_page_options-container label {
    margin-right : 10px;
    margin-top   : 3px;
}

#_active_page_options-container {
    float        : right;
    margin-right : 20px;
    margin-top   : 5px;
    z-index      : 9999 !important;
    position     : absolute;
    right        : 0;
}

/*-----------------------
* Colorpicker - fix issues in combination with third-party themes or plugin (Basel, VC Addons, ...)
*/
.metaboxes-tab .the-metabox.colorpicker {
    display     : block;
    width       : auto;
    height      : auto;
    overflow    : visible;
    top         : auto;
    left        : auto;
    background  : transparent;
    position    : static;
    z-index     : 1;
    font-family : inherit;
}

.the-metabox.checkbox.checkboxgroup-start.clearfix {
    margin : 40px 0 0 264px;
}

.the-metabox.checkbox.checkboxgroup.clearfix {
    margin : 0 0 0 264px;
}PK`x1\�΢��.plugin-fw/assets/css/codemirror/codemirror.cssnu�[���/* BASICS */

.CodeMirror {
  /* Set height, width, borders, and global font properties here */
  font-family: monospace;
  height: 400px;
  clear: both;
  padding: 0;
}
.CodeMirror-scroll {
  /* Set scrolling behaviour here */
  overflow: auto;
}

/* PADDING */

.CodeMirror-lines {
  padding: 4px 0; /* Vertical padding around content */
}
.CodeMirror pre {
  padding: 0 4px; /* Horizontal padding of content */
}

.CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {
  background-color: white; /* The little square between H and V scrollbars */
}

/* GUTTER */

.CodeMirror-gutters {
  border-right: 1px solid #ddd;
  background-color: #f7f7f7;
  white-space: nowrap;
}
.CodeMirror-linenumbers {}
.CodeMirror-linenumber {
  padding: 0 3px 0 5px;
  min-width: 20px;
  text-align: right;
  color: #999;
}

/* CURSOR */

.CodeMirror div.CodeMirror-cursor {
  border-left: 1px solid black;
  z-index: 3;
}
/* Shown when moving in bi-directional text */
.CodeMirror div.CodeMirror-secondarycursor {
  border-left: 1px solid silver;
}
.CodeMirror.cm-keymap-fat-cursor div.CodeMirror-cursor {
  width: auto;
  border: 0;
  background: #7e7;
  z-index: 1;
}
/* Can style cursor different in overwrite (non-insert) mode */
.CodeMirror div.CodeMirror-cursor.CodeMirror-overwrite {}

.cm-tab { display: inline-block; }

/* DEFAULT THEME */

.cm-s-default .cm-keyword {color: #708;}
.cm-s-default .cm-atom {color: #219;}
.cm-s-default .cm-number {color: #164;}
.cm-s-default .cm-def {color: #00f;}
.cm-s-default .cm-variable {color: black;}
.cm-s-default .cm-variable-2 {color: #05a;}
.cm-s-default .cm-variable-3 {color: #085;}
.cm-s-default .cm-property {color: black;}
.cm-s-default .cm-operator {color: black;}
.cm-s-default .cm-comment {color: #a50;}
.cm-s-default .cm-string {color: #a11;}
.cm-s-default .cm-string-2 {color: #f50;}
.cm-s-default .cm-meta {color: #555;}
.cm-s-default .cm-error {color: #f00;}
.cm-s-default .cm-qualifier {color: #555;}
.cm-s-default .cm-builtin {color: #30a;}
.cm-s-default .cm-bracket {color: #997;}
.cm-s-default .cm-tag {color: #170;}
.cm-s-default .cm-attribute {color: #00c;}
.cm-s-default .cm-header {color: blue;}
.cm-s-default .cm-quote {color: #090;}
.cm-s-default .cm-hr {color: #999;}
.cm-s-default .cm-link {color: #00c;}

.cm-negative {color: #d44;}
.cm-positive {color: #292;}
.cm-header, .cm-strong {font-weight: bold;}
.cm-em {font-style: italic;}
.cm-link {text-decoration: underline;}

.cm-invalidchar {color: #f00;}

div.CodeMirror span.CodeMirror-matchingbracket {color: #0f0;}
div.CodeMirror span.CodeMirror-nonmatchingbracket {color: #f22;}

/* STOP */

/* The rest of this file contains styles related to the mechanics of
   the editor. You probably shouldn't touch them. */

.CodeMirror {
  line-height: 1;
  position: relative;
  overflow: hidden;
  background: #fafafa;
  color: black;
}

.CodeMirror-scroll {
  /* 30px is the magic margin used to hide the element's real scrollbars */
  /* See overflow: hidden in .CodeMirror */
  margin-bottom: -30px; margin-right: -30px;
  padding-bottom: 30px; padding-right: 30px;
  height: 100%;
  outline: none; /* Prevent dragging from highlighting the element */
  position: relative;
}
.CodeMirror-sizer {
  position: relative;
}

/* The fake, visible scrollbars. Used to force redraw during scrolling
   before actuall scrolling happens, thus preventing shaking and
   flickering artifacts. */
.CodeMirror-vscrollbar, .CodeMirror-hscrollbar, .CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {
  position: absolute;
  z-index: 6;
  display: none;
}
.CodeMirror-vscrollbar {
  right: 0; top: 0;
  overflow-x: hidden;
  overflow-y: scroll;
}
.CodeMirror-hscrollbar {
  bottom: 0; left: 0;
  overflow-y: hidden;
  overflow-x: scroll;
}
.CodeMirror-scrollbar-filler {
  right: 0; bottom: 0;
}
.CodeMirror-gutter-filler {
  left: 0; bottom: 0;
}

.CodeMirror-gutters {
  position: absolute; left: 0; top: 0;
  padding-bottom: 30px;
  z-index: 3;
}
.CodeMirror-gutter {
  white-space: normal;
  height: 100%;
  padding-bottom: 30px;
  margin-bottom: -32px;
  display: inline-block;
  /* Hack to make IE7 behave */
  *zoom:1;
  *display:inline;
}
.CodeMirror-gutter-elt {
  position: absolute;
  cursor: default;
  z-index: 4;
}

.CodeMirror-lines {
  cursor: text;
}
.CodeMirror pre {
  /* Reset some styles that the rest of the page might have set */
  -moz-border-radius: 0; -webkit-border-radius: 0; border-radius: 0;
  border-width: 0;
  background: transparent;
  font-family: inherit;
  font-size: inherit;
  margin: 0;
  white-space: pre;
  word-wrap: normal;
  line-height: inherit;
  color: inherit;
  z-index: 2;
  position: relative;
  overflow: visible;
}
.CodeMirror-wrap pre {
  word-wrap: break-word;
  white-space: pre-wrap;
  word-break: normal;
}
.CodeMirror-code pre {
  border-right: 30px solid transparent;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.CodeMirror-wrap .CodeMirror-code pre {
  border-right: none;
  width: auto;
}
.CodeMirror-linebackground {
  position: absolute;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 0;
}

.CodeMirror-linewidget {
  position: relative;
  z-index: 2;
  overflow: auto;
}

.CodeMirror-widget {
}

.CodeMirror-wrap .CodeMirror-scroll {
  overflow-x: hidden;
}

.CodeMirror-measure {
  position: absolute;
  width: 100%; height: 0px;
  overflow: hidden;
  visibility: hidden;
}
.CodeMirror-measure pre { position: static; }

.CodeMirror div.CodeMirror-cursor {
  position: absolute;
  visibility: hidden;
  border-right: none;
  width: 0;
}
.CodeMirror-focused div.CodeMirror-cursor {
  visibility: visible;
}

.CodeMirror-selected { background: #d9d9d9; }
.CodeMirror-focused .CodeMirror-selected { background: #d7d4f0; }

.cm-searching {
  background: #ffa;
  background: rgba(255, 255, 0, .4);
}

/* IE7 hack to prevent it from returning funny offsetTops on the spans */
.CodeMirror span { *vertical-align: text-bottom; }

@media print {
  /* Hide the cursor when printing */
  .CodeMirror div.CodeMirror-cursor {
    visibility: hidden;
  }
}
PK`x1\0ѪG!!"plugin-fw/assets/css/elementor.cssnu�[���/**
 * Style for Elementor Editor customization
 */

.yith-plugin-fw-elementor-widget-description {
    margin-bottom : 10px;
    font-style    : italic;
}

.yith-plugin-fw-elementor-shortcode-widget--shortcode,
.yith-plugin-fw-elementor-shortcode-widget--empty-html {
    font-family   : -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    padding       : 1em 1em 1.2em;
    border        : 1px solid #1e1e1e;
    border-radius : 4px;
}

.yith-plugin-fw-elementor-shortcode-widget__title {
    font-size     : 15px;
    font-weight   : 700;
    margin-bottom : 10px;
}

.yith-plugin-fw-elementor-shortcode-widget__message {
    font-style : italic;
    font-size  : 13px;
}

.yith-plugin-fw-elementor-shortcode-widget--shortcode .yith-plugin-fw-elementor-shortcode-widget__content {
    font-family   : Menlo, Consolas, monaco, monospace;
    color         : #1e1e1e;
    font-size     : 13px;
    padding       : 0.8em 1em;
    border        : 1px solid #ddd;
    border-radius : 4px;
}PK`x1\�u��55+plugin-fw/assets/js/yith-system-info.min.jsnu�[���jQuery(function(e){e(document).on("click",".notice-dismiss",function(){if("yith-system-alert"===e(this).parent().attr("id")){document.cookie="hide_yith_system_alert=yes;path=/"}}),e(document).on("click",".yith-download-log",function(){var t=e(this).parent(),o={action:"yith_create_log_file",file:e(this).data("file")};t.addClass("progress"),e.post(yith_sysinfo.ajax_url,o,function(e){if(!1!==e.file){var o=document.createElement("a"),i=e.file.split("/").pop();o.href=e.file,o.download=i,document.body.appendChild(o),o.click(),window.URL.revokeObjectURL(e.file),o.remove()}t.removeClass("progress")})}),e(document).on("click",".copy-link",function(t){t.preventDefault();var o=e(this),i=e("<textarea>");e("body").append(i),i.val("define( 'WP_DEBUG', true );\ndefine( 'WP_DEBUG_LOG', true );\ndefine( 'WP_DEBUG_DISPLAY', false );").select(),document.execCommand("Copy"),i.remove(),o.find(".copied-tooltip").length||(o.append(e("<span/>",{"class":"copied-tooltip"}).html(o.data("tooltip")).fadeIn(300)),setTimeout(function(){o.find(".copied-tooltip").fadeOut().remove()},3e3))})});PK`x1\	�L	L	"plugin-fw/assets/js/metabox.min.jsnu�[���!function(e){e(".metaboxes-tab").each(function(){var t=e(this),a=t.find(".tabs-panel");a.hide();var i=wpCookies.get("active_metabox_tab");i=null==i?t.find("ul.metaboxes-tabs li:first-child a").attr("href"):"#"+i,t.find(i).show(),t.find(".metaboxes-tabs a").on("click",function(t){t.preventDefault();var i=e(this).parent();if(!i.hasClass("tabs")){var s=e(this).attr("href");i.addClass("tabs").siblings("li").removeClass("tabs"),a.hide(),e(s).show()}})});var t=e("#_active_page_options-container"),a=t.parent().html();function i(t,a,i,s){var n=!0;if("string"==typeof a){":radio"===a.substr(0,6)&&(a+=":checked");var d=e(a),o=d.attr("type"),r=d.val();switch(o){case"checkbox":r=d.is(":checked")?"yes":"no";break;case"radio":r=d.find('input[type="radio"]').filter(":checked").val()}i=i.split(",");for(var c=0;c<i.length;c++){if(r==i[c]){n=!0;break}n=!1}}var h,b=e(t),l=e(t+"-container").parent(),p=s.split("-");for(h in p){var f=p[h];if(n)switch(f){case"disable":l.removeClass("yith-disabled"),b.attr("disabled",!1);break;case"hide":case"hideNow":l.show();break;case"hideme":b.show();break;case"fadeOut":l.show();break;case"fadeInOut":case"fadeIn":default:l.show(500)}else switch(f){case"disable":l.addClass("yith-disabled"),b.attr("disabled",!0);break;case"hide":case"hideNow":l.hide();break;case"hideme":b.hide();break;case"fadeInOut":case"fadeOut":l.hide(500);break;case"fadeIn":default:l.hide()}}}t.parent().remove(),e(a).insertAfter("#yit-post-setting .handlediv"),e(a).insertAfter("#yit-page-setting .handlediv"),t.on("click",function(){e("#_active_page_options").is(":checked")?e("#yit-page-setting .inside .metaboxes-tab, #yit-post-setting .inside .metaboxes-tab").css({opacity:1,"pointer-events":"auto"}):e("#yit-page-setting .inside .metaboxes-tab, #yit-post-setting .inside .metaboxes-tab").css({opacity:.5,"pointer-events":"none"})}).trigger("click"),e(document.body).on("yith-plugin-fw-metabox-init-deps",function(){e(document.body).trigger("yith-plugin-fw-init-radio"),e(".metaboxes-tab [data-dep-target]:not(.yith-plugin-fw-metabox-deps-initialized)").each(function(){var t=e(this),a="#"+t.data("dep-target"),s="#"+t.data("dep-id"),n=t.data("dep-value"),d=t.data("dep-type");i(a,s,n.toString(),d),e(s).on("change",function(){i(a,s,n.toString(),d)}).change(),t.addClass("yith-plugin-fw-metabox-deps-initialized")})}).trigger("yith-plugin-fw-metabox-init-deps")}(jQuery);PK`x1\��_z�J�J&plugin-fw/assets/js/yith-fields.min.jsnu�[���!function(e){var t={selectors:{imgPreview:".yith-plugin-fw-upload-img-preview",uploadButton:".yith-plugin-fw-upload-button",imgUrl:".yith-plugin-fw-upload-img-url",resetButton:".yith-plugin-fw-upload-button-reset"},onImageChange:function(){var i=e(this).val(),n=new RegExp("(http|ftp|https)://[a-zA-Z0-9@?^=%&amp;:/~+#-_.]*.(gif|jpg|jpeg|png|ico|svg)"),a=e(this).parent().find(t.selectors.imgPreview).first();a.length<1&&(a=e(this).parent().parent().find(t.selectors.imgPreview).first()),n.test(i)?a.html('<img src="'+i+'" style="max-width:100px; max-height:100px;" />'):a.html("")},onButtonClick:function(i){i.preventDefault();var n,a=e(this).attr("id").replace(/-button$/,"").replace(/(\[|\])/g,"\\$1");if(n)n.open();else{var l=[new wp.media.controller.Library({library:wp.media.query(),multiple:!1,title:"Choose Image",priority:20,filterable:"uploaded"})];(n=wp.media.frames.downloadable_file=wp.media({title:"Choose Image",library:{type:""},button:{text:"Choose Image"},multiple:!1,states:l})).on("select",function(){var i=n.state().get("selection").first().toJSON(),l=e("#"+a+"-yith-attachment-id");e("#"+a).val(i.url),l.length&&l.val(i.id),t.triggerImageChange()}),n.open()}},onResetClick:function(){var i=e(this),n=i.attr("id").replace(/(\[|\])/g,"\\$1"),a=i.attr("id").replace(/-button-reset$/,"").replace(/(\[|\])/g,"\\$1"),l=e("#"+n).data("default");e("#"+a).val(l),t.triggerImageChange()},triggerImageChange:function(){e(t.selectors.imgUrl).trigger("change")},initOnce:function(){"undefined"!=typeof wp&&"undefined"!=typeof wp.media&&(e(document).on("change",t.selectors.imgUrl,t.onImageChange),e(document).on("click",t.selectors.uploadButton,t.onButtonClick),e(document).on("click",t.selectors.resetButton,t.onResetClick))}};t.initOnce();var i={selectors:{gallery:".yith-plugin-fw-image-gallery",notInitGallery:".yith-plugin-fw-image-gallery:not(.yith-plugin-fw-image-gallery--initialized)",button:".yith-plugin-fw-image-gallery .image-gallery-button",slideWrapper:"ul.slides-wrapper"},initOnce:function(){"undefined"!=typeof wp&&"undefined"!=typeof wp.media&&e(document).on("click",i.selectors.button,function(t){var n=e(this),a=n.closest(i.selectors.gallery),l=a.find(".image_gallery_ids"),o=l.val(),s=a.find("ul.slides-wrapper"),r=wp.media.frames.image_gallery=wp.media({title:n.data("choose"),button:{text:n.data("update")},states:[new wp.media.controller.Library({title:n.data("choose"),filterable:"all",multiple:!0})]});r.on("select",function(){r.state().get("selection").map(function(e){if((e=e.toJSON()).id){o=o?o+","+e.id:e.id;var t=e.sizes.thumbnail||e.sizes.medium||e.sizes.large||e.sizes.full;s.append('<li class="image" data-attachment_id="'+e.id+'"><img src="'+t.url+'"/><ul class="actions"><li><a href="#" class="delete" title="'+n.data("delete")+'">x</a></li></ul></li>')}}),l.val(o),l.trigger("change")}),r.open()})},init:function(){"undefined"!=typeof wp&&"undefined"!=typeof wp.media&&e(i.selectors.notInitGallery).each(function(){e(this).addClass("yith-plugin-fw-image-gallery--initialized");var t=e(this).find(i.selectors.slideWrapper);t.each(function(){var t=e(this);t.sortable({items:"li.image",cursor:"move",scrollSensitivity:40,forcePlaceholderSize:!0,forceHelperSize:!1,helper:"clone",opacity:.65,start:function(e,t){t.item.css("background-color","#f6f6f6")},stop:function(e,t){t.item.removeAttr("style")},update:function(n,a){var l="";t.find("li.image").css("cursor","default").each(function(){var t=e(this).attr("data-attachment_id");l=l+t+","}),t.closest(i.selectors.gallery).find(".image_gallery_ids").val(l)}})}),t.on("click","a.delete",function(t){t.preventDefault();var n=e(this).closest(i.selectors.gallery),a=n.find("ul.slides-wrapper"),l=n.find(".image_gallery_ids"),o="";e(this).closest("li.image").remove(),a.find("li.image").css("cursor","default").each(function(){var t=e(this).attr("data-attachment_id");o=o+t+","}),l.val(o)})})}};i.initOnce(),e(function(){e(document).on("yith-plugin-fw-codemirror-init",function(){"undefined"!=typeof wp&&"undefined"!=typeof wp.codeEditor&&e(".codemirror:not(.codemirror--initialized)").each(function(){var t=e(this).data("settings"),i=wp.codeEditor.initialize(e(this),t);e(this).addClass("codemirror--initialized"),e(this).data("codemirrorInstance",i)})}).trigger("yith-plugin-fw-codemirror-init")});e(document).on("yith_fields_init",function(){var n=e(".yith-plugin-fw-datepicker:not(.yith-plugin-fw-datepicker--initialized)"),a=e(".yith-plugin-fw-colorpicker:not(.yith-plugin-fw-colorpicker--initialized)"),l=e(".yith-plugin-fw-sidebar-layout:not(.yith-plugin-fw-sidebar-layout--initialized)"),o=e(".yith-plugin-fw-slider-container:not(.yith-plugin-fw-slider-container--initialized)"),s=e(".yit-icons-manager-wrapper:not(.yit-icons-manager-wrapper--initialized)");n.each(function(){e(this).addClass("yith-plugin-fw-datepicker--initialized");var t=e(this),i=t.data(),n=t.next(".yith-icon-calendar");i.showAnim=!1,i.beforeShow=function(e,t){t.dpDiv.addClass("yith-plugin-fw-datepicker-div")},i.onClose=function(e,t){t.dpDiv.removeClass("yith-plugin-fw-datepicker-div")},t.datepicker(i),n&&n.on("click",function(){t.datepicker("show")})}),a.each(function(){e(this).addClass("yith-plugin-fw-colorpicker--initialized"),e(this).wpColorPicker({palettes:!1,width:200,mode:"hsl",clear:function(){var t=e(this);t.val(t.data("default-color")),t.trigger("change")}});var t=e(this).data("variations-label"),i=e(this).closest(".yith-plugin-fw-colorpicker-field-wrapper"),n=e(this).closest(".yith-single-colorpicker"),a=i.find(".wp-picker-input-wrap"),l=n.find(".wp-picker-input-wrap");if(a.length&&i.find("a.wp-color-result").attr("title",t),n.length&&n.find("a.wp-color-result").attr("title",t),!a.find(".wp-picker-default-custom").length){var o=e("<span/>").attr({"class":"wp-picker-default-custom"});a.find(".wp-picker-default").wrap(o)}l.find(".wp-picker-default-custom").length||(o=e("<span/>").attr({"class":"wp-picker-default-custom"}),l.find(".wp-picker-default").wrap(o))}),l.each(function(){e(this).addClass("yith-plugin-fw-sidebar-layout--initialized"),e(this).find("img").on("click",function(){var t=e(this).closest(".yith-plugin-fw-sidebar-layout"),i=t.find(".yith-plugin-fw-sidebar-layout-sidebar-left-container"),n=t.find(".yith-plugin-fw-sidebar-layout-sidebar-right-container"),a=e(this).data("type");if(e(this).parent().children(":radio").attr("checked",!1),e(this).prev(":radio").attr("checked",!0),void 0!==a)switch(a){case"left":i.show(),n.hide();break;case"right":n.show(),i.hide();break;case"double":i.show(),n.show();break;default:i.hide(),n.hide()}})}),o.each(function(){e(this).addClass("yith-plugin-fw-slider-container--initialized");var t=e(this).find(".ui-slider-horizontal"),i=t.data("val"),n=t.data("min"),a=t.data("max"),l=t.data("step"),o=t.data("labels");t.slider({value:i,min:n,max:a,range:"min",step:l,create:function(){e(this).find(".ui-slider-handle").text(e(this).slider("value"))},slide:function(t,i){e(this).find("input").val(i.value).trigger("change"),e(this).find(".ui-slider-handle").text(i.value),e(this).siblings(".feedback").find("strong").text(i.value+o)}})}),s.each(function(){e(this).addClass("yit-icons-manager-wrapper--initialized");var t=e(this),i=t.find(".yit-icons-manager-icon-preview").first(),n=t.find(".yit-icons-manager-icon-text");t.on("click",".yit-icons-manager-list li",function(a){var l=e(a.target).closest("li"),o=l.data("font"),s=l.data("icon"),r=l.data("key"),c=l.data("name");i.attr("data-font",o),i.attr("data-icon",s),i.attr("data-key",r),i.attr("data-name",c),n.val(o+":"+c),t.find(".yit-icons-manager-list li").removeClass("active"),l.addClass("active")}),t.on("click",".yit-icons-manager-action-set-default",function(){t.find(".yit-icons-manager-list li.default").trigger("click")})}),e(document).find(".ui-sortable .yith-toggle-elements").sortable({cursor:"move",axis:"y",scrollSensitivity:40,forcePlaceholderSize:!0,helper:"clone",stop:function(t,i){var n=jQuery(".ui-sortable-handle"),a=0,l=new Array;for(a=0;a<n.length;a++)l[a]=e(n[a]).data("item_key");l.length>0&&e(this).closest(".toggle-element").saveToggleElement(null,l)}}),e(document.body).trigger("wc-enhanced-select-init"),e(document.body).trigger("yith-framework-enhanced-select-init"),e(document).trigger("yith-plugin-fw-codemirror-init"),t.triggerImageChange(),i.init()}).trigger("yith_fields_init"),e(document).on("click",".yith-plugin-fw-select-images__item",function(){var t=e(this),i=t.data("key"),n=t.closest(".yith-plugin-fw-select-images__wrapper"),a=n.find(".yith-plugin-fw-select-images__item"),l=n.find("select").first();l.length&&(l.val(i).trigger("yith_select_images_value_changed").trigger("change"),a.removeClass("yith-plugin-fw-select-images__item--selected"),t.addClass("yith-plugin-fw-select-images__item--selected"))}),e(document).on("click",".yith-plugin-fw-select-all",function(){e("#"+e(this).data("select-id")).find("option").prop("selected",!0).trigger("change")}),e(document).on("click",".yith-plugin-fw-deselect-all",function(){e("#"+e(this).data("select-id")).find("option").prop("selected",!1).trigger("change")}),e(document).on("click",".yith-plugin-fw-onoff-container span",function(){var t=e(this).prev("input");t.prop("disabled")||t.trigger("click")}),e(document).on("click",".yith-plugin-fw-onoff-container input",function(t){e(this).is(":checked")?e(this).attr("value","yes").addClass("onoffchecked"):e(this).attr("value","no").removeClass("onoffchecked")}),e.fn.saveToggleElement=function(t,i){var n=e(this),a="yith_plugin_fw_save_toggle_element",l=n.serializeToggleElement(),o=n.find(".yith-toggle_wrapper"),s=o.attr("id"),r=e.urlParam("tab");l.append("security",o.data("nonce")),void 0!==i&&i.length>0&&l.append("yith_toggle_elements_order_keys",i),n.closest(".metaboxes-tab.yith-plugin-ui").length?(a="yith_plugin_fw_save_toggle_element_metabox",post_id=e(this).closest("form#post").find("#post_ID").val(),yit_metaboxes_nonce=e(this).closest("form#post").find("#yit_metaboxes_nonce").val(),metabox_tab=e(this).closest(".tabs-panel").attr("id"),url=yith_framework_fw_fields.ajax_url+"?action="+a+"&post_ID="+post_id+"&yit_metaboxes_nonce="+yit_metaboxes_nonce+"&toggle_id="+s+"&metabox_tab="+metabox_tab):url=yith_framework_fw_fields.admin_url+"?action="+a+"&tab="+r+"&toggle_id="+s,e.ajax({type:"POST",url:url,data:l,contentType:!1,processData:!1,success:function(i){t&&t.removeClass("show"),e(document).trigger("yith_save_toggle_element_done",[i,n])}})},e.fn.serializeToggleElement=function(){var t=e(this),i=new FormData,n=e(t).find(":input").serializeArray();return e.each(n,function(e,t){el_name=t.name,i.append(t.name,t.value)}),i},e.fn.formatToggleTitle=function(){var t=e(this),i=t.find(":input"),n=t.find("span.title").data("title_format"),a=t.find(".subtitle").data("subtitle_format"),l=new RegExp("[^%%]+(?=[%%])","g");if(void 0!==n)var o=n.match(l);if(void 0!==a)var s=a.match(l);e.each(i,function(t,i){void 0!==e(i).attr("id")&&($field_id=e(i).attr("id"),$field_array=$field_id.split("_"),$field_array.pop(),$field_id=$field_array.join("_"),$field_val=e(i).val(),null!=o&&void 0!==o&&-1!==o.indexOf($field_id)&&(n=n.replace("%%"+$field_id+"%%",$field_val)),null!=s&&void 0!==s&&-1!==s.indexOf($field_id)&&(a=a.replace("%%"+$field_id+"%%",$field_val)))}),""!==n&&t.find("span.title").html(n),""!==a&&t.find(".subtitle").html(a),e(document).trigger("yith-toggle-element-item-title",[t])},e.urlParam=function(e){var t=new RegExp("[?&]"+e+"=([^&#]*)").exec(window.location.search);return null!==t&&(t[1]||0)},e(document).on("click",".yith-toggle-title",function(t){var i=e(t.target),n=i.closest(".yith-toggle-row"),a=n.find(".yith-toggle-content");if(i.hasClass("yith-plugin-fw-onoff")||i.hasClass("yith-icon-drag"))return!1;n.is(".yith-toggle-row-opened")?a.slideUp(400):a.slideDown(400),n.toggleClass("yith-toggle-row-opened")}),e(document).on("click",".yith-add-box-button",function(t){t.preventDefault();var i=e(this),n=i.data("box_id"),a=i.data("closed_label"),l=i.data("opened_label"),o=i.closest(".yith-toggle_wrapper").attr("id"),s=wp.template("yith-toggle-element-add-box-content-"+o);""!==n&&(e("#"+n).html(s({index:"box_id"})).slideToggle(),""!==a&&(i.html()===a?i.html(l).removeClass("closed"):i.html(a).addClass("closed")),e(document).trigger("yith_fields_init"),e(document).trigger("yith-add-box-button-toggle",[i]))}),e(document).on("click",".yith-add-box-buttons .yith-save-button",function(t){t.preventDefault();var i=e(this).parents(".yith-add-box"),n=e(this).closest(".yith-toggle_wrapper").attr("id"),a=i.find(".spinner"),l=e(this).parents(".toggle-element"),o=i.find(":input"),s=0,r=e('<input type="hidden">');l.find(".yith-toggle-row").each(function(){var t=parseInt(e(this).data("item_key"));s<=t&&(s=t+1)}),r.val(s),e(document).trigger("yith-toggle-change-counter",[r,i]),s=r.val();var c=wp.template("yith-toggle-element-item-"+n),d=e(c({index:s}));a.addClass("show"),e.each(o,function(t,i){if(void 0!==e(i).attr("id")){var n=e(i).attr("id"),a=e(i).val();n="radio"===e(i).attr("type")?(n=(n=e(i).closest(".yith-plugin-fw-radio").attr("id")).replace("new_","")+"_"+s)+"-"+a:n.replace("new_","")+"_"+s,e(i).is(":checked")&&e(d).find("#"+n).prop("checked",!0),(e(i).hasClass("yith-post-search")||e(i).hasClass("yith-term-search"))&&e(d).find("#"+n).html(e("#"+e(i).attr("id")).html()),e(d).find("#"+n).val(a)}}),e(d).formatToggleTitle();var u=e('<input type="hidden">').val("yes");e(document).trigger("yith-toggle-element-item-before-add",[i,d,u]);setTimeout(function(){if("yes"===u.val()){e(l).find(".yith-toggle-elements").append(d),e(i).find(".yith-plugin-fw-datepicker").datepicker("destroy"),e(i).html(""),e(i).prev(".yith-add-box-button").trigger("click"),l.saveToggleElement();setTimeout(function(){e(l).find(".highlight").removeClass("highlight")},2e3),e(document).trigger("yith_fields_init")}},1e3)}),e(document).on("click",".yith-toggle-row .yith-save-button",function(t){t.preventDefault();var i=e(this).closest(".toggle-element"),n=e(this).closest(".yith-toggle-row"),a=n.find(".spinner");n.formatToggleTitle();var l=e('<input type="hidden">').val("yes");e(document).trigger("yith-toggle-element-item-before-update",[i,n,l]),"yes"===l.val()&&(a.addClass("show"),i.saveToggleElement(a))}),e(document).on("click",".yith-toggle-row .yith-delete-button",function(t){t.preventDefault();var i=e(this).closest(".toggle-element");e(this).closest(".yith-toggle-row").remove(),i.saveToggleElement()}),e(document).on("click",".yith-toggle-onoff",function(t){t.preventDefault(),e(this).closest(".toggle-element").saveToggleElement()}),e(document).on("click",".yith-plugin-fw-radio input[type=radio]",function(){var t=e(this).closest(".yith-plugin-fw-radio"),i=e(this).val();t.val(i).data("value",i).trigger("change")}),e(document.body).on("yith-plugin-fw-init-radio",function(){e(".yith-plugin-fw-radio:not(.yith-plugin-fw-radio--initialized)").each(function(){e(this).find('input[type="radio"]').filter('[value="'+e(this).data("value")+'"]').click(),e(this).addClass("yith-plugin-fw-radio--initialized")})}).trigger("yith-plugin-fw-init-radio"),e(document).on("click",".yith-password-eye",function(){var t=e(this),i=e(this).closest(".yith-password-wrapper").find("input");"password"===i.attr("type")?(i.attr("type","text"),t.addClass("yith-password-eye-closed")):(i.attr("type","password"),t.removeClass("yith-password-eye-closed"))}),e(document).on("select2:open",function(t){e(t.target).closest(".yith-plugin-ui").length&&e(".select2-results").closest(".select2-container").addClass("yith-plugin-fw-select2-container")}),e(document).on("select2:open",function(e){e.target.multiple||setTimeout(function(){document.querySelector(".yith-plugin-fw-select2-container .select2-search__field").focus()},50)});var n={selectors:{wrapper:".yith-plugin-fw-dimensions",units:{wrapper:".yith-plugin-fw-dimensions__units",single:".yith-plugin-fw-dimensions__unit",value:".yith-plugin-fw-dimensions__unit__value",selectedClass:"yith-plugin-fw-dimensions__unit--selected"},linked:{button:".yith-plugin-fw-dimensions__linked",value:".yith-plugin-fw-dimensions__linked__value",wrapperActiveClass:"yith-plugin-fw-dimensions--linked-active"},dimensions:{number:".yith-plugin-fw-dimensions__dimension__number"}},init:function(){var t=n;e(document).on("click",t.selectors.units.single,t.unitChange),e(document).on("click",t.selectors.linked.button,t.linkedChange),e(document).on("change keyup",t.selectors.dimensions.number,t.numberChange)},unitChange:function(t){var i=e(this).closest(n.selectors.units.single),a=i.closest(n.selectors.units.wrapper),l=a.find(n.selectors.units.single),o=a.find(n.selectors.units.value).first(),s=i.data("value");l.removeClass(n.selectors.units.selectedClass),i.addClass(n.selectors.units.selectedClass),o.val(s).trigger("change")},linkedChange:function(){var t=e(this).closest(n.selectors.linked.button),i=t.closest(n.selectors.wrapper),a=t.find(n.selectors.linked.value);"yes"===a.val()?(i.removeClass(n.selectors.linked.wrapperActiveClass),a.val("no")):(i.addClass(n.selectors.linked.wrapperActiveClass),a.val("yes"),i.find(n.selectors.dimensions.number).first().trigger("change"))},numberChange:function(t){var i=e(this).closest(n.selectors.dimensions.number),a=i.closest(n.selectors.wrapper);a.hasClass(n.selectors.linked.wrapperActiveClass)&&a.find(n.selectors.dimensions.number).val(i.val())}};n.init();e(document).on("click",".yith-plugin-fw-copy-to-clipboard__copy",function(){var t,i=e(this).closest(".yith-plugin-fw-copy-to-clipboard"),n=i.find(".yith-plugin-fw-copy-to-clipboard__field"),a=i.find(".yith-plugin-fw-copy-to-clipboard__tip"),l=i.data("tip-timeout");l&&clearTimeout(l),n.select(),document.execCommand("copy"),(t="getSelection"in window&&window.getSelection())?"empty"in t?t.empty():"removeAllRanges"in t&&t.removeAllRanges():"selection"in document&&document.selection.empty(),a.fadeIn(400),l=setTimeout(function(){a.fadeOut(400)},1500),i.data("tip-timeout",l)});var a={init:function(){e(document).on("click",".yith-plugin-fw__action-button--has-menu",a.open),e(document).on("click",".yith-plugin-fw__action-button__menu",a.stopPropagation),e(document).on("click",a.closeAll)},closeAll:function(){e(".yith-plugin-fw__action-button--opened").removeClass("yith-plugin-fw__action-button--opened")},open:function(t){var i=e(this).closest(".yith-plugin-fw__action-button"),n=i.hasClass("yith-plugin-fw__action-button--opened");t.preventDefault(),t.stopPropagation(),a.closeAll(),n||i.addClass("yith-plugin-fw__action-button--opened")},stopPropagation:function(e){e.stopPropagation()}};a.init(),e(document).on("click","a.yith-plugin-fw__require-confirmation-link",function(t){var i=e(this).closest("a.yith-plugin-fw__require-confirmation-link"),n=i.attr("href");if(n&&"#"!==n&&(t.preventDefault(),t.stopPropagation(),"yith"in window&&"ui"in yith)){var a,l=["title","message","confirmButtonType","cancelButton","confirmButton"],o={};for(a in l){var s=l[a],r=i.data(s);void 0!==r&&(o[s]=r)}o.onConfirm=function(){window.location.href=n},o.closeAfterConfirm=!1,yith.ui.confirm(o)}}),e(document).on("yith-plugin-fw-tips-init",function(){e(".yith-plugin-fw__tips").tipTip({attribute:"data-tip",fadeIn:50,fadeOut:50,delay:200})}).trigger("yith-plugin-fw-tips-init")}(jQuery);PK`x1\�%W���%plugin-fw/assets/js/yith-dashboard.jsnu�[���(function ($) {
    // bind a button or a link to open the dialog
    $('.yith-last-changelog').click(function(e) {
        e.preventDefault();
        var inlineId = $( this ).data( 'changelogid' ),
            inlineModal = $('#' + inlineId),
            plugininfo = $( this ).data( 'plugininfo' ),
            b = {},
            close_function = function() { $( this ).dialog( "close" ); };

        b[yith_dashboard.buttons.close] = close_function;

        // initalise the dialog
        inlineModal.dialog({
            title: plugininfo,
            dialogClass: 'wp-dialog',
            autoOpen: false,
            draggable: false,
            width: 'auto',
            modal: true,
            resizable: false,
            closeOnEscape: true,
            position: {
                my: "center",
                at: "center",
                of: window
            },
            buttons: b,
            show: {
                effect: "blind",
                duration: 1000
            },
            open: function () {
                // close dialog by clicking the overlay behind it
                $('.ui-widget-overlay').bind('click', function(){
                    inlineModal.dialog('close');
                })
            },
            create: function () {
                // style fix for WordPress admin
                $('.ui-dialog-titlebar-close').addClass('ui-button');
            },
        });

        inlineModal.dialog('open');
    });
})(jQuery);PK`x1\?��!!2plugin-fw/assets/js/yith-enhanced-select-wc-2.6.jsnu�[���/*
 global yith_framework_enhanced_select_params
 */
jQuery( function ( $ ) {
    "use strict";

    $( document.body )
        .on( 'yith-framework-enhanced-select-init', function () {
            // Post Search
            $( ':input.yith-post-search' ).filter( ':not(.enhanced)' ).each( function () {
                var default_data = {
                        action   : 'yith_plugin_fw_json_search_posts',
                        security : yith_framework_enhanced_select_params.search_posts_nonce,
                        post_type: 'post'
                    },
                    current_data = $.extend( default_data, $( this ).data() ),
                    select2_args = {
                        allowClear        : $( this ).data( 'allow_clear' ) ? true : false,
                        placeholder       : $( this ).data( 'placeholder' ),
                        minimumInputLength: $( this ).data( 'minimum_input_length' ) ? $( this ).data( 'minimum_input_length' ) : '3',
                        escapeMarkup      : function ( m ) {
                            return m;
                        },
                        ajax              : {
                            url        : yith_framework_enhanced_select_params.ajax_url,
                            dataType   : 'json',
                            quietMillis: 250,
                            data       : function ( term ) {
                                current_data.term = term;
                                return current_data;
                            },
                            results    : function ( data ) {
                                var terms = [];
                                if ( data ) {
                                    $.each( data, function ( id, text ) {
                                        terms.push( { id: id, text: text } );
                                    } );
                                }
                                return {
                                    results: terms
                                };
                            },
                            cache      : true
                        }
                    };

                if ( $( this ).data( 'multiple' ) === true ) {
                    select2_args.multiple        = true;
                    select2_args.initSelection   = function ( element, callback ) {
                        var data     = $.parseJSON( element.attr( 'data-selected' ) );
                        var selected = [];

                        $( element.val().split( ',' ) ).each( function ( i, val ) {
                            selected.push( {
                                               id  : val,
                                               text: data[ val ]
                                           } );
                        } );
                        return callback( selected );
                    };
                    select2_args.formatSelection = function ( data ) {
                        return '<div class="selected-option" data-id="' + data.id + '">' + data.text + '</div>';
                    };
                } else {
                    select2_args.multiple      = false;
                    select2_args.initSelection = function ( element, callback ) {
                        var data = {
                            id  : element.val(),
                            text: element.attr( 'data-selected' )
                        };
                        return callback( data );
                    };
                }

                $( this ).select2( select2_args ).addClass( 'enhanced' );
            } );

            // Term Search
            $( ':input.yith-term-search' ).filter( ':not(.enhanced)' ).each( function () {
                var default_data = {
                        action   : 'yith_plugin_fw_json_search_terms',
                        security : yith_framework_enhanced_select_params.search_terms_nonce,
                        taxonomy: 'category'
                    },
                    current_data = $.extend( default_data, $( this ).data() ),
                    select2_args = {
                        allowClear        : $( this ).data( 'allow_clear' ) ? true : false,
                        placeholder       : $( this ).data( 'placeholder' ),
                        minimumInputLength: $( this ).data( 'minimum_input_length' ) ? $( this ).data( 'minimum_input_length' ) : '3',
                        escapeMarkup      : function ( m ) {
                            return m;
                        },
                        ajax              : {
                            url        : yith_framework_enhanced_select_params.ajax_url,
                            dataType   : 'json',
                            quietMillis: 250,
                            data       : function ( term ) {
                                current_data.term = term;
                                return current_data;
                            },
                            results    : function ( data ) {
                                var terms = [];
                                if ( data ) {
                                    $.each( data, function ( id, text ) {
                                        terms.push( { id: id, text: text } );
                                    } );
                                }
                                return {
                                    results: terms
                                };
                            },
                            cache      : true
                        }
                    };

                if ( $( this ).data( 'multiple' ) === true ) {
                    select2_args.multiple        = true;
                    select2_args.initSelection   = function ( element, callback ) {
                        var data     = $.parseJSON( element.attr( 'data-selected' ) );
                        var selected = [];

                        $( element.val().split( ',' ) ).each( function ( i, val ) {
                            selected.push( {
                                               id  : val,
                                               text: data[ val ]
                                           } );
                        } );
                        return callback( selected );
                    };
                    select2_args.formatSelection = function ( data ) {
                        return '<div class="selected-option" data-id="' + data.id + '">' + data.text + '</div>';
                    };
                } else {
                    select2_args.multiple      = false;
                    select2_args.initSelection = function ( element, callback ) {
                        var data = {
                            id  : element.val(),
                            text: element.attr( 'data-selected' )
                        };
                        return callback( data );
                    };
                }

                $( this ).select2( select2_args ).addClass( 'enhanced' );
            } );
        } ).trigger( 'yith-framework-enhanced-select-init' );
    
} );PK`x1\�k�vS(S(+plugin-fw/assets/js/yith-enhanced-select.jsnu�[���/* global yith_framework_enhanced_select_params */

jQuery( function ( $ ) {
    "use strict";

    $( document.body )
        .on( 'yith-framework-enhanced-select-init', function () {
            // Post Search
            $( '.yith-post-search' ).filter( ':not(.enhanced)' ).each( function () {
                var default_data = {
                        action   : 'yith_plugin_fw_json_search_posts',
                        security : yith_framework_enhanced_select_params.search_posts_nonce,
                        post_type: 'post'
                    },
                    current_data = $.extend( default_data, $( this ).data() ),
                    select2_args = {
                        allowClear        : $( this ).data( 'allow_clear' ) ? true : false,
                        placeholder       : $( this ).data( 'placeholder' ),
                        minimumInputLength: $( this ).data( 'minimum_input_length' ) ? $( this ).data( 'minimum_input_length' ) : '3',
                        escapeMarkup      : function ( m ) {
                            return m;
                        },
                        ajax              : {
                            url           : ajaxurl,
                            dataType      : 'json',
                            quietMillis   : 250,
                            data          : function ( params ) {
                                var default_data_to_return = {
                                    term: params.term
                                };

                                return $.extend( default_data_to_return, current_data );
                            },
                            processResults: function ( data ) {
                                var terms = [];
                                if ( data ) {
                                    $.each( data, function ( id, text ) {
                                        terms.push( { id: id, text: text } );
                                    } );
                                }
                                return {
                                    results: terms
                                };
                            },
                            cache         : true
                        }
                    };

                $( this ).select2( select2_args ).addClass( 'enhanced' );

                if ( $( this ).data( 'sortable' ) ) {
                    var $select = $( this );
                    var $list   = $( this ).next( '.select2-container' ).find( 'ul.select2-selection__rendered' );

                    $list.sortable( {
                                        placeholder         : 'ui-state-highlight select2-selection__choice',
                                        forcePlaceholderSize: true,
                                        items               : 'li:not(.select2-search__field)',
                                        tolerance           : 'pointer',
                                        stop                : function () {
                                            $( $list.find( '.select2-selection__choice' ).get().reverse() ).each( function () {
                                                var id     = $( this ).data( 'data' ).id;
                                                var option = $select.find( 'option[value="' + id + '"]' )[ 0 ];
                                                $select.prepend( option );
                                            } );
                                        }
                                    } );
                }
            } );

            // Customer Search
            $( '.yith-customer-search' ).filter( ':not(.enhanced)' ).each( function () {
                var default_data = {
                        action   : 'woocommerce_json_search_customers',
                        security : yith_framework_enhanced_select_params.search_customers_nonce,
                    },
                    current_data = $.extend( default_data, $( this ).data() ),
                    select2_args = {
                        allowClear        : $( this ).data( 'allow_clear' ) ? true : false,
                        placeholder       : $( this ).data( 'placeholder' ),
                        minimumInputLength: $( this ).data( 'minimum_input_length' ) ? $( this ).data( 'minimum_input_length' ) : '3',
                        escapeMarkup      : function ( m ) {
                            return m;
                        },
                        ajax              : {
                            url           : ajaxurl,
                            dataType      : 'json',
                            quietMillis   : 250,
                            data          : function ( params ) {
                                var default_data_to_return = {
                                    term: params.term
                                };

                                return $.extend( default_data_to_return, current_data );
                            },
                            processResults: function ( data ) {
                                var terms = [];
                                if ( data ) {
                                    $.each( data, function ( id, text ) {
                                        terms.push( { id: id, text: text } );
                                    } );
                                }
                                return {
                                    results: terms
                                };
                            },
                            cache         : true
                        }
                    };

                $( this ).select2( select2_args ).addClass( 'enhanced' );

                if ( $( this ).data( 'sortable' ) ) {
                    var $select = $( this );
                    var $list   = $( this ).next( '.select2-container' ).find( 'ul.select2-selection__rendered' );

                    $list.sortable( {
                        placeholder         : 'ui-state-highlight select2-selection__choice',
                        forcePlaceholderSize: true,
                        items               : 'li:not(.select2-search__field)',
                        tolerance           : 'pointer',
                        stop                : function () {
                            $( $list.find( '.select2-selection__choice' ).get().reverse() ).each( function () {
                                var id     = $( this ).data( 'data' ).id;
                                var option = $select.find( 'option[value="' + id + '"]' )[ 0 ];
                                $select.prepend( option );
                            } );
                        }
                    } );
                }
            } );

            // TERM SEARCH
            $( '.yith-term-search' ).filter( ':not(.enhanced)' ).each( function () {
                var default_data = {
                        action  : 'yith_plugin_fw_json_search_terms',
                        security: yith_framework_enhanced_select_params.search_terms_nonce,
                        taxonomy: 'category'
                    },
                    current_data = $.extend( default_data, $( this ).data() ),
                    select2_args = {
                        allowClear        : $( this ).data( 'allow_clear' ) ? true : false,
                        placeholder       : $( this ).data( 'placeholder' ),
                        minimumInputLength: $( this ).data( 'minimum_input_length' ) ? $( this ).data( 'minimum_input_length' ) : '3',
                        escapeMarkup      : function ( m ) {
                            return m;
                        },
                        ajax              : {
                            url           : ajaxurl,
                            dataType      : 'json',
                            quietMillis   : 250,
                            data          : function ( params ) {
                                var default_data_to_return = {
                                    term: params.term
                                };

                                return $.extend( default_data_to_return, current_data );
                            },
                            processResults: function ( data ) {
                                var terms = [];
                                if ( data ) {
                                    $.each( data, function ( id, text ) {
                                        terms.push( { id: id, text: text } );
                                    } );
                                }
                                return {
                                    results: terms
                                };
                            },
                            cache         : true
                        }
                    };

                $( this ).select2( select2_args ).addClass( 'enhanced' );

                if ( $( this ).data( 'sortable' ) ) {
                    var $select = $( this );
                    var $list   = $( this ).next( '.select2-container' ).find( 'ul.select2-selection__rendered' );

                    $list.sortable( {
                                        placeholder         : 'ui-state-highlight select2-selection__choice',
                                        forcePlaceholderSize: true,
                                        items               : 'li:not(.select2-search__field)',
                                        tolerance           : 'pointer',
                                        stop                : function () {
                                            $( $list.find( '.select2-selection__choice' ).get().reverse() ).each( function () {
                                                var id     = $( this ).data( 'data' ).id;
                                                var option = $select.find( 'option[value="' + id + '"]' )[ 0 ];
                                                $select.prepend( option );
                                            } );
                                        }
                                    } );
                }
            } );

        } ).trigger( 'yith-framework-enhanced-select-init' );
    
} );PK`x1\���		(plugin-fw/assets/js/yit-cpt-unlimited.jsnu�[���/**
 * This file belongs to the YIT Framework.
 *
 * This source file is subject to the GNU GENERAL PUBLIC LICENSE (GPL 3.0)
 * that is bundled with this package in the file LICENSE.txt.
 * It is also available through the world-wide-web at this URL:
 * http://www.gnu.org/licenses/gpl-3.0.txt
 */

(function($) {
    "use strict";
    // Author code here

    // open media box
    $('.wrap h1, .wrap h2').on( 'click', 'a.multi-uploader', function(event){
        event.preventDefault();

        var file_frame,
            button = $(this),
            selected = false;

        // spinner
        button.next('span.spinner').css( 'display', 'inline-block' );

        // If the media frame already exists, reopen it.
        if ( file_frame ) {
            file_frame.open();
            return;
        }

        // Create the media frame.
        file_frame = wp.media.frames.file_frame = wp.media({
            title: button.data( 'uploader_title' ),
            button: {
                text: button.data( 'uploader_button_text' )
            },
            library: {
                type: 'image'
            },
            multiple: true  // Set to true to allow multiple files to be selected
        });

        // When an image is selected, run a callback.
        file_frame.on( 'select', function() {
            var selection = file_frame.state().get('selection'),
                images = [];

            selection.map( function( attachment ) {
                attachment = attachment.toJSON();

                // Do something with attachment.id and/or attachment.url here
                images.push( { id: attachment.id, url: attachment.url, title: attachment.title } );
            });
console.log( button.data('nonce') );
            // make AJAX request
            $.post( ajaxurl, {
                images: images,
                post_type: typenow,
                action: 'yit_cptu_multiuploader',
                _ajax_nonce: button.data('nonce')
            }, function( data ){
                location.reload();
            });

            button.next('span.spinner').css( 'display', 'inline-block' );

            // flag
            selected = true;
        });

        // when close
        file_frame.on( 'close', function() {
            if ( ! selected ) button.next('span.spinner').hide();
        });

        // Finally, open the modal
        file_frame.open();
    });

})(jQuery);PK`x1\,�@�-.-.*plugin-fw/assets/js/jquery.colorbox.min.jsnu�[���/*!
	Colorbox 1.6.3
	license: MIT
	http://www.jacklmoore.com/colorbox
*/
!function(t,e,i){var n,o,h,r,a,s,l,d,c,g,u,f,p,m,w,v,x,y,b,T,C,H,k,W,E,I,M,L,F,R,S,K,P,B={html:!1,photo:!1,iframe:!1,inline:!1,transition:"elastic",speed:300,fadeOut:300,width:!1,initialWidth:"600",innerWidth:!1,maxWidth:!1,height:!1,initialHeight:"450",innerHeight:!1,maxHeight:!1,scalePhotos:!0,scrolling:!0,opacity:.9,preloading:!0,className:!1,overlayClose:!0,escKey:!0,arrowKey:!0,top:!1,bottom:!1,left:!1,right:!1,fixed:!1,data:undefined,closeButton:!0,fastIframe:!0,open:!1,reposition:!0,loop:!0,slideshow:!1,slideshowAuto:!0,slideshowSpeed:2500,slideshowStart:"start slideshow",slideshowStop:"stop slideshow",photoRegex:/\.(gif|png|jp(e|g|eg)|bmp|ico|webp|jxr|svg)((#|\?).*)?$/i,retinaImage:!1,retinaUrl:!1,retinaSuffix:"@2x.$1",current:"image {current} of {total}",previous:"previous",next:"next",close:"close",xhrError:"This content failed to load.",imgError:"This image failed to load.",returnFocus:!0,trapFocus:!0,onOpen:!1,onLoad:!1,onComplete:!1,onCleanup:!1,onClosed:!1,rel:function(){return this.rel},href:function(){return t(this).attr("href")},title:function(){return this.title},createImg:function(){var e=new Image,i=t(this).data("cbox-img-attrs");return"object"==typeof i&&t.each(i,function(t,i){e[t]=i}),e},createIframe:function(){var i=e.createElement("iframe"),n=t(this).data("cbox-iframe-attrs");return"object"==typeof n&&t.each(n,function(t,e){i[t]=e}),"frameBorder"in i&&(i.frameBorder=0),"allowTransparency"in i&&(i.allowTransparency="true"),i.name=(new Date).getTime(),i.allowFullscreen=!0,i}},O="colorbox",_="cbox",j=_+"Element",D=_+"_open",N=_+"_load",z=_+"_complete",A=_+"_cleanup",U=_+"_closed",$=_+"_purge",q=t("<a/>"),G="div",Q=0,J={};function V(i,n,o){var h=e.createElement(i);return n&&(h.id=_+n),o&&(h.style.cssText=o),t(h)}function X(){return i.innerHeight?i.innerHeight:t(i).height()}function Y(e,i){i!==Object(i)&&(i={}),this.cache={},this.el=e,this.value=function(e){var n;return this.cache[e]===undefined&&((n=t(this.el).attr("data-cbox-"+e))!==undefined?this.cache[e]=n:i[e]!==undefined?this.cache[e]=i[e]:B[e]!==undefined&&(this.cache[e]=B[e])),this.cache[e]},this.get=function(e){var i=this.value(e);return t.isFunction(i)?i.call(this.el,this):i}}function Z(t){var e=c.length,i=(I+t)%e;return i<0?e+i:i}function tt(t,e){return Math.round((/%/.test(t)?("x"===e?g.width():X())/100:1)*parseInt(t,10))}function et(t,e){return t.get("photo")||t.get("photoRegex").test(e)}function it(t,e){return t.get("retinaUrl")&&i.devicePixelRatio>1?e.replace(t.get("photoRegex"),t.get("retinaSuffix")):e}function nt(t){"contains"in o[0]&&!o[0].contains(t.target)&&t.target!==n[0]&&(t.stopPropagation(),o.focus())}function ot(t){ot.str!==t&&(o.add(n).removeClass(ot.str).addClass(t),ot.str=t)}function ht(i){t(e).trigger(i),q.triggerHandler(i)}var rt=function(){var t,e,i=_+"Slideshow_",n="click."+_;function h(){clearTimeout(e)}function r(){(C.get("loop")||c[I+1])&&(h(),e=setTimeout(K.next,C.get("slideshowSpeed")))}function a(){v.html(C.get("slideshowStop")).unbind(n).one(n,s),q.bind(z,r).bind(N,h),o.removeClass(i+"off").addClass(i+"on")}function s(){h(),q.unbind(z,r).unbind(N,h),v.html(C.get("slideshowStart")).unbind(n).one(n,function(){K.next(),a()}),o.removeClass(i+"on").addClass(i+"off")}function l(){t=!1,v.hide(),h(),q.unbind(z,r).unbind(N,h),o.removeClass(i+"off "+i+"on")}return function(){t?C.get("slideshow")||(q.unbind(A,l),l()):C.get("slideshow")&&c[1]&&(t=!0,q.one(A,l),C.get("slideshowAuto")?a():s(),v.show())}}();function at(h){var g,w;if(!R){if(g=t(h).data(O),C=new Y(h,g),w=C.get("rel"),I=0,w&&!1!==w&&"nofollow"!==w?(c=t("."+j).filter(function(){return new Y(this,t.data(this,O)).get("rel")===w}),-1===(I=c.index(C.el))&&(c=c.add(C.el),I=c.length-1)):c=t(C.el),!L){L=F=!0,ot(C.get("className")),o.css({visibility:"hidden",display:"block",opacity:""}),u=V(G,"LoadedContent","width:0; height:0; overflow:hidden; visibility:hidden"),r.css({width:"",height:""}).append(u),H=a.height()+d.height()+r.outerHeight(!0)-r.height(),k=s.width()+l.width()+r.outerWidth(!0)-r.width(),W=u.outerHeight(!0),E=u.outerWidth(!0);var v=tt(C.get("initialWidth"),"x"),x=tt(C.get("initialHeight"),"y"),y=C.get("maxWidth"),P=C.get("maxHeight");C.w=Math.max((!1!==y?Math.min(v,tt(y,"x")):v)-E-k,0),C.h=Math.max((!1!==P?Math.min(x,tt(P,"y")):x)-W-H,0),u.css({width:"",height:C.h}),K.position(),ht(D),C.get("onOpen"),T.add(m).hide(),o.focus(),C.get("trapFocus")&&e.addEventListener&&(e.addEventListener("focus",nt,!0),q.one(U,function(){e.removeEventListener("focus",nt,!0)})),C.get("returnFocus")&&q.one(U,function(){t(C.el).focus()})}var B=parseFloat(C.get("opacity"));n.css({opacity:B==B?B:"",cursor:C.get("overlayClose")?"pointer":"",visibility:"visible"}).show(),C.get("closeButton")?b.html(C.get("close")).appendTo(r):b.appendTo("<div/>"),function(){var e,n,o,h=K.prep,r=++Q;F=!0,M=!1,ht($),ht(N),C.get("onLoad"),C.h=C.get("height")?tt(C.get("height"),"y")-W-H:C.get("innerHeight")&&tt(C.get("innerHeight"),"y"),C.w=C.get("width")?tt(C.get("width"),"x")-E-k:C.get("innerWidth")&&tt(C.get("innerWidth"),"x"),C.mw=C.w,C.mh=C.h,C.get("maxWidth")&&(C.mw=tt(C.get("maxWidth"),"x")-E-k,C.mw=C.w&&C.w<C.mw?C.w:C.mw);C.get("maxHeight")&&(C.mh=tt(C.get("maxHeight"),"y")-W-H,C.mh=C.h&&C.h<C.mh?C.h:C.mh);if(e=C.get("href"),S=setTimeout(function(){p.show()},100),C.get("inline")){var a=t(e);o=t("<div>").hide().insertBefore(a),q.one($,function(){o.replaceWith(a)}),h(a)}else C.get("iframe")?h(" "):C.get("html")?h(C.get("html")):et(C,e)?(e=it(C,e),M=C.get("createImg"),t(M).addClass(_+"Photo").bind("error."+_,function(){h(V(G,"Error").html(C.get("imgError")))}).one("load",function(){r===Q&&setTimeout(function(){var e;C.get("retinaImage")&&i.devicePixelRatio>1&&(M.height=M.height/i.devicePixelRatio,M.width=M.width/i.devicePixelRatio),C.get("scalePhotos")&&(n=function(){M.height-=M.height*e,M.width-=M.width*e},C.mw&&M.width>C.mw&&(e=(M.width-C.mw)/M.width,n()),C.mh&&M.height>C.mh&&(e=(M.height-C.mh)/M.height,n())),C.h&&(M.style.marginTop=Math.max(C.mh-M.height,0)/2+"px"),c[1]&&(C.get("loop")||c[I+1])&&(M.style.cursor="pointer",t(M).bind("click."+_,function(){K.next()})),M.style.width=M.width+"px",M.style.height=M.height+"px",h(M)},1)}),M.src=e):e&&f.load(e,C.get("data"),function(e,i){r===Q&&h("error"===i?V(G,"Error").html(C.get("xhrError")):t(this).contents())})}()}}function st(){o||(P=!1,g=t(i),o=V(G).attr({id:O,"class":!1===t.support.opacity?_+"IE":"",role:"dialog",tabindex:"-1"}).hide(),n=V(G,"Overlay").hide(),p=t([V(G,"LoadingOverlay")[0],V(G,"LoadingGraphic")[0]]),h=V(G,"Wrapper"),r=V(G,"Content").append(m=V(G,"Title"),w=V(G,"Current"),y=t('<button type="button"/>').attr({id:_+"Previous"}),x=t('<button type="button"/>').attr({id:_+"Next"}),v=V("button","Slideshow"),p),b=t('<button type="button"/>').attr({id:_+"Close"}),h.append(V(G).append(V(G,"TopLeft"),a=V(G,"TopCenter"),V(G,"TopRight")),V(G,!1,"clear:left").append(s=V(G,"MiddleLeft"),r,l=V(G,"MiddleRight")),V(G,!1,"clear:left").append(V(G,"BottomLeft"),d=V(G,"BottomCenter"),V(G,"BottomRight"))).find("div div").css({float:"left"}),f=V(G,!1,"position:absolute; width:9999px; visibility:hidden; display:none; max-width:none;"),T=x.add(y).add(w).add(v)),e.body&&!o.parent().length&&t(e.body).append(n,o.append(h,f))}function lt(){function i(t){t.which>1||t.shiftKey||t.altKey||t.metaKey||t.ctrlKey||(t.preventDefault(),at(this))}return!!o&&(P||(P=!0,x.click(function(){K.next()}),y.click(function(){K.prev()}),b.click(function(){K.close()}),n.click(function(){C.get("overlayClose")&&K.close()}),t(e).bind("keydown."+_,function(t){var e=t.keyCode;L&&C.get("escKey")&&27===e&&(t.preventDefault(),K.close()),L&&C.get("arrowKey")&&c[1]&&!t.altKey&&(37===e?(t.preventDefault(),y.click()):39===e&&(t.preventDefault(),x.click()))}),t.isFunction(t.fn.on)?t(e).on("click."+_,"."+j,i):t("."+j).live("click."+_,i)),!0)}t[O]||(t(st),(K=t.fn[O]=t[O]=function(e,i){var n=this;return e=e||{},t.isFunction(n)&&(n=t("<a/>"),e.open=!0),n[0]?(st(),lt()&&(i&&(e.onComplete=i),n.each(function(){var i=t.data(this,O)||{};t.data(this,O,t.extend(i,e))}).addClass(j),new Y(n[0],e).get("open")&&at(n[0])),n):n}).position=function(e,i){var n,c,u,f=0,p=0,m=o.offset();function w(){a[0].style.width=d[0].style.width=r[0].style.width=parseInt(o[0].style.width,10)-k+"px",r[0].style.height=s[0].style.height=l[0].style.height=parseInt(o[0].style.height,10)-H+"px"}if(g.unbind("resize."+_),o.css({top:-9e4,left:-9e4}),c=g.scrollTop(),u=g.scrollLeft(),C.get("fixed")?(m.top-=c,m.left-=u,o.css({position:"fixed"})):(f=c,p=u,o.css({position:"absolute"})),!1!==C.get("right")?p+=Math.max(g.width()-C.w-E-k-tt(C.get("right"),"x"),0):!1!==C.get("left")?p+=tt(C.get("left"),"x"):p+=Math.round(Math.max(g.width()-C.w-E-k,0)/2),!1!==C.get("bottom")?f+=Math.max(X()-C.h-W-H-tt(C.get("bottom"),"y"),0):!1!==C.get("top")?f+=tt(C.get("top"),"y"):f+=Math.round(Math.max(X()-C.h-W-H,0)/2),o.css({top:m.top,left:m.left,visibility:"visible"}),h[0].style.width=h[0].style.height="9999px",n={width:C.w+E+k,height:C.h+W+H,top:f,left:p},e){var v=0;t.each(n,function(t){n[t]===J[t]||(v=e)}),e=v}J=n,e||o.css(n),o.dequeue().animate(n,{duration:e||0,complete:function(){w(),F=!1,h[0].style.width=C.w+E+k+"px",h[0].style.height=C.h+W+H+"px",C.get("reposition")&&setTimeout(function(){g.bind("resize."+_,K.position)},1),t.isFunction(i)&&i()},step:w})},K.resize=function(t){var e;L&&((t=t||{}).width&&(C.w=tt(t.width,"x")-E-k),t.innerWidth&&(C.w=tt(t.innerWidth,"x")),u.css({width:C.w}),t.height&&(C.h=tt(t.height,"y")-W-H),t.innerHeight&&(C.h=tt(t.innerHeight,"y")),t.innerHeight||t.height||(e=u.scrollTop(),u.css({height:"auto"}),C.h=u.height()),u.css({height:C.h}),e&&u.scrollTop(e),K.position("none"===C.get("transition")?0:C.get("speed")))},K.prep=function(i){if(L){var n,h="none"===C.get("transition")?0:C.get("speed");u.remove(),(u=V(G,"LoadedContent").append(i)).hide().appendTo(f.show()).css({width:(C.w=C.w||u.width(),C.w=C.mw&&C.mw<C.w?C.mw:C.w,C.w),overflow:C.get("scrolling")?"auto":"hidden"}).css({height:(C.h=C.h||u.height(),C.h=C.mh&&C.mh<C.h?C.mh:C.h,C.h)}).prependTo(r),f.hide(),t(M).css({float:"none"}),ot(C.get("className")),n=function(){var i,n,r=c.length;function a(){!1===t.support.opacity&&o[0].style.removeAttribute("filter")}L&&(n=function(){clearTimeout(S),p.hide(),ht(z),C.get("onComplete")},m.html(C.get("title")).show(),u.show(),r>1?("string"==typeof C.get("current")&&w.html(C.get("current").replace("{current}",I+1).replace("{total}",r)).show(),x[C.get("loop")||I<r-1?"show":"hide"]().html(C.get("next")),y[C.get("loop")||I?"show":"hide"]().html(C.get("previous")),rt(),C.get("preloading")&&t.each([Z(-1),Z(1)],function(){var i=c[this],n=new Y(i,t.data(i,O)),o=n.get("href");o&&et(n,o)&&(o=it(n,o),e.createElement("img").src=o)})):T.hide(),C.get("iframe")?(i=C.get("createIframe"),C.get("scrolling")||(i.scrolling="no"),t(i).attr({src:C.get("href"),"class":_+"Iframe"}).one("load",n).appendTo(u),q.one($,function(){i.src="//about:blank"}),C.get("fastIframe")&&t(i).trigger("load")):n(),"fade"===C.get("transition")?o.fadeTo(h,1,a):a())},"fade"===C.get("transition")?o.fadeTo(h,0,function(){K.position(0,n)}):K.position(h,n)}},K.next=function(){!F&&c[1]&&(C.get("loop")||c[I+1])&&(I=Z(1),at(c[I]))},K.prev=function(){!F&&c[1]&&(C.get("loop")||I)&&(I=Z(-1),at(c[I]))},K.close=function(){L&&!R&&(R=!0,L=!1,ht(A),C.get("onCleanup"),g.unbind("."+_),n.fadeTo(C.get("fadeOut")||0,0),o.stop().fadeTo(C.get("fadeOut")||0,0,function(){o.hide(),n.hide(),ht($),u.remove(),setTimeout(function(){R=!1,ht(U),C.get("onClosed")},1)}))},K.remove=function(){o&&(o.stop(),t[O].close(),o.stop(!1,!0).remove(),n.remove(),R=!1,o=null,t("."+j).removeData(O).removeClass(j),t(e).unbind("click."+_).unbind("keydown."+_))},K.element=function(){return t(C.el)},K.settings=B)}(jQuery,document,window);PK`x1\����%plugin-fw/assets/js/yit-wp-pointer.jsnu�[���jQuery( function($) {
    var pointers    = custom_pointer.pointers[0],
        options     = pointers.options,
        target      = $(pointers.target),
        pointer_id  = pointers.pointer_id;

    $(target).find('.wp-submenu li a').each(function () {

            var t = $(this),
                href = t.attr('href');

            href = href.replace('admin.php?page=', '');

            if( href == pointer_id ){

                var selected_plugin_row = t.add( target ),
                    top_level_menu      = target.find( pointers.target.replace( '#', '.' ) );

                target.toggleClass('wp-no-current-submenu wp-menu-open wp-has-current-submenu');

                t.pointer({
                    pointerClass: 'yit-wp-pointer',
                    content : options.content,
                    position: options.position,
                    open    : function () {
                        selected_plugin_row.toggleClass( 'yit-pointer-selected-row' );
                        top_level_menu.addClass( 'yit-pointer' );
                    },


                    close   : function () {
                        target.toggleClass('wp-no-current-submenu wp-menu-open wp-has-current-submenu');
                        selected_plugin_row.toggleClass( 'yit-pointer-selected-row' );
                        top_level_menu.removeClass( 'yit-pointer' );

                        $.ajax({
                            type   : 'POST',
                            url    : ajaxurl,
                            data   : {
                                "action" : "dismiss-wp-pointer",
                                "pointer": pointer_id
                            },
                            success: function (response) {
                            }
                        });

                    }
                }).pointer('open');
            } else if( 'yith_default_pointer' == pointer_id ) {

                 var selected_plugin_row = t.add( target ),
                     top_level_menu      = target.find( pointers.target.replace( '#', '.' )),
                     yit_plugins         = $( pointers.target );

                yit_plugins.addClass('wp-has-current-submenu');

                top_level_menu.pointer({
                    pointerClass: 'yit-wp-pointer',
                    content : options.content,
                    position: options.position,

                    open    : function () {
                        yit_plugins.addClass( 'yit-pointer-selected-row' );
                    },

                    close   : function () {
                        yit_plugins.removeClass( 'yit-pointer-selected-row wp-has-current-submenu' );

                        $.ajax({
                            type   : 'POST',
                            url    : ajaxurl,
                            data   : {
                                "action" : "dismiss-wp-pointer",
                                "pointer": pointer_id
                            },
                            success: function (response) {
                            }
                        });
                    }
                }).pointer('open');
            }
        });
});PK`x1\M+��#�#plugin-fw/assets/js/yith-ui.jsnu�[���/* globals yith_plugin_fw_ui */

// Make sure the yith object exists.
window.yith = window.yith || {};

( function ( $, yith ) {
	yith.ui = yith.ui || {};

	var cssClasses = function ( classes ) {
		if ( typeof classes === 'string' ) {
			return classes;
		} else {
			var filteredClasses = [];

			for ( var value of classes ) {
				if ( value && filteredClasses.indexOf( value ) < 0 ) {
					filteredClasses.push( cssClasses( value ) );
				}
			}
			return filteredClasses.join( ' ' );
		}
	}

	var stopEventPropagation = function ( e ) {
		e.stopPropagation();
	};

	/**
	 * Confirm window.
	 */
	yith.ui.confirm = function ( options ) {
		var defaults = {
				title                     : false,
				message                   : false,
				onCreate                  : false,
				onConfirm                 : false,
				onCancel                  : false,
				onClose                   : false,
				classes                   : {
					wrap   : '',
					content: '',
					title  : '',
					message: '',
					footer : '',
					cancel : '',
					confirm: ''
				},
				confirmButtonType         : 'confirm',
				cancelButton              : yith_plugin_fw_ui.i18n.cancel,
				confirmButton             : yith_plugin_fw_ui.i18n.confirm,
				width                     : 350,
				closeAfterConfirm         : true,
				allowWpMenu               : false,
				allowWpMenuInMobile       : false,
				showClose                 : true,
				closeWhenClickingOnOverlay: false
			},
			self     = {};

		options         = typeof options !== 'undefined' ? options : {};
		options         = $.extend( {}, defaults, options );
		options.classes = $.extend( {}, defaults.classes, options.classes );

		var classes       = {
				wrap   : cssClasses( ['yith-plugin-fw__confirm__wrap', options.classes.wrap] ),
				content: cssClasses( ['yith-plugin-fw__confirm__content', options.classes.content] ),
				title  : cssClasses( ['yith-plugin-fw__confirm__title', options.classes.title] ),
				message: cssClasses( ['yith-plugin-fw__confirm__message', options.classes.message] ),
				footer : cssClasses( ['yith-plugin-fw__confirm__footer', options.classes.footer] ),
				cancel : cssClasses( ['yith-plugin-fw__confirm__button', 'yith-plugin-fw__confirm__button--cancel', options.classes.cancel] ),
				confirm: cssClasses( ['yith-plugin-fw__confirm__button', 'yith-plugin-fw__confirm__button--' + options.confirmButtonType, options.classes.confirm] )
			},
			dom           = {
				message: false,
				footer : false,
				cancel : false,
				confirm: false
			},
			modal         = false,
			initialize    = function () {
				create();
				initEvents();
			},
			handleClose   = function () {
				modal && modal.close();
				modal = false;
			},
			create        = function () {
				dom.message = $( '<div class="' + classes.message + '">' );
				dom.footer  = $( '<div class="' + classes.footer + '">' );
				dom.cancel  = $( '<span class="' + classes.cancel + '">' + options.cancelButton + '</span>' );
				dom.confirm = $( '<span class="' + classes.confirm + '">' + options.confirmButton + '</span>' );


				if ( options.message ) {
					dom.message.html( options.message );
				}

				dom.footer.append( dom.cancel );
				dom.footer.append( dom.confirm );

				modal = yith.ui.modal(
					{
						classes                   : {
							wrap   : classes.wrap,
							title  : classes.title,
							content: classes.content
						},
						title                     : options.title,
						content                   : [dom.message, dom.footer],
						width                     : options.width,
						allowWpMenu               : options.allowWpMenu,
						allowWpMenuInMobile       : options.allowWpMenuInMobile,
						showClose                 : options.showClose,
						onCreate                  : options.onCreate,
						onClose                   : options.onClose,
						closeWhenClickingOnOverlay: options.closeWhenClickingOnOverlay
					}
				);
			},
			handleCancel  = function () {
				if ( typeof options.onCancel === 'function' ) {
					options.onCancel();
				}

				handleClose();
			},
			handleConfirm = function () {
				if ( typeof options.onConfirm === 'function' ) {
					options.onConfirm();
				}

				if ( options.closeAfterConfirm ) {
					handleClose();
				}
			},
			initEvents    = function () {
				dom.cancel.on( 'click', handleCancel );
				dom.confirm.on( 'click', handleConfirm );
			};

		initialize();

		self.elements = $.extend( {}, dom );
		self.modal    = $.extend( {}, modal );
		self.close    = handleClose;
		self.cancel   = handleCancel;
	};


	/**
	 * Modal window.
	 */
	yith.ui.modal = function ( options ) {
		var defaults = {
				allowWpMenu               : true,
				allowWpMenuInMobile       : false,
				title                     : false,
				content                   : false,
				footer                    : false,
				showClose                 : true,
				closeSelector             : false,
				classes                   : {
					wrap   : '',
					main   : '',
					close  : '',
					title  : '',
					content: '',
					footer : ''
				},
				width                     : 500,
				allowClosingWithEsc       : true,
				closeWhenClickingOnOverlay: false,
				scrollContent             : true,
				onCreate                  : false,
				onClose                   : false
			},
			self     = {};

		options         = typeof options !== 'undefined' ? options : {};
		options         = $.extend( {}, defaults, options );
		options.classes = $.extend( {}, defaults.classes, options.classes );

		var container      = $( '#wpwrap' ),
			classes        = {
				wrap   : ['yith-plugin-ui', 'yith-plugin-fw__modal__wrap', options.classes.wrap],
				main   : ['yith-plugin-fw__modal__main', options.classes.main],
				close  : ['yith-plugin-fw__modal__close', 'yith-icon', 'yith-icon-close', options.classes.close],
				title  : ['yith-plugin-fw__modal__title', options.classes.title],
				content: ['yith-plugin-fw__modal__content', options.classes.content],
				footer : ['yith-plugin-fw__modal__footer', options.classes.footer]
			},
			dom            = {
				wrap   : false,
				main   : false,
				close  : false,
				title  : false,
				content: false,
				footer : false
			},
			initialize     = function () {
				handleClose();

				create();
				initEvents();
			},
			handleClose    = function () {
				$( '.yith-plugin-fw__modal__wrap' ).remove();
				container.removeClass( 'yith-plugin-fw__modal--opened' );
				container.removeClass( 'yith-plugin-fw__modal--allow-wp-menu' );
				container.removeClass( 'yith-plugin-fw__modal--allow-wp-menu-in-mobile' );

				if ( typeof options.onClose === 'function' ) {
					options.onClose();
				}
			},
			create         = function () {
				dom.wrap    = $( '<div class="' + cssClasses( classes.wrap ) + '">' );
				dom.main    = $( '<div class="' + cssClasses( classes.main ) + '">' );
				dom.close   = $( '<span class="' + cssClasses( classes.close ) + '">' );
				dom.title   = $( '<div class="' + cssClasses( classes.title ) + '">' );
				dom.content = $( '<div class="' + cssClasses( classes.content ) + '">' );
				dom.footer  = $( '<div class="' + cssClasses( classes.footer ) + '">' );

				dom.main.css( { width: options.width } );


				if ( options.title ) {
					if ( typeof options.title === 'string' ) {
						dom.title.html( options.title );
					} else {
						dom.title.append( options.title );
					}
				}

				if ( options.content ) {
					if ( typeof options.content === 'string' ) {
						dom.content.html( options.content );
					} else {
						dom.content.append( options.content );
					}
				}

				if ( options.showClose ) {
					dom.main.append( dom.close );
				}

				dom.main.append( dom.title );
				dom.main.append( dom.content );


				if ( options.footer ) {
					if ( typeof options.footer === 'string' ) {
						dom.footer.html( options.footer );
					} else {
						dom.footer.append( options.footer );
					}

					dom.main.append( dom.footer );
				}


				dom.wrap.append( dom.main );

				if ( options.scrollContent ) {
					dom.wrap.addClass( 'yith-plugin-fw__modal__wrap--scroll-content' );
				}

				container.append( dom.wrap );
				container.addClass( 'yith-plugin-fw__modal--opened' );
				if ( options.allowWpMenu ) {
					container.addClass( 'yith-plugin-fw__modal--allow-wp-menu' );
				}

				if ( options.allowWpMenuInMobile ) {
					container.addClass( 'yith-plugin-fw__modal--allow-wp-menu-in-mobile' );
				}

				if ( typeof options.onCreate === 'function' ) {
					options.onCreate();
				}
			},
			initEvents     = function () {
				dom.close.on( 'click', handleClose );
				if ( options.closeSelector ) {
					container.on( 'click', options.closeSelector, handleClose );
				}

				if ( options.closeWhenClickingOnOverlay ) {
					dom.wrap.on( 'click', handleClose );
					dom.main.on( 'click', stopEventPropagation );
				}

				$( document ).on( 'keydown', handleKeyboard );
			},
			handleKeyboard = function ( event ) {
				if ( options.allowClosingWithEsc && event.keyCode === 27 ) {
					handleClose();
				}
			};

		initialize();

		self.elements = $.extend( {}, dom );
		self.close    = handleClose;

		return self;
	};

} )( window.jQuery, window.yith );
PK`x1\���I��+plugin-fw/assets/js/yith-colorpicker.min.jsnu�[���/**!
 * wp-color-picker-alpha
 *
 * Overwrite Automattic Iris for enabled Alpha Channel in wpColorPicker
 * Only run in input and is defined data alpha in true
 *
 * Version: 3.0.0
 * https://github.com/kallookoo/wp-color-picker-alpha
 * Licensed under the GPLv2 license or later.
 */
!function(e,a){var l,o={version:300};if("wpColorPickerAlpha"in window&&"version"in window.wpColorPickerAlpha){var t=parseInt(window.wpColorPickerAlpha.version,10);if(!isNaN(t)&&o.version<=t)return}Color.fn.hasOwnProperty("to_s")||(Color.fn.to_s=function(o){"hex"===(o=o||"hex")&&this._alpha<1&&(o="rgba");var a="";return"hex"===o?a=this.toString():this.error||(a=this.toCSS(o).replace(/\(\s+/,"(").replace(/\s+\)/,")")),a},window.wpColorPickerAlpha=o,l="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAIAAAHnlligAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAHJJREFUeNpi+P///4EDBxiAGMgCCCAGFB5AADGCRBgYDh48CCRZIJS9vT2QBAggFBkmBiSAogxFBiCAoHogAKIKAlBUYTELAiAmEtABEECk20G6BOmuIl0CIMBQ/IEMkO0myiSSraaaBhZcbkUOs0HuBwDplz5uFJ3Z4gAAAABJRU5ErkJggg==",e.widget("a8c.iris",e.a8c.iris,{alphaOptions:{alphaEnabled:!1},_getColor:function(o){return o===a&&(o=this._color),this.alphaOptions.alphaEnabled?(o=o.to_s(this.alphaOptions.alphaColorType),this.alphaOptions.alphaColorWithSpace||(o=o.replace(/\s+/g,"")),o):o.toString()},_create:function(){try{this.alphaOptions=this.element.wpColorPicker("instance").alphaOptions}catch(o){}e.extend({},this.alphaOptions,{alphaEnabled:!1,alphaCustomWidth:130,alphaReset:!1,alphaColorType:"hex",alphaColorWithSpace:!1}),this._super()},_addInputListeners:function(i){function o(o){var a=i.val(),t=new Color(a),a=a.replace(/^(#|(rgb|hsl)a?)/,""),r=l.alphaOptions.alphaColorType;i.removeClass("iris-error"),t.error?""!==a&&i.addClass("iris-error"):"hex"===r&&"keyup"===o.type&&a.match(/^[0-9a-fA-F]{3}$/)||t.toIEOctoHex()!==l._color.toIEOctoHex()&&l._setOption("color",l._getColor(t))}var l=this;i.on("change",o).on("keyup",l._debounce(o,100)),l.options.hide&&i.one("focus",function(){l.show()})},_initControls:function(){var t,o,a,r;this._super(),this.alphaOptions.alphaEnabled&&(a=(o=(t=this).controls.strip.clone(!1,!1)).find(".iris-slider-offset"),r={stripAlpha:o,stripAlphaSlider:a},o.addClass("iris-strip-alpha"),a.addClass("iris-slider-offset-alpha"),o.appendTo(t.picker.find(".iris-picker-inner")),e.each(r,function(o,a){t.controls[o]=a}),t.controls.stripAlphaSlider.slider({orientation:"vertical",min:0,max:100,step:1,value:parseInt(100*t._color._alpha),slide:function(o,a){t.active="strip",t._color._alpha=parseFloat(a.value/100),t._change.apply(t,arguments)}}))},_dimensions:function(o){if(this._super(o),this.alphaOptions.alphaEnabled){for(var a=this,t=a.options,r=a.controls.square,o=a.picker.find(".iris-strip"),i=Math.round(a.picker.outerWidth(!0)-(t.border?22:0)),l=Math.round(r.outerWidth()),e=Math.round((i-l)/2),s=Math.round(e/2),n=Math.round(l+2*e+2*s);i<n;)e=Math.round(e-2),s=Math.round(s-1),n=Math.round(l+2*e+2*s);r.css("margin","0"),o.width(e).css("margin-left",s+"px")}},_change:function(){var o,a,t,r=this,i=r.active;r._super(),r.alphaOptions.alphaEnabled&&(o=r.controls,a=parseInt(100*r._color._alpha),t=["rgb("+(t=r._color.toRgb()).r+","+t.g+","+t.b+") 0%","rgba("+t.r+","+t.g+","+t.b+", 0) 100%"],r.picker.closest(".wp-picker-container").find(".wp-color-result"),r.options.color=r._getColor(),o.stripAlpha.css({background:"linear-gradient(to bottom, "+t.join(", ")+"), url("+l+")"}),i&&o.stripAlphaSlider.slider("value",a),r._color.error||r.element.removeClass("iris-error").val(r.options.color),r.picker.find(".iris-palette-container").on("click.palette",".iris-palette",function(){var o=e(this).data("color");r.alphaOptions.alphaReset&&(r._color._alpha=1,o=r._getColor()),r._setOption("color",o)}))},_paintDimension:function(o,a){var t=this,r=!1;t.alphaOptions.alphaEnabled&&"strip"===a&&(r=t._color,t._color=new Color(r.toString()),t.hue=t._color.h()),t._super(o,a),r&&(t._color=r)},_setOption:function(o,a){var t=this;if("color"!==o||!t.alphaOptions.alphaEnabled)return t._super(o,a);a=""+a,newColor=new Color(a).setHSpace(t.options.mode),newColor.error||t._getColor(newColor)===t._getColor()||(t._color=newColor,t.options.color=t._getColor(),t.active="external",t._change())},color:function(o){return!0===o?this._color.clone():o===a?this._getColor():void this.option("color",o)}}),e.widget("wp.wpColorPicker",e.wp.wpColorPicker,{alphaOptions:{alphaEnabled:!1},_getAlphaOptions:function(){var r=this.element,o=r.data("type")||this.options.type,i=r.data("defaultColor")||r.val(),l={alphaEnabled:r.data("alphaEnabled")||!1,alphaCustomWidth:130,alphaReset:!1,alphaColorType:"rgb",alphaColorWithSpace:!1};return l.alphaEnabled&&(l.alphaEnabled=r.is("input")&&"full"===o),l.alphaEnabled&&(l.alphaColorWithSpace=i&&i.match(/\s/),e.each(l,function(o,a){var t=r.data(o)||a;switch(o){case"alphaCustomWidth":t=t?parseInt(t,10):0,t=isNaN(t)?a:t;break;case"alphaColorType":t.match(/^(hex|(rgb|hsl)a?)$/)||(t=i&&i.match(/^#/)?"hex":i&&i.match(/^hsla?/)?"hsl":a);break;default:t=!!t}l[o]=t})),l},_create:function(){e.support.iris&&(this.alphaOptions=this._getAlphaOptions(),this._super())},_addListeners:function(){if(!this.alphaOptions.alphaEnabled)return this._super();var t=this,r=t.element,i=t.toggler.is("a");this.alphaOptions.defaultWidth=r.width(),this.alphaOptions.alphaCustomWidth&&r.width(parseInt(this.alphaOptions.defaultWidth+this.alphaOptions.alphaCustomWidth,10)),t.toggler.css({position:"relative","background-image":"url("+l+")"}),i?t.toggler.html('<span class="color-alpha" />'):t.toggler.append('<span class="color-alpha" />'),t.colorAlpha=t.toggler.find("span.color-alpha").css({width:"30px",height:"100%",position:"absolute",top:0,"background-color":r.val()}),"ltr"===t.colorAlpha.css("direction")?t.colorAlpha.css({"border-bottom-left-radius":"2px","border-top-left-radius":"2px",left:0}):t.colorAlpha.css({"border-bottom-right-radius":"2px","border-top-right-radius":"2px",right:0}),r.iris({change:function(o,a){t.colorAlpha.css({"background-color":a.color.to_s(t.alphaOptions.alphaColorType)}),e.isFunction(t.options.change)&&t.options.change.call(this,o,a)}}),t.wrap.on("click.wpcolorpicker",function(o){o.stopPropagation()}),t.toggler.click(function(){t.toggler.hasClass("wp-picker-open")?t.close():t.open()}),r.change(function(o){var a=e(this).val();(r.hasClass("iris-error")||""===a||a.match(/^(#|(rgb|hsl)a?)$/))&&(i&&t.toggler.removeAttr("style"),t.colorAlpha.css("background-color",""),e.isFunction(t.options.clear)&&t.options.clear.call(this,o))}),t.button.click(function(o){e(this).hasClass("wp-picker-default")?r.val(t.options.defaultColor).change():e(this).hasClass("wp-picker-clear")&&(r.val(""),i&&t.toggler.removeAttr("style"),t.colorAlpha.css("background-color",""),e.isFunction(t.options.clear)&&t.options.clear.call(this,o),r.trigger("change"))})}}))}(jQuery);PK`x1\��II%plugin-fw/assets/js/yith-promo.min.jsnu�[���!function(i){i(document).on("click",".notice-dismiss",function(){var e=i(this).parent("div.yith-notice-is-dismissible"),t=e.attr("id");if(void 0!==t){var s="hide_"+t,n=e.data("expiry"),o=new Date(n);o.setUTCHours(23),o.setUTCMinutes(59),o.setUTCSeconds(59),document.cookie=s+"=yes;expires="+o.toUTCString()+";path=/"}})}(jQuery);PK`x1\٧Qauu"plugin-fw/assets/js/yith-ui.min.jsnu�[���window.yith=window.yith||{},function(n,e){e.ui=e.ui||{};var o=function(n){if("string"==typeof n)return n;var e=[];for(var t of n)t&&e.indexOf(t)<0&&e.push(o(t));return e.join(" ")},t=function(n){n.stopPropagation()};e.ui.confirm=function(t){var l={title:!1,message:!1,onCreate:!1,onConfirm:!1,onCancel:!1,onClose:!1,classes:{wrap:"",content:"",title:"",message:"",footer:"",cancel:"",confirm:""},confirmButtonType:"confirm",cancelButton:yith_plugin_fw_ui.i18n.cancel,confirmButton:yith_plugin_fw_ui.i18n.confirm,width:350,closeAfterConfirm:!0,allowWpMenu:!1,allowWpMenuInMobile:!1,showClose:!0,closeWhenClickingOnOverlay:!1},i={};t=void 0!==t?t:{},(t=n.extend({},l,t)).classes=n.extend({},l.classes,t.classes);var s={wrap:o(["yith-plugin-fw__confirm__wrap",t.classes.wrap]),content:o(["yith-plugin-fw__confirm__content",t.classes.content]),title:o(["yith-plugin-fw__confirm__title",t.classes.title]),message:o(["yith-plugin-fw__confirm__message",t.classes.message]),footer:o(["yith-plugin-fw__confirm__footer",t.classes.footer]),cancel:o(["yith-plugin-fw__confirm__button","yith-plugin-fw__confirm__button--cancel",t.classes.cancel]),confirm:o(["yith-plugin-fw__confirm__button","yith-plugin-fw__confirm__button--"+t.confirmButtonType,t.classes.confirm])},c={message:!1,footer:!1,cancel:!1,confirm:!1},a=!1,r=function(){a&&a.close(),a=!1},f=function(){"function"==typeof t.onCancel&&t.onCancel(),r()},p=function(){"function"==typeof t.onConfirm&&t.onConfirm(),t.closeAfterConfirm&&r()},m=function(){c.cancel.on("click",f),c.confirm.on("click",p)};(function(){c.message=n('<div class="'+s.message+'">'),c.footer=n('<div class="'+s.footer+'">'),c.cancel=n('<span class="'+s.cancel+'">'+t.cancelButton+"</span>"),c.confirm=n('<span class="'+s.confirm+'">'+t.confirmButton+"</span>"),t.message&&c.message.html(t.message),c.footer.append(c.cancel),c.footer.append(c.confirm),a=e.ui.modal({classes:{wrap:s.wrap,title:s.title,content:s.content},title:t.title,content:[c.message,c.footer],width:t.width,allowWpMenu:t.allowWpMenu,allowWpMenuInMobile:t.allowWpMenuInMobile,showClose:t.showClose,onCreate:t.onCreate,onClose:t.onClose,closeWhenClickingOnOverlay:t.closeWhenClickingOnOverlay})})(),m(),i.elements=n.extend({},c),i.modal=n.extend({},a),i.close=r,i.cancel=f},e.ui.modal=function(e){var l={allowWpMenu:!0,allowWpMenuInMobile:!1,title:!1,content:!1,footer:!1,showClose:!0,closeSelector:!1,classes:{wrap:"",main:"",close:"",title:"",content:"",footer:""},width:500,allowClosingWithEsc:!0,closeWhenClickingOnOverlay:!1,scrollContent:!0,onCreate:!1,onClose:!1},i={};e=void 0!==e?e:{},(e=n.extend({},l,e)).classes=n.extend({},l.classes,e.classes);var s=n("#wpwrap"),c={wrap:["yith-plugin-ui","yith-plugin-fw__modal__wrap",e.classes.wrap],main:["yith-plugin-fw__modal__main",e.classes.main],close:["yith-plugin-fw__modal__close","yith-icon","yith-icon-close",e.classes.close],title:["yith-plugin-fw__modal__title",e.classes.title],content:["yith-plugin-fw__modal__content",e.classes.content],footer:["yith-plugin-fw__modal__footer",e.classes.footer]},a={wrap:!1,main:!1,close:!1,title:!1,content:!1,footer:!1},r=function(){n(".yith-plugin-fw__modal__wrap").remove(),s.removeClass("yith-plugin-fw__modal--opened"),s.removeClass("yith-plugin-fw__modal--allow-wp-menu"),s.removeClass("yith-plugin-fw__modal--allow-wp-menu-in-mobile"),"function"==typeof e.onClose&&e.onClose()},f=function(){a.wrap=n('<div class="'+o(c.wrap)+'">'),a.main=n('<div class="'+o(c.main)+'">'),a.close=n('<span class="'+o(c.close)+'">'),a.title=n('<div class="'+o(c.title)+'">'),a.content=n('<div class="'+o(c.content)+'">'),a.footer=n('<div class="'+o(c.footer)+'">'),a.main.css({width:e.width}),e.title&&("string"==typeof e.title?a.title.html(e.title):a.title.append(e.title)),e.content&&("string"==typeof e.content?a.content.html(e.content):a.content.append(e.content)),e.showClose&&a.main.append(a.close),a.main.append(a.title),a.main.append(a.content),e.footer&&("string"==typeof e.footer?a.footer.html(e.footer):a.footer.append(e.footer),a.main.append(a.footer)),a.wrap.append(a.main),e.scrollContent&&a.wrap.addClass("yith-plugin-fw__modal__wrap--scroll-content"),s.append(a.wrap),s.addClass("yith-plugin-fw__modal--opened"),e.allowWpMenu&&s.addClass("yith-plugin-fw__modal--allow-wp-menu"),e.allowWpMenuInMobile&&s.addClass("yith-plugin-fw__modal--allow-wp-menu-in-mobile"),"function"==typeof e.onCreate&&e.onCreate()},p=function(){a.close.on("click",r),e.closeSelector&&s.on("click",e.closeSelector,r),e.closeWhenClickingOnOverlay&&(a.wrap.on("click",r),a.main.on("click",t)),n(document).on("keydown",m)},m=function(n){e.allowClosingWithEsc&&27===n.keyCode&&r()};return r(),f(),p(),i.elements=n.extend({},a),i.close=r,i}}(window.jQuery,window.yith);PK`x1\]���plugin-fw/assets/js/wp-pages.jsnu�[���/* global yith_plugin_fw_wp_pages */
jQuery( function ( $ ) {
	var wrap    = $( '.yith-plugin-fw-wp-page-wrapper' ),
		notices = $( 'div.updated, div.error, div.notice' ).not( '#message' ),
		message = $( 'div#message.updated' );

	// prevents the WC message for changes when leaving the panel page
	$( '.yith-plugin-fw-wp-page-wrapper .woo-nav-tab-wrapper' ).removeClass( 'woo-nav-tab-wrapper' ).addClass( 'yith-nav-tab-wrapper' );

	// prevent moving notices withing the tab in WP Pages and move them into the wrapper
	notices.addClass( 'inline' );
	if ( wrap.length ) {
		wrap.prepend( notices );
	}

	// Update message animation.
	if ( message.length ) {
		message.addClass( 'yith-plugin-fw-animate__appear-from-top' ).show();
		message.on( 'click', '.notice-dismiss', function ( e ) {
			e.stopPropagation();
			message.removeClass( 'yith-plugin-fw-animate__appear-from-top' ).slideUp( 200 );
		} )
	}

	// Confirmation window when deleting custom post types and custom terms through Bulk Actions.
	if ( yith_plugin_fw_wp_pages.bulk_delete_confirmation_enabled ) {
		var bulkDeleteConfirmed = false;

		$( document ).on( 'click', '#doaction, #doaction2', function ( e ) {
			var doActionButton     = $( this ),
				bulkActionSelector = doActionButton.siblings( '#bulk-action-selector-top, #bulk-action-selector-bottom' );

			if ( 'yith' in window && 'ui' in yith ) {
				if ( bulkDeleteConfirmed ) {
					bulkDeleteConfirmed = false;
				} else {
					var confirmOptions = {},
						selectedItems  = $( '#the-list .check-column input[type=checkbox]:checked' );

					if ( selectedItems.length ) {
						switch ( bulkActionSelector.val() ) {
							case 'trash':
								confirmOptions.title             = yith_plugin_fw_wp_pages.i18n.bulk_trash_confirm_title;
								confirmOptions.message           = yith_plugin_fw_wp_pages.i18n.bulk_trash_confirm_message;
								confirmOptions.cancelButton      = yith_plugin_fw_wp_pages.i18n.bulk_trash_cancel_button;
								confirmOptions.confirmButton     = yith_plugin_fw_wp_pages.i18n.bulk_trash_confirm_button;
								confirmOptions.confirmButtonType = 'delete';
								break;
							case 'delete':
								confirmOptions.title             = yith_plugin_fw_wp_pages.i18n.bulk_delete_confirm_title;
								confirmOptions.message           = yith_plugin_fw_wp_pages.i18n.bulk_delete_confirm_message;
								confirmOptions.cancelButton      = yith_plugin_fw_wp_pages.i18n.bulk_delete_cancel_button;
								confirmOptions.confirmButton     = yith_plugin_fw_wp_pages.i18n.bulk_delete_confirm_button;
								confirmOptions.confirmButtonType = 'delete';
								break;
						}

						if ( !$.isEmptyObject( confirmOptions ) ) {
							e.preventDefault();

							confirmOptions.closeAfterConfirm = false;
							confirmOptions.onConfirm         = function () {
								bulkDeleteConfirmed = true;
								doActionButton.trigger( 'click' );
							};

							yith.ui.confirm( confirmOptions );
						}
					}
				}

			}
		} );
	}

} );PK`x1\��#���!plugin-fw/assets/js/yith-promo.jsnu�[���(function ($) {
    $(document).on('click', '.notice-dismiss', function () {
        var t = $(this),
            promo_wrapper = t.parent('div.yith-notice-is-dismissible'),
            promo_id = promo_wrapper.attr('id');

        if (typeof promo_id != 'undefined') {
            var cname = 'hide_' + promo_id,
                cvalue = 'yes',
                expiry = promo_wrapper.data('expiry'),
                expiry_date = new Date(expiry);

            expiry_date.setUTCHours( 23 );
            expiry_date.setUTCMinutes( 59 );
            expiry_date.setUTCSeconds( 59 );

            document.cookie = cname + "=" + cvalue + ";" + 'expires=' + expiry_date.toUTCString() + ";path=/";
        }
    });
})(jQuery);
PK`x1\��88+plugin-fw/assets/js/yit-plugin-panel.min.jsnu�[���jQuery(function(e){function t(){e("[data-dep-target]:not( .deps-initialized )").each(function(){var t=e(this);if(!t.closest(".metaboxes-tab").length){t.addClass("deps-initialized");var a="#"+t.data("dep-target"),i="#"+t.data("dep-id"),n=t.data("dep-value"),o=t.data("dep-type");e(i).on("change",function(){!function(t,a,i,n){var o=!0;if("string"==typeof a){":radio"===a.substr(0,6)&&(a+=":checked");var r=e(a),d=r.attr("type"),s=r.val();switch(d){case"checkbox":s=r.is(":checked")?"yes":"no";break;case"radio":s=r.find('input[type="radio"]').filter(":checked").val()}i=i.split(",");for(var c=0;c<i.length;c++){if(s==i[c]){o=!0;break}o=!1}}var l=e(t),h=e(t+"-container").closest("tr");h.length<1&&(h=l.closest(".yith-plugin-fw-panel-wc-row, .yith-toggle-content-row"));var u,g=n.split("-");for(u in g){var f=g[u];if(o)switch(f){case"disable":h.removeClass("yith-disabled"),l.attr("disabled",!1);break;case"hide":case"hideNow":h.show();break;case"hideme":l.show();break;case"fadeOut":h.show();break;case"fadeInOut":case"fadeIn":default:h.show(500)}else switch(f){case"disable":h.addClass("yith-disabled"),l.attr("disabled",!0);break;case"hide":case"hideNow":h.hide();break;case"hideme":l.hide();break;case"fadeInOut":case"fadeOut":h.hide(500);break;case"fadeIn":default:h.hide()}}}(a,i,n.toString(),o)}).trigger("change")}})}t(),e(document).on("yith-add-box-button-toggle",t),e(".rm_connectedlist").each(function(){var t=e(this).find("ul"),a=e(this).find(":hidden");t.sortable({connectWith:t,update:function(i,n){var o={};t.each(function(){var t={};e(this).children().each(function(){t[e(this).data("option")]=e(this).text()}),o[e(this).data("list")]=t}),a.val(JSON.stringify(o).replace(/[\\"']/g,"\\$&").replace(/\u0000/g,"\\0"))}}).disableSelection()}),e(function(){e(".google-analytic-generate").click(function(){var t=e("#"+e(this).data("textarea")).data("codemirrorInstance"),a="(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){\n";a+="(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement( o ),\n",a+="m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)\n",a+="})(window,document,'script','//www.google-analytics.com/analytics.js','ga');\n\n",a+="ga('create', '"+e("#"+e(this).data("input")).val()+"', '"+e(this).data("basename")+"');\n",a+="ga('send', 'pageview');\n",t.replaceRange(a,t.getCursor("start"),t.getCursor("end"))})}),e(".yith-plugin-fw-panel .woo-nav-tab-wrapper").removeClass("woo-nav-tab-wrapper").addClass("yith-nav-tab-wrapper");var a=e(".wrap.yith-plugin-ui").first(),i=e("div.updated, div.error, div.notice");i.addClass("inline"),a.length&&a.prepend(i),function(){var t=e(".yith-nav-sub-tab.nav-tab-active"),a=e(".yith-plugin-fw-wp-page__sub-tab-wrap");if(t.length&&!a.length){var i=e(".yith-plugin-fw-wp-page-wrapper");if(i.length||(i=e("#wpbody-content > .yith-plugin-ui")),i){var n=i.find(".yit-admin-panel-content-wrap");n.length?n.addClass("has-subnav"):i.find(".wrap").wrap('<div class="yith-plugin-fw-wp-page__sub-tab-wrap"></div>')}}}(),function(){var t=e("#yith-plugin-fw-float-save-button"),a=e("#plugin-fw-wc"),i=document.querySelector("#main-save-button");function n(){var e,a;e=i.getBoundingClientRect(),a={width:window.innerWidth||document.documentElement.clientWidth,height:window.innerHeight||document.documentElement.clientHeight},e.top>=0&&e.left>=0&&e.top<=a.height&&e.left<=a.width?t.removeClass("visible"):t.addClass("visible")}t.length>0&&a.length>0&&(n(),document.addEventListener("scroll",n,{passive:!0}),e(document).on("click","#yith-plugin-fw-float-save-button",function(i){i.preventDefault(),"tinyMCE"in window&&"triggerSave"in window.tinyMCE&&window.tinyMCE.triggerSave(),e(".codemirror.codemirror--initialized").each(function(){var t=e(this).data("codemirrorInstance")||!1;t&&"codemirror"in t&&t.codemirror.save()}),t.block({message:null,overlayCSS:{background:"transparent",opacity:.6}}),e.post(document.location.href,a.serialize()).done(function(a){t.unblock().addClass("green").fadeOut(300).html('<i class="yith-icon yith-icon-check"></i>'+t.data("saved-label")).fadeIn(300).delay(2500).queue(function(a){t.fadeOut(500,function(){e(this).removeClass("green"),e(this).html('<i class="yith-icon yith-icon-save"></i>'+e(this).data("default-label")).fadeIn(500)}),a()}),window.onbeforeunload=null,e(document).trigger("yith-plugin-fw-float-save-button-after-saving",[a])})}))}()});PK`x1\.@`1#1#'plugin-fw/assets/js/yit-plugin-panel.jsnu�[���/**
 * This file belongs to the YIT Plugin Framework.
 *
 * This source file is subject to the GNU GENERAL PUBLIC LICENSE (GPL 3.0)
 * that is bundled with this package in the file LICENSE.txt.
 * It is also available through the world-wide-web at this URL:
 * http://www.gnu.org/licenses/gpl-3.0.txt
 */

jQuery( function ( $ ) {
	// Handle dependencies.
	function dependencies_handler( id, deps, values, type ) {
		var result = true;
		if ( typeof ( deps ) == 'string' ) {
			if ( deps.substr( 0, 6 ) === ':radio' ) {
				deps = deps + ':checked';
			}

			var depsOn     = $( deps ),
				depsOnType = depsOn.attr( 'type' ),
				val        = depsOn.val();

			switch ( depsOnType ) {
				case 'checkbox':
					val = depsOn.is( ':checked' ) ? 'yes' : 'no';
					break;
				case 'radio':
					val = depsOn.find( 'input[type="radio"]' ).filter( ':checked' ).val();
					break;
			}

			values = values.split( ',' );

			for ( var i = 0; i < values.length; i++ ) {
				if ( val != values[ i ] ) {
					result = false;
				} else {
					result = true;
					break;
				}
			}
		}

		var $current_field     = $( id ),
			$current_container = $( id + '-container' ).closest( 'tr' ); // container for YIT Plugin Panel

		if ( $current_container.length < 1 ) {
			// container for YIT Plugin Panel WooCommerce
			$current_container = $current_field.closest( '.yith-plugin-fw-panel-wc-row, .yith-toggle-content-row' );
		}

		var types = type.split( '-' ), j;
		for ( j in types ) {
			var current_type = types[ j ];

			if ( !result ) {
				switch ( current_type ) {
					case 'disable':
						$current_container.addClass( 'yith-disabled' );
						$current_field.attr( 'disabled', true );
						break;
					case 'hide':
					case 'hideNow':
						$current_container.hide();
						break;
					case 'hideme':
						$current_field.hide();
						break;
					case 'fadeInOut':
					case 'fadeOut':
						$current_container.hide( 500 );
						break;
					case 'fadeIn':
					default:
						$current_container.hide();
				}
			} else {
				switch ( current_type ) {
					case 'disable':
						$current_container.removeClass( 'yith-disabled' );
						$current_field.attr( 'disabled', false );
						break;
					case 'hide':
					case 'hideNow':
						$current_container.show();
						break;
					case 'hideme':
						$current_field.show();
						break;
					case 'fadeOut':
						$current_container.show();
						break;
					case 'fadeInOut':
					case 'fadeIn':
					default:
						$current_container.show( 500 );
				}
			}
		}
	}

	function init_dependencies() {
		$( '[data-dep-target]:not( .deps-initialized )' ).each( function () {
			var t = $( this );

			if ( t.closest( '.metaboxes-tab' ).length ) {
				// Let meta-boxes handle their own deps.
				return;
			}

			// init field deps
			t.addClass( 'deps-initialized' );

			var field = '#' + t.data( 'dep-target' ),
				dep   = '#' + t.data( 'dep-id' ),
				value = t.data( 'dep-value' ),
				type  = t.data( 'dep-type' );

			$( dep ).on( 'change', function () {
				dependencies_handler( field, dep, value.toString(), type );
			} ).trigger( 'change' );
		} );
	}

	init_dependencies();
	// re-init deps after an add toggle action
	$( document ).on( 'yith-add-box-button-toggle', init_dependencies );

	//connected list
	$( '.rm_connectedlist' ).each( function () {
		var ul       = $( this ).find( 'ul' );
		var input    = $( this ).find( ':hidden' );
		var sortable = ul.sortable( {
										connectWith: ul,
										update     : function ( event, ui ) {
											var value = {};

											ul.each( function () {
												var options = {};

												$( this ).children().each( function () {
													options[ $( this ).data( 'option' ) ] = $( this ).text();
												} );

												value[ $( this ).data( 'list' ) ] = options;
											} );

											input.val( ( JSON.stringify( value ) ).replace( /[\\"']/g, '\\$&' ).replace( /\u0000/g, '\\0' ) );
										}
									} ).disableSelection();
	} );

	//google analytics generation
	$( function () {
		$( '.google-analytic-generate' ).click( function () {
			var editor   = $( '#' + $( this ).data( 'textarea' ) ).data( 'codemirrorInstance' );
			var gatc     = $( '#' + $( this ).data( 'input' ) ).val();
			var basename = $( this ).data( 'basename' );

			var text = "(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){\n";
			text += "(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement( o ),\n";
			text += "m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)\n";
			text += "})(window,document,'script','//www.google-analytics.com/analytics.js','ga');\n\n";
			text += "ga('create', '" + gatc + "', '" + basename + "');\n";
			text += "ga('send', 'pageview');\n";
			editor.replaceRange(
				text,
				editor.getCursor( 'start' ),
				editor.getCursor( 'end' )
			);
		} );
	} );


	// Prevent the WC message for changes when leaving the panel page
	$( '.yith-plugin-fw-panel .woo-nav-tab-wrapper' ).removeClass( 'woo-nav-tab-wrapper' ).addClass( 'yith-nav-tab-wrapper' );

	var wrap    = $( '.wrap.yith-plugin-ui' ).first(),
		notices = $( 'div.updated, div.error, div.notice' );

	// Prevent moving notices into the wrapper
	notices.addClass( 'inline' );
	if ( wrap.length ) {
		wrap.prepend( notices );
	}


	// Additional wrapping just in case 'wrap' div is placed within a sub-tab and it's not already wrapped twice.
	// TODO: Deprecated usage, it'll be removed, since also custom panels should use the automatic-wrapping through 'show_container' param.
	( function () {
		var active_subnav = $( '.yith-nav-sub-tab.nav-tab-active' ),
			subnav_wrap   = $( '.yith-plugin-fw-wp-page__sub-tab-wrap' );

		if ( active_subnav.length && !subnav_wrap.length ) {
			var mainWrapper = $( '.yith-plugin-fw-wp-page-wrapper' );
			if ( !mainWrapper.length ) {
				mainWrapper = $( '#wpbody-content > .yith-plugin-ui' );
			}

			if ( mainWrapper ) {
				var defaultWrap = mainWrapper.find( '.yit-admin-panel-content-wrap' ); // at first, search for default wrap.
				if ( defaultWrap.length ) {
					defaultWrap.addClass( 'has-subnav' );
				} else {
					// try to wrap a generic wrap div in main wrapper
					mainWrapper.find( '.wrap' ).wrap( '<div class="yith-plugin-fw-wp-page__sub-tab-wrap"></div>' );
				}
			}
		}
	} )();

	// Float save button.
	( function () {
		var floatSaveButton = $( '#yith-plugin-fw-float-save-button' ),
			mainForm        = $( '#plugin-fw-wc' ),
			saveButton      = document.querySelector( '#main-save-button' );

		function updateValuesForSpecialEditors() {
			if ( 'tinyMCE' in window && 'triggerSave' in window.tinyMCE ) {
				// Trigger saving to serialize the correct value for WP Editors.
				window.tinyMCE.triggerSave();
			}

			// Trigger saving to serialize the correct value for each Codemirror Editor.
			$( '.codemirror.codemirror--initialized' ).each( function () {
				var editor = $( this ).data( 'codemirrorInstance' ) || false;
				if ( editor && 'codemirror' in editor ) {
					editor.codemirror.save();
				}
			} );
		}

		function checkButtonPosition() {
			if ( isInViewport( saveButton ) ) {
				floatSaveButton.removeClass( 'visible' );
			} else {
				floatSaveButton.addClass( 'visible' );
			}
		}

		function isInViewport( el ) {
			var rect     = el.getBoundingClientRect(),
				viewport = {
					width : window.innerWidth || document.documentElement.clientWidth,
					height: window.innerHeight || document.documentElement.clientHeight
				};
			return (
				rect.top >= 0 &&
				rect.left >= 0 &&
				rect.top <= viewport.height &&
				rect.left <= viewport.width
			);
		}

		if ( floatSaveButton.length > 0 && mainForm.length > 0 ) {
			checkButtonPosition();
			document.addEventListener( 'scroll', checkButtonPosition, { passive: true } );

			$( document ).on( 'click', '#yith-plugin-fw-float-save-button', function ( e ) {
				e.preventDefault();

				updateValuesForSpecialEditors();

				floatSaveButton.block(
					{
						message   : null,
						overlayCSS: {
							background: 'transparent',
							opacity   : 0.6
						}
					}
				);
				$.post( document.location.href, mainForm.serialize() )
					.done( function ( response ) {
						floatSaveButton.unblock()
							.addClass( 'green' )
							.fadeOut( 300 )
							.html( '<i class="yith-icon yith-icon-check"></i>' + floatSaveButton.data( 'saved-label' ) )
							.fadeIn( 300 )
							.delay( 2500 )
							.queue(
								function ( next ) {
									floatSaveButton.fadeOut(
										500,
										function () {
											$( this ).removeClass( 'green' );
											$( this ).html( '<i class="yith-icon yith-icon-save"></i>' + $( this ).data( 'default-label' ) ).fadeIn( 500 );
										}
									);
									next();
								} );

						// Prevent WooCommerce warning for changes without saving.
						window.onbeforeunload = null;

						$( document ).trigger( 'yith-plugin-fw-float-save-button-after-saving', [response] );
					} );
			} )
		}
	} )();

} );
PK`x1\�˿4�!�!(plugin-fw/assets/js/multisite-updater.jsnu�[���/**
 * This file belongs to the YIT Framework.
 *
 * This source file is subject to the GNU GENERAL PUBLIC LICENSE (GPL 3.0)
 * that is bundled with this package in the file LICENSE.txt.
 * It is also available through the world-wide-web at this URL:
 * http://www.gnu.org/licenses/gpl-3.0.txt
 */
(function ( $ ) {

    var plugins_menu_item = $( '#menu-plugins' ),
        update            = plugins_menu_item.find( '.update-plugins' ),
        count             = update.find( ".plugin-count" ).text(),
        registered        = plugins.registered,
        activated         = plugins.activated;

    if ( count == 0 || count == '' ) {
        var update_row = '<span class="update-plugins"><span class="plugin-count"></span></span>';
        count          = 0;
        plugins_menu_item.find( '.wp-menu-name' ).append( update_row );
    }

    /**
     * Add the plugin update rows for old plugins
     */
    update_plugins_row( registered, activated, count, plugins );

    /**
     *
     * Add the update plugin rows for old plugin
     *
     * @author Andrea Grillo <andrea.grillo@yithemes.com>
     *
     * @param registered Registred plugins
     * @param activated Activated plugins
     * @param count     Number of old plugins
     * @param localize  Localize strings array
     *
     * @return void
     */
    function update_plugins_row( registered, activated, count, localize ) {
        for ( var init in registered ) {
            var plugin = registered[ init ];
            for ( var headers in plugin ) {

                if ( headers == 'slug' || version_compare( plugin[ headers ].Version, plugin[ headers ].Latest, '=' ) ) {
                    continue;
                }

                count = parseInt( count ) + 1;
                $( ".plugin-count" ).empty().html( count );

                var regex = new RegExp( ' ', 'g' ),
                    info  = plugin[ headers ],
                    name  = '' + info.Name,
                    id    = name.replace( regex, '-' ).trim(),
                    row   = '*[data-slug="' + id.toLowerCase() + '"]';

                $( row ).addClass( "update" );

                var html = '<tr class="plugin-update-tr">' +
                           '<td colspan="3" class="plugin-update colspanchange">' +
                           '<div class="update-message notice inline notice-warning notice-alt">' + localize.strings.new_version.replace( '%plugin_name%', name ) +
                           '<a class="thickbox open-plugin-details-modal" href="' + localize.details_url[ init ] + '">' + localize.strings.latest.replace( '%latest%', plugin[ headers ].Latest ) + '</a>';

                if ( typeof activated[ init ] == "undefined" ) {

                    html = html +
                           ' <em>' + localize.strings.unavailable + '</em>' +
                           localize.strings.activate.replace( '%activate_link%', localize.licence_activation_url ).replace( '%plugin_name%', name );
                } else {
                    html = html +
                           '. <a href="' + localize.update_url[ init ] + '">' + localize.strings.update_now + '</a>';
                }

                if( version_compare( plugin[ headers ].Version, plugin[ headers ].Latest, '>' ) ){
                    html = html + localize.strings.version_issue.replace( '%plugin_name%', name )
                }

                html = html +
                       '</div>' +
                       '</td>' +
                       '</tr>';

                $( html ).insertAfter( row );
            }
        }
    }

    /**
     *
     * @param v1 Version 1
     * @param v2 Version 2
     * @param operator  Compare type
     * @returns bool
     *
     * @see php.js library http://phpjs.org/
     */
    function version_compare( v1, v2, operator ) {
        //       discuss at: http://phpjs.org/functions/version_compare/
        //      original by: Philippe Jausions (http://pear.php.net/user/jausions)
        //      original by: Aidan Lister (http://aidanlister.com/)
        // reimplemented by: Kankrelune (http://www.webfaktory.info/)
        //      improved by: Brett Zamir (http://brett-zamir.me)
        //      improved by: Scott Baker
        //      improved by: Theriault
        //        example 1: version_compare('8.2.5rc', '8.2.5a');
        //        returns 1: 1
        //        example 2: version_compare('8.2.50', '8.2.52', '<');
        //        returns 2: true
        //        example 3: version_compare('5.3.0-dev', '5.3.0');
        //        returns 3: -1
        //        example 4: version_compare('4.1.0.52','4.01.0.51');
        //        returns 4: 1

        this.php_js     = this.php_js || {};
        this.php_js.ENV = this.php_js.ENV || {};
        // END REDUNDANT
        // Important: compare must be initialized at 0.
        var i           = 0,
            x           = 0,
            compare     = 0,
            // vm maps textual PHP versions to negatives so they're less than 0.
            // PHP currently defines these as CASE-SENSITIVE. It is important to
            // leave these as negatives so that they can come before numerical versions
            // and as if no letters were there to begin with.
            // (1alpha is < 1 and < 1.1 but > 1dev1)
            // If a non-numerical value can't be mapped to this table, it receives
            // -7 as its value.
            vm          = {
                'dev'  : -6,
                'alpha': -5,
                'a'    : -5,
                'beta' : -4,
                'b'    : -4,
                'RC'   : -3,
                'rc'   : -3,
                '#'    : -2,
                'p'    : 1,
                'pl'   : 1
            },
            // This function will be called to prepare each version argument.
            // It replaces every _, -, and + with a dot.
            // It surrounds any nonsequence of numbers/dots with dots.
            // It replaces sequences of dots with a single dot.
            //    version_compare('4..0', '4.0') == 0
            // Important: A string of 0 length needs to be converted into a value
            // even less than an unexisting value in vm (-7), hence [-8].
            // It's also important to not strip spaces because of this.
            //   version_compare('', ' ') == 1
            prepVersion = function ( v ) {
                v = ('' + v)
                    .replace( /[_\-+]/g, '.' );
                v = v.replace( /([^.\d]+)/g, '.$1.' )
                    .replace( /\.{2,}/g, '.' );
                return (!v.length ? [ -8 ] : v.split( '.' ));
            };
        // This converts a version component to a number.
        // Empty component becomes 0.
        // Non-numerical component becomes a negative number.
        // Numerical component becomes itself as an integer.
        numVersion = function ( v ) {
            return !v ? 0 : (isNaN( v ) ? vm[ v ] || -7 : parseInt( v, 10 ));
        };
        v1         = prepVersion( v1 );
        v2         = prepVersion( v2 );
        x          = Math.max( v1.length, v2.length );
        for ( i = 0; i < x; i++ ) {
            if ( v1[ i ] == v2[ i ] ) {
                continue;
            }
            v1[ i ] = numVersion( v1[ i ] );
            v2[ i ] = numVersion( v2[ i ] );
            if ( v1[ i ] < v2[ i ] ) {
                compare = -1;
                break;
            } else if ( v1[ i ] > v2[ i ] ) {
                compare = 1;
                break;
            }
        }
        if ( !operator ) {
            return compare;
        }

        // Important: operator is CASE-SENSITIVE.
        // "No operator" seems to be treated as "<."
        // Any other values seem to make the function return null.
        switch ( operator ) {
            case '>':
            case 'gt':
                return (compare > 0);
            case '>=':
            case 'ge':
                return (compare >= 0);
            case '<=':
            case 'le':
                return (compare <= 0);
            case '==':
            case '=':
            case 'eq':
                return (compare === 0);
            case '<>':
            case '!=':
            case 'ne':
                return (compare !== 0);
            case '':
            case '<':
            case 'lt':
                return (compare < 0);
            default:
                return null;
        }
    }

    // fix ThickBox issue (width-height) when opening a changelog
    $( 'body' ).on( 'click', '.yit-changelog-button', function () {
        $( '#TB_window' ).remove();
    } );


})( jQuery );
PK`x1\�za���plugin-fw/assets/js/metabox.jsnu�[���/**
 * This file belongs to the YIT Framework.
 *
 * This source file is subject to the GNU GENERAL PUBLIC LICENSE (GPL 3.0)
 * that is bundled with this package in the file LICENSE.txt.
 * It is also available through the world-wide-web at this URL:
 * http://www.gnu.org/licenses/gpl-3.0.txt
 */
( function ( $ ) {

	$( '.metaboxes-tab' ).each( function () {
		var theMetaBox = $( this ),
			panels     = theMetaBox.find( '.tabs-panel' )

		panels.hide();

		// TODO: check if someone is directly using it, otherwise it could be removed because: 1. it doesn't take into account the possibility to have more than one meta-box in the same page; 2. it's not set anywhere.
		var activeTab = wpCookies.get( 'active_metabox_tab' );
		if ( activeTab == null ) {
			activeTab = theMetaBox.find( 'ul.metaboxes-tabs li:first-child a' ).attr( 'href' );
		} else {
			activeTab = '#' + activeTab;
		}

		theMetaBox.find( activeTab ).show();

		theMetaBox.find( '.metaboxes-tabs a' ).on( 'click', function ( e ) {
			e.preventDefault();

			var wrapper  = $( this ).parent(),
				isActive = wrapper.hasClass( 'tabs' );

			if ( !isActive ) {
				var tabID = $( this ).attr( 'href' );

				wrapper.addClass( 'tabs' ).siblings( 'li' ).removeClass( 'tabs' );

				panels.hide();
				$( tabID ).show();
			}
		} );
	} );

	// TODO: check if someone is directly using it, otherwise it could be removed, since it's not used by the fw.
	var actPageOptionContainer = $( '#_active_page_options-container' ),
		actPageOption          = actPageOptionContainer.parent().html();
	actPageOptionContainer.parent().remove();
	$( actPageOption ).insertAfter( '#yit-post-setting .handlediv' );
	$( actPageOption ).insertAfter( '#yit-page-setting .handlediv' );

	actPageOptionContainer.on( 'click', function () {
		if ( $( '#_active_page_options' ).is( ":checked" ) ) {
			$( '#yit-page-setting .inside .metaboxes-tab, #yit-post-setting .inside .metaboxes-tab' ).css( {
																											   'opacity'       : 1,
																											   'pointer-events': 'auto'
																										   } );
		} else {
			$( '#yit-page-setting .inside .metaboxes-tab, #yit-post-setting .inside .metaboxes-tab' ).css( {
																											   'opacity'       : 0.5,
																											   'pointer-events': 'none'
																										   } );
		}
	} ).trigger( 'click' );


	//dependencies handler
	$( document.body ).on( 'yith-plugin-fw-metabox-init-deps', function () {
		$( document.body ).trigger( 'yith-plugin-fw-init-radio' );
		$( '.metaboxes-tab [data-dep-target]:not(.yith-plugin-fw-metabox-deps-initialized)' ).each( function () {
			var t = $( this );

			var field = '#' + t.data( 'dep-target' ),
				dep   = '#' + t.data( 'dep-id' ),
				value = t.data( 'dep-value' ),
				type  = t.data( 'dep-type' );


			dependencies_handler( field, dep, value.toString(), type );

			$( dep ).on( 'change', function () {
				dependencies_handler( field, dep, value.toString(), type );
			} ).change();

			t.addClass( 'yith-plugin-fw-metabox-deps-initialized' );
		} );
	} ).trigger( 'yith-plugin-fw-metabox-init-deps' );

	//Handle dependencies.
	function dependencies_handler( id, deps, values, type ) {
		var result = true;

		if ( typeof ( deps ) == 'string' ) {
			if ( deps.substr( 0, 6 ) === ':radio' ) {
				deps = deps + ':checked';
			}

			var depsOn     = $( deps ),
				depsOnType = depsOn.attr( 'type' ),
				val        = depsOn.val();

			switch ( depsOnType ){
				case 'checkbox':
					val = depsOn.is( ':checked' ) ? 'yes' : 'no';
					break;
				case 'radio':
					val = depsOn.find( 'input[type="radio"]' ).filter( ':checked' ).val();
					break;
			}

			values = values.split( ',' );

			for ( var i = 0; i < values.length; i++ ) {
				if ( val != values[ i ] ) {
					result = false;
				} else {
					result = true;
					break;
				}
			}
		}

		var $current_field     = $( id ),
			$current_container = $( id + '-container' ).parent();

		var types = type.split( '-' ), j;
		for ( j in types ) {
			var current_type = types[ j ];

			if ( !result ) {
				switch ( current_type ) {
					case 'disable':
						$current_container.addClass( 'yith-disabled' );
						$current_field.attr( 'disabled', true );
						break;
					case 'hide':
					case 'hideNow':
						$current_container.hide();
						break;
					case 'hideme':
						$current_field.hide();
						break;
					case 'fadeInOut':
					case 'fadeOut':
						$current_container.hide( 500 );
						break;
					case 'fadeIn':
					default:
						$current_container.hide();
				}
			} else {
				switch ( current_type ) {
					case 'disable':
						$current_container.removeClass( 'yith-disabled' );
						$current_field.attr( 'disabled', false );
						break;
					case 'hide':
					case 'hideNow':
						$current_container.show();
						break;
					case 'hideme':
						$current_field.show();
						break;
					case 'fadeOut':
						$current_container.show();
						break;
					case 'fadeInOut':
					case 'fadeIn':
					default:
						$current_container.show( 500 );
				}
			}
		}
	}

} )( jQuery );PK`x1\���kk)plugin-fw/assets/js/yith-dashboard.min.jsnu�[���!function(i){i(".yith-last-changelog").click(function(o){o.preventDefault();var t=i(this).data("changelogid"),a=i("#"+t),e=i(this).data("plugininfo"),n={};n[yith_dashboard.buttons.close]=function(){i(this).dialog("close")},a.dialog({title:e,dialogClass:"wp-dialog",autoOpen:!1,draggable:!1,width:"auto",modal:!0,resizable:!1,closeOnEscape:!0,position:{my:"center",at:"center",of:window},buttons:n,show:{effect:"blind",duration:1e3},open:function(){i(".ui-widget-overlay").bind("click",function(){a.dialog("close")})},create:function(){i(".ui-dialog-titlebar-close").addClass("ui-button")}}),a.dialog("open")})}(jQuery);PK`x1\	�!�pp#plugin-fw/assets/js/wp-pages.min.jsnu�[���jQuery(function(e){var t=e(".yith-plugin-fw-wp-page-wrapper"),i=e("div.updated, div.error, div.notice").not("#message"),n=e("div#message.updated");if(e(".yith-plugin-fw-wp-page-wrapper .woo-nav-tab-wrapper").removeClass("woo-nav-tab-wrapper").addClass("yith-nav-tab-wrapper"),i.addClass("inline"),t.length&&t.prepend(i),n.length&&(n.addClass("yith-plugin-fw-animate__appear-from-top").show(),n.on("click",".notice-dismiss",function(e){e.stopPropagation(),n.removeClass("yith-plugin-fw-animate__appear-from-top").slideUp(200)})),yith_plugin_fw_wp_pages.bulk_delete_confirmation_enabled){var a=!1;e(document).on("click","#doaction, #doaction2",function(t){var i=e(this),n=i.siblings("#bulk-action-selector-top, #bulk-action-selector-bottom");if("yith"in window&&"ui"in yith)if(a)a=!1;else{var _={};if(e("#the-list .check-column input[type=checkbox]:checked").length){switch(n.val()){case"trash":_.title=yith_plugin_fw_wp_pages.i18n.bulk_trash_confirm_title,_.message=yith_plugin_fw_wp_pages.i18n.bulk_trash_confirm_message,_.cancelButton=yith_plugin_fw_wp_pages.i18n.bulk_trash_cancel_button,_.confirmButton=yith_plugin_fw_wp_pages.i18n.bulk_trash_confirm_button,_.confirmButtonType="delete";break;case"delete":_.title=yith_plugin_fw_wp_pages.i18n.bulk_delete_confirm_title,_.message=yith_plugin_fw_wp_pages.i18n.bulk_delete_confirm_message,_.cancelButton=yith_plugin_fw_wp_pages.i18n.bulk_delete_cancel_button,_.confirmButton=yith_plugin_fw_wp_pages.i18n.bulk_delete_confirm_button,_.confirmButtonType="delete"}e.isEmptyObject(_)||(t.preventDefault(),_.closeAfterConfirm=!1,_.onConfirm=function(){a=!0,i.trigger("click")},yith.ui.confirm(_))}}})}});PK`x1\�h���*plugin-fw/assets/js/select2/select2.min.jsnu�[���/*!
 * Select2 4.0.3
 * https://select2.github.io
 *
 * Released under the MIT license
 * https://github.com/select2/select2/blob/master/LICENSE.md
 */
!function(e){"function"==typeof define&&define.amd?define(["jquery"],e):e("object"==typeof exports?require("jquery"):jQuery)}(function(e){var t=function(){if(e&&e.fn&&e.fn.select2&&e.fn.select2.amd)t=e.fn.select2.amd;var t;return function(){if(!t||!t.requirejs){t?n=t:t={};/**
 * @license almond 0.3.1 Copyright (c) 2011-2014, The Dojo Foundation All Rights Reserved.
 * Available via the MIT or new BSD license.
 * see: http://github.com/jrburke/almond for details
 */
var e,n,i;!function(t){function r(e,t){return $.call(e,t)}function s(e,t){var n,i,r,s,o,a,l,c,u,d,p,h=t&&t.split("/"),f=y.map,g=f&&f["*"]||{};if(e&&"."===e.charAt(0))if(t){for(o=(e=e.split("/")).length-1,y.nodeIdCompat&&b.test(e[o])&&(e[o]=e[o].replace(b,"")),e=h.slice(0,h.length-1).concat(e),u=0;u<e.length;u+=1)if("."===(p=e[u]))e.splice(u,1),u-=1;else if(".."===p){if(1===u&&(".."===e[2]||".."===e[0]))break;u>0&&(e.splice(u-1,2),u-=2)}e=e.join("/")}else 0===e.indexOf("./")&&(e=e.substring(2));if((h||g)&&f){for(u=(n=e.split("/")).length;u>0;u-=1){if(i=n.slice(0,u).join("/"),h)for(d=h.length;d>0;d-=1)if((r=f[h.slice(0,d).join("/")])&&(r=r[i])){s=r,a=u;break}if(s)break;!l&&g&&g[i]&&(l=g[i],c=u)}!s&&l&&(s=l,a=c),s&&(n.splice(0,a,s),e=n.join("/"))}return e}function o(e,n){return function(){var i=w.call(arguments,0);return"string"!=typeof i[0]&&1===i.length&&i.push(null),h.apply(t,i.concat([e,n]))}}function a(e){return function(t){return s(t,e)}}function l(e){return function(t){m[e]=t}}function c(e){if(r(v,e)){var n=v[e];delete v[e],_[e]=!0,p.apply(t,n)}if(!r(m,e)&&!r(_,e))throw new Error("No "+e);return m[e]}function u(e){var t,n=e?e.indexOf("!"):-1;return n>-1&&(t=e.substring(0,n),e=e.substring(n+1,e.length)),[t,e]}function d(e){return function(){return y&&y.config&&y.config[e]||{}}}var p,h,f,g,m={},v={},y={},_={},$=Object.prototype.hasOwnProperty,w=[].slice,b=/\.js$/;f=function(e,t){var n,i=u(e),r=i[0];return e=i[1],r&&(n=c(r=s(r,t))),r?e=n&&n.normalize?n.normalize(e,a(t)):s(e,t):(r=(i=u(e=s(e,t)))[0],e=i[1],r&&(n=c(r))),{f:r?r+"!"+e:e,n:e,pr:r,p:n}},g={require:function(e){return o(e)},exports:function(e){var t=m[e];return void 0!==t?t:m[e]={}},module:function(e){return{id:e,uri:"",exports:m[e],config:d(e)}}},p=function(e,n,i,s){var a,u,d,p,h,y,$=[],w=typeof i;if(s=s||e,"undefined"===w||"function"===w){for(n=!n.length&&i.length?["require","exports","module"]:n,h=0;h<n.length;h+=1)if(p=f(n[h],s),"require"===(u=p.f))$[h]=g.require(e);else if("exports"===u)$[h]=g.exports(e),y=!0;else if("module"===u)a=$[h]=g.module(e);else if(r(m,u)||r(v,u)||r(_,u))$[h]=c(u);else{if(!p.p)throw new Error(e+" missing "+u);p.p.load(p.n,o(s,!0),l(u),{}),$[h]=m[u]}d=i?i.apply(m[e],$):undefined,e&&(a&&a.exports!==t&&a.exports!==m[e]?m[e]=a.exports:d===t&&y||(m[e]=d))}else e&&(m[e]=i)},e=n=h=function(e,n,i,r,s){if("string"==typeof e)return g[e]?g[e](n):c(f(e,n).f);if(!e.splice){if((y=e).deps&&h(y.deps,y.callback),!n)return;n.splice?(e=n,n=i,i=null):e=t}return n=n||function(){},"function"==typeof i&&(i=r,r=s),r?p(t,e,n,i):setTimeout(function(){p(t,e,n,i)},4),h},h.config=function(e){return h(e)},e._defined=m,(i=function(e,t,n){if("string"!=typeof e)throw new Error("See almond README: incorrect module build, no module name");t.splice||(n=t,t=[]),r(m,e)||r(v,e)||(v[e]=[e,t,n])}).amd={jQuery:!0}}(),t.requirejs=e,t.require=n,t.define=i}}(),t.define("almond",function(){}),t.define("jquery",[],function(){var t=e||$;return null==t&&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."),t}),t.define("select2/utils",["jquery"],function(e){function t(e){var t=e.prototype,n=[];for(var i in t)"function"==typeof t[i]&&"constructor"!==i&&n.push(i);return n}var n={};n.Extend=function(e,t){function n(){this.constructor=e}var i={}.hasOwnProperty;for(var r in t)i.call(t,r)&&(e[r]=t[r]);return n.prototype=t.prototype,e.prototype=new n,e.__super__=t.prototype,e},n.Decorate=function(e,n){function i(){var t=Array.prototype.unshift,i=n.prototype.constructor.length,r=e.prototype.constructor;i>0&&(t.call(arguments,e.prototype.constructor),r=n.prototype.constructor),r.apply(this,arguments)}var r=t(n),s=t(e);n.displayName=e.displayName,i.prototype=new function(){this.constructor=i};for(var o=0;o<s.length;o++){var a=s[o];i.prototype[a]=e.prototype[a]}for(var l=0;l<r.length;l++){var c=r[l];i.prototype[c]=function(e){var t=function(){};e in i.prototype&&(t=i.prototype[e]);var r=n.prototype[e];return function(){return Array.prototype.unshift.call(arguments,t),r.apply(this,arguments)}}(c)}return i};var i=function(){this.listeners={}};return i.prototype.on=function(e,t){this.listeners=this.listeners||{},e in this.listeners?this.listeners[e].push(t):this.listeners[e]=[t]},i.prototype.trigger=function(e){var t=Array.prototype.slice,n=t.call(arguments,1);this.listeners=this.listeners||{},null==n&&(n=[]),0===n.length&&n.push({}),n[0]._type=e,e in this.listeners&&this.invoke(this.listeners[e],t.call(arguments,1)),"*"in this.listeners&&this.invoke(this.listeners["*"],arguments)},i.prototype.invoke=function(e,t){for(var n=0,i=e.length;n<i;n++)e[n].apply(this,t)},n.Observable=i,n.generateChars=function(e){for(var t="",n=0;n<e;n++)t+=Math.floor(36*Math.random()).toString(36);return t},n.bind=function(e,t){return function(){e.apply(t,arguments)}},n._convertData=function(e){for(var t in e){var n=t.split("-"),i=e;if(1!==n.length){for(var r=0;r<n.length;r++){var s=n[r];(s=s.substring(0,1).toLowerCase()+s.substring(1))in i||(i[s]={}),r==n.length-1&&(i[s]=e[t]),i=i[s]}delete e[t]}}return e},n.hasScroll=function(t,n){var i=e(n),r=n.style.overflowX,s=n.style.overflowY;return(r!==s||"hidden"!==s&&"visible"!==s)&&("scroll"===r||"scroll"===s||(i.innerHeight()<n.scrollHeight||i.innerWidth()<n.scrollWidth))},n.escapeMarkup=function(e){var t={"\\":"&#92;","&":"&amp;","<":"&lt;",">":"&gt;",'"':"&quot;","'":"&#39;","/":"&#47;"};return"string"!=typeof e?e:String(e).replace(/[&<>"'\/\\]/g,function(e){return t[e]})},n.appendMany=function(t,n){if("1.7"===e.fn.jquery.substr(0,3)){var i=e();e.map(n,function(e){i=i.add(e)}),n=i}t.append(n)},n}),t.define("select2/results",["jquery","./utils"],function(e,t){function n(e,t,i){this.$element=e,this.data=i,this.options=t,n.__super__.constructor.call(this)}return t.Extend(n,t.Observable),n.prototype.render=function(){var t=e('<ul class="select2-results__options" role="tree"></ul>');return this.options.get("multiple")&&t.attr("aria-multiselectable","true"),this.$results=t,t},n.prototype.clear=function(){this.$results.empty()},n.prototype.displayMessage=function(t){var n=this.options.get("escapeMarkup");this.clear(),this.hideLoading();var i=e('<li role="treeitem" aria-live="assertive" class="select2-results__option"></li>'),r=this.options.get("translations").get(t.message);i.append(n(r(t.args))),i[0].className+=" select2-results__message",this.$results.append(i)},n.prototype.hideMessages=function(){this.$results.find(".select2-results__message").remove()},n.prototype.append=function(e){this.hideLoading();var t=[];if(null!=e.results&&0!==e.results.length){e.results=this.sort(e.results);for(var n=0;n<e.results.length;n++){var i=e.results[n],r=this.option(i);t.push(r)}this.$results.append(t)}else 0===this.$results.children().length&&this.trigger("results:message",{message:"noResults"})},n.prototype.position=function(e,t){t.find(".select2-results").append(e)},n.prototype.sort=function(e){return this.options.get("sorter")(e)},n.prototype.highlightFirstItem=function(){var e=this.$results.find(".select2-results__option[aria-selected]"),t=e.filter("[aria-selected=true]");t.length>0?t.first().trigger("mouseenter"):e.first().trigger("mouseenter"),this.ensureHighlightVisible()},n.prototype.setClasses=function(){var t=this;this.data.current(function(n){var i=e.map(n,function(e){return e.id.toString()});t.$results.find(".select2-results__option[aria-selected]").each(function(){var t=e(this),n=e.data(this,"data"),r=""+n.id;null!=n.element&&n.element.selected||null==n.element&&e.inArray(r,i)>-1?t.attr("aria-selected","true"):t.attr("aria-selected","false")})})},n.prototype.showLoading=function(e){this.hideLoading();var t={disabled:!0,loading:!0,text:this.options.get("translations").get("searching")(e)},n=this.option(t);n.className+=" loading-results",this.$results.prepend(n)},n.prototype.hideLoading=function(){this.$results.find(".loading-results").remove()},n.prototype.option=function(t){var n=document.createElement("li");n.className="select2-results__option";var i={role:"treeitem","aria-selected":"false"};t.disabled&&(delete i["aria-selected"],i["aria-disabled"]="true"),null==t.id&&delete i["aria-selected"],null!=t._resultId&&(n.id=t._resultId),t.title&&(n.title=t.title),t.children&&(i.role="group",i["aria-label"]=t.text,delete i["aria-selected"]);for(var r in i){var s=i[r];n.setAttribute(r,s)}if(t.children){var o=e(n),a=document.createElement("strong");a.className="select2-results__group";e(a);this.template(t,a);for(var l=[],c=0;c<t.children.length;c++){var u=t.children[c],d=this.option(u);l.push(d)}var p=e("<ul></ul>",{"class":"select2-results__options select2-results__options--nested"});p.append(l),o.append(a),o.append(p)}else this.template(t,n);return e.data(n,"data",t),n},n.prototype.bind=function(t,n){var i=this,r=t.id+"-results";this.$results.attr("id",r),t.on("results:all",function(e){i.clear(),i.append(e.data),t.isOpen()&&(i.setClasses(),i.highlightFirstItem())}),t.on("results:append",function(e){i.append(e.data),t.isOpen()&&i.setClasses()}),t.on("query",function(e){i.hideMessages(),i.showLoading(e)}),t.on("select",function(){t.isOpen()&&(i.setClasses(),i.highlightFirstItem())}),t.on("unselect",function(){t.isOpen()&&(i.setClasses(),i.highlightFirstItem())}),t.on("open",function(){i.$results.attr("aria-expanded","true"),i.$results.attr("aria-hidden","false"),i.setClasses(),i.ensureHighlightVisible()}),t.on("close",function(){i.$results.attr("aria-expanded","false"),i.$results.attr("aria-hidden","true"),i.$results.removeAttr("aria-activedescendant")}),t.on("results:toggle",function(){var e=i.getHighlightedResults();0!==e.length&&e.trigger("mouseup")}),t.on("results:select",function(){var e=i.getHighlightedResults();if(0!==e.length){var t=e.data("data");"true"==e.attr("aria-selected")?i.trigger("close",{}):i.trigger("select",{data:t})}}),t.on("results:previous",function(){var e=i.getHighlightedResults(),t=i.$results.find("[aria-selected]"),n=t.index(e);if(0!==n){var r=n-1;0===e.length&&(r=0);var s=t.eq(r);s.trigger("mouseenter");var o=i.$results.offset().top,a=s.offset().top,l=i.$results.scrollTop()+(a-o);0===r?i.$results.scrollTop(0):a-o<0&&i.$results.scrollTop(l)}}),t.on("results:next",function(){var e=i.getHighlightedResults(),t=i.$results.find("[aria-selected]"),n=t.index(e)+1;if(!(n>=t.length)){var r=t.eq(n);r.trigger("mouseenter");var s=i.$results.offset().top+i.$results.outerHeight(!1),o=r.offset().top+r.outerHeight(!1),a=i.$results.scrollTop()+o-s;0===n?i.$results.scrollTop(0):o>s&&i.$results.scrollTop(a)}}),t.on("results:focus",function(e){e.element.addClass("select2-results__option--highlighted")}),t.on("results:message",function(e){i.displayMessage(e)}),e.fn.mousewheel&&this.$results.on("mousewheel",function(e){var t=i.$results.scrollTop(),n=i.$results.get(0).scrollHeight-t+e.deltaY,r=e.deltaY>0&&t-e.deltaY<=0,s=e.deltaY<0&&n<=i.$results.height();r?(i.$results.scrollTop(0),e.preventDefault(),e.stopPropagation()):s&&(i.$results.scrollTop(i.$results.get(0).scrollHeight-i.$results.height()),e.preventDefault(),e.stopPropagation())}),this.$results.on("mouseup",".select2-results__option[aria-selected]",function(t){var n=e(this),r=n.data("data");"true"!==n.attr("aria-selected")?i.trigger("select",{originalEvent:t,data:r}):i.options.get("multiple")?i.trigger("unselect",{originalEvent:t,data:r}):i.trigger("close",{})}),this.$results.on("mouseenter",".select2-results__option[aria-selected]",function(t){var n=e(this).data("data");i.getHighlightedResults().removeClass("select2-results__option--highlighted"),i.trigger("results:focus",{data:n,element:e(this)})})},n.prototype.getHighlightedResults=function(){return this.$results.find(".select2-results__option--highlighted")},n.prototype.destroy=function(){this.$results.remove()},n.prototype.ensureHighlightVisible=function(){var e=this.getHighlightedResults();if(0!==e.length){var t=this.$results.find("[aria-selected]").index(e),n=this.$results.offset().top,i=e.offset().top,r=this.$results.scrollTop()+(i-n),s=i-n;r-=2*e.outerHeight(!1),t<=2?this.$results.scrollTop(0):(s>this.$results.outerHeight()||s<0)&&this.$results.scrollTop(r)}},n.prototype.template=function(t,n){var i=this.options.get("templateResult"),r=this.options.get("escapeMarkup"),s=i(t,n);null==s?n.style.display="none":"string"==typeof s?n.innerHTML=r(s):e(n).append(s)},n}),t.define("select2/keys",[],function(){return{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}}),t.define("select2/selection/base",["jquery","../utils","../keys"],function(e,t,n){function i(e,t){this.$element=e,this.options=t,i.__super__.constructor.call(this)}return t.Extend(i,t.Observable),i.prototype.render=function(){var t=e('<span class="select2-selection" role="combobox"  aria-haspopup="true" aria-expanded="false"></span>');return this._tabindex=0,null!=this.$element.data("old-tabindex")?this._tabindex=this.$element.data("old-tabindex"):null!=this.$element.attr("tabindex")&&(this._tabindex=this.$element.attr("tabindex")),t.attr("title",this.$element.attr("title")),t.attr("tabindex",this._tabindex),this.$selection=t,t},i.prototype.bind=function(e,t){var i=this,r=(e.id,e.id+"-results");this.container=e,this.$selection.on("focus",function(e){i.trigger("focus",e)}),this.$selection.on("blur",function(e){i._handleBlur(e)}),this.$selection.on("keydown",function(e){i.trigger("keypress",e),e.which===n.SPACE&&e.preventDefault()}),e.on("results:focus",function(e){i.$selection.attr("aria-activedescendant",e.data._resultId)}),e.on("selection:update",function(e){i.update(e.data)}),e.on("open",function(){i.$selection.attr("aria-expanded","true"),i.$selection.attr("aria-owns",r),i._attachCloseHandler(e)}),e.on("close",function(){i.$selection.attr("aria-expanded","false"),i.$selection.removeAttr("aria-activedescendant"),i.$selection.removeAttr("aria-owns"),i.$selection.focus(),i._detachCloseHandler(e)}),e.on("enable",function(){i.$selection.attr("tabindex",i._tabindex)}),e.on("disable",function(){i.$selection.attr("tabindex","-1")})},i.prototype._handleBlur=function(t){var n=this;window.setTimeout(function(){document.activeElement==n.$selection[0]||e.contains(n.$selection[0],document.activeElement)||n.trigger("blur",t)},1)},i.prototype._attachCloseHandler=function(t){e(document.body).on("mousedown.select2."+t.id,function(t){var n=e(t.target).closest(".select2");e(".select2.select2-container--open").each(function(){var t=e(this);this!=n[0]&&t.data("element").select2("close")})})},i.prototype._detachCloseHandler=function(t){e(document.body).off("mousedown.select2."+t.id)},i.prototype.position=function(e,t){t.find(".selection").append(e)},i.prototype.destroy=function(){this._detachCloseHandler(this.container)},i.prototype.update=function(e){throw new Error("The `update` method must be defined in child classes.")},i}),t.define("select2/selection/single",["jquery","./base","../utils","../keys"],function(e,t,n,i){function r(){r.__super__.constructor.apply(this,arguments)}return n.Extend(r,t),r.prototype.render=function(){var e=r.__super__.render.call(this);return e.addClass("select2-selection--single"),e.html('<span class="select2-selection__rendered"></span><span class="select2-selection__arrow" role="presentation"><b role="presentation"></b></span>'),e},r.prototype.bind=function(e,t){var n=this;r.__super__.bind.apply(this,arguments);var i=e.id+"-container";this.$selection.find(".select2-selection__rendered").attr("id",i),this.$selection.attr("aria-labelledby",i),this.$selection.on("mousedown",function(e){1===e.which&&n.trigger("toggle",{originalEvent:e})}),this.$selection.on("focus",function(e){}),this.$selection.on("blur",function(e){}),e.on("focus",function(t){e.isOpen()||n.$selection.focus()}),e.on("selection:update",function(e){n.update(e.data)})},r.prototype.clear=function(){this.$selection.find(".select2-selection__rendered").empty()},r.prototype.display=function(e,t){var n=this.options.get("templateSelection");return this.options.get("escapeMarkup")(n(e,t))},r.prototype.selectionContainer=function(){return e("<span></span>")},r.prototype.update=function(e){if(0!==e.length){var t=e[0],n=this.$selection.find(".select2-selection__rendered"),i=this.display(t,n);n.empty().append(i),n.prop("title",t.title||t.text)}else this.clear()},r}),t.define("select2/selection/multiple",["jquery","./base","../utils"],function(e,t,n){function i(e,t){i.__super__.constructor.apply(this,arguments)}return n.Extend(i,t),i.prototype.render=function(){var e=i.__super__.render.call(this);return e.addClass("select2-selection--multiple"),e.html('<ul class="select2-selection__rendered"></ul>'),e},i.prototype.bind=function(t,n){var r=this;i.__super__.bind.apply(this,arguments),this.$selection.on("click",function(e){r.trigger("toggle",{originalEvent:e})}),this.$selection.on("click",".select2-selection__choice__remove",function(t){if(!r.options.get("disabled")){var n=e(this).parent().data("data");r.trigger("unselect",{originalEvent:t,data:n})}})},i.prototype.clear=function(){this.$selection.find(".select2-selection__rendered").empty()},i.prototype.display=function(e,t){var n=this.options.get("templateSelection");return this.options.get("escapeMarkup")(n(e,t))},i.prototype.selectionContainer=function(){return e('<li class="select2-selection__choice"><span class="select2-selection__choice__remove" role="presentation">&times;</span></li>')},i.prototype.update=function(e){if(this.clear(),0!==e.length){for(var t=[],i=0;i<e.length;i++){var r=e[i],s=this.selectionContainer(),o=this.display(r,s);s.append(o),s.prop("title",r.title||r.text),s.data("data",r),t.push(s)}var a=this.$selection.find(".select2-selection__rendered");n.appendMany(a,t)}},i}),t.define("select2/selection/placeholder",["../utils"],function(e){function t(e,t,n){this.placeholder=this.normalizePlaceholder(n.get("placeholder")),e.call(this,t,n)}return t.prototype.normalizePlaceholder=function(e,t){return"string"==typeof t&&(t={id:"",text:t}),t},t.prototype.createPlaceholder=function(e,t){var n=this.selectionContainer();return n.html(this.display(t)),n.addClass("select2-selection__placeholder").removeClass("select2-selection__choice"),n},t.prototype.update=function(e,t){var n=1==t.length&&t[0].id!=this.placeholder.id;if(t.length>1||n)return e.call(this,t);this.clear();var i=this.createPlaceholder(this.placeholder);this.$selection.find(".select2-selection__rendered").append(i)},t}),t.define("select2/selection/allowClear",["jquery","../keys"],function(e,t){function n(){}return n.prototype.bind=function(e,t,n){var i=this;e.call(this,t,n),null==this.placeholder&&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(e){i._handleClear(e)}),t.on("keypress",function(e){i._handleKeyboardClear(e,t)})},n.prototype._handleClear=function(e,t){if(!this.options.get("disabled")){var n=this.$selection.find(".select2-selection__clear");if(0!==n.length){t.stopPropagation();for(var i=n.data("data"),r=0;r<i.length;r++){var s={data:i[r]};if(this.trigger("unselect",s),s.prevented)return}this.$element.val(this.placeholder.id).trigger("change"),this.trigger("toggle",{})}}},n.prototype._handleKeyboardClear=function(e,n,i){i.isOpen()||n.which!=t.DELETE&&n.which!=t.BACKSPACE||this._handleClear(n)},n.prototype.update=function(t,n){if(t.call(this,n),!(this.$selection.find(".select2-selection__placeholder").length>0||0===n.length)){var i=e('<span class="select2-selection__clear">&times;</span>');i.data("data",n),this.$selection.find(".select2-selection__rendered").prepend(i)}},n}),t.define("select2/selection/search",["jquery","../utils","../keys"],function(e,t,n){function i(e,t,n){e.call(this,t,n)}return i.prototype.render=function(t){var n=e('<li class="select2-search select2-search--inline"><input class="select2-search__field" type="search" tabindex="-1" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" role="textbox" aria-autocomplete="list" /></li>');this.$searchContainer=n,this.$search=n.find("input");var i=t.call(this);return this._transferTabIndex(),i},i.prototype.bind=function(e,t,i){var r=this;e.call(this,t,i),t.on("open",function(){r.$search.trigger("focus")}),t.on("close",function(){r.$search.val(""),r.$search.removeAttr("aria-activedescendant"),r.$search.trigger("focus")}),t.on("enable",function(){r.$search.prop("disabled",!1),r._transferTabIndex()}),t.on("disable",function(){r.$search.prop("disabled",!0)}),t.on("focus",function(e){r.$search.trigger("focus")}),t.on("results:focus",function(e){r.$search.attr("aria-activedescendant",e.id)}),this.$selection.on("focusin",".select2-search--inline",function(e){r.trigger("focus",e)}),this.$selection.on("focusout",".select2-search--inline",function(e){r._handleBlur(e)}),this.$selection.on("keydown",".select2-search--inline",function(e){if(e.stopPropagation(),r.trigger("keypress",e),r._keyUpPrevented=e.isDefaultPrevented(),e.which===n.BACKSPACE&&""===r.$search.val()){var t=r.$searchContainer.prev(".select2-selection__choice");if(t.length>0){var i=t.data("data");r.searchRemoveChoice(i),e.preventDefault()}}});var s=document.documentMode,o=s&&s<=11;this.$selection.on("input.searchcheck",".select2-search--inline",function(e){o?r.$selection.off("input.search input.searchcheck"):r.$selection.off("keyup.search")}),this.$selection.on("keyup.search input.search",".select2-search--inline",function(e){if(o&&"input"===e.type)r.$selection.off("input.search input.searchcheck");else{var t=e.which;t!=n.SHIFT&&t!=n.CTRL&&t!=n.ALT&&t!=n.TAB&&r.handleSearch(e)}})},i.prototype._transferTabIndex=function(e){this.$search.attr("tabindex",this.$selection.attr("tabindex")),this.$selection.attr("tabindex","-1")},i.prototype.createPlaceholder=function(e,t){this.$search.attr("placeholder",t.text)},i.prototype.update=function(e,t){var n=this.$search[0]==document.activeElement;this.$search.attr("placeholder",""),e.call(this,t),this.$selection.find(".select2-selection__rendered").append(this.$searchContainer),this.resizeSearch(),n&&this.$search.focus()},i.prototype.handleSearch=function(){if(this.resizeSearch(),!this._keyUpPrevented){var e=this.$search.val();this.trigger("query",{term:e})}this._keyUpPrevented=!1},i.prototype.searchRemoveChoice=function(e,t){this.trigger("unselect",{data:t}),this.$search.val(t.text),this.handleSearch()},i.prototype.resizeSearch=function(){this.$search.css("width","25px");var e="";e=""!==this.$search.attr("placeholder")?this.$selection.find(".select2-selection__rendered").innerWidth():.75*(this.$search.val().length+1)+"em",this.$search.css("width",e)},i}),t.define("select2/selection/eventRelay",["jquery"],function(e){function t(){}return t.prototype.bind=function(t,n,i){var r=this,s=["open","opening","close","closing","select","selecting","unselect","unselecting"],o=["opening","closing","selecting","unselecting"];t.call(this,n,i),n.on("*",function(t,n){if(-1!==e.inArray(t,s)){n=n||{};var i=e.Event("select2:"+t,{params:n});r.$element.trigger(i),-1!==e.inArray(t,o)&&(n.prevented=i.isDefaultPrevented())}})},t}),t.define("select2/translation",["jquery","require"],function(e,t){function n(e){this.dict=e||{}}return n.prototype.all=function(){return this.dict},n.prototype.get=function(e){return this.dict[e]},n.prototype.extend=function(t){this.dict=e.extend({},t.all(),this.dict)},n._cache={},n.loadPath=function(e){if(!(e in n._cache)){var i=t(e);n._cache[e]=i}return new n(n._cache[e])},n}),t.define("select2/diacritics",[],function(){return{"Ⓐ":"A","A":"A","À":"A","Á":"A","Â":"A","Ầ":"A","Ấ":"A","Ẫ":"A","Ẩ":"A","Ã":"A","Ā":"A","Ă":"A","Ằ":"A","Ắ":"A","Ẵ":"A","Ẳ":"A","Ȧ":"A","Ǡ":"A","Ä":"A","Ǟ":"A","Ả":"A","Å":"A","Ǻ":"A","Ǎ":"A","Ȁ":"A","Ȃ":"A","Ạ":"A","Ậ":"A","Ặ":"A","Ḁ":"A","Ą":"A","Ⱥ":"A","Ɐ":"A","Ꜳ":"AA","Æ":"AE","Ǽ":"AE","Ǣ":"AE","Ꜵ":"AO","Ꜷ":"AU","Ꜹ":"AV","Ꜻ":"AV","Ꜽ":"AY","Ⓑ":"B","B":"B","Ḃ":"B","Ḅ":"B","Ḇ":"B","Ƀ":"B","Ƃ":"B","Ɓ":"B","Ⓒ":"C","C":"C","Ć":"C","Ĉ":"C","Ċ":"C","Č":"C","Ç":"C","Ḉ":"C","Ƈ":"C","Ȼ":"C","Ꜿ":"C","Ⓓ":"D","D":"D","Ḋ":"D","Ď":"D","Ḍ":"D","Ḑ":"D","Ḓ":"D","Ḏ":"D","Đ":"D","Ƌ":"D","Ɗ":"D","Ɖ":"D","Ꝺ":"D","DZ":"DZ","DŽ":"DZ","Dz":"Dz","Dž":"Dz","Ⓔ":"E","E":"E","È":"E","É":"E","Ê":"E","Ề":"E","Ế":"E","Ễ":"E","Ể":"E","Ẽ":"E","Ē":"E","Ḕ":"E","Ḗ":"E","Ĕ":"E","Ė":"E","Ë":"E","Ẻ":"E","Ě":"E","Ȅ":"E","Ȇ":"E","Ẹ":"E","Ệ":"E","Ȩ":"E","Ḝ":"E","Ę":"E","Ḙ":"E","Ḛ":"E","Ɛ":"E","Ǝ":"E","Ⓕ":"F","F":"F","Ḟ":"F","Ƒ":"F","Ꝼ":"F","Ⓖ":"G","G":"G","Ǵ":"G","Ĝ":"G","Ḡ":"G","Ğ":"G","Ġ":"G","Ǧ":"G","Ģ":"G","Ǥ":"G","Ɠ":"G","Ꞡ":"G","Ᵹ":"G","Ꝿ":"G","Ⓗ":"H","H":"H","Ĥ":"H","Ḣ":"H","Ḧ":"H","Ȟ":"H","Ḥ":"H","Ḩ":"H","Ḫ":"H","Ħ":"H","Ⱨ":"H","Ⱶ":"H","Ɥ":"H","Ⓘ":"I","I":"I","Ì":"I","Í":"I","Î":"I","Ĩ":"I","Ī":"I","Ĭ":"I","İ":"I","Ï":"I","Ḯ":"I","Ỉ":"I","Ǐ":"I","Ȉ":"I","Ȋ":"I","Ị":"I","Į":"I","Ḭ":"I","Ɨ":"I","Ⓙ":"J","J":"J","Ĵ":"J","Ɉ":"J","Ⓚ":"K","K":"K","Ḱ":"K","Ǩ":"K","Ḳ":"K","Ķ":"K","Ḵ":"K","Ƙ":"K","Ⱪ":"K","Ꝁ":"K","Ꝃ":"K","Ꝅ":"K","Ꞣ":"K","Ⓛ":"L","L":"L","Ŀ":"L","Ĺ":"L","Ľ":"L","Ḷ":"L","Ḹ":"L","Ļ":"L","Ḽ":"L","Ḻ":"L","Ł":"L","Ƚ":"L","Ɫ":"L","Ⱡ":"L","Ꝉ":"L","Ꝇ":"L","Ꞁ":"L","LJ":"LJ","Lj":"Lj","Ⓜ":"M","M":"M","Ḿ":"M","Ṁ":"M","Ṃ":"M","Ɱ":"M","Ɯ":"M","Ⓝ":"N","N":"N","Ǹ":"N","Ń":"N","Ñ":"N","Ṅ":"N","Ň":"N","Ṇ":"N","Ņ":"N","Ṋ":"N","Ṉ":"N","Ƞ":"N","Ɲ":"N","Ꞑ":"N","Ꞥ":"N","NJ":"NJ","Nj":"Nj","Ⓞ":"O","O":"O","Ò":"O","Ó":"O","Ô":"O","Ồ":"O","Ố":"O","Ỗ":"O","Ổ":"O","Õ":"O","Ṍ":"O","Ȭ":"O","Ṏ":"O","Ō":"O","Ṑ":"O","Ṓ":"O","Ŏ":"O","Ȯ":"O","Ȱ":"O","Ö":"O","Ȫ":"O","Ỏ":"O","Ő":"O","Ǒ":"O","Ȍ":"O","Ȏ":"O","Ơ":"O","Ờ":"O","Ớ":"O","Ỡ":"O","Ở":"O","Ợ":"O","Ọ":"O","Ộ":"O","Ǫ":"O","Ǭ":"O","Ø":"O","Ǿ":"O","Ɔ":"O","Ɵ":"O","Ꝋ":"O","Ꝍ":"O","Ƣ":"OI","Ꝏ":"OO","Ȣ":"OU","Ⓟ":"P","P":"P","Ṕ":"P","Ṗ":"P","Ƥ":"P","Ᵽ":"P","Ꝑ":"P","Ꝓ":"P","Ꝕ":"P","Ⓠ":"Q","Q":"Q","Ꝗ":"Q","Ꝙ":"Q","Ɋ":"Q","Ⓡ":"R","R":"R","Ŕ":"R","Ṙ":"R","Ř":"R","Ȑ":"R","Ȓ":"R","Ṛ":"R","Ṝ":"R","Ŗ":"R","Ṟ":"R","Ɍ":"R","Ɽ":"R","Ꝛ":"R","Ꞧ":"R","Ꞃ":"R","Ⓢ":"S","S":"S","ẞ":"S","Ś":"S","Ṥ":"S","Ŝ":"S","Ṡ":"S","Š":"S","Ṧ":"S","Ṣ":"S","Ṩ":"S","Ș":"S","Ş":"S","Ȿ":"S","Ꞩ":"S","Ꞅ":"S","Ⓣ":"T","T":"T","Ṫ":"T","Ť":"T","Ṭ":"T","Ț":"T","Ţ":"T","Ṱ":"T","Ṯ":"T","Ŧ":"T","Ƭ":"T","Ʈ":"T","Ⱦ":"T","Ꞇ":"T","Ꜩ":"TZ","Ⓤ":"U","U":"U","Ù":"U","Ú":"U","Û":"U","Ũ":"U","Ṹ":"U","Ū":"U","Ṻ":"U","Ŭ":"U","Ü":"U","Ǜ":"U","Ǘ":"U","Ǖ":"U","Ǚ":"U","Ủ":"U","Ů":"U","Ű":"U","Ǔ":"U","Ȕ":"U","Ȗ":"U","Ư":"U","Ừ":"U","Ứ":"U","Ữ":"U","Ử":"U","Ự":"U","Ụ":"U","Ṳ":"U","Ų":"U","Ṷ":"U","Ṵ":"U","Ʉ":"U","Ⓥ":"V","V":"V","Ṽ":"V","Ṿ":"V","Ʋ":"V","Ꝟ":"V","Ʌ":"V","Ꝡ":"VY","Ⓦ":"W","W":"W","Ẁ":"W","Ẃ":"W","Ŵ":"W","Ẇ":"W","Ẅ":"W","Ẉ":"W","Ⱳ":"W","Ⓧ":"X","X":"X","Ẋ":"X","Ẍ":"X","Ⓨ":"Y","Y":"Y","Ỳ":"Y","Ý":"Y","Ŷ":"Y","Ỹ":"Y","Ȳ":"Y","Ẏ":"Y","Ÿ":"Y","Ỷ":"Y","Ỵ":"Y","Ƴ":"Y","Ɏ":"Y","Ỿ":"Y","Ⓩ":"Z","Z":"Z","Ź":"Z","Ẑ":"Z","Ż":"Z","Ž":"Z","Ẓ":"Z","Ẕ":"Z","Ƶ":"Z","Ȥ":"Z","Ɀ":"Z","Ⱬ":"Z","Ꝣ":"Z","ⓐ":"a","a":"a","ẚ":"a","à":"a","á":"a","â":"a","ầ":"a","ấ":"a","ẫ":"a","ẩ":"a","ã":"a","ā":"a","ă":"a","ằ":"a","ắ":"a","ẵ":"a","ẳ":"a","ȧ":"a","ǡ":"a","ä":"a","ǟ":"a","ả":"a","å":"a","ǻ":"a","ǎ":"a","ȁ":"a","ȃ":"a","ạ":"a","ậ":"a","ặ":"a","ḁ":"a","ą":"a","ⱥ":"a","ɐ":"a","ꜳ":"aa","æ":"ae","ǽ":"ae","ǣ":"ae","ꜵ":"ao","ꜷ":"au","ꜹ":"av","ꜻ":"av","ꜽ":"ay","ⓑ":"b","b":"b","ḃ":"b","ḅ":"b","ḇ":"b","ƀ":"b","ƃ":"b","ɓ":"b","ⓒ":"c","c":"c","ć":"c","ĉ":"c","ċ":"c","č":"c","ç":"c","ḉ":"c","ƈ":"c","ȼ":"c","ꜿ":"c","ↄ":"c","ⓓ":"d","d":"d","ḋ":"d","ď":"d","ḍ":"d","ḑ":"d","ḓ":"d","ḏ":"d","đ":"d","ƌ":"d","ɖ":"d","ɗ":"d","ꝺ":"d","dz":"dz","dž":"dz","ⓔ":"e","e":"e","è":"e","é":"e","ê":"e","ề":"e","ế":"e","ễ":"e","ể":"e","ẽ":"e","ē":"e","ḕ":"e","ḗ":"e","ĕ":"e","ė":"e","ë":"e","ẻ":"e","ě":"e","ȅ":"e","ȇ":"e","ẹ":"e","ệ":"e","ȩ":"e","ḝ":"e","ę":"e","ḙ":"e","ḛ":"e","ɇ":"e","ɛ":"e","ǝ":"e","ⓕ":"f","f":"f","ḟ":"f","ƒ":"f","ꝼ":"f","ⓖ":"g","g":"g","ǵ":"g","ĝ":"g","ḡ":"g","ğ":"g","ġ":"g","ǧ":"g","ģ":"g","ǥ":"g","ɠ":"g","ꞡ":"g","ᵹ":"g","ꝿ":"g","ⓗ":"h","h":"h","ĥ":"h","ḣ":"h","ḧ":"h","ȟ":"h","ḥ":"h","ḩ":"h","ḫ":"h","ẖ":"h","ħ":"h","ⱨ":"h","ⱶ":"h","ɥ":"h","ƕ":"hv","ⓘ":"i","i":"i","ì":"i","í":"i","î":"i","ĩ":"i","ī":"i","ĭ":"i","ï":"i","ḯ":"i","ỉ":"i","ǐ":"i","ȉ":"i","ȋ":"i","ị":"i","į":"i","ḭ":"i","ɨ":"i","ı":"i","ⓙ":"j","j":"j","ĵ":"j","ǰ":"j","ɉ":"j","ⓚ":"k","k":"k","ḱ":"k","ǩ":"k","ḳ":"k","ķ":"k","ḵ":"k","ƙ":"k","ⱪ":"k","ꝁ":"k","ꝃ":"k","ꝅ":"k","ꞣ":"k","ⓛ":"l","l":"l","ŀ":"l","ĺ":"l","ľ":"l","ḷ":"l","ḹ":"l","ļ":"l","ḽ":"l","ḻ":"l","ſ":"l","ł":"l","ƚ":"l","ɫ":"l","ⱡ":"l","ꝉ":"l","ꞁ":"l","ꝇ":"l","lj":"lj","ⓜ":"m","m":"m","ḿ":"m","ṁ":"m","ṃ":"m","ɱ":"m","ɯ":"m","ⓝ":"n","n":"n","ǹ":"n","ń":"n","ñ":"n","ṅ":"n","ň":"n","ṇ":"n","ņ":"n","ṋ":"n","ṉ":"n","ƞ":"n","ɲ":"n","ʼn":"n","ꞑ":"n","ꞥ":"n","nj":"nj","ⓞ":"o","o":"o","ò":"o","ó":"o","ô":"o","ồ":"o","ố":"o","ỗ":"o","ổ":"o","õ":"o","ṍ":"o","ȭ":"o","ṏ":"o","ō":"o","ṑ":"o","ṓ":"o","ŏ":"o","ȯ":"o","ȱ":"o","ö":"o","ȫ":"o","ỏ":"o","ő":"o","ǒ":"o","ȍ":"o","ȏ":"o","ơ":"o","ờ":"o","ớ":"o","ỡ":"o","ở":"o","ợ":"o","ọ":"o","ộ":"o","ǫ":"o","ǭ":"o","ø":"o","ǿ":"o","ɔ":"o","ꝋ":"o","ꝍ":"o","ɵ":"o","ƣ":"oi","ȣ":"ou","ꝏ":"oo","ⓟ":"p","p":"p","ṕ":"p","ṗ":"p","ƥ":"p","ᵽ":"p","ꝑ":"p","ꝓ":"p","ꝕ":"p","ⓠ":"q","q":"q","ɋ":"q","ꝗ":"q","ꝙ":"q","ⓡ":"r","r":"r","ŕ":"r","ṙ":"r","ř":"r","ȑ":"r","ȓ":"r","ṛ":"r","ṝ":"r","ŗ":"r","ṟ":"r","ɍ":"r","ɽ":"r","ꝛ":"r","ꞧ":"r","ꞃ":"r","ⓢ":"s","s":"s","ß":"s","ś":"s","ṥ":"s","ŝ":"s","ṡ":"s","š":"s","ṧ":"s","ṣ":"s","ṩ":"s","ș":"s","ş":"s","ȿ":"s","ꞩ":"s","ꞅ":"s","ẛ":"s","ⓣ":"t","t":"t","ṫ":"t","ẗ":"t","ť":"t","ṭ":"t","ț":"t","ţ":"t","ṱ":"t","ṯ":"t","ŧ":"t","ƭ":"t","ʈ":"t","ⱦ":"t","ꞇ":"t","ꜩ":"tz","ⓤ":"u","u":"u","ù":"u","ú":"u","û":"u","ũ":"u","ṹ":"u","ū":"u","ṻ":"u","ŭ":"u","ü":"u","ǜ":"u","ǘ":"u","ǖ":"u","ǚ":"u","ủ":"u","ů":"u","ű":"u","ǔ":"u","ȕ":"u","ȗ":"u","ư":"u","ừ":"u","ứ":"u","ữ":"u","ử":"u","ự":"u","ụ":"u","ṳ":"u","ų":"u","ṷ":"u","ṵ":"u","ʉ":"u","ⓥ":"v","v":"v","ṽ":"v","ṿ":"v","ʋ":"v","ꝟ":"v","ʌ":"v","ꝡ":"vy","ⓦ":"w","w":"w","ẁ":"w","ẃ":"w","ŵ":"w","ẇ":"w","ẅ":"w","ẘ":"w","ẉ":"w","ⱳ":"w","ⓧ":"x","x":"x","ẋ":"x","ẍ":"x","ⓨ":"y","y":"y","ỳ":"y","ý":"y","ŷ":"y","ỹ":"y","ȳ":"y","ẏ":"y","ÿ":"y","ỷ":"y","ẙ":"y","ỵ":"y","ƴ":"y","ɏ":"y","ỿ":"y","ⓩ":"z","z":"z","ź":"z","ẑ":"z","ż":"z","ž":"z","ẓ":"z","ẕ":"z","ƶ":"z","ȥ":"z","ɀ":"z","ⱬ":"z","ꝣ":"z","Ά":"Α","Έ":"Ε","Ή":"Η","Ί":"Ι","Ϊ":"Ι","Ό":"Ο","Ύ":"Υ","Ϋ":"Υ","Ώ":"Ω","ά":"α","έ":"ε","ή":"η","ί":"ι","ϊ":"ι","ΐ":"ι","ό":"ο","ύ":"υ","ϋ":"υ","ΰ":"υ","ω":"ω","ς":"σ"}}),t.define("select2/data/base",["../utils"],function(e){function t(e,n){t.__super__.constructor.call(this)}return e.Extend(t,e.Observable),t.prototype.current=function(e){throw new Error("The `current` method must be defined in child classes.")},t.prototype.query=function(e,t){throw new Error("The `query` method must be defined in child classes.")},t.prototype.bind=function(e,t){},t.prototype.destroy=function(){},t.prototype.generateResultId=function(t,n){var i=t.id+"-result-";return i+=e.generateChars(4),null!=n.id?i+="-"+n.id.toString():i+="-"+e.generateChars(4),i},t}),t.define("select2/data/select",["./base","../utils","jquery"],function(e,t,n){function i(e,t){this.$element=e,this.options=t,i.__super__.constructor.call(this)}return t.Extend(i,e),i.prototype.current=function(e){var t=[],i=this;this.$element.find(":selected").each(function(){var e=n(this),r=i.item(e);t.push(r)}),e(t)},i.prototype.select=function(e){var t=this;if(e.selected=!0,n(e.element).is("option"))return e.element.selected=!0,void this.$element.trigger("change");if(this.$element.prop("multiple"))this.current(function(i){var r=[];(e=[e]).push.apply(e,i);for(var s=0;s<e.length;s++){var o=e[s].id;-1===n.inArray(o,r)&&r.push(o)}t.$element.val(r),t.$element.trigger("change")});else{var i=e.id;this.$element.val(i),this.$element.trigger("change")}},i.prototype.unselect=function(e){var t=this;if(this.$element.prop("multiple")){if(e.selected=!1,n(e.element).is("option"))return e.element.selected=!1,void this.$element.trigger("change");this.current(function(i){for(var r=[],s=0;s<i.length;s++){var o=i[s].id;o!==e.id&&-1===n.inArray(o,r)&&r.push(o)}t.$element.val(r),t.$element.trigger("change")})}},i.prototype.bind=function(e,t){var n=this;this.container=e,e.on("select",function(e){n.select(e.data)}),e.on("unselect",function(e){n.unselect(e.data)})},i.prototype.destroy=function(){this.$element.find("*").each(function(){n.removeData(this,"data")})},i.prototype.query=function(e,t){var i=[],r=this;this.$element.children().each(function(){var t=n(this);if(t.is("option")||t.is("optgroup")){var s=r.item(t),o=r.matches(e,s);null!==o&&i.push(o)}}),t({results:i})},i.prototype.addOptions=function(e){t.appendMany(this.$element,e)},i.prototype.option=function(e){var t;e.children?(t=document.createElement("optgroup")).label=e.text:(t=document.createElement("option")).textContent!==undefined?t.textContent=e.text:t.innerText=e.text,e.id&&(t.value=e.id),e.disabled&&(t.disabled=!0),e.selected&&(t.selected=!0),e.title&&(t.title=e.title);var i=n(t),r=this._normalizeItem(e);return r.element=t,n.data(t,"data",r),i},i.prototype.item=function(e){var t={};if(null!=(t=n.data(e[0],"data")))return t;if(e.is("option"))t={id:e.val(),text:e.text(),disabled:e.prop("disabled"),selected:e.prop("selected"),title:e.prop("title")};else if(e.is("optgroup")){t={text:e.prop("label"),children:[],title:e.prop("title")};for(var i=e.children("option"),r=[],s=0;s<i.length;s++){var o=n(i[s]),a=this.item(o);r.push(a)}t.children=r}return t=this._normalizeItem(t),t.element=e[0],n.data(e[0],"data",t),t},i.prototype._normalizeItem=function(e){n.isPlainObject(e)||(e={id:e,text:e});var t={selected:!1,disabled:!1};return null!=(e=n.extend({},{text:""},e)).id&&(e.id=e.id.toString()),null!=e.text&&(e.text=e.text.toString()),null==e._resultId&&e.id&&null!=this.container&&(e._resultId=this.generateResultId(this.container,e)),n.extend({},t,e)},i.prototype.matches=function(e,t){return this.options.get("matcher")(e,t)},i}),t.define("select2/data/array",["./select","../utils","jquery"],function(e,t,n){function i(e,t){var n=t.get("data")||[];i.__super__.constructor.call(this,e,t),this.addOptions(this.convertToOptions(n))}return t.Extend(i,e),i.prototype.select=function(e){var t=this.$element.find("option").filter(function(t,n){return n.value==e.id.toString()});0===t.length&&(t=this.option(e),this.addOptions(t)),i.__super__.select.call(this,e)},i.prototype.convertToOptions=function(e){for(var i=this,r=this.$element.find("option"),s=r.map(function(){return i.item(n(this)).id}).get(),o=[],a=0;a<e.length;a++){var l=this._normalizeItem(e[a]);if(n.inArray(l.id,s)>=0){var c=r.filter(function(e){return function(){return n(this).val()==e.id}}(l)),u=this.item(c),d=n.extend(!0,{},l,u),p=this.option(d);c.replaceWith(p)}else{var h=this.option(l);if(l.children){var f=this.convertToOptions(l.children);t.appendMany(h,f)}o.push(h)}}return o},i}),t.define("select2/data/ajax",["./array","../utils","jquery"],function(e,t,n){function i(e,t){this.ajaxOptions=this._applyDefaults(t.get("ajax")),null!=this.ajaxOptions.processResults&&(this.processResults=this.ajaxOptions.processResults),i.__super__.constructor.call(this,e,t)}return t.Extend(i,e),i.prototype._applyDefaults=function(e){var t={data:function(e){return n.extend({},e,{q:e.term})},transport:function(e,t,i){var r=n.ajax(e);return r.then(t),r.fail(i),r}};return n.extend({},t,e,!0)},i.prototype.processResults=function(e){return e},i.prototype.query=function(e,t){function i(){var i=s.transport(s,function(i){var s=r.processResults(i,e);r.options.get("debug")&&window.console&&console.error&&(s&&s.results&&n.isArray(s.results)||console.error("Select2: The AJAX results did not return an array in the `results` key of the response.")),t(s)},function(){i.status&&"0"===i.status||r.trigger("results:message",{message:"errorLoading"})});r._request=i}var r=this;null!=this._request&&(n.isFunction(this._request.abort)&&this._request.abort(),this._request=null);var s=n.extend({type:"GET"},this.ajaxOptions);"function"==typeof s.url&&(s.url=s.url.call(this.$element,e)),"function"==typeof s.data&&(s.data=s.data.call(this.$element,e)),this.ajaxOptions.delay&&null!=e.term?(this._queryTimeout&&window.clearTimeout(this._queryTimeout),this._queryTimeout=window.setTimeout(i,this.ajaxOptions.delay)):i()},i}),t.define("select2/data/tags",["jquery"],function(e){function t(t,n,i){var r=i.get("tags"),s=i.get("createTag");s!==undefined&&(this.createTag=s);var o=i.get("insertTag");if(o!==undefined&&(this.insertTag=o),t.call(this,n,i),e.isArray(r))for(var a=0;a<r.length;a++){var l=r[a],c=this._normalizeItem(l),u=this.option(c);this.$element.append(u)}}return t.prototype.query=function(e,t,n){function i(e,s){for(var o=e.results,a=0;a<o.length;a++){var l=o[a],c=null!=l.children&&!i({results:l.children},!0);if(l.text===t.term||c)return!s&&(e.data=o,void n(e))}if(s)return!0;var u=r.createTag(t);if(null!=u){var d=r.option(u);d.attr("data-select2-tag",!0),r.addOptions([d]),r.insertTag(o,u)}e.results=o,n(e)}var r=this;this._removeOldTags(),null!=t.term&&null==t.page?e.call(this,t,i):e.call(this,t,n)},t.prototype.createTag=function(t,n){var i=e.trim(n.term);return""===i?null:{id:i,text:i}},t.prototype.insertTag=function(e,t,n){t.unshift(n)},t.prototype._removeOldTags=function(t){this._lastTag;this.$element.find("option[data-select2-tag]").each(function(){this.selected||e(this).remove()})},t}),t.define("select2/data/tokenizer",["jquery"],function(e){function t(e,t,n){var i=n.get("tokenizer");i!==undefined&&(this.tokenizer=i),e.call(this,t,n)}return t.prototype.bind=function(e,t,n){e.call(this,t,n),this.$search=t.dropdown.$search||t.selection.$search||n.find(".select2-search__field")},t.prototype.query=function(t,n,i){function r(e){s.trigger("select",{data:e})}var s=this;n.term=n.term||"";var o=this.tokenizer(n,this.options,function(t){var n=s._normalizeItem(t);if(!s.$element.find("option").filter(function(){return e(this).val()===n.id}).length){var i=s.option(n);i.attr("data-select2-tag",!0),s._removeOldTags(),s.addOptions([i])}r(n)});o.term!==n.term&&(this.$search.length&&(this.$search.val(o.term),this.$search.focus()),n.term=o.term),t.call(this,n,i)},t.prototype.tokenizer=function(t,n,i,r){for(var s=i.get("tokenSeparators")||[],o=n.term,a=0,l=this.createTag||function(e){return{id:e.term,text:e.term}};a<o.length;){var c=o[a];if(-1!==e.inArray(c,s)){var u=o.substr(0,a),d=l(e.extend({},n,{term:u}));null!=d?(r(d),o=o.substr(a+1)||"",a=0):a++}else a++}return{term:o}},t}),t.define("select2/data/minimumInputLength",[],function(){function e(e,t,n){this.minimumInputLength=n.get("minimumInputLength"),e.call(this,t,n)}return e.prototype.query=function(e,t,n){t.term=t.term||"",t.term.length<this.minimumInputLength?this.trigger("results:message",{message:"inputTooShort",args:{minimum:this.minimumInputLength,input:t.term,params:t}}):e.call(this,t,n)},e}),t.define("select2/data/maximumInputLength",[],function(){function e(e,t,n){this.maximumInputLength=n.get("maximumInputLength"),e.call(this,t,n)}return e.prototype.query=function(e,t,n){t.term=t.term||"",this.maximumInputLength>0&&t.term.length>this.maximumInputLength?this.trigger("results:message",{message:"inputTooLong",args:{maximum:this.maximumInputLength,input:t.term,params:t}}):e.call(this,t,n)},e}),t.define("select2/data/maximumSelectionLength",[],function(){function e(e,t,n){this.maximumSelectionLength=n.get("maximumSelectionLength"),e.call(this,t,n)}return e.prototype.query=function(e,t,n){var i=this;this.current(function(r){var s=null!=r?r.length:0;i.maximumSelectionLength>0&&s>=i.maximumSelectionLength?i.trigger("results:message",{message:"maximumSelected",args:{maximum:i.maximumSelectionLength}}):e.call(i,t,n)})},e}),t.define("select2/dropdown",["jquery","./utils"],function(e,t){function n(e,t){this.$element=e,this.options=t,n.__super__.constructor.call(this)}return t.Extend(n,t.Observable),n.prototype.render=function(){var t=e('<span class="select2-dropdown"><span class="select2-results"></span></span>');return t.attr("dir",this.options.get("dir")),this.$dropdown=t,t},n.prototype.bind=function(){},n.prototype.position=function(e,t){},n.prototype.destroy=function(){this.$dropdown.remove()},n}),t.define("select2/dropdown/search",["jquery","../utils"],function(e,t){function n(){}return n.prototype.render=function(t){var n=t.call(this),i=e('<span class="select2-search select2-search--dropdown"><input class="select2-search__field" type="search" tabindex="-1" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" role="textbox" /></span>');return this.$searchContainer=i,this.$search=i.find("input"),n.prepend(i),n},n.prototype.bind=function(t,n,i){var r=this;t.call(this,n,i),this.$search.on("keydown",function(e){r.trigger("keypress",e),r._keyUpPrevented=e.isDefaultPrevented()}),this.$search.on("input",function(t){e(this).off("keyup")}),this.$search.on("keyup input",function(e){r.handleSearch(e)}),n.on("open",function(){r.$search.attr("tabindex",0),r.$search.focus(),window.setTimeout(function(){r.$search.focus()},0)}),n.on("close",function(){r.$search.attr("tabindex",-1),r.$search.val("")}),n.on("focus",function(){n.isOpen()&&r.$search.focus()}),n.on("results:all",function(e){null!=e.query.term&&""!==e.query.term||(r.showSearch(e)?r.$searchContainer.removeClass("select2-search--hide"):r.$searchContainer.addClass("select2-search--hide"))})},n.prototype.handleSearch=function(e){if(!this._keyUpPrevented){var t=this.$search.val();this.trigger("query",{term:t})}this._keyUpPrevented=!1},n.prototype.showSearch=function(e,t){return!0},n}),t.define("select2/dropdown/hidePlaceholder",[],function(){function e(e,t,n,i){this.placeholder=this.normalizePlaceholder(n.get("placeholder")),e.call(this,t,n,i)}return e.prototype.append=function(e,t){t.results=this.removePlaceholder(t.results),e.call(this,t)},e.prototype.normalizePlaceholder=function(e,t){return"string"==typeof t&&(t={id:"",text:t}),t},e.prototype.removePlaceholder=function(e,t){for(var n=t.slice(0),i=t.length-1;i>=0;i--){var r=t[i];this.placeholder.id===r.id&&n.splice(i,1)}return n},e}),t.define("select2/dropdown/infiniteScroll",["jquery"],function(e){function t(e,t,n,i){this.lastParams={},e.call(this,t,n,i),this.$loadingMore=this.createLoadingMore(),this.loading=!1}return t.prototype.append=function(e,t){this.$loadingMore.remove(),this.loading=!1,e.call(this,t),this.showLoadingMore(t)&&this.$results.append(this.$loadingMore)},t.prototype.bind=function(t,n,i){var r=this;t.call(this,n,i),n.on("query",function(e){r.lastParams=e,r.loading=!0}),n.on("query:append",function(e){r.lastParams=e,r.loading=!0}),this.$results.on("scroll",function(){var t=e.contains(document.documentElement,r.$loadingMore[0]);!r.loading&&t&&r.$results.offset().top+r.$results.outerHeight(!1)+50>=r.$loadingMore.offset().top+r.$loadingMore.outerHeight(!1)&&r.loadMore()})},t.prototype.loadMore=function(){this.loading=!0;var t=e.extend({},{page:1},this.lastParams);t.page++,this.trigger("query:append",t)},t.prototype.showLoadingMore=function(e,t){return t.pagination&&t.pagination.more},t.prototype.createLoadingMore=function(){var t=e('<li class="select2-results__option select2-results__option--load-more"role="treeitem" aria-disabled="true"></li>'),n=this.options.get("translations").get("loadingMore");return t.html(n(this.lastParams)),t},t}),t.define("select2/dropdown/attachBody",["jquery","../utils"],function(e,t){function n(t,n,i){this.$dropdownParent=i.get("dropdownParent")||e(document.body),t.call(this,n,i)}return n.prototype.bind=function(e,t,n){var i=this,r=!1;e.call(this,t,n),t.on("open",function(){i._showDropdown(),i._attachPositioningHandler(t),r||(r=!0,t.on("results:all",function(){i._positionDropdown(),i._resizeDropdown()}),t.on("results:append",function(){i._positionDropdown(),i._resizeDropdown()}))}),t.on("close",function(){i._hideDropdown(),i._detachPositioningHandler(t)}),this.$dropdownContainer.on("mousedown",function(e){e.stopPropagation()})},n.prototype.destroy=function(e){e.call(this),this.$dropdownContainer.remove()},n.prototype.position=function(e,t,n){t.attr("class",n.attr("class")),t.removeClass("select2"),t.addClass("select2-container--open"),t.css({position:"absolute",top:-999999}),this.$container=n},n.prototype.render=function(t){var n=e("<span></span>"),i=t.call(this);return n.append(i),this.$dropdownContainer=n,n},n.prototype._hideDropdown=function(e){this.$dropdownContainer.detach()},n.prototype._attachPositioningHandler=function(n,i){var r=this,s="scroll.select2."+i.id,o="resize.select2."+i.id,a="orientationchange.select2."+i.id,l=this.$container.parents().filter(t.hasScroll);l.each(function(){e(this).data("select2-scroll-position",{x:e(this).scrollLeft(),y:e(this).scrollTop()})}),l.on(s,function(t){var n=e(this).data("select2-scroll-position");e(this).scrollTop(n.y)}),e(window).on(s+" "+o+" "+a,function(e){r._positionDropdown(),r._resizeDropdown()})},n.prototype._detachPositioningHandler=function(n,i){var r="scroll.select2."+i.id,s="resize.select2."+i.id,o="orientationchange.select2."+i.id;this.$container.parents().filter(t.hasScroll).off(r),e(window).off(r+" "+s+" "+o)},n.prototype._positionDropdown=function(){var t=e(window),n=this.$dropdown.hasClass("select2-dropdown--above"),i=this.$dropdown.hasClass("select2-dropdown--below"),r=null,s=this.$container.offset();s.bottom=s.top+this.$container.outerHeight(!1);var o={height:this.$container.outerHeight(!1)};o.top=s.top,o.bottom=s.top+o.height;var a={height:this.$dropdown.outerHeight(!1)},l={top:t.scrollTop(),bottom:t.scrollTop()+t.height()},c=l.top<s.top-a.height,u=l.bottom>s.bottom+a.height,d={left:s.left,top:o.bottom},p=this.$dropdownParent;"static"===p.css("position")&&(p=p.offsetParent());var h=p.offset();d.top-=h.top,d.left-=h.left,n||i||(r="below"),u||!c||n?!c&&u&&n&&(r="below"):r="above",("above"==r||n&&"below"!==r)&&(d.top=o.top-h.top-a.height),null!=r&&(this.$dropdown.removeClass("select2-dropdown--below select2-dropdown--above").addClass("select2-dropdown--"+r),this.$container.removeClass("select2-container--below select2-container--above").addClass("select2-container--"+r)),this.$dropdownContainer.css(d)},n.prototype._resizeDropdown=function(){var e={width:this.$container.outerWidth(!1)+"px"};this.options.get("dropdownAutoWidth")&&(e.minWidth=e.width,e.position="relative",e.width="auto"),this.$dropdown.css(e)},n.prototype._showDropdown=function(e){this.$dropdownContainer.appendTo(this.$dropdownParent),this._positionDropdown(),this._resizeDropdown()},n}),t.define("select2/dropdown/minimumResultsForSearch",[],function(){function e(t){for(var n=0,i=0;i<t.length;i++){var r=t[i];r.children?n+=e(r.children):n++}return n}function t(e,t,n,i){this.minimumResultsForSearch=n.get("minimumResultsForSearch"),this.minimumResultsForSearch<0&&(this.minimumResultsForSearch=Infinity),e.call(this,t,n,i)}return t.prototype.showSearch=function(t,n){return!(e(n.data.results)<this.minimumResultsForSearch)&&t.call(this,n)},t}),t.define("select2/dropdown/selectOnClose",[],function(){function e(){}return e.prototype.bind=function(e,t,n){var i=this;e.call(this,t,n),t.on("close",function(e){i._handleSelectOnClose(e)})},e.prototype._handleSelectOnClose=function(e,t){if(t&&null!=t.originalSelect2Event){var n=t.originalSelect2Event;if("select"===n._type||"unselect"===n._type)return}var i=this.getHighlightedResults();if(!(i.length<1)){var r=i.data("data");null!=r.element&&r.element.selected||null==r.element&&r.selected||this.trigger("select",{data:r})}},e}),t.define("select2/dropdown/closeOnSelect",[],function(){function e(){}return e.prototype.bind=function(e,t,n){var i=this;e.call(this,t,n),t.on("select",function(e){i._selectTriggered(e)}),t.on("unselect",function(e){i._selectTriggered(e)})},e.prototype._selectTriggered=function(e,t){var n=t.originalEvent;n&&n.ctrlKey||this.trigger("close",{originalEvent:n,originalSelect2Event:t})},e}),t.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 1!=t&&(n+="s"),n},inputTooShort:function(e){return"Please enter "+(e.minimum-e.input.length)+" or more characters"},loadingMore:function(){return"Loading more results…"},maximumSelected:function(e){var t="You can only select "+e.maximum+" item";return 1!=e.maximum&&(t+="s"),t},noResults:function(){return"No results found"},searching:function(){return"Searching…"}}}),t.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(e,t,n,i,r,s,o,a,l,c,u,d,p,h,f,g,m,v,y,_,$,w,b,A,x,E,C,O,S){function T(){this.reset()}return T.prototype.apply=function(d){if(null==(d=e.extend(!0,{},this.defaults,d)).dataAdapter){if(null!=d.ajax?d.dataAdapter=f:null!=d.data?d.dataAdapter=h:d.dataAdapter=p,d.minimumInputLength>0&&(d.dataAdapter=c.Decorate(d.dataAdapter,v)),d.maximumInputLength>0&&(d.dataAdapter=c.Decorate(d.dataAdapter,y)),d.maximumSelectionLength>0&&(d.dataAdapter=c.Decorate(d.dataAdapter,_)),d.tags&&(d.dataAdapter=c.Decorate(d.dataAdapter,g)),null==d.tokenSeparators&&null==d.tokenizer||(d.dataAdapter=c.Decorate(d.dataAdapter,m)),null!=d.query){var S=t(d.amdBase+"compat/query");d.dataAdapter=c.Decorate(d.dataAdapter,S)}if(null!=d.initSelection){var T=t(d.amdBase+"compat/initSelection");d.dataAdapter=c.Decorate(d.dataAdapter,T)}}if(null==d.resultsAdapter&&(d.resultsAdapter=n,null!=d.ajax&&(d.resultsAdapter=c.Decorate(d.resultsAdapter,A)),null!=d.placeholder&&(d.resultsAdapter=c.Decorate(d.resultsAdapter,b)),d.selectOnClose&&(d.resultsAdapter=c.Decorate(d.resultsAdapter,C))),null==d.dropdownAdapter){if(d.multiple)d.dropdownAdapter=$;else{var D=c.Decorate($,w);d.dropdownAdapter=D}if(0!==d.minimumResultsForSearch&&(d.dropdownAdapter=c.Decorate(d.dropdownAdapter,E)),d.closeOnSelect&&(d.dropdownAdapter=c.Decorate(d.dropdownAdapter,O)),null!=d.dropdownCssClass||null!=d.dropdownCss||null!=d.adaptDropdownCssClass){var q=t(d.amdBase+"compat/dropdownCss");d.dropdownAdapter=c.Decorate(d.dropdownAdapter,q)}d.dropdownAdapter=c.Decorate(d.dropdownAdapter,x)}if(null==d.selectionAdapter){if(d.multiple?d.selectionAdapter=r:d.selectionAdapter=i,null!=d.placeholder&&(d.selectionAdapter=c.Decorate(d.selectionAdapter,s)),d.allowClear&&(d.selectionAdapter=c.Decorate(d.selectionAdapter,o)),d.multiple&&(d.selectionAdapter=c.Decorate(d.selectionAdapter,a)),null!=d.containerCssClass||null!=d.containerCss||null!=d.adaptContainerCssClass){var L=t(d.amdBase+"compat/containerCss");d.selectionAdapter=c.Decorate(d.selectionAdapter,L)}d.selectionAdapter=c.Decorate(d.selectionAdapter,l)}if("string"==typeof d.language)if(d.language.indexOf("-")>0){var j=d.language.split("-")[0];d.language=[d.language,j]}else d.language=[d.language];if(e.isArray(d.language)){var P=new u;d.language.push("en");for(var k=d.language,I=0;I<k.length;I++){var R=k[I],M={};try{M=u.loadPath(R)}catch(z){try{R=this.defaults.amdLanguageBase+R,M=u.loadPath(R)}catch(N){d.debug&&window.console&&console.warn&&console.warn('Select2: The language file for "'+R+'" could not be automatically loaded. A fallback will be used instead.');continue}}P.extend(M)}d.translations=P}else{var U=u.loadPath(this.defaults.amdLanguageBase+"en"),H=new u(d.language);H.extend(U),d.translations=H}return d},T.prototype.reset=function(){function t(e){return e.replace(/[^\u0000-\u007E]/g,function(e){return d[e]||e})}function n(i,r){if(""===e.trim(i.term))return r;if(r.children&&r.children.length>0){for(var s=e.extend(!0,{},r),o=r.children.length-1;o>=0;o--)null==n(i,r.children[o])&&s.children.splice(o,1);return s.children.length>0?s:n(i,s)}var a=t(r.text).toUpperCase(),l=t(i.term).toUpperCase();return a.indexOf(l)>-1?r:null}this.defaults={amdBase:"./",amdLanguageBase:"./i18n/",closeOnSelect:!0,debug:!1,dropdownAutoWidth:!1,escapeMarkup:c.escapeMarkup,language:S,matcher:n,minimumInputLength:0,maximumInputLength:0,maximumSelectionLength:0,minimumResultsForSearch:0,selectOnClose:!1,sorter:function(e){return e},templateResult:function(e){return e.text},templateSelection:function(e){return e.text},theme:"default",width:"resolve"}},T.prototype.set=function(t,n){var i={};i[e.camelCase(t)]=n;var r=c._convertData(i);e.extend(this.defaults,r)},new T}),t.define("select2/options",["require","jquery","./defaults","./utils"],function(e,t,n,i){function r(t,r){if(this.options=t,null!=r&&this.fromElement(r),this.options=n.apply(this.options),r&&r.is("input")){var s=e(this.get("amdBase")+"compat/inputData");this.options.dataAdapter=i.Decorate(this.options.dataAdapter,s)}}return r.prototype.fromElement=function(e){var n=["select2"];null==this.options.multiple&&(this.options.multiple=e.prop("multiple")),null==this.options.disabled&&(this.options.disabled=e.prop("disabled")),null==this.options.language&&(e.prop("lang")?this.options.language=e.prop("lang").toLowerCase():e.closest("[lang]").prop("lang")&&(this.options.language=e.closest("[lang]").prop("lang"))),null==this.options.dir&&(e.prop("dir")?this.options.dir=e.prop("dir"):e.closest("[dir]").prop("dir")?this.options.dir=e.closest("[dir]").prop("dir"):this.options.dir="ltr"),e.prop("disabled",this.options.disabled),e.prop("multiple",this.options.multiple),e.data("select2Tags")&&(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",!0)),e.data("ajaxUrl")&&(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 r={};r=t.fn.jquery&&"1."==t.fn.jquery.substr(0,2)&&e[0].dataset?t.extend(!0,{},e[0].dataset,e.data()):e.data();var s=t.extend(!0,{},r);s=i._convertData(s);for(var o in s)t.inArray(o,n)>-1||(t.isPlainObject(this.options[o])?t.extend(this.options[o],s[o]):this.options[o]=s[o]);return this},r.prototype.get=function(e){return this.options[e]},r.prototype.set=function(e,t){this.options[e]=t},r}),t.define("select2/core",["jquery","./options","./utils","./keys"],function(e,t,n,i){var r=function(e,n){null!=e.data("select2")&&e.data("select2").destroy(),this.$element=e,this.id=this._generateId(e),n=n||{},this.options=new t(n,e),r.__super__.constructor.call(this);var i=e.attr("tabindex")||0;e.data("old-tabindex",i),e.attr("tabindex","-1");var s=this.options.get("dataAdapter");this.dataAdapter=new s(e,this.options);var o=this.render();this._placeContainer(o);var a=this.options.get("selectionAdapter");this.selection=new a(e,this.options),this.$selection=this.selection.render(),this.selection.position(this.$selection,o);var l=this.options.get("dropdownAdapter");this.dropdown=new l(e,this.options),this.$dropdown=this.dropdown.render(),this.dropdown.position(this.$dropdown,o);var c=this.options.get("resultsAdapter");this.results=new c(e,this.options,this.dataAdapter),this.$results=this.results.render(),this.results.position(this.$results,this.$dropdown);var u=this;this._bindAdapters(),this._registerDomEvents(),this._registerDataEvents(),this._registerSelectionEvents(),this._registerDropdownEvents(),this._registerResultsEvents(),this._registerEvents(),this.dataAdapter.current(function(e){u.trigger("selection:update",{data:e})}),e.addClass("select2-hidden-accessible"),e.attr("aria-hidden","true"),this._syncAttributes(),e.data("select2",this)};return n.Extend(r,n.Observable),r.prototype._generateId=function(e){var t="";return t=null!=e.attr("id")?e.attr("id"):null!=e.attr("name")?e.attr("name")+"-"+n.generateChars(2):n.generateChars(4),t=t.replace(/(:|\.|\[|\]|,)/g,""),t="select2-"+t},r.prototype._placeContainer=function(e){e.insertAfter(this.$element);var t=this._resolveWidth(this.$element,this.options.get("width"));null!=t&&e.css("width",t)},r.prototype._resolveWidth=function(e,t){var n=/^width:(([-+]?([0-9]*\.)?[0-9]+)(px|em|ex|%|in|cm|mm|pt|pc))/i;if("resolve"==t){var i=this._resolveWidth(e,"style");return null!=i?i:this._resolveWidth(e,"element")}if("element"==t){var r=e.outerWidth(!1);return r<=0?"auto":r+"px"}if("style"==t){var s=e.attr("style");if("string"!=typeof s)return null;for(var o=s.split(";"),a=0,l=o.length;a<l;a+=1){var c=o[a].replace(/\s/g,"").match(n);if(null!==c&&c.length>=1)return c[1]}return null}return t},r.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)},r.prototype._registerDomEvents=function(){var t=this;this.$element.on("change.select2",function(){t.dataAdapter.current(function(e){t.trigger("selection:update",{data:e})})}),this.$element.on("focus.select2",function(e){t.trigger("focus",e)}),this._syncA=n.bind(this._syncAttributes,this),this._syncS=n.bind(this._syncSubtree,this),this.$element[0].attachEvent&&this.$element[0].attachEvent("onpropertychange",this._syncA);var i=window.MutationObserver||window.WebKitMutationObserver||window.MozMutationObserver;null!=i?(this._observer=new i(function(n){e.each(n,t._syncA),e.each(n,t._syncS)}),this._observer.observe(this.$element[0],{attributes:!0,childList:!0,subtree:!1})):this.$element[0].addEventListener&&(this.$element[0].addEventListener("DOMAttrModified",t._syncA,!1),this.$element[0].addEventListener("DOMNodeInserted",t._syncS,!1),this.$element[0].addEventListener("DOMNodeRemoved",t._syncS,!1))},r.prototype._registerDataEvents=function(){var e=this;this.dataAdapter.on("*",function(t,n){e.trigger(t,n)})},r.prototype._registerSelectionEvents=function(){var t=this,n=["toggle","focus"];this.selection.on("toggle",function(){t.toggleDropdown()}),this.selection.on("focus",function(e){t.focus(e)}),this.selection.on("*",function(i,r){-1===e.inArray(i,n)&&t.trigger(i,r)})},r.prototype._registerDropdownEvents=function(){var e=this;this.dropdown.on("*",function(t,n){e.trigger(t,n)})},r.prototype._registerResultsEvents=function(){var e=this;this.results.on("*",function(t,n){e.trigger(t,n)})},r.prototype._registerEvents=function(){var e=this;this.on("open",function(){e.$container.addClass("select2-container--open")}),this.on("close",function(){e.$container.removeClass("select2-container--open")}),this.on("enable",function(){e.$container.removeClass("select2-container--disabled")}),this.on("disable",function(){e.$container.addClass("select2-container--disabled")}),this.on("blur",function(){e.$container.removeClass("select2-container--focus")}),this.on("query",function(t){e.isOpen()||e.trigger("open",{}),this.dataAdapter.query(t,function(n){e.trigger("results:all",{data:n,query:t})})}),this.on("query:append",function(t){this.dataAdapter.query(t,function(n){e.trigger("results:append",{data:n,query:t})})}),this.on("keypress",function(t){var n=t.which;e.isOpen()?n===i.ESC||n===i.TAB||n===i.UP&&t.altKey?(e.close(),t.preventDefault()):n===i.ENTER?(e.trigger("results:select",{}),t.preventDefault()):n===i.SPACE&&t.ctrlKey?(e.trigger("results:toggle",{}),t.preventDefault()):n===i.UP?(e.trigger("results:previous",{}),t.preventDefault()):n===i.DOWN&&(e.trigger("results:next",{}),t.preventDefault()):(n===i.ENTER||n===i.SPACE||n===i.DOWN&&t.altKey)&&(e.open(),t.preventDefault())})},r.prototype._syncAttributes=function(){this.options.set("disabled",this.$element.prop("disabled")),this.options.get("disabled")?(this.isOpen()&&this.close(),this.trigger("disable",{})):this.trigger("enable",{})},r.prototype._syncSubtree=function(e,t){var n=!1,i=this;if(!e||!e.target||"OPTION"===e.target.nodeName||"OPTGROUP"===e.target.nodeName){if(t)if(t.addedNodes&&t.addedNodes.length>0)for(var r=0;r<t.addedNodes.length;r++)t.addedNodes[r].selected&&(n=!0);else t.removedNodes&&t.removedNodes.length>0&&(n=!0);else n=!0;n&&this.dataAdapter.current(function(e){i.trigger("selection:update",{data:e})})}},r.prototype.trigger=function(e,t){var n=r.__super__.trigger,i={open:"opening",close:"closing",select:"selecting",unselect:"unselecting"};if(t===undefined&&(t={}),e in i){var s=i[e],o={prevented:!1,name:e,args:t};if(n.call(this,s,o),o.prevented)return void(t.prevented=!0)}n.call(this,e,t)},r.prototype.toggleDropdown=function(){this.options.get("disabled")||(this.isOpen()?this.close():this.open())},r.prototype.open=function(){this.isOpen()||this.trigger("query",{})},r.prototype.close=function(){this.isOpen()&&this.trigger("close",{})},r.prototype.isOpen=function(){return this.$container.hasClass("select2-container--open")},r.prototype.hasFocus=function(){return this.$container.hasClass("select2-container--focus")},r.prototype.focus=function(e){this.hasFocus()||(this.$container.addClass("select2-container--focus"),this.trigger("focus",{}))},r.prototype.enable=function(e){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.'),null!=e&&0!==e.length||(e=[!0]);var t=!e[0];this.$element.prop("disabled",t)},r.prototype.data=function(){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 e=[];return this.dataAdapter.current(function(t){e=t}),e},r.prototype.val=function(t){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.'),null==t||0===t.length)return this.$element.val();var n=t[0];e.isArray(n)&&(n=e.map(n,function(e){return e.toString()})),this.$element.val(n).trigger("change")},r.prototype.destroy=function(){this.$container.remove(),this.$element[0].detachEvent&&this.$element[0].detachEvent("onpropertychange",this._syncA),null!=this._observer?(this._observer.disconnect(),this._observer=null):this.$element[0].removeEventListener&&(this.$element[0].removeEventListener("DOMAttrModified",this._syncA,!1),this.$element[0].removeEventListener("DOMNodeInserted",this._syncS,!1),this.$element[0].removeEventListener("DOMNodeRemoved",this._syncS,!1)),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},r.prototype.render=function(){var t=e('<span class="select2 select2-container"><span class="selection"></span><span class="dropdown-wrapper" aria-hidden="true"></span></span>');return t.attr("dir",this.options.get("dir")),this.$container=t,this.$container.addClass("select2-container--"+this.options.get("theme")),t.data("element",this.$element),t},r}),t.define("jquery-mousewheel",["jquery"],function(e){return e}),t.define("jquery.select2",["jquery","jquery-mousewheel","./select2/core","./select2/defaults"],function(e,t,n,i){if(null==e.fn.select2){var r=["open","close","destroy"];e.fn.select2=function(t){if("object"==typeof(t=t||{}))return this.each(function(){var i=e.extend(!0,{},t);new n(e(this),i)}),this;if("string"==typeof t){var i,s=Array.prototype.slice.call(arguments,1);return this.each(function(){var n=e(this).data("select2");null==n&&window.console&&console.error&&console.error("The select2('"+t+"') method was called on an element that is not using Select2."),i=n[t].apply(n,s)}),e.inArray(t,r)>-1?this:i}throw new Error("Invalid arguments for Select2: "+t)}}return null==e.fn.select2.defaults&&(e.fn.select2.defaults=i),n}),{define:t.define,require:t.require}}(),n=t.require("jquery.select2");return e.fn.select2.amd=t,n});PK`x1\O����q�q&plugin-fw/assets/js/jquery.colorbox.jsnu�[���/*!
	Colorbox 1.6.3
	license: MIT
	http://www.jacklmoore.com/colorbox
*/
(function ($, document, window) {
	var
	// Default settings object.
	// See http://jacklmoore.com/colorbox for details.
	defaults = {
		// data sources
		html: false,
		photo: false,
		iframe: false,
		inline: false,

		// behavior and appearance
		transition: "elastic",
		speed: 300,
		fadeOut: 300,
		width: false,
		initialWidth: "600",
		innerWidth: false,
		maxWidth: false,
		height: false,
		initialHeight: "450",
		innerHeight: false,
		maxHeight: false,
		scalePhotos: true,
		scrolling: true,
		opacity: 0.9,
		preloading: true,
		className: false,
		overlayClose: true,
		escKey: true,
		arrowKey: true,
		top: false,
		bottom: false,
		left: false,
		right: false,
		fixed: false,
		data: undefined,
		closeButton: true,
		fastIframe: true,
		open: false,
		reposition: true,
		loop: true,
		slideshow: false,
		slideshowAuto: true,
		slideshowSpeed: 2500,
		slideshowStart: "start slideshow",
		slideshowStop: "stop slideshow",
		photoRegex: /\.(gif|png|jp(e|g|eg)|bmp|ico|webp|jxr|svg)((#|\?).*)?$/i,

		// alternate image paths for high-res displays
		retinaImage: false,
		retinaUrl: false,
		retinaSuffix: '@2x.$1',

		// internationalization
		current: "image {current} of {total}",
		previous: "previous",
		next: "next",
		close: "close",
		xhrError: "This content failed to load.",
		imgError: "This image failed to load.",

		// accessbility
		returnFocus: true,
		trapFocus: true,

		// callbacks
		onOpen: false,
		onLoad: false,
		onComplete: false,
		onCleanup: false,
		onClosed: false,

		rel: function() {
			return this.rel;
		},
		href: function() {
			// using this.href would give the absolute url, when the href may have been inteded as a selector (e.g. '#container')
			return $(this).attr('href');
		},
		title: function() {
			return this.title;
		},
		createImg: function() {
			var img = new Image();
			var attrs = $(this).data('cbox-img-attrs');

			if (typeof attrs === 'object') {
				$.each(attrs, function(key, val){
					img[key] = val;
				});
			}

			return img;
		},
		createIframe: function() {
			var iframe = document.createElement('iframe');
			var attrs = $(this).data('cbox-iframe-attrs');

			if (typeof attrs === 'object') {
				$.each(attrs, function(key, val){
					iframe[key] = val;
				});
			}

			if ('frameBorder' in iframe) {
				iframe.frameBorder = 0;
			}
			if ('allowTransparency' in iframe) {
				iframe.allowTransparency = "true";
			}
			iframe.name = (new Date()).getTime(); // give the iframe a unique name to prevent caching
			iframe.allowFullscreen = true;

			return iframe;
		}
	},

	// Abstracting the HTML and event identifiers for easy rebranding
	colorbox = 'colorbox',
	prefix = 'cbox',
	boxElement = prefix + 'Element',

	// Events
	event_open = prefix + '_open',
	event_load = prefix + '_load',
	event_complete = prefix + '_complete',
	event_cleanup = prefix + '_cleanup',
	event_closed = prefix + '_closed',
	event_purge = prefix + '_purge',

	// Cached jQuery Object Variables
	$overlay,
	$box,
	$wrap,
	$content,
	$topBorder,
	$leftBorder,
	$rightBorder,
	$bottomBorder,
	$related,
	$window,
	$loaded,
	$loadingBay,
	$loadingOverlay,
	$title,
	$current,
	$slideshow,
	$next,
	$prev,
	$close,
	$groupControls,
	$events = $('<a/>'), // $({}) would be prefered, but there is an issue with jQuery 1.4.2

	// Variables for cached values or use across multiple functions
	settings,
	interfaceHeight,
	interfaceWidth,
	loadedHeight,
	loadedWidth,
	index,
	photo,
	open,
	active,
	closing,
	loadingTimer,
	publicMethod,
	div = "div",
	requests = 0,
	previousCSS = {},
	init;

	// ****************
	// HELPER FUNCTIONS
	// ****************

	// Convenience function for creating new jQuery objects
	function $tag(tag, id, css) {
		var element = document.createElement(tag);

		if (id) {
			element.id = prefix + id;
		}

		if (css) {
			element.style.cssText = css;
		}

		return $(element);
	}

	// Get the window height using innerHeight when available to avoid an issue with iOS
	// http://bugs.jquery.com/ticket/6724
	function winheight() {
		return window.innerHeight ? window.innerHeight : $(window).height();
	}

	function Settings(element, options) {
		if (options !== Object(options)) {
			options = {};
		}

		this.cache = {};
		this.el = element;

		this.value = function(key) {
			var dataAttr;

			if (this.cache[key] === undefined) {
				dataAttr = $(this.el).attr('data-cbox-'+key);

				if (dataAttr !== undefined) {
					this.cache[key] = dataAttr;
				} else if (options[key] !== undefined) {
					this.cache[key] = options[key];
				} else if (defaults[key] !== undefined) {
					this.cache[key] = defaults[key];
				}
			}

			return this.cache[key];
		};

		this.get = function(key) {
			var value = this.value(key);
			return $.isFunction(value) ? value.call(this.el, this) : value;
		};
	}

	// Determine the next and previous members in a group.
	function getIndex(increment) {
		var
		max = $related.length,
		newIndex = (index + increment) % max;

		return (newIndex < 0) ? max + newIndex : newIndex;
	}

	// Convert '%' and 'px' values to integers
	function setSize(size, dimension) {
		return Math.round((/%/.test(size) ? ((dimension === 'x' ? $window.width() : winheight()) / 100) : 1) * parseInt(size, 10));
	}

	// Checks an href to see if it is a photo.
	// There is a force photo option (photo: true) for hrefs that cannot be matched by the regex.
	function isImage(settings, url) {
		return settings.get('photo') || settings.get('photoRegex').test(url);
	}

	function retinaUrl(settings, url) {
		return settings.get('retinaUrl') && window.devicePixelRatio > 1 ? url.replace(settings.get('photoRegex'), settings.get('retinaSuffix')) : url;
	}

	function trapFocus(e) {
		if ('contains' in $box[0] && !$box[0].contains(e.target) && e.target !== $overlay[0]) {
			e.stopPropagation();
			$box.focus();
		}
	}

	function setClass(str) {
		if (setClass.str !== str) {
			$box.add($overlay).removeClass(setClass.str).addClass(str);
			setClass.str = str;
		}
	}

	function getRelated(rel) {
		index = 0;

		if (rel && rel !== false && rel !== 'nofollow') {
			$related = $('.' + boxElement).filter(function () {
				var options = $.data(this, colorbox);
				var settings = new Settings(this, options);
				return (settings.get('rel') === rel);
			});
			index = $related.index(settings.el);

			// Check direct calls to Colorbox.
			if (index === -1) {
				$related = $related.add(settings.el);
				index = $related.length - 1;
			}
		} else {
			$related = $(settings.el);
		}
	}

	function trigger(event) {
		// for external use
		$(document).trigger(event);
		// for internal use
		$events.triggerHandler(event);
	}

	var slideshow = (function(){
		var active,
			className = prefix + "Slideshow_",
			click = "click." + prefix,
			timeOut;

		function clear () {
			clearTimeout(timeOut);
		}

		function set() {
			if (settings.get('loop') || $related[index + 1]) {
				clear();
				timeOut = setTimeout(publicMethod.next, settings.get('slideshowSpeed'));
			}
		}

		function start() {
			$slideshow
				.html(settings.get('slideshowStop'))
				.unbind(click)
				.one(click, stop);

			$events
				.bind(event_complete, set)
				.bind(event_load, clear);

			$box.removeClass(className + "off").addClass(className + "on");
		}

		function stop() {
			clear();

			$events
				.unbind(event_complete, set)
				.unbind(event_load, clear);

			$slideshow
				.html(settings.get('slideshowStart'))
				.unbind(click)
				.one(click, function () {
					publicMethod.next();
					start();
				});

			$box.removeClass(className + "on").addClass(className + "off");
		}

		function reset() {
			active = false;
			$slideshow.hide();
			clear();
			$events
				.unbind(event_complete, set)
				.unbind(event_load, clear);
			$box.removeClass(className + "off " + className + "on");
		}

		return function(){
			if (active) {
				if (!settings.get('slideshow')) {
					$events.unbind(event_cleanup, reset);
					reset();
				}
			} else {
				if (settings.get('slideshow') && $related[1]) {
					active = true;
					$events.one(event_cleanup, reset);
					if (settings.get('slideshowAuto')) {
						start();
					} else {
						stop();
					}
					$slideshow.show();
				}
			}
		};

	}());


	function launch(element) {
		var options;

		if (!closing) {

			options = $(element).data(colorbox);

			settings = new Settings(element, options);

			getRelated(settings.get('rel'));

			if (!open) {
				open = active = true; // Prevents the page-change action from queuing up if the visitor holds down the left or right keys.

				setClass(settings.get('className'));

				// Show colorbox so the sizes can be calculated in older versions of jQuery
				$box.css({visibility:'hidden', display:'block', opacity:''});

				$loaded = $tag(div, 'LoadedContent', 'width:0; height:0; overflow:hidden; visibility:hidden');
				$content.css({width:'', height:''}).append($loaded);

				// Cache values needed for size calculations
				interfaceHeight = $topBorder.height() + $bottomBorder.height() + $content.outerHeight(true) - $content.height();
				interfaceWidth = $leftBorder.width() + $rightBorder.width() + $content.outerWidth(true) - $content.width();
				loadedHeight = $loaded.outerHeight(true);
				loadedWidth = $loaded.outerWidth(true);

				// Opens inital empty Colorbox prior to content being loaded.
				var initialWidth = setSize(settings.get('initialWidth'), 'x');
				var initialHeight = setSize(settings.get('initialHeight'), 'y');
				var maxWidth = settings.get('maxWidth');
				var maxHeight = settings.get('maxHeight');

				settings.w = Math.max((maxWidth !== false ? Math.min(initialWidth, setSize(maxWidth, 'x')) : initialWidth) - loadedWidth - interfaceWidth, 0);
				settings.h = Math.max((maxHeight !== false ? Math.min(initialHeight, setSize(maxHeight, 'y')) : initialHeight) - loadedHeight - interfaceHeight, 0);

				$loaded.css({width:'', height:settings.h});
				publicMethod.position();

				trigger(event_open);
				settings.get('onOpen');

				$groupControls.add($title).hide();

				$box.focus();

				if (settings.get('trapFocus')) {
					// Confine focus to the modal
					// Uses event capturing that is not supported in IE8-
					if (document.addEventListener) {

						document.addEventListener('focus', trapFocus, true);

						$events.one(event_closed, function () {
							document.removeEventListener('focus', trapFocus, true);
						});
					}
				}

				// Return focus on closing
				if (settings.get('returnFocus')) {
					$events.one(event_closed, function () {
						$(settings.el).focus();
					});
				}
			}

			var opacity = parseFloat(settings.get('opacity'));
			$overlay.css({
				opacity: opacity === opacity ? opacity : '',
				cursor: settings.get('overlayClose') ? 'pointer' : '',
				visibility: 'visible'
			}).show();

			if (settings.get('closeButton')) {
				$close.html(settings.get('close')).appendTo($content);
			} else {
				$close.appendTo('<div/>'); // replace with .detach() when dropping jQuery < 1.4
			}

			load();
		}
	}

	// Colorbox's markup needs to be added to the DOM prior to being called
	// so that the browser will go ahead and load the CSS background images.
	function appendHTML() {
		if (!$box) {
			init = false;
			$window = $(window);
			$box = $tag(div).attr({
				id: colorbox,
				'class': $.support.opacity === false ? prefix + 'IE' : '', // class for optional IE8 & lower targeted CSS.
				role: 'dialog',
				tabindex: '-1'
			}).hide();
			$overlay = $tag(div, "Overlay").hide();
			$loadingOverlay = $([$tag(div, "LoadingOverlay")[0],$tag(div, "LoadingGraphic")[0]]);
			$wrap = $tag(div, "Wrapper");
			$content = $tag(div, "Content").append(
				$title = $tag(div, "Title"),
				$current = $tag(div, "Current"),
				$prev = $('<button type="button"/>').attr({id:prefix+'Previous'}),
				$next = $('<button type="button"/>').attr({id:prefix+'Next'}),
				$slideshow = $tag('button', "Slideshow"),
				$loadingOverlay
			);

			$close = $('<button type="button"/>').attr({id:prefix+'Close'});

			$wrap.append( // The 3x3 Grid that makes up Colorbox
				$tag(div).append(
					$tag(div, "TopLeft"),
					$topBorder = $tag(div, "TopCenter"),
					$tag(div, "TopRight")
				),
				$tag(div, false, 'clear:left').append(
					$leftBorder = $tag(div, "MiddleLeft"),
					$content,
					$rightBorder = $tag(div, "MiddleRight")
				),
				$tag(div, false, 'clear:left').append(
					$tag(div, "BottomLeft"),
					$bottomBorder = $tag(div, "BottomCenter"),
					$tag(div, "BottomRight")
				)
			).find('div div').css({'float': 'left'});

			$loadingBay = $tag(div, false, 'position:absolute; width:9999px; visibility:hidden; display:none; max-width:none;');

			$groupControls = $next.add($prev).add($current).add($slideshow);
		}
		if (document.body && !$box.parent().length) {
			$(document.body).append($overlay, $box.append($wrap, $loadingBay));
		}
	}

	// Add Colorbox's event bindings
	function addBindings() {
		function clickHandler(e) {
			// ignore non-left-mouse-clicks and clicks modified with ctrl / command, shift, or alt.
			// See: http://jacklmoore.com/notes/click-events/
			if (!(e.which > 1 || e.shiftKey || e.altKey || e.metaKey || e.ctrlKey)) {
				e.preventDefault();
				launch(this);
			}
		}

		if ($box) {
			if (!init) {
				init = true;

				// Anonymous functions here keep the public method from being cached, thereby allowing them to be redefined on the fly.
				$next.click(function () {
					publicMethod.next();
				});
				$prev.click(function () {
					publicMethod.prev();
				});
				$close.click(function () {
					publicMethod.close();
				});
				$overlay.click(function () {
					if (settings.get('overlayClose')) {
						publicMethod.close();
					}
				});

				// Key Bindings
				$(document).bind('keydown.' + prefix, function (e) {
					var key = e.keyCode;
					if (open && settings.get('escKey') && key === 27) {
						e.preventDefault();
						publicMethod.close();
					}
					if (open && settings.get('arrowKey') && $related[1] && !e.altKey) {
						if (key === 37) {
							e.preventDefault();
							$prev.click();
						} else if (key === 39) {
							e.preventDefault();
							$next.click();
						}
					}
				});

				if ($.isFunction($.fn.on)) {
					// For jQuery 1.7+
					$(document).on('click.'+prefix, '.'+boxElement, clickHandler);
				} else {
					// For jQuery 1.3.x -> 1.6.x
					// This code is never reached in jQuery 1.9, so do not contact me about 'live' being removed.
					// This is not here for jQuery 1.9, it's here for legacy users.
					$('.'+boxElement).live('click.'+prefix, clickHandler);
				}
			}
			return true;
		}
		return false;
	}

	// Don't do anything if Colorbox already exists.
	if ($[colorbox]) {
		return;
	}

	// Append the HTML when the DOM loads
	$(appendHTML);


	// ****************
	// PUBLIC FUNCTIONS
	// Usage format: $.colorbox.close();
	// Usage from within an iframe: parent.jQuery.colorbox.close();
	// ****************

	publicMethod = $.fn[colorbox] = $[colorbox] = function (options, callback) {
		var settings;
		var $obj = this;

		options = options || {};

		if ($.isFunction($obj)) { // assume a call to $.colorbox
			$obj = $('<a/>');
			options.open = true;
		}

		if (!$obj[0]) { // colorbox being applied to empty collection
			return $obj;
		}

		appendHTML();

		if (addBindings()) {

			if (callback) {
				options.onComplete = callback;
			}

			$obj.each(function () {
				var old = $.data(this, colorbox) || {};
				$.data(this, colorbox, $.extend(old, options));
			}).addClass(boxElement);

			settings = new Settings($obj[0], options);

			if (settings.get('open')) {
				launch($obj[0]);
			}
		}

		return $obj;
	};

	publicMethod.position = function (speed, loadedCallback) {
		var
		css,
		top = 0,
		left = 0,
		offset = $box.offset(),
		scrollTop,
		scrollLeft;

		$window.unbind('resize.' + prefix);

		// remove the modal so that it doesn't influence the document width/height
		$box.css({top: -9e4, left: -9e4});

		scrollTop = $window.scrollTop();
		scrollLeft = $window.scrollLeft();

		if (settings.get('fixed')) {
			offset.top -= scrollTop;
			offset.left -= scrollLeft;
			$box.css({position: 'fixed'});
		} else {
			top = scrollTop;
			left = scrollLeft;
			$box.css({position: 'absolute'});
		}

		// keeps the top and left positions within the browser's viewport.
		if (settings.get('right') !== false) {
			left += Math.max($window.width() - settings.w - loadedWidth - interfaceWidth - setSize(settings.get('right'), 'x'), 0);
		} else if (settings.get('left') !== false) {
			left += setSize(settings.get('left'), 'x');
		} else {
			left += Math.round(Math.max($window.width() - settings.w - loadedWidth - interfaceWidth, 0) / 2);
		}

		if (settings.get('bottom') !== false) {
			top += Math.max(winheight() - settings.h - loadedHeight - interfaceHeight - setSize(settings.get('bottom'), 'y'), 0);
		} else if (settings.get('top') !== false) {
			top += setSize(settings.get('top'), 'y');
		} else {
			top += Math.round(Math.max(winheight() - settings.h - loadedHeight - interfaceHeight, 0) / 2);
		}

		$box.css({top: offset.top, left: offset.left, visibility:'visible'});

		// this gives the wrapper plenty of breathing room so it's floated contents can move around smoothly,
		// but it has to be shrank down around the size of div#colorbox when it's done.  If not,
		// it can invoke an obscure IE bug when using iframes.
		$wrap[0].style.width = $wrap[0].style.height = "9999px";

		function modalDimensions() {
			$topBorder[0].style.width = $bottomBorder[0].style.width = $content[0].style.width = (parseInt($box[0].style.width,10) - interfaceWidth)+'px';
			$content[0].style.height = $leftBorder[0].style.height = $rightBorder[0].style.height = (parseInt($box[0].style.height,10) - interfaceHeight)+'px';
		}

		css = {width: settings.w + loadedWidth + interfaceWidth, height: settings.h + loadedHeight + interfaceHeight, top: top, left: left};

		// setting the speed to 0 if the content hasn't changed size or position
		if (speed) {
			var tempSpeed = 0;
			$.each(css, function(i){
				if (css[i] !== previousCSS[i]) {
					tempSpeed = speed;
					return;
				}
			});
			speed = tempSpeed;
		}

		previousCSS = css;

		if (!speed) {
			$box.css(css);
		}

		$box.dequeue().animate(css, {
			duration: speed || 0,
			complete: function () {
				modalDimensions();

				active = false;

				// shrink the wrapper down to exactly the size of colorbox to avoid a bug in IE's iframe implementation.
				$wrap[0].style.width = (settings.w + loadedWidth + interfaceWidth) + "px";
				$wrap[0].style.height = (settings.h + loadedHeight + interfaceHeight) + "px";

				if (settings.get('reposition')) {
					setTimeout(function () {  // small delay before binding onresize due to an IE8 bug.
						$window.bind('resize.' + prefix, publicMethod.position);
					}, 1);
				}

				if ($.isFunction(loadedCallback)) {
					loadedCallback();
				}
			},
			step: modalDimensions
		});
	};

	publicMethod.resize = function (options) {
		var scrolltop;

		if (open) {
			options = options || {};

			if (options.width) {
				settings.w = setSize(options.width, 'x') - loadedWidth - interfaceWidth;
			}

			if (options.innerWidth) {
				settings.w = setSize(options.innerWidth, 'x');
			}

			$loaded.css({width: settings.w});

			if (options.height) {
				settings.h = setSize(options.height, 'y') - loadedHeight - interfaceHeight;
			}

			if (options.innerHeight) {
				settings.h = setSize(options.innerHeight, 'y');
			}

			if (!options.innerHeight && !options.height) {
				scrolltop = $loaded.scrollTop();
				$loaded.css({height: "auto"});
				settings.h = $loaded.height();
			}

			$loaded.css({height: settings.h});

			if(scrolltop) {
				$loaded.scrollTop(scrolltop);
			}

			publicMethod.position(settings.get('transition') === "none" ? 0 : settings.get('speed'));
		}
	};

	publicMethod.prep = function (object) {
		if (!open) {
			return;
		}

		var callback, speed = settings.get('transition') === "none" ? 0 : settings.get('speed');

		$loaded.remove();

		$loaded = $tag(div, 'LoadedContent').append(object);

		function getWidth() {
			settings.w = settings.w || $loaded.width();
			settings.w = settings.mw && settings.mw < settings.w ? settings.mw : settings.w;
			return settings.w;
		}
		function getHeight() {
			settings.h = settings.h || $loaded.height();
			settings.h = settings.mh && settings.mh < settings.h ? settings.mh : settings.h;
			return settings.h;
		}

		$loaded.hide()
		.appendTo($loadingBay.show())// content has to be appended to the DOM for accurate size calculations.
		.css({width: getWidth(), overflow: settings.get('scrolling') ? 'auto' : 'hidden'})
		.css({height: getHeight()})// sets the height independently from the width in case the new width influences the value of height.
		.prependTo($content);

		$loadingBay.hide();

		// floating the IMG removes the bottom line-height and fixed a problem where IE miscalculates the width of the parent element as 100% of the document width.

		$(photo).css({'float': 'none'});

		setClass(settings.get('className'));

		callback = function () {
			var total = $related.length,
				iframe,
				complete;

			if (!open) {
				return;
			}

			function removeFilter() { // Needed for IE8 in versions of jQuery prior to 1.7.2
				if ($.support.opacity === false) {
					$box[0].style.removeAttribute('filter');
				}
			}

			complete = function () {
				clearTimeout(loadingTimer);
				$loadingOverlay.hide();
				trigger(event_complete);
				settings.get('onComplete');
			};


			$title.html(settings.get('title')).show();
			$loaded.show();

			if (total > 1) { // handle grouping
				if (typeof settings.get('current') === "string") {
					$current.html(settings.get('current').replace('{current}', index + 1).replace('{total}', total)).show();
				}

				$next[(settings.get('loop') || index < total - 1) ? "show" : "hide"]().html(settings.get('next'));
				$prev[(settings.get('loop') || index) ? "show" : "hide"]().html(settings.get('previous'));

				slideshow();

				// Preloads images within a rel group
				if (settings.get('preloading')) {
					$.each([getIndex(-1), getIndex(1)], function(){
						var img,
							i = $related[this],
							settings = new Settings(i, $.data(i, colorbox)),
							src = settings.get('href');

						if (src && isImage(settings, src)) {
							src = retinaUrl(settings, src);
							img = document.createElement('img');
							img.src = src;
						}
					});
				}
			} else {
				$groupControls.hide();
			}

			if (settings.get('iframe')) {

				iframe = settings.get('createIframe');

				if (!settings.get('scrolling')) {
					iframe.scrolling = "no";
				}

				$(iframe)
					.attr({
						src: settings.get('href'),
						'class': prefix + 'Iframe'
					})
					.one('load', complete)
					.appendTo($loaded);

				$events.one(event_purge, function () {
					iframe.src = "//about:blank";
				});

				if (settings.get('fastIframe')) {
					$(iframe).trigger('load');
				}
			} else {
				complete();
			}

			if (settings.get('transition') === 'fade') {
				$box.fadeTo(speed, 1, removeFilter);
			} else {
				removeFilter();
			}
		};

		if (settings.get('transition') === 'fade') {
			$box.fadeTo(speed, 0, function () {
				publicMethod.position(0, callback);
			});
		} else {
			publicMethod.position(speed, callback);
		}
	};

	function load () {
		var href, setResize, prep = publicMethod.prep, $inline, request = ++requests;

		active = true;

		photo = false;

		trigger(event_purge);
		trigger(event_load);
		settings.get('onLoad');

		settings.h = settings.get('height') ?
				setSize(settings.get('height'), 'y') - loadedHeight - interfaceHeight :
				settings.get('innerHeight') && setSize(settings.get('innerHeight'), 'y');

		settings.w = settings.get('width') ?
				setSize(settings.get('width'), 'x') - loadedWidth - interfaceWidth :
				settings.get('innerWidth') && setSize(settings.get('innerWidth'), 'x');

		// Sets the minimum dimensions for use in image scaling
		settings.mw = settings.w;
		settings.mh = settings.h;

		// Re-evaluate the minimum width and height based on maxWidth and maxHeight values.
		// If the width or height exceed the maxWidth or maxHeight, use the maximum values instead.
		if (settings.get('maxWidth')) {
			settings.mw = setSize(settings.get('maxWidth'), 'x') - loadedWidth - interfaceWidth;
			settings.mw = settings.w && settings.w < settings.mw ? settings.w : settings.mw;
		}
		if (settings.get('maxHeight')) {
			settings.mh = setSize(settings.get('maxHeight'), 'y') - loadedHeight - interfaceHeight;
			settings.mh = settings.h && settings.h < settings.mh ? settings.h : settings.mh;
		}

		href = settings.get('href');

		loadingTimer = setTimeout(function () {
			$loadingOverlay.show();
		}, 100);

		if (settings.get('inline')) {
			var $target = $(href);
			// Inserts an empty placeholder where inline content is being pulled from.
			// An event is bound to put inline content back when Colorbox closes or loads new content.
			$inline = $('<div>').hide().insertBefore($target);

			$events.one(event_purge, function () {
				$inline.replaceWith($target);
			});

			prep($target);
		} else if (settings.get('iframe')) {
			// IFrame element won't be added to the DOM until it is ready to be displayed,
			// to avoid problems with DOM-ready JS that might be trying to run in that iframe.
			prep(" ");
		} else if (settings.get('html')) {
			prep(settings.get('html'));
		} else if (isImage(settings, href)) {

			href = retinaUrl(settings, href);

			photo = settings.get('createImg');

			$(photo)
			.addClass(prefix + 'Photo')
			.bind('error.'+prefix,function () {
				prep($tag(div, 'Error').html(settings.get('imgError')));
			})
			.one('load', function () {
				if (request !== requests) {
					return;
				}

				// A small pause because some browsers will occassionaly report a
				// img.width and img.height of zero immediately after the img.onload fires
				setTimeout(function(){
					var percent;

					if (settings.get('retinaImage') && window.devicePixelRatio > 1) {
						photo.height = photo.height / window.devicePixelRatio;
						photo.width = photo.width / window.devicePixelRatio;
					}

					if (settings.get('scalePhotos')) {
						setResize = function () {
							photo.height -= photo.height * percent;
							photo.width -= photo.width * percent;
						};
						if (settings.mw && photo.width > settings.mw) {
							percent = (photo.width - settings.mw) / photo.width;
							setResize();
						}
						if (settings.mh && photo.height > settings.mh) {
							percent = (photo.height - settings.mh) / photo.height;
							setResize();
						}
					}

					if (settings.h) {
						photo.style.marginTop = Math.max(settings.mh - photo.height, 0) / 2 + 'px';
					}

					if ($related[1] && (settings.get('loop') || $related[index + 1])) {
						photo.style.cursor = 'pointer';

						$(photo).bind('click.'+prefix, function () {
							publicMethod.next();
						});
					}

					photo.style.width = photo.width + 'px';
					photo.style.height = photo.height + 'px';
					prep(photo);
				}, 1);
			});

			photo.src = href;

		} else if (href) {
			$loadingBay.load(href, settings.get('data'), function (data, status) {
				if (request === requests) {
					prep(status === 'error' ? $tag(div, 'Error').html(settings.get('xhrError')) : $(this).contents());
				}
			});
		}
	}

	// Navigates to the next page/image in a set.
	publicMethod.next = function () {
		if (!active && $related[1] && (settings.get('loop') || $related[index + 1])) {
			index = getIndex(1);
			launch($related[index]);
		}
	};

	publicMethod.prev = function () {
		if (!active && $related[1] && (settings.get('loop') || index)) {
			index = getIndex(-1);
			launch($related[index]);
		}
	};

	// Note: to use this within an iframe use the following format: parent.jQuery.colorbox.close();
	publicMethod.close = function () {
		if (open && !closing) {

			closing = true;
			open = false;
			trigger(event_cleanup);
			settings.get('onCleanup');
			$window.unbind('.' + prefix);
			$overlay.fadeTo(settings.get('fadeOut') || 0, 0);

			$box.stop().fadeTo(settings.get('fadeOut') || 0, 0, function () {
				$box.hide();
				$overlay.hide();
				trigger(event_purge);
				$loaded.remove();

				setTimeout(function () {
					closing = false;
					trigger(event_closed);
					settings.get('onClosed');
				}, 1);
			});
		}
	};

	// Removes changes Colorbox made to the document, but does not remove the plugin.
	publicMethod.remove = function () {
		if (!$box) { return; }

		$box.stop();
		$[colorbox].close();
		$box.stop(false, true).remove();
		$overlay.remove();
		closing = false;
		$box = null;
		$('.' + boxElement)
			.removeData(colorbox)
			.removeClass(boxElement);

		$(document).unbind('click.'+prefix).unbind('keydown.'+prefix);
	};

	// A method for fetching the current element Colorbox is referencing.
	// returns a jQuery object.
	publicMethod.element = function () {
		return $(settings.el);
	};

	publicMethod.settings = defaults;

}(jQuery, document, window));PK`x1\,=�dd!plugin-fw/assets/js/how-to.min.jsnu�[���!function(r){var t=jQuery("#yith-how-to-premium").parent();void 0!==t&&t.prop("target","_blank")}();PK`x1\sJH66.plugin-fw/assets/js/yith-update-plugins.min.jsnu�[���!function(a){a(document).on("click","a.yith-update-link",function(e){var t=a(this),n=t.parent("p");e.preventDefault(),a.ajax({type:"POST",url:yith_plugin_fw.ajaxurl,data:{action:"update-plugin",plugin:t.data("plugin"),slug:t.data("slug"),name:t.data("name"),_ajax_nonce:yith_plugin_fw.ajax_nonce},beforeSend:function(){n.text(yith_plugin_fw.l10n.updating.replace("%s",t.data("name"))),n.addClass("yith-updating")},success:function(a){n.removeClass("yith-updating").addClass("yith-updated");var e=n.parent("div");e.removeClass("notice-warning"),result_text="",!0===a.success?(e.addClass("notice-success updated-message").removeClass("update-message"),result_text=yith_plugin_fw.l10n.updated):(e.addClass("notice-error"),result_text=yith_plugin_fw.l10n.failed),n.text(result_text.replace("%s",t.data("name")))}})})}(jQuery);PK`x1\cͥ�%%/plugin-fw/assets/js/yith-enhanced-select.min.jsnu�[���jQuery(function(e){"use strict";e(document.body).on("yith-framework-enhanced-select-init",function(){e(".yith-post-search").filter(":not(.enhanced)").each(function(){var t={action:"yith_plugin_fw_json_search_posts",security:yith_framework_enhanced_select_params.search_posts_nonce,post_type:"post"},a=e.extend(t,e(this).data()),n={allowClear:!!e(this).data("allow_clear"),placeholder:e(this).data("placeholder"),minimumInputLength:e(this).data("minimum_input_length")?e(this).data("minimum_input_length"):"3",escapeMarkup:function(e){return e},ajax:{url:ajaxurl,dataType:"json",quietMillis:250,data:function(t){var n={term:t.term};return e.extend(n,a)},processResults:function(t){var a=[];return t&&e.each(t,function(e,t){a.push({id:e,text:t})}),{results:a}},cache:!0}};if(e(this).select2(n).addClass("enhanced"),e(this).data("sortable")){var i=e(this),s=e(this).next(".select2-container").find("ul.select2-selection__rendered");s.sortable({placeholder:"ui-state-highlight select2-selection__choice",forcePlaceholderSize:!0,items:"li:not(.select2-search__field)",tolerance:"pointer",stop:function(){e(s.find(".select2-selection__choice").get().reverse()).each(function(){var t=e(this).data("data").id,a=i.find('option[value="'+t+'"]')[0];i.prepend(a)})}})}}),e(".yith-customer-search").filter(":not(.enhanced)").each(function(){var t={action:"woocommerce_json_search_customers",security:yith_framework_enhanced_select_params.search_customers_nonce},a=e.extend(t,e(this).data()),n={allowClear:!!e(this).data("allow_clear"),placeholder:e(this).data("placeholder"),minimumInputLength:e(this).data("minimum_input_length")?e(this).data("minimum_input_length"):"3",escapeMarkup:function(e){return e},ajax:{url:ajaxurl,dataType:"json",quietMillis:250,data:function(t){var n={term:t.term};return e.extend(n,a)},processResults:function(t){var a=[];return t&&e.each(t,function(e,t){a.push({id:e,text:t})}),{results:a}},cache:!0}};if(e(this).select2(n).addClass("enhanced"),e(this).data("sortable")){var i=e(this),s=e(this).next(".select2-container").find("ul.select2-selection__rendered");s.sortable({placeholder:"ui-state-highlight select2-selection__choice",forcePlaceholderSize:!0,items:"li:not(.select2-search__field)",tolerance:"pointer",stop:function(){e(s.find(".select2-selection__choice").get().reverse()).each(function(){var t=e(this).data("data").id,a=i.find('option[value="'+t+'"]')[0];i.prepend(a)})}})}}),e(".yith-term-search").filter(":not(.enhanced)").each(function(){var t={action:"yith_plugin_fw_json_search_terms",security:yith_framework_enhanced_select_params.search_terms_nonce,taxonomy:"category"},a=e.extend(t,e(this).data()),n={allowClear:!!e(this).data("allow_clear"),placeholder:e(this).data("placeholder"),minimumInputLength:e(this).data("minimum_input_length")?e(this).data("minimum_input_length"):"3",escapeMarkup:function(e){return e},ajax:{url:ajaxurl,dataType:"json",quietMillis:250,data:function(t){var n={term:t.term};return e.extend(n,a)},processResults:function(t){var a=[];return t&&e.each(t,function(e,t){a.push({id:e,text:t})}),{results:a}},cache:!0}};if(e(this).select2(n).addClass("enhanced"),e(this).data("sortable")){var i=e(this),s=e(this).next(".select2-container").find("ul.select2-selection__rendered");s.sortable({placeholder:"ui-state-highlight select2-selection__choice",forcePlaceholderSize:!0,items:"li:not(.select2-search__field)",tolerance:"pointer",stop:function(){e(s.find(".select2-selection__choice").get().reverse()).each(function(){var t=e(this).data("data").id,a=i.find('option[value="'+t+'"]')[0];i.prepend(a)})}})}})}).trigger("yith-framework-enhanced-select-init")});PK`x1\���C��)plugin-fw/assets/js/yit-wp-pointer.min.jsnu�[���jQuery(function(e){var t=custom_pointer.pointers[0],n=t.options,o=e(t.target),i=t.pointer_id;e(o).find(".wp-submenu li a").each(function(){var s=e(this),r=s.attr("href");if((r=r.replace("admin.php?page=",""))==i){var p=s.add(o),a=o.find(t.target.replace("#","."));o.toggleClass("wp-no-current-submenu wp-menu-open wp-has-current-submenu"),s.pointer({pointerClass:"yit-wp-pointer",content:n.content,position:n.position,open:function(){p.toggleClass("yit-pointer-selected-row"),a.addClass("yit-pointer")},close:function(){o.toggleClass("wp-no-current-submenu wp-menu-open wp-has-current-submenu"),p.toggleClass("yit-pointer-selected-row"),a.removeClass("yit-pointer"),e.ajax({type:"POST",url:ajaxurl,data:{action:"dismiss-wp-pointer",pointer:i},success:function(e){}})}}).pointer("open")}else if("yith_default_pointer"==i){p=s.add(o),a=o.find(t.target.replace("#","."));var u=e(t.target);u.addClass("wp-has-current-submenu"),a.pointer({pointerClass:"yit-wp-pointer",content:n.content,position:n.position,open:function(){u.addClass("yit-pointer-selected-row")},close:function(){u.removeClass("yit-pointer-selected-row wp-has-current-submenu"),e.ajax({type:"POST",url:ajaxurl,data:{action:"dismiss-wp-pointer",pointer:i},success:function(e){}})}}).pointer("open")}})});PK`x1\O�o6�
�
6plugin-fw/assets/js/jquery-tiptip/jquery.tipTip.min.jsnu�[���!function(O){O.fn.tipTip=function(t){var g,b,M,w=O.extend({activation:"hover",keepAlive:!1,maxWidth:"200px",edgeOffset:3,defaultPosition:"bottom",delay:400,fadeIn:200,fadeOut:200,attribute:"title",content:!1,enter:function(){},exit:function(){}},t);return O("#tiptip_holder").length<=0?(g=O('<div id="tiptip_holder" style="max-width:'+w.maxWidth+';"></div>'),b=O('<div id="tiptip_content"></div>'),M=O('<div id="tiptip_arrow"></div>'),O("body").append(g.html(b).prepend(M.html('<div id="tiptip_arrow_inner"></div>')))):(g=O("#tiptip_holder"),b=O("#tiptip_content"),M=O("#tiptip_arrow")),this.each(function(){var _,v,m=O(this);function t(){w.enter.call(this),b.html(_),g.hide().removeAttr("class").css("margin","0"),M.removeAttr("style");var t=parseInt(m.offset().top),e=parseInt(m.offset().left),o=parseInt(m.outerWidth()),i=parseInt(m.outerHeight()),n=g.outerWidth(),r=g.outerHeight(),a=Math.round((o-n)/2),f=Math.round((i-r)/2),d=Math.round(e+a),u=Math.round(t+i+w.edgeOffset),p="",h="",l=Math.round(n-12)/2;"bottom"==w.defaultPosition?p="_bottom":"top"==w.defaultPosition?p="_top":"left"==w.defaultPosition?p="_left":"right"==w.defaultPosition&&(p="_right");var c=a+e<parseInt(O(window).scrollLeft()),s=n+e>parseInt(O(window).width());c&&a<0||"_right"==p&&!s||"_left"==p&&e<n+w.edgeOffset+5?(p="_right",h=Math.round(r-13)/2,l=-12,d=Math.round(e+o+w.edgeOffset),u=Math.round(t+f)):(s&&a<0||"_left"==p&&!c)&&(p="_left",h=Math.round(r-13)/2,l=Math.round(n),d=Math.round(e-(n+w.edgeOffset+5)),u=Math.round(t+f));n=t+i+w.edgeOffset+r+8>parseInt(O(window).height()+O(window).scrollTop()),f=t+i-(w.edgeOffset+r+8)<0;n||"_bottom"==p&&n||"_top"==p&&!f?("_top"==p||"_bottom"==p?p="_top":p+="_top",h=r,u=Math.round(t-(r+5+w.edgeOffset))):(f|("_top"==p&&f)||"_bottom"==p&&!n)&&("_top"==p||"_bottom"==p?p="_bottom":p+="_bottom",h=-12,u=Math.round(t+i+w.edgeOffset)),"_right_top"==p||"_left_top"==p?u+=5:"_right_bottom"!=p&&"_left_bottom"!=p||(u-=5),"_left_top"!=p&&"_left_bottom"!=p||(d+=5),M.css({"margin-left":l+"px","margin-top":h+"px"}),g.css({"margin-left":d+"px","margin-top":u+"px"}).attr("class","tip"+p),v&&clearTimeout(v),v=setTimeout(function(){g.stop(!0,!0).fadeIn(w.fadeIn)},w.delay)}function e(){w.exit.call(this),v&&clearTimeout(v),g.fadeOut(w.fadeOut)}""!=(_=w.content?w.content:m.attr(w.attribute))&&(w.content||m.removeAttr(w.attribute),v=!1,"hover"==w.activation?(m.hover(function(){t()},function(){w.keepAlive&&g.is(":hover")||e()}),w.keepAlive&&g.hover(function(){},function(){e()})):"focus"==w.activation?m.focus(function(){t()}).blur(function(){e()}):"click"==w.activation&&(m.click(function(){return t(),!1}).hover(function(){},function(){w.keepAlive||e()}),w.keepAlive&&g.hover(function(){},function(){e()})))})}}(jQuery);PK`x1\Y@˶�2plugin-fw/assets/js/jquery-tiptip/jquery.tipTip.jsnu�[��� /*
 * TipTip
 * Copyright 2010 Drew Wilson
 * www.drewwilson.com
 * code.drewwilson.com/entry/tiptip-jquery-plugin
 *
 * Version 1.3   -   Updated: Mar. 23, 2010
 *
 * This Plug-In will create a custom tooltip to replace the default
 * browser tooltip. It is extremely lightweight and very smart in
 * that it detects the edges of the browser window and will make sure
 * the tooltip stays within the current window size. As a result the
 * tooltip will adjust itself to be displayed above, below, to the left
 * or to the right depending on what is necessary to stay within the
 * browser window. It is completely customizable as well via CSS.
 *
 * This TipTip jQuery plug-in is dual licensed under the MIT and GPL licenses:
 *   http://www.opensource.org/licenses/mit-license.php
 *   http://www.gnu.org/licenses/gpl.html
 */

(function($){
	$.fn.tipTip = function(options) {
		var defaults = {
			activation: "hover",
			keepAlive: false,
			maxWidth: "200px",
			edgeOffset: 3,
			defaultPosition: "bottom",
			delay: 400,
			fadeIn: 200,
			fadeOut: 200,
			attribute: "title",
			content: false, // HTML or String to fill TipTIp with
		  	enter: function(){},
		  	exit: function(){}
	  	};
	 	var opts = $.extend(defaults, options);

	 	// Setup tip tip elements and render them to the DOM
	 	if($("#tiptip_holder").length <= 0){
	 		var tiptip_holder = $('<div id="tiptip_holder" style="max-width:'+ opts.maxWidth +';"></div>');
			var tiptip_content = $('<div id="tiptip_content"></div>');
			var tiptip_arrow = $('<div id="tiptip_arrow"></div>');
			$("body").append(tiptip_holder.html(tiptip_content).prepend(tiptip_arrow.html('<div id="tiptip_arrow_inner"></div>')));
		} else {
			var tiptip_holder = $("#tiptip_holder");
			var tiptip_content = $("#tiptip_content");
			var tiptip_arrow = $("#tiptip_arrow");
		}

		return this.each(function(){
			var org_elem = $(this);
			if(opts.content){
				var org_title = opts.content;
			} else {
				var org_title = org_elem.attr(opts.attribute);
			}
			if(org_title != ""){
				if(!opts.content){
					org_elem.removeAttr(opts.attribute); //remove original Attribute
				}
				var timeout = false;

				if(opts.activation == "hover"){
					org_elem.hover(function(){
						active_tiptip();
					}, function(){
						if(!opts.keepAlive || !tiptip_holder.is(':hover')){
							deactive_tiptip();
						}
					});
					if(opts.keepAlive){
						tiptip_holder.hover(function(){}, function(){
							deactive_tiptip();
						});
					}
				} else if(opts.activation == "focus"){
					org_elem.focus(function(){
						active_tiptip();
					}).blur(function(){
						deactive_tiptip();
					});
				} else if(opts.activation == "click"){
					org_elem.click(function(){
						active_tiptip();
						return false;
					}).hover(function(){},function(){
						if(!opts.keepAlive){
							deactive_tiptip();
						}
					});
					if(opts.keepAlive){
						tiptip_holder.hover(function(){}, function(){
							deactive_tiptip();
						});
					}
				}

				function active_tiptip(){
					opts.enter.call(this);
					tiptip_content.html(org_title);
					tiptip_holder.hide().removeAttr("class").css("margin","0");
					tiptip_arrow.removeAttr("style");

					var top = parseInt(org_elem.offset()['top']);
					var left = parseInt(org_elem.offset()['left']);
					var org_width = parseInt(org_elem.outerWidth());
					var org_height = parseInt(org_elem.outerHeight());
					var tip_w = tiptip_holder.outerWidth();
					var tip_h = tiptip_holder.outerHeight();
					var w_compare = Math.round((org_width - tip_w) / 2);
					var h_compare = Math.round((org_height - tip_h) / 2);
					var marg_left = Math.round(left + w_compare);
					var marg_top = Math.round(top + org_height + opts.edgeOffset);
					var t_class = "";
					var arrow_top = "";
					var arrow_left = Math.round(tip_w - 12) / 2;

                    if(opts.defaultPosition == "bottom"){
                    	t_class = "_bottom";
                   	} else if(opts.defaultPosition == "top"){
                   		t_class = "_top";
                   	} else if(opts.defaultPosition == "left"){
                   		t_class = "_left";
                   	} else if(opts.defaultPosition == "right"){
                   		t_class = "_right";
                   	}

					var right_compare = (w_compare + left) < parseInt($(window).scrollLeft());
					var left_compare = (tip_w + left) > parseInt($(window).width());

					if((right_compare && w_compare < 0) || (t_class == "_right" && !left_compare) || (t_class == "_left" && left < (tip_w + opts.edgeOffset + 5))){
						t_class = "_right";
						arrow_top = Math.round(tip_h - 13) / 2;
						arrow_left = -12;
						marg_left = Math.round(left + org_width + opts.edgeOffset);
						marg_top = Math.round(top + h_compare);
					} else if((left_compare && w_compare < 0) || (t_class == "_left" && !right_compare)){
						t_class = "_left";
						arrow_top = Math.round(tip_h - 13) / 2;
						arrow_left =  Math.round(tip_w);
						marg_left = Math.round(left - (tip_w + opts.edgeOffset + 5));
						marg_top = Math.round(top + h_compare);
					}

					var top_compare = (top + org_height + opts.edgeOffset + tip_h + 8) > parseInt($(window).height() + $(window).scrollTop());
					var bottom_compare = ((top + org_height) - (opts.edgeOffset + tip_h + 8)) < 0;

					if(top_compare || (t_class == "_bottom" && top_compare) || (t_class == "_top" && !bottom_compare)){
						if(t_class == "_top" || t_class == "_bottom"){
							t_class = "_top";
						} else {
							t_class = t_class+"_top";
						}
						arrow_top = tip_h;
						marg_top = Math.round(top - (tip_h + 5 + opts.edgeOffset));
					} else if(bottom_compare | (t_class == "_top" && bottom_compare) || (t_class == "_bottom" && !top_compare)){
						if(t_class == "_top" || t_class == "_bottom"){
							t_class = "_bottom";
						} else {
							t_class = t_class+"_bottom";
						}
						arrow_top = -12;
						marg_top = Math.round(top + org_height + opts.edgeOffset);
					}

					if(t_class == "_right_top" || t_class == "_left_top"){
						marg_top = marg_top + 5;
					} else if(t_class == "_right_bottom" || t_class == "_left_bottom"){
						marg_top = marg_top - 5;
					}
					if(t_class == "_left_top" || t_class == "_left_bottom"){
						marg_left = marg_left + 5;
					}
					tiptip_arrow.css({"margin-left": arrow_left+"px", "margin-top": arrow_top+"px"});
					tiptip_holder.css({"margin-left": marg_left+"px", "margin-top": marg_top+"px"}).attr("class","tip"+t_class);

					if (timeout){ clearTimeout(timeout); }
					timeout = setTimeout(function(){ tiptip_holder.stop(true,true).fadeIn(opts.fadeIn); }, opts.delay);
				}

				function deactive_tiptip(){
					opts.exit.call(this);
					if (timeout){ clearTimeout(timeout); }
					tiptip_holder.fadeOut(opts.fadeOut);
				}
			}
		});
	}
})(jQuery);
PK`x1\bY�aa+plugin-fw/assets/js/yith-date-format.min.jsnu�[���jQuery(function(t){t(document).on("click",".yith-plugin-fw-date-format__option",function(){var a=t(this),i=a.closest(".yith-plugin-fw-date-format");i.find(".example").text(a.data("preview")),i.find(".yith-date-format-custom").val(a.val())}),t(document).on("click input",".yith-date-format-custom",function(){t(this).closest(".yith-plugin-fw-radio__row").find("input[type=radio]").prop("checked",!0)}),t(document).on("input yith-date-format-change",".yith-date-format-custom",function(){var a=t(this),i=a.closest(".yith-plugin-fw-date-format"),e=i.data("format"),o=i.data("js"),n=i.data("current"),r=i.find(".example"),f=i.find(".spinner");if("yes"===o){var d=new Date(n);d=t.datepicker.formatDate(a.val(),d),r.text(d)}else clearTimeout(t.data(this,"timer")),a.data("timer",setTimeout(function(){if(a.val()){f.addClass("is-active");var i={action:e+"_format",date:a.val()};t.post(ajaxurl,i,function(t){f.removeClass("is-active"),r.text(t)})}},500))}),t(document).on("yith-plugin-fw-date-format-init",function(){t(".yith-date-format-custom").trigger("yith-date-format-change")}).trigger("yith-plugin-fw-date-format-init")});PK`x1\�>n�cc,plugin-fw/assets/js/multisite-updater.min.jsnu�[���!function(e){var n=e("#menu-plugins"),a=n.find(".update-plugins").find(".plugin-count").text(),t=plugins.registered,s=plugins.activated;if(0==a||""==a){a=0,n.find(".wp-menu-name").append('<span class="update-plugins"><span class="plugin-count"></span></span>')}function i(e,n,a){this.php_js=this.php_js||{},this.php_js.ENV=this.php_js.ENV||{};var t,s=0,i=0,r={dev:-6,alpha:-5,a:-5,beta:-4,b:-4,RC:-3,rc:-3,"#":-2,p:1,pl:1},l=function(e){return(e=(e=(""+e).replace(/[_\-+]/g,".")).replace(/([^.\d]+)/g,".$1.").replace(/\.{2,}/g,".")).length?e.split("."):[-8]};for(numVersion=function(e){return e?isNaN(e)?r[e]||-7:parseInt(e,10):0},e=l(e),n=l(n),t=Math.max(e.length,n.length),s=0;s<t;s++)if(e[s]!=n[s]){if(e[s]=numVersion(e[s]),n[s]=numVersion(n[s]),e[s]<n[s]){i=-1;break}if(e[s]>n[s]){i=1;break}}if(!a)return i;switch(a){case">":case"gt":return i>0;case">=":case"ge":return i>=0;case"<=":case"le":return i<=0;case"==":case"=":case"eq":return 0===i;case"<>":case"!=":case"ne":return 0!==i;case"":case"<":case"lt":return i<0;default:return null}}!function(n,a,t,s){for(var r in n){var l=n[r];for(var p in l)if("slug"!=p&&!i(l[p].Version,l[p].Latest,"=")){t=parseInt(t)+1,e(".plugin-count").empty().html(t);var u=new RegExp(" ","g"),c=l[p],g=""+c.Name,o=g.replace(u,"-").trim(),d='*[data-slug="'+o.toLowerCase()+'"]';e(d).addClass("update");var f='<tr class="plugin-update-tr"><td colspan="3" class="plugin-update colspanchange"><div class="update-message notice inline notice-warning notice-alt">'+s.strings.new_version.replace("%plugin_name%",g)+'<a class="thickbox open-plugin-details-modal" href="'+s.details_url[r]+'">'+s.strings.latest.replace("%latest%",l[p].Latest)+"</a>";f="undefined"==typeof a[r]?f+" <em>"+s.strings.unavailable+"</em>"+s.strings.activate.replace("%activate_link%",s.licence_activation_url).replace("%plugin_name%",g):f+'. <a href="'+s.update_url[r]+'">'+s.strings.update_now+"</a>",i(l[p].Version,l[p].Latest,">")&&(f+=s.strings.version_issue.replace("%plugin_name%",g)),e(f+="</div></td></tr>").insertAfter(d)}}}(t,s,a,plugins),e("body").on("click",".yit-changelog-button",function(){e("#TB_window").remove()})}(jQuery);PK`x1\��plugin-fw/assets/js/how-to.jsnu�[���(function ( $ ) {
    var how_to_link = $( '#yith-how-to-premium' ).parent();
    if ( typeof how_to_link != 'undefined' ) {
        how_to_link.prop( 'target', '_blank' );
    }
})( jQuery );
PK`x1\0k%,plugin-fw/assets/js/yit-cpt-unlimited.min.jsnu�[���!function(t){"use strict";t(".wrap h1, .wrap h2").on("click","a.multi-uploader",function(e){e.preventDefault();var n,a=t(this),i=!1;a.next("span.spinner").css("display","inline-block"),n?n.open():((n=wp.media.frames.file_frame=wp.media({title:a.data("uploader_title"),button:{text:a.data("uploader_button_text")},library:{type:"image"},multiple:!0})).on("select",function(){var e=[];n.state().get("selection").map(function(t){t=t.toJSON(),e.push({id:t.id,url:t.url,title:t.title})}),console.log(a.data("nonce")),t.post(ajaxurl,{images:e,post_type:typenow,action:"yit_cptu_multiuploader",_ajax_nonce:a.data("nonce")},function(t){location.reload()}),a.next("span.spinner").css("display","inline-block"),i=!0}),n.on("close",function(){i||a.next("span.spinner").hide()}),n.open())})}(jQuery);PK`x1\Di�X��-plugin-fw/assets/js/javascript-md5/md5.min.jsnu�[���!function(n){"use strict";function t(n,t){var r=(65535&n)+(65535&t);return(n>>16)+(t>>16)+(r>>16)<<16|65535&r}function r(n,t){return n<<t|n>>>32-t}function e(n,e,o,u,c,f){return t(r(t(t(e,n),t(u,f)),c),o)}function o(n,t,r,o,u,c,f){return e(t&r|~t&o,n,t,u,c,f)}function u(n,t,r,o,u,c,f){return e(t&o|r&~o,n,t,u,c,f)}function c(n,t,r,o,u,c,f){return e(t^r^o,n,t,u,c,f)}function f(n,t,r,o,u,c,f){return e(r^(t|~o),n,t,u,c,f)}function i(n,r){n[r>>5]|=128<<r%32,n[14+(r+64>>>9<<4)]=r;var e,i,a,d,h,l=1732584193,g=-271733879,v=-1732584194,m=271733878;for(e=0;e<n.length;e+=16)i=l,a=g,d=v,h=m,g=f(g=f(g=f(g=f(g=c(g=c(g=c(g=c(g=u(g=u(g=u(g=u(g=o(g=o(g=o(g=o(g,v=o(v,m=o(m,l=o(l,g,v,m,n[e],7,-680876936),g,v,n[e+1],12,-389564586),l,g,n[e+2],17,606105819),m,l,n[e+3],22,-1044525330),v=o(v,m=o(m,l=o(l,g,v,m,n[e+4],7,-176418897),g,v,n[e+5],12,1200080426),l,g,n[e+6],17,-1473231341),m,l,n[e+7],22,-45705983),v=o(v,m=o(m,l=o(l,g,v,m,n[e+8],7,1770035416),g,v,n[e+9],12,-1958414417),l,g,n[e+10],17,-42063),m,l,n[e+11],22,-1990404162),v=o(v,m=o(m,l=o(l,g,v,m,n[e+12],7,1804603682),g,v,n[e+13],12,-40341101),l,g,n[e+14],17,-1502002290),m,l,n[e+15],22,1236535329),v=u(v,m=u(m,l=u(l,g,v,m,n[e+1],5,-165796510),g,v,n[e+6],9,-1069501632),l,g,n[e+11],14,643717713),m,l,n[e],20,-373897302),v=u(v,m=u(m,l=u(l,g,v,m,n[e+5],5,-701558691),g,v,n[e+10],9,38016083),l,g,n[e+15],14,-660478335),m,l,n[e+4],20,-405537848),v=u(v,m=u(m,l=u(l,g,v,m,n[e+9],5,568446438),g,v,n[e+14],9,-1019803690),l,g,n[e+3],14,-187363961),m,l,n[e+8],20,1163531501),v=u(v,m=u(m,l=u(l,g,v,m,n[e+13],5,-1444681467),g,v,n[e+2],9,-51403784),l,g,n[e+7],14,1735328473),m,l,n[e+12],20,-1926607734),v=c(v,m=c(m,l=c(l,g,v,m,n[e+5],4,-378558),g,v,n[e+8],11,-2022574463),l,g,n[e+11],16,1839030562),m,l,n[e+14],23,-35309556),v=c(v,m=c(m,l=c(l,g,v,m,n[e+1],4,-1530992060),g,v,n[e+4],11,1272893353),l,g,n[e+7],16,-155497632),m,l,n[e+10],23,-1094730640),v=c(v,m=c(m,l=c(l,g,v,m,n[e+13],4,681279174),g,v,n[e],11,-358537222),l,g,n[e+3],16,-722521979),m,l,n[e+6],23,76029189),v=c(v,m=c(m,l=c(l,g,v,m,n[e+9],4,-640364487),g,v,n[e+12],11,-421815835),l,g,n[e+15],16,530742520),m,l,n[e+2],23,-995338651),v=f(v,m=f(m,l=f(l,g,v,m,n[e],6,-198630844),g,v,n[e+7],10,1126891415),l,g,n[e+14],15,-1416354905),m,l,n[e+5],21,-57434055),v=f(v,m=f(m,l=f(l,g,v,m,n[e+12],6,1700485571),g,v,n[e+3],10,-1894986606),l,g,n[e+10],15,-1051523),m,l,n[e+1],21,-2054922799),v=f(v,m=f(m,l=f(l,g,v,m,n[e+8],6,1873313359),g,v,n[e+15],10,-30611744),l,g,n[e+6],15,-1560198380),m,l,n[e+13],21,1309151649),v=f(v,m=f(m,l=f(l,g,v,m,n[e+4],6,-145523070),g,v,n[e+11],10,-1120210379),l,g,n[e+2],15,718787259),m,l,n[e+9],21,-343485551),l=t(l,i),g=t(g,a),v=t(v,d),m=t(m,h);return[l,g,v,m]}function a(n){var t,r="",e=32*n.length;for(t=0;t<e;t+=8)r+=String.fromCharCode(n[t>>5]>>>t%32&255);return r}function d(n){var t,r=[];for(r[(n.length>>2)-1]=void 0,t=0;t<r.length;t+=1)r[t]=0;var e=8*n.length;for(t=0;t<e;t+=8)r[t>>5]|=(255&n.charCodeAt(t/8))<<t%32;return r}function h(n){return a(i(d(n),8*n.length))}function l(n,t){var r,e,o=d(n),u=[],c=[];for(u[15]=c[15]=void 0,o.length>16&&(o=i(o,8*n.length)),r=0;r<16;r+=1)u[r]=909522486^o[r],c[r]=1549556828^o[r];return e=i(u.concat(d(t)),512+8*t.length),a(i(c.concat(e),640))}function g(n){var t,r,e="";for(r=0;r<n.length;r+=1)t=n.charCodeAt(r),e+="0123456789abcdef".charAt(t>>>4&15)+"0123456789abcdef".charAt(15&t);return e}function v(n){return unescape(encodeURIComponent(n))}function m(n){return h(v(n))}function p(n){return g(m(n))}function s(n,t){return l(v(n),v(t))}function C(n,t){return g(s(n,t))}function A(n,t,r){return t?r?s(t,n):C(t,n):r?m(n):p(n)}"function"==typeof define&&define.amd?define(function(){return A}):"object"==typeof module&&module.exports?module.exports=A:n.md5=A}(this);
//# sourceMappingURL=md5.min.js.mapPK`x1\�8o�\�\,plugin-fw/assets/js/codemirror/javascript.jsnu�[���// TODO actually recognize syntax of TypeScript constructs

CodeMirror.defineMode("javascript", function(config, parserConfig) {
  var indentUnit = config.indentUnit;
  var statementIndent = parserConfig.statementIndent;
  var jsonMode = parserConfig.json;
  var isTS = parserConfig.typescript;

  // Tokenizer

  var keywords = function(){
    function kw(type) {return {type: type, style: "keyword"};}
    var A = kw("keyword a"), B = kw("keyword b"), C = kw("keyword c");
    var operator = kw("operator"), atom = {type: "atom", style: "atom"};

    var jsKeywords = {
      "if": kw("if"), "while": A, "with": A, "else": B, "do": B, "try": B, "finally": B,
      "return": C, "break": C, "continue": C, "new": C, "delete": C, "throw": C, "debugger": C,
      "var": kw("var"), "const": kw("var"), "let": kw("var"),
      "function": kw("function"), "catch": kw("catch"),
      "for": kw("for"), "switch": kw("switch"), "case": kw("case"), "default": kw("default"),
      "in": operator, "typeof": operator, "instanceof": operator,
      "true": atom, "false": atom, "null": atom, "undefined": atom, "NaN": atom, "Infinity": atom,
      "this": kw("this"), "module": kw("module"), "class": kw("class"), "super": kw("atom"),
      "yield": C, "export": kw("export"), "import": kw("import"), "extends": C
    };

    // Extend the 'normal' keywords with the TypeScript language extensions
    if (isTS) {
      var type = {type: "variable", style: "variable-3"};
      var tsKeywords = {
        // object-like things
        "interface": kw("interface"),
        "extends": kw("extends"),
        "constructor": kw("constructor"),

        // scope modifiers
        "public": kw("public"),
        "private": kw("private"),
        "protected": kw("protected"),
        "static": kw("static"),

        // types
        "string": type, "number": type, "bool": type, "any": type
      };

      for (var attr in tsKeywords) {
        jsKeywords[attr] = tsKeywords[attr];
      }
    }

    return jsKeywords;
  }();

  var isOperatorChar = /[+\-*&%=<>!?|~^]/;

  function readRegexp(stream) {
    var escaped = false, next, inSet = false;
    while ((next = stream.next()) != null) {
      if (!escaped) {
        if (next == "/" && !inSet) return;
        if (next == "[") inSet = true;
        else if (inSet && next == "]") inSet = false;
      }
      escaped = !escaped && next == "\\";
    }
  }

  // Used as scratch variables to communicate multiple values without
  // consing up tons of objects.
  var type, content;
  function ret(tp, style, cont) {
    type = tp; content = cont;
    return style;
  }
  function tokenBase(stream, state) {
    var ch = stream.next();
    if (ch == '"' || ch == "'") {
      state.tokenize = tokenString(ch);
      return state.tokenize(stream, state);
    } else if (ch == "." && stream.match(/^\d+(?:[eE][+\-]?\d+)?/)) {
      return ret("number", "number");
    } else if (ch == "." && stream.match("..")) {
      return ret("spread", "meta");
    } else if (/[\[\]{}\(\),;\:\.]/.test(ch)) {
      return ret(ch);
    } else if (ch == "=" && stream.eat(">")) {
      return ret("=>", "operator");
    } else if (ch == "0" && stream.eat(/x/i)) {
      stream.eatWhile(/[\da-f]/i);
      return ret("number", "number");
    } else if (/\d/.test(ch)) {
      stream.match(/^\d*(?:\.\d*)?(?:[eE][+\-]?\d+)?/);
      return ret("number", "number");
    } else if (ch == "/") {
      if (stream.eat("*")) {
        state.tokenize = tokenComment;
        return tokenComment(stream, state);
      } else if (stream.eat("/")) {
        stream.skipToEnd();
        return ret("comment", "comment");
      } else if (state.lastType == "operator" || state.lastType == "keyword c" ||
               state.lastType == "sof" || /^[\[{}\(,;:]$/.test(state.lastType)) {
        readRegexp(stream);
        stream.eatWhile(/[gimy]/); // 'y' is "sticky" option in Mozilla
        return ret("regexp", "string-2");
      } else {
        stream.eatWhile(isOperatorChar);
        return ret("operator", "operator", stream.current());
      }
    } else if (ch == "`") {
      state.tokenize = tokenQuasi;
      return tokenQuasi(stream, state);
    } else if (ch == "#") {
      stream.skipToEnd();
      return ret("error", "error");
    } else if (isOperatorChar.test(ch)) {
      stream.eatWhile(isOperatorChar);
      return ret("operator", "operator", stream.current());
    } else {
      stream.eatWhile(/[\w\$_]/);
      var word = stream.current(), known = keywords.propertyIsEnumerable(word) && keywords[word];
      return (known && state.lastType != ".") ? ret(known.type, known.style, word) :
                     ret("variable", "variable", word);
    }
  }

  function tokenString(quote) {
    return function(stream, state) {
      var escaped = false, next;
      while ((next = stream.next()) != null) {
        if (next == quote && !escaped) break;
        escaped = !escaped && next == "\\";
      }
      if (!escaped) state.tokenize = tokenBase;
      return ret("string", "string");
    };
  }

  function tokenComment(stream, state) {
    var maybeEnd = false, ch;
    while (ch = stream.next()) {
      if (ch == "/" && maybeEnd) {
        state.tokenize = tokenBase;
        break;
      }
      maybeEnd = (ch == "*");
    }
    return ret("comment", "comment");
  }

  function tokenQuasi(stream, state) {
    var escaped = false, next;
    while ((next = stream.next()) != null) {
      if (!escaped && (next == "`" || next == "$" && stream.eat("{"))) {
        state.tokenize = tokenBase;
        break;
      }
      escaped = !escaped && next == "\\";
    }
    return ret("quasi", "string-2", stream.current());
  }

  var brackets = "([{}])";
  // This is a crude lookahead trick to try and notice that we're
  // parsing the argument patterns for a fat-arrow function before we
  // actually hit the arrow token. It only works if the arrow is on
  // the same line as the arguments and there's no strange noise
  // (comments) in between. Fallback is to only notice when we hit the
  // arrow, and not declare the arguments as locals for the arrow
  // body.
  function findFatArrow(stream, state) {
    if (state.fatArrowAt) state.fatArrowAt = null;
    var arrow = stream.string.indexOf("=>", stream.start);
    if (arrow < 0) return;

    var depth = 0, sawSomething = false;
    for (var pos = arrow - 1; pos >= 0; --pos) {
      var ch = stream.string.charAt(pos);
      var bracket = brackets.indexOf(ch);
      if (bracket >= 0 && bracket < 3) {
        if (!depth) { ++pos; break; }
        if (--depth == 0) break;
      } else if (bracket >= 3 && bracket < 6) {
        ++depth;
      } else if (/[$\w]/.test(ch)) {
        sawSomething = true;
      } else if (sawSomething && !depth) {
        ++pos;
        break;
      }
    }
    if (sawSomething && !depth) state.fatArrowAt = pos;
  }

  // Parser

  var atomicTypes = {"atom": true, "number": true, "variable": true, "string": true, "regexp": true, "this": true};

  function JSLexical(indented, column, type, align, prev, info) {
    this.indented = indented;
    this.column = column;
    this.type = type;
    this.prev = prev;
    this.info = info;
    if (align != null) this.align = align;
  }

  function inScope(state, varname) {
    for (var v = state.localVars; v; v = v.next)
      if (v.name == varname) return true;
    for (var cx = state.context; cx; cx = cx.prev) {
      for (var v = cx.vars; v; v = v.next)
        if (v.name == varname) return true;
    }
  }

  function parseJS(state, style, type, content, stream) {
    var cc = state.cc;
    // Communicate our context to the combinators.
    // (Less wasteful than consing up a hundred closures on every call.)
    cx.state = state; cx.stream = stream; cx.marked = null, cx.cc = cc;

    if (!state.lexical.hasOwnProperty("align"))
      state.lexical.align = true;

    while(true) {
      var combinator = cc.length ? cc.pop() : jsonMode ? expression : statement;
      if (combinator(type, content)) {
        while(cc.length && cc[cc.length - 1].lex)
          cc.pop()();
        if (cx.marked) return cx.marked;
        if (type == "variable" && inScope(state, content)) return "variable-2";
        return style;
      }
    }
  }

  // Combinator utils

  var cx = {state: null, column: null, marked: null, cc: null};
  function pass() {
    for (var i = arguments.length - 1; i >= 0; i--) cx.cc.push(arguments[i]);
  }
  function cont() {
    pass.apply(null, arguments);
    return true;
  }
  function register(varname) {
    function inList(list) {
      for (var v = list; v; v = v.next)
        if (v.name == varname) return true;
      return false;
    }
    var state = cx.state;
    if (state.context) {
      cx.marked = "def";
      if (inList(state.localVars)) return;
      state.localVars = {name: varname, next: state.localVars};
    } else {
      if (inList(state.globalVars)) return;
      if (parserConfig.globalVars)
        state.globalVars = {name: varname, next: state.globalVars};
    }
  }

  // Combinators

  var defaultVars = {name: "this", next: {name: "arguments"}};
  function pushcontext() {
    cx.state.context = {prev: cx.state.context, vars: cx.state.localVars};
    cx.state.localVars = defaultVars;
  }
  function popcontext() {
    cx.state.localVars = cx.state.context.vars;
    cx.state.context = cx.state.context.prev;
  }
  function pushlex(type, info) {
    var result = function() {
      var state = cx.state, indent = state.indented;
      if (state.lexical.type == "stat") indent = state.lexical.indented;
      state.lexical = new JSLexical(indent, cx.stream.column(), type, null, state.lexical, info);
    };
    result.lex = true;
    return result;
  }
  function poplex() {
    var state = cx.state;
    if (state.lexical.prev) {
      if (state.lexical.type == ")")
        state.indented = state.lexical.indented;
      state.lexical = state.lexical.prev;
    }
  }
  poplex.lex = true;

  function expect(wanted) {
    return function(type) {
      if (type == wanted) return cont();
      else if (wanted == ";") return pass();
      else return cont(arguments.callee);
    };
  }

  function statement(type, value) {
    if (type == "var") return cont(pushlex("vardef", value.length), vardef, expect(";"), poplex);
    if (type == "keyword a") return cont(pushlex("form"), expression, statement, poplex);
    if (type == "keyword b") return cont(pushlex("form"), statement, poplex);
    if (type == "{") return cont(pushlex("}"), block, poplex);
    if (type == ";") return cont();
    if (type == "if") return cont(pushlex("form"), expression, statement, poplex, maybeelse);
    if (type == "function") return cont(functiondef);
    if (type == "for") return cont(pushlex("form"), forspec, statement, poplex);
    if (type == "variable") return cont(pushlex("stat"), maybelabel);
    if (type == "switch") return cont(pushlex("form"), expression, pushlex("}", "switch"), expect("{"),
                                      block, poplex, poplex);
    if (type == "case") return cont(expression, expect(":"));
    if (type == "default") return cont(expect(":"));
    if (type == "catch") return cont(pushlex("form"), pushcontext, expect("("), funarg, expect(")"),
                                     statement, poplex, popcontext);
    if (type == "module") return cont(pushlex("form"), pushcontext, afterModule, popcontext, poplex);
    if (type == "class") return cont(pushlex("form"), className, objlit, poplex);
    if (type == "export") return cont(pushlex("form"), afterExport, poplex);
    if (type == "import") return cont(pushlex("form"), afterImport, poplex);
    return pass(pushlex("stat"), expression, expect(";"), poplex);
  }
  function expression(type) {
    return expressionInner(type, false);
  }
  function expressionNoComma(type) {
    return expressionInner(type, true);
  }
  function expressionInner(type, noComma) {
    if (cx.state.fatArrowAt == cx.stream.start) {
      var body = noComma ? arrowBodyNoComma : arrowBody;
      if (type == "(") return cont(pushcontext, pushlex(")"), commasep(pattern, ")"), poplex, expect("=>"), body, popcontext);
      else if (type == "variable") return pass(pushcontext, pattern, expect("=>"), body, popcontext);
    }

    var maybeop = noComma ? maybeoperatorNoComma : maybeoperatorComma;
    if (atomicTypes.hasOwnProperty(type)) return cont(maybeop);
    if (type == "function") return cont(functiondef);
    if (type == "keyword c") return cont(noComma ? maybeexpressionNoComma : maybeexpression);
    if (type == "(") return cont(pushlex(")"), maybeexpression, comprehension, expect(")"), poplex, maybeop);
    if (type == "operator" || type == "spread") return cont(noComma ? expressionNoComma : expression);
    if (type == "[") return cont(pushlex("]"), arrayLiteral, poplex, maybeop);
    if (type == "{") return contCommasep(objprop, "}", null, maybeop);
    return cont();
  }
  function maybeexpression(type) {
    if (type.match(/[;\}\)\],]/)) return pass();
    return pass(expression);
  }
  function maybeexpressionNoComma(type) {
    if (type.match(/[;\}\)\],]/)) return pass();
    return pass(expressionNoComma);
  }

  function maybeoperatorComma(type, value) {
    if (type == ",") return cont(expression);
    return maybeoperatorNoComma(type, value, false);
  }
  function maybeoperatorNoComma(type, value, noComma) {
    var me = noComma == false ? maybeoperatorComma : maybeoperatorNoComma;
    var expr = noComma == false ? expression : expressionNoComma;
    if (value == "=>") return cont(pushcontext, noComma ? arrowBodyNoComma : arrowBody, popcontext);
    if (type == "operator") {
      if (/\+\+|--/.test(value)) return cont(me);
      if (value == "?") return cont(expression, expect(":"), expr);
      return cont(expr);
    }
    if (type == "quasi") { cx.cc.push(me); return quasi(value); }
    if (type == ";") return;
    if (type == "(") return contCommasep(expressionNoComma, ")", "call", me);
    if (type == ".") return cont(property, me);
    if (type == "[") return cont(pushlex("]"), maybeexpression, expect("]"), poplex, me);
  }
  function quasi(value) {
    if (value.slice(value.length - 2) != "${") return cont();
    return cont(expression, continueQuasi);
  }
  function continueQuasi(type) {
    if (type == "}") {
      cx.marked = "string-2";
      cx.state.tokenize = tokenQuasi;
      return cont();
    }
  }
  function arrowBody(type) {
    findFatArrow(cx.stream, cx.state);
    if (type == "{") return pass(statement);
    return pass(expression);
  }
  function arrowBodyNoComma(type) {
    findFatArrow(cx.stream, cx.state);
    if (type == "{") return pass(statement);
    return pass(expressionNoComma);
  }
  function maybelabel(type) {
    if (type == ":") return cont(poplex, statement);
    return pass(maybeoperatorComma, expect(";"), poplex);
  }
  function property(type) {
    if (type == "variable") {cx.marked = "property"; return cont();}
  }
  function objprop(type, value) {
    if (type == "variable") {
      cx.marked = "property";
      if (value == "get" || value == "set") return cont(getterSetter);
    } else if (type == "number" || type == "string") {
      cx.marked = type + " property";
    } else if (type == "[") {
      return cont(expression, expect("]"), afterprop);
    }
    if (atomicTypes.hasOwnProperty(type)) return cont(afterprop);
  }
  function getterSetter(type) {
    if (type != "variable") return pass(afterprop);
    cx.marked = "property";
    return cont(functiondef);
  }
  function afterprop(type) {
    if (type == ":") return cont(expressionNoComma);
    if (type == "(") return pass(functiondef);
  }
  function commasep(what, end) {
    function proceed(type) {
      if (type == ",") {
        var lex = cx.state.lexical;
        if (lex.info == "call") lex.pos = (lex.pos || 0) + 1;
        return cont(what, proceed);
      }
      if (type == end) return cont();
      return cont(expect(end));
    }
    return function(type) {
      if (type == end) return cont();
      return pass(what, proceed);
    };
  }
  function contCommasep(what, end, info) {
    for (var i = 3; i < arguments.length; i++)
      cx.cc.push(arguments[i]);
    return cont(pushlex(end, info), commasep(what, end), poplex);
  }
  function block(type) {
    if (type == "}") return cont();
    return pass(statement, block);
  }
  function maybetype(type) {
    if (isTS && type == ":") return cont(typedef);
  }
  function typedef(type) {
    if (type == "variable"){cx.marked = "variable-3"; return cont();}
  }
  function vardef() {
    return pass(pattern, maybetype, maybeAssign, vardefCont);
  }
  function pattern(type, value) {
    if (type == "variable") { register(value); return cont(); }
    if (type == "[") return contCommasep(pattern, "]");
    if (type == "{") return contCommasep(proppattern, "}");
  }
  function proppattern(type, value) {
    if (type == "variable" && !cx.stream.match(/^\s*:/, false)) {
      register(value);
      return cont(maybeAssign);
    }
    if (type == "variable") cx.marked = "property";
    return cont(expect(":"), pattern, maybeAssign);
  }
  function maybeAssign(_type, value) {
    if (value == "=") return cont(expressionNoComma);
  }
  function vardefCont(type) {
    if (type == ",") return cont(vardef);
  }
  function maybeelse(type, value) {
    if (type == "keyword b" && value == "else") return cont(pushlex("form"), statement, poplex);
  }
  function forspec(type) {
    if (type == "(") return cont(pushlex(")"), forspec1, expect(")"), poplex);
  }
  function forspec1(type) {
    if (type == "var") return cont(vardef, expect(";"), forspec2);
    if (type == ";") return cont(forspec2);
    if (type == "variable") return cont(formaybeinof);
    return pass(expression, expect(";"), forspec2);
  }
  function formaybeinof(_type, value) {
    if (value == "in" || value == "of") { cx.marked = "keyword"; return cont(expression); }
    return cont(maybeoperatorComma, forspec2);
  }
  function forspec2(type, value) {
    if (type == ";") return cont(forspec3);
    if (value == "in" || value == "of") { cx.marked = "keyword"; return cont(expression); }
    return pass(expression, expect(";"), forspec3);
  }
  function forspec3(type) {
    if (type != ")") cont(expression);
  }
  function functiondef(type, value) {
    if (value == "*") {cx.marked = "keyword"; return cont(functiondef);}
    if (type == "variable") {register(value); return cont(functiondef);}
    if (type == "(") return cont(pushcontext, pushlex(")"), commasep(funarg, ")"), poplex, statement, popcontext);
  }
  function funarg(type) {
    if (type == "spread") return cont(funarg);
    return pass(pattern, maybetype);
  }
  function className(type, value) {
    if (type == "variable") {register(value); return cont(classNameAfter);}
  }
  function classNameAfter(_type, value) {
    if (value == "extends") return cont(expression);
  }
  function objlit(type) {
    if (type == "{") return contCommasep(objprop, "}");
  }
  function afterModule(type, value) {
    if (type == "string") return cont(statement);
    if (type == "variable") { register(value); return cont(maybeFrom); }
  }
  function afterExport(_type, value) {
    if (value == "*") { cx.marked = "keyword"; return cont(maybeFrom, expect(";")); }
    if (value == "default") { cx.marked = "keyword"; return cont(expression, expect(";")); }
    return pass(statement);
  }
  function afterImport(type) {
    if (type == "string") return cont();
    return pass(importSpec, maybeFrom);
  }
  function importSpec(type, value) {
    if (type == "{") return contCommasep(importSpec, "}");
    if (type == "variable") register(value);
    return cont();
  }
  function maybeFrom(_type, value) {
    if (value == "from") { cx.marked = "keyword"; return cont(expression); }
  }
  function arrayLiteral(type) {
    if (type == "]") return cont();
    return pass(expressionNoComma, maybeArrayComprehension);
  }
  function maybeArrayComprehension(type) {
    if (type == "for") return pass(comprehension, expect("]"));
    if (type == ",") return cont(commasep(expressionNoComma, "]"));
    return pass(commasep(expressionNoComma, "]"));
  }
  function comprehension(type) {
    if (type == "for") return cont(forspec, comprehension);
    if (type == "if") return cont(expression, comprehension);
  }

  // Interface

  return {
    startState: function(basecolumn) {
      var state = {
        tokenize: tokenBase,
        lastType: "sof",
        cc: [],
        lexical: new JSLexical((basecolumn || 0) - indentUnit, 0, "block", false),
        localVars: parserConfig.localVars,
        context: parserConfig.localVars && {vars: parserConfig.localVars},
        indented: 0
      };
      if (parserConfig.globalVars) state.globalVars = parserConfig.globalVars;
      return state;
    },

    token: function(stream, state) {
      if (stream.sol()) {
        if (!state.lexical.hasOwnProperty("align"))
          state.lexical.align = false;
        state.indented = stream.indentation();
        findFatArrow(stream, state);
      }
      if (state.tokenize != tokenComment && stream.eatSpace()) return null;
      var style = state.tokenize(stream, state);
      if (type == "comment") return style;
      state.lastType = type == "operator" && (content == "++" || content == "--") ? "incdec" : type;
      return parseJS(state, style, type, content, stream);
    },

    indent: function(state, textAfter) {
      if (state.tokenize == tokenComment) return CodeMirror.Pass;
      if (state.tokenize != tokenBase) return 0;
      var firstChar = textAfter && textAfter.charAt(0), lexical = state.lexical;
      // Kludge to prevent 'maybelse' from blocking lexical scope pops
      for (var i = state.cc.length - 1; i >= 0; --i) {
        var c = state.cc[i];
        if (c == poplex) lexical = lexical.prev;
        else if (c != maybeelse) break;
      }
      if (lexical.type == "stat" && firstChar == "}") lexical = lexical.prev;
      if (statementIndent && lexical.type == ")" && lexical.prev.type == "stat")
        lexical = lexical.prev;
      var type = lexical.type, closing = firstChar == type;

      if (type == "vardef") return lexical.indented + (state.lastType == "operator" || state.lastType == "," ? lexical.info + 1 : 0);
      else if (type == "form" && firstChar == "{") return lexical.indented;
      else if (type == "form") return lexical.indented + indentUnit;
      else if (type == "stat")
        return lexical.indented + (state.lastType == "operator" || state.lastType == "," ? statementIndent || indentUnit : 0);
      else if (lexical.info == "switch" && !closing && parserConfig.doubleIndentSwitch != false)
        return lexical.indented + (/^(?:case|default)\b/.test(textAfter) ? indentUnit : 2 * indentUnit);
      else if (lexical.align) return lexical.column + (closing ? 0 : 1);
      else return lexical.indented + (closing ? 0 : indentUnit);
    },

    electricChars: ":{}",
    blockCommentStart: jsonMode ? null : "/*",
    blockCommentEnd: jsonMode ? null : "*/",
    lineComment: jsonMode ? null : "//",
    fold: "brace",

    helperType: jsonMode ? "json" : "javascript",
    jsonMode: jsonMode
  };
});

CodeMirror.defineMIME("text/javascript", "javascript");
CodeMirror.defineMIME("text/ecmascript", "javascript");
CodeMirror.defineMIME("application/javascript", "javascript");
CodeMirror.defineMIME("application/ecmascript", "javascript");
CodeMirror.defineMIME("application/json", {name: "javascript", json: true});
CodeMirror.defineMIME("application/x-json", {name: "javascript", json: true});
CodeMirror.defineMIME("text/typescript", { name: "javascript", typescript: true });
CodeMirror.defineMIME("application/typescript", { name: "javascript", typescript: true });
PK`x1\�(2I�t�t,plugin-fw/assets/js/codemirror/codemirror.jsnu�[���// CodeMirror version 3.15
//
// CodeMirror is the only global var we claim
window.CodeMirror = (function() {
  "use strict";

  // BROWSER SNIFFING

  // Crude, but necessary to handle a number of hard-to-feature-detect
  // bugs and behavior differences.
  var gecko = /gecko\/\d/i.test(navigator.userAgent);
  var ie = /MSIE \d/.test(navigator.userAgent);
  var ie_lt8 = ie && (document.documentMode == null || document.documentMode < 8);
  var ie_lt9 = ie && (document.documentMode == null || document.documentMode < 9);
  var webkit = /WebKit\//.test(navigator.userAgent);
  var qtwebkit = webkit && /Qt\/\d+\.\d+/.test(navigator.userAgent);
  var chrome = /Chrome\//.test(navigator.userAgent);
  var opera = /Opera\//.test(navigator.userAgent);
  var safari = /Apple Computer/.test(navigator.vendor);
  var khtml = /KHTML\//.test(navigator.userAgent);
  var mac_geLion = /Mac OS X 1\d\D([7-9]|\d\d)\D/.test(navigator.userAgent);
  var mac_geMountainLion = /Mac OS X 1\d\D([8-9]|\d\d)\D/.test(navigator.userAgent);
  var phantom = /PhantomJS/.test(navigator.userAgent);

  var ios = /AppleWebKit/.test(navigator.userAgent) && /Mobile\/\w+/.test(navigator.userAgent);
  // This is woefully incomplete. Suggestions for alternative methods welcome.
  var mobile = ios || /Android|webOS|BlackBerry|Opera Mini|Opera Mobi|IEMobile/i.test(navigator.userAgent);
  var mac = ios || /Mac/.test(navigator.platform);
  var windows = /windows/i.test(navigator.platform);

  var opera_version = opera && navigator.userAgent.match(/Version\/(\d*\.\d*)/);
  if (opera_version) opera_version = Number(opera_version[1]);
  if (opera_version && opera_version >= 15) { opera = false; webkit = true; }
  // Some browsers use the wrong event properties to signal cmd/ctrl on OS X
  var flipCtrlCmd = mac && (qtwebkit || opera && (opera_version == null || opera_version < 12.11));
  var captureMiddleClick = gecko || (ie && !ie_lt9);

  // Optimize some code when these features are not used
  var sawReadOnlySpans = false, sawCollapsedSpans = false;

  // CONSTRUCTOR

  function CodeMirror(place, options) {
    if (!(this instanceof CodeMirror)) return new CodeMirror(place, options);

    this.options = options = options || {};
    // Determine effective options based on given values and defaults.
    for (var opt in defaults) if (!options.hasOwnProperty(opt) && defaults.hasOwnProperty(opt))
      options[opt] = defaults[opt];
    setGuttersForLineNumbers(options);

    var docStart = typeof options.value == "string" ? 0 : options.value.first;
    var display = this.display = makeDisplay(place, docStart);
    display.wrapper.CodeMirror = this;
    updateGutters(this);
    if (options.autofocus && !mobile) focusInput(this);

    this.state = {keyMaps: [],
                  overlays: [],
                  modeGen: 0,
                  overwrite: false, focused: false,
                  suppressEdits: false, pasteIncoming: false,
                  draggingText: false,
                  highlight: new Delayed()};

    themeChanged(this);
    if (options.lineWrapping)
      this.display.wrapper.className += " CodeMirror-wrap";

    var doc = options.value;
    if (typeof doc == "string") doc = new Doc(options.value, options.mode);
    operation(this, attachDoc)(this, doc);

    // Override magic textarea content restore that IE sometimes does
    // on our hidden textarea on reload
    if (ie) setTimeout(bind(resetInput, this, true), 20);

    registerEventHandlers(this);
    // IE throws unspecified error in certain cases, when
    // trying to access activeElement before onload
    var hasFocus; try { hasFocus = (document.activeElement == display.input); } catch(e) { }
    if (hasFocus || (options.autofocus && !mobile)) setTimeout(bind(onFocus, this), 20);
    else onBlur(this);

    operation(this, function() {
      for (var opt in optionHandlers)
        if (optionHandlers.propertyIsEnumerable(opt))
          optionHandlers[opt](this, options[opt], Init);
      for (var i = 0; i < initHooks.length; ++i) initHooks[i](this);
    })();
  }

  // DISPLAY CONSTRUCTOR

  function makeDisplay(place, docStart) {
    var d = {};

    var input = d.input = elt("textarea", null, null, "position: absolute; padding: 0; width: 1px; height: 1em; outline: none; font-size: 4px;");
    if (webkit) input.style.width = "1000px";
    else input.setAttribute("wrap", "off");
    // if border: 0; -- iOS fails to open keyboard (issue #1287)
    if (ios) input.style.border = "1px solid black";
    input.setAttribute("autocorrect", "off"); input.setAttribute("autocapitalize", "off"); input.setAttribute("spellcheck", "false");

    // Wraps and hides input textarea
    d.inputDiv = elt("div", [input], null, "overflow: hidden; position: relative; width: 3px; height: 0px;");
    // The actual fake scrollbars.
    d.scrollbarH = elt("div", [elt("div", null, null, "height: 1px")], "CodeMirror-hscrollbar");
    d.scrollbarV = elt("div", [elt("div", null, null, "width: 1px")], "CodeMirror-vscrollbar");
    d.scrollbarFiller = elt("div", null, "CodeMirror-scrollbar-filler");
    d.gutterFiller = elt("div", null, "CodeMirror-gutter-filler");
    // DIVs containing the selection and the actual code
    d.lineDiv = elt("div", null, "CodeMirror-code");
    d.selectionDiv = elt("div", null, null, "position: relative; z-index: 1");
    // Blinky cursor, and element used to ensure cursor fits at the end of a line
    d.cursor = elt("div", "\u00a0", "CodeMirror-cursor");
    // Secondary cursor, shown when on a 'jump' in bi-directional text
    d.otherCursor = elt("div", "\u00a0", "CodeMirror-cursor CodeMirror-secondarycursor");
    // Used to measure text size
    d.measure = elt("div", null, "CodeMirror-measure");
    // Wraps everything that needs to exist inside the vertically-padded coordinate system
    d.lineSpace = elt("div", [d.measure, d.selectionDiv, d.lineDiv, d.cursor, d.otherCursor],
                         null, "position: relative; outline: none");
    // Moved around its parent to cover visible view
    d.mover = elt("div", [elt("div", [d.lineSpace], "CodeMirror-lines")], null, "position: relative");
    // Set to the height of the text, causes scrolling
    d.sizer = elt("div", [d.mover], "CodeMirror-sizer");
    // D is needed because behavior of elts with overflow: auto and padding is inconsistent across browsers
    d.heightForcer = elt("div", null, null, "position: absolute; height: " + scrollerCutOff + "px; width: 1px;");
    // Will contain the gutters, if any
    d.gutters = elt("div", null, "CodeMirror-gutters");
    d.lineGutter = null;
    // Provides scrolling
    d.scroller = elt("div", [d.sizer, d.heightForcer, d.gutters], "CodeMirror-scroll");
    d.scroller.setAttribute("tabIndex", "-1");
    // The element in which the editor lives.
    d.wrapper = elt("div", [d.inputDiv, d.scrollbarH, d.scrollbarV,
                            d.scrollbarFiller, d.gutterFiller, d.scroller], "CodeMirror");
    // Work around IE7 z-index bug
    if (ie_lt8) { d.gutters.style.zIndex = -1; d.scroller.style.paddingRight = 0; }
    if (place.appendChild) place.appendChild(d.wrapper); else place(d.wrapper);

    // Needed to hide big blue blinking cursor on Mobile Safari
    if (ios) input.style.width = "0px";
    if (!webkit) d.scroller.draggable = true;
    // Needed to handle Tab key in KHTML
    if (khtml) { d.inputDiv.style.height = "1px"; d.inputDiv.style.position = "absolute"; }
    // Need to set a minimum width to see the scrollbar on IE7 (but must not set it on IE8).
    else if (ie_lt8) d.scrollbarH.style.minWidth = d.scrollbarV.style.minWidth = "18px";

    // Current visible range (may be bigger than the view window).
    d.viewOffset = d.lastSizeC = 0;
    d.showingFrom = d.showingTo = docStart;

    // Used to only resize the line number gutter when necessary (when
    // the amount of lines crosses a boundary that makes its width change)
    d.lineNumWidth = d.lineNumInnerWidth = d.lineNumChars = null;
    // See readInput and resetInput
    d.prevInput = "";
    // Set to true when a non-horizontal-scrolling widget is added. As
    // an optimization, widget aligning is skipped when d is false.
    d.alignWidgets = false;
    // Flag that indicates whether we currently expect input to appear
    // (after some event like 'keypress' or 'input') and are polling
    // intensively.
    d.pollingFast = false;
    // Self-resetting timeout for the poller
    d.poll = new Delayed();

    d.cachedCharWidth = d.cachedTextHeight = null;
    d.measureLineCache = [];
    d.measureLineCachePos = 0;

    // Tracks when resetInput has punted to just putting a short
    // string instead of the (large) selection.
    d.inaccurateSelection = false;

    // Tracks the maximum line length so that the horizontal scrollbar
    // can be kept static when scrolling.
    d.maxLine = null;
    d.maxLineLength = 0;
    d.maxLineChanged = false;

    // Used for measuring wheel scrolling granularity
    d.wheelDX = d.wheelDY = d.wheelStartX = d.wheelStartY = null;

    return d;
  }

  // STATE UPDATES

  // Used to get the editor into a consistent state again when options change.

  function loadMode(cm) {
    cm.doc.mode = CodeMirror.getMode(cm.options, cm.doc.modeOption);
    cm.doc.iter(function(line) {
      if (line.stateAfter) line.stateAfter = null;
      if (line.styles) line.styles = null;
    });
    cm.doc.frontier = cm.doc.first;
    startWorker(cm, 100);
    cm.state.modeGen++;
    if (cm.curOp) regChange(cm);
  }

  function wrappingChanged(cm) {
    if (cm.options.lineWrapping) {
      cm.display.wrapper.className += " CodeMirror-wrap";
      cm.display.sizer.style.minWidth = "";
    } else {
      cm.display.wrapper.className = cm.display.wrapper.className.replace(" CodeMirror-wrap", "");
      computeMaxLength(cm);
    }
    estimateLineHeights(cm);
    regChange(cm);
    clearCaches(cm);
    setTimeout(function(){updateScrollbars(cm);}, 100);
  }

  function estimateHeight(cm) {
    var th = textHeight(cm.display), wrapping = cm.options.lineWrapping;
    var perLine = wrapping && Math.max(5, cm.display.scroller.clientWidth / charWidth(cm.display) - 3);
    return function(line) {
      if (lineIsHidden(cm.doc, line))
        return 0;
      else if (wrapping)
        return (Math.ceil(line.text.length / perLine) || 1) * th;
      else
        return th;
    };
  }

  function estimateLineHeights(cm) {
    var doc = cm.doc, est = estimateHeight(cm);
    doc.iter(function(line) {
      var estHeight = est(line);
      if (estHeight != line.height) updateLineHeight(line, estHeight);
    });
  }

  function keyMapChanged(cm) {
    var map = keyMap[cm.options.keyMap], style = map.style;
    cm.display.wrapper.className = cm.display.wrapper.className.replace(/\s*cm-keymap-\S+/g, "") +
      (style ? " cm-keymap-" + style : "");
    cm.state.disableInput = map.disableInput;
  }

  function themeChanged(cm) {
    cm.display.wrapper.className = cm.display.wrapper.className.replace(/\s*cm-s-\S+/g, "") +
      cm.options.theme.replace(/(^|\s)\s*/g, " cm-s-");
    clearCaches(cm);
  }

  function guttersChanged(cm) {
    updateGutters(cm);
    regChange(cm);
    setTimeout(function(){alignHorizontally(cm);}, 20);
  }

  function updateGutters(cm) {
    var gutters = cm.display.gutters, specs = cm.options.gutters;
    removeChildren(gutters);
    for (var i = 0; i < specs.length; ++i) {
      var gutterClass = specs[i];
      var gElt = gutters.appendChild(elt("div", null, "CodeMirror-gutter " + gutterClass));
      if (gutterClass == "CodeMirror-linenumbers") {
        cm.display.lineGutter = gElt;
        gElt.style.width = (cm.display.lineNumWidth || 1) + "px";
      }
    }
    gutters.style.display = i ? "" : "none";
  }

  function lineLength(doc, line) {
    if (line.height == 0) return 0;
    var len = line.text.length, merged, cur = line;
    while (merged = collapsedSpanAtStart(cur)) {
      var found = merged.find();
      cur = getLine(doc, found.from.line);
      len += found.from.ch - found.to.ch;
    }
    cur = line;
    while (merged = collapsedSpanAtEnd(cur)) {
      var found = merged.find();
      len -= cur.text.length - found.from.ch;
      cur = getLine(doc, found.to.line);
      len += cur.text.length - found.to.ch;
    }
    return len;
  }

  function computeMaxLength(cm) {
    var d = cm.display, doc = cm.doc;
    d.maxLine = getLine(doc, doc.first);
    d.maxLineLength = lineLength(doc, d.maxLine);
    d.maxLineChanged = true;
    doc.iter(function(line) {
      var len = lineLength(doc, line);
      if (len > d.maxLineLength) {
        d.maxLineLength = len;
        d.maxLine = line;
      }
    });
  }

  // Make sure the gutters options contains the element
  // "CodeMirror-linenumbers" when the lineNumbers option is true.
  function setGuttersForLineNumbers(options) {
    var found = false;
    for (var i = 0; i < options.gutters.length; ++i) {
      if (options.gutters[i] == "CodeMirror-linenumbers") {
        if (options.lineNumbers) found = true;
        else options.gutters.splice(i--, 1);
      }
    }
    if (!found && options.lineNumbers)
      options.gutters.push("CodeMirror-linenumbers");
  }

  // SCROLLBARS

  // Re-synchronize the fake scrollbars with the actual size of the
  // content. Optionally force a scrollTop.
  function updateScrollbars(cm) {
    var d = cm.display, docHeight = cm.doc.height;
    var totalHeight = docHeight + paddingVert(d);
    d.sizer.style.minHeight = d.heightForcer.style.top = totalHeight + "px";
    d.gutters.style.height = Math.max(totalHeight, d.scroller.clientHeight - scrollerCutOff) + "px";
    var scrollHeight = Math.max(totalHeight, d.scroller.scrollHeight);
    var needsH = d.scroller.scrollWidth > (d.scroller.clientWidth + 1);
    var needsV = scrollHeight > (d.scroller.clientHeight + 1);
    if (needsV) {
      d.scrollbarV.style.display = "block";
      d.scrollbarV.style.bottom = needsH ? scrollbarWidth(d.measure) + "px" : "0";
      d.scrollbarV.firstChild.style.height =
        (scrollHeight - d.scroller.clientHeight + d.scrollbarV.clientHeight) + "px";
    } else d.scrollbarV.style.display = "";
    if (needsH) {
      d.scrollbarH.style.display = "block";
      d.scrollbarH.style.right = needsV ? scrollbarWidth(d.measure) + "px" : "0";
      d.scrollbarH.firstChild.style.width =
        (d.scroller.scrollWidth - d.scroller.clientWidth + d.scrollbarH.clientWidth) + "px";
    } else d.scrollbarH.style.display = "";
    if (needsH && needsV) {
      d.scrollbarFiller.style.display = "block";
      d.scrollbarFiller.style.height = d.scrollbarFiller.style.width = scrollbarWidth(d.measure) + "px";
    } else d.scrollbarFiller.style.display = "";
    if (needsH && cm.options.coverGutterNextToScrollbar && cm.options.fixedGutter) {
      d.gutterFiller.style.display = "block";
      d.gutterFiller.style.height = scrollbarWidth(d.measure) + "px";
      d.gutterFiller.style.width = d.gutters.offsetWidth + "px";
    } else d.gutterFiller.style.display = "";

    if (mac_geLion && scrollbarWidth(d.measure) === 0)
      d.scrollbarV.style.minWidth = d.scrollbarH.style.minHeight = mac_geMountainLion ? "18px" : "12px";
  }

  function visibleLines(display, doc, viewPort) {
    var top = display.scroller.scrollTop, height = display.wrapper.clientHeight;
    if (typeof viewPort == "number") top = viewPort;
    else if (viewPort) {top = viewPort.top; height = viewPort.bottom - viewPort.top;}
    top = Math.floor(top - paddingTop(display));
    var bottom = Math.ceil(top + height);
    return {from: lineAtHeight(doc, top), to: lineAtHeight(doc, bottom)};
  }

  // LINE NUMBERS

  function alignHorizontally(cm) {
    var display = cm.display;
    if (!display.alignWidgets && (!display.gutters.firstChild || !cm.options.fixedGutter)) return;
    var comp = compensateForHScroll(display) - display.scroller.scrollLeft + cm.doc.scrollLeft;
    var gutterW = display.gutters.offsetWidth, l = comp + "px";
    for (var n = display.lineDiv.firstChild; n; n = n.nextSibling) if (n.alignable) {
      for (var i = 0, a = n.alignable; i < a.length; ++i) a[i].style.left = l;
    }
    if (cm.options.fixedGutter)
      display.gutters.style.left = (comp + gutterW) + "px";
  }

  function maybeUpdateLineNumberWidth(cm) {
    if (!cm.options.lineNumbers) return false;
    var doc = cm.doc, last = lineNumberFor(cm.options, doc.first + doc.size - 1), display = cm.display;
    if (last.length != display.lineNumChars) {
      var test = display.measure.appendChild(elt("div", [elt("div", last)],
                                                 "CodeMirror-linenumber CodeMirror-gutter-elt"));
      var innerW = test.firstChild.offsetWidth, padding = test.offsetWidth - innerW;
      display.lineGutter.style.width = "";
      display.lineNumInnerWidth = Math.max(innerW, display.lineGutter.offsetWidth - padding);
      display.lineNumWidth = display.lineNumInnerWidth + padding;
      display.lineNumChars = display.lineNumInnerWidth ? last.length : -1;
      display.lineGutter.style.width = display.lineNumWidth + "px";
      return true;
    }
    return false;
  }

  function lineNumberFor(options, i) {
    return String(options.lineNumberFormatter(i + options.firstLineNumber));
  }
  function compensateForHScroll(display) {
    return getRect(display.scroller).left - getRect(display.sizer).left;
  }

  // DISPLAY DRAWING

  function updateDisplay(cm, changes, viewPort, forced) {
    var oldFrom = cm.display.showingFrom, oldTo = cm.display.showingTo, updated;
    var visible = visibleLines(cm.display, cm.doc, viewPort);
    for (;;) {
      if (!updateDisplayInner(cm, changes, visible, forced)) break;
      forced = false;
      updated = true;
      updateSelection(cm);
      updateScrollbars(cm);

      // Clip forced viewport to actual scrollable area
      if (viewPort)
        viewPort = Math.min(cm.display.scroller.scrollHeight - cm.display.scroller.clientHeight,
                            typeof viewPort == "number" ? viewPort : viewPort.top);
      visible = visibleLines(cm.display, cm.doc, viewPort);
      if (visible.from >= cm.display.showingFrom && visible.to <= cm.display.showingTo)
        break;
      changes = [];
    }

    if (updated) {
      signalLater(cm, "update", cm);
      if (cm.display.showingFrom != oldFrom || cm.display.showingTo != oldTo)
        signalLater(cm, "viewportChange", cm, cm.display.showingFrom, cm.display.showingTo);
    }
    return updated;
  }

  // Uses a set of changes plus the current scroll position to
  // determine which DOM updates have to be made, and makes the
  // updates.
  function updateDisplayInner(cm, changes, visible, forced) {
    var display = cm.display, doc = cm.doc;
    if (!display.wrapper.clientWidth) {
      display.showingFrom = display.showingTo = doc.first;
      display.viewOffset = 0;
      return;
    }

    // Bail out if the visible area is already rendered and nothing changed.
    if (!forced && changes.length == 0 &&
        visible.from > display.showingFrom && visible.to < display.showingTo)
      return;

    if (maybeUpdateLineNumberWidth(cm))
      changes = [{from: doc.first, to: doc.first + doc.size}];
    var gutterW = display.sizer.style.marginLeft = display.gutters.offsetWidth + "px";
    display.scrollbarH.style.left = cm.options.fixedGutter ? gutterW : "0";

    // Used to determine which lines need their line numbers updated
    var positionsChangedFrom = Infinity;
    if (cm.options.lineNumbers)
      for (var i = 0; i < changes.length; ++i)
        if (changes[i].diff) { positionsChangedFrom = changes[i].from; break; }

    var end = doc.first + doc.size;
    var from = Math.max(visible.from - cm.options.viewportMargin, doc.first);
    var to = Math.min(end, visible.to + cm.options.viewportMargin);
    if (display.showingFrom < from && from - display.showingFrom < 20) from = Math.max(doc.first, display.showingFrom);
    if (display.showingTo > to && display.showingTo - to < 20) to = Math.min(end, display.showingTo);
    if (sawCollapsedSpans) {
      from = lineNo(visualLine(doc, getLine(doc, from)));
      while (to < end && lineIsHidden(doc, getLine(doc, to))) ++to;
    }

    // Create a range of theoretically intact lines, and punch holes
    // in that using the change info.
    var intact = [{from: Math.max(display.showingFrom, doc.first),
                   to: Math.min(display.showingTo, end)}];
    if (intact[0].from >= intact[0].to) intact = [];
    else intact = computeIntact(intact, changes);
    // When merged lines are present, we might have to reduce the
    // intact ranges because changes in continued fragments of the
    // intact lines do require the lines to be redrawn.
    if (sawCollapsedSpans)
      for (var i = 0; i < intact.length; ++i) {
        var range = intact[i], merged;
        while (merged = collapsedSpanAtEnd(getLine(doc, range.to - 1))) {
          var newTo = merged.find().from.line;
          if (newTo > range.from) range.to = newTo;
          else { intact.splice(i--, 1); break; }
        }
      }

    // Clip off the parts that won't be visible
    var intactLines = 0;
    for (var i = 0; i < intact.length; ++i) {
      var range = intact[i];
      if (range.from < from) range.from = from;
      if (range.to > to) range.to = to;
      if (range.from >= range.to) intact.splice(i--, 1);
      else intactLines += range.to - range.from;
    }
    if (!forced && intactLines == to - from && from == display.showingFrom && to == display.showingTo) {
      updateViewOffset(cm);
      return;
    }
    intact.sort(function(a, b) {return a.from - b.from;});

    // Avoid crashing on IE's "unspecified error" when in iframes
    try {
      var focused = document.activeElement;
    } catch(e) {}
    if (intactLines < (to - from) * .7) display.lineDiv.style.display = "none";
    patchDisplay(cm, from, to, intact, positionsChangedFrom);
    display.lineDiv.style.display = "";
    if (focused && document.activeElement != focused && focused.offsetHeight) focused.focus();

    var different = from != display.showingFrom || to != display.showingTo ||
      display.lastSizeC != display.wrapper.clientHeight;
    // This is just a bogus formula that detects when the editor is
    // resized or the font size changes.
    if (different) {
      display.lastSizeC = display.wrapper.clientHeight;
      startWorker(cm, 400);
    }
    display.showingFrom = from; display.showingTo = to;

    updateHeightsInViewport(cm);
    updateViewOffset(cm);

    return true;
  }

  function updateHeightsInViewport(cm) {
    var display = cm.display;
    var prevBottom = display.lineDiv.offsetTop;
    for (var node = display.lineDiv.firstChild, height; node; node = node.nextSibling) if (node.lineObj) {
      if (ie_lt8) {
        var bot = node.offsetTop + node.offsetHeight;
        height = bot - prevBottom;
        prevBottom = bot;
      } else {
        var box = getRect(node);
        height = box.bottom - box.top;
      }
      var diff = node.lineObj.height - height;
      if (height < 2) height = textHeight(display);
      if (diff > .001 || diff < -.001) {
        updateLineHeight(node.lineObj, height);
        var widgets = node.lineObj.widgets;
        if (widgets) for (var i = 0; i < widgets.length; ++i)
          widgets[i].height = widgets[i].node.offsetHeight;
      }
    }
  }

  function updateViewOffset(cm) {
    var off = cm.display.viewOffset = heightAtLine(cm, getLine(cm.doc, cm.display.showingFrom));
    // Position the mover div to align with the current virtual scroll position
    cm.display.mover.style.top = off + "px";
  }

  function computeIntact(intact, changes) {
    for (var i = 0, l = changes.length || 0; i < l; ++i) {
      var change = changes[i], intact2 = [], diff = change.diff || 0;
      for (var j = 0, l2 = intact.length; j < l2; ++j) {
        var range = intact[j];
        if (change.to <= range.from && change.diff) {
          intact2.push({from: range.from + diff, to: range.to + diff});
        } else if (change.to <= range.from || change.from >= range.to) {
          intact2.push(range);
        } else {
          if (change.from > range.from)
            intact2.push({from: range.from, to: change.from});
          if (change.to < range.to)
            intact2.push({from: change.to + diff, to: range.to + diff});
        }
      }
      intact = intact2;
    }
    return intact;
  }

  function getDimensions(cm) {
    var d = cm.display, left = {}, width = {};
    for (var n = d.gutters.firstChild, i = 0; n; n = n.nextSibling, ++i) {
      left[cm.options.gutters[i]] = n.offsetLeft;
      width[cm.options.gutters[i]] = n.offsetWidth;
    }
    return {fixedPos: compensateForHScroll(d),
            gutterTotalWidth: d.gutters.offsetWidth,
            gutterLeft: left,
            gutterWidth: width,
            wrapperWidth: d.wrapper.clientWidth};
  }

  function patchDisplay(cm, from, to, intact, updateNumbersFrom) {
    var dims = getDimensions(cm);
    var display = cm.display, lineNumbers = cm.options.lineNumbers;
    if (!intact.length && (!webkit || !cm.display.currentWheelTarget))
      removeChildren(display.lineDiv);
    var container = display.lineDiv, cur = container.firstChild;

    function rm(node) {
      var next = node.nextSibling;
      if (webkit && mac && cm.display.currentWheelTarget == node) {
        node.style.display = "none";
        node.lineObj = null;
      } else {
        node.parentNode.removeChild(node);
      }
      return next;
    }

    var nextIntact = intact.shift(), lineN = from;
    cm.doc.iter(from, to, function(line) {
      if (nextIntact && nextIntact.to == lineN) nextIntact = intact.shift();
      if (lineIsHidden(cm.doc, line)) {
        if (line.height != 0) updateLineHeight(line, 0);
        if (line.widgets && cur.previousSibling) for (var i = 0; i < line.widgets.length; ++i) {
          var w = line.widgets[i];
          if (w.showIfHidden) {
            var prev = cur.previousSibling;
            if (/pre/i.test(prev.nodeName)) {
              var wrap = elt("div", null, null, "position: relative");
              prev.parentNode.replaceChild(wrap, prev);
              wrap.appendChild(prev);
              prev = wrap;
            }
            var wnode = prev.appendChild(elt("div", [w.node], "CodeMirror-linewidget"));
            if (!w.handleMouseEvents) wnode.ignoreEvents = true;
            positionLineWidget(w, wnode, prev, dims);
          }
        }
      } else if (nextIntact && nextIntact.from <= lineN && nextIntact.to > lineN) {
        // This line is intact. Skip to the actual node. Update its
        // line number if needed.
        while (cur.lineObj != line) cur = rm(cur);
        if (lineNumbers && updateNumbersFrom <= lineN && cur.lineNumber)
          setTextContent(cur.lineNumber, lineNumberFor(cm.options, lineN));
        cur = cur.nextSibling;
      } else {
        // For lines with widgets, make an attempt to find and reuse
        // the existing element, so that widgets aren't needlessly
        // removed and re-inserted into the dom
        if (line.widgets) for (var j = 0, search = cur, reuse; search && j < 20; ++j, search = search.nextSibling)
          if (search.lineObj == line && /div/i.test(search.nodeName)) { reuse = search; break; }
        // This line needs to be generated.
        var lineNode = buildLineElement(cm, line, lineN, dims, reuse);
        if (lineNode != reuse) {
          container.insertBefore(lineNode, cur);
        } else {
          while (cur != reuse) cur = rm(cur);
          cur = cur.nextSibling;
        }

        lineNode.lineObj = line;
      }
      ++lineN;
    });
    while (cur) cur = rm(cur);
  }

  function buildLineElement(cm, line, lineNo, dims, reuse) {
    var lineElement = lineContent(cm, line);
    var markers = line.gutterMarkers, display = cm.display, wrap;

    if (!cm.options.lineNumbers && !markers && !line.bgClass && !line.wrapClass && !line.widgets)
      return lineElement;

    // Lines with gutter elements, widgets or a background class need
    // to be wrapped again, and have the extra elements added to the
    // wrapper div

    if (reuse) {
      reuse.alignable = null;
      var isOk = true, widgetsSeen = 0, insertBefore = null;
      for (var n = reuse.firstChild, next; n; n = next) {
        next = n.nextSibling;
        if (!/\bCodeMirror-linewidget\b/.test(n.className)) {
          reuse.removeChild(n);
        } else {
          for (var i = 0; i < line.widgets.length; ++i) {
            var widget = line.widgets[i];
            if (widget.node == n.firstChild) {
              if (!widget.above && !insertBefore) insertBefore = n;
              positionLineWidget(widget, n, reuse, dims);
              ++widgetsSeen;
              break;
            }
          }
          if (i == line.widgets.length) { isOk = false; break; }
        }
      }
      reuse.insertBefore(lineElement, insertBefore);
      if (isOk && widgetsSeen == line.widgets.length) {
        wrap = reuse;
        reuse.className = line.wrapClass || "";
      }
    }
    if (!wrap) {
      wrap = elt("div", null, line.wrapClass, "position: relative");
      wrap.appendChild(lineElement);
    }
    // Kludge to make sure the styled element lies behind the selection (by z-index)
    if (line.bgClass)
      wrap.insertBefore(elt("div", null, line.bgClass + " CodeMirror-linebackground"), wrap.firstChild);
    if (cm.options.lineNumbers || markers) {
      var gutterWrap = wrap.insertBefore(elt("div", null, null, "position: absolute; left: " +
                                             (cm.options.fixedGutter ? dims.fixedPos : -dims.gutterTotalWidth) + "px"),
                                         wrap.firstChild);
      if (cm.options.fixedGutter) (wrap.alignable || (wrap.alignable = [])).push(gutterWrap);
      if (cm.options.lineNumbers && (!markers || !markers["CodeMirror-linenumbers"]))
        wrap.lineNumber = gutterWrap.appendChild(
          elt("div", lineNumberFor(cm.options, lineNo),
              "CodeMirror-linenumber CodeMirror-gutter-elt",
              "left: " + dims.gutterLeft["CodeMirror-linenumbers"] + "px; width: "
              + display.lineNumInnerWidth + "px"));
      if (markers)
        for (var k = 0; k < cm.options.gutters.length; ++k) {
          var id = cm.options.gutters[k], found = markers.hasOwnProperty(id) && markers[id];
          if (found)
            gutterWrap.appendChild(elt("div", [found], "CodeMirror-gutter-elt", "left: " +
                                       dims.gutterLeft[id] + "px; width: " + dims.gutterWidth[id] + "px"));
        }
    }
    if (ie_lt8) wrap.style.zIndex = 2;
    if (line.widgets && wrap != reuse) for (var i = 0, ws = line.widgets; i < ws.length; ++i) {
      var widget = ws[i], node = elt("div", [widget.node], "CodeMirror-linewidget");
      if (!widget.handleMouseEvents) node.ignoreEvents = true;
      positionLineWidget(widget, node, wrap, dims);
      if (widget.above)
        wrap.insertBefore(node, cm.options.lineNumbers && line.height != 0 ? gutterWrap : lineElement);
      else
        wrap.appendChild(node);
      signalLater(widget, "redraw");
    }
    return wrap;
  }

  function positionLineWidget(widget, node, wrap, dims) {
    if (widget.noHScroll) {
      (wrap.alignable || (wrap.alignable = [])).push(node);
      var width = dims.wrapperWidth;
      node.style.left = dims.fixedPos + "px";
      if (!widget.coverGutter) {
        width -= dims.gutterTotalWidth;
        node.style.paddingLeft = dims.gutterTotalWidth + "px";
      }
      node.style.width = width + "px";
    }
    if (widget.coverGutter) {
      node.style.zIndex = 5;
      node.style.position = "relative";
      if (!widget.noHScroll) node.style.marginLeft = -dims.gutterTotalWidth + "px";
    }
  }

  // SELECTION / CURSOR

  function updateSelection(cm) {
    var display = cm.display;
    var collapsed = posEq(cm.doc.sel.from, cm.doc.sel.to);
    if (collapsed || cm.options.showCursorWhenSelecting)
      updateSelectionCursor(cm);
    else
      display.cursor.style.display = display.otherCursor.style.display = "none";
    if (!collapsed)
      updateSelectionRange(cm);
    else
      display.selectionDiv.style.display = "none";

    // Move the hidden textarea near the cursor to prevent scrolling artifacts
    if (cm.options.moveInputWithCursor) {
      var headPos = cursorCoords(cm, cm.doc.sel.head, "div");
      var wrapOff = getRect(display.wrapper), lineOff = getRect(display.lineDiv);
      display.inputDiv.style.top = Math.max(0, Math.min(display.wrapper.clientHeight - 10,
                                                        headPos.top + lineOff.top - wrapOff.top)) + "px";
      display.inputDiv.style.left = Math.max(0, Math.min(display.wrapper.clientWidth - 10,
                                                         headPos.left + lineOff.left - wrapOff.left)) + "px";
    }
  }

  // No selection, plain cursor
  function updateSelectionCursor(cm) {
    var display = cm.display, pos = cursorCoords(cm, cm.doc.sel.head, "div");
    display.cursor.style.left = pos.left + "px";
    display.cursor.style.top = pos.top + "px";
    display.cursor.style.height = Math.max(0, pos.bottom - pos.top) * cm.options.cursorHeight + "px";
    display.cursor.style.display = "";

    if (pos.other) {
      display.otherCursor.style.display = "";
      display.otherCursor.style.left = pos.other.left + "px";
      display.otherCursor.style.top = pos.other.top + "px";
      display.otherCursor.style.height = (pos.other.bottom - pos.other.top) * .85 + "px";
    } else { display.otherCursor.style.display = "none"; }
  }

  // Highlight selection
  function updateSelectionRange(cm) {
    var display = cm.display, doc = cm.doc, sel = cm.doc.sel;
    var fragment = document.createDocumentFragment();
    var clientWidth = display.lineSpace.offsetWidth, pl = paddingLeft(cm.display);

    function add(left, top, width, bottom) {
      if (top < 0) top = 0;
      fragment.appendChild(elt("div", null, "CodeMirror-selected", "position: absolute; left: " + left +
                               "px; top: " + top + "px; width: " + (width == null ? clientWidth - left : width) +
                               "px; height: " + (bottom - top) + "px"));
    }

    function drawForLine(line, fromArg, toArg) {
      var lineObj = getLine(doc, line);
      var lineLen = lineObj.text.length;
      var start, end;
      function coords(ch, bias) {
        return charCoords(cm, Pos(line, ch), "div", lineObj, bias);
      }

      iterateBidiSections(getOrder(lineObj), fromArg || 0, toArg == null ? lineLen : toArg, function(from, to, dir) {
        var leftPos = coords(from, "left"), rightPos, left, right;
        if (from == to) {
          rightPos = leftPos;
          left = right = leftPos.left;
        } else {
          rightPos = coords(to - 1, "right");
          if (dir == "rtl") { var tmp = leftPos; leftPos = rightPos; rightPos = tmp; }
          left = leftPos.left;
          right = rightPos.right;
        }
        if (fromArg == null && from == 0) left = pl;
        if (rightPos.top - leftPos.top > 3) { // Different lines, draw top part
          add(left, leftPos.top, null, leftPos.bottom);
          left = pl;
          if (leftPos.bottom < rightPos.top) add(left, leftPos.bottom, null, rightPos.top);
        }
        if (toArg == null && to == lineLen) right = clientWidth;
        if (!start || leftPos.top < start.top || leftPos.top == start.top && leftPos.left < start.left)
          start = leftPos;
        if (!end || rightPos.bottom > end.bottom || rightPos.bottom == end.bottom && rightPos.right > end.right)
          end = rightPos;
        if (left < pl + 1) left = pl;
        add(left, rightPos.top, right - left, rightPos.bottom);
      });
      return {start: start, end: end};
    }

    if (sel.from.line == sel.to.line) {
      drawForLine(sel.from.line, sel.from.ch, sel.to.ch);
    } else {
      var fromLine = getLine(doc, sel.from.line), toLine = getLine(doc, sel.to.line);
      var singleVLine = visualLine(doc, fromLine) == visualLine(doc, toLine);
      var leftEnd = drawForLine(sel.from.line, sel.from.ch, singleVLine ? fromLine.text.length : null).end;
      var rightStart = drawForLine(sel.to.line, singleVLine ? 0 : null, sel.to.ch).start;
      if (singleVLine) {
        if (leftEnd.top < rightStart.top - 2) {
          add(leftEnd.right, leftEnd.top, null, leftEnd.bottom);
          add(pl, rightStart.top, rightStart.left, rightStart.bottom);
        } else {
          add(leftEnd.right, leftEnd.top, rightStart.left - leftEnd.right, leftEnd.bottom);
        }
      }
      if (leftEnd.bottom < rightStart.top)
        add(pl, leftEnd.bottom, null, rightStart.top);
    }

    removeChildrenAndAdd(display.selectionDiv, fragment);
    display.selectionDiv.style.display = "";
  }

  // Cursor-blinking
  function restartBlink(cm) {
    if (!cm.state.focused) return;
    var display = cm.display;
    clearInterval(display.blinker);
    var on = true;
    display.cursor.style.visibility = display.otherCursor.style.visibility = "";
    display.blinker = setInterval(function() {
      display.cursor.style.visibility = display.otherCursor.style.visibility = (on = !on) ? "" : "hidden";
    }, cm.options.cursorBlinkRate);
  }

  // HIGHLIGHT WORKER

  function startWorker(cm, time) {
    if (cm.doc.mode.startState && cm.doc.frontier < cm.display.showingTo)
      cm.state.highlight.set(time, bind(highlightWorker, cm));
  }

  function highlightWorker(cm) {
    var doc = cm.doc;
    if (doc.frontier < doc.first) doc.frontier = doc.first;
    if (doc.frontier >= cm.display.showingTo) return;
    var end = +new Date + cm.options.workTime;
    var state = copyState(doc.mode, getStateBefore(cm, doc.frontier));
    var changed = [], prevChange;
    doc.iter(doc.frontier, Math.min(doc.first + doc.size, cm.display.showingTo + 500), function(line) {
      if (doc.frontier >= cm.display.showingFrom) { // Visible
        var oldStyles = line.styles;
        line.styles = highlightLine(cm, line, state);
        var ischange = !oldStyles || oldStyles.length != line.styles.length;
        for (var i = 0; !ischange && i < oldStyles.length; ++i) ischange = oldStyles[i] != line.styles[i];
        if (ischange) {
          if (prevChange && prevChange.end == doc.frontier) prevChange.end++;
          else changed.push(prevChange = {start: doc.frontier, end: doc.frontier + 1});
        }
        line.stateAfter = copyState(doc.mode, state);
      } else {
        processLine(cm, line, state);
        line.stateAfter = doc.frontier % 5 == 0 ? copyState(doc.mode, state) : null;
      }
      ++doc.frontier;
      if (+new Date > end) {
        startWorker(cm, cm.options.workDelay);
        return true;
      }
    });
    if (changed.length)
      operation(cm, function() {
        for (var i = 0; i < changed.length; ++i)
          regChange(this, changed[i].start, changed[i].end);
      })();
  }

  // Finds the line to start with when starting a parse. Tries to
  // find a line with a stateAfter, so that it can start with a
  // valid state. If that fails, it returns the line with the
  // smallest indentation, which tends to need the least context to
  // parse correctly.
  function findStartLine(cm, n, precise) {
    var minindent, minline, doc = cm.doc;
    for (var search = n, lim = n - 100; search > lim; --search) {
      if (search <= doc.first) return doc.first;
      var line = getLine(doc, search - 1);
      if (line.stateAfter && (!precise || search <= doc.frontier)) return search;
      var indented = countColumn(line.text, null, cm.options.tabSize);
      if (minline == null || minindent > indented) {
        minline = search - 1;
        minindent = indented;
      }
    }
    return minline;
  }

  function getStateBefore(cm, n, precise) {
    var doc = cm.doc, display = cm.display;
      if (!doc.mode.startState) return true;
    var pos = findStartLine(cm, n, precise), state = pos > doc.first && getLine(doc, pos-1).stateAfter;
    if (!state) state = startState(doc.mode);
    else state = copyState(doc.mode, state);
    doc.iter(pos, n, function(line) {
      processLine(cm, line, state);
      var save = pos == n - 1 || pos % 5 == 0 || pos >= display.showingFrom && pos < display.showingTo;
      line.stateAfter = save ? copyState(doc.mode, state) : null;
      ++pos;
    });
    return state;
  }

  // POSITION MEASUREMENT

  function paddingTop(display) {return display.lineSpace.offsetTop;}
  function paddingVert(display) {return display.mover.offsetHeight - display.lineSpace.offsetHeight;}
  function paddingLeft(display) {
    var e = removeChildrenAndAdd(display.measure, elt("pre", null, null, "text-align: left")).appendChild(elt("span", "x"));
    return e.offsetLeft;
  }

  function measureChar(cm, line, ch, data, bias) {
    var dir = -1;
    data = data || measureLine(cm, line);

    for (var pos = ch;; pos += dir) {
      var r = data[pos];
      if (r) break;
      if (dir < 0 && pos == 0) dir = 1;
    }
    bias = pos > ch ? "left" : pos < ch ? "right" : bias;
    if (bias == "left" && r.leftSide) r = r.leftSide;
    else if (bias == "right" && r.rightSide) r = r.rightSide;
    return {left: pos < ch ? r.right : r.left,
            right: pos > ch ? r.left : r.right,
            top: r.top,
            bottom: r.bottom};
  }

  function findCachedMeasurement(cm, line) {
    var cache = cm.display.measureLineCache;
    for (var i = 0; i < cache.length; ++i) {
      var memo = cache[i];
      if (memo.text == line.text && memo.markedSpans == line.markedSpans &&
          cm.display.scroller.clientWidth == memo.width &&
          memo.classes == line.textClass + "|" + line.bgClass + "|" + line.wrapClass)
        return memo;
    }
  }

  function clearCachedMeasurement(cm, line) {
    var exists = findCachedMeasurement(cm, line);
    if (exists) exists.text = exists.measure = exists.markedSpans = null;
  }

  function measureLine(cm, line) {
    // First look in the cache
    var cached = findCachedMeasurement(cm, line);
    if (cached) return cached.measure;

    // Failing that, recompute and store result in cache
    var measure = measureLineInner(cm, line);
    var cache = cm.display.measureLineCache;
    var memo = {text: line.text, width: cm.display.scroller.clientWidth,
                markedSpans: line.markedSpans, measure: measure,
                classes: line.textClass + "|" + line.bgClass + "|" + line.wrapClass};
    if (cache.length == 16) cache[++cm.display.measureLineCachePos % 16] = memo;
    else cache.push(memo);
    return measure;
  }

  function measureLineInner(cm, line) {
    var display = cm.display, measure = emptyArray(line.text.length);
    var pre = lineContent(cm, line, measure, true);

    // IE does not cache element positions of inline elements between
    // calls to getBoundingClientRect. This makes the loop below,
    // which gathers the positions of all the characters on the line,
    // do an amount of layout work quadratic to the number of
    // characters. When line wrapping is off, we try to improve things
    // by first subdividing the line into a bunch of inline blocks, so
    // that IE can reuse most of the layout information from caches
    // for those blocks. This does interfere with line wrapping, so it
    // doesn't work when wrapping is on, but in that case the
    // situation is slightly better, since IE does cache line-wrapping
    // information and only recomputes per-line.
    if (ie && !ie_lt8 && !cm.options.lineWrapping && pre.childNodes.length > 100) {
      var fragment = document.createDocumentFragment();
      var chunk = 10, n = pre.childNodes.length;
      for (var i = 0, chunks = Math.ceil(n / chunk); i < chunks; ++i) {
        var wrap = elt("div", null, null, "display: inline-block");
        for (var j = 0; j < chunk && n; ++j) {
          wrap.appendChild(pre.firstChild);
          --n;
        }
        fragment.appendChild(wrap);
      }
      pre.appendChild(fragment);
    }

    removeChildrenAndAdd(display.measure, pre);

    var outer = getRect(display.lineDiv);
    var vranges = [], data = emptyArray(line.text.length), maxBot = pre.offsetHeight;
    // Work around an IE7/8 bug where it will sometimes have randomly
    // replaced our pre with a clone at this point.
    if (ie_lt9 && display.measure.first != pre)
      removeChildrenAndAdd(display.measure, pre);

    function measureRect(rect) {
      var top = rect.top - outer.top, bot = rect.bottom - outer.top;
      if (bot > maxBot) bot = maxBot;
      if (top < 0) top = 0;
      for (var i = vranges.length - 2; i >= 0; i -= 2) {
        var rtop = vranges[i], rbot = vranges[i+1];
        if (rtop > bot || rbot < top) continue;
        if (rtop <= top && rbot >= bot ||
            top <= rtop && bot >= rbot ||
            Math.min(bot, rbot) - Math.max(top, rtop) >= (bot - top) >> 1) {
          vranges[i] = Math.min(top, rtop);
          vranges[i+1] = Math.max(bot, rbot);
          break;
        }
      }
      if (i < 0) { i = vranges.length; vranges.push(top, bot); }
      return {left: rect.left - outer.left,
              right: rect.right - outer.left,
              top: i, bottom: null};
    }
    function finishRect(rect) {
      rect.bottom = vranges[rect.top+1];
      rect.top = vranges[rect.top];
    }

    for (var i = 0, cur; i < measure.length; ++i) if (cur = measure[i]) {
      var node = cur, rect = null;
      // A widget might wrap, needs special care
      if (/\bCodeMirror-widget\b/.test(cur.className) && cur.getClientRects) {
        if (cur.firstChild.nodeType == 1) node = cur.firstChild;
        var rects = node.getClientRects();
        if (rects.length > 1) {
          rect = data[i] = measureRect(rects[0]);
          rect.rightSide = measureRect(rects[rects.length - 1]);
        }
      }
      if (!rect) rect = data[i] = measureRect(getRect(node));
      if (cur.measureRight) rect.right = getRect(cur.measureRight).left;
      if (cur.leftSide) rect.leftSide = measureRect(getRect(cur.leftSide));
    }
    for (var i = 0, cur; i < data.length; ++i) if (cur = data[i]) {
      finishRect(cur);
      if (cur.leftSide) finishRect(cur.leftSide);
      if (cur.rightSide) finishRect(cur.rightSide);
    }
    return data;
  }

  function measureLineWidth(cm, line) {
    var hasBadSpan = false;
    if (line.markedSpans) for (var i = 0; i < line.markedSpans; ++i) {
      var sp = line.markedSpans[i];
      if (sp.collapsed && (sp.to == null || sp.to == line.text.length)) hasBadSpan = true;
    }
    var cached = !hasBadSpan && findCachedMeasurement(cm, line);
    if (cached) return measureChar(cm, line, line.text.length, cached.measure, "right").right;

    var pre = lineContent(cm, line, null, true);
    var end = pre.appendChild(zeroWidthElement(cm.display.measure));
    removeChildrenAndAdd(cm.display.measure, pre);
    return getRect(end).right - getRect(cm.display.lineDiv).left;
  }

  function clearCaches(cm) {
    cm.display.measureLineCache.length = cm.display.measureLineCachePos = 0;
    cm.display.cachedCharWidth = cm.display.cachedTextHeight = null;
    if (!cm.options.lineWrapping) cm.display.maxLineChanged = true;
    cm.display.lineNumChars = null;
  }

  function pageScrollX() { return window.pageXOffset || (document.documentElement || document.body).scrollLeft; }
  function pageScrollY() { return window.pageYOffset || (document.documentElement || document.body).scrollTop; }

  // Context is one of "line", "div" (display.lineDiv), "local"/null (editor), or "page"
  function intoCoordSystem(cm, lineObj, rect, context) {
    if (lineObj.widgets) for (var i = 0; i < lineObj.widgets.length; ++i) if (lineObj.widgets[i].above) {
      var size = widgetHeight(lineObj.widgets[i]);
      rect.top += size; rect.bottom += size;
    }
    if (context == "line") return rect;
    if (!context) context = "local";
    var yOff = heightAtLine(cm, lineObj);
    if (context == "local") yOff += paddingTop(cm.display);
    else yOff -= cm.display.viewOffset;
    if (context == "page" || context == "window") {
      var lOff = getRect(cm.display.lineSpace);
      yOff += lOff.top + (context == "window" ? 0 : pageScrollY());
      var xOff = lOff.left + (context == "window" ? 0 : pageScrollX());
      rect.left += xOff; rect.right += xOff;
    }
    rect.top += yOff; rect.bottom += yOff;
    return rect;
  }

  // Context may be "window", "page", "div", or "local"/null
  // Result is in "div" coords
  function fromCoordSystem(cm, coords, context) {
    if (context == "div") return coords;
    var left = coords.left, top = coords.top;
    // First move into "page" coordinate system
    if (context == "page") {
      left -= pageScrollX();
      top -= pageScrollY();
    } else if (context == "local" || !context) {
      var localBox = getRect(cm.display.sizer);
      left += localBox.left;
      top += localBox.top;
    }

    var lineSpaceBox = getRect(cm.display.lineSpace);
    return {left: left - lineSpaceBox.left, top: top - lineSpaceBox.top};
  }

  function charCoords(cm, pos, context, lineObj, bias) {
    if (!lineObj) lineObj = getLine(cm.doc, pos.line);
    return intoCoordSystem(cm, lineObj, measureChar(cm, lineObj, pos.ch, null, bias), context);
  }

  function cursorCoords(cm, pos, context, lineObj, measurement) {
    lineObj = lineObj || getLine(cm.doc, pos.line);
    if (!measurement) measurement = measureLine(cm, lineObj);
    function get(ch, right) {
      var m = measureChar(cm, lineObj, ch, measurement, right ? "right" : "left");
      if (right) m.left = m.right; else m.right = m.left;
      return intoCoordSystem(cm, lineObj, m, context);
    }
    function getBidi(ch, partPos) {
      var part = order[partPos], right = part.level % 2;
      if (ch == bidiLeft(part) && partPos && part.level < order[partPos - 1].level) {
        part = order[--partPos];
        ch = bidiRight(part) - (part.level % 2 ? 0 : 1);
        right = true;
      } else if (ch == bidiRight(part) && partPos < order.length - 1 && part.level < order[partPos + 1].level) {
        part = order[++partPos];
        ch = bidiLeft(part) - part.level % 2;
        right = false;
      }
      if (right && ch == part.to && ch > part.from) return get(ch - 1);
      return get(ch, right);
    }
    var order = getOrder(lineObj), ch = pos.ch;
    if (!order) return get(ch);
    var partPos = getBidiPartAt(order, ch);
    var val = getBidi(ch, partPos);
    if (bidiOther != null) val.other = getBidi(ch, bidiOther);
    return val;
  }

  function PosWithInfo(line, ch, outside, xRel) {
    var pos = new Pos(line, ch);
    pos.xRel = xRel;
    if (outside) pos.outside = true;
    return pos;
  }

  // Coords must be lineSpace-local
  function coordsChar(cm, x, y) {
    var doc = cm.doc;
    y += cm.display.viewOffset;
    if (y < 0) return PosWithInfo(doc.first, 0, true, -1);
    var lineNo = lineAtHeight(doc, y), last = doc.first + doc.size - 1;
    if (lineNo > last)
      return PosWithInfo(doc.first + doc.size - 1, getLine(doc, last).text.length, true, 1);
    if (x < 0) x = 0;

    for (;;) {
      var lineObj = getLine(doc, lineNo);
      var found = coordsCharInner(cm, lineObj, lineNo, x, y);
      var merged = collapsedSpanAtEnd(lineObj);
      var mergedPos = merged && merged.find();
      if (merged && (found.ch > mergedPos.from.ch || found.ch == mergedPos.from.ch && found.xRel > 0))
        lineNo = mergedPos.to.line;
      else
        return found;
    }
  }

  function coordsCharInner(cm, lineObj, lineNo, x, y) {
    var innerOff = y - heightAtLine(cm, lineObj);
    var wrongLine = false, adjust = 2 * cm.display.wrapper.clientWidth;
    var measurement = measureLine(cm, lineObj);

    function getX(ch) {
      var sp = cursorCoords(cm, Pos(lineNo, ch), "line",
                            lineObj, measurement);
      wrongLine = true;
      if (innerOff > sp.bottom) return sp.left - adjust;
      else if (innerOff < sp.top) return sp.left + adjust;
      else wrongLine = false;
      return sp.left;
    }

    var bidi = getOrder(lineObj), dist = lineObj.text.length;
    var from = lineLeft(lineObj), to = lineRight(lineObj);
    var fromX = getX(from), fromOutside = wrongLine, toX = getX(to), toOutside = wrongLine;

    if (x > toX) return PosWithInfo(lineNo, to, toOutside, 1);
    // Do a binary search between these bounds.
    for (;;) {
      if (bidi ? to == from || to == moveVisually(lineObj, from, 1) : to - from <= 1) {
        var ch = x < fromX || x - fromX <= toX - x ? from : to;
        var xDiff = x - (ch == from ? fromX : toX);
        while (isExtendingChar.test(lineObj.text.charAt(ch))) ++ch;
        var pos = PosWithInfo(lineNo, ch, ch == from ? fromOutside : toOutside,
                              xDiff < 0 ? -1 : xDiff ? 1 : 0);
        return pos;
      }
      var step = Math.ceil(dist / 2), middle = from + step;
      if (bidi) {
        middle = from;
        for (var i = 0; i < step; ++i) middle = moveVisually(lineObj, middle, 1);
      }
      var middleX = getX(middle);
      if (middleX > x) {to = middle; toX = middleX; if (toOutside = wrongLine) toX += 1000; dist = step;}
      else {from = middle; fromX = middleX; fromOutside = wrongLine; dist -= step;}
    }
  }

  var measureText;
  function textHeight(display) {
    if (display.cachedTextHeight != null) return display.cachedTextHeight;
    if (measureText == null) {
      measureText = elt("pre");
      // Measure a bunch of lines, for browsers that compute
      // fractional heights.
      for (var i = 0; i < 49; ++i) {
        measureText.appendChild(document.createTextNode("x"));
        measureText.appendChild(elt("br"));
      }
      measureText.appendChild(document.createTextNode("x"));
    }
    removeChildrenAndAdd(display.measure, measureText);
    var height = measureText.offsetHeight / 50;
    if (height > 3) display.cachedTextHeight = height;
    removeChildren(display.measure);
    return height || 1;
  }

  function charWidth(display) {
    if (display.cachedCharWidth != null) return display.cachedCharWidth;
    var anchor = elt("span", "x");
    var pre = elt("pre", [anchor]);
    removeChildrenAndAdd(display.measure, pre);
    var width = anchor.offsetWidth;
    if (width > 2) display.cachedCharWidth = width;
    return width || 10;
  }

  // OPERATIONS

  // Operations are used to wrap changes in such a way that each
  // change won't have to update the cursor and display (which would
  // be awkward, slow, and error-prone), but instead updates are
  // batched and then all combined and executed at once.

  var nextOpId = 0;
  function startOperation(cm) {
    cm.curOp = {
      // An array of ranges of lines that have to be updated. See
      // updateDisplay.
      changes: [],
      forceUpdate: false,
      updateInput: null,
      userSelChange: null,
      textChanged: null,
      selectionChanged: false,
      cursorActivity: false,
      updateMaxLine: false,
      updateScrollPos: false,
      id: ++nextOpId
    };
    if (!delayedCallbackDepth++) delayedCallbacks = [];
  }

  function endOperation(cm) {
    var op = cm.curOp, doc = cm.doc, display = cm.display;
    cm.curOp = null;

    if (op.updateMaxLine) computeMaxLength(cm);
    if (display.maxLineChanged && !cm.options.lineWrapping && display.maxLine) {
      var width = measureLineWidth(cm, display.maxLine);
      display.sizer.style.minWidth = Math.max(0, width + 3 + scrollerCutOff) + "px";
      display.maxLineChanged = false;
      var maxScrollLeft = Math.max(0, display.sizer.offsetLeft + display.sizer.offsetWidth - display.scroller.clientWidth);
      if (maxScrollLeft < doc.scrollLeft && !op.updateScrollPos)
        setScrollLeft(cm, Math.min(display.scroller.scrollLeft, maxScrollLeft), true);
    }
    var newScrollPos, updated;
    if (op.updateScrollPos) {
      newScrollPos = op.updateScrollPos;
    } else if (op.selectionChanged && display.scroller.clientHeight) { // don't rescroll if not visible
      var coords = cursorCoords(cm, doc.sel.head);
      newScrollPos = calculateScrollPos(cm, coords.left, coords.top, coords.left, coords.bottom);
    }
    if (op.changes.length || op.forceUpdate || newScrollPos && newScrollPos.scrollTop != null) {
      updated = updateDisplay(cm, op.changes, newScrollPos && newScrollPos.scrollTop, op.forceUpdate);
      if (cm.display.scroller.offsetHeight) cm.doc.scrollTop = cm.display.scroller.scrollTop;
    }
    if (!updated && op.selectionChanged) updateSelection(cm);
    if (op.updateScrollPos) {
      display.scroller.scrollTop = display.scrollbarV.scrollTop = doc.scrollTop = newScrollPos.scrollTop;
      display.scroller.scrollLeft = display.scrollbarH.scrollLeft = doc.scrollLeft = newScrollPos.scrollLeft;
      alignHorizontally(cm);
      if (op.scrollToPos)
        scrollPosIntoView(cm, clipPos(cm.doc, op.scrollToPos), op.scrollToPosMargin);
    } else if (newScrollPos) {
      scrollCursorIntoView(cm);
    }
    if (op.selectionChanged) restartBlink(cm);

    if (cm.state.focused && op.updateInput)
      resetInput(cm, op.userSelChange);

    var hidden = op.maybeHiddenMarkers, unhidden = op.maybeUnhiddenMarkers;
    if (hidden) for (var i = 0; i < hidden.length; ++i)
      if (!hidden[i].lines.length) signal(hidden[i], "hide");
    if (unhidden) for (var i = 0; i < unhidden.length; ++i)
      if (unhidden[i].lines.length) signal(unhidden[i], "unhide");

    var delayed;
    if (!--delayedCallbackDepth) {
      delayed = delayedCallbacks;
      delayedCallbacks = null;
    }
    if (op.textChanged)
      signal(cm, "change", cm, op.textChanged);
    if (op.cursorActivity) signal(cm, "cursorActivity", cm);
    if (delayed) for (var i = 0; i < delayed.length; ++i) delayed[i]();
  }

  // Wraps a function in an operation. Returns the wrapped function.
  function operation(cm1, f) {
    return function() {
      var cm = cm1 || this, withOp = !cm.curOp;
      if (withOp) startOperation(cm);
      try { var result = f.apply(cm, arguments); }
      finally { if (withOp) endOperation(cm); }
      return result;
    };
  }
  function docOperation(f) {
    return function() {
      var withOp = this.cm && !this.cm.curOp, result;
      if (withOp) startOperation(this.cm);
      try { result = f.apply(this, arguments); }
      finally { if (withOp) endOperation(this.cm); }
      return result;
    };
  }
  function runInOp(cm, f) {
    var withOp = !cm.curOp, result;
    if (withOp) startOperation(cm);
    try { result = f(); }
    finally { if (withOp) endOperation(cm); }
    return result;
  }

  function regChange(cm, from, to, lendiff) {
    if (from == null) from = cm.doc.first;
    if (to == null) to = cm.doc.first + cm.doc.size;
    cm.curOp.changes.push({from: from, to: to, diff: lendiff});
  }

  // INPUT HANDLING

  function slowPoll(cm) {
    if (cm.display.pollingFast) return;
    cm.display.poll.set(cm.options.pollInterval, function() {
      readInput(cm);
      if (cm.state.focused) slowPoll(cm);
    });
  }

  function fastPoll(cm) {
    var missed = false;
    cm.display.pollingFast = true;
    function p() {
      var changed = readInput(cm);
      if (!changed && !missed) {missed = true; cm.display.poll.set(60, p);}
      else {cm.display.pollingFast = false; slowPoll(cm);}
    }
    cm.display.poll.set(20, p);
  }

  // prevInput is a hack to work with IME. If we reset the textarea
  // on every change, that breaks IME. So we look for changes
  // compared to the previous content instead. (Modern browsers have
  // events that indicate IME taking place, but these are not widely
  // supported or compatible enough yet to rely on.)
  function readInput(cm) {
    var input = cm.display.input, prevInput = cm.display.prevInput, doc = cm.doc, sel = doc.sel;
    if (!cm.state.focused || hasSelection(input) || isReadOnly(cm) || cm.state.disableInput) return false;
    var text = input.value;
    if (text == prevInput && posEq(sel.from, sel.to)) return false;
    if (ie && !ie_lt9 && cm.display.inputHasSelection === text) {
      resetInput(cm, true);
      return false;
    }

    var withOp = !cm.curOp;
    if (withOp) startOperation(cm);
    sel.shift = false;
    var same = 0, l = Math.min(prevInput.length, text.length);
    while (same < l && prevInput.charCodeAt(same) == text.charCodeAt(same)) ++same;
    var from = sel.from, to = sel.to;
    if (same < prevInput.length)
      from = Pos(from.line, from.ch - (prevInput.length - same));
    else if (cm.state.overwrite && posEq(from, to) && !cm.state.pasteIncoming)
      to = Pos(to.line, Math.min(getLine(doc, to.line).text.length, to.ch + (text.length - same)));

    var updateInput = cm.curOp.updateInput;
    var changeEvent = {from: from, to: to, text: splitLines(text.slice(same)),
                       origin: cm.state.pasteIncoming ? "paste" : "+input"};
    makeChange(cm.doc, changeEvent, "end");
    cm.curOp.updateInput = updateInput;
    signalLater(cm, "inputRead", cm, changeEvent);

    if (text.length > 1000 || text.indexOf("\n") > -1) input.value = cm.display.prevInput = "";
    else cm.display.prevInput = text;
    if (withOp) endOperation(cm);
    cm.state.pasteIncoming = false;
    return true;
  }

  function resetInput(cm, user) {
    var minimal, selected, doc = cm.doc;
    if (!posEq(doc.sel.from, doc.sel.to)) {
      cm.display.prevInput = "";
      minimal = hasCopyEvent &&
        (doc.sel.to.line - doc.sel.from.line > 100 || (selected = cm.getSelection()).length > 1000);
      var content = minimal ? "-" : selected || cm.getSelection();
      cm.display.input.value = content;
      if (cm.state.focused) selectInput(cm.display.input);
      if (ie && !ie_lt9) cm.display.inputHasSelection = content;
    } else if (user) {
      cm.display.prevInput = cm.display.input.value = "";
      if (ie && !ie_lt9) cm.display.inputHasSelection = null;
    }
    cm.display.inaccurateSelection = minimal;
  }

  function focusInput(cm) {
    if (cm.options.readOnly != "nocursor" && (!mobile || document.activeElement != cm.display.input))
      cm.display.input.focus();
  }

  function isReadOnly(cm) {
    return cm.options.readOnly || cm.doc.cantEdit;
  }

  // EVENT HANDLERS

  function registerEventHandlers(cm) {
    var d = cm.display;
    on(d.scroller, "mousedown", operation(cm, onMouseDown));
    if (ie)
      on(d.scroller, "dblclick", operation(cm, function(e) {
        if (signalDOMEvent(cm, e)) return;
        var pos = posFromMouse(cm, e);
        if (!pos || clickInGutter(cm, e) || eventInWidget(cm.display, e)) return;
        e_preventDefault(e);
        var word = findWordAt(getLine(cm.doc, pos.line).text, pos);
        extendSelection(cm.doc, word.from, word.to);
      }));
    else
      on(d.scroller, "dblclick", function(e) { signalDOMEvent(cm, e) || e_preventDefault(e); });
    on(d.lineSpace, "selectstart", function(e) {
      if (!eventInWidget(d, e)) e_preventDefault(e);
    });
    // Gecko browsers fire contextmenu *after* opening the menu, at
    // which point we can't mess with it anymore. Context menu is
    // handled in onMouseDown for Gecko.
    if (!captureMiddleClick) on(d.scroller, "contextmenu", function(e) {onContextMenu(cm, e);});

    on(d.scroller, "scroll", function() {
      if (d.scroller.clientHeight) {
        setScrollTop(cm, d.scroller.scrollTop);
        setScrollLeft(cm, d.scroller.scrollLeft, true);
        signal(cm, "scroll", cm);
      }
    });
    on(d.scrollbarV, "scroll", function() {
      if (d.scroller.clientHeight) setScrollTop(cm, d.scrollbarV.scrollTop);
    });
    on(d.scrollbarH, "scroll", function() {
      if (d.scroller.clientHeight) setScrollLeft(cm, d.scrollbarH.scrollLeft);
    });

    on(d.scroller, "mousewheel", function(e){onScrollWheel(cm, e);});
    on(d.scroller, "DOMMouseScroll", function(e){onScrollWheel(cm, e);});

    function reFocus() { if (cm.state.focused) setTimeout(bind(focusInput, cm), 0); }
    on(d.scrollbarH, "mousedown", reFocus);
    on(d.scrollbarV, "mousedown", reFocus);
    // Prevent wrapper from ever scrolling
    on(d.wrapper, "scroll", function() { d.wrapper.scrollTop = d.wrapper.scrollLeft = 0; });

    var resizeTimer;
    function onResize() {
      if (resizeTimer == null) resizeTimer = setTimeout(function() {
        resizeTimer = null;
        // Might be a text scaling operation, clear size caches.
        d.cachedCharWidth = d.cachedTextHeight = knownScrollbarWidth = null;
        clearCaches(cm);
        runInOp(cm, bind(regChange, cm));
      }, 100);
    }
    on(window, "resize", onResize);
    // Above handler holds on to the editor and its data structures.
    // Here we poll to unregister it when the editor is no longer in
    // the document, so that it can be garbage-collected.
    function unregister() {
      for (var p = d.wrapper.parentNode; p && p != document.body; p = p.parentNode) {}
      if (p) setTimeout(unregister, 5000);
      else off(window, "resize", onResize);
    }
    setTimeout(unregister, 5000);

    on(d.input, "keyup", operation(cm, function(e) {
      if (signalDOMEvent(cm, e) || cm.options.onKeyEvent && cm.options.onKeyEvent(cm, addStop(e))) return;
      if (e.keyCode == 16) cm.doc.sel.shift = false;
    }));
    on(d.input, "input", bind(fastPoll, cm));
    on(d.input, "keydown", operation(cm, onKeyDown));
    on(d.input, "keypress", operation(cm, onKeyPress));
    on(d.input, "focus", bind(onFocus, cm));
    on(d.input, "blur", bind(onBlur, cm));

    function drag_(e) {
      if (signalDOMEvent(cm, e) || cm.options.onDragEvent && cm.options.onDragEvent(cm, addStop(e))) return;
      e_stop(e);
    }
    if (cm.options.dragDrop) {
      on(d.scroller, "dragstart", function(e){onDragStart(cm, e);});
      on(d.scroller, "dragenter", drag_);
      on(d.scroller, "dragover", drag_);
      on(d.scroller, "drop", operation(cm, onDrop));
    }
    on(d.scroller, "paste", function(e){
      if (eventInWidget(d, e)) return;
      focusInput(cm);
      fastPoll(cm);
    });
    on(d.input, "paste", function() {
      cm.state.pasteIncoming = true;
      fastPoll(cm);
    });

    function prepareCopy() {
      if (d.inaccurateSelection) {
        d.prevInput = "";
        d.inaccurateSelection = false;
        d.input.value = cm.getSelection();
        selectInput(d.input);
      }
    }
    on(d.input, "cut", prepareCopy);
    on(d.input, "copy", prepareCopy);

    // Needed to handle Tab key in KHTML
    if (khtml) on(d.sizer, "mouseup", function() {
        if (document.activeElement == d.input) d.input.blur();
        focusInput(cm);
    });
  }

  function eventInWidget(display, e) {
    for (var n = e_target(e); n != display.wrapper; n = n.parentNode) {
      if (!n || n.ignoreEvents || n.parentNode == display.sizer && n != display.mover) return true;
    }
  }

  function posFromMouse(cm, e, liberal) {
    var display = cm.display;
    if (!liberal) {
      var target = e_target(e);
      if (target == display.scrollbarH || target == display.scrollbarH.firstChild ||
          target == display.scrollbarV || target == display.scrollbarV.firstChild ||
          target == display.scrollbarFiller || target == display.gutterFiller) return null;
    }
    var x, y, space = getRect(display.lineSpace);
    // Fails unpredictably on IE[67] when mouse is dragged around quickly.
    try { x = e.clientX; y = e.clientY; } catch (e) { return null; }
    return coordsChar(cm, x - space.left, y - space.top);
  }

  var lastClick, lastDoubleClick;
  function onMouseDown(e) {
    if (signalDOMEvent(this, e)) return;
    var cm = this, display = cm.display, doc = cm.doc, sel = doc.sel;
    sel.shift = e.shiftKey;

    if (eventInWidget(display, e)) {
      if (!webkit) {
        display.scroller.draggable = false;
        setTimeout(function(){display.scroller.draggable = true;}, 100);
      }
      return;
    }
    if (clickInGutter(cm, e)) return;
    var start = posFromMouse(cm, e);

    switch (e_button(e)) {
    case 3:
      if (captureMiddleClick) onContextMenu.call(cm, cm, e);
      return;
    case 2:
      if (start) extendSelection(cm.doc, start);
      setTimeout(bind(focusInput, cm), 20);
      e_preventDefault(e);
      return;
    }
    // For button 1, if it was clicked inside the editor
    // (posFromMouse returning non-null), we have to adjust the
    // selection.
    if (!start) {if (e_target(e) == display.scroller) e_preventDefault(e); return;}

    if (!cm.state.focused) onFocus(cm);

    var now = +new Date, type = "single";
    if (lastDoubleClick && lastDoubleClick.time > now - 400 && posEq(lastDoubleClick.pos, start)) {
      type = "triple";
      e_preventDefault(e);
      setTimeout(bind(focusInput, cm), 20);
      selectLine(cm, start.line);
    } else if (lastClick && lastClick.time > now - 400 && posEq(lastClick.pos, start)) {
      type = "double";
      lastDoubleClick = {time: now, pos: start};
      e_preventDefault(e);
      var word = findWordAt(getLine(doc, start.line).text, start);
      extendSelection(cm.doc, word.from, word.to);
    } else { lastClick = {time: now, pos: start}; }

    var last = start;
    if (cm.options.dragDrop && dragAndDrop && !isReadOnly(cm) && !posEq(sel.from, sel.to) &&
        !posLess(start, sel.from) && !posLess(sel.to, start) && type == "single") {
      var dragEnd = operation(cm, function(e2) {
        if (webkit) display.scroller.draggable = false;
        cm.state.draggingText = false;
        off(document, "mouseup", dragEnd);
        off(display.scroller, "drop", dragEnd);
        if (Math.abs(e.clientX - e2.clientX) + Math.abs(e.clientY - e2.clientY) < 10) {
          e_preventDefault(e2);
          extendSelection(cm.doc, start);
          focusInput(cm);
        }
      });
      // Let the drag handler handle this.
      if (webkit) display.scroller.draggable = true;
      cm.state.draggingText = dragEnd;
      // IE's approach to draggable
      if (display.scroller.dragDrop) display.scroller.dragDrop();
      on(document, "mouseup", dragEnd);
      on(display.scroller, "drop", dragEnd);
      return;
    }
    e_preventDefault(e);
    if (type == "single") extendSelection(cm.doc, clipPos(doc, start));

    var startstart = sel.from, startend = sel.to, lastPos = start;

    function doSelect(cur) {
      if (posEq(lastPos, cur)) return;
      lastPos = cur;

      if (type == "single") {
        extendSelection(cm.doc, clipPos(doc, start), cur);
        return;
      }

      startstart = clipPos(doc, startstart);
      startend = clipPos(doc, startend);
      if (type == "double") {
        var word = findWordAt(getLine(doc, cur.line).text, cur);
        if (posLess(cur, startstart)) extendSelection(cm.doc, word.from, startend);
        else extendSelection(cm.doc, startstart, word.to);
      } else if (type == "triple") {
        if (posLess(cur, startstart)) extendSelection(cm.doc, startend, clipPos(doc, Pos(cur.line, 0)));
        else extendSelection(cm.doc, startstart, clipPos(doc, Pos(cur.line + 1, 0)));
      }
    }

    var editorSize = getRect(display.wrapper);
    // Used to ensure timeout re-tries don't fire when another extend
    // happened in the meantime (clearTimeout isn't reliable -- at
    // least on Chrome, the timeouts still happen even when cleared,
    // if the clear happens after their scheduled firing time).
    var counter = 0;

    function extend(e) {
      var curCount = ++counter;
      var cur = posFromMouse(cm, e, true);
      if (!cur) return;
      if (!posEq(cur, last)) {
        if (!cm.state.focused) onFocus(cm);
        last = cur;
        doSelect(cur);
        var visible = visibleLines(display, doc);
        if (cur.line >= visible.to || cur.line < visible.from)
          setTimeout(operation(cm, function(){if (counter == curCount) extend(e);}), 150);
      } else {
        var outside = e.clientY < editorSize.top ? -20 : e.clientY > editorSize.bottom ? 20 : 0;
        if (outside) setTimeout(operation(cm, function() {
          if (counter != curCount) return;
          display.scroller.scrollTop += outside;
          extend(e);
        }), 50);
      }
    }

    function done(e) {
      counter = Infinity;
      e_preventDefault(e);
      focusInput(cm);
      off(document, "mousemove", move);
      off(document, "mouseup", up);
    }

    var move = operation(cm, function(e) {
      if (!ie && !e_button(e)) done(e);
      else extend(e);
    });
    var up = operation(cm, done);
    on(document, "mousemove", move);
    on(document, "mouseup", up);
  }

  function clickInGutter(cm, e) {
    var display = cm.display;
    try { var mX = e.clientX, mY = e.clientY; }
    catch(e) { return false; }

    if (mX >= Math.floor(getRect(display.gutters).right)) return false;
    e_preventDefault(e);
    if (!hasHandler(cm, "gutterClick")) return true;

    var lineBox = getRect(display.lineDiv);
    if (mY > lineBox.bottom) return true;
    mY -= lineBox.top - display.viewOffset;

    for (var i = 0; i < cm.options.gutters.length; ++i) {
      var g = display.gutters.childNodes[i];
      if (g && getRect(g).right >= mX) {
        var line = lineAtHeight(cm.doc, mY);
        var gutter = cm.options.gutters[i];
        signalLater(cm, "gutterClick", cm, line, gutter, e);
        break;
      }
    }
    return true;
  }

  // Kludge to work around strange IE behavior where it'll sometimes
  // re-fire a series of drag-related events right after the drop (#1551)
  var lastDrop = 0;

  function onDrop(e) {
    var cm = this;
    if (signalDOMEvent(cm, e) || eventInWidget(cm.display, e) || (cm.options.onDragEvent && cm.options.onDragEvent(cm, addStop(e))))
      return;
    e_preventDefault(e);
    if (ie) lastDrop = +new Date;
    var pos = posFromMouse(cm, e, true), files = e.dataTransfer.files;
    if (!pos || isReadOnly(cm)) return;
    if (files && files.length && window.FileReader && window.File) {
      var n = files.length, text = Array(n), read = 0;
      var loadFile = function(file, i) {
        var reader = new FileReader;
        reader.onload = function() {
          text[i] = reader.result;
          if (++read == n) {
            pos = clipPos(cm.doc, pos);
            makeChange(cm.doc, {from: pos, to: pos, text: splitLines(text.join("\n")), origin: "paste"}, "around");
          }
        };
        reader.readAsText(file);
      };
      for (var i = 0; i < n; ++i) loadFile(files[i], i);
    } else {
      // Don't do a replace if the drop happened inside of the selected text.
      if (cm.state.draggingText && !(posLess(pos, cm.doc.sel.from) || posLess(cm.doc.sel.to, pos))) {
        cm.state.draggingText(e);
        // Ensure the editor is re-focused
        setTimeout(bind(focusInput, cm), 20);
        return;
      }
      try {
        var text = e.dataTransfer.getData("Text");
        if (text) {
          var curFrom = cm.doc.sel.from, curTo = cm.doc.sel.to;
          setSelection(cm.doc, pos, pos);
          if (cm.state.draggingText) replaceRange(cm.doc, "", curFrom, curTo, "paste");
          cm.replaceSelection(text, null, "paste");
          focusInput(cm);
          onFocus(cm);
        }
      }
      catch(e){}
    }
  }

  function onDragStart(cm, e) {
    if (ie && (!cm.state.draggingText || +new Date - lastDrop < 100)) { e_stop(e); return; }
    if (signalDOMEvent(cm, e) || eventInWidget(cm.display, e)) return;

    var txt = cm.getSelection();
    e.dataTransfer.setData("Text", txt);

    // Use dummy image instead of default browsers image.
    // Recent Safari (~6.0.2) have a tendency to segfault when this happens, so we don't do it there.
    if (e.dataTransfer.setDragImage && !safari) {
      var img = elt("img", null, null, "position: fixed; left: 0; top: 0;");
      if (opera) {
        img.width = img.height = 1;
        cm.display.wrapper.appendChild(img);
        // Force a relayout, or Opera won't use our image for some obscure reason
        img._top = img.offsetTop;
      }
      e.dataTransfer.setDragImage(img, 0, 0);
      if (opera) img.parentNode.removeChild(img);
    }
  }

  function setScrollTop(cm, val) {
    if (Math.abs(cm.doc.scrollTop - val) < 2) return;
    cm.doc.scrollTop = val;
    if (!gecko) updateDisplay(cm, [], val);
    if (cm.display.scroller.scrollTop != val) cm.display.scroller.scrollTop = val;
    if (cm.display.scrollbarV.scrollTop != val) cm.display.scrollbarV.scrollTop = val;
    if (gecko) updateDisplay(cm, []);
    startWorker(cm, 100);
  }
  function setScrollLeft(cm, val, isScroller) {
    if (isScroller ? val == cm.doc.scrollLeft : Math.abs(cm.doc.scrollLeft - val) < 2) return;
    val = Math.min(val, cm.display.scroller.scrollWidth - cm.display.scroller.clientWidth);
    cm.doc.scrollLeft = val;
    alignHorizontally(cm);
    if (cm.display.scroller.scrollLeft != val) cm.display.scroller.scrollLeft = val;
    if (cm.display.scrollbarH.scrollLeft != val) cm.display.scrollbarH.scrollLeft = val;
  }

  // Since the delta values reported on mouse wheel events are
  // unstandardized between browsers and even browser versions, and
  // generally horribly unpredictable, this code starts by measuring
  // the scroll effect that the first few mouse wheel events have,
  // and, from that, detects the way it can convert deltas to pixel
  // offsets afterwards.
  //
  // The reason we want to know the amount a wheel event will scroll
  // is that it gives us a chance to update the display before the
  // actual scrolling happens, reducing flickering.

  var wheelSamples = 0, wheelPixelsPerUnit = null;
  // Fill in a browser-detected starting value on browsers where we
  // know one. These don't have to be accurate -- the result of them
  // being wrong would just be a slight flicker on the first wheel
  // scroll (if it is large enough).
  if (ie) wheelPixelsPerUnit = -.53;
  else if (gecko) wheelPixelsPerUnit = 15;
  else if (chrome) wheelPixelsPerUnit = -.7;
  else if (safari) wheelPixelsPerUnit = -1/3;

  function onScrollWheel(cm, e) {
    var dx = e.wheelDeltaX, dy = e.wheelDeltaY;
    if (dx == null && e.detail && e.axis == e.HORIZONTAL_AXIS) dx = e.detail;
    if (dy == null && e.detail && e.axis == e.VERTICAL_AXIS) dy = e.detail;
    else if (dy == null) dy = e.wheelDelta;

    var display = cm.display, scroll = display.scroller;
    // Quit if there's nothing to scroll here
    if (!(dx && scroll.scrollWidth > scroll.clientWidth ||
          dy && scroll.scrollHeight > scroll.clientHeight)) return;

    // Webkit browsers on OS X abort momentum scrolls when the target
    // of the scroll event is removed from the scrollable element.
    // This hack (see related code in patchDisplay) makes sure the
    // element is kept around.
    if (dy && mac && webkit) {
      for (var cur = e.target; cur != scroll; cur = cur.parentNode) {
        if (cur.lineObj) {
          cm.display.currentWheelTarget = cur;
          break;
        }
      }
    }

    // On some browsers, horizontal scrolling will cause redraws to
    // happen before the gutter has been realigned, causing it to
    // wriggle around in a most unseemly way. When we have an
    // estimated pixels/delta value, we just handle horizontal
    // scrolling entirely here. It'll be slightly off from native, but
    // better than glitching out.
    if (dx && !gecko && !opera && wheelPixelsPerUnit != null) {
      if (dy)
        setScrollTop(cm, Math.max(0, Math.min(scroll.scrollTop + dy * wheelPixelsPerUnit, scroll.scrollHeight - scroll.clientHeight)));
      setScrollLeft(cm, Math.max(0, Math.min(scroll.scrollLeft + dx * wheelPixelsPerUnit, scroll.scrollWidth - scroll.clientWidth)));
      e_preventDefault(e);
      display.wheelStartX = null; // Abort measurement, if in progress
      return;
    }

    if (dy && wheelPixelsPerUnit != null) {
      var pixels = dy * wheelPixelsPerUnit;
      var top = cm.doc.scrollTop, bot = top + display.wrapper.clientHeight;
      if (pixels < 0) top = Math.max(0, top + pixels - 50);
      else bot = Math.min(cm.doc.height, bot + pixels + 50);
      updateDisplay(cm, [], {top: top, bottom: bot});
    }

    if (wheelSamples < 20) {
      if (display.wheelStartX == null) {
        display.wheelStartX = scroll.scrollLeft; display.wheelStartY = scroll.scrollTop;
        display.wheelDX = dx; display.wheelDY = dy;
        setTimeout(function() {
          if (display.wheelStartX == null) return;
          var movedX = scroll.scrollLeft - display.wheelStartX;
          var movedY = scroll.scrollTop - display.wheelStartY;
          var sample = (movedY && display.wheelDY && movedY / display.wheelDY) ||
            (movedX && display.wheelDX && movedX / display.wheelDX);
          display.wheelStartX = display.wheelStartY = null;
          if (!sample) return;
          wheelPixelsPerUnit = (wheelPixelsPerUnit * wheelSamples + sample) / (wheelSamples + 1);
          ++wheelSamples;
        }, 200);
      } else {
        display.wheelDX += dx; display.wheelDY += dy;
      }
    }
  }

  function doHandleBinding(cm, bound, dropShift) {
    if (typeof bound == "string") {
      bound = commands[bound];
      if (!bound) return false;
    }
    // Ensure previous input has been read, so that the handler sees a
    // consistent view of the document
    if (cm.display.pollingFast && readInput(cm)) cm.display.pollingFast = false;
    var doc = cm.doc, prevShift = doc.sel.shift, done = false;
    try {
      if (isReadOnly(cm)) cm.state.suppressEdits = true;
      if (dropShift) doc.sel.shift = false;
      done = bound(cm) != Pass;
    } finally {
      doc.sel.shift = prevShift;
      cm.state.suppressEdits = false;
    }
    return done;
  }

  function allKeyMaps(cm) {
    var maps = cm.state.keyMaps.slice(0);
    if (cm.options.extraKeys) maps.push(cm.options.extraKeys);
    maps.push(cm.options.keyMap);
    return maps;
  }

  var maybeTransition;
  function handleKeyBinding(cm, e) {
    // Handle auto keymap transitions
    var startMap = getKeyMap(cm.options.keyMap), next = startMap.auto;
    clearTimeout(maybeTransition);
    if (next && !isModifierKey(e)) maybeTransition = setTimeout(function() {
      if (getKeyMap(cm.options.keyMap) == startMap) {
        cm.options.keyMap = (next.call ? next.call(null, cm) : next);
        keyMapChanged(cm);
      }
    }, 50);

    var name = keyName(e, true), handled = false;
    if (!name) return false;
    var keymaps = allKeyMaps(cm);

    if (e.shiftKey) {
      // First try to resolve full name (including 'Shift-'). Failing
      // that, see if there is a cursor-motion command (starting with
      // 'go') bound to the keyname without 'Shift-'.
      handled = lookupKey("Shift-" + name, keymaps, function(b) {return doHandleBinding(cm, b, true);})
             || lookupKey(name, keymaps, function(b) {
                  if (typeof b == "string" ? /^go[A-Z]/.test(b) : b.motion)
                    return doHandleBinding(cm, b);
                });
    } else {
      handled = lookupKey(name, keymaps, function(b) { return doHandleBinding(cm, b); });
    }

    if (handled) {
      e_preventDefault(e);
      restartBlink(cm);
      if (ie_lt9) { e.oldKeyCode = e.keyCode; e.keyCode = 0; }
      signalLater(cm, "keyHandled", cm, name, e);
    }
    return handled;
  }

  function handleCharBinding(cm, e, ch) {
    var handled = lookupKey("'" + ch + "'", allKeyMaps(cm),
                            function(b) { return doHandleBinding(cm, b, true); });
    if (handled) {
      e_preventDefault(e);
      restartBlink(cm);
      signalLater(cm, "keyHandled", cm, "'" + ch + "'", e);
    }
    return handled;
  }

  var lastStoppedKey = null;
  function onKeyDown(e) {
    var cm = this;
    if (!cm.state.focused) onFocus(cm);
    if (ie && e.keyCode == 27) { e.returnValue = false; }
    if (signalDOMEvent(cm, e) || cm.options.onKeyEvent && cm.options.onKeyEvent(cm, addStop(e))) return;
    var code = e.keyCode;
    // IE does strange things with escape.
    cm.doc.sel.shift = code == 16 || e.shiftKey;
    // First give onKeyEvent option a chance to handle this.
    var handled = handleKeyBinding(cm, e);
    if (opera) {
      lastStoppedKey = handled ? code : null;
      // Opera has no cut event... we try to at least catch the key combo
      if (!handled && code == 88 && !hasCopyEvent && (mac ? e.metaKey : e.ctrlKey))
        cm.replaceSelection("");
    }
  }

  function onKeyPress(e) {
    var cm = this;
    if (signalDOMEvent(cm, e) || cm.options.onKeyEvent && cm.options.onKeyEvent(cm, addStop(e))) return;
    var keyCode = e.keyCode, charCode = e.charCode;
    if (opera && keyCode == lastStoppedKey) {lastStoppedKey = null; e_preventDefault(e); return;}
    if (((opera && (!e.which || e.which < 10)) || khtml) && handleKeyBinding(cm, e)) return;
    var ch = String.fromCharCode(charCode == null ? keyCode : charCode);
    if (this.options.electricChars && this.doc.mode.electricChars &&
        this.options.smartIndent && !isReadOnly(this) &&
        this.doc.mode.electricChars.indexOf(ch) > -1)
      setTimeout(operation(cm, function() {indentLine(cm, cm.doc.sel.to.line, "smart");}), 75);
    if (handleCharBinding(cm, e, ch)) return;
    if (ie && !ie_lt9) cm.display.inputHasSelection = null;
    fastPoll(cm);
  }

  function onFocus(cm) {
    if (cm.options.readOnly == "nocursor") return;
    if (!cm.state.focused) {
      signal(cm, "focus", cm);
      cm.state.focused = true;
      if (cm.display.wrapper.className.search(/\bCodeMirror-focused\b/) == -1)
        cm.display.wrapper.className += " CodeMirror-focused";
      resetInput(cm, true);
    }
    slowPoll(cm);
    restartBlink(cm);
  }
  function onBlur(cm) {
    if (cm.state.focused) {
      signal(cm, "blur", cm);
      cm.state.focused = false;
      cm.display.wrapper.className = cm.display.wrapper.className.replace(" CodeMirror-focused", "");
    }
    clearInterval(cm.display.blinker);
    setTimeout(function() {if (!cm.state.focused) cm.doc.sel.shift = false;}, 150);
  }

  var detectingSelectAll;
  function onContextMenu(cm, e) {
    if (signalDOMEvent(cm, e, "contextmenu")) return;
    var display = cm.display, sel = cm.doc.sel;
    if (eventInWidget(display, e)) return;

    var pos = posFromMouse(cm, e), scrollPos = display.scroller.scrollTop;
    if (!pos || opera) return; // Opera is difficult.
    if (posEq(sel.from, sel.to) || posLess(pos, sel.from) || !posLess(pos, sel.to))
      operation(cm, setSelection)(cm.doc, pos, pos);

    var oldCSS = display.input.style.cssText;
    display.inputDiv.style.position = "absolute";
    display.input.style.cssText = "position: fixed; width: 30px; height: 30px; top: " + (e.clientY - 5) +
      "px; left: " + (e.clientX - 5) + "px; z-index: 1000; background: white; outline: none;" +
      "border-width: 0; outline: none; overflow: hidden; opacity: .05; -ms-opacity: .05; filter: alpha(opacity=5);";
    focusInput(cm);
    resetInput(cm, true);
    // Adds "Select all" to context menu in FF
    if (posEq(sel.from, sel.to)) display.input.value = display.prevInput = " ";

    function prepareSelectAllHack() {
      if (display.input.selectionStart != null) {
        var extval = display.input.value = " " + (posEq(sel.from, sel.to) ? "" : display.input.value);
        display.prevInput = " ";
        display.input.selectionStart = 1; display.input.selectionEnd = extval.length;
      }
    }
    function rehide() {
      display.inputDiv.style.position = "relative";
      display.input.style.cssText = oldCSS;
      if (ie_lt9) display.scrollbarV.scrollTop = display.scroller.scrollTop = scrollPos;
      slowPoll(cm);

      // Try to detect the user choosing select-all
      if (display.input.selectionStart != null) {
        if (!ie || ie_lt9) prepareSelectAllHack();
        clearTimeout(detectingSelectAll);
        var i = 0, poll = function(){
          if (display.prevInput == " " && display.input.selectionStart == 0)
            operation(cm, commands.selectAll)(cm);
          else if (i++ < 10) detectingSelectAll = setTimeout(poll, 500);
          else resetInput(cm);
        };
        detectingSelectAll = setTimeout(poll, 200);
      }
    }

    if (ie && !ie_lt9) prepareSelectAllHack();
    if (captureMiddleClick) {
      e_stop(e);
      var mouseup = function() {
        off(window, "mouseup", mouseup);
        setTimeout(rehide, 20);
      };
      on(window, "mouseup", mouseup);
    } else {
      setTimeout(rehide, 50);
    }
  }

  // UPDATING

  var changeEnd = CodeMirror.changeEnd = function(change) {
    if (!change.text) return change.to;
    return Pos(change.from.line + change.text.length - 1,
               lst(change.text).length + (change.text.length == 1 ? change.from.ch : 0));
  };

  // Make sure a position will be valid after the given change.
  function clipPostChange(doc, change, pos) {
    if (!posLess(change.from, pos)) return clipPos(doc, pos);
    var diff = (change.text.length - 1) - (change.to.line - change.from.line);
    if (pos.line > change.to.line + diff) {
      var preLine = pos.line - diff, lastLine = doc.first + doc.size - 1;
      if (preLine > lastLine) return Pos(lastLine, getLine(doc, lastLine).text.length);
      return clipToLen(pos, getLine(doc, preLine).text.length);
    }
    if (pos.line == change.to.line + diff)
      return clipToLen(pos, lst(change.text).length + (change.text.length == 1 ? change.from.ch : 0) +
                       getLine(doc, change.to.line).text.length - change.to.ch);
    var inside = pos.line - change.from.line;
    return clipToLen(pos, change.text[inside].length + (inside ? 0 : change.from.ch));
  }

  // Hint can be null|"end"|"start"|"around"|{anchor,head}
  function computeSelAfterChange(doc, change, hint) {
    if (hint && typeof hint == "object") // Assumed to be {anchor, head} object
      return {anchor: clipPostChange(doc, change, hint.anchor),
              head: clipPostChange(doc, change, hint.head)};

    if (hint == "start") return {anchor: change.from, head: change.from};

    var end = changeEnd(change);
    if (hint == "around") return {anchor: change.from, head: end};
    if (hint == "end") return {anchor: end, head: end};

    // hint is null, leave the selection alone as much as possible
    var adjustPos = function(pos) {
      if (posLess(pos, change.from)) return pos;
      if (!posLess(change.to, pos)) return end;

      var line = pos.line + change.text.length - (change.to.line - change.from.line) - 1, ch = pos.ch;
      if (pos.line == change.to.line) ch += end.ch - change.to.ch;
      return Pos(line, ch);
    };
    return {anchor: adjustPos(doc.sel.anchor), head: adjustPos(doc.sel.head)};
  }

  function filterChange(doc, change, update) {
    var obj = {
      canceled: false,
      from: change.from,
      to: change.to,
      text: change.text,
      origin: change.origin,
      cancel: function() { this.canceled = true; }
    };
    if (update) obj.update = function(from, to, text, origin) {
      if (from) this.from = clipPos(doc, from);
      if (to) this.to = clipPos(doc, to);
      if (text) this.text = text;
      if (origin !== undefined) this.origin = origin;
    };
    signal(doc, "beforeChange", doc, obj);
    if (doc.cm) signal(doc.cm, "beforeChange", doc.cm, obj);

    if (obj.canceled) return null;
    return {from: obj.from, to: obj.to, text: obj.text, origin: obj.origin};
  }

  // Replace the range from from to to by the strings in replacement.
  // change is a {from, to, text [, origin]} object
  function makeChange(doc, change, selUpdate, ignoreReadOnly) {
    if (doc.cm) {
      if (!doc.cm.curOp) return operation(doc.cm, makeChange)(doc, change, selUpdate, ignoreReadOnly);
      if (doc.cm.state.suppressEdits) return;
    }

    if (hasHandler(doc, "beforeChange") || doc.cm && hasHandler(doc.cm, "beforeChange")) {
      change = filterChange(doc, change, true);
      if (!change) return;
    }

    // Possibly split or suppress the update based on the presence
    // of read-only spans in its range.
    var split = sawReadOnlySpans && !ignoreReadOnly && removeReadOnlyRanges(doc, change.from, change.to);
    if (split) {
      for (var i = split.length - 1; i >= 1; --i)
        makeChangeNoReadonly(doc, {from: split[i].from, to: split[i].to, text: [""]});
      if (split.length)
        makeChangeNoReadonly(doc, {from: split[0].from, to: split[0].to, text: change.text}, selUpdate);
    } else {
      makeChangeNoReadonly(doc, change, selUpdate);
    }
  }

  function makeChangeNoReadonly(doc, change, selUpdate) {
    var selAfter = computeSelAfterChange(doc, change, selUpdate);
    addToHistory(doc, change, selAfter, doc.cm ? doc.cm.curOp.id : NaN);

    makeChangeSingleDoc(doc, change, selAfter, stretchSpansOverChange(doc, change));
    var rebased = [];

    linkedDocs(doc, function(doc, sharedHist) {
      if (!sharedHist && indexOf(rebased, doc.history) == -1) {
        rebaseHist(doc.history, change);
        rebased.push(doc.history);
      }
      makeChangeSingleDoc(doc, change, null, stretchSpansOverChange(doc, change));
    });
  }

  function makeChangeFromHistory(doc, type) {
    if (doc.cm && doc.cm.state.suppressEdits) return;

    var hist = doc.history;
    var event = (type == "undo" ? hist.done : hist.undone).pop();
    if (!event) return;

    var anti = {changes: [], anchorBefore: event.anchorAfter, headBefore: event.headAfter,
                anchorAfter: event.anchorBefore, headAfter: event.headBefore,
                generation: hist.generation};
    (type == "undo" ? hist.undone : hist.done).push(anti);
    hist.generation = event.generation || ++hist.maxGeneration;

    var filter = hasHandler(doc, "beforeChange") || doc.cm && hasHandler(doc.cm, "beforeChange");

    for (var i = event.changes.length - 1; i >= 0; --i) {
      var change = event.changes[i];
      change.origin = type;
      if (filter && !filterChange(doc, change, false)) {
        (type == "undo" ? hist.done : hist.undone).length = 0;
        return;
      }

      anti.changes.push(historyChangeFromChange(doc, change));

      var after = i ? computeSelAfterChange(doc, change, null)
                    : {anchor: event.anchorBefore, head: event.headBefore};
      makeChangeSingleDoc(doc, change, after, mergeOldSpans(doc, change));
      var rebased = [];

      linkedDocs(doc, function(doc, sharedHist) {
        if (!sharedHist && indexOf(rebased, doc.history) == -1) {
          rebaseHist(doc.history, change);
          rebased.push(doc.history);
        }
        makeChangeSingleDoc(doc, change, null, mergeOldSpans(doc, change));
      });
    }
  }

  function shiftDoc(doc, distance) {
    function shiftPos(pos) {return Pos(pos.line + distance, pos.ch);}
    doc.first += distance;
    if (doc.cm) regChange(doc.cm, doc.first, doc.first, distance);
    doc.sel.head = shiftPos(doc.sel.head); doc.sel.anchor = shiftPos(doc.sel.anchor);
    doc.sel.from = shiftPos(doc.sel.from); doc.sel.to = shiftPos(doc.sel.to);
  }

  function makeChangeSingleDoc(doc, change, selAfter, spans) {
    if (doc.cm && !doc.cm.curOp)
      return operation(doc.cm, makeChangeSingleDoc)(doc, change, selAfter, spans);

    if (change.to.line < doc.first) {
      shiftDoc(doc, change.text.length - 1 - (change.to.line - change.from.line));
      return;
    }
    if (change.from.line > doc.lastLine()) return;

    // Clip the change to the size of this doc
    if (change.from.line < doc.first) {
      var shift = change.text.length - 1 - (doc.first - change.from.line);
      shiftDoc(doc, shift);
      change = {from: Pos(doc.first, 0), to: Pos(change.to.line + shift, change.to.ch),
                text: [lst(change.text)], origin: change.origin};
    }
    var last = doc.lastLine();
    if (change.to.line > last) {
      change = {from: change.from, to: Pos(last, getLine(doc, last).text.length),
                text: [change.text[0]], origin: change.origin};
    }

    change.removed = getBetween(doc, change.from, change.to);

    if (!selAfter) selAfter = computeSelAfterChange(doc, change, null);
    if (doc.cm) makeChangeSingleDocInEditor(doc.cm, change, spans, selAfter);
    else updateDoc(doc, change, spans, selAfter);
  }

  function makeChangeSingleDocInEditor(cm, change, spans, selAfter) {
    var doc = cm.doc, display = cm.display, from = change.from, to = change.to;

    var recomputeMaxLength = false, checkWidthStart = from.line;
    if (!cm.options.lineWrapping) {
      checkWidthStart = lineNo(visualLine(doc, getLine(doc, from.line)));
      doc.iter(checkWidthStart, to.line + 1, function(line) {
        if (line == display.maxLine) {
          recomputeMaxLength = true;
          return true;
        }
      });
    }

    if (!posLess(doc.sel.head, change.from) && !posLess(change.to, doc.sel.head))
      cm.curOp.cursorActivity = true;

    updateDoc(doc, change, spans, selAfter, estimateHeight(cm));

    if (!cm.options.lineWrapping) {
      doc.iter(checkWidthStart, from.line + change.text.length, function(line) {
        var len = lineLength(doc, line);
        if (len > display.maxLineLength) {
          display.maxLine = line;
          display.maxLineLength = len;
          display.maxLineChanged = true;
          recomputeMaxLength = false;
        }
      });
      if (recomputeMaxLength) cm.curOp.updateMaxLine = true;
    }

    // Adjust frontier, schedule worker
    doc.frontier = Math.min(doc.frontier, from.line);
    startWorker(cm, 400);

    var lendiff = change.text.length - (to.line - from.line) - 1;
    // Remember that these lines changed, for updating the display
    regChange(cm, from.line, to.line + 1, lendiff);

    if (hasHandler(cm, "change")) {
      var changeObj = {from: from, to: to,
                       text: change.text,
                       removed: change.removed,
                       origin: change.origin};
      if (cm.curOp.textChanged) {
        for (var cur = cm.curOp.textChanged; cur.next; cur = cur.next) {}
        cur.next = changeObj;
      } else cm.curOp.textChanged = changeObj;
    }
  }

  function replaceRange(doc, code, from, to, origin) {
    if (!to) to = from;
    if (posLess(to, from)) { var tmp = to; to = from; from = tmp; }
    if (typeof code == "string") code = splitLines(code);
    makeChange(doc, {from: from, to: to, text: code, origin: origin}, null);
  }

  // POSITION OBJECT

  function Pos(line, ch) {
    if (!(this instanceof Pos)) return new Pos(line, ch);
    this.line = line; this.ch = ch;
  }
  CodeMirror.Pos = Pos;

  function posEq(a, b) {return a.line == b.line && a.ch == b.ch;}
  function posLess(a, b) {return a.line < b.line || (a.line == b.line && a.ch < b.ch);}
  function copyPos(x) {return Pos(x.line, x.ch);}

  // SELECTION

  function clipLine(doc, n) {return Math.max(doc.first, Math.min(n, doc.first + doc.size - 1));}
  function clipPos(doc, pos) {
    if (pos.line < doc.first) return Pos(doc.first, 0);
    var last = doc.first + doc.size - 1;
    if (pos.line > last) return Pos(last, getLine(doc, last).text.length);
    return clipToLen(pos, getLine(doc, pos.line).text.length);
  }
  function clipToLen(pos, linelen) {
    var ch = pos.ch;
    if (ch == null || ch > linelen) return Pos(pos.line, linelen);
    else if (ch < 0) return Pos(pos.line, 0);
    else return pos;
  }
  function isLine(doc, l) {return l >= doc.first && l < doc.first + doc.size;}

  // If shift is held, this will move the selection anchor. Otherwise,
  // it'll set the whole selection.
  function extendSelection(doc, pos, other, bias) {
    if (doc.sel.shift || doc.sel.extend) {
      var anchor = doc.sel.anchor;
      if (other) {
        var posBefore = posLess(pos, anchor);
        if (posBefore != posLess(other, anchor)) {
          anchor = pos;
          pos = other;
        } else if (posBefore != posLess(pos, other)) {
          pos = other;
        }
      }
      setSelection(doc, anchor, pos, bias);
    } else {
      setSelection(doc, pos, other || pos, bias);
    }
    if (doc.cm) doc.cm.curOp.userSelChange = true;
  }

  function filterSelectionChange(doc, anchor, head) {
    var obj = {anchor: anchor, head: head};
    signal(doc, "beforeSelectionChange", doc, obj);
    if (doc.cm) signal(doc.cm, "beforeSelectionChange", doc.cm, obj);
    obj.anchor = clipPos(doc, obj.anchor); obj.head = clipPos(doc, obj.head);
    return obj;
  }

  // Update the selection. Last two args are only used by
  // updateDoc, since they have to be expressed in the line
  // numbers before the update.
  function setSelection(doc, anchor, head, bias, checkAtomic) {
    if (!checkAtomic && hasHandler(doc, "beforeSelectionChange") || doc.cm && hasHandler(doc.cm, "beforeSelectionChange")) {
      var filtered = filterSelectionChange(doc, anchor, head);
      head = filtered.head;
      anchor = filtered.anchor;
    }

    var sel = doc.sel;
    sel.goalColumn = null;
    // Skip over atomic spans.
    if (checkAtomic || !posEq(anchor, sel.anchor))
      anchor = skipAtomic(doc, anchor, bias, checkAtomic != "push");
    if (checkAtomic || !posEq(head, sel.head))
      head = skipAtomic(doc, head, bias, checkAtomic != "push");

    if (posEq(sel.anchor, anchor) && posEq(sel.head, head)) return;

    sel.anchor = anchor; sel.head = head;
    var inv = posLess(head, anchor);
    sel.from = inv ? head : anchor;
    sel.to = inv ? anchor : head;

    if (doc.cm)
      doc.cm.curOp.updateInput = doc.cm.curOp.selectionChanged =
        doc.cm.curOp.cursorActivity = true;

    signalLater(doc, "cursorActivity", doc);
  }

  function reCheckSelection(cm) {
    setSelection(cm.doc, cm.doc.sel.from, cm.doc.sel.to, null, "push");
  }

  function skipAtomic(doc, pos, bias, mayClear) {
    var flipped = false, curPos = pos;
    var dir = bias || 1;
    doc.cantEdit = false;
    search: for (;;) {
      var line = getLine(doc, curPos.line);
      if (line.markedSpans) {
        for (var i = 0; i < line.markedSpans.length; ++i) {
          var sp = line.markedSpans[i], m = sp.marker;
          if ((sp.from == null || (m.inclusiveLeft ? sp.from <= curPos.ch : sp.from < curPos.ch)) &&
              (sp.to == null || (m.inclusiveRight ? sp.to >= curPos.ch : sp.to > curPos.ch))) {
            if (mayClear) {
              signal(m, "beforeCursorEnter");
              if (m.explicitlyCleared) {
                if (!line.markedSpans) break;
                else {--i; continue;}
              }
            }
            if (!m.atomic) continue;
            var newPos = m.find()[dir < 0 ? "from" : "to"];
            if (posEq(newPos, curPos)) {
              newPos.ch += dir;
              if (newPos.ch < 0) {
                if (newPos.line > doc.first) newPos = clipPos(doc, Pos(newPos.line - 1));
                else newPos = null;
              } else if (newPos.ch > line.text.length) {
                if (newPos.line < doc.first + doc.size - 1) newPos = Pos(newPos.line + 1, 0);
                else newPos = null;
              }
              if (!newPos) {
                if (flipped) {
                  // Driven in a corner -- no valid cursor position found at all
                  // -- try again *with* clearing, if we didn't already
                  if (!mayClear) return skipAtomic(doc, pos, bias, true);
                  // Otherwise, turn off editing until further notice, and return the start of the doc
                  doc.cantEdit = true;
                  return Pos(doc.first, 0);
                }
                flipped = true; newPos = pos; dir = -dir;
              }
            }
            curPos = newPos;
            continue search;
          }
        }
      }
      return curPos;
    }
  }

  // SCROLLING

  function scrollCursorIntoView(cm) {
    var coords = scrollPosIntoView(cm, cm.doc.sel.head, cm.options.cursorScrollMargin);
    if (!cm.state.focused) return;
    var display = cm.display, box = getRect(display.sizer), doScroll = null;
    if (coords.top + box.top < 0) doScroll = true;
    else if (coords.bottom + box.top > (window.innerHeight || document.documentElement.clientHeight)) doScroll = false;
    if (doScroll != null && !phantom) {
      var hidden = display.cursor.style.display == "none";
      if (hidden) {
        display.cursor.style.display = "";
        display.cursor.style.left = coords.left + "px";
        display.cursor.style.top = (coords.top - display.viewOffset) + "px";
      }
      display.cursor.scrollIntoView(doScroll);
      if (hidden) display.cursor.style.display = "none";
    }
  }

  function scrollPosIntoView(cm, pos, margin) {
    if (margin == null) margin = 0;
    for (;;) {
      var changed = false, coords = cursorCoords(cm, pos);
      var scrollPos = calculateScrollPos(cm, coords.left, coords.top - margin, coords.left, coords.bottom + margin);
      var startTop = cm.doc.scrollTop, startLeft = cm.doc.scrollLeft;
      if (scrollPos.scrollTop != null) {
        setScrollTop(cm, scrollPos.scrollTop);
        if (Math.abs(cm.doc.scrollTop - startTop) > 1) changed = true;
      }
      if (scrollPos.scrollLeft != null) {
        setScrollLeft(cm, scrollPos.scrollLeft);
        if (Math.abs(cm.doc.scrollLeft - startLeft) > 1) changed = true;
      }
      if (!changed) return coords;
    }
  }

  function scrollIntoView(cm, x1, y1, x2, y2) {
    var scrollPos = calculateScrollPos(cm, x1, y1, x2, y2);
    if (scrollPos.scrollTop != null) setScrollTop(cm, scrollPos.scrollTop);
    if (scrollPos.scrollLeft != null) setScrollLeft(cm, scrollPos.scrollLeft);
  }

  function calculateScrollPos(cm, x1, y1, x2, y2) {
    var display = cm.display, snapMargin = textHeight(cm.display);
    if (y1 < 0) y1 = 0;
    var screen = display.scroller.clientHeight - scrollerCutOff, screentop = display.scroller.scrollTop, result = {};
    var docBottom = cm.doc.height + paddingVert(display);
    var atTop = y1 < snapMargin, atBottom = y2 > docBottom - snapMargin;
    if (y1 < screentop) {
      result.scrollTop = atTop ? 0 : y1;
    } else if (y2 > screentop + screen) {
      var newTop = Math.min(y1, (atBottom ? docBottom : y2) - screen);
      if (newTop != screentop) result.scrollTop = newTop;
    }

    var screenw = display.scroller.clientWidth - scrollerCutOff, screenleft = display.scroller.scrollLeft;
    x1 += display.gutters.offsetWidth; x2 += display.gutters.offsetWidth;
    var gutterw = display.gutters.offsetWidth;
    var atLeft = x1 < gutterw + 10;
    if (x1 < screenleft + gutterw || atLeft) {
      if (atLeft) x1 = 0;
      result.scrollLeft = Math.max(0, x1 - 10 - gutterw);
    } else if (x2 > screenw + screenleft - 3) {
      result.scrollLeft = x2 + 10 - screenw;
    }
    return result;
  }

  function updateScrollPos(cm, left, top) {
    cm.curOp.updateScrollPos = {scrollLeft: left == null ? cm.doc.scrollLeft : left,
                                scrollTop: top == null ? cm.doc.scrollTop : top};
  }

  function addToScrollPos(cm, left, top) {
    var pos = cm.curOp.updateScrollPos || (cm.curOp.updateScrollPos = {scrollLeft: cm.doc.scrollLeft, scrollTop: cm.doc.scrollTop});
    var scroll = cm.display.scroller;
    pos.scrollTop = Math.max(0, Math.min(scroll.scrollHeight - scroll.clientHeight, pos.scrollTop + top));
    pos.scrollLeft = Math.max(0, Math.min(scroll.scrollWidth - scroll.clientWidth, pos.scrollLeft + left));
  }

  // API UTILITIES

  function indentLine(cm, n, how, aggressive) {
    var doc = cm.doc;
    if (how == null) how = "add";
    if (how == "smart") {
      if (!cm.doc.mode.indent) how = "prev";
      else var state = getStateBefore(cm, n);
    }

    var tabSize = cm.options.tabSize;
    var line = getLine(doc, n), curSpace = countColumn(line.text, null, tabSize);
    var curSpaceString = line.text.match(/^\s*/)[0], indentation;
    if (how == "smart") {
      indentation = cm.doc.mode.indent(state, line.text.slice(curSpaceString.length), line.text);
      if (indentation == Pass) {
        if (!aggressive) return;
        how = "prev";
      }
    }
    if (how == "prev") {
      if (n > doc.first) indentation = countColumn(getLine(doc, n-1).text, null, tabSize);
      else indentation = 0;
    } else if (how == "add") {
      indentation = curSpace + cm.options.indentUnit;
    } else if (how == "subtract") {
      indentation = curSpace - cm.options.indentUnit;
    } else if (typeof how == "number") {
      indentation = curSpace + how;
    }
    indentation = Math.max(0, indentation);

    var indentString = "", pos = 0;
    if (cm.options.indentWithTabs)
      for (var i = Math.floor(indentation / tabSize); i; --i) {pos += tabSize; indentString += "\t";}
    if (pos < indentation) indentString += spaceStr(indentation - pos);

    if (indentString != curSpaceString)
      replaceRange(cm.doc, indentString, Pos(n, 0), Pos(n, curSpaceString.length), "+input");
    line.stateAfter = null;
  }

  function changeLine(cm, handle, op) {
    var no = handle, line = handle, doc = cm.doc;
    if (typeof handle == "number") line = getLine(doc, clipLine(doc, handle));
    else no = lineNo(handle);
    if (no == null) return null;
    if (op(line, no)) regChange(cm, no, no + 1);
    else return null;
    return line;
  }

  function findPosH(doc, pos, dir, unit, visually) {
    var line = pos.line, ch = pos.ch, origDir = dir;
    var lineObj = getLine(doc, line);
    var possible = true;
    function findNextLine() {
      var l = line + dir;
      if (l < doc.first || l >= doc.first + doc.size) return (possible = false);
      line = l;
      return lineObj = getLine(doc, l);
    }
    function moveOnce(boundToLine) {
      var next = (visually ? moveVisually : moveLogically)(lineObj, ch, dir, true);
      if (next == null) {
        if (!boundToLine && findNextLine()) {
          if (visually) ch = (dir < 0 ? lineRight : lineLeft)(lineObj);
          else ch = dir < 0 ? lineObj.text.length : 0;
        } else return (possible = false);
      } else ch = next;
      return true;
    }

    if (unit == "char") moveOnce();
    else if (unit == "column") moveOnce(true);
    else if (unit == "word" || unit == "group") {
      var sawType = null, group = unit == "group";
      for (var first = true;; first = false) {
        if (dir < 0 && !moveOnce(!first)) break;
        var cur = lineObj.text.charAt(ch) || "\n";
        var type = isWordChar(cur) ? "w"
          : !group ? null
          : /\s/.test(cur) ? null
          : "p";
        if (sawType && sawType != type) {
          if (dir < 0) {dir = 1; moveOnce();}
          break;
        }
        if (type) sawType = type;
        if (dir > 0 && !moveOnce(!first)) break;
      }
    }
    var result = skipAtomic(doc, Pos(line, ch), origDir, true);
    if (!possible) result.hitSide = true;
    return result;
  }

  function findPosV(cm, pos, dir, unit) {
    var doc = cm.doc, x = pos.left, y;
    if (unit == "page") {
      var pageSize = Math.min(cm.display.wrapper.clientHeight, window.innerHeight || document.documentElement.clientHeight);
      y = pos.top + dir * (pageSize - (dir < 0 ? 1.5 : .5) * textHeight(cm.display));
    } else if (unit == "line") {
      y = dir > 0 ? pos.bottom + 3 : pos.top - 3;
    }
    for (;;) {
      var target = coordsChar(cm, x, y);
      if (!target.outside) break;
      if (dir < 0 ? y <= 0 : y >= doc.height) { target.hitSide = true; break; }
      y += dir * 5;
    }
    return target;
  }

  function findWordAt(line, pos) {
    var start = pos.ch, end = pos.ch;
    if (line) {
      if ((pos.xRel < 0 || end == line.length) && start) --start; else ++end;
      var startChar = line.charAt(start);
      var check = isWordChar(startChar) ? isWordChar
        : /\s/.test(startChar) ? function(ch) {return /\s/.test(ch);}
        : function(ch) {return !/\s/.test(ch) && !isWordChar(ch);};
      while (start > 0 && check(line.charAt(start - 1))) --start;
      while (end < line.length && check(line.charAt(end))) ++end;
    }
    return {from: Pos(pos.line, start), to: Pos(pos.line, end)};
  }

  function selectLine(cm, line) {
    extendSelection(cm.doc, Pos(line, 0), clipPos(cm.doc, Pos(line + 1, 0)));
  }

  // PROTOTYPE

  // The publicly visible API. Note that operation(null, f) means
  // 'wrap f in an operation, performed on its `this` parameter'

  CodeMirror.prototype = {
    constructor: CodeMirror,
    focus: function(){window.focus(); focusInput(this); onFocus(this); fastPoll(this);},

    setOption: function(option, value) {
      var options = this.options, old = options[option];
      if (options[option] == value && option != "mode") return;
      options[option] = value;
      if (optionHandlers.hasOwnProperty(option))
        operation(this, optionHandlers[option])(this, value, old);
    },

    getOption: function(option) {return this.options[option];},
    getDoc: function() {return this.doc;},

    addKeyMap: function(map, bottom) {
      this.state.keyMaps[bottom ? "push" : "unshift"](map);
    },
    removeKeyMap: function(map) {
      var maps = this.state.keyMaps;
      for (var i = 0; i < maps.length; ++i)
        if (maps[i] == map || (typeof maps[i] != "string" && maps[i].name == map)) {
          maps.splice(i, 1);
          return true;
        }
    },

    addOverlay: operation(null, function(spec, options) {
      var mode = spec.token ? spec : CodeMirror.getMode(this.options, spec);
      if (mode.startState) throw new Error("Overlays may not be stateful.");
      this.state.overlays.push({mode: mode, modeSpec: spec, opaque: options && options.opaque});
      this.state.modeGen++;
      regChange(this);
    }),
    removeOverlay: operation(null, function(spec) {
      var overlays = this.state.overlays;
      for (var i = 0; i < overlays.length; ++i) {
        var cur = overlays[i].modeSpec;
        if (cur == spec || typeof spec == "string" && cur.name == spec) {
          overlays.splice(i, 1);
          this.state.modeGen++;
          regChange(this);
          return;
        }
      }
    }),

    indentLine: operation(null, function(n, dir, aggressive) {
      if (typeof dir != "string" && typeof dir != "number") {
        if (dir == null) dir = this.options.smartIndent ? "smart" : "prev";
        else dir = dir ? "add" : "subtract";
      }
      if (isLine(this.doc, n)) indentLine(this, n, dir, aggressive);
    }),
    indentSelection: operation(null, function(how) {
      var sel = this.doc.sel;
      if (posEq(sel.from, sel.to)) return indentLine(this, sel.from.line, how);
      var e = sel.to.line - (sel.to.ch ? 0 : 1);
      for (var i = sel.from.line; i <= e; ++i) indentLine(this, i, how);
    }),

    // Fetch the parser token for a given character. Useful for hacks
    // that want to inspect the mode state (say, for completion).
    getTokenAt: function(pos, precise) {
      var doc = this.doc;
      pos = clipPos(doc, pos);
      var state = getStateBefore(this, pos.line, precise), mode = this.doc.mode;
      var line = getLine(doc, pos.line);
      var stream = new StringStream(line.text, this.options.tabSize);
      while (stream.pos < pos.ch && !stream.eol()) {
        stream.start = stream.pos;
        var style = mode.token(stream, state);
      }
      return {start: stream.start,
              end: stream.pos,
              string: stream.current(),
              className: style || null, // Deprecated, use 'type' instead
              type: style || null,
              state: state};
    },

    getTokenTypeAt: function(pos) {
      pos = clipPos(this.doc, pos);
      var styles = getLineStyles(this, getLine(this.doc, pos.line));
      var before = 0, after = (styles.length - 1) / 2, ch = pos.ch;
      if (ch == 0) return styles[2];
      for (;;) {
        var mid = (before + after) >> 1;
        if ((mid ? styles[mid * 2 - 1] : 0) >= ch) after = mid;
        else if (styles[mid * 2 + 1] < ch) before = mid + 1;
        else return styles[mid * 2 + 2];
      }
    },

    getModeAt: function(pos) {
      var mode = this.doc.mode;
      if (!mode.innerMode) return mode;
      return CodeMirror.innerMode(mode, this.getTokenAt(pos).state).mode;
    },

    getHelper: function(pos, type) {
      if (!helpers.hasOwnProperty(type)) return;
      var help = helpers[type], mode = this.getModeAt(pos);
      return mode[type] && help[mode[type]] ||
        mode.helperType && help[mode.helperType] ||
        help[mode.name];
    },

    getStateAfter: function(line, precise) {
      var doc = this.doc;
      line = clipLine(doc, line == null ? doc.first + doc.size - 1: line);
      return getStateBefore(this, line + 1, precise);
    },

    cursorCoords: function(start, mode) {
      var pos, sel = this.doc.sel;
      if (start == null) pos = sel.head;
      else if (typeof start == "object") pos = clipPos(this.doc, start);
      else pos = start ? sel.from : sel.to;
      return cursorCoords(this, pos, mode || "page");
    },

    charCoords: function(pos, mode) {
      return charCoords(this, clipPos(this.doc, pos), mode || "page");
    },

    coordsChar: function(coords, mode) {
      coords = fromCoordSystem(this, coords, mode || "page");
      return coordsChar(this, coords.left, coords.top);
    },

    lineAtHeight: function(height, mode) {
      height = fromCoordSystem(this, {top: height, left: 0}, mode || "page").top;
      return lineAtHeight(this.doc, height + this.display.viewOffset);
    },
    heightAtLine: function(line, mode) {
      var end = false, last = this.doc.first + this.doc.size - 1;
      if (line < this.doc.first) line = this.doc.first;
      else if (line > last) { line = last; end = true; }
      var lineObj = getLine(this.doc, line);
      return intoCoordSystem(this, getLine(this.doc, line), {top: 0, left: 0}, mode || "page").top +
        (end ? lineObj.height : 0);
    },

    defaultTextHeight: function() { return textHeight(this.display); },
    defaultCharWidth: function() { return charWidth(this.display); },

    setGutterMarker: operation(null, function(line, gutterID, value) {
      return changeLine(this, line, function(line) {
        var markers = line.gutterMarkers || (line.gutterMarkers = {});
        markers[gutterID] = value;
        if (!value && isEmpty(markers)) line.gutterMarkers = null;
        return true;
      });
    }),

    clearGutter: operation(null, function(gutterID) {
      var cm = this, doc = cm.doc, i = doc.first;
      doc.iter(function(line) {
        if (line.gutterMarkers && line.gutterMarkers[gutterID]) {
          line.gutterMarkers[gutterID] = null;
          regChange(cm, i, i + 1);
          if (isEmpty(line.gutterMarkers)) line.gutterMarkers = null;
        }
        ++i;
      });
    }),

    addLineClass: operation(null, function(handle, where, cls) {
      return changeLine(this, handle, function(line) {
        var prop = where == "text" ? "textClass" : where == "background" ? "bgClass" : "wrapClass";
        if (!line[prop]) line[prop] = cls;
        else if (new RegExp("(?:^|\\s)" + cls + "(?:$|\\s)").test(line[prop])) return false;
        else line[prop] += " " + cls;
        return true;
      });
    }),

    removeLineClass: operation(null, function(handle, where, cls) {
      return changeLine(this, handle, function(line) {
        var prop = where == "text" ? "textClass" : where == "background" ? "bgClass" : "wrapClass";
        var cur = line[prop];
        if (!cur) return false;
        else if (cls == null) line[prop] = null;
        else {
          var found = cur.match(new RegExp("(?:^|\\s+)" + cls + "(?:$|\\s+)"));
          if (!found) return false;
          var end = found.index + found[0].length;
          line[prop] = cur.slice(0, found.index) + (!found.index || end == cur.length ? "" : " ") + cur.slice(end) || null;
        }
        return true;
      });
    }),

    addLineWidget: operation(null, function(handle, node, options) {
      return addLineWidget(this, handle, node, options);
    }),

    removeLineWidget: function(widget) { widget.clear(); },

    lineInfo: function(line) {
      if (typeof line == "number") {
        if (!isLine(this.doc, line)) return null;
        var n = line;
        line = getLine(this.doc, line);
        if (!line) return null;
      } else {
        var n = lineNo(line);
        if (n == null) return null;
      }
      return {line: n, handle: line, text: line.text, gutterMarkers: line.gutterMarkers,
              textClass: line.textClass, bgClass: line.bgClass, wrapClass: line.wrapClass,
              widgets: line.widgets};
    },

    getViewport: function() { return {from: this.display.showingFrom, to: this.display.showingTo};},

    addWidget: function(pos, node, scroll, vert, horiz) {
      var display = this.display;
      pos = cursorCoords(this, clipPos(this.doc, pos));
      var top = pos.bottom, left = pos.left;
      node.style.position = "absolute";
      display.sizer.appendChild(node);
      if (vert == "over") {
        top = pos.top;
      } else if (vert == "above" || vert == "near") {
        var vspace = Math.max(display.wrapper.clientHeight, this.doc.height),
        hspace = Math.max(display.sizer.clientWidth, display.lineSpace.clientWidth);
        // Default to positioning above (if specified and possible); otherwise default to positioning below
        if ((vert == 'above' || pos.bottom + node.offsetHeight > vspace) && pos.top > node.offsetHeight)
          top = pos.top - node.offsetHeight;
        else if (pos.bottom + node.offsetHeight <= vspace)
          top = pos.bottom;
        if (left + node.offsetWidth > hspace)
          left = hspace - node.offsetWidth;
      }
      node.style.top = top + "px";
      node.style.left = node.style.right = "";
      if (horiz == "right") {
        left = display.sizer.clientWidth - node.offsetWidth;
        node.style.right = "0px";
      } else {
        if (horiz == "left") left = 0;
        else if (horiz == "middle") left = (display.sizer.clientWidth - node.offsetWidth) / 2;
        node.style.left = left + "px";
      }
      if (scroll)
        scrollIntoView(this, left, top, left + node.offsetWidth, top + node.offsetHeight);
    },

    triggerOnKeyDown: operation(null, onKeyDown),

    execCommand: function(cmd) {return commands[cmd](this);},

    findPosH: function(from, amount, unit, visually) {
      var dir = 1;
      if (amount < 0) { dir = -1; amount = -amount; }
      for (var i = 0, cur = clipPos(this.doc, from); i < amount; ++i) {
        cur = findPosH(this.doc, cur, dir, unit, visually);
        if (cur.hitSide) break;
      }
      return cur;
    },

    moveH: operation(null, function(dir, unit) {
      var sel = this.doc.sel, pos;
      if (sel.shift || sel.extend || posEq(sel.from, sel.to))
        pos = findPosH(this.doc, sel.head, dir, unit, this.options.rtlMoveVisually);
      else
        pos = dir < 0 ? sel.from : sel.to;
      extendSelection(this.doc, pos, pos, dir);
    }),

    deleteH: operation(null, function(dir, unit) {
      var sel = this.doc.sel;
      if (!posEq(sel.from, sel.to)) replaceRange(this.doc, "", sel.from, sel.to, "+delete");
      else replaceRange(this.doc, "", sel.from, findPosH(this.doc, sel.head, dir, unit, false), "+delete");
      this.curOp.userSelChange = true;
    }),

    findPosV: function(from, amount, unit, goalColumn) {
      var dir = 1, x = goalColumn;
      if (amount < 0) { dir = -1; amount = -amount; }
      for (var i = 0, cur = clipPos(this.doc, from); i < amount; ++i) {
        var coords = cursorCoords(this, cur, "div");
        if (x == null) x = coords.left;
        else coords.left = x;
        cur = findPosV(this, coords, dir, unit);
        if (cur.hitSide) break;
      }
      return cur;
    },

    moveV: operation(null, function(dir, unit) {
      var sel = this.doc.sel;
      var pos = cursorCoords(this, sel.head, "div");
      if (sel.goalColumn != null) pos.left = sel.goalColumn;
      var target = findPosV(this, pos, dir, unit);

      if (unit == "page") addToScrollPos(this, 0, charCoords(this, target, "div").top - pos.top);
      extendSelection(this.doc, target, target, dir);
      sel.goalColumn = pos.left;
    }),

    toggleOverwrite: function(value) {
      if (value != null && value == this.state.overwrite) return;
      if (this.state.overwrite = !this.state.overwrite)
        this.display.cursor.className += " CodeMirror-overwrite";
      else
        this.display.cursor.className = this.display.cursor.className.replace(" CodeMirror-overwrite", "");
    },
    hasFocus: function() { return this.state.focused; },

    scrollTo: operation(null, function(x, y) {
      updateScrollPos(this, x, y);
    }),
    getScrollInfo: function() {
      var scroller = this.display.scroller, co = scrollerCutOff;
      return {left: scroller.scrollLeft, top: scroller.scrollTop,
              height: scroller.scrollHeight - co, width: scroller.scrollWidth - co,
              clientHeight: scroller.clientHeight - co, clientWidth: scroller.clientWidth - co};
    },

    scrollIntoView: operation(null, function(pos, margin) {
      if (typeof pos == "number") pos = Pos(pos, 0);
      if (!margin) margin = 0;
      var coords = pos;

      if (!pos || pos.line != null) {
        this.curOp.scrollToPos = pos ? clipPos(this.doc, pos) : this.doc.sel.head;
        this.curOp.scrollToPosMargin = margin;
        coords = cursorCoords(this, this.curOp.scrollToPos);
      }
      var sPos = calculateScrollPos(this, coords.left, coords.top - margin, coords.right, coords.bottom + margin);
      updateScrollPos(this, sPos.scrollLeft, sPos.scrollTop);
    }),

    setSize: operation(null, function(width, height) {
      function interpret(val) {
        return typeof val == "number" || /^\d+$/.test(String(val)) ? val + "px" : val;
      }
      if (width != null) this.display.wrapper.style.width = interpret(width);
      if (height != null) this.display.wrapper.style.height = interpret(height);
      if (this.options.lineWrapping)
        this.display.measureLineCache.length = this.display.measureLineCachePos = 0;
      this.curOp.forceUpdate = true;
    }),

    operation: function(f){return runInOp(this, f);},

    refresh: operation(null, function() {
      clearCaches(this);
      updateScrollPos(this, this.doc.scrollLeft, this.doc.scrollTop);
      regChange(this);
    }),

    swapDoc: operation(null, function(doc) {
      var old = this.doc;
      old.cm = null;
      attachDoc(this, doc);
      clearCaches(this);
      resetInput(this, true);
      updateScrollPos(this, doc.scrollLeft, doc.scrollTop);
      return old;
    }),

    getInputField: function(){return this.display.input;},
    getWrapperElement: function(){return this.display.wrapper;},
    getScrollerElement: function(){return this.display.scroller;},
    getGutterElement: function(){return this.display.gutters;}
  };
  eventMixin(CodeMirror);

  // OPTION DEFAULTS

  var optionHandlers = CodeMirror.optionHandlers = {};

  // The default configuration options.
  var defaults = CodeMirror.defaults = {};

  function option(name, deflt, handle, notOnInit) {
    CodeMirror.defaults[name] = deflt;
    if (handle) optionHandlers[name] =
      notOnInit ? function(cm, val, old) {if (old != Init) handle(cm, val, old);} : handle;
  }

  var Init = CodeMirror.Init = {toString: function(){return "CodeMirror.Init";}};

  // These two are, on init, called from the constructor because they
  // have to be initialized before the editor can start at all.
  option("value", "", function(cm, val) {
    cm.setValue(val);
  }, true);
  option("mode", null, function(cm, val) {
    cm.doc.modeOption = val;
    loadMode(cm);
  }, true);

  option("indentUnit", 2, loadMode, true);
  option("indentWithTabs", false);
  option("smartIndent", true);
  option("tabSize", 4, function(cm) {
    loadMode(cm);
    clearCaches(cm);
    regChange(cm);
  }, true);
  option("electricChars", true);
  option("rtlMoveVisually", !windows);

  option("theme", "default", function(cm) {
    themeChanged(cm);
    guttersChanged(cm);
  }, true);
  option("keyMap", "default", keyMapChanged);
  option("extraKeys", null);

  option("onKeyEvent", null);
  option("onDragEvent", null);

  option("lineWrapping", false, wrappingChanged, true);
  option("gutters", [], function(cm) {
    setGuttersForLineNumbers(cm.options);
    guttersChanged(cm);
  }, true);
  option("fixedGutter", true, function(cm, val) {
    cm.display.gutters.style.left = val ? compensateForHScroll(cm.display) + "px" : "0";
    cm.refresh();
  }, true);
  option("coverGutterNextToScrollbar", false, updateScrollbars, true);
  option("lineNumbers", false, function(cm) {
    setGuttersForLineNumbers(cm.options);
    guttersChanged(cm);
  }, true);
  option("firstLineNumber", 1, guttersChanged, true);
  option("lineNumberFormatter", function(integer) {return integer;}, guttersChanged, true);
  option("showCursorWhenSelecting", false, updateSelection, true);

  option("readOnly", false, function(cm, val) {
    if (val == "nocursor") {onBlur(cm); cm.display.input.blur();}
    else if (!val) resetInput(cm, true);
  });
  option("dragDrop", true);

  option("cursorBlinkRate", 530);
  option("cursorScrollMargin", 0);
  option("cursorHeight", 1);
  option("workTime", 100);
  option("workDelay", 100);
  option("flattenSpans", true);
  option("pollInterval", 100);
  option("undoDepth", 40, function(cm, val){cm.doc.history.undoDepth = val;});
  option("historyEventDelay", 500);
  option("viewportMargin", 10, function(cm){cm.refresh();}, true);
  option("maxHighlightLength", 10000, function(cm){loadMode(cm); cm.refresh();}, true);
  option("moveInputWithCursor", true, function(cm, val) {
    if (!val) cm.display.inputDiv.style.top = cm.display.inputDiv.style.left = 0;
  });

  option("tabindex", null, function(cm, val) {
    cm.display.input.tabIndex = val || "";
  });
  option("autofocus", null);

  // MODE DEFINITION AND QUERYING

  // Known modes, by name and by MIME
  var modes = CodeMirror.modes = {}, mimeModes = CodeMirror.mimeModes = {};

  CodeMirror.defineMode = function(name, mode) {
    if (!CodeMirror.defaults.mode && name != "null") CodeMirror.defaults.mode = name;
    if (arguments.length > 2) {
      mode.dependencies = [];
      for (var i = 2; i < arguments.length; ++i) mode.dependencies.push(arguments[i]);
    }
    modes[name] = mode;
  };

  CodeMirror.defineMIME = function(mime, spec) {
    mimeModes[mime] = spec;
  };

  CodeMirror.resolveMode = function(spec) {
    if (typeof spec == "string" && mimeModes.hasOwnProperty(spec)) {
      spec = mimeModes[spec];
    } else if (spec && typeof spec.name == "string" && mimeModes.hasOwnProperty(spec.name)) {
      var found = mimeModes[spec.name];
      spec = createObj(found, spec);
      spec.name = found.name;
    } else if (typeof spec == "string" && /^[\w\-]+\/[\w\-]+\+xml$/.test(spec)) {
      return CodeMirror.resolveMode("application/xml");
    }
    if (typeof spec == "string") return {name: spec};
    else return spec || {name: "null"};
  };

  CodeMirror.getMode = function(options, spec) {
    var spec = CodeMirror.resolveMode(spec);
    var mfactory = modes[spec.name];
    if (!mfactory) return CodeMirror.getMode(options, "text/plain");
    var modeObj = mfactory(options, spec);
    if (modeExtensions.hasOwnProperty(spec.name)) {
      var exts = modeExtensions[spec.name];
      for (var prop in exts) {
        if (!exts.hasOwnProperty(prop)) continue;
        if (modeObj.hasOwnProperty(prop)) modeObj["_" + prop] = modeObj[prop];
        modeObj[prop] = exts[prop];
      }
    }
    modeObj.name = spec.name;

    return modeObj;
  };

  CodeMirror.defineMode("null", function() {
    return {token: function(stream) {stream.skipToEnd();}};
  });
  CodeMirror.defineMIME("text/plain", "null");

  var modeExtensions = CodeMirror.modeExtensions = {};
  CodeMirror.extendMode = function(mode, properties) {
    var exts = modeExtensions.hasOwnProperty(mode) ? modeExtensions[mode] : (modeExtensions[mode] = {});
    copyObj(properties, exts);
  };

  // EXTENSIONS

  CodeMirror.defineExtension = function(name, func) {
    CodeMirror.prototype[name] = func;
  };
  CodeMirror.defineDocExtension = function(name, func) {
    Doc.prototype[name] = func;
  };
  CodeMirror.defineOption = option;

  var initHooks = [];
  CodeMirror.defineInitHook = function(f) {initHooks.push(f);};

  var helpers = CodeMirror.helpers = {};
  CodeMirror.registerHelper = function(type, name, value) {
    if (!helpers.hasOwnProperty(type)) helpers[type] = CodeMirror[type] = {};
    helpers[type][name] = value;
  };

  // UTILITIES

  CodeMirror.isWordChar = isWordChar;

  // MODE STATE HANDLING

  // Utility functions for working with state. Exported because modes
  // sometimes need to do this.
  function copyState(mode, state) {
    if (state === true) return state;
    if (mode.copyState) return mode.copyState(state);
    var nstate = {};
    for (var n in state) {
      var val = state[n];
      if (val instanceof Array) val = val.concat([]);
      nstate[n] = val;
    }
    return nstate;
  }
  CodeMirror.copyState = copyState;

  function startState(mode, a1, a2) {
    return mode.startState ? mode.startState(a1, a2) : true;
  }
  CodeMirror.startState = startState;

  CodeMirror.innerMode = function(mode, state) {
    while (mode.innerMode) {
      var info = mode.innerMode(state);
      if (!info || info.mode == mode) break;
      state = info.state;
      mode = info.mode;
    }
    return info || {mode: mode, state: state};
  };

  // STANDARD COMMANDS

  var commands = CodeMirror.commands = {
    selectAll: function(cm) {cm.setSelection(Pos(cm.firstLine(), 0), Pos(cm.lastLine()));},
    killLine: function(cm) {
      var from = cm.getCursor(true), to = cm.getCursor(false), sel = !posEq(from, to);
      if (!sel && cm.getLine(from.line).length == from.ch)
        cm.replaceRange("", from, Pos(from.line + 1, 0), "+delete");
      else cm.replaceRange("", from, sel ? to : Pos(from.line), "+delete");
    },
    deleteLine: function(cm) {
      var l = cm.getCursor().line;
      cm.replaceRange("", Pos(l, 0), Pos(l), "+delete");
    },
    delLineLeft: function(cm) {
      var cur = cm.getCursor();
      cm.replaceRange("", Pos(cur.line, 0), cur, "+delete");
    },
    undo: function(cm) {cm.undo();},
    redo: function(cm) {cm.redo();},
    goDocStart: function(cm) {cm.extendSelection(Pos(cm.firstLine(), 0));},
    goDocEnd: function(cm) {cm.extendSelection(Pos(cm.lastLine()));},
    goLineStart: function(cm) {
      cm.extendSelection(lineStart(cm, cm.getCursor().line));
    },
    goLineStartSmart: function(cm) {
      var cur = cm.getCursor(), start = lineStart(cm, cur.line);
      var line = cm.getLineHandle(start.line);
      var order = getOrder(line);
      if (!order || order[0].level == 0) {
        var firstNonWS = Math.max(0, line.text.search(/\S/));
        var inWS = cur.line == start.line && cur.ch <= firstNonWS && cur.ch;
        cm.extendSelection(Pos(start.line, inWS ? 0 : firstNonWS));
      } else cm.extendSelection(start);
    },
    goLineEnd: function(cm) {
      cm.extendSelection(lineEnd(cm, cm.getCursor().line));
    },
    goLineRight: function(cm) {
      var top = cm.charCoords(cm.getCursor(), "div").top + 5;
      cm.extendSelection(cm.coordsChar({left: cm.display.lineDiv.offsetWidth + 100, top: top}, "div"));
    },
    goLineLeft: function(cm) {
      var top = cm.charCoords(cm.getCursor(), "div").top + 5;
      cm.extendSelection(cm.coordsChar({left: 0, top: top}, "div"));
    },
    goLineUp: function(cm) {cm.moveV(-1, "line");},
    goLineDown: function(cm) {cm.moveV(1, "line");},
    goPageUp: function(cm) {cm.moveV(-1, "page");},
    goPageDown: function(cm) {cm.moveV(1, "page");},
    goCharLeft: function(cm) {cm.moveH(-1, "char");},
    goCharRight: function(cm) {cm.moveH(1, "char");},
    goColumnLeft: function(cm) {cm.moveH(-1, "column");},
    goColumnRight: function(cm) {cm.moveH(1, "column");},
    goWordLeft: function(cm) {cm.moveH(-1, "word");},
    goGroupRight: function(cm) {cm.moveH(1, "group");},
    goGroupLeft: function(cm) {cm.moveH(-1, "group");},
    goWordRight: function(cm) {cm.moveH(1, "word");},
    delCharBefore: function(cm) {cm.deleteH(-1, "char");},
    delCharAfter: function(cm) {cm.deleteH(1, "char");},
    delWordBefore: function(cm) {cm.deleteH(-1, "word");},
    delWordAfter: function(cm) {cm.deleteH(1, "word");},
    delGroupBefore: function(cm) {cm.deleteH(-1, "group");},
    delGroupAfter: function(cm) {cm.deleteH(1, "group");},
    indentAuto: function(cm) {cm.indentSelection("smart");},
    indentMore: function(cm) {cm.indentSelection("add");},
    indentLess: function(cm) {cm.indentSelection("subtract");},
    insertTab: function(cm) {cm.replaceSelection("\t", "end", "+input");},
    defaultTab: function(cm) {
      if (cm.somethingSelected()) cm.indentSelection("add");
      else cm.replaceSelection("\t", "end", "+input");
    },
    transposeChars: function(cm) {
      var cur = cm.getCursor(), line = cm.getLine(cur.line);
      if (cur.ch > 0 && cur.ch < line.length - 1)
        cm.replaceRange(line.charAt(cur.ch) + line.charAt(cur.ch - 1),
                        Pos(cur.line, cur.ch - 1), Pos(cur.line, cur.ch + 1));
    },
    newlineAndIndent: function(cm) {
      operation(cm, function() {
        cm.replaceSelection("\n", "end", "+input");
        cm.indentLine(cm.getCursor().line, null, true);
      })();
    },
    toggleOverwrite: function(cm) {cm.toggleOverwrite();}
  };

  // STANDARD KEYMAPS

  var keyMap = CodeMirror.keyMap = {};
  keyMap.basic = {
    "Left": "goCharLeft", "Right": "goCharRight", "Up": "goLineUp", "Down": "goLineDown",
    "End": "goLineEnd", "Home": "goLineStartSmart", "PageUp": "goPageUp", "PageDown": "goPageDown",
    "Delete": "delCharAfter", "Backspace": "delCharBefore", "Tab": "defaultTab", "Shift-Tab": "indentAuto",
    "Enter": "newlineAndIndent", "Insert": "toggleOverwrite"
  };
  // Note that the save and find-related commands aren't defined by
  // default. Unknown commands are simply ignored.
  keyMap.pcDefault = {
    "Ctrl-A": "selectAll", "Ctrl-D": "deleteLine", "Ctrl-Z": "undo", "Shift-Ctrl-Z": "redo", "Ctrl-Y": "redo",
    "Ctrl-Home": "goDocStart", "Alt-Up": "goDocStart", "Ctrl-End": "goDocEnd", "Ctrl-Down": "goDocEnd",
    "Ctrl-Left": "goGroupLeft", "Ctrl-Right": "goGroupRight", "Alt-Left": "goLineStart", "Alt-Right": "goLineEnd",
    "Ctrl-Backspace": "delGroupBefore", "Ctrl-Delete": "delGroupAfter", "Ctrl-S": "save", "Ctrl-F": "find",
    "Ctrl-G": "findNext", "Shift-Ctrl-G": "findPrev", "Shift-Ctrl-F": "replace", "Shift-Ctrl-R": "replaceAll",
    "Ctrl-[": "indentLess", "Ctrl-]": "indentMore",
    fallthrough: "basic"
  };
  keyMap.macDefault = {
    "Cmd-A": "selectAll", "Cmd-D": "deleteLine", "Cmd-Z": "undo", "Shift-Cmd-Z": "redo", "Cmd-Y": "redo",
    "Cmd-Up": "goDocStart", "Cmd-End": "goDocEnd", "Cmd-Down": "goDocEnd", "Alt-Left": "goGroupLeft",
    "Alt-Right": "goGroupRight", "Cmd-Left": "goLineStart", "Cmd-Right": "goLineEnd", "Alt-Backspace": "delGroupBefore",
    "Ctrl-Alt-Backspace": "delGroupAfter", "Alt-Delete": "delGroupAfter", "Cmd-S": "save", "Cmd-F": "find",
    "Cmd-G": "findNext", "Shift-Cmd-G": "findPrev", "Cmd-Alt-F": "replace", "Shift-Cmd-Alt-F": "replaceAll",
    "Cmd-[": "indentLess", "Cmd-]": "indentMore", "Cmd-Backspace": "delLineLeft",
    fallthrough: ["basic", "emacsy"]
  };
  keyMap["default"] = mac ? keyMap.macDefault : keyMap.pcDefault;
  keyMap.emacsy = {
    "Ctrl-F": "goCharRight", "Ctrl-B": "goCharLeft", "Ctrl-P": "goLineUp", "Ctrl-N": "goLineDown",
    "Alt-F": "goWordRight", "Alt-B": "goWordLeft", "Ctrl-A": "goLineStart", "Ctrl-E": "goLineEnd",
    "Ctrl-V": "goPageDown", "Shift-Ctrl-V": "goPageUp", "Ctrl-D": "delCharAfter", "Ctrl-H": "delCharBefore",
    "Alt-D": "delWordAfter", "Alt-Backspace": "delWordBefore", "Ctrl-K": "killLine", "Ctrl-T": "transposeChars"
  };

  // KEYMAP DISPATCH

  function getKeyMap(val) {
    if (typeof val == "string") return keyMap[val];
    else return val;
  }

  function lookupKey(name, maps, handle) {
    function lookup(map) {
      map = getKeyMap(map);
      var found = map[name];
      if (found === false) return "stop";
      if (found != null && handle(found)) return true;
      if (map.nofallthrough) return "stop";

      var fallthrough = map.fallthrough;
      if (fallthrough == null) return false;
      if (Object.prototype.toString.call(fallthrough) != "[object Array]")
        return lookup(fallthrough);
      for (var i = 0, e = fallthrough.length; i < e; ++i) {
        var done = lookup(fallthrough[i]);
        if (done) return done;
      }
      return false;
    }

    for (var i = 0; i < maps.length; ++i) {
      var done = lookup(maps[i]);
      if (done) return done != "stop";
    }
  }
  function isModifierKey(event) {
    var name = keyNames[event.keyCode];
    return name == "Ctrl" || name == "Alt" || name == "Shift" || name == "Mod";
  }
  function keyName(event, noShift) {
    if (opera && event.keyCode == 34 && event["char"]) return false;
    var name = keyNames[event.keyCode];
    if (name == null || event.altGraphKey) return false;
    if (event.altKey) name = "Alt-" + name;
    if (flipCtrlCmd ? event.metaKey : event.ctrlKey) name = "Ctrl-" + name;
    if (flipCtrlCmd ? event.ctrlKey : event.metaKey) name = "Cmd-" + name;
    if (!noShift && event.shiftKey) name = "Shift-" + name;
    return name;
  }
  CodeMirror.lookupKey = lookupKey;
  CodeMirror.isModifierKey = isModifierKey;
  CodeMirror.keyName = keyName;

  // FROMTEXTAREA

  CodeMirror.fromTextArea = function(textarea, options) {
    if (!options) options = {};
    options.value = textarea.value;
    if (!options.tabindex && textarea.tabindex)
      options.tabindex = textarea.tabindex;
    if (!options.placeholder && textarea.placeholder)
      options.placeholder = textarea.placeholder;
    // Set autofocus to true if this textarea is focused, or if it has
    // autofocus and no other element is focused.
    if (options.autofocus == null) {
      var hasFocus = document.body;
      // doc.activeElement occasionally throws on IE
      try { hasFocus = document.activeElement; } catch(e) {}
      options.autofocus = hasFocus == textarea ||
        textarea.getAttribute("autofocus") != null && hasFocus == document.body;
    }

    function save() {textarea.value = cm.getValue();}
    if (textarea.form) {
      on(textarea.form, "submit", save);
      // Deplorable hack to make the submit method do the right thing.
      if (!options.leaveSubmitMethodAlone) {
        var form = textarea.form, realSubmit = form.submit;
        try {
          var wrappedSubmit = form.submit = function() {
            save();
            form.submit = realSubmit;
            form.submit();
            form.submit = wrappedSubmit;
          };
        } catch(e) {}
      }
    }

    textarea.style.display = "none";
    var cm = CodeMirror(function(node) {
      textarea.parentNode.insertBefore(node, textarea.nextSibling);
    }, options);
    cm.save = save;
    cm.getTextArea = function() { return textarea; };
    cm.toTextArea = function() {
      save();
      textarea.parentNode.removeChild(cm.getWrapperElement());
      textarea.style.display = "";
      if (textarea.form) {
        off(textarea.form, "submit", save);
        if (typeof textarea.form.submit == "function")
          textarea.form.submit = realSubmit;
      }
    };
    return cm;
  };

  // STRING STREAM

  // Fed to the mode parsers, provides helper functions to make
  // parsers more succinct.

  // The character stream used by a mode's parser.
  function StringStream(string, tabSize) {
    this.pos = this.start = 0;
    this.string = string;
    this.tabSize = tabSize || 8;
    this.lastColumnPos = this.lastColumnValue = 0;
  }

  StringStream.prototype = {
    eol: function() {return this.pos >= this.string.length;},
    sol: function() {return this.pos == 0;},
    peek: function() {return this.string.charAt(this.pos) || undefined;},
    next: function() {
      if (this.pos < this.string.length)
        return this.string.charAt(this.pos++);
    },
    eat: function(match) {
      var ch = this.string.charAt(this.pos);
      if (typeof match == "string") var ok = ch == match;
      else var ok = ch && (match.test ? match.test(ch) : match(ch));
      if (ok) {++this.pos; return ch;}
    },
    eatWhile: function(match) {
      var start = this.pos;
      while (this.eat(match)){}
      return this.pos > start;
    },
    eatSpace: function() {
      var start = this.pos;
      while (/[\s\u00a0]/.test(this.string.charAt(this.pos))) ++this.pos;
      return this.pos > start;
    },
    skipToEnd: function() {this.pos = this.string.length;},
    skipTo: function(ch) {
      var found = this.string.indexOf(ch, this.pos);
      if (found > -1) {this.pos = found; return true;}
    },
    backUp: function(n) {this.pos -= n;},
    column: function() {
      if (this.lastColumnPos < this.start) {
        this.lastColumnValue = countColumn(this.string, this.start, this.tabSize, this.lastColumnPos, this.lastColumnValue);
        this.lastColumnPos = this.start;
      }
      return this.lastColumnValue;
    },
    indentation: function() {return countColumn(this.string, null, this.tabSize);},
    match: function(pattern, consume, caseInsensitive) {
      if (typeof pattern == "string") {
        var cased = function(str) {return caseInsensitive ? str.toLowerCase() : str;};
        var substr = this.string.substr(this.pos, pattern.length);
        if (cased(substr) == cased(pattern)) {
          if (consume !== false) this.pos += pattern.length;
          return true;
        }
      } else {
        var match = this.string.slice(this.pos).match(pattern);
        if (match && match.index > 0) return null;
        if (match && consume !== false) this.pos += match[0].length;
        return match;
      }
    },
    current: function(){return this.string.slice(this.start, this.pos);}
  };
  CodeMirror.StringStream = StringStream;

  // TEXTMARKERS

  function TextMarker(doc, type) {
    this.lines = [];
    this.type = type;
    this.doc = doc;
  }
  CodeMirror.TextMarker = TextMarker;
  eventMixin(TextMarker);

  TextMarker.prototype.clear = function() {
    if (this.explicitlyCleared) return;
    var cm = this.doc.cm, withOp = cm && !cm.curOp;
    if (withOp) startOperation(cm);
    if (hasHandler(this, "clear")) {
      var found = this.find();
      if (found) signalLater(this, "clear", found.from, found.to);
    }
    var min = null, max = null;
    for (var i = 0; i < this.lines.length; ++i) {
      var line = this.lines[i];
      var span = getMarkedSpanFor(line.markedSpans, this);
      if (span.to != null) max = lineNo(line);
      line.markedSpans = removeMarkedSpan(line.markedSpans, span);
      if (span.from != null)
        min = lineNo(line);
      else if (this.collapsed && !lineIsHidden(this.doc, line) && cm)
        updateLineHeight(line, textHeight(cm.display));
    }
    if (cm && this.collapsed && !cm.options.lineWrapping) for (var i = 0; i < this.lines.length; ++i) {
      var visual = visualLine(cm.doc, this.lines[i]), len = lineLength(cm.doc, visual);
      if (len > cm.display.maxLineLength) {
        cm.display.maxLine = visual;
        cm.display.maxLineLength = len;
        cm.display.maxLineChanged = true;
      }
    }

    if (min != null && cm) regChange(cm, min, max + 1);
    this.lines.length = 0;
    this.explicitlyCleared = true;
    if (this.atomic && this.doc.cantEdit) {
      this.doc.cantEdit = false;
      if (cm) reCheckSelection(cm);
    }
    if (withOp) endOperation(cm);
  };

  TextMarker.prototype.find = function() {
    var from, to;
    for (var i = 0; i < this.lines.length; ++i) {
      var line = this.lines[i];
      var span = getMarkedSpanFor(line.markedSpans, this);
      if (span.from != null || span.to != null) {
        var found = lineNo(line);
        if (span.from != null) from = Pos(found, span.from);
        if (span.to != null) to = Pos(found, span.to);
      }
    }
    if (this.type == "bookmark") return from;
    return from && {from: from, to: to};
  };

  TextMarker.prototype.changed = function() {
    var pos = this.find(), cm = this.doc.cm;
    if (!pos || !cm) return;
    var line = getLine(this.doc, pos.from.line);
    clearCachedMeasurement(cm, line);
    if (pos.from.line >= cm.display.showingFrom && pos.from.line < cm.display.showingTo) {
      for (var node = cm.display.lineDiv.firstChild; node; node = node.nextSibling) if (node.lineObj == line) {
        if (node.offsetHeight != line.height) updateLineHeight(line, node.offsetHeight);
        break;
      }
      runInOp(cm, function() {
        cm.curOp.selectionChanged = cm.curOp.forceUpdate = cm.curOp.updateMaxLine = true;
      });
    }
  };

  TextMarker.prototype.attachLine = function(line) {
    if (!this.lines.length && this.doc.cm) {
      var op = this.doc.cm.curOp;
      if (!op.maybeHiddenMarkers || indexOf(op.maybeHiddenMarkers, this) == -1)
        (op.maybeUnhiddenMarkers || (op.maybeUnhiddenMarkers = [])).push(this);
    }
    this.lines.push(line);
  };
  TextMarker.prototype.detachLine = function(line) {
    this.lines.splice(indexOf(this.lines, line), 1);
    if (!this.lines.length && this.doc.cm) {
      var op = this.doc.cm.curOp;
      (op.maybeHiddenMarkers || (op.maybeHiddenMarkers = [])).push(this);
    }
  };

  function markText(doc, from, to, options, type) {
    if (options && options.shared) return markTextShared(doc, from, to, options, type);
    if (doc.cm && !doc.cm.curOp) return operation(doc.cm, markText)(doc, from, to, options, type);

    var marker = new TextMarker(doc, type);
    if (type == "range" && !posLess(from, to)) return marker;
    if (options) copyObj(options, marker);
    if (marker.replacedWith) {
      marker.collapsed = true;
      marker.replacedWith = elt("span", [marker.replacedWith], "CodeMirror-widget");
      if (!options.handleMouseEvents) marker.replacedWith.ignoreEvents = true;
    }
    if (marker.collapsed) sawCollapsedSpans = true;

    if (marker.addToHistory)
      addToHistory(doc, {from: from, to: to, origin: "markText"},
                   {head: doc.sel.head, anchor: doc.sel.anchor}, NaN);

    var curLine = from.line, size = 0, collapsedAtStart, collapsedAtEnd, cm = doc.cm, updateMaxLine;
    doc.iter(curLine, to.line + 1, function(line) {
      if (cm && marker.collapsed && !cm.options.lineWrapping && visualLine(doc, line) == cm.display.maxLine)
        updateMaxLine = true;
      var span = {from: null, to: null, marker: marker};
      size += line.text.length;
      if (curLine == from.line) {span.from = from.ch; size -= from.ch;}
      if (curLine == to.line) {span.to = to.ch; size -= line.text.length - to.ch;}
      if (marker.collapsed) {
        if (curLine == to.line) collapsedAtEnd = collapsedSpanAt(line, to.ch);
        if (curLine == from.line) collapsedAtStart = collapsedSpanAt(line, from.ch);
        else updateLineHeight(line, 0);
      }
      addMarkedSpan(line, span);
      ++curLine;
    });
    if (marker.collapsed) doc.iter(from.line, to.line + 1, function(line) {
      if (lineIsHidden(doc, line)) updateLineHeight(line, 0);
    });

    if (marker.clearOnEnter) on(marker, "beforeCursorEnter", function() { marker.clear(); });

    if (marker.readOnly) {
      sawReadOnlySpans = true;
      if (doc.history.done.length || doc.history.undone.length)
        doc.clearHistory();
    }
    if (marker.collapsed) {
      if (collapsedAtStart != collapsedAtEnd)
        throw new Error("Inserting collapsed marker overlapping an existing one");
      marker.size = size;
      marker.atomic = true;
    }
    if (cm) {
      if (updateMaxLine) cm.curOp.updateMaxLine = true;
      if (marker.className || marker.title || marker.startStyle || marker.endStyle || marker.collapsed)
        regChange(cm, from.line, to.line + 1);
      if (marker.atomic) reCheckSelection(cm);
    }
    return marker;
  }

  // SHARED TEXTMARKERS

  function SharedTextMarker(markers, primary) {
    this.markers = markers;
    this.primary = primary;
    for (var i = 0, me = this; i < markers.length; ++i) {
      markers[i].parent = this;
      on(markers[i], "clear", function(){me.clear();});
    }
  }
  CodeMirror.SharedTextMarker = SharedTextMarker;
  eventMixin(SharedTextMarker);

  SharedTextMarker.prototype.clear = function() {
    if (this.explicitlyCleared) return;
    this.explicitlyCleared = true;
    for (var i = 0; i < this.markers.length; ++i)
      this.markers[i].clear();
    signalLater(this, "clear");
  };
  SharedTextMarker.prototype.find = function() {
    return this.primary.find();
  };

  function markTextShared(doc, from, to, options, type) {
    options = copyObj(options);
    options.shared = false;
    var markers = [markText(doc, from, to, options, type)], primary = markers[0];
    var widget = options.replacedWith;
    linkedDocs(doc, function(doc) {
      if (widget) options.replacedWith = widget.cloneNode(true);
      markers.push(markText(doc, clipPos(doc, from), clipPos(doc, to), options, type));
      for (var i = 0; i < doc.linked.length; ++i)
        if (doc.linked[i].isParent) return;
      primary = lst(markers);
    });
    return new SharedTextMarker(markers, primary);
  }

  // TEXTMARKER SPANS

  function getMarkedSpanFor(spans, marker) {
    if (spans) for (var i = 0; i < spans.length; ++i) {
      var span = spans[i];
      if (span.marker == marker) return span;
    }
  }
  function removeMarkedSpan(spans, span) {
    for (var r, i = 0; i < spans.length; ++i)
      if (spans[i] != span) (r || (r = [])).push(spans[i]);
    return r;
  }
  function addMarkedSpan(line, span) {
    line.markedSpans = line.markedSpans ? line.markedSpans.concat([span]) : [span];
    span.marker.attachLine(line);
  }

  function markedSpansBefore(old, startCh, isInsert) {
    if (old) for (var i = 0, nw; i < old.length; ++i) {
      var span = old[i], marker = span.marker;
      var startsBefore = span.from == null || (marker.inclusiveLeft ? span.from <= startCh : span.from < startCh);
      if (startsBefore || marker.type == "bookmark" && span.from == startCh && (!isInsert || !span.marker.insertLeft)) {
        var endsAfter = span.to == null || (marker.inclusiveRight ? span.to >= startCh : span.to > startCh);
        (nw || (nw = [])).push({from: span.from,
                                to: endsAfter ? null : span.to,
                                marker: marker});
      }
    }
    return nw;
  }

  function markedSpansAfter(old, endCh, isInsert) {
    if (old) for (var i = 0, nw; i < old.length; ++i) {
      var span = old[i], marker = span.marker;
      var endsAfter = span.to == null || (marker.inclusiveRight ? span.to >= endCh : span.to > endCh);
      if (endsAfter || marker.type == "bookmark" && span.from == endCh && (!isInsert || span.marker.insertLeft)) {
        var startsBefore = span.from == null || (marker.inclusiveLeft ? span.from <= endCh : span.from < endCh);
        (nw || (nw = [])).push({from: startsBefore ? null : span.from - endCh,
                                to: span.to == null ? null : span.to - endCh,
                                marker: marker});
      }
    }
    return nw;
  }

  function stretchSpansOverChange(doc, change) {
    var oldFirst = isLine(doc, change.from.line) && getLine(doc, change.from.line).markedSpans;
    var oldLast = isLine(doc, change.to.line) && getLine(doc, change.to.line).markedSpans;
    if (!oldFirst && !oldLast) return null;

    var startCh = change.from.ch, endCh = change.to.ch, isInsert = posEq(change.from, change.to);
    // Get the spans that 'stick out' on both sides
    var first = markedSpansBefore(oldFirst, startCh, isInsert);
    var last = markedSpansAfter(oldLast, endCh, isInsert);

    // Next, merge those two ends
    var sameLine = change.text.length == 1, offset = lst(change.text).length + (sameLine ? startCh : 0);
    if (first) {
      // Fix up .to properties of first
      for (var i = 0; i < first.length; ++i) {
        var span = first[i];
        if (span.to == null) {
          var found = getMarkedSpanFor(last, span.marker);
          if (!found) span.to = startCh;
          else if (sameLine) span.to = found.to == null ? null : found.to + offset;
        }
      }
    }
    if (last) {
      // Fix up .from in last (or move them into first in case of sameLine)
      for (var i = 0; i < last.length; ++i) {
        var span = last[i];
        if (span.to != null) span.to += offset;
        if (span.from == null) {
          var found = getMarkedSpanFor(first, span.marker);
          if (!found) {
            span.from = offset;
            if (sameLine) (first || (first = [])).push(span);
          }
        } else {
          span.from += offset;
          if (sameLine) (first || (first = [])).push(span);
        }
      }
    }
    if (sameLine && first) {
      // Make sure we didn't create any zero-length spans
      for (var i = 0; i < first.length; ++i)
        if (first[i].from != null && first[i].from == first[i].to && first[i].marker.type != "bookmark")
          first.splice(i--, 1);
      if (!first.length) first = null;
    }

    var newMarkers = [first];
    if (!sameLine) {
      // Fill gap with whole-line-spans
      var gap = change.text.length - 2, gapMarkers;
      if (gap > 0 && first)
        for (var i = 0; i < first.length; ++i)
          if (first[i].to == null)
            (gapMarkers || (gapMarkers = [])).push({from: null, to: null, marker: first[i].marker});
      for (var i = 0; i < gap; ++i)
        newMarkers.push(gapMarkers);
      newMarkers.push(last);
    }
    return newMarkers;
  }

  function mergeOldSpans(doc, change) {
    var old = getOldSpans(doc, change);
    var stretched = stretchSpansOverChange(doc, change);
    if (!old) return stretched;
    if (!stretched) return old;

    for (var i = 0; i < old.length; ++i) {
      var oldCur = old[i], stretchCur = stretched[i];
      if (oldCur && stretchCur) {
        spans: for (var j = 0; j < stretchCur.length; ++j) {
          var span = stretchCur[j];
          for (var k = 0; k < oldCur.length; ++k)
            if (oldCur[k].marker == span.marker) continue spans;
          oldCur.push(span);
        }
      } else if (stretchCur) {
        old[i] = stretchCur;
      }
    }
    return old;
  }

  function removeReadOnlyRanges(doc, from, to) {
    var markers = null;
    doc.iter(from.line, to.line + 1, function(line) {
      if (line.markedSpans) for (var i = 0; i < line.markedSpans.length; ++i) {
        var mark = line.markedSpans[i].marker;
        if (mark.readOnly && (!markers || indexOf(markers, mark) == -1))
          (markers || (markers = [])).push(mark);
      }
    });
    if (!markers) return null;
    var parts = [{from: from, to: to}];
    for (var i = 0; i < markers.length; ++i) {
      var mk = markers[i], m = mk.find();
      for (var j = 0; j < parts.length; ++j) {
        var p = parts[j];
        if (posLess(p.to, m.from) || posLess(m.to, p.from)) continue;
        var newParts = [j, 1];
        if (posLess(p.from, m.from) || !mk.inclusiveLeft && posEq(p.from, m.from))
          newParts.push({from: p.from, to: m.from});
        if (posLess(m.to, p.to) || !mk.inclusiveRight && posEq(p.to, m.to))
          newParts.push({from: m.to, to: p.to});
        parts.splice.apply(parts, newParts);
        j += newParts.length - 1;
      }
    }
    return parts;
  }

  function collapsedSpanAt(line, ch) {
    var sps = sawCollapsedSpans && line.markedSpans, found;
    if (sps) for (var sp, i = 0; i < sps.length; ++i) {
      sp = sps[i];
      if (!sp.marker.collapsed) continue;
      if ((sp.from == null || sp.from < ch) &&
          (sp.to == null || sp.to > ch) &&
          (!found || found.width < sp.marker.width))
        found = sp.marker;
    }
    return found;
  }
  function collapsedSpanAtStart(line) { return collapsedSpanAt(line, -1); }
  function collapsedSpanAtEnd(line) { return collapsedSpanAt(line, line.text.length + 1); }

  function visualLine(doc, line) {
    var merged;
    while (merged = collapsedSpanAtStart(line))
      line = getLine(doc, merged.find().from.line);
    return line;
  }

  function lineIsHidden(doc, line) {
    var sps = sawCollapsedSpans && line.markedSpans;
    if (sps) for (var sp, i = 0; i < sps.length; ++i) {
      sp = sps[i];
      if (!sp.marker.collapsed) continue;
      if (sp.from == null) return true;
      if (sp.marker.replacedWith) continue;
      if (sp.from == 0 && sp.marker.inclusiveLeft && lineIsHiddenInner(doc, line, sp))
        return true;
    }
  }
  function lineIsHiddenInner(doc, line, span) {
    if (span.to == null) {
      var end = span.marker.find().to, endLine = getLine(doc, end.line);
      return lineIsHiddenInner(doc, endLine, getMarkedSpanFor(endLine.markedSpans, span.marker));
    }
    if (span.marker.inclusiveRight && span.to == line.text.length)
      return true;
    for (var sp, i = 0; i < line.markedSpans.length; ++i) {
      sp = line.markedSpans[i];
      if (sp.marker.collapsed && !sp.marker.replacedWith && sp.from == span.to &&
          (sp.marker.inclusiveLeft || span.marker.inclusiveRight) &&
          lineIsHiddenInner(doc, line, sp)) return true;
    }
  }

  function detachMarkedSpans(line) {
    var spans = line.markedSpans;
    if (!spans) return;
    for (var i = 0; i < spans.length; ++i)
      spans[i].marker.detachLine(line);
    line.markedSpans = null;
  }

  function attachMarkedSpans(line, spans) {
    if (!spans) return;
    for (var i = 0; i < spans.length; ++i)
      spans[i].marker.attachLine(line);
    line.markedSpans = spans;
  }

  // LINE WIDGETS

  var LineWidget = CodeMirror.LineWidget = function(cm, node, options) {
    if (options) for (var opt in options) if (options.hasOwnProperty(opt))
      this[opt] = options[opt];
    this.cm = cm;
    this.node = node;
  };
  eventMixin(LineWidget);
  function widgetOperation(f) {
    return function() {
      var withOp = !this.cm.curOp;
      if (withOp) startOperation(this.cm);
      try {var result = f.apply(this, arguments);}
      finally {if (withOp) endOperation(this.cm);}
      return result;
    };
  }
  LineWidget.prototype.clear = widgetOperation(function() {
    var ws = this.line.widgets, no = lineNo(this.line);
    if (no == null || !ws) return;
    for (var i = 0; i < ws.length; ++i) if (ws[i] == this) ws.splice(i--, 1);
    if (!ws.length) this.line.widgets = null;
    var aboveVisible = heightAtLine(this.cm, this.line) < this.cm.doc.scrollTop;
    updateLineHeight(this.line, Math.max(0, this.line.height - widgetHeight(this)));
    if (aboveVisible) addToScrollPos(this.cm, 0, -this.height);
    regChange(this.cm, no, no + 1);
  });
  LineWidget.prototype.changed = widgetOperation(function() {
    var oldH = this.height;
    this.height = null;
    var diff = widgetHeight(this) - oldH;
    if (!diff) return;
    updateLineHeight(this.line, this.line.height + diff);
    var no = lineNo(this.line);
    regChange(this.cm, no, no + 1);
  });

  function widgetHeight(widget) {
    if (widget.height != null) return widget.height;
    if (!widget.node.parentNode || widget.node.parentNode.nodeType != 1)
      removeChildrenAndAdd(widget.cm.display.measure, elt("div", [widget.node], null, "position: relative"));
    return widget.height = widget.node.offsetHeight;
  }

  function addLineWidget(cm, handle, node, options) {
    var widget = new LineWidget(cm, node, options);
    if (widget.noHScroll) cm.display.alignWidgets = true;
    changeLine(cm, handle, function(line) {
      var widgets = line.widgets || (line.widgets = []);
      if (widget.insertAt == null) widgets.push(widget);
      else widgets.splice(Math.min(widgets.length - 1, Math.max(0, widget.insertAt)), 0, widget);
      widget.line = line;
      if (!lineIsHidden(cm.doc, line) || widget.showIfHidden) {
        var aboveVisible = heightAtLine(cm, line) < cm.doc.scrollTop;
        updateLineHeight(line, line.height + widgetHeight(widget));
        if (aboveVisible) addToScrollPos(cm, 0, widget.height);
      }
      return true;
    });
    return widget;
  }

  // LINE DATA STRUCTURE

  // Line objects. These hold state related to a line, including
  // highlighting info (the styles array).
  var Line = CodeMirror.Line = function(text, markedSpans, estimateHeight) {
    this.text = text;
    attachMarkedSpans(this, markedSpans);
    this.height = estimateHeight ? estimateHeight(this) : 1;
  };
  eventMixin(Line);

  function updateLine(line, text, markedSpans, estimateHeight) {
    line.text = text;
    if (line.stateAfter) line.stateAfter = null;
    if (line.styles) line.styles = null;
    if (line.order != null) line.order = null;
    detachMarkedSpans(line);
    attachMarkedSpans(line, markedSpans);
    var estHeight = estimateHeight ? estimateHeight(line) : 1;
    if (estHeight != line.height) updateLineHeight(line, estHeight);
  }

  function cleanUpLine(line) {
    line.parent = null;
    detachMarkedSpans(line);
  }

  // Run the given mode's parser over a line, update the styles
  // array, which contains alternating fragments of text and CSS
  // classes.
  function runMode(cm, text, mode, state, f) {
    var flattenSpans = mode.flattenSpans;
    if (flattenSpans == null) flattenSpans = cm.options.flattenSpans;
    var curStart = 0, curStyle = null;
    var stream = new StringStream(text, cm.options.tabSize), style;
    if (text == "" && mode.blankLine) mode.blankLine(state);
    while (!stream.eol()) {
      if (stream.pos > cm.options.maxHighlightLength) {
        flattenSpans = false;
        // Webkit seems to refuse to render text nodes longer than 57444 characters
        stream.pos = Math.min(text.length, stream.start + 50000);
        style = null;
      } else {
        style = mode.token(stream, state);
      }
      if (!flattenSpans || curStyle != style) {
        if (curStart < stream.start) f(stream.start, curStyle);
        curStart = stream.start; curStyle = style;
      }
      stream.start = stream.pos;
    }
    if (curStart < stream.pos) f(stream.pos, curStyle);
  }

  function highlightLine(cm, line, state) {
    // A styles array always starts with a number identifying the
    // mode/overlays that it is based on (for easy invalidation).
    var st = [cm.state.modeGen];
    // Compute the base array of styles
    runMode(cm, line.text, cm.doc.mode, state, function(end, style) {st.push(end, style);});

    // Run overlays, adjust style array.
    for (var o = 0; o < cm.state.overlays.length; ++o) {
      var overlay = cm.state.overlays[o], i = 1, at = 0;
      runMode(cm, line.text, overlay.mode, true, function(end, style) {
        var start = i;
        // Ensure there's a token end at the current position, and that i points at it
        while (at < end) {
          var i_end = st[i];
          if (i_end > end)
            st.splice(i, 1, end, st[i+1], i_end);
          i += 2;
          at = Math.min(end, i_end);
        }
        if (!style) return;
        if (overlay.opaque) {
          st.splice(start, i - start, end, style);
          i = start + 2;
        } else {
          for (; start < i; start += 2) {
            var cur = st[start+1];
            st[start+1] = cur ? cur + " " + style : style;
          }
        }
      });
    }

    return st;
  }

  function getLineStyles(cm, line) {
    if (!line.styles || line.styles[0] != cm.state.modeGen)
      line.styles = highlightLine(cm, line, line.stateAfter = getStateBefore(cm, lineNo(line)));
    return line.styles;
  }

  // Lightweight form of highlight -- proceed over this line and
  // update state, but don't save a style array.
  function processLine(cm, line, state) {
    var mode = cm.doc.mode;
    var stream = new StringStream(line.text, cm.options.tabSize);
    if (line.text == "" && mode.blankLine) mode.blankLine(state);
    while (!stream.eol() && stream.pos <= cm.options.maxHighlightLength) {
      mode.token(stream, state);
      stream.start = stream.pos;
    }
  }

  var styleToClassCache = {};
  function styleToClass(style) {
    if (!style) return null;
    return styleToClassCache[style] ||
      (styleToClassCache[style] = "cm-" + style.replace(/ +/g, " cm-"));
  }

  function lineContent(cm, realLine, measure, copyWidgets) {
    var merged, line = realLine, empty = true;
    while (merged = collapsedSpanAtStart(line))
      line = getLine(cm.doc, merged.find().from.line);

    var builder = {pre: elt("pre"), col: 0, pos: 0,
                   measure: null, measuredSomething: false, cm: cm,
                   copyWidgets: copyWidgets};
    if (line.textClass) builder.pre.className = line.textClass;

    do {
      if (line.text) empty = false;
      builder.measure = line == realLine && measure;
      builder.pos = 0;
      builder.addToken = builder.measure ? buildTokenMeasure : buildToken;
      if ((ie || webkit) && cm.getOption("lineWrapping"))
        builder.addToken = buildTokenSplitSpaces(builder.addToken);
      var next = insertLineContent(line, builder, getLineStyles(cm, line));
      if (measure && line == realLine && !builder.measuredSomething) {
        measure[0] = builder.pre.appendChild(zeroWidthElement(cm.display.measure));
        builder.measuredSomething = true;
      }
      if (next) line = getLine(cm.doc, next.to.line);
    } while (next);

    if (measure && !builder.measuredSomething && !measure[0])
      measure[0] = builder.pre.appendChild(empty ? elt("span", "\u00a0") : zeroWidthElement(cm.display.measure));
    if (!builder.pre.firstChild && !lineIsHidden(cm.doc, realLine))
      builder.pre.appendChild(document.createTextNode("\u00a0"));

    var order;
    // Work around problem with the reported dimensions of single-char
    // direction spans on IE (issue #1129). See also the comment in
    // cursorCoords.
    if (measure && ie && (order = getOrder(line))) {
      var l = order.length - 1;
      if (order[l].from == order[l].to) --l;
      var last = order[l], prev = order[l - 1];
      if (last.from + 1 == last.to && prev && last.level < prev.level) {
        var span = measure[builder.pos - 1];
        if (span) span.parentNode.insertBefore(span.measureRight = zeroWidthElement(cm.display.measure),
                                               span.nextSibling);
      }
    }

    signal(cm, "renderLine", cm, realLine, builder.pre);
    return builder.pre;
  }

  var tokenSpecialChars = /[\t\u0000-\u0019\u00ad\u200b\u2028\u2029\uFEFF]/g;
  function buildToken(builder, text, style, startStyle, endStyle, title) {
    if (!text) return;
    if (!tokenSpecialChars.test(text)) {
      builder.col += text.length;
      var content = document.createTextNode(text);
    } else {
      var content = document.createDocumentFragment(), pos = 0;
      while (true) {
        tokenSpecialChars.lastIndex = pos;
        var m = tokenSpecialChars.exec(text);
        var skipped = m ? m.index - pos : text.length - pos;
        if (skipped) {
          content.appendChild(document.createTextNode(text.slice(pos, pos + skipped)));
          builder.col += skipped;
        }
        if (!m) break;
        pos += skipped + 1;
        if (m[0] == "\t") {
          var tabSize = builder.cm.options.tabSize, tabWidth = tabSize - builder.col % tabSize;
          content.appendChild(elt("span", spaceStr(tabWidth), "cm-tab"));
          builder.col += tabWidth;
        } else {
          var token = elt("span", "\u2022", "cm-invalidchar");
          token.title = "\\u" + m[0].charCodeAt(0).toString(16);
          content.appendChild(token);
          builder.col += 1;
        }
      }
    }
    if (style || startStyle || endStyle || builder.measure) {
      var fullStyle = style || "";
      if (startStyle) fullStyle += startStyle;
      if (endStyle) fullStyle += endStyle;
      var token = elt("span", [content], fullStyle);
      if (title) token.title = title;
      return builder.pre.appendChild(token);
    }
    builder.pre.appendChild(content);
  }

  function buildTokenMeasure(builder, text, style, startStyle, endStyle) {
    var wrapping = builder.cm.options.lineWrapping;
    for (var i = 0; i < text.length; ++i) {
      var ch = text.charAt(i), start = i == 0;
      if (ch >= "\ud800" && ch < "\udbff" && i < text.length - 1) {
        ch = text.slice(i, i + 2);
        ++i;
      } else if (i && wrapping && spanAffectsWrapping(text, i)) {
        builder.pre.appendChild(elt("wbr"));
      }
      var old = builder.measure[builder.pos];
      var span = builder.measure[builder.pos] =
        buildToken(builder, ch, style,
                   start && startStyle, i == text.length - 1 && endStyle);
      if (old) span.leftSide = old.leftSide || old;
      // In IE single-space nodes wrap differently than spaces
      // embedded in larger text nodes, except when set to
      // white-space: normal (issue #1268).
      if (ie && wrapping && ch == " " && i && !/\s/.test(text.charAt(i - 1)) &&
          i < text.length - 1 && !/\s/.test(text.charAt(i + 1)))
        span.style.whiteSpace = "normal";
      builder.pos += ch.length;
    }
    if (text.length) builder.measuredSomething = true;
  }

  function buildTokenSplitSpaces(inner) {
    function split(old) {
      var out = " ";
      for (var i = 0; i < old.length - 2; ++i) out += i % 2 ? " " : "\u00a0";
      out += " ";
      return out;
    }
    return function(builder, text, style, startStyle, endStyle, title) {
      return inner(builder, text.replace(/ {3,}/, split), style, startStyle, endStyle, title);
    };
  }

  function buildCollapsedSpan(builder, size, marker, ignoreWidget) {
    var widget = !ignoreWidget && marker.replacedWith;
    if (widget) {
      if (builder.copyWidgets) widget = widget.cloneNode(true);
      builder.pre.appendChild(widget);
      if (builder.measure) {
        if (size) {
          builder.measure[builder.pos] = widget;
        } else {
          var elt = builder.measure[builder.pos] = zeroWidthElement(builder.cm.display.measure);
          if (marker.type != "bookmark" || marker.insertLeft)
            builder.pre.insertBefore(elt, widget);
          else
            builder.pre.appendChild(elt);
        }
        builder.measuredSomething = true;
      }
    }
    builder.pos += size;
  }

  // Outputs a number of spans to make up a line, taking highlighting
  // and marked text into account.
  function insertLineContent(line, builder, styles) {
    var spans = line.markedSpans, allText = line.text, at = 0;
    if (!spans) {
      for (var i = 1; i < styles.length; i+=2)
        builder.addToken(builder, allText.slice(at, at = styles[i]), styleToClass(styles[i+1]));
      return;
    }

    var len = allText.length, pos = 0, i = 1, text = "", style;
    var nextChange = 0, spanStyle, spanEndStyle, spanStartStyle, title, collapsed;
    for (;;) {
      if (nextChange == pos) { // Update current marker set
        spanStyle = spanEndStyle = spanStartStyle = title = "";
        collapsed = null; nextChange = Infinity;
        var foundBookmark = null;
        for (var j = 0; j < spans.length; ++j) {
          var sp = spans[j], m = sp.marker;
          if (sp.from <= pos && (sp.to == null || sp.to > pos)) {
            if (sp.to != null && nextChange > sp.to) { nextChange = sp.to; spanEndStyle = ""; }
            if (m.className) spanStyle += " " + m.className;
            if (m.startStyle && sp.from == pos) spanStartStyle += " " + m.startStyle;
            if (m.endStyle && sp.to == nextChange) spanEndStyle += " " + m.endStyle;
            if (m.title && !title) title = m.title;
            if (m.collapsed && (!collapsed || collapsed.marker.size < m.size))
              collapsed = sp;
          } else if (sp.from > pos && nextChange > sp.from) {
            nextChange = sp.from;
          }
          if (m.type == "bookmark" && sp.from == pos && m.replacedWith) foundBookmark = m;
        }
        if (collapsed && (collapsed.from || 0) == pos) {
          buildCollapsedSpan(builder, (collapsed.to == null ? len : collapsed.to) - pos,
                             collapsed.marker, collapsed.from == null);
          if (collapsed.to == null) return collapsed.marker.find();
        }
        if (foundBookmark && !collapsed) buildCollapsedSpan(builder, 0, foundBookmark);
      }
      if (pos >= len) break;

      var upto = Math.min(len, nextChange);
      while (true) {
        if (text) {
          var end = pos + text.length;
          if (!collapsed) {
            var tokenText = end > upto ? text.slice(0, upto - pos) : text;
            builder.addToken(builder, tokenText, style ? style + spanStyle : spanStyle,
                             spanStartStyle, pos + tokenText.length == nextChange ? spanEndStyle : "", title);
          }
          if (end >= upto) {text = text.slice(upto - pos); pos = upto; break;}
          pos = end;
          spanStartStyle = "";
        }
        text = allText.slice(at, at = styles[i++]);
        style = styleToClass(styles[i++]);
      }
    }
  }

  // DOCUMENT DATA STRUCTURE

  function updateDoc(doc, change, markedSpans, selAfter, estimateHeight) {
    function spansFor(n) {return markedSpans ? markedSpans[n] : null;}
    function update(line, text, spans) {
      updateLine(line, text, spans, estimateHeight);
      signalLater(line, "change", line, change);
    }

    var from = change.from, to = change.to, text = change.text;
    var firstLine = getLine(doc, from.line), lastLine = getLine(doc, to.line);
    var lastText = lst(text), lastSpans = spansFor(text.length - 1), nlines = to.line - from.line;

    // First adjust the line structure
    if (from.ch == 0 && to.ch == 0 && lastText == "") {
      // This is a whole-line replace. Treated specially to make
      // sure line objects move the way they are supposed to.
      for (var i = 0, e = text.length - 1, added = []; i < e; ++i)
        added.push(new Line(text[i], spansFor(i), estimateHeight));
      update(lastLine, lastLine.text, lastSpans);
      if (nlines) doc.remove(from.line, nlines);
      if (added.length) doc.insert(from.line, added);
    } else if (firstLine == lastLine) {
      if (text.length == 1) {
        update(firstLine, firstLine.text.slice(0, from.ch) + lastText + firstLine.text.slice(to.ch), lastSpans);
      } else {
        for (var added = [], i = 1, e = text.length - 1; i < e; ++i)
          added.push(new Line(text[i], spansFor(i), estimateHeight));
        added.push(new Line(lastText + firstLine.text.slice(to.ch), lastSpans, estimateHeight));
        update(firstLine, firstLine.text.slice(0, from.ch) + text[0], spansFor(0));
        doc.insert(from.line + 1, added);
      }
    } else if (text.length == 1) {
      update(firstLine, firstLine.text.slice(0, from.ch) + text[0] + lastLine.text.slice(to.ch), spansFor(0));
      doc.remove(from.line + 1, nlines);
    } else {
      update(firstLine, firstLine.text.slice(0, from.ch) + text[0], spansFor(0));
      update(lastLine, lastText + lastLine.text.slice(to.ch), lastSpans);
      for (var i = 1, e = text.length - 1, added = []; i < e; ++i)
        added.push(new Line(text[i], spansFor(i), estimateHeight));
      if (nlines > 1) doc.remove(from.line + 1, nlines - 1);
      doc.insert(from.line + 1, added);
    }

    signalLater(doc, "change", doc, change);
    setSelection(doc, selAfter.anchor, selAfter.head, null, true);
  }

  function LeafChunk(lines) {
    this.lines = lines;
    this.parent = null;
    for (var i = 0, e = lines.length, height = 0; i < e; ++i) {
      lines[i].parent = this;
      height += lines[i].height;
    }
    this.height = height;
  }

  LeafChunk.prototype = {
    chunkSize: function() { return this.lines.length; },
    removeInner: function(at, n) {
      for (var i = at, e = at + n; i < e; ++i) {
        var line = this.lines[i];
        this.height -= line.height;
        cleanUpLine(line);
        signalLater(line, "delete");
      }
      this.lines.splice(at, n);
    },
    collapse: function(lines) {
      lines.splice.apply(lines, [lines.length, 0].concat(this.lines));
    },
    insertInner: function(at, lines, height) {
      this.height += height;
      this.lines = this.lines.slice(0, at).concat(lines).concat(this.lines.slice(at));
      for (var i = 0, e = lines.length; i < e; ++i) lines[i].parent = this;
    },
    iterN: function(at, n, op) {
      for (var e = at + n; at < e; ++at)
        if (op(this.lines[at])) return true;
    }
  };

  function BranchChunk(children) {
    this.children = children;
    var size = 0, height = 0;
    for (var i = 0, e = children.length; i < e; ++i) {
      var ch = children[i];
      size += ch.chunkSize(); height += ch.height;
      ch.parent = this;
    }
    this.size = size;
    this.height = height;
    this.parent = null;
  }

  BranchChunk.prototype = {
    chunkSize: function() { return this.size; },
    removeInner: function(at, n) {
      this.size -= n;
      for (var i = 0; i < this.children.length; ++i) {
        var child = this.children[i], sz = child.chunkSize();
        if (at < sz) {
          var rm = Math.min(n, sz - at), oldHeight = child.height;
          child.removeInner(at, rm);
          this.height -= oldHeight - child.height;
          if (sz == rm) { this.children.splice(i--, 1); child.parent = null; }
          if ((n -= rm) == 0) break;
          at = 0;
        } else at -= sz;
      }
      if (this.size - n < 25) {
        var lines = [];
        this.collapse(lines);
        this.children = [new LeafChunk(lines)];
        this.children[0].parent = this;
      }
    },
    collapse: function(lines) {
      for (var i = 0, e = this.children.length; i < e; ++i) this.children[i].collapse(lines);
    },
    insertInner: function(at, lines, height) {
      this.size += lines.length;
      this.height += height;
      for (var i = 0, e = this.children.length; i < e; ++i) {
        var child = this.children[i], sz = child.chunkSize();
        if (at <= sz) {
          child.insertInner(at, lines, height);
          if (child.lines && child.lines.length > 50) {
            while (child.lines.length > 50) {
              var spilled = child.lines.splice(child.lines.length - 25, 25);
              var newleaf = new LeafChunk(spilled);
              child.height -= newleaf.height;
              this.children.splice(i + 1, 0, newleaf);
              newleaf.parent = this;
            }
            this.maybeSpill();
          }
          break;
        }
        at -= sz;
      }
    },
    maybeSpill: function() {
      if (this.children.length <= 10) return;
      var me = this;
      do {
        var spilled = me.children.splice(me.children.length - 5, 5);
        var sibling = new BranchChunk(spilled);
        if (!me.parent) { // Become the parent node
          var copy = new BranchChunk(me.children);
          copy.parent = me;
          me.children = [copy, sibling];
          me = copy;
        } else {
          me.size -= sibling.size;
          me.height -= sibling.height;
          var myIndex = indexOf(me.parent.children, me);
          me.parent.children.splice(myIndex + 1, 0, sibling);
        }
        sibling.parent = me.parent;
      } while (me.children.length > 10);
      me.parent.maybeSpill();
    },
    iterN: function(at, n, op) {
      for (var i = 0, e = this.children.length; i < e; ++i) {
        var child = this.children[i], sz = child.chunkSize();
        if (at < sz) {
          var used = Math.min(n, sz - at);
          if (child.iterN(at, used, op)) return true;
          if ((n -= used) == 0) break;
          at = 0;
        } else at -= sz;
      }
    }
  };

  var nextDocId = 0;
  var Doc = CodeMirror.Doc = function(text, mode, firstLine) {
    if (!(this instanceof Doc)) return new Doc(text, mode, firstLine);
    if (firstLine == null) firstLine = 0;

    BranchChunk.call(this, [new LeafChunk([new Line("", null)])]);
    this.first = firstLine;
    this.scrollTop = this.scrollLeft = 0;
    this.cantEdit = false;
    this.history = makeHistory();
    this.cleanGeneration = 1;
    this.frontier = firstLine;
    var start = Pos(firstLine, 0);
    this.sel = {from: start, to: start, head: start, anchor: start, shift: false, extend: false, goalColumn: null};
    this.id = ++nextDocId;
    this.modeOption = mode;

    if (typeof text == "string") text = splitLines(text);
    updateDoc(this, {from: start, to: start, text: text}, null, {head: start, anchor: start});
  };

  Doc.prototype = createObj(BranchChunk.prototype, {
    constructor: Doc,
    iter: function(from, to, op) {
      if (op) this.iterN(from - this.first, to - from, op);
      else this.iterN(this.first, this.first + this.size, from);
    },

    insert: function(at, lines) {
      var height = 0;
      for (var i = 0, e = lines.length; i < e; ++i) height += lines[i].height;
      this.insertInner(at - this.first, lines, height);
    },
    remove: function(at, n) { this.removeInner(at - this.first, n); },

    getValue: function(lineSep) {
      var lines = getLines(this, this.first, this.first + this.size);
      if (lineSep === false) return lines;
      return lines.join(lineSep || "\n");
    },
    setValue: function(code) {
      var top = Pos(this.first, 0), last = this.first + this.size - 1;
      makeChange(this, {from: top, to: Pos(last, getLine(this, last).text.length),
                        text: splitLines(code), origin: "setValue"},
                 {head: top, anchor: top}, true);
    },
    replaceRange: function(code, from, to, origin) {
      from = clipPos(this, from);
      to = to ? clipPos(this, to) : from;
      replaceRange(this, code, from, to, origin);
    },
    getRange: function(from, to, lineSep) {
      var lines = getBetween(this, clipPos(this, from), clipPos(this, to));
      if (lineSep === false) return lines;
      return lines.join(lineSep || "\n");
    },

    getLine: function(line) {var l = this.getLineHandle(line); return l && l.text;},
    setLine: function(line, text) {
      if (isLine(this, line))
        replaceRange(this, text, Pos(line, 0), clipPos(this, Pos(line)));
    },
    removeLine: function(line) {
      if (line) replaceRange(this, "", clipPos(this, Pos(line - 1)), clipPos(this, Pos(line)));
      else replaceRange(this, "", Pos(0, 0), clipPos(this, Pos(1, 0)));
    },

    getLineHandle: function(line) {if (isLine(this, line)) return getLine(this, line);},
    getLineNumber: function(line) {return lineNo(line);},

    getLineHandleVisualStart: function(line) {
      if (typeof line == "number") line = getLine(this, line);
      return visualLine(this, line);
    },

    lineCount: function() {return this.size;},
    firstLine: function() {return this.first;},
    lastLine: function() {return this.first + this.size - 1;},

    clipPos: function(pos) {return clipPos(this, pos);},

    getCursor: function(start) {
      var sel = this.sel, pos;
      if (start == null || start == "head") pos = sel.head;
      else if (start == "anchor") pos = sel.anchor;
      else if (start == "end" || start === false) pos = sel.to;
      else pos = sel.from;
      return copyPos(pos);
    },
    somethingSelected: function() {return !posEq(this.sel.head, this.sel.anchor);},

    setCursor: docOperation(function(line, ch, extend) {
      var pos = clipPos(this, typeof line == "number" ? Pos(line, ch || 0) : line);
      if (extend) extendSelection(this, pos);
      else setSelection(this, pos, pos);
    }),
    setSelection: docOperation(function(anchor, head) {
      setSelection(this, clipPos(this, anchor), clipPos(this, head || anchor));
    }),
    extendSelection: docOperation(function(from, to) {
      extendSelection(this, clipPos(this, from), to && clipPos(this, to));
    }),

    getSelection: function(lineSep) {return this.getRange(this.sel.from, this.sel.to, lineSep);},
    replaceSelection: function(code, collapse, origin) {
      makeChange(this, {from: this.sel.from, to: this.sel.to, text: splitLines(code), origin: origin}, collapse || "around");
    },
    undo: docOperation(function() {makeChangeFromHistory(this, "undo");}),
    redo: docOperation(function() {makeChangeFromHistory(this, "redo");}),

    setExtending: function(val) {this.sel.extend = val;},

    historySize: function() {
      var hist = this.history;
      return {undo: hist.done.length, redo: hist.undone.length};
    },
    clearHistory: function() {this.history = makeHistory(this.history.maxGeneration);},

    markClean: function() {
      this.cleanGeneration = this.changeGeneration();
    },
    changeGeneration: function() {
      this.history.lastOp = this.history.lastOrigin = null;
      return this.history.generation;
    },
    isClean: function (gen) {
      return this.history.generation == (gen || this.cleanGeneration);
    },

    getHistory: function() {
      return {done: copyHistoryArray(this.history.done),
              undone: copyHistoryArray(this.history.undone)};
    },
    setHistory: function(histData) {
      var hist = this.history = makeHistory(this.history.maxGeneration);
      hist.done = histData.done.slice(0);
      hist.undone = histData.undone.slice(0);
    },

    markText: function(from, to, options) {
      return markText(this, clipPos(this, from), clipPos(this, to), options, "range");
    },
    setBookmark: function(pos, options) {
      var realOpts = {replacedWith: options && (options.nodeType == null ? options.widget : options),
                      insertLeft: options && options.insertLeft};
      pos = clipPos(this, pos);
      return markText(this, pos, pos, realOpts, "bookmark");
    },
    findMarksAt: function(pos) {
      pos = clipPos(this, pos);
      var markers = [], spans = getLine(this, pos.line).markedSpans;
      if (spans) for (var i = 0; i < spans.length; ++i) {
        var span = spans[i];
        if ((span.from == null || span.from <= pos.ch) &&
            (span.to == null || span.to >= pos.ch))
          markers.push(span.marker.parent || span.marker);
      }
      return markers;
    },
    getAllMarks: function() {
      var markers = [];
      this.iter(function(line) {
        var sps = line.markedSpans;
        if (sps) for (var i = 0; i < sps.length; ++i)
          if (sps[i].from != null) markers.push(sps[i].marker);
      });
      return markers;
    },

    posFromIndex: function(off) {
      var ch, lineNo = this.first;
      this.iter(function(line) {
        var sz = line.text.length + 1;
        if (sz > off) { ch = off; return true; }
        off -= sz;
        ++lineNo;
      });
      return clipPos(this, Pos(lineNo, ch));
    },
    indexFromPos: function (coords) {
      coords = clipPos(this, coords);
      var index = coords.ch;
      if (coords.line < this.first || coords.ch < 0) return 0;
      this.iter(this.first, coords.line, function (line) {
        index += line.text.length + 1;
      });
      return index;
    },

    copy: function(copyHistory) {
      var doc = new Doc(getLines(this, this.first, this.first + this.size), this.modeOption, this.first);
      doc.scrollTop = this.scrollTop; doc.scrollLeft = this.scrollLeft;
      doc.sel = {from: this.sel.from, to: this.sel.to, head: this.sel.head, anchor: this.sel.anchor,
                 shift: this.sel.shift, extend: false, goalColumn: this.sel.goalColumn};
      if (copyHistory) {
        doc.history.undoDepth = this.history.undoDepth;
        doc.setHistory(this.getHistory());
      }
      return doc;
    },

    linkedDoc: function(options) {
      if (!options) options = {};
      var from = this.first, to = this.first + this.size;
      if (options.from != null && options.from > from) from = options.from;
      if (options.to != null && options.to < to) to = options.to;
      var copy = new Doc(getLines(this, from, to), options.mode || this.modeOption, from);
      if (options.sharedHist) copy.history = this.history;
      (this.linked || (this.linked = [])).push({doc: copy, sharedHist: options.sharedHist});
      copy.linked = [{doc: this, isParent: true, sharedHist: options.sharedHist}];
      return copy;
    },
    unlinkDoc: function(other) {
      if (other instanceof CodeMirror) other = other.doc;
      if (this.linked) for (var i = 0; i < this.linked.length; ++i) {
        var link = this.linked[i];
        if (link.doc != other) continue;
        this.linked.splice(i, 1);
        other.unlinkDoc(this);
        break;
      }
      // If the histories were shared, split them again
      if (other.history == this.history) {
        var splitIds = [other.id];
        linkedDocs(other, function(doc) {splitIds.push(doc.id);}, true);
        other.history = makeHistory();
        other.history.done = copyHistoryArray(this.history.done, splitIds);
        other.history.undone = copyHistoryArray(this.history.undone, splitIds);
      }
    },
    iterLinkedDocs: function(f) {linkedDocs(this, f);},

    getMode: function() {return this.mode;},
    getEditor: function() {return this.cm;}
  });

  Doc.prototype.eachLine = Doc.prototype.iter;

  // The Doc methods that should be available on CodeMirror instances
  var dontDelegate = "iter insert remove copy getEditor".split(" ");
  for (var prop in Doc.prototype) if (Doc.prototype.hasOwnProperty(prop) && indexOf(dontDelegate, prop) < 0)
    CodeMirror.prototype[prop] = (function(method) {
      return function() {return method.apply(this.doc, arguments);};
    })(Doc.prototype[prop]);

  eventMixin(Doc);

  function linkedDocs(doc, f, sharedHistOnly) {
    function propagate(doc, skip, sharedHist) {
      if (doc.linked) for (var i = 0; i < doc.linked.length; ++i) {
        var rel = doc.linked[i];
        if (rel.doc == skip) continue;
        var shared = sharedHist && rel.sharedHist;
        if (sharedHistOnly && !shared) continue;
        f(rel.doc, shared);
        propagate(rel.doc, doc, shared);
      }
    }
    propagate(doc, null, true);
  }

  function attachDoc(cm, doc) {
    if (doc.cm) throw new Error("This document is already in use.");
    cm.doc = doc;
    doc.cm = cm;
    estimateLineHeights(cm);
    loadMode(cm);
    if (!cm.options.lineWrapping) computeMaxLength(cm);
    cm.options.mode = doc.modeOption;
    regChange(cm);
  }

  // LINE UTILITIES

  function getLine(chunk, n) {
    n -= chunk.first;
    while (!chunk.lines) {
      for (var i = 0;; ++i) {
        var child = chunk.children[i], sz = child.chunkSize();
        if (n < sz) { chunk = child; break; }
        n -= sz;
      }
    }
    return chunk.lines[n];
  }

  function getBetween(doc, start, end) {
    var out = [], n = start.line;
    doc.iter(start.line, end.line + 1, function(line) {
      var text = line.text;
      if (n == end.line) text = text.slice(0, end.ch);
      if (n == start.line) text = text.slice(start.ch);
      out.push(text);
      ++n;
    });
    return out;
  }
  function getLines(doc, from, to) {
    var out = [];
    doc.iter(from, to, function(line) { out.push(line.text); });
    return out;
  }

  function updateLineHeight(line, height) {
    var diff = height - line.height;
    for (var n = line; n; n = n.parent) n.height += diff;
  }

  function lineNo(line) {
    if (line.parent == null) return null;
    var cur = line.parent, no = indexOf(cur.lines, line);
    for (var chunk = cur.parent; chunk; cur = chunk, chunk = chunk.parent) {
      for (var i = 0;; ++i) {
        if (chunk.children[i] == cur) break;
        no += chunk.children[i].chunkSize();
      }
    }
    return no + cur.first;
  }

  function lineAtHeight(chunk, h) {
    var n = chunk.first;
    outer: do {
      for (var i = 0, e = chunk.children.length; i < e; ++i) {
        var child = chunk.children[i], ch = child.height;
        if (h < ch) { chunk = child; continue outer; }
        h -= ch;
        n += child.chunkSize();
      }
      return n;
    } while (!chunk.lines);
    for (var i = 0, e = chunk.lines.length; i < e; ++i) {
      var line = chunk.lines[i], lh = line.height;
      if (h < lh) break;
      h -= lh;
    }
    return n + i;
  }

  function heightAtLine(cm, lineObj) {
    lineObj = visualLine(cm.doc, lineObj);

    var h = 0, chunk = lineObj.parent;
    for (var i = 0; i < chunk.lines.length; ++i) {
      var line = chunk.lines[i];
      if (line == lineObj) break;
      else h += line.height;
    }
    for (var p = chunk.parent; p; chunk = p, p = chunk.parent) {
      for (var i = 0; i < p.children.length; ++i) {
        var cur = p.children[i];
        if (cur == chunk) break;
        else h += cur.height;
      }
    }
    return h;
  }

  function getOrder(line) {
    var order = line.order;
    if (order == null) order = line.order = bidiOrdering(line.text);
    return order;
  }

  // HISTORY

  function makeHistory(startGen) {
    return {
      // Arrays of history events. Doing something adds an event to
      // done and clears undo. Undoing moves events from done to
      // undone, redoing moves them in the other direction.
      done: [], undone: [], undoDepth: Infinity,
      // Used to track when changes can be merged into a single undo
      // event
      lastTime: 0, lastOp: null, lastOrigin: null,
      // Used by the isClean() method
      generation: startGen || 1, maxGeneration: startGen || 1
    };
  }

  function attachLocalSpans(doc, change, from, to) {
    var existing = change["spans_" + doc.id], n = 0;
    doc.iter(Math.max(doc.first, from), Math.min(doc.first + doc.size, to), function(line) {
      if (line.markedSpans)
        (existing || (existing = change["spans_" + doc.id] = {}))[n] = line.markedSpans;
      ++n;
    });
  }

  function historyChangeFromChange(doc, change) {
    var from = { line: change.from.line, ch: change.from.ch };
    var histChange = {from: from, to: changeEnd(change), text: getBetween(doc, change.from, change.to)};
    attachLocalSpans(doc, histChange, change.from.line, change.to.line + 1);
    linkedDocs(doc, function(doc) {attachLocalSpans(doc, histChange, change.from.line, change.to.line + 1);}, true);
    return histChange;
  }

  function addToHistory(doc, change, selAfter, opId) {
    var hist = doc.history;
    hist.undone.length = 0;
    var time = +new Date, cur = lst(hist.done);

    if (cur &&
        (hist.lastOp == opId ||
         hist.lastOrigin == change.origin && change.origin &&
         ((change.origin.charAt(0) == "+" && doc.cm && hist.lastTime > time - doc.cm.options.historyEventDelay) ||
          change.origin.charAt(0) == "*"))) {
      // Merge this change into the last event
      var last = lst(cur.changes);
      if (posEq(change.from, change.to) && posEq(change.from, last.to)) {
        // Optimized case for simple insertion -- don't want to add
        // new changesets for every character typed
        last.to = changeEnd(change);
      } else {
        // Add new sub-event
        cur.changes.push(historyChangeFromChange(doc, change));
      }
      cur.anchorAfter = selAfter.anchor; cur.headAfter = selAfter.head;
    } else {
      // Can not be merged, start a new event.
      cur = {changes: [historyChangeFromChange(doc, change)],
             generation: hist.generation,
             anchorBefore: doc.sel.anchor, headBefore: doc.sel.head,
             anchorAfter: selAfter.anchor, headAfter: selAfter.head};
      hist.done.push(cur);
      hist.generation = ++hist.maxGeneration;
      while (hist.done.length > hist.undoDepth)
        hist.done.shift();
    }
    hist.lastTime = time;
    hist.lastOp = opId;
    hist.lastOrigin = change.origin;
  }

  function removeClearedSpans(spans) {
    if (!spans) return null;
    for (var i = 0, out; i < spans.length; ++i) {
      if (spans[i].marker.explicitlyCleared) { if (!out) out = spans.slice(0, i); }
      else if (out) out.push(spans[i]);
    }
    return !out ? spans : out.length ? out : null;
  }

  function getOldSpans(doc, change) {
    var found = change["spans_" + doc.id];
    if (!found) return null;
    for (var i = 0, nw = []; i < change.text.length; ++i)
      nw.push(removeClearedSpans(found[i]));
    return nw;
  }

  // Used both to provide a JSON-safe object in .getHistory, and, when
  // detaching a document, to split the history in two
  function copyHistoryArray(events, newGroup) {
    for (var i = 0, copy = []; i < events.length; ++i) {
      var event = events[i], changes = event.changes, newChanges = [];
      copy.push({changes: newChanges, anchorBefore: event.anchorBefore, headBefore: event.headBefore,
                 anchorAfter: event.anchorAfter, headAfter: event.headAfter});
      for (var j = 0; j < changes.length; ++j) {
        var change = changes[j], m;
        newChanges.push({from: change.from, to: change.to, text: change.text});
        if (newGroup) for (var prop in change) if (m = prop.match(/^spans_(\d+)$/)) {
          if (indexOf(newGroup, Number(m[1])) > -1) {
            lst(newChanges)[prop] = change[prop];
            delete change[prop];
          }
        }
      }
    }
    return copy;
  }

  // Rebasing/resetting history to deal with externally-sourced changes

  function rebaseHistSel(pos, from, to, diff) {
    if (to < pos.line) {
      pos.line += diff;
    } else if (from < pos.line) {
      pos.line = from;
      pos.ch = 0;
    }
  }

  // Tries to rebase an array of history events given a change in the
  // document. If the change touches the same lines as the event, the
  // event, and everything 'behind' it, is discarded. If the change is
  // before the event, the event's positions are updated. Uses a
  // copy-on-write scheme for the positions, to avoid having to
  // reallocate them all on every rebase, but also avoid problems with
  // shared position objects being unsafely updated.
  function rebaseHistArray(array, from, to, diff) {
    for (var i = 0; i < array.length; ++i) {
      var sub = array[i], ok = true;
      for (var j = 0; j < sub.changes.length; ++j) {
        var cur = sub.changes[j];
        if (!sub.copied) { cur.from = copyPos(cur.from); cur.to = copyPos(cur.to); }
        if (to < cur.from.line) {
          cur.from.line += diff;
          cur.to.line += diff;
        } else if (from <= cur.to.line) {
          ok = false;
          break;
        }
      }
      if (!sub.copied) {
        sub.anchorBefore = copyPos(sub.anchorBefore); sub.headBefore = copyPos(sub.headBefore);
        sub.anchorAfter = copyPos(sub.anchorAfter); sub.readAfter = copyPos(sub.headAfter);
        sub.copied = true;
      }
      if (!ok) {
        array.splice(0, i + 1);
        i = 0;
      } else {
        rebaseHistSel(sub.anchorBefore); rebaseHistSel(sub.headBefore);
        rebaseHistSel(sub.anchorAfter); rebaseHistSel(sub.headAfter);
      }
    }
  }

  function rebaseHist(hist, change) {
    var from = change.from.line, to = change.to.line, diff = change.text.length - (to - from) - 1;
    rebaseHistArray(hist.done, from, to, diff);
    rebaseHistArray(hist.undone, from, to, diff);
  }

  // EVENT OPERATORS

  function stopMethod() {e_stop(this);}
  // Ensure an event has a stop method.
  function addStop(event) {
    if (!event.stop) event.stop = stopMethod;
    return event;
  }

  function e_preventDefault(e) {
    if (e.preventDefault) e.preventDefault();
    else e.returnValue = false;
  }
  function e_stopPropagation(e) {
    if (e.stopPropagation) e.stopPropagation();
    else e.cancelBubble = true;
  }
  function e_defaultPrevented(e) {
    return e.defaultPrevented != null ? e.defaultPrevented : e.returnValue == false;
  }
  function e_stop(e) {e_preventDefault(e); e_stopPropagation(e);}
  CodeMirror.e_stop = e_stop;
  CodeMirror.e_preventDefault = e_preventDefault;
  CodeMirror.e_stopPropagation = e_stopPropagation;

  function e_target(e) {return e.target || e.srcElement;}
  function e_button(e) {
    var b = e.which;
    if (b == null) {
      if (e.button & 1) b = 1;
      else if (e.button & 2) b = 3;
      else if (e.button & 4) b = 2;
    }
    if (mac && e.ctrlKey && b == 1) b = 3;
    return b;
  }

  // EVENT HANDLING

  function on(emitter, type, f) {
    if (emitter.addEventListener)
      emitter.addEventListener(type, f, false);
    else if (emitter.attachEvent)
      emitter.attachEvent("on" + type, f);
    else {
      var map = emitter._handlers || (emitter._handlers = {});
      var arr = map[type] || (map[type] = []);
      arr.push(f);
    }
  }

  function off(emitter, type, f) {
    if (emitter.removeEventListener)
      emitter.removeEventListener(type, f, false);
    else if (emitter.detachEvent)
      emitter.detachEvent("on" + type, f);
    else {
      var arr = emitter._handlers && emitter._handlers[type];
      if (!arr) return;
      for (var i = 0; i < arr.length; ++i)
        if (arr[i] == f) { arr.splice(i, 1); break; }
    }
  }

  function signal(emitter, type /*, values...*/) {
    var arr = emitter._handlers && emitter._handlers[type];
    if (!arr) return;
    var args = Array.prototype.slice.call(arguments, 2);
    for (var i = 0; i < arr.length; ++i) arr[i].apply(null, args);
  }

  var delayedCallbacks, delayedCallbackDepth = 0;
  function signalLater(emitter, type /*, values...*/) {
    var arr = emitter._handlers && emitter._handlers[type];
    if (!arr) return;
    var args = Array.prototype.slice.call(arguments, 2);
    if (!delayedCallbacks) {
      ++delayedCallbackDepth;
      delayedCallbacks = [];
      setTimeout(fireDelayed, 0);
    }
    function bnd(f) {return function(){f.apply(null, args);};};
    for (var i = 0; i < arr.length; ++i)
      delayedCallbacks.push(bnd(arr[i]));
  }

  function signalDOMEvent(cm, e, override) {
    signal(cm, override || e.type, cm, e);
    return e_defaultPrevented(e) || e.codemirrorIgnore;
  }

  function fireDelayed() {
    --delayedCallbackDepth;
    var delayed = delayedCallbacks;
    delayedCallbacks = null;
    for (var i = 0; i < delayed.length; ++i) delayed[i]();
  }

  function hasHandler(emitter, type) {
    var arr = emitter._handlers && emitter._handlers[type];
    return arr && arr.length > 0;
  }

  CodeMirror.on = on; CodeMirror.off = off; CodeMirror.signal = signal;

  function eventMixin(ctor) {
    ctor.prototype.on = function(type, f) {on(this, type, f);};
    ctor.prototype.off = function(type, f) {off(this, type, f);};
  }

  // MISC UTILITIES

  // Number of pixels added to scroller and sizer to hide scrollbar
  var scrollerCutOff = 30;

  // Returned or thrown by various protocols to signal 'I'm not
  // handling this'.
  var Pass = CodeMirror.Pass = {toString: function(){return "CodeMirror.Pass";}};

  function Delayed() {this.id = null;}
  Delayed.prototype = {set: function(ms, f) {clearTimeout(this.id); this.id = setTimeout(f, ms);}};

  // Counts the column offset in a string, taking tabs into account.
  // Used mostly to find indentation.
  function countColumn(string, end, tabSize, startIndex, startValue) {
    if (end == null) {
      end = string.search(/[^\s\u00a0]/);
      if (end == -1) end = string.length;
    }
    for (var i = startIndex || 0, n = startValue || 0; i < end; ++i) {
      if (string.charAt(i) == "\t") n += tabSize - (n % tabSize);
      else ++n;
    }
    return n;
  }
  CodeMirror.countColumn = countColumn;

  var spaceStrs = [""];
  function spaceStr(n) {
    while (spaceStrs.length <= n)
      spaceStrs.push(lst(spaceStrs) + " ");
    return spaceStrs[n];
  }

  function lst(arr) { return arr[arr.length-1]; }

  function selectInput(node) {
    if (ios) { // Mobile Safari apparently has a bug where select() is broken.
      node.selectionStart = 0;
      node.selectionEnd = node.value.length;
    } else {
      // Suppress mysterious IE10 errors
      try { node.select(); }
      catch(_e) {}
    }
  }

  function indexOf(collection, elt) {
    if (collection.indexOf) return collection.indexOf(elt);
    for (var i = 0, e = collection.length; i < e; ++i)
      if (collection[i] == elt) return i;
    return -1;
  }

  function createObj(base, props) {
    function Obj() {}
    Obj.prototype = base;
    var inst = new Obj();
    if (props) copyObj(props, inst);
    return inst;
  }

  function copyObj(obj, target) {
    if (!target) target = {};
    for (var prop in obj) if (obj.hasOwnProperty(prop)) target[prop] = obj[prop];
    return target;
  }

  function emptyArray(size) {
    for (var a = [], i = 0; i < size; ++i) a.push(undefined);
    return a;
  }

  function bind(f) {
    var args = Array.prototype.slice.call(arguments, 1);
    return function(){return f.apply(null, args);};
  }

  var nonASCIISingleCaseWordChar = /[\u3040-\u309f\u30a0-\u30ff\u3400-\u4db5\u4e00-\u9fcc\uac00-\ud7af]/;
  function isWordChar(ch) {
    return /\w/.test(ch) || ch > "\x80" &&
      (ch.toUpperCase() != ch.toLowerCase() || nonASCIISingleCaseWordChar.test(ch));
  }

  function isEmpty(obj) {
    for (var n in obj) if (obj.hasOwnProperty(n) && obj[n]) return false;
    return true;
  }

  var isExtendingChar = /[\u0300-\u036F\u0483-\u0487\u0488-\u0489\u0591-\u05BD\u05BF\u05C1-\u05C2\u05C4-\u05C5\u05C7\u0610-\u061A\u064B-\u065F\u0670\u06D6-\u06DC\u06DF-\u06E4\u06E7-\u06E8\u06EA-\u06ED\uA66F\uA670-\uA672\uA674-\uA67D\uA69F\udc00-\udfff]/;

  // DOM UTILITIES

  function elt(tag, content, className, style) {
    var e = document.createElement(tag);
    if (className) e.className = className;
    if (style) e.style.cssText = style;
    if (typeof content == "string") setTextContent(e, content);
    else if (content) for (var i = 0; i < content.length; ++i) e.appendChild(content[i]);
    return e;
  }

  function removeChildren(e) {
    for (var count = e.childNodes.length; count > 0; --count)
      e.removeChild(e.firstChild);
    return e;
  }

  function removeChildrenAndAdd(parent, e) {
    return removeChildren(parent).appendChild(e);
  }

  function setTextContent(e, str) {
    if (ie_lt9) {
      e.innerHTML = "";
      e.appendChild(document.createTextNode(str));
    } else e.textContent = str;
  }

  function getRect(node) {
    return node.getBoundingClientRect();
  }
  CodeMirror.replaceGetRect = function(f) { getRect = f; };

  // FEATURE DETECTION

  // Detect drag-and-drop
  var dragAndDrop = function() {
    // There is *some* kind of drag-and-drop support in IE6-8, but I
    // couldn't get it to work yet.
    if (ie_lt9) return false;
    var div = elt('div');
    return "draggable" in div || "dragDrop" in div;
  }();

  // For a reason I have yet to figure out, some browsers disallow
  // word wrapping between certain characters *only* if a new inline
  // element is started between them. This makes it hard to reliably
  // measure the position of things, since that requires inserting an
  // extra span. This terribly fragile set of tests matches the
  // character combinations that suffer from this phenomenon on the
  // various browsers.
  function spanAffectsWrapping() { return false; }
  if (gecko) // Only for "$'"
    spanAffectsWrapping = function(str, i) {
      return str.charCodeAt(i - 1) == 36 && str.charCodeAt(i) == 39;
    };
  else if (safari && !/Version\/([6-9]|\d\d)\b/.test(navigator.userAgent))
    spanAffectsWrapping = function(str, i) {
      return /\-[^ \-?]|\?[^ !\'\"\),.\-\/:;\?\]\}]/.test(str.slice(i - 1, i + 1));
    };
  else if (webkit && !/Chrome\/(?:29|[3-9]\d|\d\d\d)\./.test(navigator.userAgent))
    spanAffectsWrapping = function(str, i) {
      if (i > 1 && str.charCodeAt(i - 1) == 45) {
        if (/\w/.test(str.charAt(i - 2)) && /[^\-?\.]/.test(str.charAt(i))) return true;
        if (i > 2 && /[\d\.,]/.test(str.charAt(i - 2)) && /[\d\.,]/.test(str.charAt(i))) return false;
      }
      return /[~!#%&*)=+}\]|\"\.>,:;][({[<]|-[^\-?\.\u2010-\u201f\u2026]|\?[\w~`@#$%\^&*(_=+{[|><]|…[\w~`@#$%\^&*(_=+{[><]/.test(str.slice(i - 1, i + 1));
    };

  var knownScrollbarWidth;
  function scrollbarWidth(measure) {
    if (knownScrollbarWidth != null) return knownScrollbarWidth;
    var test = elt("div", null, null, "width: 50px; height: 50px; overflow-x: scroll");
    removeChildrenAndAdd(measure, test);
    if (test.offsetWidth)
      knownScrollbarWidth = test.offsetHeight - test.clientHeight;
    return knownScrollbarWidth || 0;
  }

  var zwspSupported;
  function zeroWidthElement(measure) {
    if (zwspSupported == null) {
      var test = elt("span", "\u200b");
      removeChildrenAndAdd(measure, elt("span", [test, document.createTextNode("x")]));
      if (measure.firstChild.offsetHeight != 0)
        zwspSupported = test.offsetWidth <= 1 && test.offsetHeight > 2 && !ie_lt8;
    }
    if (zwspSupported) return elt("span", "\u200b");
    else return elt("span", "\u00a0", null, "display: inline-block; width: 1px; margin-right: -1px");
  }

  // See if "".split is the broken IE version, if so, provide an
  // alternative way to split lines.
  var splitLines = "\n\nb".split(/\n/).length != 3 ? function(string) {
    var pos = 0, result = [], l = string.length;
    while (pos <= l) {
      var nl = string.indexOf("\n", pos);
      if (nl == -1) nl = string.length;
      var line = string.slice(pos, string.charAt(nl - 1) == "\r" ? nl - 1 : nl);
      var rt = line.indexOf("\r");
      if (rt != -1) {
        result.push(line.slice(0, rt));
        pos += rt + 1;
      } else {
        result.push(line);
        pos = nl + 1;
      }
    }
    return result;
  } : function(string){return string.split(/\r\n?|\n/);};
  CodeMirror.splitLines = splitLines;

  var hasSelection = window.getSelection ? function(te) {
    try { return te.selectionStart != te.selectionEnd; }
    catch(e) { return false; }
  } : function(te) {
    try {var range = te.ownerDocument.selection.createRange();}
    catch(e) {}
    if (!range || range.parentElement() != te) return false;
    return range.compareEndPoints("StartToEnd", range) != 0;
  };

  var hasCopyEvent = (function() {
    var e = elt("div");
    if ("oncopy" in e) return true;
    e.setAttribute("oncopy", "return;");
    return typeof e.oncopy == 'function';
  })();

  // KEY NAMING

  var keyNames = {3: "Enter", 8: "Backspace", 9: "Tab", 13: "Enter", 16: "Shift", 17: "Ctrl", 18: "Alt",
                  19: "Pause", 20: "CapsLock", 27: "Esc", 32: "Space", 33: "PageUp", 34: "PageDown", 35: "End",
                  36: "Home", 37: "Left", 38: "Up", 39: "Right", 40: "Down", 44: "PrintScrn", 45: "Insert",
                  46: "Delete", 59: ";", 91: "Mod", 92: "Mod", 93: "Mod", 109: "-", 107: "=", 127: "Delete",
                  186: ";", 187: "=", 188: ",", 189: "-", 190: ".", 191: "/", 192: "`", 219: "[", 220: "\\",
                  221: "]", 222: "'", 63276: "PageUp", 63277: "PageDown", 63275: "End", 63273: "Home",
                  63234: "Left", 63232: "Up", 63235: "Right", 63233: "Down", 63302: "Insert", 63272: "Delete"};
  CodeMirror.keyNames = keyNames;
  (function() {
    // Number keys
    for (var i = 0; i < 10; i++) keyNames[i + 48] = String(i);
    // Alphabetic keys
    for (var i = 65; i <= 90; i++) keyNames[i] = String.fromCharCode(i);
    // Function keys
    for (var i = 1; i <= 12; i++) keyNames[i + 111] = keyNames[i + 63235] = "F" + i;
  })();

  // BIDI HELPERS

  function iterateBidiSections(order, from, to, f) {
    if (!order) return f(from, to, "ltr");
    var found = false;
    for (var i = 0; i < order.length; ++i) {
      var part = order[i];
      if (part.from < to && part.to > from || from == to && part.to == from) {
        f(Math.max(part.from, from), Math.min(part.to, to), part.level == 1 ? "rtl" : "ltr");
        found = true;
      }
    }
    if (!found) f(from, to, "ltr");
  }

  function bidiLeft(part) { return part.level % 2 ? part.to : part.from; }
  function bidiRight(part) { return part.level % 2 ? part.from : part.to; }

  function lineLeft(line) { var order = getOrder(line); return order ? bidiLeft(order[0]) : 0; }
  function lineRight(line) {
    var order = getOrder(line);
    if (!order) return line.text.length;
    return bidiRight(lst(order));
  }

  function lineStart(cm, lineN) {
    var line = getLine(cm.doc, lineN);
    var visual = visualLine(cm.doc, line);
    if (visual != line) lineN = lineNo(visual);
    var order = getOrder(visual);
    var ch = !order ? 0 : order[0].level % 2 ? lineRight(visual) : lineLeft(visual);
    return Pos(lineN, ch);
  }
  function lineEnd(cm, lineN) {
    var merged, line;
    while (merged = collapsedSpanAtEnd(line = getLine(cm.doc, lineN)))
      lineN = merged.find().to.line;
    var order = getOrder(line);
    var ch = !order ? line.text.length : order[0].level % 2 ? lineLeft(line) : lineRight(line);
    return Pos(lineN, ch);
  }

  function compareBidiLevel(order, a, b) {
    var linedir = order[0].level;
    if (a == linedir) return true;
    if (b == linedir) return false;
    return a < b;
  }
  var bidiOther;
  function getBidiPartAt(order, pos) {
    for (var i = 0, found; i < order.length; ++i) {
      var cur = order[i];
      if (cur.from < pos && cur.to > pos) { bidiOther = null; return i; }
      if (cur.from == pos || cur.to == pos) {
        if (found == null) {
          found = i;
        } else if (compareBidiLevel(order, cur.level, order[found].level)) {
          bidiOther = found;
          return i;
        } else {
          bidiOther = i;
          return found;
        }
      }
    }
    bidiOther = null;
    return found;
  }

  function moveInLine(line, pos, dir, byUnit) {
    if (!byUnit) return pos + dir;
    do pos += dir;
    while (pos > 0 && isExtendingChar.test(line.text.charAt(pos)));
    return pos;
  }

  // This is somewhat involved. It is needed in order to move
  // 'visually' through bi-directional text -- i.e., pressing left
  // should make the cursor go left, even when in RTL text. The
  // tricky part is the 'jumps', where RTL and LTR text touch each
  // other. This often requires the cursor offset to move more than
  // one unit, in order to visually move one unit.
  function moveVisually(line, start, dir, byUnit) {
    var bidi = getOrder(line);
    if (!bidi) return moveLogically(line, start, dir, byUnit);
    var pos = getBidiPartAt(bidi, start), part = bidi[pos];
    var target = moveInLine(line, start, part.level % 2 ? -dir : dir, byUnit);

    for (;;) {
      if (target > part.from && target < part.to) return target;
      if (target == part.from || target == part.to) {
        if (getBidiPartAt(bidi, target) == pos) return target;
        part = bidi[pos += dir];
        return (dir > 0) == part.level % 2 ? part.to : part.from;
      } else {
        part = bidi[pos += dir];
        if (!part) return null;
        if ((dir > 0) == part.level % 2)
          target = moveInLine(line, part.to, -1, byUnit);
        else
          target = moveInLine(line, part.from, 1, byUnit);
      }
    }
  }

  function moveLogically(line, start, dir, byUnit) {
    var target = start + dir;
    if (byUnit) while (target > 0 && isExtendingChar.test(line.text.charAt(target))) target += dir;
    return target < 0 || target > line.text.length ? null : target;
  }

  // Bidirectional ordering algorithm
  // See http://unicode.org/reports/tr9/tr9-13.html for the algorithm
  // that this (partially) implements.

  // One-char codes used for character types:
  // L (L):   Left-to-Right
  // R (R):   Right-to-Left
  // r (AL):  Right-to-Left Arabic
  // 1 (EN):  European Number
  // + (ES):  European Number Separator
  // % (ET):  European Number Terminator
  // n (AN):  Arabic Number
  // , (CS):  Common Number Separator
  // m (NSM): Non-Spacing Mark
  // b (BN):  Boundary Neutral
  // s (B):   Paragraph Separator
  // t (S):   Segment Separator
  // w (WS):  Whitespace
  // N (ON):  Other Neutrals

  // Returns null if characters are ordered as they appear
  // (left-to-right), or an array of sections ({from, to, level}
  // objects) in the order in which they occur visually.
  var bidiOrdering = (function() {
    // Character types for codepoints 0 to 0xff
    var lowTypes = "bbbbbbbbbtstwsbbbbbbbbbbbbbbssstwNN%%%NNNNNN,N,N1111111111NNNNNNNLLLLLLLLLLLLLLLLLLLLLLLLLLNNNNNNLLLLLLLLLLLLLLLLLLLLLLLLLLNNNNbbbbbbsbbbbbbbbbbbbbbbbbbbbbbbbbb,N%%%%NNNNLNNNNN%%11NLNNN1LNNNNNLLLLLLLLLLLLLLLLLLLLLLLNLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLNLLLLLLLL";
    // Character types for codepoints 0x600 to 0x6ff
    var arabicTypes = "rrrrrrrrrrrr,rNNmmmmmmrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrmmmmmmmmmmmmmmrrrrrrrnnnnnnnnnn%nnrrrmrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrmmmmmmmmmmmmmmmmmmmNmmmmrrrrrrrrrrrrrrrrrr";
    function charType(code) {
      if (code <= 0xff) return lowTypes.charAt(code);
      else if (0x590 <= code && code <= 0x5f4) return "R";
      else if (0x600 <= code && code <= 0x6ff) return arabicTypes.charAt(code - 0x600);
      else if (0x700 <= code && code <= 0x8ac) return "r";
      else return "L";
    }

    var bidiRE = /[\u0590-\u05f4\u0600-\u06ff\u0700-\u08ac]/;
    var isNeutral = /[stwN]/, isStrong = /[LRr]/, countsAsLeft = /[Lb1n]/, countsAsNum = /[1n]/;
    // Browsers seem to always treat the boundaries of block elements as being L.
    var outerType = "L";

    return function(str) {
      if (!bidiRE.test(str)) return false;
      var len = str.length, types = [];
      for (var i = 0, type; i < len; ++i)
        types.push(type = charType(str.charCodeAt(i)));

      // W1. Examine each non-spacing mark (NSM) in the level run, and
      // change the type of the NSM to the type of the previous
      // character. If the NSM is at the start of the level run, it will
      // get the type of sor.
      for (var i = 0, prev = outerType; i < len; ++i) {
        var type = types[i];
        if (type == "m") types[i] = prev;
        else prev = type;
      }

      // W2. Search backwards from each instance of a European number
      // until the first strong type (R, L, AL, or sor) is found. If an
      // AL is found, change the type of the European number to Arabic
      // number.
      // W3. Change all ALs to R.
      for (var i = 0, cur = outerType; i < len; ++i) {
        var type = types[i];
        if (type == "1" && cur == "r") types[i] = "n";
        else if (isStrong.test(type)) { cur = type; if (type == "r") types[i] = "R"; }
      }

      // W4. A single European separator between two European numbers
      // changes to a European number. A single common separator between
      // two numbers of the same type changes to that type.
      for (var i = 1, prev = types[0]; i < len - 1; ++i) {
        var type = types[i];
        if (type == "+" && prev == "1" && types[i+1] == "1") types[i] = "1";
        else if (type == "," && prev == types[i+1] &&
                 (prev == "1" || prev == "n")) types[i] = prev;
        prev = type;
      }

      // W5. A sequence of European terminators adjacent to European
      // numbers changes to all European numbers.
      // W6. Otherwise, separators and terminators change to Other
      // Neutral.
      for (var i = 0; i < len; ++i) {
        var type = types[i];
        if (type == ",") types[i] = "N";
        else if (type == "%") {
          for (var end = i + 1; end < len && types[end] == "%"; ++end) {}
          var replace = (i && types[i-1] == "!") || (end < len - 1 && types[end] == "1") ? "1" : "N";
          for (var j = i; j < end; ++j) types[j] = replace;
          i = end - 1;
        }
      }

      // W7. Search backwards from each instance of a European number
      // until the first strong type (R, L, or sor) is found. If an L is
      // found, then change the type of the European number to L.
      for (var i = 0, cur = outerType; i < len; ++i) {
        var type = types[i];
        if (cur == "L" && type == "1") types[i] = "L";
        else if (isStrong.test(type)) cur = type;
      }

      // N1. A sequence of neutrals takes the direction of the
      // surrounding strong text if the text on both sides has the same
      // direction. European and Arabic numbers act as if they were R in
      // terms of their influence on neutrals. Start-of-level-run (sor)
      // and end-of-level-run (eor) are used at level run boundaries.
      // N2. Any remaining neutrals take the embedding direction.
      for (var i = 0; i < len; ++i) {
        if (isNeutral.test(types[i])) {
          for (var end = i + 1; end < len && isNeutral.test(types[end]); ++end) {}
          var before = (i ? types[i-1] : outerType) == "L";
          var after = (end < len - 1 ? types[end] : outerType) == "L";
          var replace = before || after ? "L" : "R";
          for (var j = i; j < end; ++j) types[j] = replace;
          i = end - 1;
        }
      }

      // Here we depart from the documented algorithm, in order to avoid
      // building up an actual levels array. Since there are only three
      // levels (0, 1, 2) in an implementation that doesn't take
      // explicit embedding into account, we can build up the order on
      // the fly, without following the level-based algorithm.
      var order = [], m;
      for (var i = 0; i < len;) {
        if (countsAsLeft.test(types[i])) {
          var start = i;
          for (++i; i < len && countsAsLeft.test(types[i]); ++i) {}
          order.push({from: start, to: i, level: 0});
        } else {
          var pos = i, at = order.length;
          for (++i; i < len && types[i] != "L"; ++i) {}
          for (var j = pos; j < i;) {
            if (countsAsNum.test(types[j])) {
              if (pos < j) order.splice(at, 0, {from: pos, to: j, level: 1});
              var nstart = j;
              for (++j; j < i && countsAsNum.test(types[j]); ++j) {}
              order.splice(at, 0, {from: nstart, to: j, level: 2});
              pos = j;
            } else ++j;
          }
          if (pos < i) order.splice(at, 0, {from: pos, to: i, level: 1});
        }
      }
      if (order[0].level == 1 && (m = str.match(/^\s+/))) {
        order[0].from = m[0].length;
        order.unshift({from: 0, to: m[0].length, level: 0});
      }
      if (lst(order).level == 1 && (m = str.match(/\s+$/))) {
        lst(order).to -= m[0].length;
        order.push({from: len - m[0].length, to: len, level: 0});
      }
      if (order[0].level != lst(order).level)
        order.push({from: len, to: len, level: order[0].level});

      return order;
    };
  })();

  // THE END

  CodeMirror.version = "3.15.0";

  return CodeMirror;
})();
PK`x1\Pg�DN�N�"plugin-fw/assets/js/yith-fields.jsnu�[���/* globals yith_framework_fw_fields, wp */
( function ( $ ) {

	/* Upload */
	var uploadHandler = {
		selectors         : {
			imgPreview  : '.yith-plugin-fw-upload-img-preview',
			uploadButton: '.yith-plugin-fw-upload-button',
			imgUrl      : '.yith-plugin-fw-upload-img-url',
			resetButton : '.yith-plugin-fw-upload-button-reset'
		},
		onImageChange     : function () {
			var url        = $( this ).val(),
				imageRegex = new RegExp( "(http|ftp|https)://[a-zA-Z0-9@?^=%&amp;:/~+#-_.]*.(gif|jpg|jpeg|png|ico|svg)" ),
				preview    = $( this ).parent().find( uploadHandler.selectors.imgPreview ).first();

			if ( preview.length < 1 ) {
				preview = $( this ).parent().parent().find( uploadHandler.selectors.imgPreview ).first();
			}

			if ( imageRegex.test( url ) ) {
				preview.html( '<img src="' + url + '" style="max-width:100px; max-height:100px;" />' );
			} else {
				preview.html( '' );
			}
		},
		onButtonClick     : function ( e ) {
			e.preventDefault();

			var button = $( this ),
				custom_uploader,
				id     = button.attr( 'id' ).replace( /-button$/, '' ).replace( /(\[|\])/g, '\\$1' );

			// If the uploader object has already been created, reopen the dialog
			if ( custom_uploader ) {
				custom_uploader.open();
				return;
			}

			var custom_uploader_states = [
				new wp.media.controller.Library(
					{
						library   : wp.media.query(),
						multiple  : false,
						title     : 'Choose Image',
						priority  : 20,
						filterable: 'uploaded'
					}
				)
			];

			// Create the media frame.
			custom_uploader = wp.media.frames.downloadable_file = wp.media(
				{
					// Set the title of the modal.
					title   : 'Choose Image',
					library : {
						type: ''
					},
					button  : {
						text: 'Choose Image'
					},
					multiple: false,
					states  : custom_uploader_states
				}
			);

			// When a file is selected, grab the URL and set it as the text field's value
			custom_uploader.on( 'select', function () {
				var attachment      = custom_uploader.state().get( 'selection' ).first().toJSON(),
					attachmentField = $( "#" + id + "-yith-attachment-id" );

				$( "#" + id ).val( attachment.url );
				// Save the id of the selected element to an element which name is the same with a suffix "-yith-attachment-id"
				if ( attachmentField.length ) {
					attachmentField.val( attachment.id );
				}
				uploadHandler.triggerImageChange();
			} );

			custom_uploader.open();
		},
		onResetClick      : function () {
			var button        = $( this ),
				id            = button.attr( 'id' ).replace( /(\[|\])/g, '\\$1' ),
				input_id      = button.attr( 'id' ).replace( /-button-reset$/, '' ).replace( /(\[|\])/g, '\\$1' ),
				default_value = $( '#' + id ).data( 'default' );

			$( "#" + input_id ).val( default_value );
			uploadHandler.triggerImageChange();
		},
		triggerImageChange: function () {
			$( uploadHandler.selectors.imgUrl ).trigger( 'change' );
		},
		initOnce          : function () {
			if ( typeof wp !== 'undefined' && typeof wp.media !== 'undefined' ) {
				$( document ).on( 'change', uploadHandler.selectors.imgUrl, uploadHandler.onImageChange );

				$( document ).on( 'click', uploadHandler.selectors.uploadButton, uploadHandler.onButtonClick );

				$( document ).on( 'click', uploadHandler.selectors.resetButton, uploadHandler.onResetClick );
			}
		}
	};

	uploadHandler.initOnce();

	var imageGallery = {
		selectors: {
			gallery       : '.yith-plugin-fw-image-gallery',
			notInitGallery: '.yith-plugin-fw-image-gallery:not(.yith-plugin-fw-image-gallery--initialized)',
			button        : '.yith-plugin-fw-image-gallery .image-gallery-button',
			slideWrapper  : 'ul.slides-wrapper'
		},
		initOnce : function () {
			if ( typeof wp !== 'undefined' && typeof wp.media !== 'undefined' ) {
				$( document ).on( 'click', imageGallery.selectors.button, function ( e ) {
					var button               = $( this ),
						gallery              = button.closest( imageGallery.selectors.gallery ),
						imageGalleryIDsField = gallery.find( '.image_gallery_ids' ),
						attachmentIDs        = imageGalleryIDsField.val(),
						wrapper              = gallery.find( 'ul.slides-wrapper' );

					// Create the media frame.
					var imageGalleryFrame = wp.media.frames.image_gallery = wp.media(
						{
							// Set the title of the modal.
							title : button.data( 'choose' ),
							button: {
								text: button.data( 'update' )
							},
							states: [
								new wp.media.controller.Library(
									{
										title     : button.data( 'choose' ),
										filterable: 'all',
										multiple  : true
									}
								)
							]
						}
					);

					// When an image is selected, run a callback.
					imageGalleryFrame.on( 'select', function () {
						var selection = imageGalleryFrame.state().get( 'selection' );
						selection.map( function ( attachment ) {
							attachment = attachment.toJSON();

							if ( attachment.id ) {
								attachmentIDs           = attachmentIDs ? attachmentIDs + "," + attachment.id : attachment.id;
								var attachmentImageData = attachment.sizes.thumbnail || attachment.sizes.medium || attachment.sizes.large || attachment.sizes.full;
								wrapper.append( '<li class="image" data-attachment_id="' + attachment.id + '"><img src="' + attachmentImageData.url + '"/><ul class="actions"><li><a href="#" class="delete" title="' + button.data( 'delete' ) + '">x</a></li></ul></li>' );
							}
						} );

						imageGalleryIDsField.val( attachmentIDs );
						imageGalleryIDsField.trigger( 'change' );
					} );

					imageGalleryFrame.open();

				} );
			}
		},
		init     : function () {
			if ( typeof wp !== 'undefined' && typeof wp.media !== 'undefined' ) {
				$( imageGallery.selectors.notInitGallery ).each( function () {
					$( this ).addClass( 'yith-plugin-fw-image-gallery--initialized' );
					var slideWrappers = $( this ).find( imageGallery.selectors.slideWrapper );

					// Image ordering
					slideWrappers.each( function () {
						var currentSlideWrapper = $( this );
						currentSlideWrapper.sortable( {
														  items               : 'li.image',
														  cursor              : 'move',
														  scrollSensitivity   : 40,
														  forcePlaceholderSize: true,
														  forceHelperSize     : false,
														  helper              : 'clone',
														  opacity             : 0.65,
														  start               : function ( event, ui ) {
															  ui.item.css( 'background-color', '#f6f6f6' );
														  },
														  stop                : function ( event, ui ) {
															  ui.item.removeAttr( 'style' );
														  },
														  update              : function ( event, ui ) {
															  var attachment_ids = '';

															  currentSlideWrapper.find( 'li.image' ).css( 'cursor', 'default' ).each( function () {
																  var attachment_id = $( this ).attr( 'data-attachment_id' );
																  attachment_ids    = attachment_ids + attachment_id + ',';
															  } );

															  currentSlideWrapper.closest( imageGallery.selectors.gallery ).find( '.image_gallery_ids' ).val( attachment_ids );
														  }
													  } );
					} );

					// Remove images
					slideWrappers.on( 'click', 'a.delete', function ( e ) {
						e.preventDefault();
						var _wrapper              = $( this ).closest( imageGallery.selectors.gallery ),
							_slideWrapper         = _wrapper.find( 'ul.slides-wrapper' ),
							_imageGalleryIDsField = _wrapper.find( '.image_gallery_ids' ),
							_attachmentIDs        = '';

						$( this ).closest( 'li.image' ).remove();

						_slideWrapper.find( 'li.image' ).css( 'cursor', 'default' ).each( function () {
							var attachment_id = $( this ).attr( 'data-attachment_id' );
							_attachmentIDs    = _attachmentIDs + attachment_id + ',';
						} );

						_imageGalleryIDsField.val( _attachmentIDs );
					} );
				} )
			}
		}
	};
	imageGallery.initOnce();


	// Codemirror.
	$( function () {
		var codemirrorInit = function () {
			if ( typeof wp !== 'undefined' && typeof wp.codeEditor !== 'undefined' ) {
				$( '.codemirror:not(.codemirror--initialized)' ).each( function () {
					var settings = $( this ).data( 'settings' ),
						editor   = wp.codeEditor.initialize( $( this ), settings );

					$( this ).addClass( 'codemirror--initialized' );
					$( this ).data( 'codemirrorInstance', editor );
				} );
			}
		};
		$( document ).on( 'yith-plugin-fw-codemirror-init', codemirrorInit ).trigger( 'yith-plugin-fw-codemirror-init' );
	} );

	var yith_fields_init = function () {
		var $datepicker  = $( '.yith-plugin-fw-datepicker:not(.yith-plugin-fw-datepicker--initialized)' ),
			$colorpicker = $( '.yith-plugin-fw-colorpicker:not(.yith-plugin-fw-colorpicker--initialized)' ),
			$sidebars    = $( '.yith-plugin-fw-sidebar-layout:not(.yith-plugin-fw-sidebar-layout--initialized)' ),
			$slider      = $( '.yith-plugin-fw-slider-container:not(.yith-plugin-fw-slider-container--initialized)' ),
			$icons       = $( '.yit-icons-manager-wrapper:not(.yit-icons-manager-wrapper--initialized)' );

		/* Datepicker */
		$datepicker.each( function () {
			$( this ).addClass( 'yith-plugin-fw-datepicker--initialized' );

			var currentDatePicker = $( this ),
				args              = currentDatePicker.data(),
				icon              = currentDatePicker.next( '.yith-icon-calendar' );

			// set animation to false to prevent style 'glitches' when removing class on closing
			args.showAnim   = false;
			args.beforeShow = function ( input, instance ) {
				instance.dpDiv.addClass( 'yith-plugin-fw-datepicker-div' );
			};
			args.onClose    = function ( selectedDate, instance ) {
				instance.dpDiv.removeClass( 'yith-plugin-fw-datepicker-div' );
			};

			currentDatePicker.datepicker( args );
			if ( icon ) {
				icon.on( 'click', function () {
					currentDatePicker.datepicker( 'show' );
				} )
			}
		} );

		/* Colorpicker */
		$colorpicker.each( function () {
			$( this ).addClass( 'yith-plugin-fw-colorpicker--initialized' );

			$( this ).wpColorPicker(
				{
					palettes: false,
					width   : 200,
					mode    : 'hsl',
					clear   : function () {
						var input = $( this );
						input.val( input.data( 'default-color' ) );
						input.trigger( 'change' );
					}
				}
			);

			var select_label = $( this ).data( 'variations-label' ),
				wrap_main1   = $( this ).closest( '.yith-plugin-fw-colorpicker-field-wrapper' ),
				wrap_main2   = $( this ).closest( '.yith-single-colorpicker' ),
				wrap1        = wrap_main1.find( '.wp-picker-input-wrap' ),
				wrap2        = wrap_main2.find( '.wp-picker-input-wrap' );

			wrap1.length && wrap_main1.find( 'a.wp-color-result' ).attr( 'title', select_label );
			wrap_main2.length && wrap_main2.find( 'a.wp-color-result' ).attr( 'title', select_label );

			if ( !wrap1.find( '.wp-picker-default-custom' ).length ) {
				var button = $( '<span/>' ).attr( {
													  class: 'wp-picker-default-custom'
												  } );
				wrap1.find( '.wp-picker-default' ).wrap( button );
			}

			if ( !wrap2.find( '.wp-picker-default-custom' ).length ) {
				var button = $( '<span/>' ).attr( {
													  class: 'wp-picker-default-custom'
												  } );
				wrap2.find( '.wp-picker-default' ).wrap( button );
			}
		} );

		/* Sidebars */
		$sidebars.each( function () {
			$( this ).addClass( 'yith-plugin-fw-sidebar-layout--initialized' );
			var $images = $( this ).find( 'img' );
			$images.on( 'click', function () {
				var $container = $( this ).closest( '.yith-plugin-fw-sidebar-layout' ),
					$left      = $container.find( '.yith-plugin-fw-sidebar-layout-sidebar-left-container' ),
					$right     = $container.find( '.yith-plugin-fw-sidebar-layout-sidebar-right-container' ),
					type       = $( this ).data( 'type' );

				$( this ).parent().children( ':radio' ).attr( 'checked', false );
				$( this ).prev( ':radio' ).attr( 'checked', true );

				if ( typeof type != 'undefined' ) {
					switch ( type ) {
						case 'left':
							$left.show();
							$right.hide();
							break;
						case 'right':
							$right.show();
							$left.hide();
							break;
						case 'double':
							$left.show();
							$right.show();
							break;
						default:
							$left.hide();
							$right.hide();
							break;
					}
				}
			} );
		} );

		/* Slider */
		$slider.each( function () {
			$( this ).addClass( 'yith-plugin-fw-slider-container--initialized' );
			var theSlider = $( this ).find( '.ui-slider-horizontal' ),
				val       = theSlider.data( 'val' ),
				minValue  = theSlider.data( 'min' ),
				maxValue  = theSlider.data( 'max' ),
				step      = theSlider.data( 'step' ),
				labels    = theSlider.data( 'labels' );

			theSlider.slider( {
								  value: val,
								  min  : minValue,
								  max  : maxValue,
								  range: 'min',
								  step : step,

								  create: function () {
									  $( this ).find( '.ui-slider-handle' ).text( $( this ).slider( "value" ) );
								  },


								  slide: function ( event, ui ) {
									  $( this ).find( 'input' ).val( ui.value ).trigger( 'change' );
									  $( this ).find( '.ui-slider-handle' ).text( ui.value );
									  $( this ).siblings( '.feedback' ).find( 'strong' ).text( ui.value + labels );
								  }
							  } );
		} );

		$icons.each( function () {
			$( this ).addClass( 'yit-icons-manager-wrapper--initialized' );
			var $container = $( this ),
				$preview   = $container.find( '.yit-icons-manager-icon-preview' ).first(),
				$text      = $container.find( '.yit-icons-manager-icon-text' );

			$container.on( 'click', '.yit-icons-manager-list li', function ( event ) {
				var $target = $( event.target ).closest( 'li' ),
					font    = $target.data( 'font' ),
					icon    = $target.data( 'icon' ),
					key     = $target.data( 'key' ),
					name    = $target.data( 'name' );

				$preview.attr( 'data-font', font );
				$preview.attr( 'data-icon', icon );
				$preview.attr( 'data-key', key );
				$preview.attr( 'data-name', name );

				$text.val( font + ':' + name );

				$container.find( '.yit-icons-manager-list li' ).removeClass( 'active' );
				$target.addClass( 'active' );
			} );

			$container.on( 'click', '.yit-icons-manager-action-set-default', function () {
				$container.find( '.yit-icons-manager-list li.default' ).trigger( 'click' );
			} );
		} );

		$( document ).find( '.ui-sortable .yith-toggle-elements' ).sortable(
			{
				cursor              : 'move',
				axis                : 'y',
				scrollSensitivity   : 40,
				forcePlaceholderSize: true,
				helper              : 'clone',

				stop: function ( event, ui ) {
					var keys       = jQuery( '.ui-sortable-handle' ),
						i          = 0,
						array_keys = new Array();
					for ( i = 0; i < keys.length; i++ ) {
						array_keys[ i ] = $( keys[ i ] ).data( 'item_key' );
					}
					if ( array_keys.length > 0 ) {
						var toggle = $( this ).closest( '.toggle-element' );
						toggle.saveToggleElement( null, array_keys );
					}
				}
			}
		);

		$( document.body ).trigger( 'wc-enhanced-select-init' );
		$( document.body ).trigger( 'yith-framework-enhanced-select-init' );
		$( document ).trigger( 'yith-plugin-fw-codemirror-init' );
		uploadHandler.triggerImageChange();
		imageGallery.init();
	};

	$( document ).on( 'yith_fields_init', yith_fields_init ).trigger( 'yith_fields_init' );

	/** Select Images */
	$( document ).on( 'click', '.yith-plugin-fw-select-images__item', function () {
		var item    = $( this ),
			key     = item.data( 'key' ),
			wrapper = item.closest( '.yith-plugin-fw-select-images__wrapper' ),
			items   = wrapper.find( '.yith-plugin-fw-select-images__item' ),
			select  = wrapper.find( 'select' ).first();

		if ( select.length ) {
			select.val( key ).trigger( 'yith_select_images_value_changed' ).trigger( 'change' );
			items.removeClass( 'yith-plugin-fw-select-images__item--selected' );
			item.addClass( 'yith-plugin-fw-select-images__item--selected' );
		}
	} );

	/* Select All - Deselect All */
	$( document ).on( 'click', '.yith-plugin-fw-select-all', function () {
		var $targetSelect = $( '#' + $( this ).data( 'select-id' ) );
		$targetSelect.find( 'option' ).prop( 'selected', true ).trigger( 'change' );
	} );

	$( document ).on( 'click', '.yith-plugin-fw-deselect-all', function () {
		var $targetSelect = $( '#' + $( this ).data( 'select-id' ) );
		$targetSelect.find( 'option' ).prop( 'selected', false ).trigger( 'change' );
	} );

	/* on-off */
	$( document ).on( 'click', '.yith-plugin-fw-onoff-container span', function () {
		var input    = $( this ).prev( 'input' ),
			disabled = input.prop( 'disabled' );

		if ( disabled ) {
			return;
		}

		input.trigger( 'click' );
	} );

	// Useful for triggering deps when clicking on field label.
	$( document ).on( 'click', '.yith-plugin-fw-onoff-container input', function ( e ) {
		if ( $( this ).is( ':checked' ) ) {
			$( this ).attr( 'value', 'yes' ).addClass( 'onoffchecked' );
		} else {
			$( this ).attr( 'value', 'no' ).removeClass( 'onoffchecked' );
		}
	} );


	/** Toggle **/


	//TOGGLE ELEMENT
	$.fn.saveToggleElement = function ( spinner, array_keys ) {
		var toggle      = $( this ),
			action      = 'yith_plugin_fw_save_toggle_element',
			formdata    = toggle.serializeToggleElement(),
			wrapper     = toggle.find( '.yith-toggle_wrapper' ),
			id          = wrapper.attr( 'id' ),
			current_tab = $.urlParam( 'tab' );

		formdata.append( 'security', wrapper.data( 'nonce' ) );

		if ( typeof array_keys != 'undefined' && array_keys.length > 0 ) {
			formdata.append( 'yith_toggle_elements_order_keys', array_keys );
		}

		if ( toggle.closest( '.metaboxes-tab.yith-plugin-ui' ).length ) {
			action              = 'yith_plugin_fw_save_toggle_element_metabox';
			post_id             = $( this ).closest( 'form#post' ).find( '#post_ID' ).val();
			yit_metaboxes_nonce = $( this ).closest( 'form#post' ).find( '#yit_metaboxes_nonce' ).val();
			metabox_tab         = $( this ).closest( '.tabs-panel' ).attr( 'id' );
			url                 = yith_framework_fw_fields.ajax_url +
								  '?action=' + action +
								  "&post_ID=" + post_id +
								  '&yit_metaboxes_nonce=' + yit_metaboxes_nonce +
								  "&toggle_id=" + id +
								  "&metabox_tab=" + metabox_tab;
		} else {
			url = yith_framework_fw_fields.admin_url + '?action=' + action + '&tab=' + current_tab + "&toggle_id=" + id;
		}

		$.ajax( {
					type       : "POST",
					url        : url,
					data       : formdata,
					contentType: false,
					processData: false,
					success    : function ( result ) {
						if ( spinner ) {
							spinner.removeClass( 'show' );
						}

						$( document ).trigger( 'yith_save_toggle_element_done', [result, toggle] );
					}
				} );
	};

	$.fn.serializeToggleElement = function () {
		var obj = $( this );
		/* ADD FILE TO PARAM AJAX */
		var formData = new FormData();
		var params   = $( obj ).find( ":input" ).serializeArray();

		$.each( params, function ( i, val ) {
			el_name = val.name;
			formData.append( val.name, val.value );
		} );

		return formData;
	};

	$.fn.formatToggleTitle = function () {
		var toggle_el = $( this ),
			fields    = toggle_el.find( ':input' ),
			title     = toggle_el.find( 'span.title' ).data( 'title_format' ),
			subtitle  = toggle_el.find( '.subtitle' ).data( 'subtitle_format' ),
			regExp    = new RegExp( "[^%%]+(?=[%%])", 'g' );

		if ( typeof title != 'undefined' ) {
			var res = title.match( regExp );
		}

		if ( typeof subtitle != 'undefined' ) {
			var ressub = subtitle.match( regExp );
		}

		$.each( fields, function ( i, field ) {
			if ( typeof $( field ).attr( 'id' ) != 'undefined' ) {
				$field_id    = $( field ).attr( 'id' );
				$field_array = $field_id.split( '_' );
				$field_array.pop();
				$field_id  = $field_array.join( '_' );
				$field_val = $( field ).val();

				if ( res != null && typeof res != 'undefined' && res.indexOf( $field_id ) !== -1 ) {
					title = title.replace( '%%' + $field_id + '%%', $field_val );
				}
				if ( ressub != null && typeof ressub != 'undefined' && ressub.indexOf( $field_id ) !== -1 ) {
					subtitle = subtitle.replace( '%%' + $field_id + '%%', $field_val );
				}
			}
		} );

		if ( '' !== title ) {
			toggle_el.find( 'span.title' ).html( title );
		}

		if ( '' !== subtitle ) {
			toggle_el.find( '.subtitle' ).html( subtitle );
		}

		$( document ).trigger( 'yith-toggle-element-item-title', [toggle_el] );
	};

	$.urlParam = function ( name ) {
		var results = new RegExp( '[\?&]' + name + '=([^&#]*)' )
			.exec( window.location.search );

		return ( results !== null ) ? results[ 1 ] || 0 : false;
	};

	$( document ).on( 'click', '.yith-toggle-title', function ( event ) {
		var _toggle  = $( event.target ),
			_section = _toggle.closest( '.yith-toggle-row' ),
			_content = _section.find( '.yith-toggle-content' );

		if ( _toggle.hasClass( 'yith-plugin-fw-onoff' ) || _toggle.hasClass( 'yith-icon-drag' ) ) {
			return false;
		}

		if ( _section.is( '.yith-toggle-row-opened' ) ) {
			_content.slideUp( 400 );
		} else {
			_content.slideDown( 400 );
		}
		_section.toggleClass( 'yith-toggle-row-opened' );
	} );

	/**Add new box toggle**/
	$( document ).on( 'click', '.yith-add-box-button', function ( event ) {
		event.preventDefault();
		var $this        = $( this ),
			target_id    = $this.data( 'box_id' ),
			closed_label = $this.data( 'closed_label' ),
			label        = $this.data( 'opened_label' ),
			id           = $this.closest( '.yith-toggle_wrapper' ).attr( 'id' ),
			template     = wp.template( 'yith-toggle-element-add-box-content-' + id );

		if ( '' !== target_id ) {
			$( '#' + target_id ).html( template( { index: 'box_id' } ) ).slideToggle();
			if ( closed_label !== '' ) {
				if ( $this.html() === closed_label ) {
					$this.html( label ).removeClass( 'closed' );
				} else {
					$this.html( closed_label ).addClass( 'closed' );
				}
			}

			$( document ).trigger( 'yith_fields_init' );
			$( document ).trigger( 'yith-add-box-button-toggle', [$this] );
		}
	} );

	$( document ).on( 'click', '.yith-add-box-buttons .yith-save-button', function ( event ) {

		event.preventDefault();
		var add_box        = $( this ).parents( '.yith-add-box' ),
			id             = $( this ).closest( '.yith-toggle_wrapper' ).attr( 'id' ),
			spinner        = add_box.find( '.spinner' ),
			toggle_element = $( this ).parents( '.toggle-element' ),
			fields         = add_box.find( ':input' ),
			counter        = 0,
			hidden_obj     = $( '<input type="hidden">' );

		toggle_element.find( '.yith-toggle-row' ).each( function () {
			var key = parseInt( $( this ).data( 'item_key' ) );
			if ( counter <= key ) {
				counter = key + 1;
			}
		} );

		hidden_obj.val( counter );

		$( document ).trigger( 'yith-toggle-change-counter', [hidden_obj, add_box] );

		counter       = hidden_obj.val();
		var template  = wp.template( 'yith-toggle-element-item-' + id ),
			toggle_el = $( template( { index: counter } ) );

		spinner.addClass( 'show' );

		$.each( fields, function ( i, field ) {
			if ( typeof $( field ).attr( 'id' ) !== 'undefined' ) {

				var _field_id  = $( field ).attr( 'id' ),
					_field_val = $( field ).val();

				if ( 'radio' === $( field ).attr( 'type' ) ) {
					_field_id = $( field ).closest( '.yith-plugin-fw-radio' ).attr( 'id' );
					_field_id = _field_id.replace( 'new_', '' ) + '_' + counter;
					_field_id = _field_id + '-' + _field_val;
				} else {
					_field_id = _field_id.replace( 'new_', '' ) + '_' + counter;
				}

				if ( $( field ).is( ':checked' ) ) {
					$( toggle_el ).find( '#' + _field_id ).prop( 'checked', true );
				}

				if ( $( field ).hasClass( 'yith-post-search' ) || $( field ).hasClass( 'yith-term-search' ) ) {
					$( toggle_el ).find( '#' + _field_id ).html( $( '#' + $( field ).attr( 'id' ) ).html() );
				}

				$( toggle_el ).find( '#' + _field_id ).val( _field_val );

			}

		} );

		$( toggle_el ).formatToggleTitle();
		var form_is_valid = $( '<input type="hidden">' ).val( 'yes' );
		$( document ).trigger( 'yith-toggle-element-item-before-add', [add_box, toggle_el, form_is_valid] );

		var delayInMilliseconds = 1000; //1 second
		setTimeout( function () {
			if ( form_is_valid.val() === 'yes' ) {
				$( toggle_element ).find( '.yith-toggle-elements' ).append( toggle_el );
				$( add_box ).find( '.yith-plugin-fw-datepicker' ).datepicker( 'destroy' );
				$( add_box ).html( '' );
				$( add_box ).prev( '.yith-add-box-button' ).trigger( 'click' );
				toggle_element.saveToggleElement();

				var delayInMilliseconds = 2000; //1 second
				setTimeout( function () {
					$( toggle_element ).find( '.highlight' ).removeClass( 'highlight' );
				}, delayInMilliseconds );


				$( document ).trigger( 'yith_fields_init' );
			}
		}, delayInMilliseconds );


	} );

	$( document ).on( 'click', '.yith-toggle-row .yith-save-button', function ( event ) {
		event.preventDefault();
		var toggle     = $( this ).closest( '.toggle-element' ),
			toggle_row = $( this ).closest( '.yith-toggle-row' ),
			spinner    = toggle_row.find( '.spinner' );
		toggle_row.formatToggleTitle();

		var form_is_valid = $( '<input type="hidden">' ).val( 'yes' );
		$( document ).trigger( 'yith-toggle-element-item-before-update', [toggle, toggle_row, form_is_valid] );
		if ( form_is_valid.val() === 'yes' ) {
			spinner.addClass( 'show' );
			toggle.saveToggleElement( spinner );
		}
	} );

	//register remove the dome and save the toggle
	$( document ).on( 'click', '.yith-toggle-row .yith-delete-button', function ( event ) {
		event.preventDefault();
		var toggle     = $( this ).closest( '.toggle-element' ),
			toggle_row = $( this ).closest( '.yith-toggle-row' );
		toggle_row.remove();
		toggle.saveToggleElement();
	} );

	//register onoff status
	$( document ).on( 'click', '.yith-toggle-onoff', function ( event ) {
		event.preventDefault();
		var toggle = $( this ).closest( '.toggle-element' );
		toggle.saveToggleElement();
	} );

	// Radio
	$( document ).on( 'click', '.yith-plugin-fw-radio input[type=radio]', function () {
		var _radioContainer = $( this ).closest( '.yith-plugin-fw-radio' ),
			_value          = $( this ).val();

		_radioContainer.val( _value ).data( 'value', _value ).trigger( 'change' );
	} );

	$( document.body ).on( 'yith-plugin-fw-init-radio', function () {
		$( '.yith-plugin-fw-radio:not(.yith-plugin-fw-radio--initialized)' ).each( function () {
			$( this ).find( 'input[type="radio"]' ).filter( '[value="' + $( this ).data( 'value' ) + '"]' ).click();
			$( this ).addClass( 'yith-plugin-fw-radio--initialized' );
		} );
	} ).trigger( 'yith-plugin-fw-init-radio' );

	// Password Eye field
	$( document ).on( 'click', '.yith-password-eye', function () {
		var $this = $( this ),
			inp   = $( this ).closest( '.yith-password-wrapper' ).find( 'input' );
		if ( inp.attr( 'type' ) === "password" ) {
			inp.attr( 'type', 'text' );
			$this.addClass( 'yith-password-eye-closed' );
		} else {
			inp.attr( 'type', 'password' );
			$this.removeClass( 'yith-password-eye-closed' );
		}
	} );

	/**
	 * Select2 - add class to stylize it with the new plugin-fw style
	 */
	$( document ).on( 'select2:open', function ( e ) {
		if ( $( e.target ).closest( '.yith-plugin-ui' ).length ) {
			$( '.select2-results' ).closest( '.select2-container' ).addClass( 'yith-plugin-fw-select2-container' );
		}
	} );

	/**
	 * Select2 - focus on search field when opened and the select is not multiple.
	 * For multiple select this is already handled by select2.
	 */
	$( document ).on( 'select2:open', function ( e ) {
		if ( !e.target.multiple ) {
			setTimeout(
				function () {
					document.querySelector( '.yith-plugin-fw-select2-container .select2-search__field' ).focus();
				},
				50
			)
		}
	} );


	/**
	 * Dimensions
	 */
	var fw_dimensions = {
		selectors   : {
			wrapper   : '.yith-plugin-fw-dimensions',
			units     : {
				wrapper      : '.yith-plugin-fw-dimensions__units',
				single       : '.yith-plugin-fw-dimensions__unit',
				value        : '.yith-plugin-fw-dimensions__unit__value',
				selectedClass: 'yith-plugin-fw-dimensions__unit--selected'
			},
			linked    : {
				button            : '.yith-plugin-fw-dimensions__linked',
				value             : '.yith-plugin-fw-dimensions__linked__value',
				wrapperActiveClass: 'yith-plugin-fw-dimensions--linked-active'
			},
			dimensions: {
				number: '.yith-plugin-fw-dimensions__dimension__number'
			}
		},
		init        : function () {
			var self = fw_dimensions;
			$( document ).on( 'click', self.selectors.units.single, self.unitChange );
			$( document ).on( 'click', self.selectors.linked.button, self.linkedChange );
			$( document ).on( 'change keyup', self.selectors.dimensions.number, self.numberChange );
		},
		unitChange  : function ( e ) {
			var unit       = $( this ).closest( fw_dimensions.selectors.units.single ),
				wrapper    = unit.closest( fw_dimensions.selectors.units.wrapper ),
				units      = wrapper.find( fw_dimensions.selectors.units.single ),
				valueField = wrapper.find( fw_dimensions.selectors.units.value ).first(),
				value      = unit.data( 'value' );

			units.removeClass( fw_dimensions.selectors.units.selectedClass );
			unit.addClass( fw_dimensions.selectors.units.selectedClass );
			valueField.val( value ).trigger( 'change' );
		},
		linkedChange: function () {
			var button      = $( this ).closest( fw_dimensions.selectors.linked.button ),
				mainWrapper = button.closest( fw_dimensions.selectors.wrapper ),
				valueField  = button.find( fw_dimensions.selectors.linked.value ),
				value       = valueField.val();

			if ( 'yes' === value ) {
				mainWrapper.removeClass( fw_dimensions.selectors.linked.wrapperActiveClass );
				valueField.val( 'no' );
			} else {
				mainWrapper.addClass( fw_dimensions.selectors.linked.wrapperActiveClass );
				valueField.val( 'yes' );

				mainWrapper.find( fw_dimensions.selectors.dimensions.number ).first().trigger( 'change' );
			}
		},
		numberChange: function ( e ) {
			var number      = $( this ).closest( fw_dimensions.selectors.dimensions.number ),
				mainWrapper = number.closest( fw_dimensions.selectors.wrapper );
			if ( mainWrapper.hasClass( fw_dimensions.selectors.linked.wrapperActiveClass ) ) {
				var numbers = mainWrapper.find( fw_dimensions.selectors.dimensions.number );

				numbers.val( number.val() );
			}
		}
	};
	fw_dimensions.init();

	/**
	 * Copy to clip-board
	 */
	var clearSelection = function () {
		var selection = 'getSelection' in window ? window.getSelection() : false;
		if ( selection ) {
			if ( 'empty' in selection ) {  // Chrome.
				selection.empty();
			} else if ( 'removeAllRanges' in selection ) {  // Firefox.
				selection.removeAllRanges();
			}
		} else if ( 'selection' in document ) {  // IE.
			document.selection.empty();
		}
	}

	$( document ).on( 'click', '.yith-plugin-fw-copy-to-clipboard__copy', function () {
		var wrap    = $( this ).closest( '.yith-plugin-fw-copy-to-clipboard' ),
			input   = wrap.find( '.yith-plugin-fw-copy-to-clipboard__field' ),
			tip     = wrap.find( '.yith-plugin-fw-copy-to-clipboard__tip' ),
			timeout = wrap.data( 'tip-timeout' );

		timeout && clearTimeout( timeout );

		input.select();
		document.execCommand( 'copy' );
		clearSelection();

		tip.fadeIn( 400 );

		// Use timeout instead of delay to prevent issues with multiple clicks.
		timeout = setTimeout( function () {
			tip.fadeOut( 400 );
		}, 1500 );
		wrap.data( 'tip-timeout', timeout );
	} );

	/**
	 * Action buttons
	 */
	var actionButtons = {
		init           : function () {
			$( document ).on( 'click', '.yith-plugin-fw__action-button--has-menu', actionButtons.open );
			$( document ).on( 'click', '.yith-plugin-fw__action-button__menu', actionButtons.stopPropagation );
			$( document ).on( 'click', actionButtons.closeAll );
		},
		closeAll       : function () {
			$( '.yith-plugin-fw__action-button--opened' ).removeClass( 'yith-plugin-fw__action-button--opened' );
		},
		open           : function ( e ) {
			var button    = $( this ).closest( '.yith-plugin-fw__action-button' ),
				wasOpened = button.hasClass( 'yith-plugin-fw__action-button--opened' );
			e.preventDefault();
			e.stopPropagation();

			actionButtons.closeAll();

			if ( !wasOpened ) {
				button.addClass( 'yith-plugin-fw__action-button--opened' );
			}
		},
		stopPropagation: function ( e ) {
			e.stopPropagation();
		}
	};
	actionButtons.init();

	/**
	 * Require confirmation link
	 */
	$( document ).on( 'click', 'a.yith-plugin-fw__require-confirmation-link', function ( e ) {
		var link = $( this ).closest( 'a.yith-plugin-fw__require-confirmation-link' ),
			url  = link.attr( 'href' );

		if ( url && '#' !== url ) {
			e.preventDefault();
			e.stopPropagation();
			if ( 'yith' in window && 'ui' in yith ) {
				var dataForOptions = [
						'title',
						'message',
						'confirmButtonType',
						'cancelButton',
						'confirmButton'
					],
					options        = {}, i;

				for ( i in dataForOptions ) {
					var key   = dataForOptions[ i ],
						value = link.data( key );

					if ( typeof value !== 'undefined' ) {
						options[ key ] = value;
					}
				}

				options.onConfirm = function () {
					window.location.href = url;
				};

				options.closeAfterConfirm = false;

				yith.ui.confirm( options );

			}
		}

	} );

	/**
	 * Tips
	 */
	$( document ).on( 'yith-plugin-fw-tips-init', function () {
		$( '.yith-plugin-fw__tips' ).tipTip(
			{
				attribute: 'data-tip',
				fadeIn   : 50,
				fadeOut  : 50,
				delay    : 200
			}
		);
	} ).trigger( 'yith-plugin-fw-tips-init' );

} )( jQuery );
PK`x1\�.1'plugin-fw/assets/js/yith-date-format.jsnu�[���/* globals ajaxurl */
jQuery( function ( $ ) {

	$( document ).on( 'click', '.yith-plugin-fw-date-format__option', function () {
		var $t       = $( this ),
			$wrapper = $t.closest( '.yith-plugin-fw-date-format' ),
			$example = $wrapper.find( '.example' );

		$example.text( $t.data( 'preview' ) );
		$wrapper.find( '.yith-date-format-custom' ).val( $t.val() );
	} );

	$( document ).on( 'click input', '.yith-date-format-custom', function () {
		var $t       = $( this ),
			$wrapper = $t.closest( '.yith-plugin-fw-radio__row' );

		$wrapper.find( 'input[type=radio]' ).prop( 'checked', true );
	} );

	$( document ).on( 'input yith-date-format-change', '.yith-date-format-custom', function () {
		var $t       = $( this ),
			$wrapper = $t.closest( '.yith-plugin-fw-date-format' ),
			dataType = $wrapper.data( 'format' ),
			js       = $wrapper.data( 'js' ),
			now      = $wrapper.data( 'current' ),
			example  = $wrapper.find( '.example' ),
			spinner  = $wrapper.find( '.spinner' );

		if ( 'yes' === js ) {
			var newDate = new Date( now );
			newDate = $.datepicker.formatDate( $t.val(), newDate );
			example.text( newDate );
		} else {
			clearTimeout( $.data( this, 'timer' ) );
			$t.data( 'timer', setTimeout(
				function () {
					if ( $t.val() ) {
						spinner.addClass( 'is-active' );
						// Call WP ajax action.
						var data = {
							action: dataType + '_format',
							date  : $t.val()
						};

						$.post( ajaxurl, data, function ( response ) {
							spinner.removeClass( 'is-active' );
							example.text( response );
						} );
					}
				},
				500 )
			);
		}
	} );

	$( document ).on( 'yith-plugin-fw-date-format-init', function () {
		$( '.yith-date-format-custom' ).trigger( 'yith-date-format-change' );
	} ).trigger( 'yith-plugin-fw-date-format-init' );

} );
PK`x1\�~<�vv'plugin-fw/assets/js/yith-system-info.jsnu�[���/**
 * This file belongs to the YIT Framework.
 *
 * This source file is subject to the GNU GENERAL PUBLIC LICENSE (GPL 3.0)
 * that is bundled with this package in the file LICENSE.txt.
 * It is also available through the world-wide-web at this URL:
 * http://www.gnu.org/licenses/gpl-3.0.txt
 *
 * @package YIT Plugin Framework
 */

jQuery(
	function ( $ ) {
		$( document ).on(
			'click',
			'.notice-dismiss',
			function () {
				var t          = $( this ),
					wrapper_id = t.parent().attr( 'id' );

				if ( wrapper_id === 'yith-system-alert' ) {
					var cname  = 'hide_yith_system_alert',
						cvalue = 'yes';

					document.cookie = cname + "=" + cvalue + ";path=/";
				}
			}
		);
		$( document ).on(
			'click',
			'.yith-download-log',
			function () {

				var container = $( this ).parent();
				var data      = {
					action: 'yith_create_log_file',
					file  : $( this ).data( 'file' ),
				};

				container.addClass( 'progress' );

				$.post(
					yith_sysinfo.ajax_url,
					data,
					function ( response ) {
						if ( false !== response.file ) {
							var a        = document.createElement( "a" );
							var fileName = response.file.split( "/" ).pop();
							a.href       = response.file;
							a.download   = fileName;
							document.body.appendChild( a );
							a.click();
							window.URL.revokeObjectURL( response.file );
							a.remove();
						}
						container.removeClass( 'progress' );
					}
				);
			}
		);
		$( document ).on(
			'click',
			'.copy-link',
			function ( e ) {
				e.preventDefault();

				var $this = $( this ),
					$temp = $( '<textarea>' );

				$( 'body' ).append( $temp );
				$temp.val( "define( 'WP_DEBUG', true );\ndefine( 'WP_DEBUG_LOG', true );\ndefine( 'WP_DEBUG_DISPLAY', false );" ).select();
				document.execCommand( "Copy" );
				$temp.remove();
				if ( ! $this.find( '.copied-tooltip' ).length ) {
					$this
						.append(
							$( '<span/>', {class: 'copied-tooltip'} )
								.html( $this.data( "tooltip" ) ).fadeIn( 300 )
						);
					setTimeout(
						function () {
							$this.find( ".copied-tooltip" ).fadeOut().remove()
						},
						3000
					);
				}

			}
		);
	}
);
PK`x1\CV(^99*plugin-fw/assets/js/yith-update-plugins.jsnu�[���/**
 * This file belongs to the YIT Framework.
 *
 * This source file is subject to the GNU GENERAL PUBLIC LICENSE (GPL 3.0)
 * that is bundled with this package in the file LICENSE.txt.
 * It is also available through the world-wide-web at this URL:
 * http://www.gnu.org/licenses/gpl-3.0.txt
 */
(function ( $ ) {
    $(document).on( 'click', 'a.yith-update-link', function(event){
        var t = $(this),
            p_wrapper = t.parent('p');

        event.preventDefault();
        $.ajax({
            type: 'POST',
            url: yith_plugin_fw.ajaxurl,
            data: {
                'action': "update-plugin",
                'plugin': t.data('plugin'),
                'slug': t.data('slug'),
                'name': t.data('name'),
                '_ajax_nonce': yith_plugin_fw.ajax_nonce
            },
            beforeSend: function(){
                p_wrapper.text( yith_plugin_fw.l10n.updating.replace( '%s', t.data('name') ) );
                p_wrapper.addClass( 'yith-updating' );
            },
            success: function (response) {
                p_wrapper.removeClass( 'yith-updating' ).addClass( 'yith-updated' );
                var notice_wrapper = p_wrapper.parent('div');
                notice_wrapper.removeClass( 'notice-warning' ),
                result_text = '';

                if( response.success === true ){
                    notice_wrapper.addClass('notice-success updated-message').removeClass( 'update-message' );
                    result_text = yith_plugin_fw.l10n.updated;
                }

                else {
                    notice_wrapper.addClass('notice-error');
                    result_text = yith_plugin_fw.l10n.failed;
                }

                p_wrapper.text( result_text.replace( '%s', t.data('name') ) );
            }
        });
    });
})( jQuery );
PK`x1\.�/w	w	6plugin-fw/assets/js/yith-enhanced-select-wc-2.6.min.jsnu�[���jQuery(function(t){"use strict";t(document.body).on("yith-framework-enhanced-select-init",function(){t(":input.yith-post-search").filter(":not(.enhanced)").each(function(){var e={action:"yith_plugin_fw_json_search_posts",security:yith_framework_enhanced_select_params.search_posts_nonce,post_type:"post"},a=t.extend(e,t(this).data()),n={allowClear:!!t(this).data("allow_clear"),placeholder:t(this).data("placeholder"),minimumInputLength:t(this).data("minimum_input_length")?t(this).data("minimum_input_length"):"3",escapeMarkup:function(t){return t},ajax:{url:yith_framework_enhanced_select_params.ajax_url,dataType:"json",quietMillis:250,data:function(t){return a.term=t,a},results:function(e){var a=[];return e&&t.each(e,function(t,e){a.push({id:t,text:e})}),{results:a}},cache:!0}};!0===t(this).data("multiple")?(n.multiple=!0,n.initSelection=function(e,a){var n=t.parseJSON(e.attr("data-selected")),i=[];return t(e.val().split(",")).each(function(t,e){i.push({id:e,text:n[e]})}),a(i)},n.formatSelection=function(t){return'<div class="selected-option" data-id="'+t.id+'">'+t.text+"</div>"}):(n.multiple=!1,n.initSelection=function(t,e){return e({id:t.val(),text:t.attr("data-selected")})}),t(this).select2(n).addClass("enhanced")}),t(":input.yith-term-search").filter(":not(.enhanced)").each(function(){var e={action:"yith_plugin_fw_json_search_terms",security:yith_framework_enhanced_select_params.search_terms_nonce,taxonomy:"category"},a=t.extend(e,t(this).data()),n={allowClear:!!t(this).data("allow_clear"),placeholder:t(this).data("placeholder"),minimumInputLength:t(this).data("minimum_input_length")?t(this).data("minimum_input_length"):"3",escapeMarkup:function(t){return t},ajax:{url:yith_framework_enhanced_select_params.ajax_url,dataType:"json",quietMillis:250,data:function(t){return a.term=t,a},results:function(e){var a=[];return e&&t.each(e,function(t,e){a.push({id:t,text:e})}),{results:a}},cache:!0}};!0===t(this).data("multiple")?(n.multiple=!0,n.initSelection=function(e,a){var n=t.parseJSON(e.attr("data-selected")),i=[];return t(e.val().split(",")).each(function(t,e){i.push({id:e,text:n[e]})}),a(i)},n.formatSelection=function(t){return'<div class="selected-option" data-id="'+t.id+'">'+t.text+"</div>"}):(n.multiple=!1,n.initSelection=function(t,e){return e({id:t.val(),text:t.attr("data-selected")})}),t(this).select2(n).addClass("enhanced")})}).trigger("yith-framework-enhanced-select-init")});PK`x1\��\�bbplugin-fw/yit-functions.phpnu�[���<?php
/**
 * Functions.
 *
 * @package YITH\PluginFramework
 */

defined( 'ABSPATH' ) || exit; // Exit if accessed directly.

if ( ! function_exists( 'yit_plugin_locate_template' ) ) {
	/**
	 * Locate the templates and return the path of the file found
	 *
	 * @param string $plugin_basename The plugin base name.
	 * @param string $path            The path.
	 * @param array  $var             Variable to make visible to the template.
	 *
	 * @return string
	 * @since 2.0.0
	 */
	function yit_plugin_locate_template( $plugin_basename, $path, $var = null ) {

		$template_path = '/theme/templates/' . $path;

		$located = locate_template( array( $template_path ) );

		if ( ! $located ) {
			$located = $plugin_basename . '/templates/' . $path;
		}

		return $located;
	}
}

if ( ! function_exists( 'yit_plugin_get_template' ) ) {
	/**
	 * Retrieve a template file.
	 *
	 * @param string $plugin_basename The plugin basename.
	 * @param string $path            The path.
	 * @param mixed  $var             Variable that will be extracted to make its items visible to the template.
	 * @param bool   $return          return or print the template.
	 *
	 * @return string
	 * @since 2.0.0
	 */
	function yit_plugin_get_template( $plugin_basename, $path, $var = null, $return = false ) {

		$located = yit_plugin_locate_template( $plugin_basename, $path, $var );

		if ( $var && is_array( $var ) ) {
			extract( $var ); // phpcs:ignore WordPress.PHP.DontExtract.extract_extract
		}

		if ( $return ) {
			ob_start();
		}

		if ( file_exists( $located ) ) {
			include $located;
		}

		if ( $return ) {
			return ob_get_clean();
		}
	}
}

if ( ! function_exists( 'yit_plugin_content' ) ) {
	/**
	 * Return post content with read more link (if needed)
	 *
	 * @param string     $what         What do you want to see (content, excerpt or something else).
	 * @param int|string $limit        Limit the content.
	 * @param string     $more_text    The "more" text.
	 * @param string     $split        The split.
	 * @param bool       $in_paragraph Defines if the content is inside a paragraph.
	 *
	 * @return string
	 * @since      2.0.0
	 * @deprecated 3.5
	 */
	function yit_plugin_content( $what = 'content', $limit = 25, $more_text = '', $split = '[...]', $in_paragraph = true ) {
		if ( 'content' === $what ) {
			$content = get_the_content( $more_text );
		} else {
			if ( 'excerpt' === $what ) {
				$content = get_the_excerpt();
			} else {
				$content = $what;
			}
		}

		if ( ! $limit ) {
			if ( 'excerpt' === $what ) {
				$content = apply_filters( 'the_excerpt', $content );
			} else {
				$content = preg_replace( '/<img[^>]+./', '', $content ); // Remove images.
				$content = apply_filters( 'the_content', $content );
				$content = str_replace( ']]>', ']]&gt;', $content );
			}

			return $content;
		}

		// Remove the "more" tag from the content.
		if ( preg_match( "/<(a)[^>]*class\s*=\s*(['\"])more-link\\2[^>]*>(.*?)<\/\\1>/", $content, $matches ) ) {

			if ( strpos( $matches[0], '[button' ) ) {
				$more_link = str_replace( 'href="#"', 'href="' . get_permalink() . '"', do_shortcode( $matches[3] ) );
			} else {
				$more_link = $matches[0];
			}

			$content = str_replace( $more_link, '', $content );
			$split   = '';
		}

		if ( empty( $content ) ) {
			return '';
		}
		$content = explode( ' ', $content );

		if ( ! empty( $more_text ) && ! isset( $more_link ) ) {
			$more_link = strpos( $more_text, '<a class="btn"' ) ? $more_text : '<a class="read-more' . apply_filters( 'yit_simple_read_more_classes', ' ' ) . '" href="' . get_permalink() . '">' . $more_text . '</a>';
			$split     = '';
		} elseif ( ! isset( $more_link ) ) {
			$more_link = '';
		}

		// Splitting.
		if ( count( $content ) >= $limit ) {
			$split_content = '';
			for ( $i = 0; $i < $limit; $i ++ ) {
				$split_content .= $content[ $i ] . ' ';
			}

			$content = $split_content . $split;
		} else {
			$content = implode( ' ', $content );
		}

		// Handle unclosed tags.
		$tags = array();
		preg_match_all( '/(<([\w]+)[^>]*>)/', $content, $tags_opened, PREG_SET_ORDER ); // Get all opened tags.
		foreach ( $tags_opened as $tag ) {
			$tags[] = $tag[2];
		}

		// Get all closed tags and remove them from the opened tags. Others will be closed at the end of the content.
		preg_match_all( '/(<\/([\w]+)[^>]*>)/', $content, $tags_closed, PREG_SET_ORDER );
		foreach ( $tags_closed as $tag ) {
			unset( $tags[ array_search( $tag[2], $tags, true ) ] );
		}

		// Close the tags.
		if ( ! empty( $tags ) ) {
			foreach ( $tags as $tag ) {
				$content .= "</$tag>";
			}
		}

		if ( ! ! $in_paragraph && 'false' !== $in_paragraph ) { // String comparison kept for backward compatibility.
			$content .= $more_link;
		}
		$content = preg_replace( '/<img[^>]+./', '', $content ); // Remove images.
		$content = apply_filters( 'the_content', $content );
		$content = str_replace( ']]>', ']]&gt;', $content );
		if ( ! $in_paragraph || 'false' === $in_paragraph ) { // String comparison kept for backward compatibility.
			$content .= $more_link;
		}

		return $content;
	}
}

if ( ! function_exists( 'yit_plugin_string' ) ) {
	/**
	 * Simple echo a string, with a before and after string, only if the main string is not empty.
	 *
	 * @param string $before What there is before the main string.
	 * @param string $string The main string. If it is empty or null, the functions return null.
	 * @param string $after  What there is after the main string.
	 * @param bool   $echo   If echo or only return it.
	 *
	 * @return string The complete string, if the main string is not empty or null
	 * @since      2.0.0
	 * @deprecated 3.5
	 */
	function yit_plugin_string( $before = '', $string = '', $after = '', $echo = true ) {
		$html = '';

		if ( ! ! $string ) {
			$html = $before . $string . $after;
		}

		if ( $echo ) {
			echo $html; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
		}

		return $html;
	}
}

if ( ! function_exists( 'yit_plugin_decode_title' ) ) {
	/**
	 * Change some special characters to put easily html into a string
	 * E.G.
	 * string: This is [my title] with | a new line
	 * return: This is <span class="title-highlight">my title</span> with <br /> a new line
	 *
	 * @param string $title The string to convert.
	 *
	 * @return string  The html
	 * @since      1.0
	 * @deprecated 3.5
	 */
	function yit_plugin_decode_title( $title ) {
		$replaces = apply_filters( 'yit_title_special_characters', array() );

		return preg_replace( array_keys( $replaces ), array_values( $replaces ), $title );
	}
}

if ( ! function_exists( 'yit_plugin_get_attachment_id' ) ) {

	/**
	 * Return the ID of an attachment.
	 *
	 * @param string $url The attachment URL.
	 *
	 * @return int
	 * @since 2.0.0
	 */
	function yit_plugin_get_attachment_id( $url ) {
		$upload_dir = wp_upload_dir();
		$dir        = trailingslashit( $upload_dir['baseurl'] );

		if ( false === strpos( $url, $dir ) ) {
			return false;
		}

		$file = basename( $url );

		$query = array(
			'post_type'  => 'attachment',
			'fields'     => 'ids',
			// phpcs:ignore WordPress.DB.SlowDBQuery.slow_db_query_meta_query
			'meta_query' => array(
				array(
					'value'   => $file,
					'compare' => 'LIKE',
				),
			),
		);

		$query['meta_query'][0]['key'] = '_wp_attached_file';
		$ids                           = get_posts( $query );

		foreach ( $ids as $id ) {
			$attachment_image = wp_get_attachment_image_src( $id, 'full' );
			if ( array_shift( $attachment_image ) === $url || str_replace( 'https://', 'http://', array_shift( $attachment_image ) ) === $url ) {
				return $id;
			}
		}
		$query['meta_query'][0]['key'] = '_wp_attachment_metadata';
		$ids                           = get_posts( $query );

		foreach ( $ids as $id ) {
			$meta = wp_get_attachment_metadata( $id );
			if ( ! isset( $meta['sizes'] ) ) {
				continue;
			}

			foreach ( (array) $meta['sizes'] as $size => $values ) {
				$src = wp_get_attachment_image_src( $id, $size );
				if ( $values['file'] === $file && str_replace( 'https://', 'http://', array_shift( $src ) ) === $url ) {
					return $id;
				}
			}
		}

		return false;
	}
}

if ( ! function_exists( 'yit_enqueue_script' ) ) {
	/**
	 * Enqueues script.
	 * Registers the script if src provided (does NOT overwrite) and enqueues.
	 * IMPORTANT: used only in themes, since it needs the YIT_Asset class.
	 *
	 * @param string           $handle    Name of the script. Should be unique.
	 * @param string           $src       Full URL of the script, or path of the script relative to the WordPress root directory.
	 * @param string[]         $deps      Optional. An array of registered script handles this script depends on. Default empty array.
	 * @param string|bool|null $ver       Optional. String specifying script version number.
	 * @param bool             $in_footer Optional. Whether to enqueue the script before </body> instead of in the <head>.
	 *
	 * @author     Simone D'Amico <simone.damico@yithemes.com>
	 * @deprecated 3.5
	 */
	function yit_enqueue_script( $handle, $src, $deps = array(), $ver = false, $in_footer = true ) {
		if ( function_exists( 'YIT_Asset' ) && ! is_admin() ) {
			$enqueue = true;
			YIT_Asset()->set( 'script', $handle, compact( 'src', 'deps', 'ver', 'in_footer', 'enqueue' ) );
		} else {
			wp_enqueue_script( $handle, $src, $deps, $ver, $in_footer );
		}
	}
}

if ( ! function_exists( 'yit_enqueue_style' ) ) {
	/**
	 * Enqueue Styles.
	 * IMPORTANT: used only in themes, since it needs the YIT_Asset class.
	 *
	 * @param string           $handle Name of the stylesheet. Should be unique.
	 * @param string           $src    Full URL of the stylesheet, or path of the stylesheet relative to the WordPress root directory.
	 * @param string[]         $deps   Optional. An array of registered stylesheet handles this stylesheet depends on. Default empty array.
	 * @param string|bool|null $ver    Optional. String specifying stylesheet version number.
	 * @param string           $media  Optional. The media for which this stylesheet has been defined.
	 *
	 * @deprecated 3.5
	 */
	function yit_enqueue_style( $handle, $src, $deps = array(), $ver = false, $media = 'all' ) {
		if ( function_exists( 'YIT_Asset' ) ) {
			$enqueue = true;
			$who     = YIT_Asset()->get_stylesheet_handle( get_stylesheet_uri(), 'style' );
			$where   = 'before';

			if ( ! $who ) {
				$who = '';
			}

			YIT_Asset()->set( 'style', $handle, compact( 'src', 'deps', 'ver', 'media', 'enqueue' ), $where, $who );
		} else {
			wp_enqueue_style( $handle, $src, $deps, $ver, $media );
		}
	}
}

if ( ! function_exists( 'yit_get_post_meta' ) ) {
	/**
	 * Retrieve the value of a metabox.
	 * This function retrieve the value of a metabox attached to a post. It return either a single value or an array.
	 *
	 * @param int    $id   Post ID.
	 * @param string $meta The meta key to retrieve.
	 *
	 * @return mixed Single value or array. Return false is the meta doesn't exists.
	 * @since    2.0.0
	 */
	function yit_get_post_meta( $id, $meta ) {
		if ( ! strpos( $meta, '[' ) ) {
			return metadata_exists( 'post', $id, $meta ) ? get_post_meta( $id, $meta, true ) : false;
		}

		$sub_meta = explode( '[', $meta );

		$meta           = get_post_meta( $id, current( $sub_meta ), true );
		$sub_meta_count = count( $sub_meta );

		for ( $i = 1; $i < $sub_meta_count; $i ++ ) {
			$current_submeta = rtrim( $sub_meta[ $i ], ']' );
			if ( ! isset( $meta[ $current_submeta ] ) ) {
				return false;
			}
			$meta = $meta[ $current_submeta ];
		}

		return $meta;
	}
}

if ( ! function_exists( 'yit_string' ) ) {
	/**
	 * Simple echo a string, with a before and after string, only if the main string is not empty.
	 *
	 * @param string $before What there is before the main string.
	 * @param string $string The main string. If it is empty or null, the functions return null.
	 * @param string $after  What there is after the main string.
	 * @param bool   $echo   If echo or only return it.
	 *
	 * @return string The complete string, if the main string is not empty or null
	 * @since      2.0.0
	 * @deprecated 3.5
	 */
	function yit_string( $before = '', $string = '', $after = '', $echo = true ) {
		$html = '';

		if ( ! ! $string ) {
			$html = $before . $string . $after;
		}

		if ( $echo ) {
			echo $html; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
		}

		return $html;
	}
}

if ( ! function_exists( 'yit_pagination' ) ) {
	/**
	 * Print pagination
	 *
	 * @param int|string $pages The number of pages.
	 * @param int        $range The range.
	 *
	 * @since      2.0.0
	 * @deprecated 3.5
	 */
	function yit_pagination( $pages = '', $range = 10 ) {
		$pages     = ! ! $pages ? absint( $pages ) : false;
		$showitems = ( $range * 2 ) + 1;

		$paged = ( get_query_var( 'paged' ) ) ? get_query_var( 'paged' ) : false;
		if ( false === $paged ) {
			$paged = ( get_query_var( 'page' ) ) ? get_query_var( 'page' ) : false;
		}
		if ( false === $paged ) {
			$paged = 1;
		}

		$paged = absint( $paged );
		$html  = '';

		if ( false === $pages ) {
			global $wp_query;

			if ( isset( $wp_query->max_num_pages ) ) {
				$pages = $wp_query->max_num_pages;
			}

			if ( ! $pages ) {
				$pages = 1;
			}
		}

		if ( 1 !== $pages ) {
			$html .= "<div class='general-pagination clearfix'>";
			if ( $paged > 2 ) {
				$html .= sprintf( '<a class="%s" href="%s">&laquo;</a>', 'yit_pagination_first', get_pagenum_link( 1 ) );
			}
			if ( $paged > 1 ) {
				$html .= sprintf( '<a class="%s" href="%s">&lsaquo;</a>', 'yit_pagination_previous', get_pagenum_link( $paged - 1 ) );
			}

			for ( $i = 1; $i <= $pages; $i ++ ) {
				if ( 1 !== $pages && ( ! ( $i >= $paged + $range + 1 || $i <= $paged - $range - 1 ) || $pages <= $showitems ) ) {
					$class = ( $paged === $i ) ? 'selected' : '';

					$html .= '<a href="' . esc_url( get_pagenum_link( $i ) ) . '" class="' . esc_attr( $class ) . '">' . esc_html( $i ) . '</a>';
				}
			}

			if ( $paged < $pages ) {
				$html .= sprintf( '<a class="%s" href="%s">&rsaquo;</a>', 'yit_pagination_next', esc_url( get_pagenum_link( $paged + 1 ) ) );
			}
			if ( $paged < $pages - 1 ) {
				$html .= sprintf( '<a class="%s" href="%s">&raquo;</a>', 'yit_pagination_last', esc_url( get_pagenum_link( $pages ) ) );
			}

			$html .= "</div>\n";
		}

		echo apply_filters( 'yit_pagination_html', $html ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
	}
}

if ( ! function_exists( 'yit_registered_sidebars' ) ) {
	/**
	 * Retrieve all registered sidebars
	 *
	 * @return array
	 * @since      2.0.0
	 * @deprecated 3.5
	 */
	function yit_registered_sidebars() {
		global $wp_registered_sidebars;

		$return = array();

		if ( empty( $wp_registered_sidebars ) ) {
			$return = array( '' => '' );
		}

		foreach ( (array) $wp_registered_sidebars as $the_ ) {
			$return[ $the_['name'] ] = $the_['name'];
		}

		ksort( $return );

		return $return;
	}
}

if ( ! function_exists( 'yit_layout_option' ) ) {
	/**
	 * Retrieve a layout option
	 * IMPORTANT: used only in themes, since it needs the YIT_Layout_Panel class.
	 *
	 * @param string $key   The key.
	 * @param bool   $id    The ID.
	 * @param string $type  The type.
	 * @param string $model The model.
	 *
	 * @return array
	 * @since      2.0.0
	 * @deprecated 3.5
	 */
	function yit_layout_option( $key, $id = false, $type = 'post', $model = 'post_type' ) {
		$option = '';

		if ( defined( 'YIT' ) ) {
			$option = YIT_Layout_Panel()->get_option( $key, $id, $type, $model );
		} else {
			if ( ! $id && ( is_single() || is_page() ) ) {
				global $post;
				$id = $post->ID;
			} elseif ( 'all' !== $id ) {
				$option = get_post_meta( $id, $key );
			}
		}

		return $option;
	}
}

if ( ! function_exists( 'yit_curPageURL' ) ) {
	/**
	 * Retrieve the current complete url
	 *
	 * @since 1.0
	 */
	function yit_curPageURL() { // phpcs:ignore WordPress.NamingConventions.ValidFunctionName.FunctionNameInvalid
		// phpcs:disable WordPress.Security.ValidatedSanitizedInput
		$page_url = 'http';
		if ( isset( $_SERVER['HTTPS'] ) && 'on' === $_SERVER['HTTPS'] ) {
			$page_url .= 's';
		}

		$page_url .= '://';

		if ( isset( $_SERVER['SERVER_PORT'] ) && 80 !== absint( $_SERVER['SERVER_PORT'] ) ) {
			$page_url .= $_SERVER['SERVER_NAME'] . ':' . $_SERVER['SERVER_PORT'] . $_SERVER['REQUEST_URI'];
		} else {
			$page_url .= $_SERVER['SERVER_NAME'] . $_SERVER['REQUEST_URI'];
		}

		return $page_url;
		// phpcs:enable
	}
}

if ( ! function_exists( 'yit_get_excluded_categories' ) ) {
	/**
	 * Retrieve the excluded categories, set on Theme Options
	 *
	 * @param int $k Key.
	 *
	 * @return string String with all id categories excluded, separated by a comma
	 * @since      2.0.0
	 * @deprecated 3.5
	 */
	function yit_get_excluded_categories( $k = 1 ) {
		global $post;

		if ( ! isset( $post->ID ) ) {
			return '';
		}

		$cf_cats = get_post_meta( $post->ID, 'blog-cats', true );

		if ( ! empty( $cf_cats ) ) {
			return $cf_cats;
		}

		$cats = function_exists( 'yit_get_option' ) ? yit_get_option( 'blog-excluded-cats' ) : '';

		if ( ! is_array( $cats ) || empty( $cats ) || ! isset( $cats[ $k ] ) ) {
			return '';
		}

		$cats = array_map( 'trim', $cats[ $k ] );

		$i     = 0;
		$query = '';
		foreach ( $cats as $cat ) {
			$query .= ",-$cat";

			$i ++;
		}

		ltrim( ',', $query );

		return $query;
	}
}

if ( ! function_exists( 'yit_add_extra_theme_headers' ) ) {
	add_filter( 'extra_theme_headers', 'yit_add_extra_theme_headers' );
	/**
	 * Check the framework core version
	 *
	 * @param array $headers The headers.
	 *
	 * @return array
	 * @since  2.0.0
	 * @author Andrea Grillo <andrea.grillo@yithemes.com>
	 */
	function yit_add_extra_theme_headers( $headers ) {
		$headers[] = 'Core Framework Version';

		return $headers;
	}
}

if ( ! function_exists( 'yit_check_plugin_support' ) ) {
	/**
	 * Check the framework core version
	 *
	 * @return bool
	 * @since  2.0.0
	 * @author Andrea Grillo <andrea.grillo@yithemes.com>
	 */
	function yit_check_plugin_support() {
		$headers['core']   = wp_get_theme()->get( 'Core Framework Version' );
		$headers['author'] = wp_get_theme()->get( 'Author' );

		if ( ! $headers['core'] && defined( 'YIT_CORE_VERSION' ) ) {
			$headers['core'] = YIT_CORE_VERSION;
		}

		if ( ( ! empty( $headers['core'] ) && version_compare( $headers['core'], '2.0.0', '<=' ) ) || 'Your Inspiration Themes' !== $headers['author'] ) {
			return true;
		} else {
			return false;
		}
	}
}

if ( ! function_exists( 'yit_ie_version' ) ) {
	/**
	 * Retrieve IE version.
	 *
	 * @return int|float
	 * @since  1.0.0
	 * @author Andrea Grillo <andrea.grillo@yithemes.com>, Andrea Frascaspata<andrea.frascaspata@yithemes.com>
	 */
	function yit_ie_version() {
		// phpcs:disable WordPress.Security.ValidatedSanitizedInput
		if ( ! isset( $_SERVER['HTTP_USER_AGENT'] ) ) {
			return - 1;
		}
		preg_match( '/MSIE ([0-9]+\.[0-9])/', $_SERVER['HTTP_USER_AGENT'], $reg );

		// IE 11 fix.
		if ( ! isset( $reg[1] ) ) {
			preg_match( '/rv:([0-9]+\.[0-9])/', $_SERVER['HTTP_USER_AGENT'], $reg );
			if ( ! isset( $reg[1] ) ) {
				return - 1;
			} else {
				return floatval( $reg[1] );
			}
		} else {
			return floatval( $reg[1] );
		}
		// phpcs:enable
	}
}

if ( ! function_exists( 'yit_avoid_duplicate' ) ) {
	/**
	 * Check if something exists. If yes, add a -N to the value where N is a number.
	 *
	 * @param mixed  $value The value to check.
	 * @param array  $array The array to search in.
	 * @param string $check Specifies if the check should be done on values or on keys (default: 'value').
	 *
	 * @return mixed
	 * @since  2.0.0
	 * @author Antonino Scarfì <antonino.scarfi@yithemes.com>
	 */
	function yit_avoid_duplicate( $value, $array, $check = 'value' ) {
		$match = array();

		if ( ! is_array( $array ) ) {
			return $value;
		}

		if ( ( 'value' === $check && ! in_array( $value, $array, true ) ) || ( 'key' === $check && ! isset( $array[ $value ] ) ) ) {
			return $value;
		} else {
			if ( ! preg_match( '/([a-z]+)-([0-9]+)/', $value, $match ) ) {
				$i = 2;
			} else {
				$i     = intval( $match[2] ) + 1;
				$value = $match[1];
			}

			return yit_avoid_duplicate( $value . '-' . $i, $array, $check );
		}
	}
}

if ( ! function_exists( 'yit_title_special_characters' ) ) {
	/**
	 * The chars used in yit_decode_title() and yit_encode_title()
	 * E.G.
	 * string: This is [my title] with | a new line
	 * return: This is <span class="highlight">my title</span> with <br /> a new line
	 *
	 * @param array $chars The chars.
	 *
	 * @return array
	 * @since      1.0
	 * @deprecated 3.5
	 */
	function yit_title_special_characters( $chars ) {
		return array_merge(
			$chars,
			array(
				'/[=\[](.*?)[=\]]/' => '<span class="title-highlight">$1</span>',
				'/\|/'              => '<br />',
			)
		);
	}

	add_filter( 'yit_title_special_characters', 'yit_title_special_characters' );
}

if ( ! function_exists( 'yit_decode_title' ) ) {
	/**
	 * Change some special characters to put easily html into a string
	 * E.G.
	 * string: This is [my title] with | a new line
	 * return: This is <span class="title-highlight">my title</span> with <br /> a new line
	 *
	 * @param string $title The string to convert.
	 *
	 * @return string  The html
	 * @since      1.0
	 * @deprecated 3.5
	 */
	function yit_decode_title( $title ) {
		$replaces = apply_filters( 'yit_title_special_characters', array() );

		return preg_replace( array_keys( $replaces ), array_values( $replaces ), $title );
	}
}

if ( ! function_exists( 'yit_encode_title' ) ) {
	/**
	 * Change some special characters to put easily html into a string
	 * E.G.
	 * string: This is [my title] with | a new line
	 * return: This is <span class="title-highlight">my title</span> with <br /> a new line
	 *
	 * @param string $title The string to convert.
	 *
	 * @return string  The html
	 * @since      1.0
	 * @deprecated 3.5
	 */
	function yit_encode_title( $title ) {
		$replaces = apply_filters( 'yit_title_special_characters', array() );

		return preg_replace( array_values( $replaces ), array_keys( $replaces ), $title );
	}
}

if ( ! function_exists( 'yit_remove_chars_title' ) ) {
	/**
	 * Change some special characters to put easily html into a string
	 * E.G.
	 * string: This is [my title] with | a new line
	 * return: This is <span class="title-highlight">my title</span> with <br /> a new line
	 *
	 * @param string $title The string to convert.
	 *
	 * @return string  The html
	 * @since      1.0
	 * @deprecated 3.5
	 */
	function yit_remove_chars_title( $title ) {
		$replaces = apply_filters( 'yit_title_special_characters', array() );

		return preg_replace( array_keys( $replaces ), '$1', $title );
	}
}

if ( ! function_exists( 'is_shop_installed' ) ) {
	/**
	 * Detect if there is a shop plugin installed
	 *
	 * @return bool
	 * @since  2.0.0
	 * @author Francesco Grasso <francesco.grasso@yithemes.com
	 */
	function is_shop_installed() {
		global $woocommerce;
		if ( isset( $woocommerce ) || defined( 'JIGOSHOP_VERSION' ) ) {
			return true;
		} else {
			return false;
		}
	}
}

if ( ! function_exists( 'yit_load_js_file' ) ) {
	/**
	 * Load .min.js file if WP_Debug is not defined
	 *
	 * @param string $filename The file name.
	 *
	 * @return string The file path
	 * @since  2.0.0
	 * @author Andrea Grillo <andrea.grillo@yithemes.com>
	 */
	function yit_load_js_file( $filename ) {

		if ( ! ( ( defined( 'WP_DEBUG' ) && WP_DEBUG ) || ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) || isset( $_GET['yith_script_debug'] ) ) ) { // phpcs:ignore WordPress.Security.NonceVerification.Recommended
			$filename = str_replace( '.js', '.min.js', $filename );
		}

		return $filename;
	}
}

if ( ! function_exists( 'yit_load_css_file' ) ) {
	/**
	 * Load .min.css file if WP_Debug is not defined
	 *
	 * @param string $filename The file name.
	 *
	 * @return string The file path
	 * @since  2.0.0
	 * @author Alberto Ruggiero
	 */
	function yit_load_css_file( $filename ) {

		if ( ! ( ( defined( 'WP_DEBUG' ) && WP_DEBUG ) || ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) || isset( $_GET['yith_script_debug'] ) ) ) { // phpcs:ignore WordPress.Security.NonceVerification.Recommended
			$filename = str_replace( '.css', '.min.css', $filename );
		}

		return $filename;
	}
}

if ( ! function_exists( 'yit_wpml_register_string' ) ) {
	/**
	 * Register a string in wpml translation.
	 *
	 * @param string $context The context name.
	 * @param string $name    The name.
	 * @param string $value   The value to translate.
	 *
	 * @since  2.0.0
	 * @author Andrea Frascaspata <andrea.frascaspata@yithemes.com>
	 */
	function yit_wpml_register_string( $context, $name, $value ) {
		do_action( 'wpml_register_single_string', $context, $name, $value );
	}
}

if ( ! function_exists( 'yit_wpml_string_translate' ) ) {
	/**
	 * Get a string translation
	 *
	 * @param string $context       The context name.
	 * @param string $name          The name.
	 * @param string $default_value Default value.
	 *
	 * @return string the string translated
	 * @since  2.0.0
	 * @author Andrea Frascaspata <andrea.frascaspata@yithemes.com>
	 */
	function yit_wpml_string_translate( $context, $name, $default_value ) {
		return apply_filters( 'wpml_translate_single_string', $default_value, $context, $name );
	}
}

if ( ! function_exists( 'yit_wpml_object_id' ) ) {
	/**
	 * Get id of post translation in current language
	 *
	 * @param int         $element_id                 The element ID.
	 * @param string      $element_type               The element type.
	 * @param bool        $return_original_if_missing Return original if missing or not.
	 * @param null|string $language_code              The language code.
	 *
	 * @return int the translation id
	 * @since  2.0.0
	 * @author Antonio La Rocca <antonio.larocca@yithemes.com>
	 */
	function yit_wpml_object_id( $element_id, $element_type = 'post', $return_original_if_missing = false, $language_code = null ) {
		if ( function_exists( 'wpml_object_id_filter' ) ) {
			return wpml_object_id_filter( $element_id, $element_type, $return_original_if_missing, $language_code );
		} elseif ( function_exists( 'icl_object_id' ) ) {
			return icl_object_id( $element_id, $element_type, $return_original_if_missing, $language_code );
		} else {
			return $element_id;
		}
	}
}

if ( ! function_exists( 'yit_get_language_from_locale' ) ) {
	/**
	 * Returns language name from locale code
	 *
	 * @param string $locale      Locale to search for.
	 * @param bool   $show_native Whether to return native language instead of english one.
	 *
	 * @return string Language name for passed locale; if can't find any, local itself is returned.
	 * @since  3.7.1
	 * @author Antonio La Rocca <antonio.larocca@yithemes.com>
	 */
	function yit_get_language_from_locale( $locale, $show_native = false ) {
		require_once ABSPATH . 'wp-admin/includes/translation-install.php';
		$translations = wp_get_available_translations();

		if ( in_array( $locale, array( 'en', 'en_US' ), true ) ) {
			/**
			 * English (United States) is not included in translations array
			 * We return fixed, non-localized string, as WordPress does
			 *
			 * @see {wp_dropdown_languages}
			 */
			return 'English';
		}

		if ( empty( $translations ) ) {
			return $locale;
		}

		// perfect match.
		$translation = isset( $translations[ $locale ] ) ? $translations[ $locale ] : false;

		// check for no-dialect.
		if ( 2 === strlen( $locale ) ) {

			// first check for common occurrences.
			if ( 'it' === $locale && isset( $translations['it_IT'] ) ) {
				$translation = $translations['it_IT'];
			} elseif ( 'es' === $locale && isset( $translations['es_ES'] ) ) {
				$translation = $translations['es_ES'];
			} elseif ( 'de' === $locale && isset( $translations['de_DE'] ) ) {
				$translation = $translations['de_DE'];
			} else {
				foreach ( $translations as $translation_locale => $translation_details ) {
					$no_dialect_locale = isset( $translation_details['iso'][1] ) ? $translation_details['iso'][1] : substr( $translation_locale, 0, 2 );

					if ( $locale !== $no_dialect_locale ) {
						continue;
					}

					$translation = $translation_details;

					// remove dialect from names.
					$translation['english_name'] = preg_replace( '/(.+) \(.*\)/', '$1', $translation['english_name'] );

					// we found what we were looking for; break.
					break;
				}
			}
		}

		if ( ! $translation ) {
			return $locale;
		}

		$language_name = $show_native ? $translation['native_name'] : $translation['english_name'];

		return $language_name;
	}
}

if ( ! function_exists( 'yith_get_formatted_price' ) ) {
	/**
	 * Format the price with a currency symbol.
	 *
	 * @param float $price The price.
	 * @param array $args  Arguments.
	 *
	 * @return string
	 */
	function yith_get_formatted_price( $price, $args = array() ) {
		$defaults = array(
			'ex_tax_label'       => false,
			'currency'           => '',
			'decimal_separator'  => wc_get_price_decimal_separator(),
			'thousand_separator' => wc_get_price_thousand_separator(),
			'decimals'           => wc_get_price_decimals(),
			'price_format'       => get_woocommerce_price_format(),
		);
		$args     = wp_parse_args( $args, $defaults );
		$args     = apply_filters( 'wc_price_args', $args );

		list ( $decimals, $decimal_separator, $thousand_separator, $price_format, $currency ) = yith_plugin_fw_extract( $args, 'decimals', 'decimal_separator', 'thousand_separator', 'price_format', 'currency' );

		$negative = $price < 0;
		$price    = apply_filters( 'raw_woocommerce_price', floatval( $negative ? $price * - 1 : $price ) );
		$price    = apply_filters( 'formatted_woocommerce_price', number_format( $price, $decimals, $decimal_separator, $thousand_separator ), $price, $decimals, $decimal_separator, $thousand_separator );

		if ( apply_filters( 'woocommerce_price_trim_zeros', false ) && $decimals > 0 ) {
			$price = wc_trim_zeros( $price );
		}

		$formatted_price = ( $negative ? '-' : '' ) . sprintf( $price_format, get_woocommerce_currency_symbol( $currency ), $price );
		$return          = $formatted_price;

		return apply_filters( 'wc_price', $return, $price, $args );
	}
}

if ( ! function_exists( 'yith_get_terms' ) ) {
	/**
	 * Get terms.
	 *
	 * @param array $args Arguments.
	 *
	 * @return array|int|WP_Error
	 * @deprecated 3.5 | use get_terms instead
	 */
	function yith_get_terms( $args ) {
		global $wp_version;
		if ( version_compare( $wp_version, '4.5', '>=' ) ) {
			$terms = get_terms( $args );
		} else {
			$terms = get_terms( $args['taxonomy'], $args );
		}

		return $terms;
	}
}

if ( ! function_exists( 'yith_field_deps_data' ) ) {
	/**
	 * Retrieve the field deps HTML data.
	 *
	 * @param array $field The field.
	 *
	 * @return string
	 */
	function yith_field_deps_data( $field ) {
		$deps_data = '';
		if ( isset( $field['deps'] ) && ( isset( $field['deps']['ids'] ) || isset( $field['deps']['id'] ) ) && ( isset( $field['deps']['values'] ) || isset( $field['deps']['value'] ) ) ) {
			$deps       = $field['deps'];
			$id         = isset( $deps['target-id'] ) ? $deps['target-id'] : $field['id'];
			$dep_id     = isset( $deps['id'] ) ? $deps['id'] : $deps['ids'];
			$dep_values = isset( $deps['value'] ) ? $deps['value'] : $deps['values'];
			$dep_type   = isset( $deps['type'] ) ? $deps['type'] : 'fadeIn';

			$deps_data = 'data-dep-target="' . esc_attr( $id ) . '" data-dep-id="' . esc_attr( $dep_id ) . '" data-dep-value="' . esc_attr( $dep_values ) . '" data-dep-type="' . esc_attr( $dep_type ) . '"';
		}

		return $deps_data;
	}
}

if ( ! function_exists( 'yith_panel_field_deps_data' ) ) {
	/**
	 * Retrieve the panel field deps HTML data.
	 *
	 * @param array                                         $field The field.
	 * @param YIT_Plugin_Panel|YIT_Plugin_Panel_WooCommerce $panel The panel object.
	 *
	 * @return string
	 */
	function yith_panel_field_deps_data( $field, $panel ) {
		$deps_data = '';
		if ( isset( $field['deps'] ) && ( isset( $field['deps']['ids'] ) || isset( $field['deps']['id'] ) ) && isset( $field['deps']['values'] ) ) {
			$dep_id               = isset( $field['deps']['id'] ) ? $field['deps']['id'] : $field['deps']['ids'];
			$field['deps']['ids'] = $panel->get_id_field( $dep_id );
			$field['deps']['id']  = $panel->get_id_field( $dep_id );
			$field['id']          = $panel->get_id_field( $field['id'] );

			$deps_data = yith_field_deps_data( $field );
		}

		return $deps_data;
	}
}

if ( ! function_exists( 'yith_plugin_fw_get_field' ) ) {
	/**
	 * Retrieve a field.
	 *
	 * @param array $field          The field.
	 * @param false $echo           Set to true to print the field directly; false otherwise.
	 * @param bool  $show_container Set to true to show the container; false otherwise.
	 *
	 * @return false|string
	 */
	function yith_plugin_fw_get_field( $field, $echo = false, $show_container = true ) {
		if ( empty( $field['type'] ) ) {
			return '';
		}

		if ( ! isset( $field['value'] ) ) {
			$field['value'] = '';
		}

		if ( ! isset( $field['name'] ) ) {
			$field['name'] = '';
		}

		if ( ! isset( $field['custom_attributes'] ) ) {
			$field['custom_attributes'] = array();
		}

		if ( is_array( $field['custom_attributes'] ) ) {
			/**
			 * Convert custom_attributes to string to prevent issues in plugins using them as string in their templates.
			 * todo: remove after checking plugins using custom_attributes as "string" in custom fields templates and as "array" in custom fields options.
			 */
			$field['custom_attributes'] = yith_plugin_fw_html_attributes_to_string( $field['custom_attributes'] );
		}

		if ( ! isset( $field['default'] ) && isset( $field['std'] ) ) {
			$field['default'] = $field['std'];
		}

		$field_template = yith_plugin_fw_get_field_template_path( $field );

		if ( ! isset( $field['id'] ) ) {
			static $field_number = 1;

			$field['id'] = "yith-plugin-fw-field__{$field_number}";
			$field_number ++;
		}

		if ( $field_template ) {
			if ( ! $echo ) {
				ob_start();
			}

			if ( $show_container ) {
				echo '<div class="yith-plugin-fw-field-wrapper yith-plugin-fw-' . esc_attr( $field['type'] ) . '-field-wrapper">';
			}

			do_action( 'yith_plugin_fw_get_field_before', $field );
			do_action( 'yith_plugin_fw_get_field_' . $field['type'] . '_before', $field );

			include $field_template;

			do_action( 'yith_plugin_fw_get_field_after', $field );
			do_action( 'yith_plugin_fw_get_field_' . $field['type'] . '_after', $field );

			if ( $show_container ) {
				echo '</div>';
			}

			if ( ! $echo ) {
				return ob_get_clean();
			}
		}

		return '';
	}
}

if ( ! function_exists( 'yith_plugin_fw_get_field_template_path' ) ) {
	/**
	 * Retrieve the field template path.
	 *
	 * @param array $field The field.
	 *
	 * @return false|string
	 */
	function yith_plugin_fw_get_field_template_path( $field ) {
		if ( empty( $field['type'] ) ) {
			return false;
		}

		$field_template = YIT_CORE_PLUGIN_TEMPLATE_PATH . '/fields/' . sanitize_title( $field['type'] ) . '.php';

		$field_template = apply_filters( 'yith_plugin_fw_get_field_template_path', $field_template, $field );

		return file_exists( $field_template ) ? $field_template : false;
	}
}

if ( ! function_exists( 'yith_plugin_fw_html_data_to_string' ) ) {
	/**
	 * Transform data array to HTML data.
	 *
	 * @param array $data The array of data.
	 * @param false $echo Set to true to print it directly; false otherwise.
	 *
	 * @return string
	 */
	function yith_plugin_fw_html_data_to_string( $data = array(), $echo = false ) {
		$html_data = '';

		if ( ! ! $data ) {
			if ( is_array( $data ) ) {
				foreach ( $data as $key => $value ) {
					$data_attribute = "data-{$key}";
					$data_value     = ! is_array( $value ) ? $value : implode( ',', $value );

					$html_data .= ' ' . esc_attr( $data_attribute ) . '="' . esc_attr( $data_value ) . '"';
				}
				$html_data .= ' ';
			}
		}

		if ( $echo ) {
			echo $html_data; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
		}

		return $html_data;
	}
}

if ( ! function_exists( 'yith_plugin_fw_get_icon' ) ) {
	/**
	 * Retrieve an icon.
	 *
	 * @param string $icon The icon.
	 * @param array  $args Array of arguments (such as html_tag, class, style, filter_suffix).
	 *
	 * @return string
	 */
	function yith_plugin_fw_get_icon( $icon = '', $args = array() ) {
		return YIT_Icons()->get_icon( $icon, $args );
	}
}

if ( ! function_exists( 'yith_plugin_fw_is_true' ) ) {
	/**
	 * Is something true?
	 *
	 * @param string|bool|int $value The value to check for.
	 *
	 * @return bool
	 */
	function yith_plugin_fw_is_true( $value ) {
		return true === $value || 1 === $value || '1' === $value || 'yes' === $value || 'true' === $value;
	}
}

if ( ! function_exists( 'yith_plugin_fw_enqueue_enhanced_select' ) ) {
	/**
	 * Enqueue the enhanced select style and script.
	 */
	function yith_plugin_fw_enqueue_enhanced_select() {
		wp_enqueue_script( 'yith-enhanced-select' );
		$select2_style_to_enqueue = function_exists( 'WC' ) ? 'woocommerce_admin_styles' : 'yith-select2-no-wc';
		wp_enqueue_style( $select2_style_to_enqueue );
	}
}

if ( ! function_exists( 'yit_add_select2_fields' ) ) {
	/**
	 * Add select 2.
	 *
	 * @param array $args The arguments.
	 */
	function yit_add_select2_fields( $args = array() ) {
		$default = array(
			'type'              => 'hidden',
			'class'             => '',
			'id'                => '',
			'name'              => '',
			'data-placeholder'  => '',
			'data-allow_clear'  => false,
			'data-selected'     => '',
			'data-multiple'     => false,
			'data-action'       => '',
			'value'             => '',
			'style'             => '',
			'custom-attributes' => array(),
		);

		$args = wp_parse_args( $args, $default );

		$custom_attributes = array();
		foreach ( $args['custom-attributes'] as $attribute => $attribute_value ) {
			$custom_attributes[] = esc_attr( $attribute ) . '="' . esc_attr( $attribute_value ) . '"';
		}
		$custom_attributes = implode( ' ', $custom_attributes );

		if ( ! function_exists( 'WC' ) || version_compare( WC()->version, '2.7.0', '>=' ) ) {
			if ( true === $args['data-multiple'] && substr( $args['name'], - 2 ) !== '[]' ) {
				$args['name'] = $args['name'] . '[]';
			}
			$select2_template_name = 'select2.php';

		} else {
			if ( false === $args['data-multiple'] && is_array( $args['data-selected'] ) ) {
				$args['data-selected'] = current( $args['data-selected'] );
			}
			$select2_template_name = 'select2-wc-2.6.php';
		}

		$template = YIT_CORE_PLUGIN_TEMPLATE_PATH . '/fields/resources/' . $select2_template_name;
		if ( file_exists( $template ) ) {
			include $template;
		}
	}
}

if ( ! function_exists( 'yith_plugin_fw_get_version' ) ) {
	/**
	 * Retrieve the Plugin Framework version.
	 *
	 * @return string
	 */
	function yith_plugin_fw_get_version() {
		$plugin_fw_data = get_file_data( trailingslashit( YIT_CORE_PLUGIN_PATH ) . 'init.php', array( 'Version' => 'Version' ) );

		return $plugin_fw_data['Version'];
	}
}

if ( ! function_exists( 'yith_get_premium_support_url' ) ) {
	/**
	 * Return the url for My Account > Support dashboard
	 *
	 * @return string The complete string, if the main string is not empty or null
	 * @since      2.0.0
	 * @deprecated 3.5
	 */
	function yith_get_premium_support_url() {
		return 'https://yithemes.com/my-account/support/dashboard/';
	}
}

if ( ! function_exists( 'yith_plugin_fw_is_panel' ) ) {
	/**
	 * Is this a Plugin Framework panel?
	 *
	 * @return bool
	 */
	function yith_plugin_fw_is_panel() {
		$panel_screen_id = 'yith-plugins_page';
		$screen          = function_exists( 'get_current_screen' ) ? get_current_screen() : null;

		return $screen instanceof WP_Screen && strpos( $screen->id, $panel_screen_id ) !== false;
	}
}

if ( ! function_exists( 'yith_plugin_fw_force_regenerate_plugin_update_transient' ) ) {
	/**
	 * Delete the update plugins transient
	 *
	 * @return void
	 * @since  1.0
	 * @see    update_plugins transient and pre_set_site_transient_update_plugins hooks
	 * @author Andrea Grillo <andrea.grillo@yithemes.com>
	 */
	function yith_plugin_fw_force_regenerate_plugin_update_transient() {
		delete_site_transient( 'update_plugins' );
	}
}

if ( ! function_exists( 'yith_plugin_fw_is_gutenberg_enabled' ) ) {
	/**
	 * Is Gutenberg enabled?
	 *
	 * @return bool
	 */
	function yith_plugin_fw_is_gutenberg_enabled() {
		return function_exists( 'YITH_Gutenberg' );
	}
}

if ( ! function_exists( 'yith_plugin_fw_gutenberg_add_blocks' ) ) {
	/**
	 * Add new blocks to Gutenberg
	 *
	 * @param string|array $blocks Blocks to add.
	 *
	 * @return bool true if add a new blocks, false otherwise
	 * @author Andrea Grillo <andrea.grillo@yithemes.com>
	 */
	function yith_plugin_fw_gutenberg_add_blocks( $blocks ) {
		$added = false;
		if ( yith_plugin_fw_is_gutenberg_enabled() ) {
			// Add blocks.
			$added = YITH_Gutenberg()->add_blocks( $blocks );

			// Add blocks arguments.
			if ( $added ) {
				YITH_Gutenberg()->set_block_args( $blocks );
			}
		}

		return $added;
	}
}

if ( ! function_exists( 'yith_plugin_fw_gutenberg_get_registered_blocks' ) ) {
	/**
	 * Return an array with the registered blocks
	 *
	 * @return array
	 */
	function yith_plugin_fw_gutenberg_get_registered_blocks() {
		return yith_plugin_fw_is_gutenberg_enabled() ? YITH_Gutenberg()->get_registered_blocks() : array();
	}
}

if ( ! function_exists( 'yith_plugin_fw_gutenberg_get_to_register_blocks' ) ) {
	/**
	 * Return an array with the blocks to register
	 *
	 * @return array
	 */
	function yith_plugin_fw_gutenberg_get_to_register_blocks() {
		return yith_plugin_fw_is_gutenberg_enabled() ? YITH_Gutenberg()->get_to_register_blocks() : array();
	}
}

if ( ! function_exists( 'yith_plugin_fw_get_default_logo' ) ) {
	/**
	 * Get the default SVG logo
	 *
	 * @return string default logo image url
	 */
	function yith_plugin_fw_get_default_logo() {
		return YIT_CORE_PLUGIN_URL . '/assets/images/yith-icon.svg';
	}
}

if ( ! function_exists( 'yith_get_wrapper_class' ) ) {
	/**
	 * Return the wrapper class for the UI style.
	 *
	 * @return string
	 * @since 3.7.0
	 */
	function yith_get_wrapper_class() {
		return 'yith-plugin-ui';
	}
}

if ( ! function_exists( 'yith_set_wrapper_class' ) ) {
	/**
	 * Return the wrapper class for the UI style, by setting any additional class passed through the $class parameter.
	 *
	 * @param array|string $class List of additional classes to add to the UI style class.
	 *
	 * @return string
	 * @author Emanuela Castorina
	 */
	function yith_set_wrapper_class( $class = '' ) {
		$new_class = yith_get_wrapper_class();
		$class     = ( ! empty( $class ) && is_array( $class ) ) ? implode( ' ', $class ) : $class;

		return $new_class . ' ' . $class;
	}
}

if ( ! function_exists( 'yith_get_date_formats' ) ) {
	/**
	 * Get all available date format.
	 *
	 * @param bool $js JS date format or not.
	 *
	 * @return array
	 * @author     Salvatore Strano
	 * @since      3.1
	 * @deprecated 3.5 | use yith_get_date_formats() instead
	 */
	function yith_get_date_format( $js = true ) {
		return yith_get_date_formats( $js );
	}
}

if ( ! function_exists( 'yith_get_date_formats' ) ) {
	/**
	 * Get all available date formats.
	 *
	 * @param bool $js JS date format or not.
	 *
	 * @return array
	 * @since  3.5
	 */
	function yith_get_date_formats( $js = true ) {
		$date_formats = array(
			'F j, Y' => 'F j, Y',
			'Y-m-d'  => 'Y-m-d',
			'm/d/Y'  => 'm/d/Y',
			'd/m/Y'  => 'd/m/Y',
		);

		if ( $js ) {
			$date_formats = array(
				'MM d, yy' => 'F j, Y',
				'yy-mm-dd' => 'Y-m-d',
				'mm/dd/yy' => 'm/d/Y',
				'dd/mm/yy' => 'd/m/Y',
			);
		}

		return apply_filters( 'yith_plugin_fw_date_formats', $date_formats, $js );
	}
}

if ( ! function_exists( 'yith_get_time_formats' ) ) {
	/**
	 * Get all available time format.
	 *
	 * @return array
	 * @author Emanuela Castorina
	 * @since  3.5
	 */
	function yith_get_time_formats() {

		$time_formats = array(
			'h:i:s' => 'h:i:s',
			'g:i a' => 'g:i a',
			'g:i A' => 'g:i A',
			'H:i'   => 'H:i',
		);

		return apply_filters( 'yith_plugin_fw_time_formats', $time_formats );
	}
}


if ( ! function_exists( 'yith_format_toggle_title' ) ) {
	/**
	 * Replace the placeholders with the values of the element id for toggle element field.
	 *
	 * @param string $title  The title.
	 * @param array  $values The values.
	 *
	 * @return array
	 * @author Salvatore Strano
	 * @since  3.1
	 */
	function yith_format_toggle_title( $title, $values ) {
		preg_match_all( '/(?<=\%%).+?(?=\%%)/', $title, $matches );
		if ( isset( $matches[0] ) ) {
			foreach ( $matches[0] as $element_id ) {
				if ( isset( $values[ $element_id ] ) ) {
					$title = str_replace( '%%' . $element_id . '%%', $values[ $element_id ], $title );
				}
			}
		}

		return $title;
	}
}

if ( ! function_exists( 'yith_plugin_fw_load_update_and_licence_files' ) ) {
	/**
	 * Load premium file for license and update system
	 *
	 * @author Andrea Grillo <andrea.grillo@yithemes.com>
	 */
	function yith_plugin_fw_load_update_and_licence_files() {
		global $plugin_upgrade_fw_data;

		/**
		 * If the init.php was load by old plugin-fw version
		 * load the upgrade and license key from local folder
		 */
		if ( empty( $plugin_upgrade_fw_data ) ) {
			$plugin_upgrade_path = plugin_dir_path( __DIR__ ) . 'plugin-upgrade';
			if ( file_exists( $plugin_upgrade_path ) ) {
				$required_files = array(
					$plugin_upgrade_path . '/lib/yit-licence.php',
					$plugin_upgrade_path . '/lib/yit-plugin-licence.php',
					$plugin_upgrade_path . '/lib/yit-theme-licence.php',
					$plugin_upgrade_path . '/lib/yit-plugin-upgrade.php',
				);

				$plugin_upgrade_fw_data = array( '1.0' => $required_files );
			}
		}

		if ( ! empty( $plugin_upgrade_fw_data ) && is_array( $plugin_upgrade_fw_data ) ) {
			foreach ( $plugin_upgrade_fw_data as $fw_version => $core_files ) {
				foreach ( $core_files as $core_file ) {
					if ( file_exists( $core_file ) ) {
						include_once $core_file;
					}
				}
			}
		}
	}
}

if ( ! function_exists( 'yith_plugin_fw_remove_duplicate_classes' ) ) {
	/**
	 * Remove the duplicate classes from a string.
	 *
	 * @param string $classes The classes.
	 *
	 * @return string
	 * @since  3.2.2
	 * @author Emanuela Castorina <emanuela.castorina@yithemes.com>
	 */
	function yith_plugin_fw_remove_duplicate_classes( $classes ) {
		$class_array  = explode( ' ', $classes );
		$class_unique = array_unique( array_filter( $class_array ) );
		if ( $class_unique ) {
			$classes = implode( ' ', $class_unique );
		}

		return $classes;
	}
}

if ( ! function_exists( 'yith_plugin_fw_add_requirements' ) ) {
	/**
	 * Add plugin requirements
	 *
	 * @param string $plugin_name  The name of the plugin.
	 * @param array  $requirements Array of plugin requirements.
	 */
	function yith_plugin_fw_add_requirements( $plugin_name, $requirements ) {
		if ( ! empty( $requirements ) ) {
			YITH_System_Status()->add_requirements( $plugin_name, $requirements );
		}
	}
}

if ( ! function_exists( 'yith_plugin_fw_parse_dimensions' ) ) {
	/**
	 * Parse dimensions stored through a "dimensions" field to a key-value array
	 * where the key will be equal to the dimension key
	 * and the value will be equal to the value of the dimension suffixed with the unit
	 *
	 * @param array $values The values.
	 *
	 * @return array
	 */
	function yith_plugin_fw_parse_dimensions( $values ) {
		$dimensions = array();
		if ( is_array( $values ) && isset( $values['dimensions'], $values['unit'] ) && is_array( $values['dimensions'] ) ) {
			$raw_unit = $values['unit'];
			$unit     = 'percentage' === $raw_unit ? '%' : $raw_unit;
			foreach ( $values['dimensions'] as $key => $value ) {
				$dimensions[ $key ] = $value . $unit;
			}
		}

		return $dimensions;
	}
}

if ( ! function_exists( 'yith_plugin_fw_get_dimensions_by_option' ) ) {
	/**
	 * Retrieve a parsed array of dimensions by an option
	 *
	 * @param string     $option  The option.
	 * @param bool|array $default Default value.
	 *
	 * @return array|bool
	 */
	function yith_plugin_fw_get_dimensions_by_option( $option, $default = false ) {
		$dimensions = get_option( $option, false );

		return ! ! $dimensions ? yith_plugin_fw_parse_dimensions( $dimensions ) : $default;
	}
}

if ( ! function_exists( 'yith_plugin_fw_extract' ) ) {
	/**
	 * Extract array variables
	 *
	 * Usage example:
	 * ```
	 * list ( $type, $class, $value ) = yith_plugin_fw_extract( $field, 'type', 'class', 'value' );
	 * ```
	 *
	 * @param array  $array   The array.
	 * @param string ...$keys The keys.
	 *
	 * @return array
	 * @since 3.5
	 */
	function yith_plugin_fw_extract( $array, ...$keys ) {
		return array_map(
			function ( $key ) use ( $array ) {
				return isset( $array[ $key ] ) ? $array[ $key ] : null;
			},
			$keys
		);
	}
}


if ( ! function_exists( 'yith_plugin_fw_register_elementor_widget' ) ) {
	/**
	 * Register Elementor widget
	 *
	 * @param string $widget_name    The widget name.
	 * @param array  $widget_options The widget options.
	 *
	 * @since 3.6.0
	 */
	function yith_plugin_fw_register_elementor_widget( $widget_name, $widget_options ) {
		YITH_Elementor::instance()->register_widget( $widget_name, $widget_options );
	}
}

if ( ! function_exists( 'yith_plugin_fw_register_elementor_widgets' ) ) {
	/**
	 * Register Elementor widgets
	 *
	 * @param array $widgets            The widgets.
	 * @param bool  $map_from_gutenberg Set to true if you need to map options from Gutenberg blocks array.
	 *
	 * @since 3.6.0
	 */
	function yith_plugin_fw_register_elementor_widgets( $widgets, $map_from_gutenberg = false ) {
		foreach ( $widgets as $widget_name => $widget_options ) {
			if ( $map_from_gutenberg ) {
				$widget_options = array_merge( array( 'map_from_gutenberg' => true ), $widget_options );
			}
			yith_plugin_fw_register_elementor_widget( $widget_name, $widget_options );
		}
	}
}

if ( ! function_exists( 'yith_plugin_fw_copy_to_clipboard' ) ) {
	/**
	 * Print a field with a button to copy its content to clipboard
	 *
	 * @param string $value The text to be shown.
	 * @param array  $field The field attributes.
	 *
	 * @since 3.6.2
	 */
	function yith_plugin_fw_copy_to_clipboard( $value, $field = array() ) {
		$defaults      = array(
			'id'    => '',
			'value' => $value,
		);
		$field         = wp_parse_args( $field, $defaults );
		$field['type'] = 'copy-to-clipboard';

		// Enqueue style and script if not enqueued.
		wp_enqueue_style( 'yith-plugin-fw-fields' );
		wp_enqueue_script( 'yith-plugin-fw-fields' );

		yith_plugin_fw_get_field( $field, true, false );
	}
}

if ( ! function_exists( 'yith_plugin_fw_add_utm_data' ) ) {
	/**
	 * Add UTM data in backend url
	 *
	 * @param string $url      The url that want to track.
	 * @param string $slug     Plugin slug.
	 * @param string $campaign Campaign to track. Default: plugin-version-author-uri.
	 * @param string $source   Where the link came from. Default: wp-dashboard.
	 *
	 * @since 3.6.10
	 */
	function yith_plugin_fw_add_utm_data( $url, $slug, $campaign = 'plugin-version-author-uri', $source = 'wp-dashboard' ) {
		$url = trailingslashit( $url );
		if ( ! empty( $slug ) ) {
			$utm_track_data = array(
				'utm_source'   => $source,
				'utm_medium'   => $slug,
				'utm_campaign' => $campaign,
			);

			$url = add_query_arg( $utm_track_data, $url );
		}

		return $url;
	}
}

if ( ! function_exists( 'yith_plugin_fw_include_fw_template' ) ) {
	/**
	 * Include a FW template
	 *
	 * @param string $template The template.
	 * @param array  $args     Arguments.
	 *
	 * @since 3.7.0
	 */
	function yith_plugin_fw_include_fw_template( $template, $args = array() ) {
		$_template_path = trailingslashit( YIT_CORE_PLUGIN_TEMPLATE_PATH ) . $template;

		if ( file_exists( $_template_path ) ) {
			extract( $args ); // phpcs:ignore WordPress.PHP.DontExtract.extract_extract
			include $_template_path;
		}
	}
}

if ( ! function_exists( 'yith_plugin_fw_html_attributes_to_string' ) ) {
	/**
	 * Transform attributes array to HTML attributes string.
	 * If using a string, the attributes will be escaped.
	 * Prefer using arrays.
	 *
	 * @param array|string $attributes The attributes.
	 * @param bool         $echo       Set to true to print it directly; false otherwise.
	 *
	 * @return string
	 * @since 3.7.0
	 * @since 3.8.0 Escaping attributes when using strings; allow value-less attributes by setting value to null.
	 */
	function yith_plugin_fw_html_attributes_to_string( $attributes = array(), $echo = false ) {
		$html_attributes = '';

		if ( ! ! $attributes ) {
			if ( is_string( $attributes ) ) {
				$parsed_attrs = wp_kses_hair( $attributes, wp_allowed_protocols() );
				$attributes   = array();
				foreach ( $parsed_attrs as $attr ) {
					$attributes[ $attr['name'] ] = 'n' === $attr['vless'] ? $attr['value'] : null;
				}
			}

			if ( is_array( $attributes ) ) {
				$html_attributes = array();
				foreach ( $attributes as $key => $value ) {
					if ( ! is_null( $value ) ) {
						$html_attributes[] = esc_attr( $key ) . '="' . esc_attr( $value ) . '"';
					} else {
						$html_attributes[] = esc_attr( $key );
					}
				}
				$html_attributes = implode( ' ', $html_attributes );
			}
		}

		if ( $echo ) {
			// Already escaped above.
			echo $html_attributes; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
		}

		return $html_attributes;
	}
}

if ( ! function_exists( 'yith_plugin_fw_get_component' ) ) {
	/**
	 * Retrieve a component.
	 *
	 * @param array $component The component.
	 * @param bool  $echo      Set to true to print the component directly; false otherwise.
	 *
	 * @return false|string
	 * @since 3.7.0
	 */
	function yith_plugin_fw_get_component( $component, $echo = true ) {
		if ( ! empty( $component['type'] ) ) {
			$type     = sanitize_title( $component['type'] );
			$defaults = array(
				'id'         => '',
				'class'      => '',
				'attributes' => array(),
				'data'       => array(),
			);

			$component = wp_parse_args( $component, $defaults );

			$component_template = '/components/' . $type . '.php';

			if ( ! $echo ) {
				ob_start();
			}

			yith_plugin_fw_include_fw_template( $component_template, compact( 'component' ) );

			if ( ! $echo ) {
				return ob_get_clean();
			}
		}

		return '';
	}
}

if ( ! function_exists( 'yith_plugin_fw_get_default_post_actions' ) ) {
	/**
	 * Retrieve the default post actions to be used in WP List tables to show action buttons.
	 *
	 * @param WP_Post|int $post                   The post.
	 * @param array       $args                   {
	 *                                            Optional. Arguments to retrieve actions.
	 *
	 * @type array        $more-menu              Array of more-menu items.
	 * @type array|bool   $more-menu-in-trash     false: the menu will be not shown in trash | true: the menu will be shown in trash | array: set specific menu for trash.
	 * @type string|false $duplicate-url          The Duplicate URL. Default: false (the duplicate action will be not shown).
	 * @type string|false $confirm-trash-message  The 'confirm trash' message. Set to false to not ask for trash confirmation.
	 * @type string|false $confirm-delete-message The 'confirm delete' message. Set to false to not ask for delete confirmation.
	 * }
	 *
	 * @return array
	 * @since 3.7.0
	 */
	function yith_plugin_fw_get_default_post_actions( $post, $args = array() ) {
		$post    = get_post( $post );
		$actions = array();
		if ( $post ) {
			$title            = _draft_or_post_title( $post );
			$post_type_object = get_post_type_object( $post->post_type );
			$can_edit_post    = current_user_can( 'edit_post', $post->ID );

			$defaults = array(
				'more-menu'              => array(),
				'more-menu-in-trash'     => false,
				'duplicate-url'          => false,
				// translators: %s is the title of the post object.
				'confirm-trash-message'  => sprintf( __( 'Are you sure you want to move "%s" to trash?', 'yith-plugin-fw' ), '<strong>' . $title . '</strong>' ),
				// translators: %s is the title of the post object.
				'confirm-delete-message' => sprintf( __( 'Are you sure you want to delete "%s"?', 'yith-plugin-fw' ), '<strong>' . $title . '</strong>' ) . '<br /><br />' . __( 'This action cannot be undone and you will not be able to recover this data.', 'yith-plugin-fw' ),
			);

			$args = wp_parse_args( $args, $defaults );

			if ( is_post_type_viewable( $post_type_object ) ) {
				if ( in_array( $post->post_status, array( 'pending', 'draft', 'future' ), true ) ) {
					if ( $can_edit_post ) {
						$preview_link = get_preview_post_link( $post );

						$actions['view'] = array(
							'type'   => 'action-button',
							'title'  => _x( 'Preview', 'Post action', 'yith-plugin-fw' ),
							'action' => 'view',
							'icon'   => 'eye',
							'url'    => $preview_link,
						);
					}
				} elseif ( 'trash' !== $post->post_status ) {
					$actions['view'] = array(
						'type'   => 'action-button',
						'title'  => _x( 'View', 'Post action', 'yith-plugin-fw' ),
						'action' => 'view',
						'icon'   => 'eye',
						'url'    => get_permalink( $post->ID ),
					);
				}
			}

			if ( $can_edit_post && 'trash' !== $post->post_status ) {
				$actions['edit'] = array(
					'type'   => 'action-button',
					'title'  => _x( 'Edit', 'Post action', 'yith-plugin-fw' ),
					'action' => 'edit',
					'url'    => get_edit_post_link( $post->ID ),
				);

				if ( $args['duplicate-url'] ) {
					$actions['duplicate'] = array(
						'type'   => 'action-button',
						'title'  => _x( 'Duplicate', 'Post action', 'yith-plugin-fw' ),
						'action' => 'duplicate',
						'icon'   => 'clone',
						'url'    => $args['duplicate-url'],
					);
				}
			}

			if ( current_user_can( 'delete_post', $post->ID ) ) {
				if ( 'trash' === $post->post_status ) {
					$actions['untrash'] = array(
						'type'   => 'action-button',
						'title'  => _x( 'Restore', 'Post action', 'yith-plugin-fw' ),
						'action' => 'untrash',
						'icon'   => 'reply',
						'url'    => wp_nonce_url( admin_url( sprintf( $post_type_object->_edit_link . '&amp;action=untrash', $post->ID ) ), 'untrash-post_' . $post->ID ),
					);
				} elseif ( EMPTY_TRASH_DAYS ) {
					$actions['trash'] = array(
						'type'   => 'action-button',
						'title'  => _x( 'Trash', 'Post action', 'yith-plugin-fw' ),
						'action' => 'trash',
						'url'    => get_delete_post_link( $post->ID ),
					);
					if ( $args['confirm-trash-message'] ) {
						$actions['trash']['confirm_data'] = array(
							'title'               => __( 'Confirm trash', 'yith-plugin-fw' ),
							'message'             => $args['confirm-trash-message'],
							'cancel-button'       => __( 'No', 'yith-plugin-fw' ),
							'confirm-button'      => _x( 'Yes, move to trash', 'Trash confirmation action', 'yith-plugin-fw' ),
							'confirm-button-type' => 'delete',
						);
					}
				}
				if ( 'trash' === $post->post_status || ! EMPTY_TRASH_DAYS ) {
					$actions['delete'] = array(
						'type'   => 'action-button',
						'title'  => _x( 'Delete Permanently', 'Post action', 'yith-plugin-fw' ),
						'action' => 'delete',
						'icon'   => 'trash',
						'url'    => get_delete_post_link( $post->ID, '', true ),
					);
					if ( $args['confirm-delete-message'] ) {
						$actions['delete']['confirm_data'] = array(
							'title'               => __( 'Confirm delete', 'yith-plugin-fw' ),
							'message'             => $args['confirm-delete-message'],
							'cancel-button'       => __( 'No', 'yith-plugin-fw' ),
							'confirm-button'      => _x( 'Yes, delete', 'Delete confirmation action', 'yith-plugin-fw' ),
							'confirm-button-type' => 'delete',
						);
					}
				}
			}

			if ( $args['more-menu'] ) {
				if ( 'trash' !== $post->post_status || true === $args['more-menu-in-trash'] ) {
					$actions['more'] = array(
						'type'   => 'action-button',
						'title'  => __( 'Further actions', 'yith-plugin-fw' ),
						'action' => 'more',
						'url'    => '#',
						'menu'   => $args['more-menu'],
					);
				} elseif ( ! ! $args['more-menu-in-trash'] ) {
					$actions['more'] = array(
						'type'   => 'action-button',
						'title'  => __( 'Further actions', 'yith-plugin-fw' ),
						'action' => 'more',
						'url'    => '#',
						'menu'   => $args['more-menu-in-trash'],
					);
				}
			}
		}

		return $actions;
	}
}

if ( ! function_exists( 'yith_plugin_fw_get_default_term_actions' ) ) {
	/**
	 * Retrieve the default term actions to be used in WP List tables to show action buttons.
	 *
	 * @param WP_Term|int $term                   The term.
	 * @param array       $args                   {
	 *                                            Optional. Arguments to retrieve actions.
	 *
	 * @type string       $taxonomy               The taxonomy. If not set, the taxonomy will be retrieved by $_REQUEST.
	 * @type string       $object-type            The object type the term is assigned to (ex: the post-type).
	 * @type array        $more-menu              Array of more-menu items.
	 * @type string|false $duplicate-url          The Duplicate URL. Default: false (the duplicate action will be not shown).
	 * @type string|false $confirm-delete-message The 'confirm delete' message. Set to false to not ask for delete confirmation.
	 * }
	 *
	 * @return array
	 * @since 3.7.0
	 */
	function yith_plugin_fw_get_default_term_actions( $term, $args = array() ) {
		if ( isset( $args['taxonomy'] ) ) {
			$taxonomy = $args['taxonomy'];
		} else {
			// phpcs:ignore WordPress.Security.NonceVerification.Recommended
			$taxonomy = isset( $_REQUEST['taxonomy'] ) ? sanitize_title( wp_unslash( $_REQUEST['taxonomy'] ) ) : false;
		}

		if ( is_numeric( $term ) ) {
			$term_id = absint( $term );
			$term    = get_term_by( 'id', $term_id, $taxonomy );
		}

		$actions = array();
		$tax     = get_taxonomy( $taxonomy );
		if ( ! empty( $term->term_id ) && $tax ) {
			$title    = $term->name;
			$uri      = wp_doing_ajax() ? wp_get_referer() : esc_url_raw( wp_unslash( isset( $_SERVER['REQUEST_URI'] ) ? $_SERVER['REQUEST_URI'] : '' ) );
			$defaults = array(
				'object-type'            => '',
				'more-menu'              => array(),
				'duplicate-url'          => false,
				// translators: %s is the title of the post object.
				'confirm-delete-message' => sprintf( __( 'Are you sure you want to delete "%s"?', 'yith-plugin-fw' ), '<strong>' . $title . '</strong>' ) . '<br /><br />' . __( 'This action cannot be undone and you will not be able to recover this data.', 'yith-plugin-fw' ),
			);

			$args = wp_parse_args( $args, $defaults );

			$edit_link = add_query_arg(
				'wp_http_referer',
				$uri,
				get_edit_term_link( $term->term_id, $taxonomy, $args['object-type'] )
			);

			if ( is_taxonomy_viewable( $tax ) ) {
				$actions['view'] = array(
					'type'   => 'action-button',
					'title'  => _x( 'View', 'Term action', 'yith-plugin-fw' ),
					'action' => 'view',
					'icon'   => 'eye',
					'url'    => get_term_link( $term ),
				);
			}

			if ( current_user_can( 'edit_term', $term->term_id ) ) {
				$actions['edit'] = array(
					'type'   => 'action-button',
					'title'  => _x( 'Edit', 'Term action', 'yith-plugin-fw' ),
					'action' => 'edit',
					'url'    => $edit_link,
				);

				if ( $args['duplicate-url'] ) {
					$actions['duplicate'] = array(
						'type'   => 'action-button',
						'title'  => _x( 'Duplicate', 'Term action', 'yith-plugin-fw' ),
						'action' => 'duplicate',
						'icon'   => 'clone',
						'url'    => $args['duplicate-url'],
					);
				}
			}

			if ( current_user_can( 'delete_term', $term->term_id ) ) {
				$delete_url = wp_nonce_url( "edit-tags.php?action=delete&amp;taxonomy=$taxonomy&amp;tag_ID=$term->term_id", 'delete-tag_' . $term->term_id );

				$actions['delete'] = array(
					'type'   => 'action-button',
					'title'  => _x( 'Delete', 'Term action', 'yith-plugin-fw' ),
					'action' => 'delete',
					'icon'   => 'trash',
					'url'    => $delete_url,
				);
				if ( $args['confirm-delete-message'] ) {
					$actions['delete']['confirm_data'] = array(
						'title'               => __( 'Confirm delete', 'yith-plugin-fw' ),
						'message'             => $args['confirm-delete-message'],
						'confirm-button'      => _x( 'Yes, delete', 'Delete confirmation action', 'yith-plugin-fw' ),
						'confirm-button-type' => 'delete',
					);
				}
			}

			if ( $args['more-menu'] ) {
				$actions['more'] = array(
					'type'   => 'action-button',
					'title'  => __( 'Further actions', 'yith-plugin-fw' ),
					'action' => 'more',
					'url'    => '#',
					'menu'   => $args['more-menu'],
				);
			}
		}

		return $actions;
	}
}

if ( ! function_exists( 'yith_plugin_fw_get_action_buttons' ) ) {
	/**
	 * Retrieve action buttons.
	 *
	 * @param array $actions The actions.
	 * @param bool  $echo    Set to true to print the field directly; false otherwise.
	 *
	 * @return string
	 * @since 3.7.0
	 */
	function yith_plugin_fw_get_action_buttons( $actions, $echo = true ) {
		$actions_html = '';

		foreach ( $actions as $action ) {
			$action['type'] = 'action-button';

			$actions_html .= yith_plugin_fw_get_component( $action, $echo );
		}

		return $actions_html;
	}
}

if ( ! function_exists( 'yith_plugin_fw_get_post_formatted_name' ) ) {
	/**
	 * Get the formatted name for posts/products
	 *
	 * @param int|WP_Post|WC_Product $post The post ID, the post object, or the product object.
	 * @param array                  $args Arguments.
	 *
	 * @return string
	 * @since 3.7.2
	 */
	function yith_plugin_fw_get_post_formatted_name( $post, $args = array() ) {
		$defaults  = array(
			'show-id'   => false,
			'post-type' => false,
		);
		$args      = wp_parse_args( $args, $defaults );
		$post_type = $args['post-type'];
		$show_id   = $args['show-id'];

		if ( is_a( $post, 'WP_Post' ) ) {
			$post_id = $post->ID;
		} elseif ( class_exists( 'WC_Product' ) && is_a( $post, 'WC_Product' ) ) {
			$post_id = $post->get_id();
			if ( false === $post_type ) {
				$post_type = is_a( $post, 'WC_Product_Variation' ) ? 'product_variation' : 'product';
			}
		} else {
			$post_id = absint( $post );
		}

		if ( ! $post_type ) {
			$post_type = get_post_type( $post_id );
		}

		$name = null;

		switch ( $post_type ) {
			case 'product':
			case 'product_variation':
				$product = wc_get_product( $post );
				if ( $product ) {
					$name = $product->get_formatted_name();

					if ( ! $show_id ) {

						if ( $product->get_sku() ) {
							$identifier = $product->get_sku();
						} else {
							$identifier = '#' . $product->get_id();
						}

						// Use normal replacing instead of regex since the identifier could be also the product SKU.
						$name = str_replace( "({$identifier})", '', $name );
					}
				}
		}

		if ( is_null( $name ) ) {
			$name = get_the_title( $post_id );
			if ( $show_id ) {
				$name .= " (#{$post_id})";
			}
		}

		return $name;
	}
}

if ( ! function_exists( 'yith_plugin_fw_add_kses_global_attributes' ) ) {

	/**
	 * Add global attributes to a tag in the allowed HTML list.
	 *
	 * @param array $attributes An array of attributes.
	 *
	 * @return array The array of attributes with global attributes added.
	 *
	 * @since  3.8.0
	 */
	function yith_plugin_fw_add_kses_global_attributes( $attributes ) {
		$global_attributes = array(
			'aria-describedby' => true,
			'aria-details'     => true,
			'aria-label'       => true,
			'aria-labelledby'  => true,
			'aria-hidden'      => true,
			'class'            => true,
			'id'               => true,
			'style'            => true,
			'title'            => true,
			'role'             => true,
			'data-*'           => true,
		);

		if ( true === $attributes ) {
			$attributes = array();
		}

		if ( is_array( $attributes ) ) {
			return array_merge( $attributes, $global_attributes );
		}

		return $attributes;
	}
}
PK`x1\�Q�qq*plugin-fw/yit-plugin-registration-hook.phpnu�[���<?php
/**
 * Functions for plugin registration hook.
 *
 * @package YITH\PluginFramework
 */

defined( 'ABSPATH' ) || exit; // Exit if accessed directly.

if ( ! function_exists( 'yith_plugin_registration_hook' ) ) {
	/**
	 * Register the plugin when activated.
	 * Please note: use this function through register_activation_hook.
	 *
	 * @use activate_PLUGINNAME hook
	 */
	function yith_plugin_registration_hook() {
		$hook     = str_replace( 'activate_', '', current_filter() );
		$option   = get_option( 'yit_recently_activated', array() );
		$option[] = $hook;
		update_option( 'yit_recently_activated', $option );
	}
}
PK`x1\����(plugin-fw/dist/gutenberg/index.asset.phpnu�[���<?php return array('dependencies' => array('lodash', 'react', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-compose', 'wp-element', 'wp-hooks', 'wp-polyfill', 'wp-url'), 'version' => 'ec5c5e974d97e00eb3f18286c25e0840');PK`x1\(P��=�=!plugin-fw/dist/gutenberg/index.jsnu�[���!function(){var e,t={783:function(e,t,o){"use strict";var r=window.wp.element,n=window.React,a=o(568),l=o.n(a),s=window.wp.blocks,c=window.wp.url;function i(e){if(e.status>=200&&e.status<300)return e;throw e}function u(e){return e.json?e.json():e.text()}const h=(0,r.createElement)("svg",{viewBox:"0 0 22 22",xmlns:"http://www.w3.org/2000/svg",width:"22",height:"22",role:"img","aria-hidden":"true",focusable:"false"},(0,r.createElement)("path",{width:"22",height:"22",d:"M 18.24 7.628 C 17.291 8.284 16.076 8.971 14.587 9.688 C 15.344 7.186 15.765 4.851 15.849 2.684 C 15.912 0.939 15.133 0.045 13.514 0.003 C 11.558 -0.06 10.275 1.033 9.665 3.284 C 10.007 3.137 10.359 3.063 10.723 3.063 C 11.021 3.063 11.267 3.184 11.459 3.426 C 11.651 3.668 11.736 3.947 11.715 4.262 C 11.695 5.082 11.276 5.961 10.46 6.896 C 9.644 7.833 8.918 8.3 8.282 8.3 C 7.837 8.3 7.625 7.922 7.646 7.165 C 7.667 6.765 7.804 5.955 8.056 4.735 C 8.287 3.579 8.403 2.801 8.403 2.401 C 8.403 1.707 8.224 1.144 7.867 0.713 C 7.509 0.282 6.994 0.098 6.321 0.161 C 5.858 0.203 5.175 0.624 4.27 1.422 C 3.596 2.035 2.923 2.644 2.25 3.254 L 2.976 4.106 C 3.564 3.664 3.922 3.443 4.048 3.443 C 4.448 3.443 4.637 3.717 4.617 4.263 C 4.617 4.306 4.427 4.968 4.049 6.251 C 3.671 7.534 3.471 8.491 3.449 9.122 C 3.407 9.985 3.565 10.647 3.924 11.109 C 4.367 11.677 5.106 11.919 6.142 11.835 C 7.366 11.751 8.591 11.298 9.816 10.479 C 10.323 10.142 10.808 9.753 11.273 9.311 C 11.105 10.153 10.905 10.868 10.673 11.457 C 8.402 12.487 6.762 13.37 5.752 14.107 C 4.321 15.137 3.554 16.241 3.449 17.419 C 3.259 19.459 4.29 20.479 6.541 20.479 C 8.055 20.479 9.517 19.554 10.926 17.703 C 12.125 16.126 13.166 14.022 14.049 11.394 C 15.578 10.635 16.87 9.892 17.928 9.164 C 17.894 9.409 18.319 7.308 18.24 7.628 Z  M 7.393 16.095 C 7.056 16.095 6.898 15.947 6.919 15.653 C 6.961 15.106 7.908 14.38 9.759 13.476 C 8.791 15.221 8.002 16.095 7.393 16.095 Z"}));var d=window.lodash,p=o.n(d);const f=(e,t,o)=>{let r=!0;if(t&&t.id&&"value"in t){let n=t.value;["toggle","checkbox"].includes(o)&&(n=!0===n||"yes"===n||1===n),n=p().isArray(n)?n:[n],r=void 0!==e[t.id]&&n.includes(e[t.id])}return r},g=(e,t)=>{const{controlType:o}=e;let r=!0;if(e.deps)if(p().isArray(e.deps))for(let n in e.deps){const a=e.deps[n];if(r=f(t,a,o),!r)break}else r=f(t,e.deps,o);return r},b=(e,t)=>{let o="",r=!1;if(void 0!==e.callback&&(jQuery&&e.callback in jQuery.fn?r=jQuery.fn[e.callback]:e.callback in window&&(r=window[e.callback])),"function"==typeof r)o=r(t,e);else{const r=e.attributes?Object.entries(e.attributes).map((([e,o])=>{const r=g(o,t),n=t[e];if(r&&void 0!==n)return e+"="+(o.remove_quotes?n:`"${n}"`)})):[],n=r.length?" "+r.join(" "):"";o=`[${e.shortcode_name}${n}]`}return o};var m=window.wp.components,y=window.wp.blockEditor,_=window.wp.hooks;class v extends n.Component{constructor(){super(...arguments),this.state={html:"",shortcode:"",shortcodeHash:"",ajaxUpdated:!1,ajaxSuccess:!1,ajaxResponse:!1,loading:!1,firstLoading:!0},this.ajaxTimeout=!1}componentDidMount(){this.updateShortcode()}componentDidUpdate(e,t,o){const{shortcode:r,shortcodeHash:n,ajaxSuccess:a,ajaxResponse:l,ajaxUpdated:s}=this.state;(0,d.isEqual)(e,this.props)||this.updateShortcode(),this.props.blockArgs.do_shortcode&&s&&(a&&(0,_.doAction)("yith_plugin_fw_gutenberg_success_do_shortcode",r,n,l),(0,_.doAction)("yith_plugin_fw_gutenberg_after_do_shortcode",r,n,l),this.setState({ajaxUpdated:!1}))}updateShortcode(){const{attributes:e,blockArgs:t}=this.props;this.setState({loading:!0,ajaxSuccess:!1,ajaxResponse:!1});const o=b(t,e),r=l()(o);t.do_shortcode?(this.ajaxTimeout&&clearTimeout(this.ajaxTimeout),(0,_.doAction)("yith_plugin_fw_gutenberg_before_do_shortcode",o,r),this.ajaxTimeout=setTimeout((()=>{((e,t=yithGutenberg.ajaxurl)=>(t=(0,c.addQueryArgs)(t,e),fetch(t).then(i).then(u)))({action:"yith_plugin_fw_gutenberg_do_shortcode",shortcode:o}).then((e=>{this.setState({loading:!1,firstLoading:!1,html:e.html,shortcode:o,shortcodeHash:r,ajaxSuccess:!0,ajaxUpdated:!0,ajaxResponse:e})})).catch((e=>{console.log({error:e})}))}),300)):this.setState({loading:!1,firstLoading:!1,html:o,shortcode:o,shortcodeHash:r})}render(){const{html:e,loading:t,firstLoading:o,shortcode:n,shortcodeHash:a}=this.state,{blockArgs:l}=this.props,{do_shortcode:s,title:c,empty_message:i}=l,u="block-editor-yith-plugin-fw-shortcode-block";let d=[u],p=s?"html":"shortcode",f=e,g="";o&&t?p="first-loading":s&&!e&&(p="empty-html",f=n,!t&&i&&(g=i));const b=["first-loading","empty-html","shortcode"].includes(p),y=!["first-loading","empty-html"].includes(p),_=!!g;return d.push(`${u}--${p}`),d.push(_?`${u}--has-message`:`${u}--no-message`),d.push(`yith_block_${a}`),(0,r.createElement)(r.Fragment,null,(0,r.createElement)("div",{className:d.join(" ")},t?(0,r.createElement)("div",{className:`${u}__spinner-wrap`},(0,r.createElement)(m.Spinner,null)):"",b&&(0,r.createElement)("div",{className:`${u}__title components-placeholder__label`},h,c),_&&(0,r.createElement)(r.RawHTML,{className:`${u}__message`},g),y&&(0,r.createElement)(r.RawHTML,{className:`${u}__content`},f)))}}var C=window.wp.compose;function w({className:e,label:t,onChange:o,value:n,help:a,disableAlpha:l}){const s=`inspector-yith-color-picker-control-${(0,C.useInstanceId)(w)}`;return(0,r.createElement)(m.BaseControl,{id:s,label:t,className:`block-editor-yith-color-control ${e}`,help:a},(0,r.createElement)(m.ColorPicker,{color:n,disableAlpha:l,onChangeComplete:o}))}function k({label:e,colorValue:t}){return(0,r.createElement)(r.Fragment,null,e,!!t&&(0,r.createElement)(m.ColorIndicator,{colorValue:t}))}function x({className:e,label:t,onChange:o,value:n,help:a,palette:l,clearable:s}){l=l||(0,y.useSetting)("color.palette");const c=`inspector-yith-color-palette-control-${(0,C.useInstanceId)(x)}`;return(0,r.createElement)(m.BaseControl,{id:c,className:`block-editor-yith-color-palette-control ${e}`,help:a},(0,r.createElement)("fieldset",null,(0,r.createElement)("legend",null,(0,r.createElement)("div",{className:"block-editor-yith-color-palette-control__color-indicator"},(0,r.createElement)(m.BaseControl.VisualLabel,null,(0,r.createElement)(k,{colorValue:n,label:t})))),(0,r.createElement)(m.ColorPalette,{value:n,onChange:o,colors:l,clearable:s})))}const j=(e,t)=>function({attributes:o,className:n,setAttributes:a}){const l=(e,t,o)=>{["colorpicker","color"].includes(o)&&(e=e.color.getAlpha()<1?e.color.toRgbString():e.color.toHexString());let r={};r[t]=e,a(r)};return(0,r.createElement)(r.Fragment,null,!!t.attributes&&(0,r.createElement)(y.InspectorControls,null,(0,r.createElement)(m.PanelBody,null,Object.entries(t.attributes).map((([t,n])=>{const a=((t,n)=>{const{controlType:a}=n,s=o[t],c=((e,t)=>{let o="";return e.helps&&e.helps.checked&&e.helps.unchecked?o=t?e.helps.checked:e.helps.unchecked:e.help&&(o=e.help),o})(n,s);let i=`${e}__${t}-field-wrapper`;const u=g(n,o);n.wrapper_class&&(i+=" "+n.wrapper_class);let h=!1;if(u)switch(a){case"select":h=(0,r.createElement)(m.SelectControl,{className:i,key:t,value:s,label:n.label,options:n.options,help:c,multiple:!!n.multiple,onChange:e=>{l(e,t,a)}});break;case"text":h=(0,r.createElement)(m.TextControl,{className:i,key:t,value:s,label:n.label,help:c,onChange:e=>{l(e,t,a)}});break;case"textarea":h=(0,r.createElement)(m.TextareaControl,{className:i,key:t,value:s,label:n.label,help:c,onChange:e=>{l(e,t,a)}});break;case"toggle":h=(0,r.createElement)(m.ToggleControl,{className:i,key:t,label:n.label,help:c,checked:s,onChange:e=>{l(e,t,a)}});break;case"checkbox":h=(0,r.createElement)(m.CheckboxControl,{className:i,key:t,label:n.label,help:c,checked:s,onChange:e=>{l(e,t,a)}});break;case"number":case"range":h=(0,r.createElement)(m.RangeControl,{className:i,key:t,value:s,label:n.label,help:c,min:n.min,max:n.max,onChange:e=>{l(e,t,a)}});break;case"color":case"colorpicker":h=(0,r.createElement)(w,{className:i,key:t,label:n.label,help:c,value:s,disableAlpha:n.disableAlpha,onChange:e=>{l(e,t,a)}});break;case"color-palette":h=(0,r.createElement)(x,{className:i,key:t,label:n.label,help:c,value:s,clearable:n.clearable||!1,onChange:e=>{l(e,t,a)}});break;case"radio":h=(0,r.createElement)(m.RadioControl,{key:t,label:n.label,options:n.options,selected:s,help:c,onChange:e=>{l(e,t,a)}});break;default:h=!1}return h})(t,n);if(a)return a})))),(0,r.createElement)(v,{attributes:o,blockArgs:t}))},E=[{key:"yith_plugin_fw_gutenberg_before_do_shortcode",delay:0},{key:"yith_plugin_fw_gutenberg_success_do_shortcode",delay:200},{key:"yith_plugin_fw_gutenberg_after_do_shortcode",delay:200}];for(const e of E)(0,_.addAction)(e.key,"yith-plugin-fw/jquery-events",((...t)=>{"jQuery"in window&&(e.delay?setTimeout((()=>{jQuery(document).trigger(e.key,Object.values(t))}),e.delay):jQuery(document).trigger(e.key,Object.values(t)))}));for(const[e,t]of Object.entries(yithGutenbergBlocks))(0,s.registerBlockType)("yith/"+e,{title:t.title,description:t.description,category:t.category,attributes:t.attributes,icon:void 0!==t.icon?t.icon:h,keywords:t.keywords,edit:j(e,t),save:({attributes:e})=>b(t,e),deprecated:[{attributes:t.attributes,save:({attributes:e})=>{const o=b(t,e),n='<span class="yith_block_'+l()(o)+'">'+o+"</span>";return(0,r.createElement)(r.RawHTML,null,n)}}]})},487:function(e){var t={utf8:{stringToBytes:function(e){return t.bin.stringToBytes(unescape(encodeURIComponent(e)))},bytesToString:function(e){return decodeURIComponent(escape(t.bin.bytesToString(e)))}},bin:{stringToBytes:function(e){for(var t=[],o=0;o<e.length;o++)t.push(255&e.charCodeAt(o));return t},bytesToString:function(e){for(var t=[],o=0;o<e.length;o++)t.push(String.fromCharCode(e[o]));return t.join("")}}};e.exports=t},12:function(e){var t,o;t="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",o={rotl:function(e,t){return e<<t|e>>>32-t},rotr:function(e,t){return e<<32-t|e>>>t},endian:function(e){if(e.constructor==Number)return 16711935&o.rotl(e,8)|4278255360&o.rotl(e,24);for(var t=0;t<e.length;t++)e[t]=o.endian(e[t]);return e},randomBytes:function(e){for(var t=[];e>0;e--)t.push(Math.floor(256*Math.random()));return t},bytesToWords:function(e){for(var t=[],o=0,r=0;o<e.length;o++,r+=8)t[r>>>5]|=e[o]<<24-r%32;return t},wordsToBytes:function(e){for(var t=[],o=0;o<32*e.length;o+=8)t.push(e[o>>>5]>>>24-o%32&255);return t},bytesToHex:function(e){for(var t=[],o=0;o<e.length;o++)t.push((e[o]>>>4).toString(16)),t.push((15&e[o]).toString(16));return t.join("")},hexToBytes:function(e){for(var t=[],o=0;o<e.length;o+=2)t.push(parseInt(e.substr(o,2),16));return t},bytesToBase64:function(e){for(var o=[],r=0;r<e.length;r+=3)for(var n=e[r]<<16|e[r+1]<<8|e[r+2],a=0;a<4;a++)8*r+6*a<=8*e.length?o.push(t.charAt(n>>>6*(3-a)&63)):o.push("=");return o.join("")},base64ToBytes:function(e){e=e.replace(/[^A-Z0-9+\/]/gi,"");for(var o=[],r=0,n=0;r<e.length;n=++r%4)0!=n&&o.push((t.indexOf(e.charAt(r-1))&Math.pow(2,-2*n+8)-1)<<2*n|t.indexOf(e.charAt(r))>>>6-2*n);return o}},e.exports=o},738:function(e){function t(e){return!!e.constructor&&"function"==typeof e.constructor.isBuffer&&e.constructor.isBuffer(e)}e.exports=function(e){return null!=e&&(t(e)||function(e){return"function"==typeof e.readFloatLE&&"function"==typeof e.slice&&t(e.slice(0,0))}(e)||!!e._isBuffer)}},568:function(e,t,o){var r,n,a,l,s;r=o(12),n=o(487).utf8,a=o(738),l=o(487).bin,(s=function(e,t){e.constructor==String?e=t&&"binary"===t.encoding?l.stringToBytes(e):n.stringToBytes(e):a(e)?e=Array.prototype.slice.call(e,0):Array.isArray(e)||e.constructor===Uint8Array||(e=e.toString());for(var o=r.bytesToWords(e),c=8*e.length,i=1732584193,u=-271733879,h=-1732584194,d=271733878,p=0;p<o.length;p++)o[p]=16711935&(o[p]<<8|o[p]>>>24)|4278255360&(o[p]<<24|o[p]>>>8);o[c>>>5]|=128<<c%32,o[14+(c+64>>>9<<4)]=c;var f=s._ff,g=s._gg,b=s._hh,m=s._ii;for(p=0;p<o.length;p+=16){var y=i,_=u,v=h,C=d;i=f(i,u,h,d,o[p+0],7,-680876936),d=f(d,i,u,h,o[p+1],12,-389564586),h=f(h,d,i,u,o[p+2],17,606105819),u=f(u,h,d,i,o[p+3],22,-1044525330),i=f(i,u,h,d,o[p+4],7,-176418897),d=f(d,i,u,h,o[p+5],12,1200080426),h=f(h,d,i,u,o[p+6],17,-1473231341),u=f(u,h,d,i,o[p+7],22,-45705983),i=f(i,u,h,d,o[p+8],7,1770035416),d=f(d,i,u,h,o[p+9],12,-1958414417),h=f(h,d,i,u,o[p+10],17,-42063),u=f(u,h,d,i,o[p+11],22,-1990404162),i=f(i,u,h,d,o[p+12],7,1804603682),d=f(d,i,u,h,o[p+13],12,-40341101),h=f(h,d,i,u,o[p+14],17,-1502002290),i=g(i,u=f(u,h,d,i,o[p+15],22,1236535329),h,d,o[p+1],5,-165796510),d=g(d,i,u,h,o[p+6],9,-1069501632),h=g(h,d,i,u,o[p+11],14,643717713),u=g(u,h,d,i,o[p+0],20,-373897302),i=g(i,u,h,d,o[p+5],5,-701558691),d=g(d,i,u,h,o[p+10],9,38016083),h=g(h,d,i,u,o[p+15],14,-660478335),u=g(u,h,d,i,o[p+4],20,-405537848),i=g(i,u,h,d,o[p+9],5,568446438),d=g(d,i,u,h,o[p+14],9,-1019803690),h=g(h,d,i,u,o[p+3],14,-187363961),u=g(u,h,d,i,o[p+8],20,1163531501),i=g(i,u,h,d,o[p+13],5,-1444681467),d=g(d,i,u,h,o[p+2],9,-51403784),h=g(h,d,i,u,o[p+7],14,1735328473),i=b(i,u=g(u,h,d,i,o[p+12],20,-1926607734),h,d,o[p+5],4,-378558),d=b(d,i,u,h,o[p+8],11,-2022574463),h=b(h,d,i,u,o[p+11],16,1839030562),u=b(u,h,d,i,o[p+14],23,-35309556),i=b(i,u,h,d,o[p+1],4,-1530992060),d=b(d,i,u,h,o[p+4],11,1272893353),h=b(h,d,i,u,o[p+7],16,-155497632),u=b(u,h,d,i,o[p+10],23,-1094730640),i=b(i,u,h,d,o[p+13],4,681279174),d=b(d,i,u,h,o[p+0],11,-358537222),h=b(h,d,i,u,o[p+3],16,-722521979),u=b(u,h,d,i,o[p+6],23,76029189),i=b(i,u,h,d,o[p+9],4,-640364487),d=b(d,i,u,h,o[p+12],11,-421815835),h=b(h,d,i,u,o[p+15],16,530742520),i=m(i,u=b(u,h,d,i,o[p+2],23,-995338651),h,d,o[p+0],6,-198630844),d=m(d,i,u,h,o[p+7],10,1126891415),h=m(h,d,i,u,o[p+14],15,-1416354905),u=m(u,h,d,i,o[p+5],21,-57434055),i=m(i,u,h,d,o[p+12],6,1700485571),d=m(d,i,u,h,o[p+3],10,-1894986606),h=m(h,d,i,u,o[p+10],15,-1051523),u=m(u,h,d,i,o[p+1],21,-2054922799),i=m(i,u,h,d,o[p+8],6,1873313359),d=m(d,i,u,h,o[p+15],10,-30611744),h=m(h,d,i,u,o[p+6],15,-1560198380),u=m(u,h,d,i,o[p+13],21,1309151649),i=m(i,u,h,d,o[p+4],6,-145523070),d=m(d,i,u,h,o[p+11],10,-1120210379),h=m(h,d,i,u,o[p+2],15,718787259),u=m(u,h,d,i,o[p+9],21,-343485551),i=i+y>>>0,u=u+_>>>0,h=h+v>>>0,d=d+C>>>0}return r.endian([i,u,h,d])})._ff=function(e,t,o,r,n,a,l){var s=e+(t&o|~t&r)+(n>>>0)+l;return(s<<a|s>>>32-a)+t},s._gg=function(e,t,o,r,n,a,l){var s=e+(t&r|o&~r)+(n>>>0)+l;return(s<<a|s>>>32-a)+t},s._hh=function(e,t,o,r,n,a,l){var s=e+(t^o^r)+(n>>>0)+l;return(s<<a|s>>>32-a)+t},s._ii=function(e,t,o,r,n,a,l){var s=e+(o^(t|~r))+(n>>>0)+l;return(s<<a|s>>>32-a)+t},s._blocksize=16,s._digestsize=16,e.exports=function(e,t){if(null==e)throw new Error("Illegal argument "+e);var o=r.wordsToBytes(s(e,t));return t&&t.asBytes?o:t&&t.asString?l.bytesToString(o):r.bytesToHex(o)}}},o={};function r(e){var n=o[e];if(void 0!==n)return n.exports;var a=o[e]={exports:{}};return t[e](a,a.exports,r),a.exports}r.m=t,e=[],r.O=function(t,o,n,a){if(!o){var l=1/0;for(u=0;u<e.length;u++){o=e[u][0],n=e[u][1],a=e[u][2];for(var s=!0,c=0;c<o.length;c++)(!1&a||l>=a)&&Object.keys(r.O).every((function(e){return r.O[e](o[c])}))?o.splice(c--,1):(s=!1,a<l&&(l=a));if(s){e.splice(u--,1);var i=n();void 0!==i&&(t=i)}}return t}a=a||0;for(var u=e.length;u>0&&e[u-1][2]>a;u--)e[u]=e[u-1];e[u]=[o,n,a]},r.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return r.d(t,{a:t}),t},r.d=function(e,t){for(var o in t)r.o(t,o)&&!r.o(e,o)&&Object.defineProperty(e,o,{enumerable:!0,get:t[o]})},r.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},function(){var e={826:0,46:0};r.O.j=function(t){return 0===e[t]};var t=function(t,o){var n,a,l=o[0],s=o[1],c=o[2],i=0;if(l.some((function(t){return 0!==e[t]}))){for(n in s)r.o(s,n)&&(r.m[n]=s[n]);if(c)var u=c(r)}for(t&&t(o);i<l.length;i++)a=l[i],r.o(e,a)&&e[a]&&e[a][0](),e[l[i]]=0;return r.O(u)},o=self.webpackChunkyith_plugin_framewowrk=self.webpackChunkyith_plugin_framewowrk||[];o.forEach(t.bind(null,0)),o.push=t.bind(null,o.push.bind(o))}();var n=r.O(void 0,[46],(function(){return r(783)}));n=r.O(n)}();PK`x1\S���(plugin-fw/dist/gutenberg/style-index.cssnu�[���.block-editor-yith-plugin-fw-shortcode-block.block-editor-yith-plugin-fw-shortcode-block--empty-html,.block-editor-yith-plugin-fw-shortcode-block.block-editor-yith-plugin-fw-shortcode-block--first-loading,.block-editor-yith-plugin-fw-shortcode-block.block-editor-yith-plugin-fw-shortcode-block--shortcode{border:1px solid #1e1e1e;border-radius:4px;padding:1em 1em 1.2em}.block-editor-yith-plugin-fw-shortcode-block.block-editor-yith-plugin-fw-shortcode-block--shortcode .block-editor-yith-plugin-fw-shortcode-block__content{border:1px solid #ddd;border-radius:4px;color:#1e1e1e;font-family:Menlo,Consolas,monaco,monospace;font-size:13px;padding:.8em 1em}.block-editor-yith-plugin-fw-shortcode-block{min-height:30px;position:relative}.block-editor-yith-plugin-fw-shortcode-block .block-editor-yith-plugin-fw-shortcode-block__spinner-wrap{left:50%;position:absolute;top:50%;transform:translateX(-50%) translateY(-50%)}.block-editor-yith-plugin-fw-shortcode-block.block-editor-yith-plugin-fw-shortcode-block--empty-html.block-editor-yith-plugin-fw-shortcode-block--no-message .block-editor-yith-plugin-fw-shortcode-block__title,.block-editor-yith-plugin-fw-shortcode-block.block-editor-yith-plugin-fw-shortcode-block--first-loading .block-editor-yith-plugin-fw-shortcode-block__title{margin-bottom:0}.block-editor-yith-plugin-fw-shortcode-block.block-editor-yith-plugin-fw-shortcode-block--empty-html .block-editor-yith-plugin-fw-shortcode-block__message{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:13px;font-style:italic}.block-editor-yith-plugin-fw-shortcode-block.block-editor-yith-plugin-fw-shortcode-block--empty-html .block-editor-yith-plugin-fw-shortcode-block__content{display:none}
.block-editor-yith-color-palette-control .block-editor-yith-color-palette-control__color-indicator{margin-bottom:12px}.block-editor-yith-color-palette-control .component-color-indicator{vertical-align:text-bottom}
PK`x1\lְe)plugin-fw/templates/upgrade/changelog.phpnu�[���<?php
/**
 * The Template for displaying the plugin changelog.
 *
 * @var string $plugin_name The plugin name.
 * @var string $changelog   The changelog.
 * @package YITH\PluginFramework\Templates
 */

defined( 'ABSPATH' ) || exit; // Exit if accessed directly.

?>
<html xmlns="http://www.w3.org/1999/xhtml" lang="en-US">
<head>
	<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
	<meta name="viewport" content="width=device-width">
	<meta name="robots" content="noindex,follow">
	<title><?php echo esc_html( $plugin_name ); ?> - Changelog</title>
	<style type="text/css">
		body {
			background  : #ffffff;
			color       : #444;
			font-family : -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
			font-size   : 13px;
			line-height : 1.4em;
			padding     : 10px;
		}

		h2.yith-plugin-changelog-title {
			text-transform : uppercase;
			font-size      : 17px;
		}

		ul {
			list-style : none;
			padding    : 0;
		}

		li {
			display       : list-item;
			margin-bottom : 6px;
		}
	</style>
</head>
<body>
	<h2 class='yith-plugin-changelog-title'><?php echo esc_html( $plugin_name ); ?> - Changelog</h2>
	<div class='yith-plugin-changelog'><?php echo wp_kses_post( $changelog ); ?></div>
</body>
</html>
PK`x1\i��W
W
%plugin-fw/templates/upgrade/error.phpnu�[���<?php
/**
 * The Template for displaying the plugin changelog error.
 *
 * @var string $error The error.
 * @package YITH\PluginFramework\Templates
 */

defined( 'ABSPATH' ) || exit; // Exit if accessed directly.

?>
<html xmlns="http://www.w3.org/1999/xhtml" lang="en-US">
<head>
	<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
	<meta name="viewport" content="width=device-width">
	<meta name="robots" content="noindex,follow">
	<title>WordPress › Error</title>
	<style type="text/css">
		html {
			background : #f1f1f1;
		}

		.container {
			background         : #fff;
			color              : #444;
			font-family        : -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
			margin             : 2em auto;
			padding            : 1em 2em;
			max-width          : 700px;
			-webkit-box-shadow : 0 1px 3px rgba(0, 0, 0, 0.13);
			box-shadow         : 0 1px 3px rgba(0, 0, 0, 0.13);
		}

		h1 {
			border-bottom  : 1px solid #dadada;
			clear          : both;
			color          : #666;
			font-size      : 24px;
			margin         : 30px 0 0 0;
			padding        : 0 0 7px 0;
		}

		#error {
			margin-top : 50px;
		}

		#error p {
			font-size   : 14px;
			line-height : 1.5;
			margin      : 25px 0 20px;
		}

		#error code {
			font-family : Consolas, Monaco, monospace;
		}

		ul li {
			margin-bottom : 10px;
			font-size     : 14px;
		}

		a {
			color : #0073aa;
		}

		a:hover,
		a:active {
			color : #00a0d2;
		}

		a:focus {
			color              : #124964;
			-webkit-box-shadow : 0 0 0 1px #5b9dd9,
			0 0 2px 1px rgba(30, 140, 190, .8);
			box-shadow         : 0 0 0 1px #5b9dd9,
			0 0 2px 1px rgba(30, 140, 190, .8);
			outline            : none;
		}

		.button {
			background            : #f7f7f7;
			border                : 1px solid #ccc;
			color                 : #555;
			display               : inline-block;
			text-decoration       : none;
			font-size             : 13px;
			line-height           : 26px;
			height                : 28px;
			margin                : 0;
			padding               : 0 10px 1px;
			cursor                : pointer;
			-webkit-border-radius : 3px;
			-webkit-appearance    : none;
			border-radius         : 3px;
			white-space           : nowrap;
			-webkit-box-sizing    : border-box;
			-moz-box-sizing       : border-box;
			box-sizing            : border-box;

			-webkit-box-shadow    : 0 1px 0 #ccc;
			box-shadow            : 0 1px 0 #ccc;
			vertical-align        : top;
		}

		.button.button-large {
			height      : 30px;
			line-height : 28px;
			padding     : 0 12px 2px;
		}

		.button:hover,
		.button:focus {
			background   : #fafafa;
			border-color : #999;
			color        : #23282d;
		}

		.button:focus {
			border-color       : #5b9dd9;
			-webkit-box-shadow : 0 0 3px rgba(0, 115, 170, .8);
			box-shadow         : 0 0 3px rgba(0, 115, 170, .8);
			outline            : none;
		}

		.button:active {
			background         : #eee;
			border-color       : #999;
			-webkit-box-shadow : inset 0 2px 5px -3px rgba(0, 0, 0, 0.5);
			box-shadow         : inset 0 2px 5px -3px rgba(0, 0, 0, 0.5);
			-webkit-transform  : translateY(1px);
			-ms-transform      : translateY(1px);
			transform          : translateY(1px);
		}

	</style>
</head>
<body>
<div id="error" class="container">
	<p><?php echo wp_kses_post( $error ); ?></p>
</div>

</body>
</html>
PK`x1\Dx�H��8plugin-fw/templates/sysinfo/system-information-panel.phpnu�[���<?php
/**
 * The Template for displaying the System Information Panel.
 *
 * @package YITH\PluginFramework\Templates\SysInfo
 */

defined( 'ABSPATH' ) || exit; // Exit if accessed directly.

$section_tabs = array(
	'main'      => esc_html__( 'System Status', 'yith-plugin-fw' ),
	'php-info'  => esc_html__( 'PHPInfo', 'yith-plugin-fw' ),
	'error-log' => esc_html__( 'Log Files', 'yith-plugin-fw' ),
);

$current_tab = isset( $_GET['tab'] ) ? sanitize_key( wp_unslash( $_GET['tab'] ) ) : 'main'; // phpcs:ignore WordPress.Security.NonceVerification.Recommended
$tab_path    = defined( 'YIT_CORE_PLUGIN_PATH' ) ? YIT_CORE_PLUGIN_PATH : get_template_directory() . '/core/plugin-fw/';

?>
<div id="yith-sysinfo" class="wrap yith-system-info yith-plugin-ui">
	<h2 class="yith-sysinfo-title">
		<span class="yith-logo"><img src="<?php echo esc_url( yith_plugin_fw_get_default_logo() ); ?>"/></span> <?php esc_html_e( 'YITH System Information', 'yith-plugin-fw' ); ?>
	</h2>

	<h2 class="nav-tab-wrapper">
		<ul class="yith-plugin-fw-tabs">
			<?php foreach ( $section_tabs as $key => $tab_value ) : ?>
				<?php
				$active_class = ( $current_tab === $key ) ? ' nav-tab-active' : '';
				$url          = add_query_arg( array( 'tab' => $key ) );
				?>
				<li class="yith-plugin-fw-tab-element">
					<a class="nav-tab <?php echo esc_attr( $active_class ); ?>" href="<?php echo esc_url( $url ); ?>"><?php echo esc_html( $tab_value ); ?></a>
				</li>
			<?php endforeach; ?>
		</ul>
	</h2>
	<div id="wrap" class="yith-plugin-fw plugin-option yit-admin-panel-container">
		<div class="yith-system-info-wrap">
			<?php require_once $tab_path . "/templates/sysinfo/tabs/$current_tab.php"; ?>
		</div>
	</div>
</div>
PK`x1\��*�...plugin-fw/templates/sysinfo/tabs/error-log.phpnu�[���<?php
/**
 * The Template for displaying the Error Log.
 *
 * @package YITH\PluginFramework\Templates\SysInfo
 */

defined( 'ABSPATH' ) || exit; // Exit if accessed directly.

$debug_files = array(
	// WordPress' debug.log file.
	'debug.log' => array(
		'label' => __( 'WP debug.log file', 'yith-plugin-fw' ),
		'path'  => WP_CONTENT_DIR . '/debug.log',
	),
	// PHP error_log file.
	'error_log' => array(
		'label' => __( 'PHP error_log file', 'yith-plugin-fw' ),
		'path'  => ABSPATH . 'error_log',
	),
);

?>
<h2>
	<?php esc_html_e( 'Log Files', 'yith-plugin-fw' ); ?>
</h2>
<table class="form-table" role="presentation">
	<?php
	global $wp_filesystem;

	if ( empty( $wp_filesystem ) ) {
		require_once ABSPATH . '/wp-admin/includes/file.php';
		WP_Filesystem();
	}

	$max_file_size = 8388608; // 8 MB.
	$missing_files = 0;
	?>

	<?php foreach ( $debug_files as $key => $debug_file ) : ?>
		<?php
		if ( ! file_exists( $debug_file['path'] ) ) {
			$missing_files ++;
			continue;
		}

		$file_size = filesize( $debug_file['path'] );
		?>
		<tr>
			<th scope="row"><label for="<?php echo esc_attr( $key ); ?>"><?php echo esc_html( $debug_file['label'] ); ?></label></th>
			<td>
				<?php
				if ( $file_size > $max_file_size ) {
					yith_plugin_fw_get_field(
						array(
							'id'      => $key,
							'type'    => 'buttons',
							'buttons' => array(
								array(
									'name'  => __( 'Download', 'yith-plugin-fw' ),
									'class' => 'yith-download-log',
									'data'  => array(
										'action' => 'yith_create_log_file',
										'file'   => $key,
									),
								),
							),
						),
						true
					);

					echo '<span class="description">' . esc_html__( 'The file size exceeds 8 megabytes so it must be downloaded', 'yith-plugin-fw' ) . '</span>';

				} else {
					yith_plugin_fw_get_field(
						array(
							'id'                => $key,
							'type'              => 'textarea',
							'value'             => $wp_filesystem->get_contents( $debug_file['path'] ),
							'class'             => 'yith-system-info-debug',
							'custom_attributes' => 'readonly',
						),
						true
					);
				}
				?>
			</td>
		</tr>
	<?php endforeach; ?>

	<?php if ( 2 === $missing_files ) : ?>
		<tr>
			<td>
				<?php
				// translators: %s file name.
				echo sprintf( esc_html__( 'No Log file available. Enable the WordPress debug by adding this in the %s file of your installation', 'yith-plugin-fw' ), '<code>wp-config.php</code>' );
				?>
				<br/>
				<br/>
				<span class="debug-code">
					define( 'WP_DEBUG', true );<br/>
					define( 'WP_DEBUG_LOG', true );<br/>
					define( 'WP_DEBUG_DISPLAY', false );<br/>
				</span>
				<a href="#" data-tooltip="<?php esc_attr_e( 'Copied!', 'yith-plugin-fw' ); ?>" class="copy-link"><?php esc_html_e( 'Copy Code', 'yith-plugin-fw' ); ?></a>
			</td>
		</tr>
	<?php endif; ?>
</table>
PK`x1\��Gjj)plugin-fw/templates/sysinfo/tabs/main.phpnu�[���<?php
/**
 * The Template for displaying the Main page of the System Information.
 *
 * @package YITH\PluginFramework\Templates\SysInfo
 */

defined( 'ABSPATH' ) || exit; // Exit if accessed directly.

$system_info    = get_option( 'yith_system_info' );
$output_ip      = YITH_System_Status()->get_output_ip();
$labels         = YITH_System_Status()->requirement_labels;
$plugin_fw_info = YITH_System_Status()->get_plugin_fw_info();
$database_info  = YITH_System_Status()->get_database_info();
?>
<h2>
	<?php esc_html_e( 'Site Info', 'yith-plugin-fw' ); ?>
</h2>
<table class="form-table" role="presentation">
	<tr>
		<th scope="row">
			<?php esc_html_e( 'Site URL', 'yith-plugin-fw' ); ?>
		</th>
		<td class="info-value">
			<?php echo esc_html( get_site_url() ); ?>
		</td>

	</tr>
	<tr>
		<th scope="row">
			<?php esc_html_e( 'Output IP Address', 'yith-plugin-fw' ); ?>
		</th>
		<td class="info-value">
			<?php echo esc_html( $output_ip ); ?>
		</td>
	</tr>
	<tr>
		<th scope="row">
			<?php esc_html_e( 'Defined WP_CACHE', 'yith-plugin-fw' ); ?>
		</th>
		<td class="info-value">
			<?php echo( defined( 'WP_CACHE' ) && WP_CACHE ? esc_html__( 'Yes', 'yith-plugin-fw' ) : esc_html__( 'No', 'yith-plugin-fw' ) ); ?>
		</td>
	</tr>
	<tr>
		<th scope="row">
			<?php esc_html_e( 'External object cache', 'yith-plugin-fw' ); ?>
		</th>
		<td class="info-value">
			<?php echo( wp_using_ext_object_cache() ? esc_html__( 'Yes', 'yith-plugin-fw' ) : esc_html__( 'No', 'yith-plugin-fw' ) ); ?>
		</td>
	</tr>
	<tr>
		<th scope="row">
			<?php esc_html_e( 'YITH Plugin Framework Version', 'yith-plugin-fw' ); ?>
		</th>
		<td class="info-value">
			<?php
			echo esc_html(
				sprintf(
					'%s (%s)',
					$plugin_fw_info['version'],
					// translators: %s is the name of the plugin that is loading the framework.
					sprintf( __( 'loaded by %s', 'yith-plugin-fw' ), $plugin_fw_info['loaded_by'] )
				)
			);
			?>
		</td>
	</tr>
</table>

<h2>
	<?php esc_html_e( 'Plugins Requirements', 'yith-plugin-fw' ); ?>
</h2>
<table class="form-table" role="presentation">
	<?php foreach ( $system_info['system_info'] as $key => $item ) : ?>
		<?php
		$has_errors   = isset( $item['errors'] );
		$has_warnings = isset( $item['warnings'] );
		?>
		<tr>
			<th scope="row">
				<?php echo esc_html( $labels[ $key ] ); ?>
			</th>
			<td class="requirement-value <?php echo( $has_errors ? 'has-errors' : '' ); ?> <?php echo( $has_warnings ? 'has-warnings' : '' ); ?>">
				<span class="dashicons dashicons-<?php echo( $has_errors || $has_warnings ? 'warning' : 'yes' ); ?>"></span>
				<?php
				YITH_System_Status()->format_requirement_value( $key, $item['value'] );
				?>
			</td>
			<td class="requirement-messages">
				<?php
				if ( $has_errors ) {
					YITH_System_Status()->print_error_messages( $key, $item, $labels[ $key ] );
					YITH_System_Status()->print_solution_suggestion( $key, $item, $labels[ $key ] );
				} elseif ( $has_warnings ) {
					YITH_System_Status()->print_warning_messages( $key );
				}
				?>
			</td>
		</tr>
	<?php endforeach; ?>
</table>
<?php
$db_error = version_compare( $database_info['mysql_version'], '5.6', '<' ) && ! strstr( $database_info['mysql_version_string'], 'MariaDB' );
?>
<h2>
	<?php esc_html_e( 'Database Info', 'yith-plugin-fw' ); ?>
</h2>
<table class="form-table" role="presentation">
	<tr>
		<th scope="row">
			<?php esc_html_e( 'MySQL version', 'yith-plugin-fw' ); ?>
		</th>
		<td class="requirement-value <?php echo( $db_error ? 'has-errors' : '' ); ?>" style="width:auto!important">
			<span class="dashicons dashicons-<?php echo( $db_error ? 'warning' : 'yes' ); ?>"></span>
			<?php echo esc_attr( $database_info['mysql_version'] . ' - ' . $database_info['mysql_version_string'] ); ?>
		</td>
		<td class="requirement-messages">
			<?php
			if ( $db_error ) {
				/* Translators: %s: Codex link. */
				echo sprintf( esc_html__( 'WordPress recommends a minimum MySQL version of 5.6. See: %s', 'yith-plugin-fw' ), '<a href="https://wordpress.org/about/requirements/" target="_blank">' . esc_html__( 'WordPress requirements', 'yith-plugin-fw' ) . '</a>' );
			}
			?>
		</td>
	</tr>
	<tr>
		<th scope="row">
			<?php esc_html_e( 'Total Database Size', 'yith-plugin-fw' ); ?>
		</th>
		<td colspan="2">
			<?php printf( '%.2fMB', esc_html( $database_info['database_size']['data'] + $database_info['database_size']['index'] + $database_info['database_size']['free'] ) ); ?>
		</td>
	</tr>
	<tr>
		<th scope="row">
			<?php esc_html_e( 'Database Data Size', 'yith-plugin-fw' ); ?>
		</th>
		<td colspan="2">
			<?php printf( '%.2fMB', esc_html( $database_info['database_size']['data'] ) ); ?>
		</td>
	</tr>
	<tr>
		<th scope="row">
			<?php esc_html_e( 'Database Index Size', 'yith-plugin-fw' ); ?>
		</th>
		<td colspan="2">
			<?php printf( '%.2fMB', esc_html( $database_info['database_size']['index'] ) ); ?>
		</td>
	</tr>
	<tr>
		<th scope="row">
			<?php esc_html_e( 'Database Free Size', 'yith-plugin-fw' ); ?>
		</th>
		<td colspan="2">
			<?php printf( '%.2fMB', esc_html( $database_info['database_size']['free'] ) ); ?>
		</td>
	</tr>
	<?php foreach ( $database_info['database_tables'] as $table => $table_data ) : ?>
		<tr>
			<th scope="row">
				<?php echo esc_html( $table ); ?>
			</th>
			<td colspan="2">
				<?php
				/* Translators: %1$f: Table size, %2$f: Index size, %3$f: Free size, %4$s Engine. */
				printf( esc_html__( 'Data: %1$.2fMB | Index: %2$.2fMB | Free: %3$.2fMB | Engine: %4$s', 'yith-plugin-fw' ), esc_html( number_format( $table_data['data'], 2 ) ), esc_html( number_format( $table_data['index'], 2 ) ), esc_html( number_format( $table_data['free'], 2 ) ), esc_html( $table_data['engine'] ) );
				?>
			</td>
		</tr>
	<?php endforeach; ?>
</table>
PK`x1\���-plugin-fw/templates/sysinfo/tabs/php-info.phpnu�[���<?php
/**
 * The Template for displaying PHP Information.
 *
 * @package YITH\PluginFramework\Templates\SysInfo
 */

defined( 'ABSPATH' ) || exit; // Exit if accessed directly.

ob_start();
phpinfo( 61 ); // phpcs:ignore WordPress.PHP.DevelopmentFunctions.prevent_path_disclosure_phpinfo
$php_info = ob_get_contents();
ob_end_clean();

$php_info = preg_replace( '%^.*<div class="center">(.*)</div>.*$%ms', '$1', $php_info );
$php_info = preg_replace( '%^<h1>(.*)</h1>$%ms', '', $php_info );
$php_info = preg_replace( '%(^.*)<a name=\".*\">(.*)</a>(.*$)%m', '$1$2$3', $php_info );
$php_info = preg_replace( '%^<h2>((\w*-*\w*)|(\w*\s*\w*))</h2>$%m', '</div><div id="$1"><h2>$1</h2>', $php_info );
$php_info = str_replace( '<table>', '<table class="form-table" role="presentation">', $php_info );
$php_info = str_replace( '<td class="e">', '<th class="e">', $php_info );
$php_info = str_replace( '<hr />', '', $php_info );

?>
<div class="yith-phpinfo-wrap">
	<?php
	echo '<div id="main">' . $php_info; //phpcs:ignore
	?>
</div>
PK`x1\���JJ&plugin-fw/templates/panel/help-tab.phpnu�[���<?php
/**
 * The Template for displaying the Help tab.
 *
 * @var array  $options         Array of options.
 * @var string $current_tab     The current tab.
 * @var string $current_sub_tab The current sub-tab.
 * @var array  $latest_articles Latest HC articles.
 *
 * @package YITH\PluginFramework\Templates
 */

defined( 'ABSPATH' ) || exit; // Exit if accessed directly.

$current_locale       = substr( get_user_locale(), 0, 2 );
$the_title            = $options['title'];
$the_description      = $options['description'];
$show_articles        = $options['show_hc_articles'] && ! empty( $latest_articles );
$show_submit_ticket   = $options['show_submit_ticket'] && $options['submit_ticket_url'];
$has_video            = $options['main_video'] && ! empty( $options['main_video']['url'] );
$show_view_all_faq    = ! ! $options['hc_url'];
$has_any_playlist     = ! ! $options['playlists'];
$has_additional_links = $has_any_playlist || ! ! $options['doc_url'] || $show_view_all_faq;
$has_default_playlist = $options['playlists'] && ! empty( $options['playlists'] );

// search for correct video url.
$video_url = false;

if ( $has_video ) {
	if ( is_array( $options['main_video']['url'] ) ) {
		if ( ! empty( $options['main_video']['url'][ $current_locale ] ) ) {
			$video_url = $options['main_video']['url'][ $current_locale ];
		} elseif ( ! empty( $options['main_video']['url']['en'] ) ) {
			$video_url = $options['main_video']['url']['en'];
		}
	} else {
		$video_url = $options['main_video']['url'];
	}
}

// search for correct playlist.
$default_playlist = false;

if ( $has_default_playlist ) {
	if ( is_array( $options['playlists'] ) ) {
		if ( ! empty( $options['playlists'][ $current_locale ] ) ) {
			$default_playlist = $options['playlists'][ $current_locale ];
		} elseif ( ! empty( $options['playlists']['en'] ) ) {
			$default_playlist = $options['playlists']['en'];
		}
	} else {
		$default_playlist = $options['playlists'];
	}
}
?>

<div id='yith_plugin_fw_panel_help_tab' class='yith-plugin-fw-panel-help-tab-container'>
	<div class="yith-plugin-fw-panel-help-tab-content">
		<?php if ( $the_title ) : ?>
			<h2 class="yith-plugin-fw-panel-help-tab-title"><?php echo wp_kses_post( $the_title ); ?></h2>
		<?php endif; ?>

		<?php if ( $the_description ) : ?>
			<p class="yith-plugin-fw-panel-tab-description">
				<?php echo wp_kses_post( $the_description ); ?>
			</p>
		<?php endif; ?>

		<?php if ( $has_video || $has_additional_links ) : ?>
			<div class="row">
				<?php if ( $video_url ) : ?>
					<div class="yith-plugin-fw-help-tab-video <?php echo $has_additional_links ? 'column-left' : 'full-width'; ?>">
						<?php if ( isset( $options['main_video']['desc'] ) ) : ?>
							<p class="video-description"><?php echo wp_kses_post( $options['main_video']['desc'] ); ?></p>
						<?php endif; ?>

						<div class="video-container">
							<iframe src="<?php echo esc_url( $video_url ); ?>"></iframe>
						</div>

						<?php if ( $has_any_playlist ) : ?>
							<div class="video-caption">
								<?php if ( $default_playlist ) : ?>
									<p>
										<?php
										// translators: 1. Url to EN playlist.
										echo wp_kses_post( sprintf( _x( 'Check the full <a href="%s" target="_blank">Playlist on Youtube</a> to learn more >', 'Help tab view all video link', 'yith-plugin-fw' ), $default_playlist ) );
										?>
									</p>
								<?php endif; ?>

								<p>
									<b>
										<?php echo esc_html_x( 'Videos are also available in:', 'Help tab Watch Videotutorials link', 'yith-plugin-fw' ); ?>
									</b>
									<?php $first = true; ?>
									<?php foreach ( $options['playlists'] as $lang => $url ) : ?>
										<?php
										if ( $url === $default_playlist ) {
												continue;
										}
										?>
										<?php if ( ! $first ) : ?>
											<span class="separator">|</span>
										<?php endif; ?>

										<a target="_blank" href="<?php echo esc_url( $url ); ?>"><?php echo esc_html( yit_get_language_from_locale( $lang, true ) ); ?></a>

										<?php $first = false; ?>
									<?php endforeach; ?>
								</p>
							</div>
						<?php endif; ?>
					</div>
				<?php endif; ?>

				<?php if ( $has_additional_links ) : ?>
					<ul class="yith-plugin-fw-help-tab-actions <?php echo $video_url ? 'column-right' : 'full-width'; ?>">

						<?php if ( $options['doc_url'] ) : ?>
							<li class="read-documentation box-with-shadow">
								<a target="_blank" href="<?php echo esc_url( $options['doc_url'] ); ?>">
									<h4>
										<?php echo esc_html_x( 'Read the documentation', 'Help tab Read Documentation link', 'yith-plugin-fw' ); ?>
									</h4>
									<p class="description">
										<?php echo esc_html_x( 'to learn from basics how it works', 'Help tab Read Documentation link', 'yith-plugin-fw' ); ?>
									</p>
								</a>
							</li>
						<?php endif; ?>

						<?php if ( $default_playlist ) : ?>
							<li class="watch-videotutorials box-with-shadow">
								<a target="_blank" href="<?php echo esc_url( $default_playlist ); ?>">
									<h4>
										<?php echo esc_html_x( 'Watch our videotutorials', 'Help tab Watch Videotutorials link', 'yith-plugin-fw' ); ?>
									</h4>
									<p class="description">
										<?php echo esc_html_x( 'We show you some use cases', 'Help tab Watch Videotutorials link', 'yith-plugin-fw' ); ?>
									</p>
								</a>
							</li>
						<?php endif; ?>

						<?php if ( $show_view_all_faq ) : ?>
							<li class="check-faqs box-with-shadow">
								<a target="_blank" href="<?php echo esc_url( $options['hc_url'] ); ?>">
									<h4>
										<?php echo esc_html_x( 'Check the FAQs', 'Help tab view FAQs link', 'yith-plugin-fw' ); ?>
									</h4>
									<p class="description">
										<?php echo esc_html_x( 'to find answers to your doubts', 'Help tab view FAQs link', 'yith-plugin-fw' ); ?>
									</p>
								</a>
							</li>
						<?php endif; ?>

					</ul>
				<?php endif; ?>
			</div>
		<?php endif; ?>


		<?php if ( $show_articles || $show_submit_ticket ) : ?>
			<div class="row">
				<?php if ( $show_articles ) : ?>
					<div class="yith-plugin-fw-hc-articles <?php echo $show_submit_ticket ? 'column-left' : 'full-width'; ?>">
						<h3 class="yith-plugin-fw-hc-articles-title"><?php echo esc_html_x( 'Last FAQs in our Help Center', 'Help tab FAQ title', 'yith-plugin-fw' ); ?></h3>

						<ul class="yith-plugin-fw-hc-articles-list">
							<?php foreach ( $latest_articles as $article ) : ?>
								<li>
									<a target="_blank" href="<?php echo esc_url( $article['url'] ); ?>">
										<?php echo esc_html( $article['title'] ); ?>
									</a>
								</li>
							<?php endforeach; ?>
						</ul>

						<?php if ( $show_view_all_faq ) : ?>
							<a target="_blank" class="button button-secondary" href="<?php echo esc_url( $options['hc_url'] ); ?>">
								<?php echo esc_html_x( 'View all FAQs >', 'Help tab FAQ link', 'yith-plugin-fw' ); ?>
							</a>
						<?php endif; ?>
					</div>
				<?php endif; ?>

				<?php if ( $show_submit_ticket ) : ?>
					<div class="yith-plugin-fw-submit-ticket <?php echo $show_articles ? 'column-right' : 'full-width'; ?>">
						<div class="box-with-shadow">
							<h3><?php echo esc_html_x( 'Need help?', 'Help tab submit ticket title', 'yith-plugin-fw' ); ?></h3>
							<p>
								<?php
									echo esc_html_x(
										'If you are experiencing some technical issue ask help to our developers. Submit a ticket in our support desk and we will help you as soon as possible.',
										'Help tab submit ticket description',
										'yith-plugin-fw'
									);
								?>
							</p>
							<a target="_blank" href="<?php echo esc_url( $options['submit_ticket_url'] ); ?>" class="yit-plugin-fw-submit-ticket-button button button-primary">
								<?php echo esc_html_x( 'Submit a ticket', 'Help tab submit ticket button', 'yith-plugin-fw' ); ?>
							</a>
						</div>
					</div>
				<?php endif; ?>
			<?php endif; ?>
		</div>
	</div>
</div>
PK`x1\}���(plugin-fw/templates/panel/custom-tab.phpnu�[���<?php
/**
 * The Template for displaying the custom tab.
 *
 * @var array  $options         Array of options.
 * @var string $current_tab     The current tab.
 * @var string $current_sub_tab The current sub-tab.
 *
 * @package YITH\PluginFramework\Templates
 */

defined( 'ABSPATH' ) || exit; // Exit if accessed directly.

$defaults       = array(
	'action'         => '',
	'show_container' => false,
	'title'          => '',
);
$is_sub_tab     = ! ! $current_sub_tab;
$options        = wp_parse_args( $options, $defaults );
$the_action     = $options['action'];
$show_container = $options['show_container'];
$the_title      = $options['title'];
$tab_id         = sanitize_key( implode( '-', array_filter( array( 'yith-plugin-fw-panel-custom-tab', $current_tab, $current_sub_tab ) ) ) );
?>
<?php if ( $show_container ) : ?>
	<div id='<?php echo esc_attr( $tab_id ); ?>' class='yith-plugin-fw-panel-custom-tab-container'>
	<?php if ( $is_sub_tab ) : ?>
		<div class='yith-plugin-fw-panel-custom-sub-tab-container'>
	<?php endif; ?>
<?php endif; ?>

<?php if ( $the_title ) : ?>
	<h2 class="yith-plugin-fw-panel-custom-tab-title"><?php echo wp_kses_post( $the_title ); ?></h2>
<?php endif; ?>

<?php do_action( $the_action ); ?>

<?php if ( $show_container ) : ?>
	<?php if ( $is_sub_tab ) : ?>
		</div><!-- /.yith-plugin-fw-panel-custom-sub-tab-container -->
	<?php endif; ?>
	</div><!-- /.yith-plugin-fw-panel-custom-tab-container -->
<?php endif; // phpcs:ignore Generic.Files.EndFileNewline.NotFound ?>PK`x1\?�*��*plugin-fw/templates/panel/sub-tabs-nav.phpnu�[���<?php
/**
 * The Template for displaying the sub-tabs navigation.
 *
 * @var array  $sub_tabs        The sub-tabs.
 * @var string $current_tab     The current tab.
 * @var string $current_sub_tab The current sub-tab.
 * @var string $page            The current page.
 * @package    YITH\PluginFramework\Templates
 */

defined( 'ABSPATH' ) || exit; // Exit if accessed directly.

?>
<?php if ( ! empty( $sub_tabs ) ) : ?>
	<div class="yith-plugin-fw-sub-tabs-nav">
		<h3 class="nav-tab-wrapper yith-nav-sub-tab-wrapper">
			<?php foreach ( $sub_tabs as $_key => $_tab ) : ?>
				<?php
				$_defaults = array(
					'title' => '',
					'class' => '',
					'icon'  => '',
					'url'   => $this->get_nav_url( $page, $current_tab, $_key ),
				);
				$_tab      = (object) wp_parse_args( $_tab, $_defaults );

				if ( is_array( $_tab->class ) ) {
					$_tab->class = implode( ' ', $_tab->class );
				}

				if ( $current_sub_tab === $_key ) {
					$_tab->class = 'nav-tab-active ' . $_tab->class;
				}
				?>
				<a href="<?php echo esc_url( $_tab->url ); ?>" class="yith-nav-sub-tab nav-tab <?php echo esc_attr( $_tab->class ); ?>">
					<span class="yith-nav-sub-tab__title"><?php echo esc_html( $_tab->title ); ?></span>
					<?php if ( $_tab->icon ) : ?>
						<span class="yith-nav-sub-tab__icon yith-icon yith-icon-<?php echo esc_attr( $_tab->icon ); ?>"></span>
					<?php endif; ?>
				</a>
			<?php endforeach; ?>
		</h3>
	</div>
<?php endif; ?>
PK`x1\Hz~MM@plugin-fw/templates/panel/woocommerce/woocommerce-option-row.phpnu�[���<?php
/**
 * The Template for displaying the WooCommerce option row.
 *
 * @var array  $field       The field.
 * @var string $description The description.
 * @package    YITH\PluginFramework\Templates
 */

defined( 'ABSPATH' ) || exit; // Exit if accessed directly.

$default_field   = array(
	'id'    => '',
	'title' => isset( $field['name'] ) ? $field['name'] : '',
	'desc'  => '',
);
$field           = wp_parse_args( $field, $default_field );
$extra_row_class = isset( $field['extra_row_class'] ) ? $field['extra_row_class'] : '';

$display_row = ! in_array( $field['type'], array( 'hidden', 'html', 'sep', 'simple-text', 'title', 'list-table' ), true );
$display_row = isset( $field['yith-display-row'] ) ? ! ! $field['yith-display-row'] : $display_row;
$is_required = ! empty( $field['required'] );

$extra_row_classes = $is_required ? array( 'yith-plugin-fw--required' ) : array();
$extra_row_classes = (array) apply_filters( 'yith_plugin_fw_panel_wc_extra_row_classes', $extra_row_classes, $field );

$row_classes = array( 'yith-plugin-fw-panel-wc-row', $field['type'] );
$row_classes = array_merge( $row_classes, $extra_row_classes, array( $extra_row_class ) );
$row_classes = implode( ' ', $row_classes );

?>
<tr valign="top" class="<?php echo esc_attr( $row_classes ); ?>" <?php echo yith_field_deps_data( $field ); ?>>
	<?php if ( $display_row ) : ?>
		<th scope="row" class="titledesc">
			<label for="<?php echo esc_attr( $field['id'] ); ?>"><?php echo wp_kses_post( $field['title'] ); ?></label>
		</th>
		<td class="forminp forminp-<?php echo esc_attr( $field['type'] ); ?>">
			<?php yith_plugin_fw_get_field( $field, true ); ?>
			<?php echo '<span class="description">' . wp_kses_post( $field['desc'] ) . '</span>'; ?>
		</td>
	<?php else : ?>
		<td colspan="2">
			<?php yith_plugin_fw_get_field( $field, true ); ?>
		</td>
	<?php endif; ?>
</tr>
PK`x1\�s3;	;	<plugin-fw/templates/panel/woocommerce/woocommerce-upload.phpnu�[���<?php
/**
 * The Template for displaying WooCommerce upload.
 *
 * @var YIT_Plugin_Panel_WooCommerce $this   The YITH WooCommerce Panel.
 * @var string                       $id     The option ID.
 * @var string                       $name   The name.
 * @var array                        $option The option array.
 * @var string                       $value  The value.
 * @var string                       $desc   The description.
 * @author     Emanuela Castorina <emanuela.castorina@yithemes.it>
 * @package    YITH\PluginFramework\Templates
 */

defined( 'ABSPATH' ) || exit; // Exit if accessed directly.

$hidden_val = get_option( $id . '-yith-attachment-id', 0 );

?>

<tr valign="top">
	<th scope="row" class="image_upload">
		<label for="<?php echo esc_attr( $id ); ?>"><?php echo esc_html( $name ); ?></label>
	</th>
	<td class="forminp forminp-color plugin-option">
		<div id="<?php echo esc_attr( $id ); ?>-container" class="yit_options rm_option rm_input rm_text rm_upload"
			<?php if ( isset( $option['deps'] ) ) : ?>
				data-field="<?php echo esc_attr( $id ); ?>"
				data-dep="<?php echo esc_attr( $this->get_id_field( $option['deps']['ids'] ) ); ?>"
				data-value="<?php echo esc_attr( $option['deps']['values'] ); ?>"
			<?php endif ?>
		>
			<div class="option">
				<input type="text" name="<?php echo esc_attr( $id ); ?>" id="<?php echo esc_attr( $id ); ?>"
						value="<?php echo in_array( $value, array( '1', 1 ), true ) ? '' : esc_attr( $value ); ?>" class="yith-plugin-fw-upload-img-url"/>
				<input type="hidden" name="<?php echo esc_attr( $id ); ?>-yith-attachment-id" id="<?php echo esc_attr( $id ); ?>-yith-attachment-id" value="<?php echo esc_attr( $hidden_val ); ?>"/>
				<input type="button" value="<?php esc_attr_e( 'Upload', 'yith-plugin-fw' ); ?>" id="<?php echo esc_attr( $id ); ?>-button"
						class="yith-plugin-fw-upload-button"/>
			</div>
			<div class="clear"></div>
			<span class="description"><?php echo wp_kses_post( $desc ); ?></span>

			<div class="yith-plugin-fw-upload-img-preview" style="margin-top:10px;">
				<?php
				$file = $value;
				if ( preg_match( '/(jpg|jpeg|png|gif|ico)$/', $file ) ) {
					$file_url = YIT_CORE_PLUGIN_URL . 'assets/images/sleep.png';
					echo '<img src="' . esc_url( $file_url ) . '" data-src="' . esc_attr( $file ) . '" />';
				}
				?>
			</div>
		</div>
	</td>
</tr>
PK`x1\?����;plugin-fw/templates/panel/woocommerce/woocommerce-panel.phpnu�[���<?php
/**
 * The Template for displaying the WooCommerce Panel.
 *
 * @var YIT_Plugin_Panel_WooCommerce $this           The YITH WooCommerce Panel.
 * @var string                       $page           The current page.
 * @var string                       $wrap_class     The wrapper class.
 * @var array                        $available_tabs The available tabs.
 * @package    YITH\PluginFramework\Templates
 */

defined( 'ABSPATH' ) || exit; // Exit if accessed directly.

add_thickbox();
?>
<div class="wrap <?php echo esc_attr( $wrap_class ); ?>">
	<div id="icon-users" class="icon32"><br/></div>
	<?php

	do_action( 'yith_plugin_fw_before_woocommerce_panel', $page );

	if ( ! empty( $available_tabs ) ) {
		$this->print_panel_content();
	}
	?>
</div>
PK`x1\euVL^	^	:plugin-fw/templates/panel/woocommerce/woocommerce-form.phpnu�[���<?php
/**
 * The Template for displaying the WooCommerce form.
 *
 * @var YIT_Plugin_Panel_WooCommerce $this       The YITH WooCommerce Panel.
 * @var string                       $option_key The current option key ( see YIT_Plugin_Panel::get_current_option_key() ).
 * @package    YITH\PluginFramework\Templates
 */

defined( 'ABSPATH' ) || exit; // Exit if accessed directly.

$content_class = apply_filters( 'yit_admin_panel_content_class', 'yit-admin-panel-content-wrap' );
$container_id  = $this->settings['page'] . '_' . $option_key;
$reset_warning = __( 'If you continue with this action, you will reset all options in this page.', 'yith-plugin-fw' ) . '\n' . __( 'Are you sure?', 'yith-plugin-fw' );
?>

<div id="<?php echo esc_attr( $container_id ); ?>" class="yith-plugin-fw  yit-admin-panel-container">

	<?php do_action( 'yit_framework_before_print_wc_panel_content', $option_key ); ?>

	<div class="<?php echo esc_attr( $content_class ); ?>">
		<form id="plugin-fw-wc" method="post">

			<?php $this->add_fields(); ?>

			<p class="submit" style="float: left;margin: 0 10px 0 0;">
				<?php wp_nonce_field( 'yit_panel_wc_options_' . $this->settings['page'], 'yit_panel_wc_options_nonce' ); ?>
				<input class="button-primary" id="main-save-button" type="submit" value="<?php esc_html_e( 'Save Options', 'yith-plugin-fw' ); ?>"/>
			</p>

			<?php if ( apply_filters( 'yit_framework_show_float_save_button', true ) ) : ?>
				<button id="yith-plugin-fw-float-save-button" class="button button-primary yith-plugin-fw-animate__appear-from-bottom" data-default-label="<?php esc_attr_e( 'Save Options', 'yith-plugin-fw' ); ?>" data-saved-label="<?php esc_attr_e( 'Options Saved', 'yith-plugin-fw' ); ?>"><i class="yith-icon yith-icon-save"></i> <?php esc_html_e( 'Save Options', 'yith-plugin-fw' ); ?></button>
			<?php endif; ?>
		</form>
		<form id="plugin-fw-wc-reset" method="post">
			<input type="hidden" name="yit-action" value="wc-options-reset"/>
			<?php wp_nonce_field( 'yith_wc_reset_options_' . $this->settings['page'], 'yith_wc_reset_options_nonce' ); ?>
			<input type="submit" name="yit-reset" class="button-secondary" value="<?php esc_html_e( 'Reset Defaults', 'yith-plugin-fw' ); ?>"
					onclick="return confirm('<?php echo esc_attr( $reset_warning ); ?>');"/>
		</form>
	</div>

	<?php do_action( 'yit_framework_after_print_wc_panel_content', $option_key ); ?>

</div>
PK`x1\�TSS3plugin-fw/templates/panel/panel-field-container.phpnu�[���<?php
/**
 * The Template for displaying the panel field container.
 *
 * @var array $option   The field.
 * @var mixed $db_value The field value stored in DB.
 * @author     Leanza Francesco <leanzafrancesco@gmail.com>
 * @since      3.0.0
 * @package    YITH\PluginFramework\Templates
 */

defined( 'ABSPATH' ) || exit; // Exit if accessed directly.

$field_id   = $this->get_id_field( $option['id'] );
$name       = $this->get_name_field( $option['id'] );
$field_type = $option['type'];

$field          = $option;
$field['id']    = $field_id;
$field['name']  = $name;
$field['value'] = $db_value;
if ( ! empty( $custom_attributes ) ) {
	$field['custom_attributes'] = $custom_attributes;
}

$container_id      = $field_id . '-container';
$container_classes = array(
	'yit_options',
	'yith-plugin-fw-field-wrapper',
	"yith-plugin-fw-{$field_type}-field-wrapper",
);
$container_classes = implode( ' ', $container_classes );
?>
<div id="<?php echo esc_attr( $container_id ); ?>" class="<?php echo esc_attr( $container_classes ); ?>" <?php echo yith_panel_field_deps_data( $option, $this ); ?>>
	<div class="option">
		<?php yith_plugin_fw_get_field( $field, true, false ); ?>
	</div>

	<?php if ( ! empty( $field['desc'] ) ) : ?>
		<span class="description"><?php echo wp_kses_post( $field['desc'] ); ?></span>
	<?php endif; ?>

	<div class="clear"></div>
</div>
PK`x1\����%plugin-fw/templates/panel/infobox.phpnu�[���<?php
/**
 * The Template for displaying info-box.
 *
 * @var string $id      The CSS of the box.
 * @var string $name    The name of the box.
 * @var array  $default Array of defaults.
 * @package YITH\PluginFramework\Templates
 */

defined( 'ABSPATH' ) || exit; // Exit if accessed directly.

?>
<div id="<?php echo esc_attr( $id ); ?>" class="meta-box-sortables">
	<div id="<?php echo esc_attr( $id ); ?>-content-panel" class="postbox " style="display: block;">
		<h3><?php echo esc_html( $name ); ?></h3>
		<div class="inside">
			<p>Lorem ipsum ... </p>
			<p class="submit"><a href="<?php echo esc_url( $default['buy_url'] ); ?>" class="button-primary">Buy Plugin</a></p>
		</div>
	</div>
</div>
PK`x1\i6���3plugin-fw/templates/privacy/html-policy-content.phpnu�[���<?php
/**
 * The Template for displaying privacy content policy.
 *
 * @var array $sections The sections.
 * @package YITH\PluginFramework\Templates
 */

defined( 'ABSPATH' ) || exit; // Exit if accessed directly.

?>
<div class="wp-suggested-text">
	<?php do_action( 'yith_plugin_fw_privacy_guide_content_before' ); ?>

	<?php
	foreach ( $sections as $key => $section ) {
		$privacy_action = "yith_plugin_fw_privacy_guide_content_{$key}";
		$content        = apply_filters( 'yith_plugin_fw_privacy_guide_content', '', $key );

		if ( has_action( $privacy_action ) || ! empty( $section['tutorial'] ) || ! empty( $section['description'] ) || $content ) {
			if ( ! empty( $section['title'] ) ) {
				echo '<h2>' . esc_html( $section['title'] ) . '</h2>';
			}

			if ( ! empty( $section['tutorial'] ) ) {
				echo '<p class="privacy-policy-tutorial">' . wp_kses_post( $section['tutorial'] ) . '</p>';
			}

			if ( ! empty( $section['description'] ) ) {
				echo '<p >' . wp_kses_post( $section['description'] ) . '</p>';
			}

			if ( ! empty( $content ) ) {
				echo wp_kses_post( $content );
			}
		}

		do_action( $privacy_action );
	}
	?>

	<?php do_action( 'yith_plugin_fw_privacy_guide_content_after' ); ?>
</div>
PK`x1\�)�~~%plugin-fw/templates/metaboxes/tab.phpnu�[���<?php
/**
 * The Template for displaying meta-box tabs.
 *
 * @var array  $tabs        The tabs.
 * @var string $class       The CSS Class.
 * @var string $meta_box_id The ID of the meta-box.
 *
 * @package YITH\PluginFramework\Templates
 */

defined( 'ABSPATH' ) || exit; // Exit if accessed directly.

global $post;
$classes  = apply_filters( 'yith_plugin_fw_metabox_class', $class, $post );
$classes  = yith_plugin_fw_remove_duplicate_classes( $classes );
$ul_style = count( $tabs ) <= 1 ? 'display:none;' : '';
$i        = 0;
do_action( 'yit_before_metaboxes_tab' );

// Allow SVGs.
$label_extra_allowed_tags = array(
	'svg'      => array(
		'class'           => true,
		'aria-hidden'     => true,
		'aria-labelledby' => true,
		'role'            => true,
		'xmlns'           => true,
		'width'           => true,
		'height'          => true,
		'viewbox'         => true,
		'version'         => true,
		'x'               => true,
		'y'               => true,
		'style'           => true,
	),
	'circle'   => array(
		'class' => true,
		'cx'    => true,
		'cy'    => true,
		'r'     => true,
	),
	'g'        => array( 'fill' => true ),
	'polyline' => array(
		'class'  => true,
		'points' => true,
	),
	'polygon'  => array(
		'class'  => true,
		'points' => true,
	),
	'line'     => array(
		'class' => true,
		'x1'    => true,
		'x2'    => true,
		'y1'    => true,
		'y2'    => true,
	),
	'title'    => array( 'title' => true ),
	'path'     => array(
		'class' => true,
		'd'     => true,
		'fill'  => true,
	),
	'rect'     => array(
		'class'  => true,
		'x'      => true,
		'y'      => true,
		'fill'   => true,
		'width'  => true,
		'height' => true,
	),
	'style'    => array(
		'type' => true,
	),
);

$label_allowed_tags = array_merge( wp_kses_allowed_html( 'post' ), $label_extra_allowed_tags );
$label_allowed_tags = apply_filters( 'yith_plugin_fw_metabox_label_allowed_tags', $label_allowed_tags, $meta_box_id );

?>
	<div class="yith-plugin-fw metaboxes-tab <?php echo esc_attr( $classes ); ?>">
		<?php do_action( 'yit_before_metaboxes_labels' ); ?>
		<ul class="metaboxes-tabs clearfix" style="<?php echo esc_attr( $ul_style ); ?>">
			<?php foreach ( $tabs as $key => $_tab ) : ?>

				<?php
				if ( empty( $_tab['fields'] ) ) {
					continue;
				}
				$anchor_id = 'yith-plugin-fw-metabox-tab-' . urldecode( $key ) . '-anchor';

				// Parse deps for the tab visibility.
				if ( isset( $_tab['deps'] ) ) {
					$_tab['deps']['target-id'] = isset( $_tab['deps']['target-id'] ) ? $_tab['deps']['target-id'] : $anchor_id;
					if ( isset( $_tab['deps']['id'] ) && strpos( $_tab['deps']['id'], '_' ) !== 0 ) {
						$_tab['deps']['id'] = '_' . $_tab['deps']['id'];
					}
					if ( isset( $_tab['deps']['ids'] ) && strpos( $_tab['deps']['ids'], '_' ) !== 0 ) {
						$_tab['deps']['ids'] = '_' . $_tab['deps']['ids'];
					}

					$_tab['deps']['type'] = 'hideme';
				}

				$class = ! $i ? 'tabs' : '';
				$i ++;
				?>
				<li id="<?php echo esc_attr( $anchor_id ); ?>" class="<?php echo esc_attr( $class ); ?>" <?php echo yith_field_deps_data( $_tab ); ?>>
					<a href="#<?php echo esc_attr( urldecode( $key ) ); ?>">
						<?php echo wp_kses( $_tab['label'], $label_allowed_tags ); ?>
					</a>
				</li>
			<?php endforeach; ?>
		</ul>

		<?php do_action( 'yit_after_metaboxes_labels' ); ?>

		<?php
		if ( isset( $_tab['label'] ) ) {
			do_action( 'yit_before_metabox_option_' . urldecode( $key ) );
		}
		?>

		<?php wp_nonce_field( 'metaboxes-fields-nonce', 'yit_metaboxes_nonce' ); ?>

		<?php foreach ( $tabs as $key => $_tab ) : ?>
			<div class="tabs-panel" id="<?php echo esc_attr( urldecode( $key ) ); ?>">
				<?php
				if ( empty( $_tab['fields'] ) ) {
					continue;
				}

				$_tab['fields'] = apply_filters( 'yit_metabox_' . $key . '_tab_fields', $_tab['fields'] );
				?>

				<?php foreach ( $_tab['fields'] as $id_tab => $field ) : ?>
					<?php
					$field_name = $field['name'];
					$field_name = str_replace( 'yit_metaboxes[', '', $field_name );
					$pos        = strpos( $field_name, ']' );
					if ( $pos ) {
						$field_name = substr_replace( $field_name, '', $pos, 1 );
					}

					/**
					 * APPLY_FILTER: yith_plugin_fw_metabox_{meta_box_id}_field_pre_get_value
					 * Allow filtering values for meta-box fields instead of retrieving them by post_meta(s).
					 *
					 * @param mixed|null $value      The value to be filtered. Set 'null' to retrieve it by the related post_meta (Default: null).
					 * @param int        $post_id    The post ID.
					 * @param string     $field_name The field name.
					 * @param array      $field      The field.
					 *
					 * @since 3.7.6
					 */
					$value = apply_filters( "yith_plugin_fw_metabox_{$meta_box_id}_field_pre_get_value", null, $post->ID, $field_name, $field );
					if ( is_null( $value ) ) {
						$value = yit_get_post_meta( $post->ID, $field_name );
					}

					$field['value']         = false === $value ? ( isset( $field['std'] ) ? $field['std'] : '' ) : $value;
					$field['checkboxgroup'] = ( 'checkbox' === $field['type'] && isset( $field['checkboxgroup'] ) ) ? ' ' . $field['checkboxgroup'] : '';
					$container_classes      = 'the-metabox ' . $field['type'] . $field['checkboxgroup'] . ' clearfix ';
					$extra_row_class        = isset( $field['extra_row_class'] ) ? $field['extra_row_class'] : '';

					$container_classes .= empty( $field['label'] ) ? 'no-label' : '';
					$container_classes .= ' ' . $extra_row_class;

					?>
					<div class="<?php echo esc_attr( $container_classes ); ?>">
						<?php
						$field_template_path = yith_plugin_fw_get_field_template_path( $field );
						if ( $field_template_path ) {
							$display_row                 = 'hidden' !== $field['type'];
							$display_row                 = isset( $field['yith-display-row'] ) ? ! ! $field['yith-display-row'] : $display_row;
							$field['display-field-only'] = in_array( $field['type'], array( 'hidden', 'html', 'sep', 'simple-text', 'title', 'list-table' ), true );

							if ( $display_row ) {

								$field_row_path = apply_filters( 'yith_plugin_fw_metabox_field_row_template_path', YIT_CORE_PLUGIN_TEMPLATE_PATH . '/metaboxes/field-row.php', $field );
								file_exists( $field_row_path ) && include $field_row_path;
							} else {
								yith_plugin_fw_get_field( $field, true );
							}
						} else {
							// Backward compatibility.
							$args       = apply_filters(
								'yit_fw_metaboxes_type_args',
								array(
									'basename' => YIT_CORE_PLUGIN_PATH,
									'path'     => '/metaboxes/types/',
									'type'     => $field['type'],
									'args'     => array( 'args' => $field ),
								)
							);
							$basename   = $args['basename'];
							$field_path = $args['path'];
							$field_type = $args['type'];
							$field_args = $args['args'];

							yit_plugin_get_template( $basename, $field_path . $field_type . '.php', $field_args );
						}
						?>
					</div>
				<?php endforeach ?>
			</div>
		<?php endforeach ?>
	</div>

<?php

do_action( 'yit_after_metaboxes_tab' );
PK`x1\!�4_+plugin-fw/templates/metaboxes/field-row.phpnu�[���<?php
/**
 * The Template for displaying field rows in meta-boxes.
 *
 * @var array $field The field.
 * @package YITH\PluginFramework\Templates
 */

defined( 'ABSPATH' ) || exit; // Exit if accessed directly.

// Meta-box backward compatibility.
if ( isset( $field['label'] ) ) {
	$field['title'] = $field['label'];
}

$default_field = array(
	'id'    => '',
	'title' => isset( $field['name'] ) ? $field['name'] : '',
	'desc'  => '',
);
$field         = wp_parse_args( $field, $default_field );

$display_field_only = isset( $field['display-field-only'] ) ? $field['display-field-only'] : false;
$is_required        = ! empty( $field['required'] );

$extra_row_classes = $is_required ? array( 'yith-plugin-fw--required' ) : array();
$extra_row_classes = apply_filters( 'yith_plugin_fw_metabox_extra_row_classes', $extra_row_classes, $field );
$extra_row_classes = is_array( $extra_row_classes ) ? implode( ' ', $extra_row_classes ) : '';

?>
<div id="<?php echo esc_attr( $field['id'] ); ?>-container" <?php echo yith_field_deps_data( $field ); ?> class="yith-plugin-fw-metabox-field-row <?php echo esc_attr( $extra_row_classes ); ?>">
	<?php if ( $display_field_only ) : ?>
		<?php yith_plugin_fw_get_field( $field, true ); ?>
	<?php else : ?>
		<label for="<?php echo esc_attr( $field['id'] ); ?>"><?php echo wp_kses_post( $field['title'] ); ?></label>
		<?php yith_plugin_fw_get_field( $field, true ); ?>
		<div class="clear"></div>
		<span class="description"><?php echo wp_kses_post( $field['desc'] ); ?></span>
	<?php endif; ?>
</div>
PK`x1\�o�6��)plugin-fw/templates/fields/dimensions.phpnu�[���<?php
/**
 * Template for displaying the dimensions field
 *
 * @var array $field The field.
 * @package YITH\PluginFramework\Templates\Fields
 */

defined( 'ABSPATH' ) || exit; // Exit if accessed directly.

$default_options = array(
	'dimensions'   => array(
		'top'    => _x( 'Top', 'Position in the "Dimensions" field', 'yith-plugin-fw' ),
		'right'  => _x( 'Right', 'Position in the "Dimensions" field', 'yith-plugin-fw' ),
		'bottom' => _x( 'Bottom', 'Position in the "Dimensions" field', 'yith-plugin-fw' ),
		'left'   => _x( 'Left', 'Position in the "Dimensions" field', 'yith-plugin-fw' ),
	),
	'units'        => array(
		'px'         => 'px',
		'percentage' => '%',
	),
	'allow_linked' => true,
	'min'          => false,
	'max'          => false,
);

$field = wp_parse_args( $field, $default_options );

list ( $field_id, $class, $name, $dimensions, $units, $allow_linked, $min, $max, $value, $data, $custom_attributes ) = yith_plugin_fw_extract( $field, 'id', 'class', 'name', 'dimensions', 'units', 'allow_linked', 'min', 'max', 'value', 'data', 'custom_attributes' );

$class = isset( $class ) ? $class : '';
$class = 'yith-plugin-fw-dimensions ' . $class;

$value = ! empty( $value ) ? $value : array();

$unit_value        = isset( $value['unit'] ) ? $value['unit'] : current( array_keys( $units ) );
$dimensions_values = isset( $value['dimensions'] ) ? $value['dimensions'] : array();
$linked            = isset( $value['linked'] ) ? $value['linked'] : 'yes';

if ( $allow_linked && 'yes' === $linked ) {
	$class .= ' yith-plugin-fw-dimensions--linked-active';
}
?>
<div id="<?php echo esc_attr( $field_id ); ?>" class="<?php echo esc_attr( $class ); ?>"
	<?php yith_plugin_fw_html_attributes_to_string( $custom_attributes, true ); ?>
	<?php yith_plugin_fw_html_data_to_string( $data, true ); ?>
>
	<div class="yith-plugin-fw-dimensions__dimensions">
		<?php foreach ( $dimensions as $key => $dimension ) : ?>
			<?php
			$d_key        = sanitize_title( $key );
			$d_id         = "{$field_id}-dimension-{$d_key}";
			$d_name       = "{$name}[dimensions][{$d_key}]";
			$d_value      = isset( $dimensions_values[ $key ] ) ? $dimensions_values[ $key ] : 0;
			$d_attributes = array();
			$d_label      = $dimension;
			$d_min        = $min;
			$d_max        = $max;

			if ( is_array( $dimension ) ) {
				$d_label = isset( $dimension['label'] ) ? $dimension['label'] : $key;
				if ( isset( $dimension['custom_attributes'] ) && is_array( $dimension['custom_attributes'] ) ) {
					$d_attributes = array_merge( $d_attributes, $dimension['custom_attributes'] );
				}
				$d_min = isset( $dimension['min'] ) ? $dimension['min'] : $d_min;
				$d_max = isset( $dimension['max'] ) ? $dimension['max'] : $d_max;
			}

			if ( false !== $d_max ) {
				$d_attributes['max'] = $d_max;
			}

			if ( false !== $d_min ) {
				$d_attributes['min'] = $d_min;
			}

			?>
			<div class="yith-plugin-fw-dimensions__dimension yith-plugin-fw-dimensions__dimension--<?php echo esc_attr( $d_key ); ?>">
				<label for="<?php echo esc_attr( $d_id ); ?>" class="yith-plugin-fw-dimensions__dimension__label"><?php echo esc_html( $d_label ); ?></label>
				<input id="<?php echo esc_attr( $d_id ); ?>" class="yith-plugin-fw-dimensions__dimension__number"
						type="number" name="<?php echo esc_attr( $d_name ); ?>" value="<?php echo esc_attr( $d_value ); ?>"
					<?php if ( false !== $d_max ) : ?>
						max="<?php echo esc_attr( $d_max ); ?>"
					<?php endif; ?>
					<?php if ( false !== $d_min ) : ?>
						min="<?php echo esc_attr( $d_min ); ?>"
					<?php endif; ?>
					<?php echo yith_plugin_fw_html_attributes_to_string( $d_attributes ); ?>
				>
			</div>
		<?php endforeach ?>

		<?php if ( $allow_linked ) : ?>
			<div class="yith-plugin-fw-dimensions__linked" title="<?php echo esc_attr_x( 'Link values together', 'Tooltip in the "Dimensions" field', 'yith-plugin-fw' ); ?>">
				<input class='yith-plugin-fw-dimensions__linked__value' type="hidden" name="<?php echo esc_attr( $name ); ?>[linked]" value="<?php echo esc_attr( $linked ); ?>">
				<span class="dashicons dashicons-admin-links"></span>
			</div>
		<?php endif; ?>
	</div>
	<div class="yith-plugin-fw-dimensions__units">
		<input class='yith-plugin-fw-dimensions__unit__value' type="hidden" name="<?php echo esc_attr( $name ); ?>[unit]" value="<?php echo esc_attr( $unit_value ); ?>">
		<?php foreach ( $units as $key => $label ) : ?>
			<?php
			$key     = sanitize_title( $key );
			$classes = array(
				'yith-plugin-fw-dimensions__unit',
				"yith-plugin-fw-dimensions__unit--{$key}-unit",
			);
			if ( $unit_value === $key ) {
				$classes[] = 'yith-plugin-fw-dimensions__unit--selected';
			}

			if ( count( $units ) < 2 ) {
				$classes[] = 'yith-plugin-fw-dimensions__unit--unique';
			}

			$classes = implode( ' ', $classes );
			?>
			<span class="<?php echo esc_attr( $classes ); ?>" data-value="<?php echo esc_attr( $key ); ?>"><?php echo esc_html( $label ); ?></span>
		<?php endforeach ?>
	</div>
</div>
PK`x1\�>�\�	�	,plugin-fw/templates/fields/inline-fields.phpnu�[���<?php
/**
 * Template for displaying the inline-fields field
 *
 * @var array $field The field.
 * @package YITH\PluginFramework\Templates\Fields
 */

defined( 'ABSPATH' ) || exit; // Exit if accessed directly.

list ( $field_id, $name, $class, $fields, $value, $data, $custom_attributes ) = yith_plugin_fw_extract( $field, 'id', 'name', 'class', 'fields', 'value', 'data', 'custom_attributes' );

$class         = ! ! $class ? $class : '';
$value         = maybe_unserialize( $value );
$allowed_types = apply_filters( 'yith_plugin_fw_inline_fields_allowed_types', array( 'select', 'select-buttons', 'number', 'text', 'slider', 'hidden', 'html', 'datepicker' ), $name, $field );
$default_args  = array( 'type' => 'select' );
?>
<?php if ( ! empty( $fields ) && is_array( $fields ) ) : ?>
	<div id="<?php echo esc_attr( $field_id ); ?>" class="<?php echo esc_attr( $class ); ?> yith-inline-fields"
		<?php yith_plugin_fw_html_attributes_to_string( $custom_attributes, true ); ?>
		<?php yith_plugin_fw_html_data_to_string( $data, true ); ?>
	>
		<?php foreach ( $fields as $key => $inline_field ) : ?>
			<?php
			if ( ! in_array( $inline_field['type'], $allowed_types, true ) ) {
				continue;
			}

			if ( ! isset( $inline_field['default'] ) && isset( $inline_field['std'] ) ) {
				$inline_field['default'] = $inline_field['std'];
			}
			$default = isset( $inline_field['default'] ) ? $inline_field['default'] : '';

			$inline_field['value'] = isset( $value[ $key ] ) ? maybe_unserialize( $value[ $key ] ) : $default;
			$inline_field['class'] = isset( $inline_field['class'] ) ? $inline_field['class'] : '';
			$inline_field['id']    = $field_id . '_' . $key;
			$inline_field['name']  = $name . '[' . $key . ']';

			if ( in_array( $inline_field['type'], array( 'select', 'select-buttons' ), true ) ) {
				$inline_field['class'] .= ' wc-enhanced-select';
			}
			?>
			<?php if ( ! empty( $inline_field['inline-label'] ) ) : ?>
				<div class="option-element">
					<span><?php echo esc_html( $inline_field['inline-label'] ); ?></span>
				</div>
			<?php endif; ?>
			<div class="option-element <?php echo esc_attr( $inline_field['type'] ); ?> <?php echo esc_attr( $inline_field['class'] ); ?>">
				<?php if ( isset( $inline_field['label'] ) && '' !== $inline_field['label'] ) : ?>
					<label for="<?php echo esc_attr( $inline_field['id'] ); ?>"><?php echo esc_html( $inline_field['label'] ); ?></label>
				<?php endif; ?>
				<?php yith_plugin_fw_get_field( $inline_field, true ); ?>
			</div>
		<?php endforeach; ?>
	</div>
<?php endif; ?>
PK`x1\���I�6�6-plugin-fw/templates/fields/toggle-element.phpnu�[���<?php
/**
 * Template for displaying the toggle-element field
 *
 * @var array $field The field.
 * @package YITH\PluginFramework\Templates\Fields
 */

defined( 'ABSPATH' ) || exit; // Exit if accessed directly.

$defaults = array(
	'id'                => '',
	'class'             => '',
	'name'              => '',
	'add_button'        => '',
	'elements'          => array(),
	'title'             => '',
	'subtitle'          => '',
	'onoff_field'       => array(),
	'sortable'          => false,
	'save_button'       => array(),
	'delete_button'     => array(),
	'custom_attributes' => '',
);
$field    = wp_parse_args( $field, $defaults );

list ( $field_id, $class, $name, $value, $add_button, $elements, $the_title, $subtitle, $onoff_field, $sortable, $save_button, $delete_button, $custom_attributes ) = yith_plugin_fw_extract( $field, 'id', 'class', 'name', 'value', 'add_button', 'elements', 'title', 'subtitle', 'onoff_field', 'sortable', 'save_button', 'delete_button', 'custom_attributes' );

$show_add_button   = isset( $add_button ) && $add_button;
$add_button_closed = isset( $add_button_closed ) ? $add_button_closed : '';
$values            = isset( $value ) ? $value : get_option( $name, array() );
$values            = maybe_unserialize( $values );
$sortable          = isset( $sortable ) ? $sortable : false;
$class_wrapper     = $sortable ? 'ui-sortable' : '';
$onoff_id          = isset( $onoff_field['id'] ) ? $onoff_field['id'] : '';
$ajax_nonce        = wp_create_nonce( 'save-toggle-element' );

if ( empty( $values ) && ! $show_add_button && $elements ) {
	$values = array();
	// Populate toggle element with the default values.
	foreach ( $elements as $element ) {
		$values[0][ $element['id'] ] = $element['default'];
	}
}

?>
<div class="yith-toggle_wrapper <?php echo esc_attr( $class_wrapper ); ?>" id="<?php echo esc_attr( $field_id ); ?>" data-nonce="<?php echo esc_attr( $ajax_nonce ); ?>">
	<?php if ( ! empty( $label ) ) : ?>
		<label for="<?php esc_attr( $field_id ); ?>"><?php echo esc_html( $label ); ?></label>
	<?php endif; ?>
	<?php if ( $show_add_button ) : ?>
		<button class="yith-add-button yith-add-box-button"
				data-box_id="<?php echo esc_attr( $field_id ); ?>_add_box"
				data-closed_label="<?php echo esc_attr( $add_button_closed ); ?>"
				data-opened_label="<?php echo esc_attr( $add_button ); ?>"><?php echo esc_html( $add_button ); ?></button>
		<div id="<?php echo esc_attr( $field_id ); ?>_add_box" class="yith-add-box"></div>
		<script type="text/template" id="tmpl-yith-toggle-element-add-box-content-<?php echo esc_attr( $field_id ); ?>">
			<?php foreach ( $elements as $element ) : ?>
				<?php
				$element['title'] = $element['name'];
				$element['type']  = isset( $element['yith-type'] ) ? $element['yith-type'] : $element['type'];

				unset( $element['yith-type'] );

				$element['value'] = isset( $element['default'] ) ? $element['default'] : '';
				$element['id']    = 'new_' . $element['id'];
				$element['name']  = $name . '[{{{data.index}}}][' . $element['id'] . ']';
				$class_element    = isset( $element['class_row'] ) ? $element['class_row'] : '';
				if ( ! empty( $element['deps']['id'] ) ) {
					$element['deps']['id'] = 'new_' . $element['deps']['id'];
				}
				if ( ! empty( $element['deps']['target-id'] ) ) {
					$element['deps']['target-id'] = 'new_' . $element['deps']['target-id'];
				}

				if ( ! empty( $element['required'] ) ) {
					$class_element .= ' yith-plugin-fw--required';
				}
				?>
				<div class="yith-add-box-row yith-toggle-content-row <?php echo esc_attr( $class_element ); ?> <?php echo '{{{data.index}}}'; ?>" <?php echo yith_field_deps_data( $element ); ?>>

					<label for="<?php echo esc_attr( $element['id'] ); ?>"><?php echo esc_html( $element['title'] ); ?></label>
					<div class="yith-plugin-fw-option-with-description">
						<?php yith_plugin_fw_get_field( $element, true ); ?>
						<span class="description"><?php echo ! empty( $element['desc'] ) ? wp_kses_post( $element['desc'] ) : ''; ?></span>
					</div>
				</div>
			<?php endforeach; ?>

			<?php if ( ! empty( $save_button ) ) : ?>
				<div class="yith-add-box-buttons">
					<button class="button-primary yith-save-button">
						<?php echo esc_html( $save_button['name'] ); ?>
					</button>
				</div>
			<?php endif; ?>
		</script>
	<?php endif; ?>

	<div class="yith-toggle-elements">
		<?php if ( $values ) : ?>
			<?php foreach ( $values as $i => $value ) : ?>
				<?php
				$title_element    = yith_format_toggle_title( $the_title, $value );
				$title_element    = apply_filters( 'yith_plugin_fw_toggle_element_title_' . $field_id, $title_element, $elements, $value );
				$subtitle_element = yith_format_toggle_title( $subtitle, $value );
				$subtitle_element = apply_filters( 'yith_plugin_fw_toggle_element_subtitle_' . $field_id, $subtitle_element, $elements, $value );
				?>
				<div id="<?php echo esc_attr( $field_id ); ?>_<?php echo esc_attr( $i ); ?>"
						class="yith-toggle-row <?php echo ! empty( $subtitle ) ? 'with-subtitle' : ''; ?> <?php echo esc_attr( $class ); ?>"
						data-item_key="<?php echo esc_attr( $i ); ?>"
					<?php yith_plugin_fw_html_attributes_to_string( $custom_attributes, true ); ?>
				>
					<div class="yith-toggle-title">
						<h3>
							<span class="title" data-title_format="<?php echo esc_attr( $the_title ); ?>"><?php echo wp_kses_post( $title_element ); ?></span>
							<?php if ( ! empty( $subtitle_element ) ) : ?>
								<div class="subtitle" data-subtitle_format="<?php echo esc_attr( $subtitle ); ?>"><?php echo wp_kses_post( $subtitle_element ); ?></div>
							<?php endif; ?>
						</h3>
						<span class="yith-toggle"><span class="yith-icon yith-icon-arrow_right ui-sortable-handle"></span></span>
						<?php if ( ! empty( $onoff_field ) && is_array( $onoff_field ) ) : ?>
							<?php
							$onoff_field['value'] = isset( $value[ $onoff_id ] ) ? $value[ $onoff_id ] : ( isset( $onoff_field['default'] ) ? $onoff_field['default'] : '' );
							$onoff_field['type']  = 'onoff';
							$onoff_field['name']  = "{$name}[{$i}][{$onoff_id}]";
							$onoff_field['id']    = $onoff_id . '_' . $i;
							unset( $onoff_field['yith-type'] );
							?>
							<span class="yith-toggle-onoff"
								<?php if ( ! empty( $onoff_field['ajax_action'] ) ) : ?>
									data-ajax_action="<?php echo esc_attr( $onoff_field['ajax_action'] ); ?>"
								<?php endif ?>
							>
								<?php yith_plugin_fw_get_field( $onoff_field, true ); ?>
							</span>

							<?php if ( $sortable ) : ?>
								<span class="yith-icon yith-icon-drag"></span>
							<?php endif ?>
						<?php endif; ?>
					</div>
					<div class="yith-toggle-content">
						<?php if ( $elements && count( $elements ) > 0 ) : ?>
							<?php foreach ( $elements as $element ) : ?>
								<?php
								$element['type'] = isset( $element['yith-type'] ) ? $element['yith-type'] : $element['type'];
								unset( $element['yith-type'] );
								$element['title']     = $element['name'];
								$element['name']      = $name . "[$i][" . $element['id'] . ']';
								$element['value']     = isset( $value[ $element['id'] ] ) ? $value[ $element['id'] ] : ( isset( $element['default'] ) ? $element['default'] : '' );
								$element['id']        = $element['id'] . '_' . $i;
								$element['class_row'] = isset( $element['class_row'] ) ? $element['class_row'] : '';

								if ( ! empty( $element['deps']['id'] ) ) {
									$element['deps']['id'] = $element['deps']['id'] . '_' . $i;
								}
								if ( ! empty( $element['deps']['target-id'] ) ) {
									$element['deps']['target-id'] = $element['deps']['target-id'] . '_' . $i;
								}

								if ( ! empty( $element['required'] ) ) {
									$element['class_row'] .= ' yith-plugin-fw--required';
								}
								?>
								<div class="yith-toggle-content-row <?php echo esc_attr( $element['class_row'] . ' ' . $element['type'] ); ?>" <?php echo yith_field_deps_data( $element ); ?>>
									<label for="<?php echo esc_attr( $element['id'] ); ?>"><?php echo esc_html( $element['title'] ); ?></label>
									<div class="yith-plugin-fw-option-with-description">
										<?php yith_plugin_fw_get_field( $element, true ); ?>
										<span class="description"><?php echo ! empty( $element['desc'] ) ? wp_kses_post( $element['desc'] ) : ''; ?></span>
									</div>
								</div>
							<?php endforeach; ?>
						<?php endif; ?>
						<div class="yith-toggle-content-buttons">
							<div class="spinner"></div>
							<?php if ( $save_button && ! empty( $save_button['id'] ) ) : ?>
								<?php
								$save_button_class = isset( $save_button['class'] ) ? $save_button['class'] : '';
								$save_button_name  = isset( $save_button['name'] ) ? $save_button['name'] : '';
								?>
								<button id="<?php echo esc_attr( $save_button['id'] ); ?>" class="button-primary yith-save-button <?php echo esc_attr( $save_button_class ); ?>">
									<?php echo esc_html( $save_button_name ); ?>
								</button>
							<?php endif; ?>
							<?php if ( $delete_button && ! empty( $delete_button['id'] ) ) : ?>
								<?php
								$delete_button_class = isset( $delete_button['class'] ) ? $delete_button['class'] : '';
								$delete_button_name  = isset( $delete_button['name'] ) ? $delete_button['name'] : '';
								?>
								<button id="<?php echo esc_attr( $delete_button['id'] ); ?>"
										class="button-secondary yith-delete-button <?php echo esc_attr( $delete_button_class ); ?>">
									<?php echo esc_html( $delete_button_name ); ?>
								</button>
							<?php endif; ?>
						</div>
					</div>

				</div>
			<?php endforeach; ?>
		<?php endif; ?>
	</div>
	<script type="text/template" id="tmpl-yith-toggle-element-item-<?php echo esc_attr( $field_id ); ?>">
		<div id="<?php echo esc_attr( $field_id ); ?>_{{{data.index}}}"
				class="yith-toggle-row highlight <?php echo ! empty( $subtitle ) ? 'with-subtitle' : ''; ?> <?php echo esc_attr( $class ); ?>"
				data-item_key="{{{data.index}}}"
			<?php yith_plugin_fw_html_attributes_to_string( $custom_attributes, true ); ?>
		>
			<div class="yith-toggle-title">
				<h3>
					<span class="title" data-title_format="<?php echo esc_attr( $the_title ); ?>"><?php echo wp_kses_post( $the_title ); ?></span>
					<div class="subtitle" data-subtitle_format="<?php echo esc_attr( $subtitle ); ?>"><?php echo wp_kses_post( $subtitle ); ?></div>
				</h3>
				<span class="yith-toggle"><span class="yith-icon yith-icon-arrow_right"></span></span>
				<?php if ( ! empty( $onoff_field ) && is_array( $onoff_field ) ) : ?>
					<?php
					$onoff_field['value'] = isset( $onoff_field['default'] ) ? $onoff_field['default'] : '';
					$onoff_field['type']  = 'onoff';
					$onoff_field['name']  = $name . '[{{{data.index}}}][' . $onoff_id . ']';
					$onoff_field['id']    = $onoff_id;
					unset( $onoff_field['yith-type'] );
					?>
					<span class="yith-toggle-onoff"
						<?php if ( ! empty( $onoff_field['ajax_action'] ) ) : ?>
							data-ajax_action="<?php echo esc_attr( $onoff_field['ajax_action'] ); ?>"
						<?php endif ?>
					>
						<?php yith_plugin_fw_get_field( $onoff_field, true ); ?>
					</span>
				<?php endif; ?>
				<?php if ( $sortable ) : ?>
					<span class="yith-icon yith-icon-drag ui-sortable-handle"></span>
				<?php endif ?>
			</div>
			<div class="yith-toggle-content">
				<?php if ( $elements && count( $elements ) > 0 ) : ?>
					<?php foreach ( $elements as $element ) : ?>
						<?php
						$element['type'] = isset( $element['yith-type'] ) ? $element['yith-type'] : $element['type'];
						unset( $element['yith-type'] );
						$element['title'] = $element['name'];
						$element['name']  = $name . '[{{{data.index}}}][' . $element['id'] . ']';
						$element['id']    = $element['id'] . '_{{{data.index}}}';
						$class_element    = isset( $element['class_row'] ) ? $element['class_row'] : '';

						if ( ! empty( $element['deps']['id'] ) ) {
							$element['deps']['id'] = $element['deps']['id'] . '_{{{data.index}}}';
						}
						if ( ! empty( $element['deps']['target-id'] ) ) {
							$element['deps']['target-id'] = $element['deps']['target-id'] . '_{{{data.index}}}';
						}

						if ( ! empty( $element['required'] ) ) {
							$class_element .= ' yith-plugin-fw--required';
						}

						?>
						<div class="yith-toggle-content-row <?php echo esc_attr( $class_element . ' ' . $element['type'] ); ?>" <?php echo yith_field_deps_data( $element ); ?>>
							<label for="<?php echo esc_attr( $element['id'] ); ?>"><?php echo esc_html( $element['title'] ); ?></label>
							<div class="yith-plugin-fw-option-with-description">
								<?php yith_plugin_fw_get_field( $element, true ); ?>
								<span class="description"><?php echo ! empty( $element['desc'] ) ? wp_kses_post( $element['desc'] ) : ''; ?></span>
							</div>
						</div>
					<?php endforeach; ?>
				<?php endif; ?>
				<div class="yith-toggle-content-buttons">
					<div class="spinner"></div>
					<?php if ( $save_button && ! empty( $save_button['id'] ) ) : ?>
						<?php
						$save_button_class = isset( $save_button['class'] ) ? $save_button['class'] : '';
						$save_button_name  = isset( $save_button['name'] ) ? $save_button['name'] : '';
						?>
						<button id="<?php echo esc_attr( $save_button['id'] ); ?>" class="yith-save-button <?php echo esc_attr( $save_button_class ); ?>">
							<?php echo esc_html( $save_button_name ); ?>
						</button>
					<?php endif; ?>
					<?php if ( $delete_button && ! empty( $delete_button['id'] ) ) : ?>
						<?php
						$delete_button_class = isset( $delete_button['class'] ) ? $delete_button['class'] : '';
						$delete_button_name  = isset( $delete_button['name'] ) ? $delete_button['name'] : '';
						?>
						<button id="<?php echo esc_attr( $delete_button['id'] ); ?>" class="button-secondary yith-delete-button <?php echo esc_attr( $delete_button_class ); ?>">
							<?php echo esc_html( $delete_button_name ); ?>
						</button>
					<?php endif; ?>
				</div>
			</div>
		</div>
	</script>
</div>
PK`x1\l�ͨ�,plugin-fw/templates/fields/select-images.phpnu�[���<?php
/**
 * Template for displaying the select-images field
 *
 * @var array $field The field.
 * @package YITH\PluginFramework\Templates\Fields
 */

defined( 'ABSPATH' ) || exit; // Exit if accessed directly.

list ( $field_id, $class, $name, $value, $options, $custom_attributes, $data ) = yith_plugin_fw_extract( $field, 'id', 'class', 'name', 'value', 'options', 'custom_attributes', 'data' );

$class = isset( $class ) ? $class : 'yith-plugin-fw-select-images';
?>
<div id="<?php echo esc_attr( $field_id ); ?>-wrapper" class="yith-plugin-fw-select-images__wrapper" data-type="select-images">
	<select id="<?php echo esc_attr( $field_id ); ?>"
			name="<?php echo esc_attr( $name ); ?>"
			class="<?php echo esc_attr( $class ); ?>"
			style="display: none"
		<?php yith_plugin_fw_html_attributes_to_string( $custom_attributes, true ); ?>
		<?php yith_plugin_fw_html_data_to_string( $data, true ); ?>
	>
		<?php foreach ( $options as $key => $item ) : ?>
			<?php
			$label = ! empty( $item['label'] ) ? $item['label'] : $key;
			?>
			<option value="<?php echo esc_attr( $key ); ?>" <?php selected( $key, $value ); ?> ><?php echo esc_html( $label ); ?></option>
		<?php endforeach; ?>
	</select>

	<ul class="yith-plugin-fw-select-images__list">
		<?php foreach ( $options as $key => $item ) : ?>
			<?php
			$label = ! empty( $item['label'] ) ? $item['label'] : $key;
			$image = ! empty( $item['image'] ) ? $item['image'] : '';
			?>
			<?php if ( $image ) : ?>
				<?php
				$selected_class = 'yith-plugin-fw-select-images__item--selected';
				$current_class  = $key === $value ? $selected_class : '';
				?>
				<li class="yith-plugin-fw-select-images__item <?php echo esc_attr( $current_class ); ?>"
						data-type="select-images-item"
						data-key="<?php echo esc_attr( $key ); ?>"
					<?php echo isset( $item['data'] ) ? yith_plugin_fw_html_data_to_string( $item['data'] ) : ''; ?>
				>
					<?php if ( $label ) : ?>
						<div class="yith-plugin-fw-select-images__item__label"><?php echo esc_html( $label ); ?></div>
					<?php endif; ?>
					<img class="yith-plugin-fw-select-images_src" src="<?php echo esc_url( $image ); ?>"/>
				</li>
			<?php endif; ?>
		<?php endforeach; ?>
	</ul>
</div>
PK`x1\$����.plugin-fw/templates/fields/textarea-editor.phpnu�[���<?php
/**
 * Template for displaying the textarea-editor field
 *
 * @var array $field The field.
 * @package YITH\PluginFramework\Templates\Fields
 */

defined( 'ABSPATH' ) || exit; // Exit if accessed directly.

list ( $field_id, $class, $name, $value, $custom_attributes, $data ) = yith_plugin_fw_extract( $field, 'id', 'class', 'name', 'value', 'custom_attributes', 'data' );

// Handle deprecated param 'classes' (since 3.5): use 'class' instead.
if ( isset( $field['classes'] ) && ! isset( $class ) ) {
	$class = $field['classes'];
}

if ( ! function_exists( 'wp_editor' ) ) {
	$field['type'] = 'textarea';
	yith_plugin_fw_get_field( $field, true, false );

	return;
}

$class = isset( $class ) ? $class : '';

$editor_args = wp_parse_args(
	$field,
	array(
		'wpautop'       => true, // Choose if you want to use wpautop.
		'media_buttons' => true, // Choose if showing media button(s).
		'textarea_name' => $name, // Set the textarea name to something different, square brackets [] can be used here.
		'textarea_rows' => 20, // Set the number of rows.
		'tabindex'      => '',
		'editor_css'    => '', // Intended for extra styles for both visual and HTML editors buttons, needs to include the <style> tags, can use "scoped".
		'editor_class'  => '', // Add extra class(es) to the editor textarea.
		'teeny'         => false, // Output the minimal editor config used in Press This.
		'dfw'           => false, // Replace the default fullscreen with DFW (needs specific DOM elements and css).
		'tinymce'       => true, // Load TinyMCE, can be used to pass settings directly to TinyMCE using an array().
		'quicktags'     => true, // Load Quicktags, can be used to pass settings directly to Quicktags using an array().
	)
);
?>
<div class="editor <?php echo esc_attr( $class ); ?>"
	<?php yith_plugin_fw_html_attributes_to_string( $custom_attributes, true ); ?>
	<?php yith_plugin_fw_html_data_to_string( $data, true ); ?>
><?php wp_editor( $value, $field_id, $editor_args ); ?></div>
PK`x1\?�-�%plugin-fw/templates/fields/custom.phpnu�[���<?php
/**
 * Template for displaying the custom field
 *
 * @var array $field The field.
 * @package YITH\PluginFramework\Templates\Fields
 */

defined( 'ABSPATH' ) || exit; // Exit if accessed directly.

if ( isset( $field['action'] ) ) {
	do_action( $field['action'], $field );
}
PK`x1\[	�zJJ0plugin-fw/templates/fields/resources/select2.phpnu�[���<?php
/**
 * The Template for displaying the select2 field.
 *
 * @var array  $args              Array of arguments.
 * @var string $custom_attributes Custom attributes.
 * @package YITH\PluginFramework\Templates\Fields\Resources
 */

defined( 'ABSPATH' ) || exit; // Exit if accessed directly.

?>
<select
		id="<?php echo esc_attr( $args['id'] ); ?>"
		class="<?php echo esc_attr( $args['class'] ); ?>"
		name="<?php echo esc_attr( $args['name'] ); ?>"
		data-placeholder="<?php echo esc_attr( $args['data-placeholder'] ); ?>"
		data-allow_clear="<?php echo esc_attr( $args['data-allow_clear'] ); ?>"
	<?php echo ! empty( $args['data-action'] ) ? 'data-action="' . esc_attr( $args['data-action'] ) . '"' : ''; ?>
	<?php echo ! empty( $args['data-multiple'] ) ? 'multiple="multiple"' : ''; ?>
		style="<?php echo esc_attr( $args['style'] ); ?>"
	<?php yith_plugin_fw_html_attributes_to_string( $custom_attributes, true ); ?>
>
	<?php if ( ! empty( $args['value'] ) ) : ?>
		<?php
		$values = $args['value'];

		if ( ! is_array( $values ) ) {
			$values = explode( ',', $values );
		}
		?>
		<?php foreach ( $values as $value ) : ?>
			<option value="<?php echo esc_attr( $value ); ?>" <?php selected( true, true, true ); ?> >
				<?php echo esc_html( $args['data-selected'][ $value ] ); ?>
			</option>
		<?php endforeach; ?>
	<?php endif; ?>
</select>
PK`x1\���@��7plugin-fw/templates/fields/resources/select2-wc-2.6.phpnu�[���<?php
/**
 * The Template for displaying the select2 field, just for WooCommerce < 3.0.
 *
 * @var array  $args              Array of arguments.
 * @var string $custom_attributes Custom attributes.
 * @package YITH\PluginFramework\Templates\Fields\Resources
 */

defined( 'ABSPATH' ) || exit; // Exit if accessed directly.

?>
<input
		type="hidden"
		id="<?php echo esc_attr( $args['id'] ); ?>"
		class="<?php echo esc_attr( $args['class'] ); ?>"
		name="<?php echo esc_attr( $args['name'] ); ?>"
		data-placeholder="<?php echo esc_attr( $args['data-placeholder'] ); ?>"
		data-allow_clear="<?php echo esc_attr( $args['data-allow_clear'] ); ?>"
		data-selected="<?php echo is_array( $args['data-selected'] ) ? esc_attr( wp_json_encode( $args['data-selected'] ) ) : esc_attr( $args['data-selected'] ); ?>"
		data-multiple="<?php echo ! ! $args['data-multiple'] ? 'true' : 'false'; ?>"
	<?php echo( ! empty( $args['data-action'] ) ? 'data-action="' . esc_attr( $args['data-action'] ) . '"' : '' ); ?>
		value="<?php echo esc_attr( $args['value'] ); ?>"
		style="<?php echo esc_attr( $args['style'] ); ?>"
	<?php yith_plugin_fw_html_attributes_to_string( $custom_attributes, true ); ?>
/>
PK`x1\
`s�\\0plugin-fw/templates/fields/copy-to-clipboard.phpnu�[���<?php
/**
 * The Template for displaying the 'copy-to-clipboard'
 *
 * @var array $field The field.
 *
 * @package YITH\PluginFramework\Templates\Fields\Resources
 * @since   3.6.2
 */

defined( 'ABSPATH' ) || exit; // Exit if accessed directly.

list ( $field_id, $class, $name, $value, $force_value, $readonly, $std, $custom_attributes, $data ) = yith_plugin_fw_extract( $field, 'id', 'class', 'name', 'value', 'force_value', 'readonly', 'std', 'custom_attributes', 'data' );

$readonly      = isset( $readonly ) ? ! ! $readonly : true;
$wrapper_id    = ! ! $field_id ? $field_id . '-wrapper' : '';
$wrapper_class = 'yith-plugin-fw-copy-to-clipboard';
if ( $readonly ) {
	$wrapper_class .= ' yith-plugin-fw-copy-to-clipboard--readonly';
}
if ( isset( $force_value ) ) {
	$value = $force_value;
}
?>
<div id="<?php echo esc_attr( $wrapper_id ); ?>" class="<?php echo esc_attr( $wrapper_class ); ?>">

	<div class="yith-plugin-fw-copy-to-clipboard__field-wrap">
		<input type="text"
				id="<?php echo esc_attr( $field_id ); ?>"
				name="<?php echo esc_attr( $name ); ?>"
				class="yith-plugin-fw-copy-to-clipboard__field <?php echo esc_attr( $class ); ?>"
				value="<?php echo esc_attr( $value ); ?>"

			<?php if ( $readonly ) : ?>
				readonly
			<?php endif; ?>

			<?php yith_plugin_fw_html_attributes_to_string( $custom_attributes, true ); ?>
			<?php yith_plugin_fw_html_data_to_string( $data, true ); ?>
		>
		<div class="yith-plugin-fw-copy-to-clipboard__tip"><?php echo esc_html_x( 'Copied!', 'Copy-to-clipboard message', 'yith-plugin-fw' ); ?></div>
	</div>
	<div class="yith-plugin-fw-copy-to-clipboard__copy">
		<i class="yith-plugin-fw-copy-to-clipboard__copy__icon yith-icon yith-icon-copy"></i>
		<span class="yith-plugin-fw-copy-to-clipboard__copy__text"><?php echo esc_html_x( 'Copy', 'Copy-to-clipboard button text', 'yith-plugin-fw' ); ?></span>
	</div>
</div>
PK`x1\=�]���&plugin-fw/templates/fields/buttons.phpnu�[���<?php
/**
 * Template for displaying the buttons field
 *
 * @var array $field The field.
 * @package YITH\PluginFramework\Templates\Fields
 */

defined( 'ABSPATH' ) || exit; // Exit if accessed directly.

list ( $buttons ) = yith_plugin_fw_extract( $field, 'buttons' );
?>
<?php if ( ! empty( $buttons ) && is_array( $buttons ) ) : ?>
	<?php foreach ( $buttons as $button ) : ?>
		<?php
		$button_default_args = array(
			'name'  => '',
			'class' => '',
			'data'  => array(),
		);
		$button              = wp_parse_args( $button, $button_default_args );
		list ( $button_class, $button_name, $button_data ) = yith_plugin_fw_extract( $button, 'class', 'name', 'data' );
		?>
		<input type="button" class="<?php echo esc_attr( $button_class ); ?> button button-secondary"
				value="<?php echo esc_attr( $button_name ); ?>" <?php echo yith_plugin_fw_html_data_to_string( $button_data ); ?>/>
	<?php endforeach; ?>
<?php endif; ?>
PK`x1\��a:66/plugin-fw/templates/fields/image-dimensions.phpnu�[���<?php
/**
 * Template for displaying the image-dimensions field
 *
 * @var array $field The field.
 * @package YITH\PluginFramework\Templates\Fields
 */

defined( 'ABSPATH' ) || exit; // Exit if accessed directly.

list ( $field_id, $class, $name, $value ) = yith_plugin_fw_extract( $field, 'id', 'class', 'name', 'value' );

$value = isset( $value ) && is_array( $value ) ? $value : array();

?>
<div class="yith-plugin-fw-image-dimensions" id="<?php echo esc_attr( $field_id ); ?>">
	<div class="yith-image-width">
		<label for="<?php echo esc_attr( $name . '_width' ); ?>"><?php echo esc_html_x( 'Width', 'Image width field label', 'yith-plugin-fw' ); ?></label>
		<input type="number" id="<?php echo esc_attr( $name . '_width' ); ?>" name="<?php echo esc_attr( $name . '[width]' ); ?>"
				value="<?php echo isset( $value['width'] ) ? absint( $value['width'] ) : 0; ?>" step="1" min="0" />
	</div>
	<div class="yith-image-height">
		<label for="<?php echo esc_attr( $name . '_height' ); ?>"><?php echo esc_html_x( 'Height', 'Image height field label', 'yith-plugin-fw' ); ?></label>
		<input type="number" id="<?php echo esc_attr( $name . '_height' ); ?>" name="<?php echo esc_attr( $name . '[height]' ); ?>"
				value="<?php echo isset( $value['height'] ) ? absint( $value['height'] ) : 0; ?>" step="1" min="0" />
	</div>
</div>
PK`x1\�8�L,,'plugin-fw/templates/fields/textarea.phpnu�[���<?php
/**
 * Template for displaying the textarea field
 *
 * @var array $field The field.
 * @package YITH\PluginFramework\Templates\Fields
 */

defined( 'ABSPATH' ) || exit; // Exit if accessed directly.

list ( $field_id, $class, $name, $value, $std, $rows, $cols, $custom_attributes, $data ) = yith_plugin_fw_extract( $field, 'id', 'class', 'name', 'value', 'std', 'rows', 'cols', 'custom_attributes', 'data' );

$class = isset( $class ) ? $class : 'yith-plugin-fw-textarea';
$rows  = isset( $rows ) ? $rows : 5;
$cols  = isset( $cols ) ? $cols : 50;
?>
<textarea id="<?php echo esc_attr( $field_id ); ?>"
		name="<?php echo esc_attr( $name ); ?>"
		class="<?php echo esc_attr( $class ); ?>"
		rows="<?php echo esc_attr( $rows ); ?>"
		cols="<?php echo esc_attr( $cols ); ?>"

	<?php if ( isset( $std ) ) : ?>
		data-std="<?php echo esc_attr( $std ); ?>"
	<?php endif; ?>

	<?php yith_plugin_fw_html_attributes_to_string( $custom_attributes, true ); ?>
	<?php yith_plugin_fw_html_data_to_string( $data, true ); ?>
><?php echo esc_textarea( $value ); ?></textarea>
PK`x1\MNy		-plugin-fw/templates/fields/country-select.phpnu�[���<?php
/**
 * Template for displaying the country-select field
 *
 * @var array $field The field.
 * @package YITH\PluginFramework\Templates\Fields
 */

defined( 'ABSPATH' ) || exit; // Exit if accessed directly.

if ( ! function_exists( 'WC' ) ) {
	return;
}

list ( $field_id, $name, $class, $placeholder, $std, $value, $data, $custom_attributes ) = yith_plugin_fw_extract( $field, 'id', 'name', 'class', 'placeholder', 'std', 'value', 'data', 'custom_attributes' );

$placeholder     = isset( $placeholder ) ? ' data-placeholder = "' . $placeholder . '" ' : '';
$country_setting = (string) $value;

if ( strstr( $country_setting, ':' ) ) {
	$country_setting  = explode( ':', $country_setting );
	$selected_country = current( $country_setting );
	$selected_state   = end( $country_setting );
} else {
	$selected_country = $country_setting;
	$selected_state   = '*';
}
$countries = WC()->countries->get_countries();
$class     = isset( $class ) ? $class : 'yith-plugin-fw-select';
?>
<select id="<?php echo esc_attr( $field_id ); ?>"
		name="<?php echo esc_attr( $name ); ?>"
		class="wc-enhanced-select <?php echo esc_attr( $class ); ?>"
	<?php if ( isset( $std ) ) : ?>
		data-std="<?php echo esc_attr( $std ); ?>"
	<?php endif; ?>
	<?php if ( isset( $placeholder ) ) : ?>
		data-placeholder="<?php echo esc_attr( $placeholder ); ?>"
	<?php endif; ?>
	<?php yith_plugin_fw_html_attributes_to_string( $custom_attributes, true ); ?>
	<?php yith_plugin_fw_html_data_to_string( $data, true ); ?>
>
	<?php
	if ( $countries ) {
		foreach ( $countries as $key => $value ) {
			$states = WC()->countries->get_states( $key );
			if ( $states ) {
				echo '<optgroup label="' . esc_attr( $value ) . '">';
				foreach ( $states as $state_key => $state_value ) {
					echo '<option value="' . esc_attr( $key ) . ':' . esc_attr( $state_key ) . '"';

					if ( $selected_country === $key && $selected_state === $state_key ) {
						echo ' selected="selected"';
					}

					echo '>' . esc_html( $value ) . ' &mdash; ' . esc_html( $state_value ) . '</option>';
				}
				echo '</optgroup>';
			} else {
				echo '<option';
				if ( $selected_country === $key && '*' === $selected_state ) {
					echo ' selected="selected"';
				}
				echo ' value="' . esc_attr( $key ) . '">' . esc_html( $value ) . '</option>';
			}
		}
	}
	?>
</select>
PK`x1\��ŷ$$)plugin-fw/templates/fields/datepicker.phpnu�[���<?php
/**
 * Template for displaying the datepicker field
 *
 * @var array $field The field.
 * @package YITH\PluginFramework\Templates\Fields
 */

defined( 'ABSPATH' ) || exit; // Exit if accessed directly.

list ( $field_id, $class, $name, $value, $data, $custom_attributes ) = yith_plugin_fw_extract( $field, 'id', 'class', 'name', 'value', 'data', 'custom_attributes' );

$class = ! empty( $class ) ? $class : 'yith-plugin-fw-datepicker';
?>
<input type="text"
		name="<?php echo esc_attr( $name ); ?>"
		id="<?php echo esc_attr( $field_id ); ?>"
		value="<?php echo esc_attr( $value ); ?>"
		class="<?php echo esc_attr( $class ); ?>"
		autocomplete="off"
	<?php yith_plugin_fw_html_attributes_to_string( $custom_attributes, true ); ?>
	<?php yith_plugin_fw_html_data_to_string( $data, true ); ?>
/>
PK`x1\\>]��%plugin-fw/templates/fields/hidden.phpnu�[���<?php
/**
 * Template for displaying the hidden field
 *
 * @var array $field The field.
 * @package YITH\PluginFramework\Templates\Fields
 */

defined( 'ABSPATH' ) || exit; // Exit if accessed directly.

list ( $field_id, $class, $name, $value, $data, $custom_attributes ) = yith_plugin_fw_extract( $field, 'id', 'class', 'name', 'value', 'data', 'custom_attributes' );

$class = ! ! $class ? $class : '';

// Backward compatibility.
if ( ! isset( $value ) ) {
	if ( isset( $field['val'] ) ) {
		$value = $field['val'];
	} else {
		$value = '';
	}
}
?>
<input type="hidden" id="<?php echo esc_attr( $field_id ); ?>"
		name="<?php echo esc_attr( $name ); ?>"
		class="<?php echo esc_attr( $class ); ?>"
		value="<?php echo esc_attr( $value ); ?>"
	<?php if ( isset( $std ) ) : ?>
		data-std="<?php echo esc_attr( $std ); ?>"
	<?php endif; ?>
	<?php yith_plugin_fw_html_attributes_to_string( $custom_attributes, true ); ?>
	<?php yith_plugin_fw_html_data_to_string( $data, true ); ?>
/>
PK`x1\��LJJ,plugin-fw/templates/fields/ajax-products.phpnu�[���<?php
/**
 * Template for displaying the ajax-products field
 *
 * @var array $field The field.
 * @package YITH\PluginFramework\Templates\Fields
 */

defined( 'ABSPATH' ) || exit; // Exit if accessed directly.

$field['type'] = 'ajax-posts';
$field_data    = array(
	'post_type'   => 'product',
	'placeholder' => __( 'Search Product', 'yith-plugin-fw' ),
	'action'      => 'yith_plugin_fw_json_search_products',
);
if ( isset( $field['data'] ) ) {
	$field_data = wp_parse_args( $field['data'], $field_data );
}

$field['data'] = $field_data;

yith_plugin_fw_get_field( $field, true );
PK`x1\���dd'plugin-fw/templates/fields/sidebars.phpnu�[���<?php
/**
 * Template for displaying the sidebars field
 *
 * @var array $field The field.
 * @package YITH\PluginFramework\Templates\Fields
 */

defined( 'ABSPATH' ) || exit; // Exit if accessed directly.

list ( $field_id, $name, $value ) = yith_plugin_fw_extract( $field, 'id', 'name', 'value' );

$layout        = ! isset( $value['layout'] ) ? 'sidebar-no' : $value['layout'];
$sidebar_left  = ! isset( $value['sidebar-left'] ) ? '-1' : $value['sidebar-left'];
$sidebar_right = ! isset( $value['sidebar-right'] ) ? '-1' : $value['sidebar-right'];
?>
<div class="yith-plugin-fw-sidebar-layout">
	<div class="option">
		<input type="radio" name="<?php echo esc_attr( $name ); ?>[layout]" id="<?php echo esc_attr( $field_id ) . '-left'; ?>" value="sidebar-left" <?php checked( $layout, 'sidebar-left' ); ?> />
		<img src="<?php echo esc_url( YIT_CORE_PLUGIN_URL ); ?>/assets/images/sidebar-left.png" title="<?php esc_attr_e( 'Left sidebar', 'yith-plugin-fw' ); ?>" alt="<?php esc_attr_e( 'Left sidebar', 'yith-plugin-fw' ); ?>" class="<?php echo esc_attr( $field_id ) . '-left'; ?>" data-type="left"/>

		<input type="radio" name="<?php echo esc_attr( $name ); ?>[layout]" id="<?php echo esc_attr( $field_id ) . '-right'; ?>" value="sidebar-right" <?php checked( $layout, 'sidebar-right' ); ?> />
		<img src="<?php echo esc_url( YIT_CORE_PLUGIN_URL ); ?>/assets/images/sidebar-right.png" title="<?php esc_attr_e( 'Right sidebar', 'yith-plugin-fw' ); ?>" alt="<?php esc_attr_e( 'Right sidebar', 'yith-plugin-fw' ); ?>" class="<?php echo esc_attr( $field_id ) . '-right'; ?>" data-type="right"/>

		<input type="radio" name="<?php echo esc_attr( $name ); ?>[layout]" id="<?php echo esc_attr( $field_id ) . '-double'; ?>" value="sidebar-double" <?php checked( $layout, 'sidebar-double' ); ?> />
		<img src="<?php echo esc_url( YIT_CORE_PLUGIN_URL ); ?>/assets/images/double-sidebar.png" title="<?php esc_attr_e( 'No sidebar', 'yith-plugin-fw' ); ?>" alt="<?php esc_attr_e( 'No sidebar', 'yith-plugin-fw' ); ?>" class="<?php echo esc_attr( $field_id ) . '-double'; ?>" data-type="double"/>

		<input type="radio" name="<?php echo esc_attr( $name ); ?>[layout]" id="<?php echo esc_attr( $field_id ) . '-no'; ?>" value="sidebar-no" <?php checked( $layout, 'sidebar-no' ); ?> />
		<img src="<?php echo esc_url( YIT_CORE_PLUGIN_URL ); ?>/assets/images/no-sidebar.png" title="<?php esc_attr_e( 'No sidebar', 'yith-plugin-fw' ); ?>" alt="<?php esc_attr_e( 'No sidebar', 'yith-plugin-fw' ); ?>" class="<?php echo esc_attr( $field_id ) . '-no'; ?>" data-type="none"/>
	</div>
	<div class="clearfix"></div>
	<div class="option" id="choose-sidebars">
		<div class="side">
			<div class="yith-plugin-fw-sidebar-layout-sidebar-left-container select-mask"
				<?php if ( ! in_array( $layout, array( 'sidebar-double', 'sidebar-left' ), true ) ) : ?>
					style="display:none"
				<?php endif; ?>
			>
				<label for="<?php echo esc_attr( $field_id ); ?>-sidebar-left"><?php esc_html_e( 'Left Sidebar', 'yith-plugin-fw' ); ?></label>
				<select class="yith-plugin-fw-select" name="<?php echo esc_attr( $name ); ?>[sidebar-left]" id="<?php echo esc_attr( $field_id ); ?>-sidebar-left">
					<option value="-1"><?php esc_html_e( 'Choose a sidebar', 'yith-plugin-fw' ); ?></option>
					<?php foreach ( yit_registered_sidebars() as $val => $option ) { ?>
						<option value="<?php echo esc_attr( $val ); ?>" <?php selected( $sidebar_left, $val ); ?>><?php echo esc_html( $option ); ?></option>
					<?php } ?>
				</select>
			</div>
		</div>
		<div class="side" style="clear: both">
			<div class="yith-plugin-fw-sidebar-layout-sidebar-right-container select-mask"
				<?php if ( ! in_array( $layout, array( 'sidebar-double', 'sidebar-right' ), true ) ) : ?>
					style="display:none"
				<?php endif; ?>
			>
				<label for="<?php echo esc_attr( $field_id ); ?>-sidebar-right"><?php esc_html_e( 'Right Sidebar', 'yith-plugin-fw' ); ?></label>
				<select class="yith-plugin-fw-select" name="<?php echo esc_attr( $name ); ?>[sidebar-right]" id="<?php echo esc_attr( $field_id ); ?>-sidebar-right">
					<option value="-1"><?php esc_html_e( 'Choose a sidebar', 'yith-plugin-fw' ); ?></option>
					<?php foreach ( yit_registered_sidebars() as $val => $option ) { ?>
						<option value="<?php echo esc_attr( $val ); ?>" <?php selected( $sidebar_right, $val ); ?>><?php echo esc_html( $option ); ?></option>
					<?php } ?>
				</select>
			</div>
		</div>
	</div>
</div>
PK`x1\���X)plugin-fw/templates/fields/customtabs.phpnu�[���<?php
/**
 * Template for displaying the customtabs field
 *
 * @var array $field The field.
 * @package YITH\PluginFramework\Templates\Fields
 */

defined( 'ABSPATH' ) || exit; // Exit if accessed directly.

list ( $name, $value ) = yith_plugin_fw_extract( $field, 'name', 'value' );

$value = ! ! $value && is_array( $value ) ? $value : array();
?>
<div id="yit_custom_tabs" class="panel wc-metaboxes-wrapper" style="display: block;">
	<p class="toolbar">
		<a href="#" class="close_all"><?php esc_html_e( 'Close all', 'yith-plugin-fw' ); ?></a><a href="#" class="expand_all"><?php esc_html_e( 'Expand all', 'yith-plugin-fw' ); ?></a>
	</p>

	<div class="yit_custom_tabs wc-metaboxes ui-sortable">

		<?php foreach ( $value as $i => $the_tab ) : ?>
			<div class="yit_custom_tab wc-metabox closed" rel="0">
				<h3>
					<button type="button" class="remove_row button"><?php esc_html_e( 'Remove', 'yith-plugin-fw' ); ?></button>
					<div class="handlediv" title="Click to toggle"></div>
					<strong class="attribute_name"><?php echo esc_html( $the_tab['name'] ); ?></strong>
				</h3>

				<table cellpadding="0" cellspacing="0" class="woocommerce_attribute_data wc-metabox-content" style="display: table;">
					<tbody>
					<tr>
						<td class="attribute_name">
							<label><?php esc_html_e( 'Name', 'yith-plugin-fw' ); ?>:</label>
							<input type="text" class="attribute_name" name="<?php echo esc_attr( $name ); ?>[<?php echo esc_attr( $i ); ?>][name]" value="<?php echo esc_attr( $the_tab['name'] ); ?>">
							<input type="hidden" name="<?php echo esc_attr( $name ); ?>[<?php echo esc_attr( $i ); ?>][position]" class="attribute_position" value="<?php echo esc_attr( $i ); ?>">
						</td>

						<td rowspan="3">
							<label><?php esc_html_e( 'Value', 'yith-plugin-fw' ); ?>:</label>
							<textarea name="<?php echo esc_attr( $name ); ?>[<?php echo esc_attr( $i ); ?>][value]" cols="5" rows="5" placeholder="<?php esc_attr_e( 'Content of the tab. (HTML is supported)', 'yith-plugin-fw' ); ?>"><?php echo wp_kses_post( $the_tab['value'] ); ?></textarea>
						</td>
					</tr>
					</tbody>
				</table>

			</div>
		<?php endforeach ?>
	</div>

	<p class="toolbar">
		<button type="button" class="button button-primary add_custom_tab"><?php esc_html_e( 'Add custom product tab', 'yith-plugin-fw' ); ?></button>
	</p>

	<div class="clear"></div>
</div>

<script>
	jQuery( document ).ready( function ( $ ) {
		// Add rows
		$( 'button.add_custom_tab' ).on( 'click', function () {

			var size        = $( '.yit_custom_tabs .yit_custom_tab' ).size() + 1;

			// Add custom attribute row
			$( '.yit_custom_tabs' ).append( '<div class="yit_custom_tab wc-metabox">\
						<h3>\
							<button type="button" class="remove_row button"><?php esc_html_e( 'Remove', 'yith-plugin-fw' ); ?></button>\
							<div class="handlediv" title="Click to toggle"></div>\
							<strong class="attribute_name"></strong>\
						</h3>\
						<table cellpadding="0" cellspacing="0" class="woocommerce_attribute_data">\
							<tbody>\
								<tr>\
									<td class="attribute_name">\
										<label><?php esc_html_e( 'Name', 'yith-plugin-fw' ); ?>:</label>\
										<input type="text" class="attribute_name" name="<?php echo esc_attr( $name ); ?>[' + size + '][name]" />\
										<input type="hidden" name="<?php echo esc_attr( $name ); ?>[' + size + '][position]" class="attribute_position" value="' + size + '" />\
									</td>\
									<td rowspan="3">\
										<label><?php esc_html_e( 'Value', 'yith-plugin-fw' ); ?>:</label>\
										<textarea name="<?php echo esc_attr( $name ); ?>[' + size + '][value]" cols="5" rows="5" placeholder="<?php echo esc_attr( addslashes( __( 'Content of the tab. (HTML is supported)', 'yith-plugin-fw' ) ) ); ?>"></textarea>\
									</td>\
								</tr>\
							</tbody>\
						</table>\
					</div>' );

		} );


		$( '.yit_custom_tabs' ).on( 'click', 'button.remove_row', function () {
			var answer = confirm( "<?php esc_attr_e( 'Do you want to remove the custom tab?', 'yith-plugin-fw' ); ?>" );
			if ( answer ) {
				var $parent = $( this ).parent().parent();

				$parent.remove();
				attribute_row_indexes();
			}
			return false;
		} );

		// Attribute ordering
		$( '.yit_custom_tabs' ).sortable(
			{
				items               : '.yit_custom_tab',
				cursor              : 'move',
				axis                : 'y',
				handle              : 'h3',
				scrollSensitivity   : 40,
				forcePlaceholderSize: true,
				helper              : 'clone',
				opacity             : 0.65,
				placeholder         : 'wc-metabox-sortable-placeholder',
				start               : function ( event, ui ) {
					ui.item.css( 'background-color', '#f6f6f6' );
				},
				stop                : function ( event, ui ) {
					ui.item.removeAttr( 'style' );
					attribute_row_indexes();
				}
			}
		);

		function attribute_row_indexes() {
			$( '.yit_custom_tabs .yit_custom_tab' ).each( function ( index, el ) {
				var newVal = '[' + $( el ).index( '.yit_custom_tabs .yit_custom_tab' ) + ']';
				var oldVal = '[' + $( '.attribute_position', el ).val() + ']';

				$( ':input:not(button)', el ).each( function () {
					var name = $( this ).attr( 'name' );
					$( this ).attr( 'name', name.replace( oldVal, newVal ) );
				} );

				$( '.attribute_position', el ).val( $( el ).index( '.yit_custom_tabs .yit_custom_tab' ) );
			} );
		}

	} );
</script>
PK`x1\*<|���3plugin-fw/templates/fields/toggle-element-fixed.phpnu�[���<?php
/**
 * Template for displaying the toggle-element-fixed field
 *
 * @var array $field The field.
 * @package YITH\PluginFramework\Templates\Fields
 */

defined( 'ABSPATH' ) || exit; // Exit if accessed directly.

$defaults = array(
	'id'                  => '',
	'class'               => '',
	'name'                => '',
	'elements'            => array(),
	'title'               => '',
	'subtitle'            => '',
	'onoff_field'         => true,
	'save_single_options' => false,
	'custom_attributes'   => '',
);
$field    = wp_parse_args( $field, $defaults );

list ( $field_id, $class, $name, $elements, $the_title, $subtitle, $onoff_field, $save_single_options, $custom_attributes ) = yith_plugin_fw_extract( $field, 'id', 'class', 'name', 'elements', 'title', 'subtitle', 'onoff_field', 'save_single_options', 'subtitle', 'custom_attributes' );

$name  = ! empty( $name ) ? $name : $field_id;
$value = get_option( $name, array() );
?>
<div class="yith-toggle_fixed_wrapper" id="<?php echo esc_attr( $field_id ); ?>">
	<div class="yith-toggle-elements">
		<div id="<?php echo esc_attr( $field_id ); ?>"
				class="yith-toggle-row fixed <?php echo ! empty( $subtitle ) ? 'with-subtitle' : ''; ?> <?php echo esc_attr( $class ); ?>"
			<?php yith_plugin_fw_html_attributes_to_string( $custom_attributes, true ); ?>
		>
			<div class="yith-toggle-title">
				<h3>
					<span class="title"><?php echo wp_kses_post( $the_title ); ?></span>
					<?php if ( ! empty( $subtitle ) ) : ?>
						<span class="subtitle"><?php echo wp_kses_post( $subtitle ); ?></span>
					<?php endif; ?>
				</h3>
				<span class="yith-toggle"><span class="yith-icon yith-icon-arrow_right ui-sortable-handle"></span></span>
				<?php if ( ! empty( $onoff_field ) ) : ?>
					<span class="yith-toggle-onoff">
						<?php
						yith_plugin_fw_get_field(
							array(
								'type'  => 'onoff',
								'name'  => "{$name}[enabled]",
								'id'    => "{$field_id}_enabled",
								'value' => isset( $value['enabled'] ) ? $value['enabled'] : 'no',
							),
							true
						);
						?>
					</span>
				<?php endif; ?>
			</div>
			<div class="yith-toggle-content">
				<?php foreach ( $elements as $element ) : ?>
					<?php
					$element_id       = $element['id'];
					$element['name']  = false === $save_single_options ? "{$name}[{$element_id}]" : $element_id;
					$element['id']    = "{$field_id}_{$element_id}";
					$element['value'] = '';
					$element_default  = isset( $element['default'] ) ? $element['default'] : '';
					if ( false === $save_single_options ) {
						$element['value'] = isset( $value[ $element_id ] ) ? $value[ $element_id ] : $element_default;
					} else {
						$element['value'] = get_option( $element_id, $element_default );
					}
					?>
					<div class="yith-toggle-content-row <?php echo esc_attr( $element['type'] ); ?>">
						<label for="<?php echo esc_attr( $element['id'] ); ?>"><?php echo esc_html( $element['title'] ); ?></label>
						<div class="yith-plugin-fw-option-with-description">
							<?php yith_plugin_fw_get_field( $element, true ); ?>
							<span class="description"><?php echo ! empty( $element['desc'] ) ? wp_kses_post( $element['desc'] ) : ''; ?></span>
						</div>
					</div>
				<?php endforeach; ?>
			</div>
		</div>
	</div>
</div>
PK`x1\
WlZ##-plugin-fw/templates/fields/checkbox-array.phpnu�[���<?php
/**
 * Template for displaying the checkbox-array field
 *
 * @var array $field The field.
 * @package YITH\PluginFramework\Templates\Fields
 * @since   3.4.0
 */

defined( 'ABSPATH' ) || exit; // Exit if accessed directly.

list ( $field_id, $name, $class, $options, $value, $data, $custom_attributes ) = yith_plugin_fw_extract( $field, 'id', 'name', 'class', 'options', 'value', 'data', 'custom_attributes' );

$class = isset( $class ) ? $class : '';
$class = 'yith-plugin-fw-checkbox-array ' . $class;

$value = is_array( $value ) ? $value : array();
?>
<div class="<?php echo esc_attr( $class ); ?>" id="<?php echo esc_attr( $field_id ); ?>"
	<?php yith_plugin_fw_html_attributes_to_string( $custom_attributes, true ); ?>
	<?php yith_plugin_fw_html_data_to_string( $data, true ); ?>
>
	<?php foreach ( $options as $key => $label ) : ?>
		<?php
		$checkbox_id = sanitize_key( $field_id . '-' . $key );
		?>
		<div class="yith-plugin-fw-checkbox-array__row">
			<input type="checkbox" id="<?php echo esc_attr( $checkbox_id ); ?>" name="<?php echo esc_attr( $name ); ?>[]" value="<?php echo esc_attr( $key ); ?>" <?php checked( in_array( $key, $value, true ) ); ?> />
			<label for="<?php echo esc_attr( $checkbox_id ); ?>"><?php echo wp_kses_post( $label ); ?></label>
		</div>
	<?php endforeach; ?>
</div>
PK`x1\�����%plugin-fw/templates/fields/upload.phpnu�[���<?php
/**
 * Template for displaying the text field
 *
 * @var array $field The field.
 * @package YITH\PluginFramework\Templates\Fields
 */

defined( 'ABSPATH' ) || exit; // Exit if accessed directly.

list ( $field_id, $class, $name, $value, $std, $default, $custom_attributes, $data ) = yith_plugin_fw_extract( $field, 'id', 'class', 'name', 'value', 'std', 'default', 'custom_attributes', 'data' );

$file = $value;
?>
<div class="yith-plugin-fw-upload-container <?php echo ! empty( $class ) ? esc_attr( $class ) : ''; ?>">
	<div class="yith-plugin-fw-upload-img-preview" style="margin-top:10px;">
		<?php if ( preg_match( '/(jpg|jpeg|png|gif|ico|svg)$/', $file ) ) : ?>
			<img src="<?php echo esc_url( $file ); ?>" style="max-width:600px; max-height:300px;"/>
		<?php endif ?>
	</div>
	<input type="text"
			id="<?php echo esc_attr( $field_id ); ?>"
			name="<?php echo esc_attr( $name ); ?>"
			class="yith-plugin-fw-upload-img-url"
			value="<?php echo esc_attr( $value ); ?>"

		<?php if ( isset( $default ) ) : ?>
			data-std="<?php echo esc_attr( $default ); ?>"
		<?php endif; ?>

		<?php yith_plugin_fw_html_attributes_to_string( $custom_attributes, true ); ?>
		<?php yith_plugin_fw_html_data_to_string( $data, true ); ?>
	/>
	<button class="yith-plugin-fw-upload-button" id="<?php echo esc_attr( $field_id ); ?>-button"><?php esc_html_e( 'Upload', 'yith-plugin-fw' ); ?></button>
	<button type="button"
			id="<?php echo esc_attr( $field_id ); ?>-button-reset"
			class="yith-plugin-fw-upload-button-reset"
			data-default="<?php echo isset( $default ) ? esc_attr( $default ) : ''; ?>"
	><?php esc_html_e( 'Reset', 'yith-plugin-fw' ); ?></button>
</div>
PK`x1\�%�LL)plugin-fw/templates/fields/ajax-terms.phpnu�[���<?php
/**
 * Template for displaying the ajax-terms field
 * Note: the stored value is an array if WooCommerce >= 3.0; string otherwise
 *
 * @var array $field The field.
 * @package YITH\PluginFramework\Templates\Fields
 */

defined( 'ABSPATH' ) || exit; // Exit if accessed directly.

yith_plugin_fw_enqueue_enhanced_select();

$default_field = array(
	'id'       => '',
	'name'     => '',
	'class'    => 'yith-term-search',
	'no_value' => false,
	'multiple' => false,
	'data'     => array(),
	'style'    => 'width:400px',
	'value'    => '',
);

foreach ( $default_field as $field_key => $field_value ) {
	if ( empty( $field[ $field_key ] ) ) {
		$field[ $field_key ] = $field_value;
	}
}
unset( $field_key );
unset( $field_value );

list ( $field_id, $class, $no_value, $multiple, $data, $name, $style, $value ) = yith_plugin_fw_extract( $field, 'id', 'class', 'no_value', 'multiple', 'data', 'name', 'style', 'value' );

if ( $no_value ) {
	$value = array();
}

$default_data = array(
	'action'      => 'yith_plugin_fw_json_search_terms',
	'placeholder' => __( 'Search Categories', 'yith-plugin-fw' ),
	'allow_clear' => false,
	'taxonomy'    => 'category',
	'term_field'  => 'id',
);
$data         = wp_parse_args( $data, $default_data );
$show_id      = isset( $data['show_id'] ) && $data['show_id'];

// Separate select2 needed data and other data.
$select2_custom_attributes = array();
$select2_data              = array();
$select2_data_keys         = array( 'placeholder', 'allow_clear', 'action' );
foreach ( $data as $d_key => $d_value ) {
	if ( in_array( $d_key, $select2_data_keys, true ) ) {
		$select2_data[ $d_key ] = $d_value;
	} else {
		$select2_custom_attributes[ 'data-' . $d_key ] = $d_value;
	}
}

$term_field = $data['term_field'];

// Populate data-selected by value.
$data_selected = array();
if ( ! empty( $value ) ) {
	if ( $multiple ) {
		if ( 'id' === $term_field ) {
			$value = is_array( $value ) ? array_map( 'absint', $value ) : explode( ',', $value );
		} else {
			$value = is_array( $value ) ? $value : explode( ',', $value );
		}
		foreach ( $value as $term_value ) {
			$the_term = get_term_by( $term_field, $term_value, $data['taxonomy'] );
			if ( is_object( $the_term ) ) {
				$term_title                   = wp_kses_post( html_entity_decode( $the_term->name, ENT_QUOTES, get_bloginfo( 'charset' ) ) );
				$term_title_suffix            = $show_id ? " (#{$the_term->term_id})" : '';
				$data_selected[ $term_value ] = $term_title . $term_title_suffix;
			} else {
				$data_selected[ $term_value ] = '#' . $term_value;
			}
		}
	} else {
		$term_value = 'id' === $term_field ? absint( $value ) : $value;
		$the_term   = get_term_by( $term_field, $term_value, $data['taxonomy'] );
		if ( is_object( $the_term ) ) {
			$term_title                   = wp_kses_post( html_entity_decode( $the_term->name, ENT_QUOTES, get_bloginfo( 'charset' ) ) );
			$term_title_suffix            = $show_id ? " (#{$the_term->term_id})" : '';
			$data_selected[ $term_value ] = $term_title . $term_title_suffix;
		} else {
			$data_selected[ $term_value ] = '#' . $term_value;
		}
	}
}

// Parse $value to string to prevent issue with wc2.6.
$value = is_array( $value ) ? implode( ',', $value ) : $value;
?>
<div class="yith-plugin-fw-select2-wrapper">
	<?php
	if ( function_exists( 'yit_add_select2_fields' ) ) {
		yit_add_select2_fields(
			array(
				'id'                => $field_id,
				'name'              => $name,
				'class'             => $class,
				'data-multiple'     => $multiple,
				'data-placeholder'  => $select2_data['placeholder'],
				'data-allow_clear'  => $select2_data['allow_clear'],
				'data-action'       => $select2_data['action'],
				'custom-attributes' => $select2_custom_attributes,
				'style'             => $style,
				'value'             => $value,
				'data-selected'     => $data_selected,
				'data-term-field'   => $term_field,
			)
		);
	}
	?>
</div>
PK`x1\���oo+plugin-fw/templates/fields/multi-select.phpnu�[���<?php
/**
 * Template for displaying the multi-select field
 *
 * @var array $field The field.
 * @package YITH\PluginFramework\Templates\Fields
 */

defined( 'ABSPATH' ) || exit; // Exit if accessed directly.

list ( $field_id, $class, $name, $selects, $value ) = yith_plugin_fw_extract( $field, 'id', 'class', 'name', 'selects', 'value' );

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

$selects_count = count( $selects );
?>
<div class="yith-plugin-fw-multi-select" id="<?php echo esc_attr( $field_id ); ?>">
	<?php for ( $i = 0; $i < $selects_count; $i ++ ) : ?>
		<?php if ( ! ( $i % 2 ) ) : ?>
			<div class="yith-select-group">
		<?php endif; ?>

		<div class="yith-single-select">
			<?php
			$select          = $selects[ $i ];
			$select['type']  = 'select';
			$select['title'] = isset( $select['title'] ) ? $select['title'] : $select['name'];
			$select['name']  = $name . "[{$select['id']}]";
			$select['value'] = isset( $value[ $select['id'] ] ) ? $value[ $select['id'] ] : $select['default'];
			$select['id']    = $name . '_' . $select['id'];
			$select['class'] = $class
			?>
			<label for="<?php echo esc_attr( $select['id'] ); ?>"><?php echo esc_html( $select['title'] ); ?></label>
			<?php yith_plugin_fw_get_field( $select, true, false ); ?>
		</div>

		<?php if ( ( $i % 2 ) !== 0 || ! isset( $selects[ $i + 1 ] ) ) : ?>
			</div>
		<?php endif; ?>
	<?php endfor; ?>
</div>
PK`x1\�L���&plugin-fw/templates/fields/preview.phpnu�[���<?php
/**
 * Template for displaying the preview field
 *
 * @var array $field The field.
 * @package YITH\PluginFramework\Templates\Fields
 */

defined( 'ABSPATH' ) || exit; // Exit if accessed directly.

list ( $field_id, $class, $value, $custom_attributes, $data ) = yith_plugin_fw_extract( $field, 'id', 'class', 'value', 'custom_attributes', 'data' );

$class = ! empty( $class ) ? $class : 'yith-plugin-fw-preview-field';

?>
<img id="<?php echo esc_attr( $field_id ); ?>"
		class="<?php echo esc_attr( $class ); ?>"
		src="<?php echo esc_url( $value ); ?>"
	<?php yith_plugin_fw_html_attributes_to_string( $custom_attributes, true ); ?>
	<?php yith_plugin_fw_html_data_to_string( $data, true ); ?>
>
PK`x1\��]..$plugin-fw/templates/fields/icons.phpnu�[���<?php
/**
 * Template for displaying the icons field
 *
 * @var array $field The field.
 * @package YITH\PluginFramework\Templates\Fields
 */

defined( 'ABSPATH' ) || exit; // Exit if accessed directly.

list ( $field_id, $name, $filter_icons, $std, $value ) = yith_plugin_fw_extract( $field, 'id', 'name', 'filter_icons', 'std', 'value' );

wp_enqueue_style( 'font-awesome' );

$filter_icons      = ! ! $filter_icons ? $filter_icons : '';
$default_icon_text = isset( $std ) ? $std : false;
$default_icon_data = YIT_Icons()->get_icon_data_array( $default_icon_text, $filter_icons );
$default_icon      = '';
if ( isset( $default_icon_data['icon'] ) ) {
	$default_icon = $default_icon_data['icon'];
	$default_icon = str_replace( '&#x', '', $default_icon );
	unset( $default_icon_data['icon'] );
}

$current_icon_data = YIT_Icons()->get_icon_data_array( $value, $filter_icons );
$current_icon_text = $value;
$current_icon      = '';
if ( isset( $current_icon_data['icon'] ) ) {
	$current_icon = $current_icon_data['icon'];
	$current_icon = str_replace( '&#x', '', $current_icon );
	unset( $current_icon_data['icon'] );
}

$yit_icons = YIT_Icons()->get_icons( $filter_icons );
?>

<div id="yit-icons-manager-wrapper-<?php echo esc_attr( $field_id ); ?>" class="yit-icons-manager-wrapper">

	<div class="yit-icons-manager-text">
		<div class="yit-icons-manager-icon-preview"
			<?php echo yith_plugin_fw_html_data_to_string( $current_icon_data ); ?>
			<?php if ( $current_icon ) : ?>
				data-icon="&#x<?php echo esc_attr( $current_icon ); ?>"
			<?php endif; ?>
		></div>
		<input class="yit-icons-manager-icon-text" type="text"
				id="<?php echo esc_attr( $field_id ); ?>"
				name="<?php echo esc_attr( $name ); ?>"
				value="<?php echo esc_attr( $current_icon_text ); ?>"
		/>
		<div class="clear"></div>
	</div>


	<div class="yit-icons-manager-list-wrapper">
		<ul class="yit-icons-manager-list">
			<?php foreach ( $yit_icons as $font => $icons ) : ?>
				<?php foreach ( $icons as $key => $icon_name ) : ?>
					<?php
					$data_icon  = str_replace( '\\', '', $key );
					$icon_text  = $font . ':' . $icon_name;
					$icon_class = $icon_text === $current_icon_text ? 'active' : '';

					$icon_class .= $icon_text === $default_icon_text ? ' default' : '';
					?>
					<li class="<?php echo esc_attr( $icon_class ); ?>"
							data-font="<?php echo esc_attr( $font ); ?>"
							data-icon="&#x<?php echo esc_attr( $data_icon ); ?>"
							data-key="<?php echo esc_attr( $key ); ?>"
							data-name="<?php echo esc_attr( $icon_name ); ?>"></li>
				<?php endforeach; ?>
			<?php endforeach; ?>
		</ul>
	</div>

	<div class="yit-icons-manager-actions">
		<?php if ( $default_icon_text ) : ?>
			<div class="yit-icons-manager-action-set-default button"><?php esc_html_e( 'Set Default', 'yith-plugin-fw' ); ?>
				<i class="yit-icons-manager-default-icon-preview"
					<?php echo yith_plugin_fw_html_data_to_string( $default_icon_data ); ?>
					<?php if ( $default_icon ) : ?>
						data-icon="&#x<?php echo esc_attr( $default_icon ); ?>"
					<?php endif; ?>
				></i>
			</div>
		<?php endif ?>
	</div>
</div>
PK`x1\o��kk2plugin-fw/templates/fields/textarea-codemirror.phpnu�[���<?php
/**
 * Template for displaying the textarea-codemirror field
 *
 * @var array $field The field.
 * @package YITH\PluginFramework\Templates\Fields
 */

defined( 'ABSPATH' ) || exit; // Exit if accessed directly.

list ( $field_id, $class, $name, $value, $custom_attributes, $data, $settings ) = yith_plugin_fw_extract( $field, 'id', 'class', 'name', 'value', 'custom_attributes', 'data', 'settings' );

$default_settings = array(
	'type' => 'text/javascript',
);
$settings         = isset( $settings ) ? $settings : array();
$settings         = wp_parse_args( $settings, $default_settings );
$settings         = wp_enqueue_code_editor( $settings );

$class = isset( $class ) ? $class : 'codemirror';
?>
<textarea id="<?php echo esc_attr( $field_id ); ?>"
		name="<?php echo esc_attr( $name ); ?>"
		class="<?php echo esc_attr( $class ); ?>"
		rows="8" cols="50"
		data-settings="<?php echo esc_attr( wp_json_encode( $settings ) ); ?>"
	<?php yith_plugin_fw_html_attributes_to_string( $custom_attributes, true ); ?>
	<?php yith_plugin_fw_html_data_to_string( $data, true ); ?>
><?php echo esc_textarea( $value ); ?></textarea>
PK`x1\�&��*plugin-fw/templates/fields/date-format.phpnu�[���<?php
/**
 * Template for displaying the date-format field
 *
 * @var array $field The field.
 * @since   3.1.30
 * @package YITH\PluginFramework\Templates\Fields
 */

defined( 'ABSPATH' ) || exit; // Exit if accessed directly.

list ( $field_id, $class, $name, $js, $format, $value, $data, $custom_attributes ) = yith_plugin_fw_extract( $field, 'id', 'class', 'name', 'js', 'format', 'value', 'data', 'custom_attributes' );

$class = isset( $class ) ? $class : '';
$class = 'yith-plugin-fw-radio yith-plugin-fw-date-format ' . $class;

$format  = isset( $format ) ? $format : 'date';
$options = 'time' === $format ? yith_get_time_formats() : yith_get_date_formats( $js );
$custom  = true;
$js      = isset( $js ) && 'date' === $format ? $js : false;

$data            = isset( $data ) ? $data : array();
$data['current'] = date_i18n( 'Y-m-d H:i:s' );
$data['js']      = ! ! $js ? 'yes' : 'no';
$data['format']  = $format;

$loop = 0;

wp_enqueue_script( 'yith-date-format' );
?>
<div class="<?php echo esc_attr( $class ); ?>"
		id="<?php echo esc_attr( $field_id ); ?>"
		value="<?php echo esc_attr( $value ); ?>"
	<?php yith_plugin_fw_html_attributes_to_string( $custom_attributes, true ); ?>
	<?php yith_plugin_fw_html_data_to_string( $data, true ); ?>
>
	<?php foreach ( $options as $key => $label ) : ?>
		<?php
		$loop ++;
		$checked  = '';
		$radio_id = $field_id . '-' . $loop . '-' . sanitize_key( $key );
		if ( $value === $key ) { // checked() doesn't use strict comparison.
			$checked = " checked='checked'";
			$custom  = false;
		}
		?>
		<div class="yith-plugin-fw-radio__row">
			<input type="radio" id="<?php echo esc_attr( $radio_id ); ?>" name="<?php echo esc_attr( $name ); ?>"
					class="yith-plugin-fw-date-format__option"
					value="<?php echo esc_attr( $key ); ?>" <?php echo esc_html( $checked ); ?>
					data-preview="<?php echo esc_attr( date_i18n( $label ) ); ?>"
			/>
			<label for="<?php echo esc_attr( $radio_id ); ?>">
				<?php echo esc_html( date_i18n( $label ) ); ?>
				<code><?php echo esc_html( $key ); ?></code>
			</label>
		</div>
	<?php endforeach; ?>
	<?php $radio_id = $field_id . '-custom'; ?>
	<div class="yith-plugin-fw-radio__row">
		<input type="radio" id="<?php echo esc_attr( $radio_id ); ?>" name="<?php echo esc_attr( $name ); ?>"
				value="\c\u\s\t\o\m" <?php checked( $custom ); ?>
				data-format-custom="<?php echo esc_attr( $value ); ?>"
		/>
		<label for="<?php echo esc_attr( $radio_id ); ?>"> <?php esc_html_e( 'Custom:', 'yith-plugin-fw' ); ?></label>
		<input type="text" name="<?php echo esc_attr( $name . '_text' ); ?>"
				id="<?php echo esc_attr( $radio_id ); ?>_text" value="<?php echo esc_attr( $value ); ?>"
				class="small-text yith-date-format-custom"/>
		<p>
			<strong><?php esc_html_e( 'Preview:', 'yith-plugin-fw' ); ?></strong>
			<span class="example"><?php echo ! $js ? esc_html( date_i18n( $value ) ) : ''; ?></span>
			<span class="spinner"></span>
		</p>
	</div>
</div>
PK`x1\����jj/plugin-fw/templates/fields/select-mailchimp.phpnu�[���<?php
/**
 * Template for displaying the select-mailchimp field
 *
 * @var array $field The field.
 * @package YITH\PluginFramework\Templates\Fields
 */

defined( 'ABSPATH' ) || exit; // Exit if accessed directly.

list ( $field_id, $class, $name, $multiple, $std, $value, $options, $button_name, $custom_attributes, $data ) = yith_plugin_fw_extract( $field, 'id', 'class', 'name', 'multiple', 'std', 'value', 'options', 'button_name', 'custom_attributes', 'data' );

$multiple = ! empty( $multiple );
?>

<select id="<?php echo esc_attr( $field_id ); ?>"
		name="<?php echo esc_attr( $name ); ?>"
		class="yith-plugin-fw-select"

	<?php if ( $multiple ) : ?>
		multiple
	<?php endif; ?>

	<?php if ( isset( $std ) ) : ?>
		data-std="<?php echo $multiple && is_array( $std ) ? esc_attr( implode( ',', $std ) ) : esc_attr( $std ); ?>"
	<?php endif; ?>

	<?php yith_plugin_fw_html_attributes_to_string( $custom_attributes, true ); ?>
	<?php yith_plugin_fw_html_data_to_string( $data, true ); ?>
>
	<?php foreach ( $options as $key => $item ) : ?>
		<option value="<?php echo esc_attr( $key ); ?>"<?php selected( $key, $value ); ?>><?php echo esc_html( $item ); ?></option>
	<?php endforeach; ?>
</select>
<input type="button" class="button-secondary <?php echo isset( $class ) ? esc_attr( $class ) : ''; ?>" value="<?php echo esc_attr( $button_name ); ?>"/>
<span class="spinner"></span>
PK`x1\_S1��)plugin-fw/templates/fields/list-table.phpnu�[���<?php
/**
 * Template for displaying the list-table field
 *
 * @var array $field The field.
 * @package YITH\PluginFramework\Templates\Fields
 */

defined( 'ABSPATH' ) || exit; // Exit if accessed directly.

list ( $field_id, $class, $the_title, $the_post_type, $args, $add_new_button, $add_new_url, $list_table_class, $list_table_class_dir, $search_form, $desc ) = yith_plugin_fw_extract( $field, 'id', 'class', 'title', 'post_type', 'args', 'add_new_button', 'add_new_url', 'list_table_class', 'list_table_class_dir', 'search_form', 'desc' );

$show_button = false;
if ( isset( $add_new_button ) && isset( $the_post_type ) ) {
	$show_button         = true;
	$admin_url           = admin_url( 'post-new.php' );
	$params['post_type'] = $the_post_type;
	$add_new_url         = apply_filters( 'yith_plugin_fw_add_new_post_url', esc_url( add_query_arg( $params, $admin_url ) ), $params, isset( $args ) ? $args : false );
}

if ( isset( $list_table_class, $list_table_class_dir ) && ! class_exists( $list_table_class ) && file_exists( $list_table_class_dir ) ) {
	include_once $list_table_class_dir;
}
?>
<?php if ( class_exists( $list_table_class ) ) : ?>
	<?php
	$list_table = isset( $args ) ? new $list_table_class( $args ) : new $list_table_class();
	?>
	<div id="<?php echo esc_attr( $field_id ); ?>" class="yith-plugin-fw-list-table <?php echo esc_attr( $class ); ?>">
		<div class="yith-plugin-fw-list-table-container">
			<div class="list-table-title">
				<h2>
					<?php echo isset( $the_title ) ? wp_kses_post( $the_title ) : ''; ?>
				</h2>
				<?php if ( $show_button ) : ?>
					<a href="<?php echo esc_url( $add_new_url ); ?>" class="yith-add-button"><?php echo esc_html( $add_new_button ); ?></a>
				<?php endif ?>
			</div>

			<?php if ( isset( $desc ) && ! empty( $desc ) ) : ?>
				<p class="yith-section-description"><?php echo wp_kses_post( $desc ); ?></p>
			<?php endif; ?>

			<?php
			$list_table->prepare_items();
			$list_table->views();
			?>

			<form method="post">
				<?php
				if ( isset( $search_form ) ) {
					$list_table->search_box( $search_form['text'], $search_form['input_id'] );
				}
				$list_table->display();
				?>
			</form>
		</div>
	</div>
<?php endif; ?>
PK`x1\ڧ��MM"plugin-fw/templates/fields/sep.phpnu�[���<?php
/**
 * Template for displaying the sep field
 *
 * @var array $field The field.
 * @package YITH\PluginFramework\Templates\Fields
 */

defined( 'ABSPATH' ) || exit; // Exit if accessed directly.

/**
 * Do nothing, allow to stamp the container of this option with sep class:
 * <div class="the-metabox sep clearfix"></div>
 */
PK`x1\�x$E��$plugin-fw/templates/fields/onoff.phpnu�[���<?php
/**
 * Template for displaying the onoff field
 *
 * @var array $field The field.
 * @package YITH\PluginFramework\Templates\Fields
 */

defined( 'ABSPATH' ) || exit; // Exit if accessed directly.

list ( $field_id, $class, $name, $std, $value, $custom_attributes, $data, $desc_inline ) = yith_plugin_fw_extract( $field, 'id', 'class', 'name', 'std', 'value', 'custom_attributes', 'data', 'desc-inline' );

?>
<div class="yith-plugin-fw-onoff-container <?php echo ! empty( $class ) ? esc_attr( $class ) : ''; ?>"
	<?php yith_plugin_fw_html_data_to_string( $data, true ); ?>
>
	<input type="checkbox" id="<?php echo esc_attr( $field_id ); ?>"
			class="on_off"
			name="<?php echo esc_attr( $name ); ?>"
			value="<?php echo esc_attr( $value ); ?>"
		<?php if ( isset( $std ) ) : ?>
			data-std="<?php echo esc_attr( $std ); ?>"
		<?php endif; ?>
		<?php checked( true, yith_plugin_fw_is_true( $value ) ); ?>
		<?php yith_plugin_fw_html_attributes_to_string( $custom_attributes, true ); ?>
	/>
	<span class="yith-plugin-fw-onoff"
			data-text-on="<?php echo esc_attr_x( 'YES', 'YES/NO button: use MAX 4 characters!', 'yith-plugin-fw' ); ?>"
			data-text-off="<?php echo esc_attr_x( 'NO', 'YES/NO button: use MAX 4 characters!', 'yith-plugin-fw' ); ?>"></span>
</div>

<?php if ( isset( $desc_inline ) ) : ?>
	<span class='description inline'><?php echo wp_kses_post( $desc_inline ); ?></span>
<?php endif; ?>
PK`x1\��$���%plugin-fw/templates/fields/number.phpnu�[���<?php
/**
 * Template for displaying the number field
 *
 * @var array $field The field.
 * @package YITH\PluginFramework\Templates\Fields
 */

defined( 'ABSPATH' ) || exit; // Exit if accessed directly.

list ( $field_id, $class, $name, $std, $value, $min, $max, $step, $custom_attributes, $data ) = yith_plugin_fw_extract( $field, 'id', 'class', 'name', 'std', 'value', 'min', 'max', 'step', 'custom_attributes', 'data' );

?>
<input type="number" id="<?php echo esc_attr( $field_id ); ?>"
		name="<?php echo esc_attr( $name ); ?>"
		class="<?php echo ! empty( $class ) ? esc_attr( $class ) : ''; ?>"
		value="<?php echo esc_attr( $value ); ?>"
	<?php if ( isset( $min ) ) : ?>
		min="<?php echo esc_attr( $min ); ?>"
	<?php endif; ?>
	<?php if ( isset( $max ) ) : ?>
		max="<?php echo esc_attr( $max ); ?>"
	<?php endif; ?>
	<?php if ( isset( $step ) ) : ?>
		step="<?php echo esc_attr( $step ); ?>"
	<?php endif; ?>
	<?php if ( isset( $std ) ) : ?>
		data-std="<?php echo esc_attr( $std ); ?>"
	<?php endif; ?>
	<?php yith_plugin_fw_html_attributes_to_string( $custom_attributes, true ); ?>
	<?php yith_plugin_fw_html_data_to_string( $data, true ); ?>
/>
PK`x1\��,,$plugin-fw/templates/fields/radio.phpnu�[���<?php
/**
 * Template for displaying the radio field
 *
 * @var array $field The field.
 * @since   3.0.13
 * @package YITH\PluginFramework\Templates\Fields
 */

defined( 'ABSPATH' ) || exit; // Exit if accessed directly.

list ( $field_id, $class, $name, $value, $options, $custom_attributes, $data ) = yith_plugin_fw_extract( $field, 'id', 'class', 'name', 'value', 'options', 'custom_attributes', 'data' );

$class = isset( $class ) ? $class : '';
$class = 'yith-plugin-fw-radio ' . $class;

$label_extra_allowed_tags = array(
	'input'  => array(
		'checked'     => true,
		'disabled'    => true,
		'max'         => true,
		'min'         => true,
		'name'        => true,
		'placeholder' => true,
		'type'        => true,
		'value'       => true,
	),
	'option' => array(
		'disabled' => true,
		'selected' => true,
		'value'    => true,
	),
	'select' => array(
		'disabled' => true,
		'name'     => true,
		'value'    => true,
	),
);

$label_extra_allowed_tags = array_map( 'yith_plugin_fw_add_kses_global_attributes', $label_extra_allowed_tags );

$label_allowed_tags = array_merge( wp_kses_allowed_html( 'post' ), $label_extra_allowed_tags );
$label_allowed_tags = apply_filters( 'yith_plugin_fw_radio_field_label_allowed_tags', $label_allowed_tags, $field );
?>
<div id="<?php echo esc_attr( $field_id ); ?>"
		class="<?php echo esc_attr( $class ); ?>"
		data-value="<?php echo esc_attr( $value ); ?>"
		data-type="radio"
	<?php yith_plugin_fw_html_attributes_to_string( $custom_attributes, true ); ?>
	<?php yith_plugin_fw_html_data_to_string( $data, true ); ?>
>
	<?php foreach ( $options as $key => $label ) : ?>
		<?php
		$radio_id = $field_id . '-' . sanitize_key( $key );
		?>
		<div class="yith-plugin-fw-radio__row">
			<input type="radio" id="<?php echo esc_attr( $radio_id ); ?>"
					name="<?php echo esc_attr( $name ); ?>"
					value="<?php echo esc_attr( $key ); ?>"
				<?php checked( $key, $value ); ?>
			/>
			<label for="<?php echo esc_attr( $radio_id ); ?>">
				<?php echo wp_kses( $label, $label_allowed_tags ); ?>
			</label>
		</div>
	<?php endforeach; ?>
</div>
PK`x1\�����,plugin-fw/templates/fields/image-gallery.phpnu�[���<?php
/**
 * Template for displaying the image-gallery field
 *
 * @var array $field The field.
 * @package YITH\PluginFramework\Templates\Fields
 */

defined( 'ABSPATH' ) || exit; // Exit if accessed directly.

list ( $field_id, $name, $value ) = yith_plugin_fw_extract( $field, 'id', 'name', 'value' );

$image_ids = ! empty( $value ) ? array_filter( explode( ',', $value ) ) : array();
?>
<div class="yith-plugin-fw-image-gallery">
	<ul id="<?php echo esc_attr( $field_id ); ?>-extra-images" class="slides-wrapper extra-images ui-sortable clearfix">
		<?php foreach ( $image_ids as $image_id ) : ?>
			<li class="image" data-attachment_id= <?php echo esc_attr( $image_id ); ?>>
				<a href="#">
					<?php
					if ( function_exists( 'yit_image' ) ) {
						yit_image( "id=$image_id&size=admin-post-type-thumbnails" );
					} else {
						echo wp_get_attachment_image( $image_id, array( 80, 80 ) );
					}
					?>
				</a>
				<ul class="actions">
					<li><a href="#" class="delete" title="<?php esc_attr_e( 'Delete image', 'yith-plugin-fw' ); ?>">x</a></li>
				</ul>
			</li>
		<?php endforeach; ?>
	</ul>
	<input type="button"
			id="<?php echo esc_attr( $field_id ); ?>-button"
			class="image-gallery-button button button-secondary"
			data-choose="<?php esc_attr_e( 'Add Images to Gallery', 'yith-plugin-fw' ); ?>"
			data-update="<?php esc_attr_e( 'Add to gallery', 'yith-plugin-fw' ); ?>"
			value="<?php esc_attr_e( 'Add images', 'yith-plugin-fw' ); ?>"
			data-delete="<?php esc_attr_e( 'Delete image', 'yith-plugin-fw' ); ?>"
			data-text="<?php esc_attr_e( 'Delete', 'yith-plugin-fw' ); ?>"
	/>
	<input type="hidden" class="image_gallery_ids" name="<?php echo esc_attr( $name ); ?>" value="<?php echo esc_attr( $value ); ?>"/>
</div>
PK`x1\��Z;;%plugin-fw/templates/fields/slider.phpnu�[���<?php
/**
 * Template for displaying the slider field
 *
 * @var array $field The field.
 * @package YITH\PluginFramework\Templates\Fields
 */

defined( 'ABSPATH' ) || exit; // Exit if accessed directly.

list ( $field_id, $class, $name, $value,
	/**
	 * Array of option containing min and max value
	 * This is deprecated since 3.5 | use 'min' and 'max' instead.
	 */
	$option,
	$min, $max, $step, $custom_attributes, $data ) = yith_plugin_fw_extract( $field, 'id', 'class', 'name', 'value', 'option', 'min', 'max', 'step', 'custom_attributes', 'data' );

// Handle the deprecated attribute 'option': use 'min' and 'max' instead.
if ( ! isset( $min ) && isset( $option, $option['min'] ) ) {
	$min = $option['min'];
}

if ( ! isset( $max ) && isset( $option, $option['max'] ) ) {
	$max = $option['max'];
}

$min  = isset( $min ) ? $min : 0;
$max  = isset( $max ) ? $max : 100;
$step = isset( $step ) ? $step : 1;
?>
<div class="yith-plugin-fw-slider-container <?php echo ! empty( $class ) ? esc_attr( $class ) : ''; ?>">
	<div class="ui-slider">
		<span class="minCaption"><?php echo esc_html( $min ); ?></span>
		<div id="<?php echo esc_attr( $field_id ); ?>-div"
				class="ui-slider ui-slider-horizontal ui-widget ui-widget-content ui-corner-all"
				data-step="<?php echo esc_attr( $step ); ?>"
				data-min="<?php echo esc_attr( $min ); ?>"
				data-max="<?php echo esc_attr( $max ); ?>"
				data-val="<?php echo esc_attr( $value ); ?>"

			<?php yith_plugin_fw_html_attributes_to_string( $custom_attributes, true ); ?>
			<?php yith_plugin_fw_html_data_to_string( $data, true ); ?>
		>
			<input id="<?php echo esc_attr( $field_id ); ?>"
					type="hidden"
					name="<?php echo esc_attr( $name ); ?>"
					value="<?php echo esc_attr( $value ); ?>"
			/>
		</div>
		<span class="maxCaption"><?php echo esc_html( $max ); ?></span>
	</div>
</div>
PK`x1\��'plugin-fw/templates/fields/checkbox.phpnu�[���<?php
/**
 * Template for displaying the checkbox field
 *
 * @var array $field The field.
 * @package YITH\PluginFramework\Templates\Fields
 */

defined( 'ABSPATH' ) || exit; // Exit if accessed directly.

list ( $field_id, $name, $class, $std, $value, $data, $custom_attributes, $desc_inline ) = yith_plugin_fw_extract( $field, 'id', 'name', 'class', 'std', 'value', 'data', 'custom_attributes', 'desc-inline' );
?>
<input type="checkbox" id="<?php echo esc_attr( $field_id ); ?>"
		name="<?php echo esc_attr( $name ); ?>" value="1"
		class="<?php echo ! empty( $class ) ? esc_attr( $class ) : ''; ?>"
	<?php if ( isset( $std ) ) : ?>
		data-std="<?php echo esc_attr( $std ); ?>"
	<?php endif; ?>
	<?php checked( true, yith_plugin_fw_is_true( $value ) ); ?>
	<?php yith_plugin_fw_html_attributes_to_string( $custom_attributes, true ); ?>
	<?php yith_plugin_fw_html_data_to_string( $data, true ); ?>
/>
<?php if ( isset( $desc_inline ) ) : ?>
	<span class='description inline'><?php echo wp_kses_post( $desc_inline ); ?></span>
<?php endif; ?>
PK`x1\$�]��*plugin-fw/templates/fields/sidebarlist.phpnu�[���<?php
/**
 * Template for displaying the sidebarlist field
 *
 * @var array $field The field.
 * @package YITH\PluginFramework\Templates\Fields
 */

defined( 'ABSPATH' ) || exit; // Exit if accessed directly.

list ( $field_id, $class, $name, $value, $custom_attributes, $data ) = yith_plugin_fw_extract( $field, 'id', 'class', 'name', 'value', 'custom_attributes', 'data' );

$class   = isset( $class ) ? $class : 'yith-plugin-fw-select';
$options = yit_registered_sidebars();
?>
<select id="<?php echo esc_attr( $field_id ); ?>"
		name="<?php echo esc_attr( $name ); ?>"
		class="<?php echo esc_attr( $class ); ?>"

	<?php yith_plugin_fw_html_attributes_to_string( $custom_attributes, true ); ?>
	<?php yith_plugin_fw_html_data_to_string( $data, true ); ?>
>
	<?php foreach ( $options as $key => $item ) : ?>
		<option value="<?php echo esc_attr( $key ); ?>"<?php selected( $key, $value ); ?>><?php echo esc_html( $item ); ?></option>
	<?php endforeach; ?>
</select>
PK`x1\�.�		)plugin-fw/templates/fields/text-array.phpnu�[���<?php
/**
 * Template for displaying the text-array field
 *
 * @var array $field The field.
 * @package YITH\PluginFramework\Templates\Fields
 */

defined( 'ABSPATH' ) || exit; // Exit if accessed directly.

list ( $field_id, $name, $value, $fields, $size, $inline ) = yith_plugin_fw_extract( $field, 'id', 'name', 'value', 'fields', 'size', 'inline' );

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

$value = isset( $value ) && is_array( $value ) ? $value : array();

// Let's build the text array!
$text_array = array();
foreach ( $fields as $field_name => $single_field ) {
	$text_array[ $field_name ]['label'] = $single_field;
	$text_array[ $field_name ]['name']  = "{$name}[{$field_name}]";
	$text_array[ $field_name ]['id']    = "{$field_id}_{$field_name}";
	$text_array[ $field_name ]['value'] = isset( $value[ $field_name ] ) ? $value[ $field_name ] : '';
}

if ( empty( $inline ) ) : ?>

	<table class="yith-plugin-fw-text-array-table">
		<?php foreach ( $text_array as $key => $single ) : ?>
			<tr>
				<td><?php echo esc_html( $single['label'] ); ?></td>
				<td>
					<input type="text" id="<?php echo esc_attr( $single['id'] ); ?>"
							name="<?php echo esc_attr( $single['name'] ); ?>"
							value="<?php echo esc_attr( $single['value'] ); ?>"
						<?php if ( isset( $size ) ) : ?>
							style="width: <?php echo absint( $size ); ?>px"
						<?php endif; ?>
					/>
				</td>
			</tr>
		<?php endforeach ?>
	</table>

<?php else : ?>

	<div class="yith-plugin-fw-text-array-inline">
		<?php foreach ( $text_array as $key => $single ) : ?>
			<div class="yith-single-text"
				<?php if ( isset( $size ) ) : ?>
					style="width: <?php echo absint( $size ); ?>px"
				<?php endif; ?>
			>
				<label for="<?php echo esc_attr( $single['id'] ); ?>"><?php echo esc_html( $single['label'] ); ?></label>
				<input type="text" id="<?php echo esc_attr( $single['id'] ); ?>"
						name="<?php echo esc_attr( $single['name'] ); ?>"
						value="<?php echo esc_attr( $single['value'] ); ?>"
				/>
			</div>
		<?php endforeach ?>
	</div>

<?php endif; ?>
PK`x1\��g���0plugin-fw/templates/fields/multi-colorpicker.phpnu�[���<?php
/**
 * Template for displaying the multi-colorpicker field
 *
 * @var array $field The field.
 * @package YITH\PluginFramework\Templates\Fields
 */

defined( 'ABSPATH' ) || exit; // Exit if accessed directly.

list ( $field_id, $class, $name, $colorpickers, $value ) = yith_plugin_fw_extract( $field, 'id', 'class', 'name', 'colorpickers', 'value' );

wp_enqueue_style( 'wp-color-picker' );

if ( ! isset( $colorpickers ) ) {
	return;
}
$class               = ! empty( $class ) ? $class : 'yith-plugin-fw-multi-colorpicker';
$color_pickers_count = count( $colorpickers );
$items_to_process    = array();
?>
<div class="<?php echo esc_attr( $class ); ?>" id="<?php echo esc_attr( $field_id ); ?>">
	<?php for ( $i = 0; $i < $color_pickers_count; $i ++ ) : ?>
		<?php
		$items = $colorpickers[ $i ];

		// Make sure that we have at least one group.
		if ( isset( $items['id'] ) ) {
			$items_to_process[] = $items;
			$next               = isset( $colorpickers[ $i + 1 ] ) ? $colorpickers[ $i + 1 ] : false;

			if ( isset( $next['id'] ) ) {
				continue;
			}
		} else {
			$items_to_process = $items;
		}

		if ( isset( $items_to_process['desc'] ) ) {
			$group_desc = $items_to_process['desc'];
			unset( $items_to_process['desc'] );
		}
		?>
		<div class="yith-colorpicker-group">
			<?php foreach ( $items_to_process as $color_picker ) : ?>
				<?php
				if ( ! is_array( $color_picker ) ) {
					continue;
				}

				$color_picker['type']  = 'colorpicker';
				$color_picker['title'] = $color_picker['name'];
				$color_picker['name']  = $name . "[{$color_picker['id']}]";
				$color_picker['value'] = isset( $value[ $color_picker['id'] ] ) ? $value[ $color_picker['id'] ] : $color_picker['default'];
				$color_picker['id']    = $name . '_' . $color_picker['id'];
				?>
				<div class="yith-single-colorpicker colorpicker">
					<label for="<?php echo esc_attr( $color_picker['id'] ); ?>"><?php echo esc_html( $color_picker['title'] ); ?></label>
					<?php yith_plugin_fw_get_field( $color_picker, true, false ); ?>
				</div>
			<?php endforeach; ?>

			<?php if ( ! empty( $group_desc ) ) : ?>
				<span class="description"><?php echo wp_kses_post( $group_desc ); ?></span>
			<?php endif; ?>

		</div>
	<?php endfor; ?>
</div>
PK`x1\��m�uu#plugin-fw/templates/fields/html.phpnu�[���<?php
/**
 * Template for displaying the html field
 *
 * @var array $field The field.
 * @package YITH\PluginFramework\Templates\Fields
 */

defined( 'ABSPATH' ) || exit; // Exit if accessed directly.

list ( $html ) = yith_plugin_fw_extract( $field, 'html' );

$html = ! ! $html ? $html : '';

echo $html; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
PK`x1\#�Www#plugin-fw/templates/fields/text.phpnu�[���<?php
/**
 * Template for displaying the text field
 *
 * @var array $field The field.
 * @package YITH\PluginFramework\Templates\Fields
 */

defined( 'ABSPATH' ) || exit; // Exit if accessed directly.

list ( $field_id, $class, $name, $value, $std, $custom_attributes, $data ) = yith_plugin_fw_extract( $field, 'id', 'class', 'name', 'value', 'std', 'custom_attributes', 'data' );

$class = isset( $class ) ? $class : 'yith-plugin-fw-text-input';
?>
<input type="text"
		id="<?php echo esc_attr( $field_id ); ?>"
		name="<?php echo esc_attr( $name ); ?>"
		class="<?php echo esc_attr( $class ); ?>"
		value="<?php echo esc_attr( $value ); ?>"

	<?php if ( isset( $std ) ) : ?>
		data-std="<?php echo esc_attr( $std ); ?>"
	<?php endif; ?>

	<?php yith_plugin_fw_html_attributes_to_string( $custom_attributes, true ); ?>
	<?php yith_plugin_fw_html_data_to_string( $data, true ); ?>
/>


PK`x1\��(hh-plugin-fw/templates/fields/select-buttons.phpnu�[���<?php
/**
 * Template for displaying the select-buttons field
 *
 * @var array $field The field.
 * @package YITH\PluginFramework\Templates\Fields
 */

defined( 'ABSPATH' ) || exit; // Exit if accessed directly.

wp_enqueue_script( 'wc-enhanced-select' );

$field['type'] = 'select';

if ( empty( $field['class'] ) ) {
	unset( $field['class'] );
}
// 'add_all_button_label' is deprecated, use 'add_all_label' instead.
$add_all_label    = $field['add_all_label'] ?? $field['add_all_button_label'] ?? __( 'Add All', 'yith-plugin-fw' );
$remove_all_label = $field['remove_all_label'] ?? __( 'Remove All', 'yith-plugin-fw' );
$default_args     = array(
	'multiple' => true,
	'class'    => 'wc-enhanced-select',
	'buttons'  => array(
		array(
			'name'  => $add_all_label,
			'class' => 'yith-plugin-fw-select-all',
			'data'  => array(
				'select-id' => $field['id'],
			),
		),
		array(
			'name'  => $remove_all_label,
			'class' => 'yith-plugin-fw-deselect-all',
			'data'  => array(
				'select-id' => $field['id'],
			),
		),
	),
);

$field = wp_parse_args( $field, $default_args );

yith_plugin_fw_get_field( $field, true );
PK`x1\���B
B
)plugin-fw/templates/fields/ajax-posts.phpnu�[���<?php
/**
 * Template for displaying the ajax-customers field
 * Note: the stored value is an array if WooCommerce >= 3.0; string otherwise
 *
 * @var array $field The field.
 * @package YITH\PluginFramework\Templates\Fields
 */

defined( 'ABSPATH' ) || exit; // Exit if accessed directly.

yith_plugin_fw_enqueue_enhanced_select();

$default_field = array(
	'id'       => '',
	'name'     => '',
	'class'    => 'yith-post-search',
	'no_value' => false,
	'multiple' => false,
	'data'     => array(),
	'style'    => 'width:400px',
	'value'    => '',
);

foreach ( $default_field as $field_key => $field_value ) {
	if ( empty( $field[ $field_key ] ) ) {
		$field[ $field_key ] = $field_value;
	}
}
unset( $field_key );
unset( $field_value );

list ( $field_id, $class, $no_value, $multiple, $data, $name, $style, $value ) = yith_plugin_fw_extract( $field, 'id', 'class', 'no_value', 'multiple', 'data', 'name', 'style', 'value' );

if ( $no_value ) {
	$value = array();
}

$default_data  = array(
	'action'      => 'yith_plugin_fw_json_search_posts',
	'placeholder' => __( 'Search Posts', 'yith-plugin-fw' ),
	'allow_clear' => false,
);
$data          = wp_parse_args( $data, $default_data );
$show_id       = isset( $data['show_id'] ) && $data['show_id'];
$the_post_type = isset( $data['post_type'] ) ? $data['post_type'] : 'post';

if ( ! isset( $data['show_id'] ) && in_array( $data['action'], array( 'woocommerce_json_search_products', 'woocommerce_json_search_products_and_variations' ), true ) ) {
	$show_id = true; // Set show_id to true by default if this is a WC product search, since it includes the product ID by default.
}

// Separate select2 needed data and other data.
$select2_custom_attributes = array();
$select2_data              = array();
$select2_data_keys         = array( 'placeholder', 'allow_clear', 'action' );
foreach ( $data as $d_key => $d_value ) {
	if ( in_array( $d_key, $select2_data_keys, true ) ) {
		$select2_data[ $d_key ] = $d_value;
	} else {
		$select2_custom_attributes[ 'data-' . $d_key ] = $d_value;
	}
}

// Populate data-selected by value.
$data_selected = array();
if ( ! empty( $value ) ) {
	if ( $multiple ) {
		$value        = is_array( $value ) ? $value : explode( ',', $value );
		$selected_ids = array_filter( array_map( 'absint', $value ) );
	} else {
		$selected_ids = array( absint( $value ) );
	}

	foreach ( $selected_ids as $selected_id ) {
		$the_title = yith_plugin_fw_get_post_formatted_name(
			$selected_id,
			array(
				'post-type' => $the_post_type,
				'show-id'   => $show_id,
			)
		);

		$data_selected[ $selected_id ] = wp_strip_all_tags( $the_title );
	}
}

// Parse $value to string to prevent issue with wc2.6.
$value = is_array( $value ) ? implode( ',', $value ) : $value;
?>
<div class="yith-plugin-fw-select2-wrapper">
	<?php
	if ( function_exists( 'yit_add_select2_fields' ) ) {
		yit_add_select2_fields(
			array(
				'id'                => $field_id,
				'name'              => $name,
				'class'             => $class,
				'data-multiple'     => $multiple,
				'data-placeholder'  => $select2_data['placeholder'],
				'data-allow_clear'  => $select2_data['allow_clear'],
				'data-action'       => $select2_data['action'],
				'custom-attributes' => $select2_custom_attributes,
				'style'             => $style,
				'value'             => $value,
				'data-selected'     => $data_selected,
			)
		);
	}
	?>
</div>
PK`x1\f�E

-plugin-fw/templates/fields/ajax-customers.phpnu�[���<?php
/**
 * Template for displaying the ajax-customers field
 * Note: the stored value is an array if WooCommerce >= 3.0; string otherwise
 *
 * @var array $field The field.
 * @package YITH\PluginFramework\Templates\Fields
 */

defined( 'ABSPATH' ) || exit; // Exit if accessed directly.

yith_plugin_fw_enqueue_enhanced_select();

$default_field = array(
	'id'       => '',
	'name'     => '',
	'class'    => 'yith-customer-search',
	'no_value' => false,
	'multiple' => false,
	'data'     => array(),
	'style'    => 'width:400px',
	'value'    => '',
);

foreach ( $default_field as $field_key => $field_value ) {
	if ( empty( $field[ $field_key ] ) ) {
		$field[ $field_key ] = $field_value;
	}
}
unset( $field_key );
unset( $field_value );

list ( $field_id, $class, $no_value, $multiple, $data, $name, $style, $value ) = yith_plugin_fw_extract( $field, 'id', 'class', 'no_value', 'multiple', 'data', 'name', 'style', 'value' );

if ( $no_value ) {
	$value = array();
}

$default_data = array(
	'action'      => 'woocommerce_json_search_customers',
	'placeholder' => __( 'Search Customers', 'yith-plugin-fw' ),
	'allow_clear' => false,
);
$data         = wp_parse_args( $data, $default_data );
$show_id      = isset( $data['show_id'] ) && $data['show_id'];

// Separate select2 needed data and other data.
$select2_custom_attributes = array();
$select2_data              = array();
$select2_data_keys         = array( 'placeholder', 'allow_clear', 'action' );
foreach ( $data as $d_key => $d_value ) {
	if ( in_array( $d_key, $select2_data_keys, true ) ) {
		$select2_data[ $d_key ] = $d_value;
	} else {
		$select2_custom_attributes[ 'data-' . $d_key ] = $d_value;
	}
}

// Populate data-selected by value.
$data_selected = array();
if ( ! empty( $value ) ) {
	if ( $multiple ) {
		$value = is_array( $value ) ? $value : explode( ',', $value );
		foreach ( $value as $user_id ) {
			$user                      = get_user_by( 'id', $user_id );
			$data_selected[ $user_id ] = sprintf(
			// translators: 1. user display name; 2. user ID; 3. user email.
				esc_html__( '%1$s (#%2$s &ndash; %3$s)', 'woocommerce' ),
				$user->display_name,
				absint( $user->ID ),
				$user->user_email
			);
		}
	} else {
		$user_id                   = absint( $value );
		$user                      = get_user_by( 'id', $user_id );
		$data_selected[ $user_id ] = sprintf(
		// translators: 1. user display name; 2. user ID; 3. user email.
			esc_html__( '%1$s (#%2$s &ndash; %3$s)', 'woocommerce' ),
			$user->display_name,
			absint( $user->ID ),
			$user->user_email
		);
	}
}

// Parse $value to string to prevent issue with wc2.6.
$value = is_array( $value ) ? implode( ',', $value ) : $value;
?>
<div class="yith-plugin-fw-select2-wrapper">
	<?php
	if ( function_exists( 'yit_add_select2_fields' ) ) {
		yit_add_select2_fields(
			array(
				'id'                => $field_id,
				'name'              => $name,
				'class'             => $class,
				'data-multiple'     => $multiple,
				'data-placeholder'  => $select2_data['placeholder'],
				'data-allow_clear'  => $select2_data['allow_clear'],
				'data-action'       => $select2_data['action'],
				'custom-attributes' => $select2_custom_attributes,
				'style'             => $style,
				'value'             => $value,
				'data-selected'     => $data_selected,
			)
		);
	}
	?>
</div>
PK`x1\�8|���*plugin-fw/templates/fields/simple-text.phpnu�[���<?php
/**
 * Template for displaying the simple-text field
 *
 * @var array $field The field.
 * @package YITH\PluginFramework\Templates\Fields
 */

defined( 'ABSPATH' ) || exit; // Exit if accessed directly.

list ( $field_id, $class, $desc, $custom_attributes, $data ) = yith_plugin_fw_extract( $field, 'id', 'class', 'desc', 'custom_attributes', 'data' );

$field_id = ! empty( $field_id ) ? $field_id : '';
$class    = ! empty( $class ) ? $class : '';
?>
<p id="<?php echo esc_attr( $field_id ); ?>"
		class="<?php echo esc_attr( $class ); ?>"

	<?php yith_plugin_fw_html_attributes_to_string( $custom_attributes, true ); ?>
	<?php yith_plugin_fw_html_data_to_string( $data, true ); ?>
>
	<?php echo wp_kses_post( $desc ); ?>
</p>
PK`x1\�;���'plugin-fw/templates/fields/password.phpnu�[���<?php
/**
 * Template for displaying the password field
 *
 * @var array $field The field.
 * @package YITH\PluginFramework\Templates\Fields
 */

defined( 'ABSPATH' ) || exit; // Exit if accessed directly.

list ( $field_id, $class, $name, $std, $value, $custom_attributes, $data ) = yith_plugin_fw_extract( $field, 'id', 'class', 'name', 'std', 'value', 'custom_attributes', 'data' );

$class = isset( $class ) ? $class : 'yith-plugin-fw-text-input';
$class = $class . ' yith-password';
?>
<div class="yith-password-wrapper">
	<input type="password" id="<?php echo esc_attr( $field_id ); ?>"
			name="<?php echo esc_attr( $name ); ?>"
			class="<?php echo esc_attr( $class ); ?>"
			value="<?php echo esc_attr( $value ); ?>"
		<?php if ( isset( $std ) ) : ?>
			data-std="<?php echo esc_attr( $std ); ?>"
		<?php endif; ?>
		<?php yith_plugin_fw_html_attributes_to_string( $custom_attributes, true ); ?>
		<?php yith_plugin_fw_html_data_to_string( $data, true ); ?>
	/>
	<span class="yith-password-eye"></span>
</div>
PK`x1\b��v�	�	%plugin-fw/templates/fields/select.phpnu�[���<?php
/**
 * Template for displaying the select field
 *
 * @var array $field The field.
 * @package YITH\PluginFramework\Templates\Fields
 */

defined( 'ABSPATH' ) || exit; // Exit if accessed directly.

list ( $field_id, $class, $name, $value, $options, $multiple, $placeholder, $buttons, $custom_attributes, $data ) = yith_plugin_fw_extract( $field, 'id', 'class', 'name', 'value', 'options', 'multiple', 'placeholder', 'buttons', 'custom_attributes', 'data' );

$multiple = ! empty( $multiple );
$class    = isset( $class ) ? $class : 'yith-plugin-fw-select';
$name     = isset( $name ) ? $name : '';
$name     = ! ! $name && $multiple ? $name . '[]' : $name;

if ( $multiple && ! is_array( $value ) ) {
	$value = array();
}

?>
<select id="<?php echo esc_attr( $field_id ); ?>"
		name="<?php echo esc_attr( $name ); ?>"
		class="<?php echo esc_attr( $class ); ?>"
		data-value="<?php echo $multiple ? esc_attr( implode( ',', $value ) ) : esc_attr( $value ); ?>"

	<?php if ( $multiple ) : ?>
		multiple
	<?php endif; ?>

	<?php if ( isset( $std ) ) : ?>
		data-std="<?php echo $multiple && is_array( $std ) ? esc_attr( implode( ',', $std ) ) : esc_attr( $std ); ?>"
	<?php endif; ?>

	<?php if ( isset( $placeholder ) ) : ?>
		data-placeholder="<?php echo esc_attr( $placeholder ); ?>"
	<?php endif; ?>

	<?php yith_plugin_fw_html_attributes_to_string( $custom_attributes, true ); ?>
	<?php yith_plugin_fw_html_data_to_string( $data, true ); ?>
>
	<?php foreach ( $options as $key => $item ) : ?>
		<?php if ( is_array( $item ) ) : ?>
			<optgroup label="<?php echo esc_attr( $item['label'] ); ?>">
				<?php foreach ( $item['options'] as $option_key => $option ) : ?>
					<option value="<?php echo esc_attr( $option_key ); ?>" <?php selected( $option_key, $value ); ?>><?php echo esc_html( $option ); ?></option>
				<?php endforeach; ?>
			</optgroup>
		<?php else : ?>
			<option value="<?php echo esc_attr( $key ); ?>"
				<?php
				if ( $multiple ) {
					selected( true, in_array( $key, $value ) ); // phpcs:ignore WordPress.PHP.StrictInArray.MissingTrueStrict
				} else {
					selected( $key, $value );
				}
				?>
			><?php echo esc_html( $item ); ?></option>
		<?php endif; ?>
	<?php endforeach; ?>
</select>

<?php
// Let's add buttons if they are set.
if ( isset( $buttons ) ) {
	$button_field = array(
		'type'    => 'buttons',
		'buttons' => $buttons,
	);
	yith_plugin_fw_get_field( $button_field, true );
}
?>
PK`x1\"_x���$plugin-fw/templates/fields/title.phpnu�[���<?php
/**
 * Template for displaying the title field
 *
 * @var array $field The field.
 * @package YITH\PluginFramework\Templates\Fields
 */

defined( 'ABSPATH' ) || exit; // Exit if accessed directly.

list ( $field_id, $class, $name, $desc, $std, $custom_attributes, $data ) = yith_plugin_fw_extract( $field, 'id', 'class', 'name', 'desc', 'std', 'custom_attributes', 'data' );

$class = isset( $class ) ? $class : 'title';
?>
<h3 id="<?php echo esc_attr( $field_id ); ?>"
		class="<?php echo esc_attr( $class ); ?>"

	<?php yith_plugin_fw_html_attributes_to_string( $custom_attributes, true ); ?>
	<?php yith_plugin_fw_html_data_to_string( $data, true ); ?>
>
	<?php echo wp_kses_post( $desc ); ?>
</h3>
PK`x1\3x�*plugin-fw/templates/fields/text-button.phpnu�[���<?php
/**
 * Template for displaying the text-button field
 *
 * @var array $field The field.
 * @package YITH\PluginFramework\Templates\Fields
 */

defined( 'ABSPATH' ) || exit; // Exit if accessed directly.

list ( $field_id, $class, $name, $value, $std, $buttons, $custom_attributes, $data ) = yith_plugin_fw_extract( $field, 'id', 'class', 'name', 'value', 'std', 'buttons', 'custom_attributes', 'data' );

$backward_compatibility = false;
if ( ! isset( $buttons ) ) {
	$backward_compatibility = true;
	$button_data            = array();

	if ( isset( $field['button-class'] ) ) {
		$button_data['class'] = $field['button-class'];
	}
	if ( isset( $field['button-name'] ) ) {
		$button_data['name'] = $field['button-name'];
	}
	if ( isset( $field['data'] ) ) {
		$button_data['data'] = $field['data'];
	}

	$buttons = array( $button_data );
}
$class = isset( $class ) ? $class : 'yith-plugin-fw-text-input';
?>
<input type="text"
		id="<?php echo esc_attr( $field_id ); ?>"
		name="<?php echo esc_attr( $name ); ?>"
		class="<?php echo esc_attr( $class ); ?>"
		value="<?php echo esc_attr( $value ); ?>"

	<?php if ( isset( $std ) ) : ?>
		data-std="<?php echo esc_attr( $std ); ?>"
	<?php endif; ?>

	<?php yith_plugin_fw_html_attributes_to_string( $custom_attributes, true ); ?>
	<?php
	if ( ! $backward_compatibility ) {
		yith_plugin_fw_html_data_to_string( $data, true );
	}
	?>
/>
<?php
if ( isset( $buttons ) ) {
	$button_field = array(
		'type'    => 'buttons',
		'buttons' => $buttons,
	);
	yith_plugin_fw_get_field( $button_field, true );
}
?>
PK`x1\)r���*plugin-fw/templates/fields/colorpicker.phpnu�[���<?php
/**
 * Template for displaying the colorpicker field
 *
 * @var array $field The field.
 * @package YITH\PluginFramework\Templates\Fields
 */

defined( 'ABSPATH' ) || exit; // Exit if accessed directly.

wp_enqueue_style( 'wp-color-picker' );

list ( $field_id, $name, $class, $default, $alpha_enabled, $value, $data, $custom_attributes ) = yith_plugin_fw_extract( $field, 'id', 'name', 'class', 'default', 'alpha_enabled', 'value', 'data', 'custom_attributes' );

$class         = ! empty( $class ) ? $class : 'yith-plugin-fw-colorpicker color-picker';
$alpha_enabled = isset( $alpha_enabled ) ? $alpha_enabled : true;
$default       = isset( $default ) ? $default : '';
?>
<input type="text"
		name="<?php echo esc_attr( $name ); ?>"
		id="<?php echo esc_attr( $field_id ); ?>"
		class="<?php echo esc_attr( $class ); ?>"
		value="<?php echo esc_attr( $value ); ?>"
		data-alpha-enabled="<?php echo $alpha_enabled ? 'true' : 'false'; ?>"
	<?php if ( $default ) : ?>
		data-default-color="<?php echo esc_attr( $default ); ?>"
	<?php endif ?>
	<?php yith_plugin_fw_html_attributes_to_string( $custom_attributes, true ); ?>
	<?php yith_plugin_fw_html_data_to_string( $data, true ); ?>
/>
PK`x1\Ҋҟ��?plugin-fw/templates/components/resources/action-button-menu.phpnu�[���<?php
/**
 * Template for displaying the action-button-submenu
 *
 * @var array $action_button_menu The menu.
 * @package YITH\PluginFramework\Templates\Components\Resources
 */

defined( 'ABSPATH' ) || exit; // Exit if accessed directly.
?>
<span class="yith-plugin-fw__action-button__menu">
	<?php foreach ( $action_button_menu as $menu_key => $menu_item ) : ?>
		<?php
		$item_name            = isset( $menu_item['name'] ) ? $menu_item['name'] : '';
		$item_url             = isset( $menu_item['url'] ) ? $menu_item['url'] : '';
		$item_class           = isset( $menu_item['class'] ) ? $menu_item['class'] : '';
		$item_attributes      = isset( $menu_item['attributes'] ) ? $menu_item['attributes'] : array();
		$item_data            = isset( $menu_item['data'] ) ? $menu_item['data'] : array();
		$item_open_in_new_tab = isset( $menu_item['open_in_new_tab'] ) ? ! ! $menu_item['open_in_new_tab'] : false;
		$item_confirm_data    = isset( $menu_item['confirm_data'] ) ? $menu_item['confirm_data'] : array();

		$item_classes = array( 'yith-plugin-fw__action-button__menu__item', "yith-plugin-fw__action-button__menu__item--{$menu_key}-key", $item_class );

		if ( isset( $item_confirm_data['title'], $item_confirm_data['message'] ) && ! ! $item_url ) {
			$item_classes[] = 'yith-plugin-fw__require-confirmation-link';
			$item_data      = array_merge( $item_data, $item_confirm_data );
		}

		$item_classes = implode( ' ', array_filter( $item_classes ) );
		?>
		<?php if ( ! ! $item_url ) : ?>
			<a
					class="<?php echo esc_attr( $item_classes ); ?>"
					href="<?php echo esc_url( $item_url ); ?>"
				<?php if ( ! ! $item_open_in_new_tab ) : ?>
					target="_blank"
				<?php endif; ?>
				<?php
				yith_plugin_fw_html_attributes_to_string( $item_attributes, true );
				yith_plugin_fw_html_data_to_string( $item_data, true );
				?>
			><?php echo esc_html( $item_name ); ?></a>
		<?php else : ?>
			<span
					class="<?php echo esc_attr( $item_classes ); ?>"
					<?php
					yith_plugin_fw_html_attributes_to_string( $item_attributes, true );
					yith_plugin_fw_html_data_to_string( $item_data, true );
					?>
			><?php echo esc_html( $item_name ); ?></span>
		<?php endif; ?>

	<?php endforeach; ?>
</span>
PK`x1\dK���	�	0plugin-fw/templates/components/action-button.phpnu�[���<?php
/**
 * Template for displaying the action-button component
 *
 * @var array $component The component.
 * @package YITH\PluginFramework\Templates\Components
 */

defined( 'ABSPATH' ) || exit; // Exit if accessed directly.

list ( $component_id, $class, $the_title, $attributes, $data, $button_action, $icon, $icon_class, $url, $action_button_menu, $confirm_data ) = yith_plugin_fw_extract( $component, 'id', 'class', 'title', 'attributes', 'data', 'action', 'icon', 'icon_class', 'url', 'menu', 'confirm_data' );

$button_action      = isset( $button_action ) ? $button_action : '';
$icon               = isset( $icon ) ? $icon : $button_action;
$icon_class         = isset( $icon_class ) ? $icon_class : "yith-icon yith-icon-{$icon}";
$url                = isset( $url ) ? $url : '#';
$class              = isset( $class ) ? $class : '';
$the_title          = isset( $the_title ) ? $the_title : '';
$action_button_menu = isset( $action_button_menu ) ? $action_button_menu : array();
$confirm_data       = isset( $confirm_data ) ? $confirm_data : array();

$classes = array( 'yith-plugin-fw__action-button', "yith-plugin-fw__action-button--{$button_action}-action", $class );

if ( ! ! $action_button_menu ) {
	$classes[] = 'yith-plugin-fw__action-button--has-menu';
}

$link_classes = array( 'yith-plugin-fw__action-button__link' );
$link_data    = array();
if ( isset( $confirm_data['title'], $confirm_data['message'] ) && '#' !== $url ) {
	$link_classes[] = 'yith-plugin-fw__require-confirmation-link';
	$link_data      = $confirm_data;
}

if ( $the_title ) {
	$link_classes[] = 'yith-plugin-fw__tips';
}

$class      = implode( ' ', $classes );
$link_class = implode( ' ', array_filter( $link_classes ) );
?>
<span
		id="<?php echo esc_attr( $component_id ); ?>"
		class="<?php echo esc_attr( $class ); ?>"
	<?php echo yith_plugin_fw_html_attributes_to_string( $attributes ); ?>
	<?php echo yith_plugin_fw_html_data_to_string( $data ); ?>
	>
<a class="<?php echo esc_attr( $link_class ); ?>"

		href="<?php echo esc_url( $url ); ?>"
	<?php if ( $the_title ) : ?>
		data-tip="<?php echo esc_attr( $the_title ); ?>"
	<?php endif; ?>

	<?php yith_plugin_fw_html_data_to_string( $link_data, true ); ?>
>
	<?php if ( $icon ) : ?>
		<i class="yith-plugin-fw__action-button__icon <?php echo esc_attr( $icon_class ); ?>"></i>
	<?php endif; ?>
</a>
	<?php if ( $action_button_menu ) : ?>
		<?php yith_plugin_fw_include_fw_template( '/components/resources/action-button-menu.php', compact( 'action_button_menu' ) ); ?>
	<?php endif; ?>
</span>
PK`x1\�Ckk9plugin-fw/templates/components/list-table-blank-state.phpnu�[���<?php
/**
 * Template for displaying the list-table-blank-state component
 *
 * @var array $component The component.
 * @package YITH\PluginFramework\Templates\Components
 */

defined( 'ABSPATH' ) || exit; // Exit if accessed directly.

list ( $component_id, $class, $icon, $icon_class, $icon_url, $message, $cta, $attributes, $data ) = yith_plugin_fw_extract( $component, 'id', 'class', 'icon', 'icon_class', 'icon_url', 'message', 'cta', 'attributes', 'data' );
?>
<div id="<?php echo esc_attr( $component_id ); ?>"
		class="yith-plugin-fw__list-table-blank-state <?php echo esc_attr( $class ); ?>"
	<?php echo yith_plugin_fw_html_attributes_to_string( $attributes ); ?>
	<?php echo yith_plugin_fw_html_data_to_string( $data ); ?>
>
	<?php if ( $icon ) : ?>
		<i class="yith-plugin-fw__list-table-blank-state__icon yith-icon yith-icon-<?php echo esc_attr( $icon ); ?>"></i>
	<?php elseif ( $icon_class ) : ?>
		<i class="yith-plugin-fw__list-table-blank-state__icon <?php echo esc_attr( $icon_class ); ?>"></i>
	<?php elseif ( $icon_url ) : ?>
		<img class="yith-plugin-fw__list-table-blank-state__icon" src="<?php echo esc_url( $icon_url ); ?>"/>
	<?php endif; ?>
	<div class="yith-plugin-fw__list-table-blank-state__message"><?php echo wp_kses_post( $message ); ?></div>
	<?php if ( $cta && ! empty( $cta['title'] ) ) : ?>
		<?php
		$cta_url     = ! empty( $cta['url'] ) ? $cta['url'] : '';
		$cta_classes = array( 'yith-plugin-fw__list-table-blank-state__cta', 'yith-plugin-fw__button--primary', 'yith-plugin-fw__button--xxl' );
		if ( ! empty( $cta['class'] ) ) {
			$cta_classes[] = $cta['class'];
		}
		if ( ! empty( $cta['icon'] ) ) {
			$cta_classes[] = 'yith-plugin-fw__button--with-icon';
		}
		$cta_classes = implode( ' ', $cta_classes );
		?>
		<div class="yith-plugin-fw__list-table-blank-state__cta-wrapper">
			<a href="<?php echo esc_url( $cta_url ); ?>" class="<?php echo esc_attr( $cta_classes ); ?>">
				<?php if ( ! empty( $cta['icon'] ) ) : ?>
					<i class="yith-icon yith-icon-<?php echo esc_attr( $cta['icon'] ); ?>"></i>
				<?php endif; ?>
				<?php echo esc_html( $cta['title'] ); ?>
			</a>
		</div>
	<?php endif; ?>
</div>
PK`x1\�1��plugin-fw/yit-plugin.phpnu�[���<?php
/**
 * Define constants and include Plugin Framework files.
 *
 * @package YITH\PluginFramework
 */

defined( 'ABSPATH' ) || exit; // Exit if accessed directly.


! defined( 'YIT_CORE_PLUGIN' ) && define( 'YIT_CORE_PLUGIN', true );
! defined( 'YIT_CORE_PLUGIN_PATH' ) && define( 'YIT_CORE_PLUGIN_PATH', dirname( __FILE__ ) );
! defined( 'YIT_CORE_PLUGIN_URL' ) && define( 'YIT_CORE_PLUGIN_URL', untrailingslashit( plugins_url( '/', __FILE__ ) ) );
! defined( 'YIT_CORE_PLUGIN_TEMPLATE_PATH' ) && define( 'YIT_CORE_PLUGIN_TEMPLATE_PATH', YIT_CORE_PLUGIN_PATH . '/templates' );

require_once 'yit-functions.php';
require_once 'yit-woocommerce-compatibility.php';
require_once 'yit-plugin-registration-hook.php';
require_once 'includes/class-yit-metabox.php';
require_once 'includes/class-yit-plugin-panel.php';
require_once 'includes/class-yit-plugin-panel-woocommerce.php';
require_once 'includes/class-yit-ajax.php';
require_once 'includes/class-yit-plugin-subpanel.php';
require_once 'includes/class-yit-plugin-common.php';
require_once 'includes/class-yit-gradients.php';
require_once 'includes/class-yit-plugin-licence.php';
require_once 'includes/class-yit-theme-licence.php';
require_once 'includes/class-yit-help-desk.php';
require_once 'includes/class-yit-video.php';
require_once 'includes/class-yit-upgrade.php';
require_once 'includes/class-yit-pointers.php';
require_once 'includes/class-yit-icons.php';
require_once 'includes/class-yit-assets.php';
require_once 'includes/class-yith-debug.php';
require_once 'includes/class-yith-dashboard.php';
require_once 'includes/privacy/class-yith-privacy.php';
require_once 'includes/privacy/class-yith-privacy-plugin-abstract.php';
require_once 'includes/class-yith-system-status.php';
require_once 'includes/class-yith-post-type-admin.php';

// Gutenberg Support.
if ( class_exists( 'WP_Block_Type_Registry' ) ) {
	require_once 'includes/builders/gutenberg/class-yith-gutenberg.php';
}

require_once 'includes/builders/elementor/class-yith-elementor.php';

// load from theme folder...
load_textdomain( 'yith-plugin-fw', get_template_directory() . '/core/plugin-fw/yith-plugin-fw-' . apply_filters( 'plugin_locale', determine_locale(), 'yith-plugin-fw' ) . '.mo' ) ||
// ...or from plugin folder.
load_textdomain( 'yith-plugin-fw', dirname( __FILE__ ) . '/languages/yith-plugin-fw-' . apply_filters( 'plugin_locale', determine_locale(), 'yith-plugin-fw' ) . '.mo' );

add_filter( 'plugin_row_meta', 'yit_plugin_fw_row_meta', 20, 4 );

if ( ! function_exists( 'yit_plugin_fw_row_meta' ) ) {
	/**
	 * Show the plugin row meta.
	 *
	 * @param string[] $plugin_meta An array of the plugin's metadata, including the version, author, author URI, and plugin URI.
	 * @param string   $plugin_file Path to the plugin file relative to the plugins directory.
	 * @param array    $plugin_data An array of plugin data.
	 * @param string   $status      Status filter currently applied to the plugin list.
	 *
	 * @return string[] array of the plugin's metadata.
	 * @author Andrea Grillo <andrea.grillo@yithemes.com>
	 * @since  3.0.17
	 */
	function yit_plugin_fw_row_meta( $plugin_meta, $plugin_file, $plugin_data, $status ) {
		if ( false === strstr( $plugin_file, 'yith' ) ) {
			// Not an YITH plugin.
			return $plugin_meta;
		}

		$base_uri = array(
			'live_demo'       => 'https://plugins.yithemes.com/',
			'documentation'   => 'https://docs.yithemes.com/',
			'premium_support' => 'https://yithemes.com/my-account/support/dashboard/',
			'free_support'    => 'https://wordpress.org/support/plugin/',
			'premium_version' => 'https://yithemes.com/themes/plugins/',
		);

		$default = array(
			'live_demo'       => array(
				'label' => _x( 'Live Demo', 'Plugin Row Meta', 'yith-plugin-fw' ),
				'icon'  => 'dashicons  dashicons-laptop',
			),
			'documentation'   => array(
				'label' => _x( 'Documentation', 'Plugin Row Meta', 'yith-plugin-fw' ),
				'icon'  => 'dashicons  dashicons-search',
			),
			'support'         => array(
				'label' => _x( 'Support', 'Plugin Row Meta', 'yith-plugin-fw' ),
				'icon'  => 'dashicons  dashicons-admin-users',
			),
			'premium_version' => array(
				'label' => _x( 'Premium version', 'Plugin Row Meta', 'yith-plugin-fw' ),
				'icon'  => 'dashicons  dashicons-cart',
			),
		);

		$to_show           = array( 'live_demo', 'documentation', 'support', 'premium_version' );
		$new_row_meta_args = apply_filters(
			'yith_show_plugin_row_meta',
			array(
				'to_show' => $to_show,
				'slug'    => '',
			),
			$plugin_meta,
			$plugin_file,
			$plugin_data,
			$status
		);
		$fields            = isset( $new_row_meta_args['to_show'] ) ? $new_row_meta_args['to_show'] : array();
		$slug              = isset( $new_row_meta_args['slug'] ) ? $new_row_meta_args['slug'] : '';
		$is_premium        = isset( $new_row_meta_args['is_premium'] ) ? $new_row_meta_args['is_premium'] : '';
		$utm_campaign      = 'plugin-version-author-uri';
		$utm_source        = $is_premium ? 'wp-premium-dashboard' : 'wp-free-dashboard';

		if ( ! ! $is_premium ) {
			$to_remove = array_search( 'premium_version', $fields, true );

			if ( false !== $to_remove ) {
				unset( $fields[ $to_remove ] );
			}
		}

		foreach ( $fields as $field ) {
			$row_meta = isset( $new_row_meta_args[ $field ] ) ? wp_parse_args( $new_row_meta_args[ $field ], $default[ $field ] ) : $default[ $field ];
			$url      = '';
			$icon     = '';
			$label    = '';

			// Check for Label.
			if ( isset( $row_meta['label'] ) ) {
				$label = $row_meta['label'];
			}

			// Check for Icon.
			if ( isset( $row_meta['icon'] ) ) {
				$icon = $row_meta['icon'];
			}

			// Check for URL.
			if ( isset( $row_meta['url'] ) ) {
				$url = $row_meta['url'];
			} else {
				if ( ! empty( $slug ) ) {
					if ( 'support' === $field ) {
						$support_field = true === $is_premium ? 'premium_support' : 'free_support';
						if ( ! empty( $base_uri[ $support_field ] ) ) {
							$url = $base_uri[ $support_field ];
						}

						if ( 'free_support' === $support_field ) {
							$url = $url . $slug;
						}
					} else {
						if ( isset( $base_uri[ $field ] ) ) {
							$url = apply_filters( "yith_plugin_row_meta_{$field}_url", $base_uri[ $field ] . $slug, $field, $slug, $base_uri );
						}
					}
				}
			}

			if ( ! empty( $url ) && ! empty( $label ) ) {
				$url           = yith_plugin_fw_add_utm_data( $url, $slug, $utm_campaign, $utm_source );
				$plugin_meta[] = sprintf( '<a href="%s" target="_blank"><span class="%s"></span>%s</a>', $url, $icon, $label );
			}
		}

		if ( isset( $plugin_meta[1] ) ) {
			$utm_author_uri = yith_plugin_fw_add_utm_data( $plugin_data['AuthorURI'], $slug, $utm_campaign, $utm_source );
			$plugin_meta[1] = str_replace( $plugin_data['AuthorURI'], $utm_author_uri, $plugin_meta[1] );
		}

		if ( isset( $plugin_meta[2] ) ) {
			$utm_plugin_uri = yith_plugin_fw_add_utm_data( $plugin_data['PluginURI'], $slug, $utm_campaign, $utm_source );
			$plugin_meta[2] = str_replace( $plugin_data['PluginURI'], $utm_plugin_uri, $plugin_meta[2] );
		}

		return $plugin_meta;
	}
}

if ( ! function_exists( 'yith_add_action_links' ) ) {
	/**
	 * Add the action links to plugin admin page
	 *
	 * @param array  $links       The plugin links.
	 * @param string $panel_page  The panel page.
	 * @param bool   $is_premium  Is this plugin premium? True if the plugin is premium. False otherwise.
	 * @param string $plugin_slug The plugin slug.
	 *
	 * @return   array
	 * @author   Andrea Grillo <andrea.grillo@yithemes.com>
	 * @since    1.6.5
	 */
	function yith_add_action_links( $links, $panel_page = '', $is_premium = false, $plugin_slug = '' ) {
		$links = is_array( $links ) ? $links : array();
		if ( ! empty( $panel_page ) ) {
			$links[] = sprintf( '<a href="%s">%s</a>', admin_url( "admin.php?page={$panel_page}" ), _x( 'Settings', 'Action links', 'yith-plugin-fw' ) );
		}

		if ( $is_premium && class_exists( 'YIT_Plugin_Licence' ) ) {
			$links[] = sprintf( '<a href="%s">%s</a>', YIT_Plugin_Licence()->get_license_activation_url( $plugin_slug ), __( 'License', 'yith-plugin-fw' ) );
		}

		return $links;
	}
}
PK`x1\%H}&&(plugin-fw/includes/class-yit-upgrade.phpnu�[���<?php
/**
 * YITH Upgrade Class
 * handle notifications and plugin updates.
 *
 * @class   YIT_Upgrade
 * @package YITH\PluginFramework\Classes
 */

defined( 'ABSPATH' ) || exit; // Exit if accessed directly.

if ( ! class_exists( 'YIT_Upgrade' ) ) {
	/**
	 * YIT_Upgrade class.
	 */
	class YIT_Upgrade {
		/**
		 * The single instance of the class.
		 *
		 * @var YIT_Upgrade
		 */
		private static $instance;

		/**
		 * Singleton implementation.
		 *
		 * @return YIT_Upgrade
		 */
		public static function instance() {
			return ! is_null( self::$instance ) ? self::$instance : self::$instance = new self();
		}

		/**
		 * YIT_Upgrade constructor.
		 */
		private function __construct() {
			// Silence is golden.
		}

		/**
		 * Premium products registration.
		 *
		 * @param string $plugin_slug The plugin slug.
		 * @param string $plugin_init The plugin init file.
		 */
		public function register( $plugin_slug, $plugin_init ) {
			if ( ! function_exists( 'YITH_Plugin_Upgrade' ) ) {
				// Try to load YITH_Plugin_Upgrade class.
				yith_plugin_fw_load_update_and_licence_files();
			}

			if ( function_exists( 'YITH_Plugin_Upgrade' ) && is_callable( array( YITH_Plugin_Upgrade(), 'register' ) ) ) {
				YITH_Plugin_Upgrade()->register( $plugin_slug, $plugin_init );
			}
		}
	}
}

if ( ! function_exists( 'YIT_Upgrade' ) ) {
	/**
	 * Single instance of YIT_Upgrade
	 *
	 * @return YIT_Upgrade
	 */
	function YIT_Upgrade() { // phpcs:ignore WordPress.NamingConventions.ValidFunctionName.FunctionNameInvalid
		return YIT_Upgrade::instance();
	}
}

YIT_Upgrade();
PK`x1\a�cb��*plugin-fw/includes/class-yit-help-desk.phpnu�[���<?php
/**
 * YITH Help Desk static Class.
 *
 * @class   YIT_Plugin_Panel
 * @package YITH\PluginFramework\Classes
 */

defined( 'ABSPATH' ) || exit; // Exit if accessed directly.

if ( ! class_exists( 'YIT_Help_Desk' ) ) {
	/**
	 * Class YIT_Help_Desk
	 *
	 * Contains static utilities for help desk integrations
	 */
	class YIT_Help_Desk {

		/**
		 * URL to contact to query zendesk API
		 * It can be overridden, by defining YIT_HELP_CENTER_DEBUG_URL constant
		 *
		 * @const string API url.
		 */
		const PRODUCTION_URL = 'https://support.yithemes.com/api/v2/help_center/en-us/';

		/**
		 * Retrieves latest articles flagged with a give set of labels (and featured)
		 *
		 * @param  array $labels Array of labest to search; default to empty array (all featured articles will be retrieved).
		 *
		 * @return array Array of articles, formatted as follows:
		 * [
		 *   [
		 *     'title' => 'Lorem ipsum dolor sit amet',
		 *     'url'   => 'https://example.com/lorem-ipsum-dolor-sit-amet'
		 *   ],
		 *   ...
		 * ]
		 * @author Antonio La Rocca <antonio.larocca@yithemes.com>
		 */
		public static function get_latest_articles( $labels = array() ) {
			$latest_articles = get_site_transient( 'yith-plugin-fw-latest-hc-articles' );
			$latest_articles = $latest_articles ? $latest_articles : array();

			$labels = (array) $labels;

			// add featured label.
			if ( ! in_array( 'featured', $labels, true ) ) {
				$labels[] = 'featured';
			}

			// format labels to a valid query string param.
			$labels = implode( ',', array_map( 'sanitize_text_field', $labels ) );

			if ( ! empty( $latest_articles[ $labels ] ) && ! isset( $_GET['yith_plugin_fw_reset_hc_articles'] ) ) { // phpcs:ignore WordPress.Security.NonceVerification.Recommended
				// if we can find articles in cache, return them.
				return $latest_articles[ $labels ];
			} else {
				// otherwise try to retrieve them.
				try {
					$response = self::call(
						'articles.json',
						'GET',
						array(
							'label_names' => $labels,
							'sort_by'     => 'created_at',
							'sort_order'  => 'desc',
							'per_page'    => 5,
						)
					);
				} catch ( Exception $e ) {
					return array();
				}

				// invalid answer from Zendesk server.
				if ( ! isset( $response['articles'] ) || ! is_array( $response['articles'] ) ) {
					return array();
				}

				$formatted_articles = array();

				foreach ( $response['articles'] as $article ) {
					// invalid article from Zendesk server.
					if ( ! isset( $article['html_url'] ) || ! isset( $article['title'] ) ) {
						continue;
					}

					// add valid articles.
					$formatted_articles[] = array(
						'title' => $article['title'],
						'url'   => esc_url( $article['html_url'] ),
					);
				}

				$latest_articles[ $labels ] = $formatted_articles;

				// update cache.
				set_site_transient( 'yith-plugin-fw-latest-hc-articles', $latest_articles, 15 * DAY_IN_SECONDS );

				return $formatted_articles;
			}
		}

		/**
		 * Performs any API request to HC API
		 *
		 * @param string $request Endpoint to call.
		 * @param string $method  HTTP method for the call.
		 * @param array  $query   Query string parameters to include with the request.
		 * @param array  $body    Parameters to send as json_encoded content of the request.
		 * @param array  $args    Array of parameters to pass to {wp_remote_request}.
		 *
		 * @return string Parsed body of the answer; if content is valid JSON string, it will be decoded before return.
		 * @throws Exception When an error occurs with API call; error contains more details about the type of problem.
		 *
		 * @author Antonio La Rocca <antonio.larocca@yithemes.com>
		 */
		public static function call( $request, $method = 'GET', $query = array(), $body = array(), $args = array() ) {
			$destination_url = self::get_url( $request );

			if ( ! empty( $query ) ) {
				$destination_url = add_query_arg( $query, $destination_url );
			}

			$body = 'GET' === $method ? $body : wp_json_encode( $body );

			$args = array_merge(
				array(
					'timeout'            => apply_filters( 'yit_plugin_fw_help_desk_request_timeout', 2 ),
					'reject_unsafe_urls' => true,
					'blocking'           => true,
					'sslverify'          => true,
					'attempts'           => 0,
				),
				$args,
				array(
					'method' => $method,
					'body'   => $body,
				)
			);

			$response = wp_remote_request( $destination_url, $args );

			if ( is_wp_error( $response ) ) {
				throw new Exception( $response->get_error_message(), 400 );
			} else {
				$resp_body = isset( $response['body'] ) ? @json_decode( $response['body'], true ) : ''; // phpcs:ignore WordPress.PHP.NoSilencedErrors.Discouraged
				$status    = isset( $response['response'] ) ? absint( $response['response']['code'] ) : false;

				if ( ! in_array( $status, apply_filters( 'yit_plugin_fw_help_desk_valid_response_statuses', array( 200 ) ), true ) ) {
					throw new Exception( __( 'There was an error with your request; please try again later.', 'yith-plugin-fw' ), $status );
				} else {
					return $resp_body;
				}
			}
		}

		/**
		 * Get formatted url for API calls
		 *
		 * @param  string $request Endpoint to call with url.
		 * @return string Formatted url.
		 *
		 * @author Antonio La Rocca <antonio.larocca@yithemes.com>
		 */
		public static function get_url( $request = '' ) {
			$base_url = self::PRODUCTION_URL;

			if ( defined( 'YIT_HELP_CENTER_DEBUG_URL' ) ) {
				$alternative_url = filter_var( YIT_HELP_CENTER_DEBUG_URL, FILTER_VALIDATE_URL );
				$base_url        = $alternative_url ? $alternative_url : $base_url;
			}

			if ( 0 !== strrpos( $base_url, '/' ) ) {
				$base_url = trailingslashit( $base_url );
			}

			if ( $request ) {
				$base_url .= $request;
			}

			return $base_url;
		}

	}
}
PK`x1\�e������-plugin-fw/includes/class-yit-plugin-panel.phpnu�[���<?php
/**
 * YITH Plugin Panel Class.
 *
 * @class   YIT_Plugin_Panel
 * @package YITH\PluginFramework\Classes
 */

defined( 'ABSPATH' ) || exit; // Exit if accessed directly.

if ( ! class_exists( 'YIT_Plugin_Panel' ) ) {
	/**
	 * Class YIT_Plugin_Panel
	 */
	class YIT_Plugin_Panel {
		/**
		 * Version of the class.
		 *
		 * @var string
		 */
		public $version = '1.0.0';

		/**
		 * List of settings parameters.
		 *
		 * @var array
		 */
		public $settings = array();

		/**
		 * Tab Path Files.
		 *
		 * @var array
		 */
		protected $tabs_path_files;

		/**
		 * Main array of options.
		 *
		 * @var array
		 */
		protected $main_array_options;

		/**
		 * Tabs hierarchy.
		 *
		 * @var array
		 */
		protected $tabs_hierarchy;

		/**
		 * Tabs in WP Pages.
		 *
		 * @var array
		 */
		protected static $panel_tabs_in_wp_pages = array();

		/**
		 * Array of links.
		 *
		 * @var array
		 */
		public $links;

		/**
		 * Are the actions initialized?
		 *
		 * @var bool
		 */
		protected static $actions_initialized = false;

		/**
		 * YIT_Plugin_Panel constructor.
		 *
		 * @param array $args The panel arguments.
		 *
		 * @author Emanuela Castorina <emanuela.castorina@yithemes.it>
		 */
		public function __construct( $args = array() ) {
			if ( ! empty( $args ) ) {
				$default_args = array(
					'parent_slug' => 'edit.php?',
					'page_title'  => __( 'Plugin Settings', 'yith-plugin-fw' ),
					'menu_title'  => __( 'Settings', 'yith-plugin-fw' ),
					'capability'  => 'manage_options',
					'icon_url'    => '',
					'position'    => null,
				);

				$args = apply_filters( 'yit_plugin_fw_panel_option_args', wp_parse_args( $args, $default_args ) );
				if ( isset( $args['parent_page'] ) && 'yit_plugin_panel' === $args['parent_page'] ) {
					$args['parent_page'] = 'yith_plugin_panel';
				}

				$this->settings        = $args;
				$this->tabs_path_files = $this->get_tabs_path_files();

				if ( isset( $this->settings['create_menu_page'] ) && $this->settings['create_menu_page'] ) {
					$this->add_menu_page();
				}

				if ( ! empty( $this->settings['links'] ) ) {
					$this->links = $this->settings['links'];
				}

				add_action( 'admin_init', array( $this, 'register_settings' ) );
				add_action( 'admin_menu', array( $this, 'add_setting_page' ), 20 );
				add_action( 'admin_menu', array( $this, 'add_premium_version_upgrade_to_menu' ), 100 );
				add_action( 'admin_bar_menu', array( $this, 'add_admin_bar_menu' ), 100 );
				add_action( 'admin_init', array( $this, 'add_fields' ) );

				add_action( 'admin_enqueue_scripts', array( $this, 'init_wp_with_tabs' ), 11 );
				add_action( 'admin_init', array( $this, 'maybe_redirect_to_proper_wp_page' ) );

				// Init actions once to prevent multiple initialization.
				static::init_actions();
			}

			add_action( 'admin_enqueue_scripts', array( $this, 'admin_enqueue_scripts' ) );

			add_action( 'yith_plugin_fw_before_yith_panel', array( $this, 'add_plugin_banner' ), 10, 1 );
			add_action( 'wp_ajax_yith_plugin_fw_save_toggle_element', array( $this, 'save_toggle_element_options' ) );
		}

		/**
		 * Is this a custom post type page?
		 *
		 * @return bool
		 * @see      YIT_Plugin_Panel::init_wp_with_tabs
		 * @since    3.4.17
		 */
		protected function is_custom_post_type_page() {
			global $pagenow, $post_type;
			$excluded_post_types = array( 'product', 'page', 'post' );

			return in_array( $pagenow, array( 'post.php', 'post-new.php', 'edit.php' ), true ) && ! in_array( $post_type, $excluded_post_types, true );
		}

		/**
		 * Is this a custom taxonomy page?
		 *
		 * @return bool
		 * @see      YIT_Plugin_Panel::init_wp_with_tabs
		 * @since    3.4.17
		 */
		protected function is_custom_taxonomy_page() {
			global $pagenow, $taxonomy;
			$excluded_taxonomies = array( 'category', 'post_tag', 'product_cat', 'product_tag' );

			return in_array( $pagenow, array( 'edit-tags.php', 'term.php' ), true ) && ! in_array( $taxonomy, $excluded_taxonomies, true );
		}

		/**
		 * Init actions to show YITH Panel tabs in WP Pages
		 *
		 * @author   Leanza Francesco <leanzafrancesco@gmail.com>
		 * @since    3.4.0
		 */
		public function init_wp_with_tabs() {
			if ( ! current_user_can( $this->settings['capability'] ) ) {
				return;
			}

			global $post_type, $taxonomy;
			$tabs = false;

			if ( $this->is_custom_post_type_page() ) {
				$tabs = $this->get_post_type_tabs( $post_type );
			} elseif ( $this->is_custom_taxonomy_page() ) {
				$tabs = $this->get_taxonomy_tabs( $taxonomy );
			}

			$screen          = function_exists( 'get_current_screen' ) ? get_current_screen() : false;
			$is_block_editor = ! ! $screen && is_callable( array( $screen, 'is_block_editor' ) ) && $screen->is_block_editor();

			if ( $tabs ) {
				$current_tab_args = array(
					'page'            => $this->settings['page'],
					'current_tab'     => isset( $tabs['tab'] ) ? $tabs['tab'] : '',
					'current_sub_tab' => isset( $tabs['sub_tab'] ) ? $tabs['sub_tab'] : '',
					'options'         => isset( $tabs['options'] ) ? $tabs['options'] : array(),
				);

				if ( ! $is_block_editor ) {
					wp_enqueue_style( 'yit-plugin-style' );
					wp_enqueue_style( 'yith-plugin-fw-fields' );
					wp_enqueue_script( 'yith-plugin-fw-wp-pages' );
				}

				if ( ! self::$panel_tabs_in_wp_pages ) {
					self::$panel_tabs_in_wp_pages = $current_tab_args;
					if ( ! $is_block_editor ) {
						add_action( 'all_admin_notices', array( $this, 'print_panel_tabs_in_wp_pages' ) );
						add_action( 'admin_footer', array( $this, 'print_panel_tabs_in_wp_pages_end' ) );
					}
					add_filter( 'parent_file', array( $this, 'set_parent_file_to_handle_menu_for_wp_pages' ) );
					add_filter( 'submenu_file', array( $this, 'set_submenu_file_to_handle_menu_for_wp_pages' ), 10, 2 );
				}
			}
		}

		/**
		 * Init actions.
		 *
		 * @since  3.0.0
		 * @author Leanza Francesco <leanzafrancesco@gmail.com>
		 */
		protected static function init_actions() {
			if ( ! static::$actions_initialized ) {
				add_filter( 'admin_body_class', array( __CLASS__, 'add_body_class' ) );

				// Sort plugins by name in YITH Plugins menu.
				add_action( 'admin_menu', array( __CLASS__, 'sort_plugins' ), 90 );
				add_filter( 'add_menu_classes', array( __CLASS__, 'add_menu_class_in_yith_plugin' ) );

				static::$actions_initialized = true;
			}
		}

		/**
		 * Maybe init vars
		 */
		protected function maybe_init_vars() {
			if ( ! isset( $this->main_array_options ) && ! isset( $this->tabs_hierarchy ) ) {
				$options_path             = $this->settings['options-path'];
				$this->main_array_options = array();
				$this->tabs_hierarchy     = array();

				foreach ( $this->settings['admin-tabs'] as $item => $v ) {
					$path = trailingslashit( $options_path ) . $item . '-options.php';
					$path = apply_filters( 'yith_plugin_panel_item_options_path', $path, $options_path, $item, $this );
					if ( file_exists( $path ) ) {
						$_tab                     = include $path;
						$this->main_array_options = array_merge( $this->main_array_options, $_tab );
						$sub_tabs                 = $this->get_sub_tabs( $_tab );
						$current_tab_key          = array_keys( $_tab )[0];

						$this->tabs_hierarchy[ $current_tab_key ] = array_merge(
							array(
								'parent'       => '',
								'has_sub_tabs' => ! ! $sub_tabs,
							),
							$this->get_tab_info_by_options( $_tab[ $current_tab_key ] )
						);

						foreach ( $sub_tabs as $sub_item => $sub_options ) {
							if ( strpos( $sub_item, $item . '-' ) === 0 ) {
								$sub_item = substr( $sub_item, strlen( $item ) + 1 );
							}
							$sub_tab_path = $options_path . '/' . $item . '/' . $sub_item . '-options.php';
							$sub_tab_path = apply_filters( 'yith_plugin_panel_sub_tab_item_options_path', $sub_tab_path, $sub_tabs, $sub_item, $this );

							if ( file_exists( $sub_tab_path ) ) {
								$_sub_tab                 = include $sub_tab_path;
								$this->main_array_options = array_merge( $this->main_array_options, $_sub_tab );

								$current_sub_tab_key                          = array_keys( $_sub_tab )[0];
								$this->tabs_hierarchy[ $current_sub_tab_key ] = array_merge( array( 'parent' => $current_tab_key ), $this->get_tab_info_by_options( $_sub_tab[ $current_sub_tab_key ] ) );
							}
						}
					}
				}
			}
		}

		/**
		 * Add yith-plugin-fw-panel in body classes in Panel pages
		 *
		 * @param string $admin_body_classes Body classes.
		 *
		 * @return string
		 * @author Leanza Francesco <leanzafrancesco@gmail.com>
		 * @since  3.0.0
		 */
		public static function add_body_class( $admin_body_classes ) {
			global $pagenow;
			if ( ( 'admin.php' === $pagenow && strpos( get_current_screen()->id, 'yith-plugins_page' ) !== false ) ) {
				$admin_body_classes = ! substr_count( $admin_body_classes, ' yith-plugin-fw-panel ' ) ? $admin_body_classes . ' yith-plugin-fw-panel ' : $admin_body_classes;
			}

			return $admin_body_classes;
		}

		/**
		 * Add Menu page link
		 *
		 * @author   Andrea Grillo <andrea.grillo@yithemes.com>
		 */
		public function add_menu_page() {
			global $admin_page_hooks;

			if ( ! isset( $admin_page_hooks['yith_plugin_panel'] ) ) {
				$position   = apply_filters( 'yit_plugins_menu_item_position', '62.32' );
				$capability = apply_filters( 'yit_plugin_panel_menu_page_capability', 'manage_options' );
				$show       = apply_filters( 'yit_plugin_panel_menu_page_show', true );

				// YITH text must NOT be translated.
				if ( ! ! $show ) {
					add_menu_page( 'yith_plugin_panel', 'YITH', $capability, 'yith_plugin_panel', null, yith_plugin_fw_get_default_logo(), $position );
					// Prevent issues for backward compatibility.
					$admin_page_hooks['yith_plugin_panel'] = 'yith-plugins'; // phpcs:ignore WordPress.WP.GlobalVariablesOverride.Prohibited
				}
			}
		}

		/**
		 * Remove duplicate submenu
		 * Submenu page hack: Remove the duplicate YIT Plugin link on subpages
		 *
		 * @author   Andrea Grillo <andrea.grillo@yithemes.com>
		 */
		public function remove_duplicate_submenu_page() {
			remove_submenu_page( 'yith_plugin_panel', 'yith_plugin_panel' );
		}

		/**
		 * Enqueue script and styles in admin side
		 * Add style and scripts to administrator
		 *
		 * @author   Emanuela Castorina <emanuela.castorina@yithemes.it>
		 * @author   Leanza Francesco <leanzafrancesco@gmail.com>
		 */
		public function admin_enqueue_scripts() {
			global $pagenow;

			if ( 'admin.php' === $pagenow && strpos( get_current_screen()->id, $this->settings['page'] ) !== false || apply_filters( 'yit_plugin_panel_asset_loading', false ) ) {
				wp_enqueue_media();

				wp_enqueue_style( 'yith-plugin-fw-fields' );
				wp_enqueue_style( 'jquery-ui-style' );
				wp_enqueue_style( 'raleway-font' );

				wp_enqueue_script( 'jquery-ui' );
				wp_enqueue_script( 'jquery-ui-core' );
				wp_enqueue_script( 'jquery-ui-dialog' );
				wp_enqueue_script( 'yith_how_to' );
				wp_enqueue_script( 'yith-plugin-fw-fields' );
			}

			if ( ( 'admin.php' === $pagenow && yith_plugin_fw_is_panel() ) || apply_filters( 'yit_plugin_panel_asset_loading', false ) ) {
				wp_enqueue_media();
				wp_enqueue_style( 'yit-plugin-style' );
				wp_enqueue_script( 'yit-plugin-panel' );
			}

			if ( 'admin.php' === $pagenow && strpos( get_current_screen()->id, 'yith_upgrade_premium_version' ) !== false ) {
				wp_enqueue_style( 'yit-upgrade-to-pro' );
				wp_enqueue_script( 'colorbox' );
			}
		}

		/**
		 * Register Settings
		 * Generate wp-admin settings pages by registering your settings and using a few callbacks to control the output
		 *
		 * @author   Emanuela Castorina <emanuela.castorina@yithemes.it>
		 */
		public function register_settings() {
			register_setting( 'yit_' . $this->settings['parent'] . '_options', 'yit_' . $this->settings['parent'] . '_options', array( $this, 'options_validate' ) );
		}

		/**
		 * Add Setting SubPage
		 * add Setting SubPage to WordPress administrator
		 *
		 * @author   Emanuela Castorina <emanuela.castorina@yithemes.it>
		 */
		public function add_setting_page() {
			$this->settings['icon_url'] = isset( $this->settings['icon_url'] ) ? $this->settings['icon_url'] : '';
			$this->settings['position'] = isset( $this->settings['position'] ) ? $this->settings['position'] : null;
			$parent                     = $this->settings['parent_slug'] . $this->settings['parent_page'];

			if ( ! empty( $parent ) ) {
				add_submenu_page( $parent, $this->settings['page_title'], $this->settings['menu_title'], $this->settings['capability'], $this->settings['page'], array( $this, 'yit_panel' ) );
			} else {
				add_menu_page( $this->settings['page_title'], $this->settings['menu_title'], $this->settings['capability'], $this->settings['page'], array( $this, 'yit_panel' ), $this->settings['icon_url'], $this->settings['position'] );
			}
			// Duplicate Items Hack.
			$this->remove_duplicate_submenu_page();
			do_action( 'yit_after_add_settings_page' );

		}

		/**
		 * Options Validate
		 * a callback function called by Register Settings function
		 *
		 * @param array $field The field to validate.
		 *
		 * @return array validated fields
		 * @author   Emanuela Castorina <emanuela.castorina@yithemes.it>
		 */
		public function options_validate( $field ) {
			$option_key       = ! empty( $field['option_key'] ) ? $field['option_key'] : 'general';
			$yit_options      = $this->get_main_array_options();
			$validated_fields = $this->get_options();

			foreach ( $yit_options[ $option_key ] as $section => $data ) {
				foreach ( $data as $option ) {
					if ( isset( $option['sanitize_call'] ) && isset( $option['id'] ) ) {
						if ( is_array( $option['sanitize_call'] ) ) {
							foreach ( $option['sanitize_call'] as $callback ) {
								if ( is_array( $field[ $option['id'] ] ) ) {
									$validated_fields[ $option['id'] ] = array_map( $callback, $field[ $option['id'] ] );
								} else {
									$validated_fields[ $option['id'] ] = call_user_func( $callback, $field[ $option['id'] ] );
								}
							}
						} else {
							if ( is_array( $field[ $option['id'] ] ) ) {
								$validated_fields[ $option['id'] ] = array_map( $option['sanitize_call'], $field[ $option['id'] ] );
							} else {
								$validated_fields[ $option['id'] ] = call_user_func( $option['sanitize_call'], $field[ $option['id'] ] );
							}
						}
					} else {
						if ( isset( $option['id'] ) ) {
							$value = isset( $field[ $option['id'] ] ) ? $field[ $option['id'] ] : false;
							if ( isset( $option['type'] ) && in_array( $option['type'], array( 'checkbox', 'onoff' ), true ) ) {
								$value = yith_plugin_fw_is_true( $value ) ? 'yes' : 'no';
							}

							if ( ! empty( $option['yith-sanitize-callback'] ) && is_callable( $option['yith-sanitize-callback'] ) ) {
								$value = call_user_func( $option['yith-sanitize-callback'], $value );
							}

							$validated_fields[ $option['id'] ] = $value;
						}
					}
				}
			}

			return $validated_fields;
		}

		/**
		 * Add Premium Version upgrade menu item
		 *
		 * @since    2.9.13
		 * @author   Andrea Grillo <andrea.grillo@yithemes.com>
		 */
		public function add_premium_version_upgrade_to_menu() {
			// Add the How To menu item only if the customer haven't a premium version enabled.
			if ( function_exists( 'YIT_Plugin_Licence' ) && ! ! YIT_Plugin_Licence()->get_products() ) {
				return;
			}

			global $submenu;
			if ( apply_filters( 'yit_show_upgrade_to_premium_version', isset( $submenu['yith_plugin_panel'] ) ) ) {
				$how_to_menu                            = array(
					sprintf( '%s%s%s', '<span id="yith-how-to-premium">', __( 'How to install premium version', 'yith-plugin-fw' ), '</span>' ),
					'install_plugins',
					'//support.yithemes.com/hc/en-us/articles/217840988',
					__( 'How to install premium version', 'yith-plugin-fw' ),
				);
				$submenu['yith_plugin_panel']['how_to'] = $how_to_menu; // phpcs:ignore WordPress.WP.GlobalVariablesOverride.Prohibited
			}
		}

		/**
		 * Print the tabs navigation
		 *
		 * @param array $args Nav Arguments.
		 *
		 * @author   Leanza Francesco <leanzafrancesco@gmail.com>
		 * @since    3.4.0
		 */
		public function print_tabs_nav( $args = array() ) {
			$defaults = array(
				'current_tab'   => $this->get_current_tab(),
				'premium_class' => isset( $this->settings['class'] ) ? 'yith-premium' : 'premium',
				'page'          => $this->settings['page'],
				'parent_page'   => $this->settings['parent_page'],
				'wrapper_class' => 'nav-tab-wrapper',
			);
			$args     = wp_parse_args( $args, $defaults );

			list ( $wrapper_class ) = yith_plugin_fw_extract( $args, 'wrapper_class' );

			$tabs = '<ul class="yith-plugin-fw-tabs">';

			foreach ( $this->settings['admin-tabs'] as $tab => $tab_value ) {
				$tabs .= $this->get_tab_nav( $tab, $tab_value, $args );
			}

			// help tab.
			if ( $this->has_help_tab() ) {
				$tabs .= $this->get_tab_nav( 'help', _x( 'Help', 'Help tab name', 'yith-plugin-fw' ), $args );
			}

			$tabs .= '</ul>';
			?>
			<h2 class="<?php echo esc_attr( $wrapper_class ); ?>">
				<?php echo wp_kses_post( $tabs ); ?>
			</h2>
			<?php
			$this->print_sub_tabs_nav( $args );
		}

		/**
		 * Get HTML for single tab in tabs navigation
		 *
		 * @param string $tab_slug Tab slug.
		 * @param string $tab_name Tab name.
		 * @param array  $args     Nav Arguments.
		 *
		 * @return string Tab HTML
		 *
		 * @author   Antonio La Rocca <antonio.larocca@yithemes.com>
		 * @since    3.4.0
		 */
		protected function get_tab_nav( $tab_slug, $tab_name, $args = array() ) {
			list ( $current_tab, $premium_class, $page, $parent_page ) = yith_plugin_fw_extract( $args, 'current_tab', 'premium_class', 'page', 'parent_page' );

			$active_class = $current_tab === $tab_slug ? ' nav-tab-active' : '';

			if ( 'premium' === $tab_slug ) {
				$active_class .= ' ' . $premium_class;
			}
			$active_class = apply_filters( 'yith_plugin_fw_panel_active_tab_class', $active_class, $current_tab, $tab_slug );

			$first_sub_tab = $this->get_first_sub_tab_key( $tab_slug );
			$sub_tab       = ! ! $first_sub_tab ? $first_sub_tab : '';
			$sub_tabs      = $this->get_sub_tabs( $tab_slug );
			$url           = $this->get_nav_url( $page, $tab_slug, $sub_tab, $parent_page );
			$icon          = ( $current_tab !== $tab_slug && $sub_tabs ) ? '<i class="yith-icon yith-icon-arrow_down"></i>' : '';

			$tab = '<li class="yith-plugin-fw-tab-element">';

			$tab .= '<a class="nav-tab' . esc_attr( $active_class ) . '" href="' . esc_url( $url ) . '">' . wp_kses_post( $tab_name ) . $icon . '</a>';

			if ( $current_tab !== $tab_slug && $sub_tabs ) {
				$tab .= '<div class="nav-subtab-wrap"><ul class="nav-subtab">';
				foreach ( $sub_tabs as $_key => $_tab ) {
					$url = $this->get_nav_url( $page, $tab_slug, $_key );

					$tab .= '<li class="nav-subtab-item"><a href="' . esc_url( $url ) . '">' . wp_kses_post( $_tab['title'] ) . '</a></li>';
				}
				$tab .= '</ul></div>';
			}
			$tab .= '</li>';

			return $tab;
		}

		/**
		 * Retrieve the Nav URL.
		 *
		 * @param string $page        The page.
		 * @param string $tab         The tab.
		 * @param string $sub_tab     The sub-tab.
		 * @param string $parent_page The parent page.
		 *
		 * @return string
		 */
		public function get_nav_url( $page, $tab, $sub_tab = '', $parent_page = '' ) {
			$tab_hierarchy = $this->get_tabs_hierarchy();
			$key           = ! ! $sub_tab ? $sub_tab : $tab;

			if ( isset( $tab_hierarchy[ $key ], $tab_hierarchy[ $key ]['type'], $tab_hierarchy[ $key ]['post_type'] ) && 'post_type' === $tab_hierarchy[ $key ]['type'] ) {
				$url = admin_url( "edit.php?post_type={$tab_hierarchy[$key]['post_type']}" );
			} elseif ( isset( $tab_hierarchy[ $key ], $tab_hierarchy[ $key ]['type'], $tab_hierarchy[ $key ]['taxonomy'] ) && 'taxonomy' === $tab_hierarchy[ $key ]['type'] ) {
				$url = admin_url( "edit-tags.php?taxonomy={$tab_hierarchy[$key]['taxonomy']}" );
			} else {
				$url = ! ! $parent_page ? "?{$parent_page}&" : '?';

				$url .= "page={$page}&tab={$tab}";
				$url .= ! ! $sub_tab ? "&sub_tab={$sub_tab}" : '';

				$url = admin_url( "admin.php{$url}" );
			}

			return apply_filters( 'yith_plugin_fw_panel_url', $url, $page, $tab, $sub_tab, $parent_page );
		}

		/**
		 * Print the Sub-tabs navigation if the current tab has sub-tabs
		 *
		 * @param array $args Sub-tab arguments.
		 *
		 * @author   Leanza Francesco <leanzafrancesco@gmail.com>
		 * @since    3.4.0
		 */
		public function print_sub_tabs_nav( $args = array() ) {
			$defaults = array(
				'current_tab'     => $this->get_current_tab(),
				'page'            => $this->settings['page'],
				'current_sub_tab' => $this->get_current_sub_tab(),
			);
			$args     = wp_parse_args( $args, $defaults );

			/**
			 * The arguments.
			 *
			 * @var string $current_tab     The current tab.
			 * @var string $page            The page.
			 * @var string $current_sub_tab The current sub-tab.
			 */
			extract( $args ); // phpcs:ignore WordPress.PHP.DontExtract.extract_extract

			$sub_tabs = $this->get_sub_tabs( $current_tab );

			if ( $sub_tabs && $current_sub_tab ) {
				include YIT_CORE_PLUGIN_TEMPLATE_PATH . '/panel/sub-tabs-nav.php';
			}
		}

		/**
		 * Show a tabbed panel to setting page
		 * a callback function called by add_setting_page => add_submenu_page
		 *
		 * @author   Emanuela Castorina <emanuela.castorina@yithemes.it>
		 */
		public function yit_panel() {
			$yit_options = $this->get_main_array_options();
			$wrap_class  = isset( $this->settings['class'] ) ? $this->settings['class'] : '';

			$option_key         = $this->get_current_option_key();
			$custom_tab_options = $this->get_custom_tab_options( $yit_options, $option_key );
			?>
			<div class="wrap <?php echo esc_attr( $wrap_class ); ?>">
				<div id="icon-themes" class="icon32"><br/></div>
				<?php
				do_action( 'yith_plugin_fw_before_yith_panel', $this->settings['page'] );

				$this->print_tabs_nav();

				if ( $custom_tab_options ) {
					$this->print_custom_tab( $custom_tab_options );

					return;
				} elseif ( $this->is_help_tab() ) {
					$this->print_help_tab();

					return;
				}

				$panel_content_class = apply_filters( 'yit_admin_panel_content_class', 'yit-admin-panel-content-wrap' );
				?>
				<div id="wrap" class="yith-plugin-fw plugin-option yit-admin-panel-container">
					<?php $this->message(); ?>
					<div class="<?php echo esc_attr( $panel_content_class ); ?>">
						<h2><?php echo wp_kses_post( $this->get_tab_title() ); ?></h2>
						<?php if ( $this->is_show_form() ) : ?>
							<form id="yith-plugin-fw-panel" method="post" action="options.php">
								<?php do_settings_sections( 'yit' ); ?>
								<p>&nbsp;</p>
								<?php settings_fields( 'yit_' . $this->settings['parent'] . '_options' ); ?>
								<input type="hidden" name="<?php echo esc_attr( $this->get_name_field( 'option_key' ) ); ?>"
										value="<?php echo esc_attr( $option_key ); ?>"/>
								<input type="submit" class="button-primary"
										value="<?php esc_attr_e( 'Save Changes', 'yith-plugin-fw' ); ?>"
										style="float:left;margin-right:10px;"/>
							</form>
							<form method="post">
								<?php
								$reset_warning = __( 'If you continue with this action, you will reset all options in this page.', 'yith-plugin-fw' ) . '\n' . __( 'Are you sure?', 'yith-plugin-fw' );
								?>
								<input type="hidden" name="yit-action" value="reset"/>
								<input type="submit" name="yit-reset" class="button-secondary"
										value="<?php esc_attr_e( 'Reset to default', 'yith-plugin-fw' ); ?>"
										onclick="return confirm('<?php echo esc_attr( $reset_warning ); ?>');"/>
							</form>
							<p>&nbsp;</p>
						<?php endif ?>
					</div>
				</div>
			</div>
			<?php
		}

		/**
		 * Check if is a custom tab.
		 *
		 * @param array  $options    The tab options.
		 * @param string $option_key The option key.
		 *
		 * @return string|false The action to be fired of false if it's not a custom tab.
		 */
		public function is_custom_tab( $options, $option_key ) {
			$option = $this->get_custom_tab_options( $options, $option_key );

			return ! ! $option && isset( $option['action'] ) ? $option['action'] : false;
		}

		/**
		 * Retrieve the custom tab options.
		 *
		 * @param array  $options    The tab options.
		 * @param string $option_key The option key.
		 *
		 * @return array|false The options of the custom tab; false if it's not a custom tab.
		 */
		public function get_custom_tab_options( $options, $option_key ) {
			$option = ! empty( $options[ $option_key ] ) ? current( $options[ $option_key ] ) : false;

			if ( $option && isset( $option['type'], $option['action'] ) && 'custom_tab' === $option['type'] && ! empty( $option['action'] ) ) {
				return $option;
			} else {
				return false;
			}
		}

		/**
		 * Retrieve the tab type by its options.
		 *
		 * @param array $tab_options The tab options.
		 *
		 * @return string
		 */
		public function get_tab_type_by_options( $tab_options ) {
			$first         = ! ! $tab_options && is_array( $tab_options ) ? current( $tab_options ) : array();
			$type          = isset( $first['type'] ) ? $first['type'] : 'options';
			$special_types = array( 'post_type', 'taxonomy', 'custom_tab', 'multi_tab' );

			return in_array( $type, $special_types, true ) ? $type : 'options';
		}

		/**
		 * Retrieve the tab info by its options.
		 *
		 * @param array $tab_options The tab options.
		 *
		 * @return string[]
		 */
		public function get_tab_info_by_options( $tab_options ) {
			$type  = $this->get_tab_type_by_options( $tab_options );
			$first = ! ! $tab_options && is_array( $tab_options ) ? current( $tab_options ) : array();
			$info  = $first;

			$info['type'] = $type;
			if ( 'post_type' === $type ) {
				$info['post_type'] = isset( $first['post_type'] ) ? $first['post_type'] : '';
			} elseif ( 'taxonomy' === $type ) {
				$info['taxonomy'] = isset( $first['taxonomy'] ) ? $first['taxonomy'] : '';
			}

			return $info;
		}

		/**
		 * Fire the action to print the custom tab.
		 *
		 * @param array $options The options of the custom tab.
		 *
		 * @author   Andrea Grillo <andrea.grillo@yithemes.com>
		 * @author   Leanza Francesco <leanzafrancesco@gmail.com>
		 */
		public function print_custom_tab( $options ) {
			if ( is_string( $options ) ) {
				// Backward compatibility.
				$options = array( 'action' => $options );
			}
			$current_tab     = $this->get_current_tab();
			$current_sub_tab = $this->get_current_sub_tab();

			include YIT_CORE_PLUGIN_TEMPLATE_PATH . '/panel/custom-tab.php';
		}

		/**
		 * Check if panel has help tab
		 *
		 * @return bool Whether panel has help tab or no.
		 */
		public function has_help_tab() {
			return ! empty( $this->settings['help_tab'] ) && ( ! $this->is_free() || ! empty( $this->settings['help_tab']['show_on_free'] ) );
		}

		/**
		 * Checks whether current tab is special Help Tab
		 *
		 * @return bool Whether current tab is Help Tab
		 * @author Antonio La Rocca <antonio.larocca@yithemes.com>
		 */
		public function is_help_tab() {
			return 'help' === $this->get_current_tab();
		}

		/**
		 * Prints special Help Tab
		 *
		 * @return void
		 * @author Antonio La Rocca <antonio.larocca@yithemes.com>
		 */
		public function print_help_tab() {
			$options      = isset( $this->settings['help_tab'] ) ? $this->settings['help_tab'] : array();
			$plugin_title = isset( $this->settings['plugin_title'] ) ? $this->settings['plugin_title'] : $this->settings['page_title'];

			if ( 0 !== strpos( $plugin_title, 'YITH' ) ) {
				$plugin_title = "YITH {$plugin_title}";
			}

			// parse options.
			$options = wp_parse_args(
				$options,
				array(
					// translators: 1. Plugin name.
					'title'              => sprintf( _x( 'Thank you for purchasing %s!', 'Help tab default title', 'yith-plugin-fw' ), $plugin_title ),
					'description'        => _x( 'We want to help you to enjoy a wonderful experience with all our products.', 'Help tab default description', 'yith-plugin-fw' ),
					'main_video'         => false,
					'playlists'          => array(),
					'hc_url'             => 'https://support.yithemes.com/hc/',
					'doc_url'            => $this->settings['plugin_slug'] ? 'https://docs.yithemes.com/' . $this->settings['plugin_slug'] . '/' : '',
					'submit_ticket_url'  => 'https://yithemes.com/my-account/support/submit-a-ticket/',
					'show_hc_articles'   => true,
					'show_submit_ticket' => true,
				)
			);

			// add campaign parameters to url.
			if ( $this->settings['plugin_slug'] ) {
				$utm_medium   = $this->settings['plugin_slug'];
				$utm_source   = 'wp-premium-dashboard';
				$utm_campaign = 'help-tab';

				$campaign_urls = array(
					'submit_ticket_url',
					'doc_url',
				);

				foreach ( $campaign_urls as $campaign_url ) {
					if ( empty( $options[ $campaign_url ] ) ) {
						continue;
					}

					$options[ $campaign_url ] = yith_plugin_fw_add_utm_data( $options[ $campaign_url ], $utm_medium, $utm_campaign, $utm_source );
				}
			}

			// set template variables.
			$current_tab     = $this->get_current_tab();
			$current_sub_tab = $this->get_current_sub_tab();
			$latest_articles = $this->settings['plugin_slug'] ? YIT_Help_Desk::get_latest_articles( $this->settings['plugin_slug'] ) : array();

			include YIT_CORE_PLUGIN_TEMPLATE_PATH . '/panel/help-tab.php';
		}

		/**
		 * Add sections and fields to setting panel.
		 * Read all options and show sections and fields.
		 *
		 * @author   Emanuela Castorina <emanuela.castorina@yithemes.it>
		 */
		public function add_fields() {
			$yit_options = $this->get_main_array_options();
			$option_key  = $this->get_current_option_key();

			if ( ! $option_key || ! isset( $yit_options[ $option_key ] ) ) {
				return;
			}

			foreach ( $yit_options[ $option_key ] as $section => $data ) {
				add_settings_section( "yit_settings_{$option_key}_{$section}", $this->get_section_title( $section ), $this->get_section_description( $section ), 'yit' );
				foreach ( $data as $option ) {
					if ( isset( $option['id'] ) && isset( $option['type'] ) && isset( $option['name'] ) ) {
						add_settings_field(
							'yit_setting_' . $option['id'],
							$option['name'],
							array( $this, 'render_field' ),
							'yit',
							"yit_settings_{$option_key}_{$section}",
							array(
								'option'    => $option,
								'label_for' => $this->get_id_field( $option['id'] ),
							)
						);
					}
				}
			}
		}

		/**
		 * Add the tabs to admin bar menu.
		 * Set all tabs of settings page on wp admin bar.
		 *
		 * @author Emanuela Castorina <emanuela.castorina@yithemes.it>
		 */
		public function add_admin_bar_menu() {
			global $wp_admin_bar;

			if ( ! current_user_can( 'manage_options' ) ) {
				return;
			}

			if ( ! empty( $this->settings['admin_tabs'] ) ) {
				foreach ( $this->settings['admin-tabs'] as $item => $title ) {
					$wp_admin_bar->add_menu(
						array(
							'parent' => $this->settings['parent'],
							'title'  => $title,
							'id'     => $this->settings['parent'] . '-' . $item,
							'href'   => admin_url( 'themes.php' ) . '?page=' . $this->settings['parent_page'] . '&tab=' . $item,
						)
					);
				}
			}
		}

		/**
		 * Get current tab.
		 * Retrieve the id of tab shown, return general is the current tab is not defined.
		 *
		 * @return string|false
		 * @author Emanuela Castorina <emanuela.castorina@yithemes.it>
		 */
		public function get_current_tab() {
			// phpcs:disable WordPress.Security.NonceVerification.Recommended
			$admin_tabs = array_keys( $this->settings['admin-tabs'] );

			if ( ! isset( $_GET['page'] ) || $_GET['page'] !== $this->settings['page'] ) {
				return false;
			}
			if ( isset( $_REQUEST['yit_tab_options'] ) ) {
				return sanitize_key( wp_unslash( $_REQUEST['yit_tab_options'] ) );
			} elseif ( isset( $_GET['tab'] ) ) {
				return sanitize_key( wp_unslash( $_GET['tab'] ) );
			} elseif ( isset( $admin_tabs[0] ) ) {
				return $admin_tabs[0];
			} else {
				return 'general';
			}
			// phpcs:enable
		}

		/**
		 * Get the current sub-tab.
		 *
		 * @return string The key of the sub-tab if exists, empty string otherwise.
		 * @author   Leanza Francesco <leanzafrancesco@gmail.com>
		 * @since    3.4.0
		 */
		public function get_current_sub_tab() {
			// phpcs:disable WordPress.Security.NonceVerification.Recommended
			$sub_tabs = $this->get_sub_tabs();
			$sub_tab  = isset( $_REQUEST['sub_tab'] ) ? sanitize_key( wp_unslash( $_REQUEST['sub_tab'] ) ) : '';

			if ( $sub_tabs ) {
				if ( $sub_tab && ! isset( $sub_tabs[ $sub_tab ] ) || ! $sub_tab ) {
					$sub_tab = current( array_keys( $sub_tabs ) );
				}
			} else {
				$sub_tab = '';
			}

			return $sub_tab;
			// phpcs:enable
		}

		/**
		 * Return the option key related to the current page.
		 * for sub-tabbed tabs, it will return the current sub-tab.
		 * fot normal tabs, it will return the current tab.
		 *
		 * @return string the current sub-tab, if exists; the current tab otherwise.
		 * @author   Leanza Francesco <leanzafrancesco@gmail.com>
		 * @since    3.4.0
		 */
		public function get_current_option_key() {
			$current_tab     = $this->get_current_tab();
			$current_sub_tab = $this->get_current_sub_tab();

			if ( ! $current_tab ) {
				return false;
			}

			return $current_sub_tab ? $current_sub_tab : $current_tab;
		}

		/**
		 * Message
		 * define an array of message and show the content od message if
		 * is find in the query string
		 *
		 * @author Emanuela Castorina <emanuela.castorina@yithemes.it>
		 */
		public function message() {
			// phpcs:disable WordPress.Security.NonceVerification.Recommended
			$message = array(
				'element_exists'   => $this->get_message( '<strong>' . __( 'The element you have entered already exists. Please, enter another name.', 'yith-plugin-fw' ) . '</strong>', 'error', false ),
				'saved'            => $this->get_message( '<strong>' . __( 'Settings saved', 'yith-plugin-fw' ) . '.</strong>', 'updated', false ),
				'reset'            => $this->get_message( '<strong>' . __( 'Settings reset', 'yith-plugin-fw' ) . '.</strong>', 'updated', false ),
				'delete'           => $this->get_message( '<strong>' . __( 'Element deleted correctly.', 'yith-plugin-fw' ) . '</strong>', 'updated', false ),
				'updated'          => $this->get_message( '<strong>' . __( 'Element updated correctly.', 'yith-plugin-fw' ) . '</strong>', 'updated', false ),
				'settings-updated' => $this->get_message( '<strong>' . __( 'Element updated correctly.', 'yith-plugin-fw' ) . '</strong>', 'updated', false ),
				'imported'         => $this->get_message( '<strong>' . __( 'Database imported correctly.', 'yith-plugin-fw' ) . '</strong>', 'updated', false ),
				'no-imported'      => $this->get_message( '<strong>' . __( 'An error has occurred during import. Please try again.', 'yith-plugin-fw' ) . '</strong>', 'error', false ),
				'file-not-valid'   => $this->get_message( '<strong>' . __( 'The added file is not valid.', 'yith-plugin-fw' ) . '</strong>', 'error', false ),
				'cant-import'      => $this->get_message( '<strong>' . __( 'Sorry, import is disabled.', 'yith-plugin-fw' ) . '</strong>', 'error', false ),
				'ord'              => $this->get_message( '<strong>' . __( 'Sorting successful.', 'yith-plugin-fw' ) . '</strong>', 'updated', false ),
			);

			foreach ( $message as $key => $value ) {
				if ( isset( $_GET[ $key ] ) ) {
					echo wp_kses_post( $message[ $key ] );
				}
			}
			// phpcs:enable
		}

		/**
		 * Get Message
		 * return html code of message
		 *
		 * @param string $message The message.
		 * @param string $type    The type of message (can be 'error' or 'updated').
		 * @param bool   $echo    Set to true if you want to print the message.
		 *
		 * @return string
		 * @author Emanuela Castorina <emanuela.castorina@yithemes.it>
		 */
		public function get_message( $message, $type = 'error', $echo = true ) {
			$message = '<div id="message" class="' . esc_attr( $type ) . ' fade"><p>' . wp_kses_post( $message ) . '</p></div>';
			if ( $echo ) {
				echo wp_kses_post( $message );
			}

			return $message;
		}

		/**
		 * Get Tab Path Files
		 * return an array with file names of tabs
		 *
		 * @return array
		 * @author   Emanuela Castorina <emanuela.castorina@yithemes.it>
		 */
		public function get_tabs_path_files() {
			$option_files_path = $this->settings['options-path'] . '/';
			$tabs              = array();

			foreach ( (array) glob( $option_files_path . '*.php' ) as $filename ) {
				preg_match( '/(.*)-options\.(.*)/', basename( $filename ), $filename_parts );

				if ( ! isset( $filename_parts[1] ) ) {
					continue;
				}

				$tab          = $filename_parts[1];
				$tabs[ $tab ] = $filename;
			}

			return $tabs;
		}

		/**
		 * Get main array options
		 * return an array with all options defined on options-files
		 *
		 * @return array
		 * @author   Emanuela Castorina <emanuela.castorina@yithemes.it>
		 */
		public function get_main_array_options() {
			$this->maybe_init_vars();

			return $this->main_array_options;
		}

		/**
		 * Get tab hierarchy.
		 *
		 * @return array
		 */
		public function get_tabs_hierarchy() {
			$this->maybe_init_vars();

			return $this->tabs_hierarchy;
		}

		/**
		 * Return the sub-tabs array of a specific tab
		 *
		 * @param array|bool $_tab the tab; if not set it'll be the current tab.
		 *
		 * @since    3.4.0
		 * @author   Leanza Francesco <leanzafrancesco@gmail.com>
		 * @return array Sub-tabs array.
		 */
		public function get_sub_tabs( $_tab = false ) {
			if ( false === $_tab ) {
				$_tab = $this->get_current_tab();
			}

			if ( is_string( $_tab ) ) {
				$main_array_options  = $this->get_main_array_options();
				$current_tab_options = isset( $main_array_options[ $_tab ] ) ? $main_array_options[ $_tab ] : array();
				if ( $current_tab_options ) {
					$_tab = array( $_tab => $current_tab_options );
				}
			}

			$_tab_options = ! ! $_tab && is_array( $_tab ) ? current( $_tab ) : false;
			$_first       = ! ! $_tab_options && is_array( $_tab_options ) ? current( $_tab_options ) : false;
			if ( $_first && is_array( $_first ) && isset( $_first['type'] ) && 'multi_tab' === $_first['type'] && ! empty( $_first['sub-tabs'] ) ) {
				return $_first['sub-tabs'];
			}

			return array();
		}

		/**
		 * Retrieve the first sub-tab key.
		 *
		 * @param string|false $_tab The tab; if not set it'll be the current tab.
		 *
		 * @return false|mixed
		 */
		public function get_first_sub_tab_key( $_tab = false ) {
			$key = false;
			if ( is_string( $_tab ) ) {
				$main_array_options  = $this->get_main_array_options();
				$current_tab_options = isset( $main_array_options[ $_tab ] ) ? $main_array_options[ $_tab ] : array();
				if ( $current_tab_options ) {
					$_tab = array( $_tab => $current_tab_options );
				}
			}
			$sub_tabs = $this->get_sub_tabs( $_tab );
			if ( $sub_tabs ) {
				$key = current( array_keys( $sub_tabs ) );
			}

			return $key;
		}


		/**
		 * Set an array with all default options
		 * put default options in an array
		 *
		 * @return array
		 * @author Emanuela Castorina <emanuela.castorina@yithemes.it>
		 */
		public function get_default_options() {
			$yit_options     = $this->get_main_array_options();
			$default_options = array();

			foreach ( $yit_options as $tab => $sections ) {
				foreach ( $sections as $section ) {
					foreach ( $section as $id => $value ) {
						if ( isset( $value['std'] ) && isset( $value['id'] ) ) {
							$default_options[ $value['id'] ] = $value['std'];
						}
					}
				}
			}

			unset( $yit_options );

			return $default_options;
		}


		/**
		 * Get the title of the tab
		 * return the title of tab
		 *
		 * @return string
		 * @author   Emanuela Castorina <emanuela.castorina@yithemes.it>
		 */
		public function get_tab_title() {
			$yit_options = $this->get_main_array_options();
			$option_key  = $this->get_current_option_key();

			foreach ( $yit_options[ $option_key ] as $sections => $data ) {
				foreach ( $data as $option ) {
					if ( isset( $option['type'] ) && 'title' === $option['type'] ) {
						return $option['name'];
					}
				}
			}

			return '';
		}

		/**
		 * Get the title of the section
		 * return the title of section
		 *
		 * @param string $section The section.
		 *
		 * @return string
		 * @author   Emanuela Castorina <emanuela.castorina@yithemes.it>
		 */
		public function get_section_title( $section ) {
			$yit_options = $this->get_main_array_options();
			$option_key  = $this->get_current_option_key();

			foreach ( $yit_options[ $option_key ][ $section ] as $option ) {
				if ( isset( $option['type'] ) && 'section' === $option['type'] ) {
					return $option['name'];
				}
			}

			return '';
		}

		/**
		 * Get the description of the section
		 * return the description of section if is set
		 *
		 * @param string $section The section.
		 *
		 * @return string
		 * @author   Emanuela Castorina <emanuela.castorina@yithemes.it>
		 */
		public function get_section_description( $section ) {
			$yit_options = $this->get_main_array_options();
			$option_key  = $this->get_current_option_key();

			foreach ( $yit_options[ $option_key ][ $section ] as $option ) {
				if ( isset( $option['type'] ) && 'section' === $option['type'] && isset( $option['desc'] ) ) {
					return '<p>' . $option['desc'] . '</p>';
				}
			}

			return '';
		}


		/**
		 * Show form when necessary
		 * return true if 'showform' is not defined
		 *
		 * @return bool
		 * @author Emanuela Castorina <emanuela.castorina@yithemes.it>
		 */
		public function is_show_form() {
			$yit_options = $this->get_main_array_options();
			$option_key  = $this->get_current_option_key();

			foreach ( $yit_options[ $option_key ] as $sections => $data ) {
				foreach ( $data as $option ) {
					if ( ! isset( $option['type'] ) || 'title' !== $option['type'] ) {
						continue;
					}
					if ( isset( $option['showform'] ) ) {
						return $option['showform'];
					} else {
						return true;
					}
				}
			}
		}

		/**
		 * Get name field
		 * return a string with the name of the input field
		 *
		 * @param string $name The name.
		 *
		 * @return string
		 * @author Emanuela Castorina <emanuela.castorina@yithemes.it>
		 */
		public function get_name_field( $name = '' ) {
			return 'yit_' . $this->settings['parent'] . '_options[' . $name . ']';
		}

		/**
		 * Get id field
		 * return a string with the id of the input field
		 *
		 * @param string $id The ID.
		 *
		 * @return string
		 * @author Emanuela Castorina <emanuela.castorina@yithemes.it>
		 */
		public function get_id_field( $id ) {
			return 'yit_' . $this->settings['parent'] . '_options_' . $id;
		}


		/**
		 * Render the field showed in the setting page
		 * include the file of the option type, if file do not exists
		 * return a text area
		 *
		 * @param array $param The parameters.
		 *
		 * @return void
		 * @author Emanuela Castorina <emanuela.castorina@yithemes.it>
		 */
		public function render_field( $param ) {
			if ( ! empty( $param ) && isset( $param ['option'] ) ) {
				$option     = $param['option'];
				$db_options = $this->get_options();

				$custom_attributes = array();

				if ( ! empty( $option['custom_attributes'] ) && is_array( $option['custom_attributes'] ) ) {
					foreach ( $option['custom_attributes'] as $attribute => $attribute_value ) {
						$custom_attributes[] = esc_attr( $attribute ) . '="' . esc_attr( $attribute_value ) . '"';
					}
				}

				$custom_attributes = implode( ' ', $custom_attributes );
				$std               = isset( $option['std'] ) ? $option['std'] : '';
				$db_value          = ( isset( $db_options[ $option['id'] ] ) ) ? $db_options[ $option['id'] ] : $std;

				if ( isset( $option['deps'] ) ) {
					$deps = $option['deps'];
				}

				if ( 'on-off' === $option['type'] ) {
					$option['type'] = 'onoff';
				}

				$field_template_path = yith_plugin_fw_get_field_template_path( $option );
				if ( $field_template_path ) {
					$field_container_path = apply_filters( 'yith_plugin_fw_panel_field_container_template_path', YIT_CORE_PLUGIN_TEMPLATE_PATH . '/panel/panel-field-container.php', $option );
					file_exists( $field_container_path ) && include $field_container_path;
				} else {
					do_action( "yit_panel_{$option['type']}", $option, $db_value, $custom_attributes );
				}
			}
		}

		/**
		 * Get options from db
		 * return the options from db, if the options aren't defined in the db,
		 * get the default options ad add the options in the db
		 *
		 * @return array
		 * @author Emanuela Castorina <emanuela.castorina@yithemes.it>
		 */
		public function get_options() {
			$options = get_option( 'yit_' . $this->settings['parent'] . '_options' );
			if ( false === $options || ( isset( $_REQUEST['yit-action'] ) && 'reset' === sanitize_key( wp_unslash( $_REQUEST['yit-action'] ) ) ) ) { // phpcs:ignore WordPress.Security.NonceVerification.Recommended
				$options = $this->get_default_options();
			}

			return $options;
		}

		/**
		 * Show a box panel with specific content in two columns as a new woocommerce type
		 *
		 * @param array $args The arguments.
		 *
		 * @author   Emanuela Castorina      <emanuela.castorina@yithemes.com>
		 */
		public static function add_infobox( $args = array() ) {
			if ( ! empty( $args ) ) {
				extract( $args ); // phpcs:ignore WordPress.PHP.DontExtract.extract_extract
				require YIT_CORE_PLUGIN_TEMPLATE_PATH . '/panel/boxinfo.php';
			}
		}

		/**
		 * Show a box panel with specific content in two columns as a new woocommerce type
		 *
		 * @param array $args Arguments.
		 *
		 * @return   void
		 * @deprecated 3.0.12 Do nothing! Method left to prevent Fatal Error if called directly
		 */
		public static function add_videobox( $args = array() ) {

		}

		/**
		 * Fire the action to print the custom tab
		 *
		 * @return void
		 * @deprecated 3.0.12 Do nothing! Method left to prevent Fatal Error if called directly
		 */
		public function print_video_box() {

		}

		/**
		 * Sort plugins by name in YITH Plugins menu.
		 *
		 * @since    3.0.0
		 * @author   Leanza Francesco <leanzafrancesco@gmail.com>
		 */
		public static function sort_plugins() {
			global $submenu;
			if ( ! empty( $submenu['yith_plugin_panel'] ) ) {
				$sorted_plugins = $submenu['yith_plugin_panel'];

				usort(
					$sorted_plugins,
					function ( $a, $b ) {
						return strcmp( current( $a ), current( $b ) );
					}
				);

				$submenu['yith_plugin_panel'] = $sorted_plugins; // phpcs:ignore WordPress.WP.GlobalVariablesOverride.Prohibited
			}
		}

		/**
		 * Add menu class in YITH Plugins menu.
		 *
		 * @param array $menu The menu.
		 *
		 * @return array
		 * @since    3.0.0
		 * @author   Leanza Francesco <leanzafrancesco@gmail.com>
		 */
		public static function add_menu_class_in_yith_plugin( $menu ) {
			global $submenu;

			if ( ! empty( $submenu['yith_plugin_panel'] ) ) {
				$item_count = count( $submenu['yith_plugin_panel'] );
				$columns    = absint( $item_count / 20 ) + 1;
				$columns    = max( 1, min( $columns, 3 ) );
				$columns    = apply_filters( 'yith_plugin_fw_yith_plugins_menu_columns', $columns, $item_count );

				if ( $columns > 1 ) {
					$class = "yith-plugin-fw-menu-$columns-columns";
					foreach ( $menu as $order => $top ) {
						if ( 'yith_plugin_panel' === $top[2] ) {
							$c                 = $menu[ $order ][4];
							$menu[ $order ][4] = add_cssclass( $class, $c );
							break;
						}
					}
				}
			}

			return $menu;
		}

		/**
		 * Check if inside the admin tab there's the premium tab to
		 * check if the plugin is a free or not
		 *
		 * @author Emanuela Castorina
		 */
		public function is_free() {
			return ( ! empty( $this->settings['admin-tabs'] ) && isset( $this->settings['admin-tabs']['premium'] ) );
		}

		/**
		 * Add plugin banner.
		 *
		 * @param string $page The page.
		 */
		public function add_plugin_banner( $page ) {
			if ( $page !== $this->settings['page'] || ! isset( $this->settings['class'] ) ) {
				return;
			}

			?>
			<?php if ( $this->is_free() && isset( $this->settings['plugin_slug'] ) ) : ?>
				<?php
				$rate_link = apply_filters( 'yith_plugin_fw_rate_url', 'https://wordpress.org/support/plugin/' . $this->settings['plugin_slug'] . '/reviews/#new-post' );
				?>
				<h1 class="notice-container"></h1>
				<div class="yith-plugin-fw-banner">
					<h1><?php echo esc_html( $this->settings['page_title'] ); ?></h1>
				</div>
				<div class="yith-plugin-fw-rate">
					<?php
					printf(
						'<strong>%s</strong> %s <a href="%s" target="_blank"><u>%s</u> <span class="dashicons dashicons-star-filled"></span><span class="dashicons dashicons-star-filled"></span><span class="dashicons dashicons-star-filled"></span><span class="dashicons dashicons-star-filled"></span><span class="dashicons dashicons-star-filled"></span></a>  %s',
						esc_html__( 'We need your support', 'yith-plugin-fw' ),
						esc_html__( 'to keep updating and improving the plugin. Please,', 'yith-plugin-fw' ),
						esc_url( $rate_link ),
						esc_html__( 'help us by leaving a good review', 'yith-plugin-fw' ),
						esc_html__( ':) Thanks!', 'yith-plugin-fw' )
					);
					?>
				</div>
			<?php else : ?>
				<h1 class="notice-container"></h1>
				<div class="yith-plugin-fw-banner">
					<h1><?php echo esc_html( $this->settings['page_title'] ); ?></h1>
				</div>
			<?php endif ?>
			<?php
		}

		/**
		 * Add additional element after print the field.
		 *
		 * @param array $field The field.
		 *
		 * @author Emanuela Castorina
		 * @since  3.2
		 */
		public function add_yith_ui( $field ) {
			global $pagenow;

			$screen = function_exists( 'get_current_screen' ) ? get_current_screen() : false;

			if ( empty( $this->settings['class'] ) || ! isset( $field['type'] ) ) {
				return;
			}
			if ( 'admin.php' === $pagenow && $screen && strpos( $screen->id, $this->settings['page'] ) !== false ) {
				switch ( $field['type'] ) {
					case 'datepicker':
						echo '<span class="yith-icon yith-icon-calendar yith-icon--right-overlay"></span>';
						break;
					default:
						break;
				}
			}
		}

		/**
		 * Get post type tabs.
		 *
		 * @param string $post_type The post type.
		 *
		 * @return array
		 */
		public function get_post_type_tabs( $post_type ) {
			$tabs = array();

			foreach ( $this->get_tabs_hierarchy() as $key => $info ) {
				if ( isset( $info['type'], $info['post_type'] ) && 'post_type' === $info['type'] && $post_type === $info['post_type'] ) {
					if ( ! empty( $info['parent'] ) ) {
						$tabs = array(
							'tab'     => $info['parent'],
							'sub_tab' => $key,
							'options' => $info,
						);
					} else {
						$tabs = array(
							'tab'     => $key,
							'options' => $info,
						);
					}
					break;
				}
			}

			$panel_page = isset( $this->settings['page'] ) ? $this->settings['page'] : 'general';

			return apply_filters( "yith_plugin_fw_panel_{$panel_page}_get_post_type_tabs", $tabs, $post_type );
		}

		/**
		 * Get the taxonomy tabs.
		 *
		 * @param string $taxonomy The taxonomy.
		 *
		 * @return array
		 */
		public function get_taxonomy_tabs( $taxonomy ) {
			$tabs = array();

			foreach ( $this->get_tabs_hierarchy() as $key => $info ) {
				if ( isset( $info['type'], $info['taxonomy'] ) && 'taxonomy' === $info['type'] && $taxonomy === $info['taxonomy'] ) {
					if ( ! empty( $info['parent'] ) ) {
						$tabs = array(
							'tab'     => $info['parent'],
							'sub_tab' => $key,
							'options' => $info,
						);
					} else {
						$tabs = array(
							'tab'     => $key,
							'options' => $info,
						);
					}
					break;
				}
			}

			$panel_page = isset( $this->settings['page'] ) ? $this->settings['page'] : 'general';

			return apply_filters( "yith_plugin_fw_panel_{$panel_page}_get_taxonomy_tabs", $tabs, $taxonomy );
		}


		/**
		 * If the panel page is a WP Page, this will redirect you to the correct page
		 * useful when a Post Type (Taxonomy) is the first tab of your panel, so when you open your panel it'll open the Post Type (Taxonomy) list
		 *
		 * @since    3.4.0
		 * @author   Leanza Francesco <leanzafrancesco@gmail.com>
		 */
		public function maybe_redirect_to_proper_wp_page() {
			// phpcs:disable WordPress.Security.NonceVerification.Recommended
			global $pagenow;
			if (
				'admin.php' === $pagenow && isset( $_GET['page'] ) && $this->settings['page'] === $_GET['page']
				&&
				! $this->is_custom_taxonomy_page() && ! $this->is_custom_post_type_page()
				&&
				! isset( $_REQUEST['yith-plugin-fw-panel-skip-redirect'] )
			) {
				$url = $this->get_nav_url( $this->settings['page'], $this->get_current_tab(), $this->get_current_sub_tab() );
				if ( strpos( $url, 'edit.php' ) !== false || strpos( $url, 'edit-tags.php' ) !== false ) {
					wp_safe_redirect( add_query_arg( array( 'yith-plugin-fw-panel-skip-redirect' => 1 ), $url ) );
					exit;
				}
			}
			// phpcs:enable
		}

		/**
		 * Print the Panel tabs and sub-tabs navigation in WP pages
		 * Important: this opens a wrapper <div> that will be closed through YIT_Plugin_Panel::print_panel_tabs_in_post_edit_page_end()
		 *
		 * @since    3.4.0
		 * @author   Leanza Francesco <leanzafrancesco@gmail.com>
		 */
		public function print_panel_tabs_in_wp_pages() {
			if ( self::$panel_tabs_in_wp_pages ) {
				global $pagenow;

				wp_enqueue_style( 'yit-plugin-style' );
				wp_enqueue_script( 'yit-plugin-panel' );

				$wrap_class = isset( $this->settings['class'] ) ? $this->settings['class'] : '';
				$options    = isset( self::$panel_tabs_in_wp_pages['options'] ) ? self::$panel_tabs_in_wp_pages['options'] : array();

				$options_to_classes   = array( 'type', 'post_type', 'taxonomy' );
				$page_wrapper_classes = array(
					'yith-plugin-fw-wp-page-wrapper',
					isset( $options['wrapper-class'] ) ? $options['wrapper-class'] : '',
				);

				if ( in_array( $pagenow, array( 'edit.php', 'edit-tags.php' ), true ) ) {
					$options_to_classes[]   = 'wp-list-style';
					$page_wrapper_classes[] = 'yith-plugin-ui';
				}

				foreach ( $options_to_classes as $key ) {
					if ( isset( $options[ $key ] ) ) {
						$option                 = $options[ $key ];
						$page_wrapper_classes[] = "yith-plugin-ui--{$option}-{$key}";
					}
				}

				$page_wrapper_classes = implode( ' ', array_filter( $page_wrapper_classes ) );

				echo '<div class="' . esc_attr( $page_wrapper_classes ) . '">';

				echo '<div class="' . esc_attr( $wrap_class ) . '">';

				$this->add_plugin_banner( $this->settings['page'] );
				$this->print_tabs_nav( self::$panel_tabs_in_wp_pages );
				echo '</div>';

				if ( self::$panel_tabs_in_wp_pages['current_sub_tab'] ) {
					echo '<div class="yith-plugin-fw-wp-page__sub-tab-wrap">';
				}
			}
		}

		/**
		 * Close the wrapper opened in YIT_Plugin_Panel::print_panel_tabs_in_wp_pages()
		 *
		 * @since    3.4.0
		 * @author   Leanza Francesco <leanzafrancesco@gmail.com>
		 */
		public function print_panel_tabs_in_wp_pages_end() {
			if ( self::$panel_tabs_in_wp_pages ) {

				if ( self::$panel_tabs_in_wp_pages['current_sub_tab'] ) {
					echo '</div><!-- /yith-plugin-fw-wp-page__sub-tab-wrap -->';
				}

				echo '</div><!-- /yith-plugin-fw-wp-page-wrapper -->';
			}
		}

		/**
		 * Set the parent page to handle menu for WP Pages.
		 *
		 * @param string $parent_file The parent file.
		 *
		 * @return string
		 */
		public function set_parent_file_to_handle_menu_for_wp_pages( $parent_file ) {
			if ( self::$panel_tabs_in_wp_pages ) {
				return 'yith_plugin_panel';
			}

			return $parent_file;
		}

		/**
		 * Set the submenu page to handle menu for WP Pages.
		 *
		 * @param string $submenu_file The submenu file.
		 * @param string $parent_file  The parent file.
		 *
		 * @return mixed
		 */
		public function set_submenu_file_to_handle_menu_for_wp_pages( $submenu_file, $parent_file ) {
			if ( self::$panel_tabs_in_wp_pages ) {
				return $this->settings['page'];
			}

			return $submenu_file;
		}

		/**
		 * Save the toggle element options.
		 *
		 * @return bool
		 */
		public function save_toggle_element_options() {
			return true;
		}
	}
}
PK`x1\�Aü�%�%>plugin-fw/includes/builders/gutenberg/class-yith-gutenberg.phpnu�[���<?php
/**
 * YITH Gutenberg Class
 * handle Gutenberg blocks and shortcodes.
 *
 * @class   YITH_Gutenberg
 * @package YITH\PluginFramework\Classes
 */

defined( 'ABSPATH' ) || exit; // Exit if accessed directly.

if ( ! class_exists( 'YITH_Gutenberg' ) ) {
	/**
	 * YITH_Gutenberg class.
	 *
	 * @author  Andrea Grillo <andrea.grillo@yithemes.com>
	 */
	class YITH_Gutenberg {
		/**
		 * The single instance of the class.
		 *
		 * @var YITH_Gutenberg
		 */
		private static $instance;

		/**
		 * Registered blocks
		 *
		 * @var array
		 */
		private $registered_blocks = array();

		/**
		 * Blocks to register
		 *
		 * @var array
		 */
		private $to_register_blocks = array();

		/**
		 * Blocks args
		 *
		 * @var array
		 */
		private $blocks_args = array();

		/**
		 * Block category slug
		 *
		 * @var string
		 */
		private $category_slug = 'yith-blocks';

		/**
		 * Singleton implementation.
		 *
		 * @return YITH_Gutenberg
		 */
		public static function instance() {
			return ! is_null( self::$instance ) ? self::$instance : self::$instance = new self();
		}

		/**
		 * YITH_Gutenberg constructor.
		 */
		private function __construct() {
			add_action( 'init', array( $this, 'init' ) );
			add_action( 'init', array( $this, 'register_blocks' ), 30 );
			add_action( 'enqueue_block_editor_assets', array( $this, 'enqueue_block_editor_assets' ) );
			add_action( 'wp_ajax_yith_plugin_fw_gutenberg_do_shortcode', array( $this, 'do_shortcode' ) );
			add_action( 'wc_ajax_yith_plugin_fw_gutenberg_do_shortcode', array( $this, 'do_shortcode' ) );
		}

		/**
		 * Initialization
		 */
		public function init() {

		}

		/**
		 * Enqueue scripts for gutenberg
		 */
		public function enqueue_block_editor_assets() {
			$ajax_url   = function_exists( 'WC' ) ? add_query_arg( 'wc-ajax', 'yith_plugin_fw_gutenberg_do_shortcode', trailingslashit( site_url() ) ) : admin_url( 'admin-ajax.php' );
			$gutenberg  = array( 'ajaxurl' => $ajax_url );
			$asset_file = include YIT_CORE_PLUGIN_PATH . '/dist/gutenberg/index.asset.php';

			$gutenberg_assets_url = YIT_CORE_PLUGIN_URL . '/dist/gutenberg';

			wp_register_script(
				'yith-gutenberg',
				$gutenberg_assets_url . '/index.js',
				$asset_file['dependencies'],
				$asset_file['version'],
				true
			);

			wp_localize_script( 'yith-gutenberg', 'yith_gutenberg_ajax', $gutenberg ); // Deprecated! Kept for backward compatibility.
			wp_localize_script( 'yith-gutenberg', 'yith_gutenberg', $this->blocks_args ); // Deprecated! Kept for backward compatibility.

			wp_localize_script( 'yith-gutenberg', 'yithGutenberg', $gutenberg );
			wp_localize_script( 'yith-gutenberg', 'yithGutenbergBlocks', $this->blocks_args );

			wp_enqueue_script( 'yith-gutenberg' );
			wp_enqueue_style( 'yith-gutenberg', $gutenberg_assets_url . '/style-index.css', array(), yith_plugin_fw_get_version() );
		}

		/**
		 * Add blocks to gutenberg editor.
		 */
		public function register_blocks() {
			$block_args = array();
			foreach ( $this->to_register_blocks as $block => $args ) {
				if ( isset( $args['style'] ) ) {
					$block_args['style'] = $args['style'];
				}

				if ( isset( $args['script'] ) ) {
					$block_args['script'] = $args['script'];
				}

				if ( register_block_type( "yith/{$block}", $block_args ) ) {
					$this->registered_blocks[] = $block;
				}
			}

			if ( ! empty( $this->registered_blocks ) ) {
				global $wp_version;

				$categories_hook = version_compare( $wp_version, '5.8-beta', '>=' ) ? 'block_categories_all' : 'block_categories';
				add_filter( $categories_hook, array( $this, 'block_category' ), 10, 1 );
			}
		}

		/**
		 * Add block category
		 *
		 * @param array $categories The block categories.
		 *
		 * @return array The block categories.
		 */
		public function block_category( $categories ) {
			return array_merge(
				$categories,
				array(
					array(
						'slug'  => 'yith-blocks',
						'title' => _x( 'YITH', '[gutenberg]: Category Name', 'yith-plugin-fw' ),
					),
				)
			);
		}

		/**
		 * Add new blocks to Gutenberg
		 *
		 * @param string|array $blocks The blocks to be added.
		 *
		 * @return bool True if the blocks was successfully added, false otherwise.
		 */
		public function add_blocks( $blocks ) {
			$added = false;
			if ( ! empty( $blocks ) ) {
				$added = true;
				if ( is_array( $blocks ) ) {
					$this->to_register_blocks = array_merge( $this->to_register_blocks, $blocks );
				} else {
					$this->to_register_blocks[] = $blocks;
				}
			}

			return $added;
		}

		/**
		 * Return an array with the registered blocks
		 *
		 * @return array
		 */
		public function get_registered_blocks() {
			return $this->registered_blocks;
		}

		/**
		 * Return an array with the blocks to register
		 *
		 * @return array
		 */
		public function get_to_register_blocks() {
			return $this->to_register_blocks;
		}

		/**
		 * Return an array with the block(s) arguments
		 *
		 * @param string $block_key The block key.
		 *
		 * @return array|false
		 */
		public function get_block_args( $block_key = 'all' ) {
			if ( 'all' === $block_key ) {
				return $this->blocks_args;
			} elseif ( isset( $this->blocks_args[ $block_key ] ) ) {
				return $this->blocks_args[ $block_key ];
			}

			return false;
		}

		/**
		 * Retrieve the default category slug
		 *
		 * @return string
		 */
		public function get_default_blocks_category_slug() {
			return $this->category_slug;
		}

		/**
		 * Set the block arguments
		 *
		 * @param array $args The block arguments.
		 */
		public function set_block_args( $args ) {
			foreach ( $args as $block => $block_args ) {

				// Add Default Keywords.
				$default_keywords = array( 'yith' );
				if ( ! empty( $block_args['shortcode_name'] ) ) {
					$default_keywords[] = $block_args['shortcode_name'];
				}

				$args[ $block ]['keywords'] = ! empty( $args[ $block ]['keywords'] ) ? array_merge( $args[ $block ]['keywords'], $default_keywords ) : $default_keywords;

				if ( count( $args[ $block ]['keywords'] ) > 3 ) {
					$args[ $block ]['keywords'] = array_slice( $args[ $block ]['keywords'], 0, 3 );
				}

				if ( empty( $block_args['category'] ) ) {
					// Add the YITH block category.
					$args[ $block ]['category'] = $this->get_default_blocks_category_slug();
				}

				$args[ $block ]['do_shortcode'] = isset( $block_args['do_shortcode'] ) ? ! ! $block_args['do_shortcode'] : true;

				if ( isset( $block_args['attributes'] ) ) {
					foreach ( $block_args['attributes'] as $attr_name => $attributes ) {

						if ( ! empty( $attributes['options'] ) && is_array( $attributes['options'] ) ) {
							$options = array();
							foreach ( $attributes['options'] as $v => $l ) {
								// Prepare options array for react component.
								$options[] = array(
									'label' => $l,
									'value' => $v,
								);
							}
							$args[ $block ]['attributes'][ $attr_name ]['options'] = $options;
						}

						if ( empty( $attributes['remove_quotes'] ) ) {
							$args[ $block ]['attributes'][ $attr_name ]['remove_quotes'] = false;
						}

						// Special Requirements for Block Type.
						if ( ! empty( $attributes['type'] ) ) {
							$args[ $block ]['attributes'][ $attr_name ]['controlType'] = $attributes['type'];
							$args[ $block ]['attributes'][ $attr_name ]['type']        = 'string';

							switch ( $attributes['type'] ) {
								case 'select':
									// Add default value for multiple.
									if ( ! isset( $attributes['multiple'] ) ) {
										$args[ $block ]['attributes'][ $attr_name ]['multiple'] = false;
									}

									if ( ! empty( $attributes['multiple'] ) ) {
										$args[ $block ]['attributes'][ $attr_name ]['type'] = 'array';
									}
									break;

								case 'color':
								case 'colorpicker':
									if ( ! isset( $attributes['disableAlpha'] ) ) {
										// Disable alpha gradient for color picker.
										$args[ $block ]['attributes'][ $attr_name ]['disableAlpha'] = true;
									}
									break;

								case 'number':
									$args[ $block ]['attributes'][ $attr_name ]['type'] = 'integer';
									break;

								case 'toggle':
								case 'checkbox':
									$args[ $block ]['attributes'][ $attr_name ]['type'] = 'boolean';
									break;
							}
						}
					}
				}
			}

			$this->blocks_args = array_merge( $this->blocks_args, $args );
		}

		/**
		 * Get a do_shortcode in ajax call to show block preview
		 **/
		public function do_shortcode() {
			// phpcs:disable WordPress.Security.NonceVerification
			$current_action = current_action();
			$shortcode      = ! empty( $_REQUEST['shortcode'] ) ? wp_unslash( $_REQUEST['shortcode'] ) : ''; // phpcs:ignore WordPress.Security.ValidatedSanitizedInput.InputNotSanitized

			if ( ! apply_filters( 'yith_plugin_fw_gutenberg_skip_shortcode_sanitize', false ) ) {
				$shortcode = sanitize_text_field( stripslashes( $shortcode ) );
			}

			ob_start();

			do_action( 'yith_plugin_fw_gutenberg_before_do_shortcode', $shortcode, $current_action );
			echo do_shortcode( apply_filters( 'yith_plugin_fw_gutenberg_shortcode', $shortcode, $current_action ) );
			do_action( 'yith_plugin_fw_gutenberg_after_do_shortcode', $shortcode, $current_action );

			$html = ob_get_clean();

			wp_send_json(
				array(
					'html' => $html,
				)
			);

			// phpcs:enable
		}
	}
}

if ( ! function_exists( 'YITH_Gutenberg' ) ) {
	/**
	 * Single instance of YITH_Gutenberg
	 *
	 * @return YITH_Gutenberg
	 */
	function YITH_Gutenberg() { // phpcs:ignore WordPress.NamingConventions.ValidFunctionName.FunctionNameInvalid
		return YITH_Gutenberg::instance();
	}
}

YITH_Gutenberg();
PK`x1\�`jM�7�7Eplugin-fw/includes/builders/elementor/class-yith-elementor-widget.phpnu�[���<?php
/**
 * Elementor Widget Skeleton Class.
 *
 * @class   YITH_Elementor_Widget
 * @package YITH\PluginFramework\Classes
 * @since   3.6.0
 */

use Elementor\Controls_Manager;
use Elementor\Plugin;
use Elementor\Widget_Base;

defined( 'ABSPATH' ) || exit; // Exit if accessed directly.

if ( ! class_exists( 'YITH_Elementor_Widget' ) ) {
	/**
	 * YITH_Elementor_Widget class.
	 *
	 * @author  Leanza Francesco <leanzafrancesco@gmail.com>
	 */
	class YITH_Elementor_Widget extends Widget_Base {

		/**
		 * YITH Data.
		 *
		 * @var array
		 */
		protected $yith_data = array();

		/**
		 * Widget constructor.
		 *
		 * @param array      $data Widget data. Default is an empty array.
		 * @param array|null $args Optional. Widget default arguments. Default is null.
		 *
		 * @throws Exception If arguments are missing when initializing a full widget instance.
		 */
		public function __construct( $data = array(), $args = null ) {
			$this->yith_data = $args['yith_data'];
			$this->init_yith_data();

			parent::__construct( $data, $args );
		}

		/**
		 * Retrieve an YITH prop.
		 *
		 * @param string            $prop    The prop.
		 * @param bool|string|array $default Default value.
		 *
		 * @return mixed|string
		 */
		public function get_yith_prop( $prop, $default = null ) {
			if ( is_null( $default ) ) {
				$defaults = $this->get_yith_data_defaults();
				$default  = array_key_exists( $prop, $defaults ) ? $defaults[ $prop ] : false;
			}

			return array_key_exists( $prop, $this->yith_data ) ? $this->yith_data[ $prop ] : $default;
		}

		/**
		 * Get element name.
		 *
		 * @return string
		 */
		public function get_name() {
			return $this->get_yith_prop( 'name', '' );
		}

		/**
		 * Get the element title.
		 *
		 * @return string
		 */
		public function get_title() {
			return $this->get_yith_prop( 'title', '' );
		}

		/**
		 * Get the element icon.
		 *
		 * @return string
		 */
		public function get_icon() {
			return $this->get_yith_prop( 'icon', 'yith-icon yith-icon-yith' );
		}

		/**
		 * Get widget categories.
		 *
		 * @return array Widget categories.
		 */
		public function get_categories() {
			return array( 'yith' ) + (array) $this->get_yith_prop( 'categories', array() );
		}

		/**
		 * Register the widget controls.
		 */
		public function _register_controls() { // phpcs:ignore
			$options     = $this->get_yith_prop( 'options' );
			$description = $this->get_yith_prop( 'description' );

			if ( $options ) {
				$this->start_controls_section(
					'options',
					array(
						'label' => $this->get_yith_prop( 'section_title' ),
						'tab'   => Controls_Manager::TAB_CONTENT,
					)
				);

				if ( $description ) {
					$this->add_control(
						'description',
						array(
							'type'            => Controls_Manager::RAW_HTML,
							'raw'             => $description,
							'content_classes' => 'yith-plugin-fw-elementor-widget-description',
						)
					);
				}

				foreach ( $options as $option ) {
					if ( ! isset( $option['type'] ) ) {
						continue;
					}

					$this->add_control( $option['yith_key'], $option );
				}

				$this->end_controls_section();
			} elseif ( $description ) {
				$this->start_controls_section(
					'options',
					array(
						'label' => $this->get_title(),
						'tab'   => Controls_Manager::TAB_CONTENT,
					)
				);
				$this->add_control(
					'description',
					array(
						'type'            => Controls_Manager::RAW_HTML,
						'raw'             => $description,
						'content_classes' => 'yith-plugin-fw-elementor-widget-description',
					)
				);

				$this->end_controls_section();
			}
		}

		/**
		 * Render the content of the widget
		 */
		protected function render() {
			$settings         = $this->get_settings_for_display();
			$option_values    = $this->get_yith_option_values();
			$options          = $this->get_yith_prop( 'options' );
			$shortcode_name   = $this->get_yith_prop( 'shortcode_name' );
			$do_shortcode     = ! ! $this->get_yith_prop( 'do_shortcode' );
			$render_cb        = $this->get_yith_prop( 'render_cb' );
			$editor_render_cb = $this->get_yith_prop( 'editor_render_cb' );
			$empty_message    = $this->get_yith_prop( 'empty_message', '' );

			if ( Plugin::$instance->editor->is_edit_mode() && $editor_render_cb && is_callable( $editor_render_cb ) ) {
				echo call_user_func( $editor_render_cb, $option_values ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
			} elseif ( $render_cb && is_callable( $render_cb ) ) {
				echo call_user_func( $render_cb, $option_values ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
			} else {
				$shortcode_attrs = array();

				foreach ( $options as $option ) {
					$display_key = $option['yith_display_key'];
					$value       = isset( $option_values[ $display_key ] ) ? $option_values[ $display_key ] : null;
					$show        = $this->is_control_visible( $option, $settings );

					if ( $show && ! is_null( $value ) && '' !== $value ) {
						$value             = is_array( $value ) ? implode( ',', $value ) : $value;
						$shortcode_value   = ! empty( $option['remove_quotes'] ) ? $value : ( '"' . $value . '"' );
						$shortcode_attrs[] = $display_key . '=' . $shortcode_value;
					}
				}

				$shortcode_attrs = implode( ' ', $shortcode_attrs );
				$shortcode       = "[{$shortcode_name} {$shortcode_attrs}]";

				if ( Plugin::$instance->editor->is_edit_mode() ) {
					$html = esc_html( $shortcode );
					if ( $do_shortcode ) {
						do_action( 'yith_plugin_fw_elementor_editor_before_do_shortcode', $shortcode, $this );
						$html = do_shortcode( apply_filters( 'yith_plugin_fw_elementor_editor_shortcode', $shortcode, $this ) );
						do_action( 'yith_plugin_fw_elementor_editor_after_do_shortcode', $shortcode, $this );
					}
					$type         = $do_shortcode ? 'html' : 'shortcode';
					$html_to_show = $html;
					$message      = '';

					if ( $do_shortcode && $empty_message && ! $html ) {
						$type         = 'empty-html';
						$html_to_show = esc_html( $shortcode );
						$message      = $empty_message;
					}

					$show_title   = in_array( $type, array( 'shortcode', 'empty-html' ), true );
					$show_content = 'empty-html' !== $type;
					?>
					<div class="yith-plugin-fw-elementor-shortcode-widget yith-plugin-fw-elementor-shortcode-widget--<?php echo esc_attr( $type ); ?>">
						<?php if ( $show_title ) : ?>
							<div class="yith-plugin-fw-elementor-shortcode-widget__title">
								<?php echo esc_html( $this->get_title() ); ?>
							</div>
						<?php endif; ?>
						<?php if ( $message ) : ?>
							<div class="yith-plugin-fw-elementor-shortcode-widget__message">
								<?php echo wp_kses_post( $message ); ?>
							</div>
						<?php endif; ?>
						<?php if ( $show_content ) : ?>
							<div class="yith-plugin-fw-elementor-shortcode-widget__content">
								<?php echo $html_to_show; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>
							</div>
						<?php endif; ?>
					</div>
					<?php
				} else {
					do_action( 'yith_plugin_fw_elementor_before_do_shortcode', $shortcode, $this );
					echo do_shortcode( apply_filters( 'yith_plugin_fw_elementor_shortcode', $shortcode, $this ) );
					do_action( 'yith_plugin_fw_elementor_after_do_shortcode', $shortcode, $this );
				}
			}
		}

		/**
		 * Retrieve the YITH Data defaults.
		 *
		 * @return array
		 */
		public function get_yith_data_defaults() {
			return array(
				'map_from_gutenberg' => false,
				'shortcode_name'     => '',
				'do_shortcode'       => true,
				'render_cb'          => false,
				'editor_render_cb'   => false,
				'options'            => array(),
				'section_title'      => sprintf(
				// translators: %s it the Elementor Widget title.
					_x( '%s - Options', 'Elementor Widget - section title', 'yith-plugin-fw' ),
					$this->get_title()
				),
			);
		}

		/**
		 * Retrieve YITH options with their values.
		 */
		protected function get_yith_option_values() {
			$settings           = $this->get_settings_for_display();
			$map_from_gutenberg = $this->get_yith_prop( 'map_from_gutenberg' );
			$options            = $this->get_yith_prop( 'options' );
			$option_values      = array();

			foreach ( $options as $option ) {
				$value       = isset( $option['default'] ) ? $option['default'] : null;
				$key         = $option['yith_key'];
				$display_key = $option['yith_display_key'];

				if ( isset( $settings[ $key ] ) ) {
					$value = $settings[ $key ];
				}

				if ( isset( $option['type'] ) && Controls_Manager::SWITCHER === $option['type'] ) {
					$yes_no_values = isset( $option['yes_no_values'] ) ? $option['yes_no_values'] : ! $map_from_gutenberg;
					if ( false === $yes_no_values ) {
						$yes_no_values = array( 'true', 'false' );
					} elseif ( ! is_array( $yes_no_values ) || 2 !== count( $yes_no_values ) ) {
						$yes_no_values = array( 'yes', 'no' );
					}

					$value = 'yes' === $value ? $yes_no_values[0] : $yes_no_values[1];
				}

				$option_values[ $display_key ] = $value;
			}

			return $option_values;
		}

		/**
		 * YITH Data Initialization.
		 */
		protected function init_yith_data() {
			$data = wp_parse_args( $this->yith_data, $this->get_yith_data_defaults() );

			if ( ! ! $data['map_from_gutenberg'] ) {
				$data = $this->override_elementor_specific_data( $data );

				if ( ! $data['options'] && ! empty( $data['attributes'] ) && is_array( $data['attributes'] ) ) {
					$data['options'] = $data['attributes'];
					unset( $data['attributes'] );
				}

				if ( $data['options'] ) {
					$data['options'] = array_map( array( $this, 'map_option_from_gutenberg' ), $data['options'] );
				}
			}

			$data['options'] = $this->validate_yith_options( $data['options'] );

			$this->yith_data = $data;
		}

		/**
		 * Validate field types
		 *
		 * @param array $options The options.
		 *
		 * @return array|false The validate option array; false if the type is not set.
		 */
		protected function validate_yith_options( $options ) {
			foreach ( $options as $key => &$option ) {
				if ( ! isset( $option['type'] ) ) {
					unset( $options[ $key ] );
					continue;
				}

				// Let's fix the option type.
				if ( in_array( $option['type'], array( 'toggle', 'onoff', 'checkbox' ), true ) ) {
					$option['type'] = Controls_Manager::SWITCHER;

					if ( isset( $option['default'] ) && is_bool( $option['default'] ) ) {
						$option['default'] = yith_plugin_fw_is_true( $option['default'] ) ? 'yes' : 'no';
					}
				} elseif ( in_array( $option['type'], array( 'radio' ), true ) ) {
					$option['type'] = Controls_Manager::SELECT;
				} elseif ( in_array( $option['type'], array( 'color', 'colorpicker', 'color-palette' ), true ) ) {
					$option['type'] = Controls_Manager::COLOR;
				} elseif ( in_array( $option['type'], array( 'select' ), true ) && ! empty( $option['multiple'] ) ) {
					$option['type'] = Controls_Manager::SELECT2;
				}

				// Set the key, used to store the option, and the display_key, used in the render method.
				$option['yith_key'] = $this->maybe_prefix_yith_key( $key );
				if ( ! isset( $option['yith_display_key'] ) ) {
					$option['yith_display_key'] = $key;
				}

				// Auto-set the block_label to display label in a separate line.
				if ( ! isset( $option['label_block'] ) ) {
					$option['label_block'] = true;
				}
			}

			return $options;
		}

		/**
		 * Override Elementor specific data if exists.
		 * This allows setting/overriding specific values for Elementor.
		 *
		 * @param array $data The data array.
		 *
		 * @return array
		 */
		protected function override_elementor_specific_data( $data ) {
			$elementor_data = array_filter(
				$data,
				function ( $key ) {
					return 'elementor_' === substr( $key, 0, 10 );
				},
				ARRAY_FILTER_USE_KEY
			);

			$elementor_data = array_combine(
				array_map(
					function ( $key ) {
						return substr( $key, 10 );
					},
					array_keys( $elementor_data )
				),
				array_values( $elementor_data )
			);

			$data = array_merge( $data, $elementor_data );

			return $data;
		}

		/**
		 * Map an option from Gutenberg
		 *
		 * @param array $option The option array.
		 *
		 * @return array
		 */
		protected function map_option_from_gutenberg( $option ) {
			$option = $this->override_elementor_specific_data( $option );
			$type   = isset( $option['type'] ) ? $option['type'] : false;

			if ( ! empty( $option['deps'] ) && ! isset( $option['condition'] ) ) {
				if ( isset( $option['deps']['id'], $option['deps']['value'] ) ) {
					$deps = array(
						array(
							'id'    => $option['deps']['id'],
							'value' => $option['deps']['value'],
						),
					);
				} else {
					$deps = $option['deps'];
				}

				$option['condition'] = array();

				foreach ( $deps as $dep ) {
					if ( isset( $dep['id'], $dep['value'] ) ) {
						$dep_value = $dep['value'];
						$dep_id    = $dep['id'];
						if ( in_array( $type, array( 'toggle', 'onoff', 'checkbox' ), true ) ) {
							$dep_value = yith_plugin_fw_is_true( $dep_value ) ? 'yes' : 'no';
						}
						$option['condition'][ $dep_id ] = $dep_value;
					}
				}

				unset( $option['deps'] );
			}

			switch ( $type ) {
				case 'color':
				case 'colorpicker':
					if ( ! isset( $option['alpha'] ) ) {
						$option['alpha'] = isset( $option['disableAlpha'] ) ? ! $option['disableAlpha'] : false;
					}

					break;
				case 'color-palette':
					$option['alpha'] = false;
					break;
			}

			if ( isset( $option['help'] ) && ! isset( $option['description'] ) ) {
				$option['description'] = $option['help'];
				unset( $option['help'] );
			}

			return $option;
		}

		/**
		 * Return the YITH key prefix.
		 *
		 * @return string
		 */
		public function get_yith_key_prefix() {
			return '_yith_';
		}

		/**
		 * Add YITH prefix to a specific key.
		 *
		 * @param string $key The key to be prefixed.
		 *
		 * @return string
		 */
		public function maybe_prefix_yith_key( $key ) {
			$reserved_keys = array( 'id', 'elType', 'settings', 'elements', 'isInner' );
			if ( in_array( $key, $reserved_keys, true ) ) {
				$prefix = $this->get_yith_key_prefix();

				$key = substr( $key, 0, strlen( $prefix ) ) === $prefix ? $key : ( $prefix . $key );
			}

			return $key;
		}
	}
}
PK`x1\��r>plugin-fw/includes/builders/elementor/class-yith-elementor.phpnu�[���<?php
/**
 * Elementor Class.
 *
 * @class   YITH_Elementor
 * @package YITH\PluginFramework\Classes
 * @since   3.6.0
 */

defined( 'ABSPATH' ) || exit; // Exit if accessed directly.

if ( ! class_exists( 'YITH_Elementor' ) ) {
	/**
	 * YITH_Elementor class.
	 *
	 * @author  Leanza Francesco <leanzafrancesco@gmail.com>
	 */
	class YITH_Elementor {

		/**
		 * The single instance of the class.
		 *
		 * @var YITH_Elementor
		 */
		private static $instance;

		/**
		 * The registered widgets.
		 *
		 * @var array
		 */
		private $widgets = array();

		/**
		 * Singleton implementation.
		 *
		 * @return YITH_Elementor
		 */
		public static function instance() {
			return ! is_null( self::$instance ) ? self::$instance : self::$instance = new self();
		}

		/**
		 * YITH_Elementor constructor.
		 */
		private function __construct() {
			if ( defined( 'ELEMENTOR_VERSION' ) && version_compare( ELEMENTOR_VERSION, '3.0.0', '>=' ) ) {
				add_action( 'elementor/widgets/widgets_registered', array( $this, 'register_widgets' ) );
				add_action( 'elementor/elements/categories_registered', array( $this, 'add_yith_category' ) );

				add_action( 'elementor/editor/after_enqueue_styles', array( $this, 'enqueue_styles' ) );
				add_action( 'elementor/frontend/after_enqueue_styles', array( $this, 'enqueue_styles' ) );
			}
		}

		/**
		 * Register Elementor widget
		 *
		 * @param string $widget_name    The widget name.
		 * @param array  $widget_options The widget options.
		 */
		public function register_widget( $widget_name, $widget_options ) {
			if ( ! isset( $widget_options['name'] ) ) {
				$widget_options['name'] = $widget_name;
			}
			$this->widgets[ $widget_name ] = $widget_options;
		}

		/**
		 * Let's start with Elementor
		 *
		 * @deprecated 3.7.2
		 */
		public function init() {
		}

		/**
		 * Load files
		 */
		private function load_files() {
			require_once 'class-yith-elementor-widget.php';
		}

		/**
		 * Register Elementor Widgets
		 */
		public function register_widgets() {
			if ( $this->widgets ) {
				$this->load_files();
			}

			foreach ( $this->widgets as $widget ) {
				\Elementor\Plugin::instance()->widgets_manager->register_widget_type( new YITH_Elementor_Widget( array(), array( 'yith_data' => $widget ) ) );
			}
		}

		/**
		 * Add "YITH" category for Elementor widgets
		 *
		 * @param Elementor\Elements_Manager $elements_manager Elements Manager.
		 */
		public function add_yith_category( $elements_manager ) {
			// If the category is empty, it'll be automatically hidden by Elementor.
			$elements_manager->add_category(
				'yith',
				array(
					'title'  => 'YITH',
					'icon'   => 'fa fa-plug',
					'active' => false,
				)
			);
		}

		/**
		 * Enqueue styles in elementor
		 */
		public function enqueue_styles() {
			if ( $this->widgets ) {
				if ( \Elementor\Plugin::$instance->preview->is_preview_mode() || \Elementor\Plugin::$instance->editor->is_edit_mode() ) {
					wp_enqueue_style( 'yith-plugin-fw-icon-font' );
					wp_enqueue_style( 'yith-plugin-fw-elementor' );
				}
			}
		}
	}
}

YITH_Elementor::instance();
PK`x1\�#7���1plugin-fw/includes/privacy/class-yith-privacy.phpnu�[���<?php
/**
 * YITH Privacy Class
 * handle privacy for GDPR
 *
 * @class   YITH_Privacy
 * @author  Leanza Francesco <leanzafrancesco@gmail.com>
 * @package YITH\PluginFramework\Classes
 */

defined( 'ABSPATH' ) || exit; // Exit if accessed directly.

if ( ! class_exists( 'YITH_Privacy' ) ) {
	/**
	 * Class YITH_Privacy
	 */
	class YITH_Privacy {

		/**
		 * The single instance of the class.
		 *
		 * @var YITH_Privacy
		 */
		private static $instance;

		/**
		 * Singleton implementation.
		 *
		 * @return YITH_Privacy
		 */
		public static function instance() {
			return ! is_null( self::$instance ) ? self::$instance : self::$instance = new self();
		}

		/**
		 * Deprecated singleton implementation.
		 * Kept for backward compatibility.
		 *
		 * @return YITH_Privacy
		 * @deprecated 3.5 | use YITH_Privacy::get_instance() instead.
		 */
		public static function get_instance() {
			return self::instance();
		}

		/**
		 * YITH_Privacy constructor.
		 */
		private function __construct() {
			add_action( 'admin_init', array( $this, 'add_privacy_message' ) );
		}

		/**
		 * Adds the privacy message on YITH privacy page.
		 */
		public function add_privacy_message() {
			if ( function_exists( 'wp_add_privacy_policy_content' ) ) {
				$content = $this->get_privacy_message();

				if ( $content ) {
					$title = apply_filters( 'yith_plugin_fw_privacy_policy_guide_title', _x( 'YITH Plugins', 'Privacy Policy Guide Title', 'yith-plugin-fw' ) );
					wp_add_privacy_policy_content( $title, $content );
				}
			}
		}

		/**
		 * Get the privacy message.
		 *
		 * @return string
		 */
		public function get_privacy_message() {
			$privacy_content_path = YIT_CORE_PLUGIN_TEMPLATE_PATH . '/privacy/html-policy-content.php';
			ob_start();
			$sections = $this->get_sections();
			if ( file_exists( $privacy_content_path ) ) {
				include $privacy_content_path;
			}

			return apply_filters( 'yith_plugin_fw_privacy_policy_content', ob_get_clean() );
		}

		/**
		 * Get the sections.
		 *
		 * @return array
		 */
		public function get_sections() {
			return apply_filters(
				'yith_plugin_fw_privacy_policy_content_sections',
				array(
					'general'           => array(
						'tutorial'    => _x( 'This sample language includes the basics around what personal data your store may be collecting, storing and sharing, as well as who may have access to that data. Depending on what settings are enabled and which additional plugins are used, the specific information shared by your store will vary. We recommend consulting with a lawyer when deciding what information to disclose on your privacy policy.', 'Privacy Policy Content', 'yith-plugin-fw' ),
						'description' => '',
					),
					'collect_and_store' => array(
						'title' => _x( 'What we collect and store', 'Privacy Policy Content', 'yith-plugin-fw' ),
					),
					'has_access'        => array(
						'title' => _x( 'Who on our team has access', 'Privacy Policy Content', 'yith-plugin-fw' ),
					),
					'share'             => array(
						'title' => _x( 'What we share with others', 'Privacy Policy Content', 'yith-plugin-fw' ),
					),
					'payments'          => array(
						'title' => _x( 'Payments', 'Privacy Policy Content', 'yith-plugin-fw' ),
					),
				)
			);
		}
	}
}

YITH_Privacy::instance();
PK`x1\��-�kkAplugin-fw/includes/privacy/class-yith-privacy-plugin-abstract.phpnu�[���<?php
/**
 * YITH Privacy Abstract Class
 * abstract class to handle privacy in plugins
 *
 * @class   YITH_Privacy_Plugin_Abstract
 * @author  Leanza Francesco <leanzafrancesco@gmail.com>
 * @package YITH\PluginFramework\Classes
 */

defined( 'ABSPATH' ) || exit; // Exit if accessed directly.

if ( ! class_exists( 'YITH_Privacy_Plugin_Abstract' ) ) {
	/**
	 * Class YITH_Privacy_Plugin_Abstract
	 */
	class YITH_Privacy_Plugin_Abstract {
		/**
		 * The plugin name.
		 *
		 * @var string
		 */
		private $plugin_name;

		/**
		 * YITH_Privacy_Plugin_Abstract constructor.
		 *
		 * @param string $plugin_name The plugin name.
		 */
		public function __construct( $plugin_name ) {
			$this->plugin_name = $plugin_name;
			$this->init();
		}

		/**
		 * Let's initialize the privacy.
		 */
		protected function init() {
			add_filter( 'yith_plugin_fw_privacy_guide_content', array( $this, 'add_message_in_section' ), 10, 2 );
		}

		/**
		 * Add message in a specific section.
		 *
		 * @param string $html    The HTML of the section.
		 * @param string $section The section.
		 *
		 * @return string
		 */
		public function add_message_in_section( $html, $section ) {
			$message = $this->get_privacy_message( $section );
			if ( $message ) {
				$html .= "<p class='privacy-policy-tutorial'><strong>{$this->plugin_name}</strong></p>";
				$html .= $message;
			}

			return $html;
		}

		/**
		 * Retrieve the privacy message.
		 * Override me to customize the messages for each section.
		 *
		 * @param string $section The section.
		 *
		 * @return string
		 */
		public function get_privacy_message( $section ) {
			return '';
		}
	}
}
PK`x1\L''��C�C(plugin-fw/includes/class-yit-metabox.phpnu�[���<?php
/**
 * YITH Meta-box Class.
 *
 * @class   YIT_Metabox
 * @package YITH\PluginFramework\Classes
 */

defined( 'ABSPATH' ) || exit; // Exit if accessed directly.

if ( ! class_exists( 'YIT_Metabox' ) ) {
	/**
	 * YIT_Metabox class.
	 *
	 * @author Emanuela Castorina <emanuela.castorina@yithemes.com>
	 * @author Leanza Francesco <leanzafrancesco@gmail.com>
	 */
	class YIT_Metabox {

		/**
		 * The ID of meta-box.
		 *
		 * @var string
		 */
		public $id;

		/**
		 * Meta-box options.
		 *
		 * @var array
		 */
		private $options = array();

		/**
		 * Meta-box tabs.
		 *
		 * @var array
		 */
		private $tabs = array();

		/**
		 * Array of instances of the class.
		 *
		 * @var array
		 */
		private static $instance = array();

		/**
		 * Retrieve a specific instance of the class
		 *
		 * @param string $id The ID of the instance.
		 *
		 * @return YIT_Metabox
		 * @author Antonino Scarfi' <antonino.scarfi@yithemes.com>
		 */
		public static function instance( $id ) {
			if ( ! isset( self::$instance[ $id ] ) ) {
				self::$instance[ $id ] = new self( $id );
			}

			return self::$instance[ $id ];
		}

		/**
		 * YIT_Metabox constructor.
		 *
		 * @param string $id the ID of the meta-box.
		 */
		public function __construct( $id = '' ) {
			$this->id = $id;
		}

		/**
		 * Set options and tabs, add actions to register metabox, scripts and save data.
		 *
		 * @param array $options The meta-box options.
		 */
		public function init( $options = array() ) {
			$this->set_options( $options );
			$this->set_tabs();

			add_action( 'add_meta_boxes', array( $this, 'register_metabox' ), 99 );
			add_action( 'save_post', array( $this, 'save_postdata' ), 10, 1 );
			add_action( 'admin_enqueue_scripts', array( $this, 'enqueue' ), 15 );

			add_filter( 'yit_icons_screen_ids', array( $this, 'add_screen_ids_for_icons' ) );

			add_action( 'wp_ajax_yith_plugin_fw_save_toggle_element_metabox', array( $this, 'save_toggle_element' ) );
		}

		/**
		 * Add Screen ids to include icons
		 *
		 * @param array $screen_ids The screen IDs array.
		 *
		 * @return array
		 */
		public function add_screen_ids_for_icons( $screen_ids ) {
			return array_unique( array_merge( $screen_ids, (array) $this->options['pages'] ) );
		}

		/**
		 * Enqueue script and styles in admin side.
		 */
		public function enqueue() {
			$enqueue = function_exists( 'get_current_screen' ) && get_current_screen() && in_array( get_current_screen()->id, (array) $this->options['pages'], true );
			$enqueue = apply_filters( 'yith_plugin_fw_metabox_enqueue_styles_and_scripts', $enqueue, $this );

			if ( $enqueue ) {
				wp_enqueue_media();

				wp_enqueue_style( 'woocommerce_admin_styles' );

				wp_enqueue_style( 'yith-plugin-fw-fields' );
				wp_enqueue_style( 'wp-color-picker' );
				wp_enqueue_style( 'yit-plugin-metaboxes' );
				wp_enqueue_style( 'jquery-ui-style' );

				wp_enqueue_script( 'yit-metabox' );
				wp_enqueue_script( 'yith-plugin-fw-fields' );
			}
		}

		/**
		 * Set the meta-box options.
		 *
		 * @param array $options The options.
		 */
		public function set_options( $options = array() ) {
			$this->options = $options;
		}

		/**
		 * Set the tabs.
		 */
		public function set_tabs() {
			if ( ! isset( $this->options['tabs'] ) ) {
				return;
			}
			$this->tabs = $this->options['tabs'];
			if ( isset( $this->tabs['settings']['fields'] ) ) {
				$this->tabs['settings']['fields'] = array_filter( $this->tabs['settings']['fields'] );
			}
		}


		/**
		 * Add tab to the meta-box
		 *
		 * @param array  $tab   The new tab to be added add to the meta-box.
		 * @param string $where Where to insert the tab: after or before the $refer.
		 * @param null   $refer An existent tab of the  meta-box.
		 */
		public function add_tab( $tab, $where = 'after', $refer = null ) {
			if ( ! is_null( $refer ) ) {
				$ref_pos = array_search( $refer, array_keys( $this->tabs ), true );
				if ( false !== $ref_pos ) {
					if ( 'after' === $where ) {
						$this->tabs = array_slice( $this->tabs, 0, $ref_pos + 1, true ) + $tab + array_slice( $this->tabs, $ref_pos + 1, count( $this->tabs ) - 1, true );
					} else {
						$this->tabs = array_slice( $this->tabs, 0, $ref_pos, true ) + $tab + array_slice( $this->tabs, $ref_pos, count( $this->tabs ), true );
					}
				}
			} else {
				$this->tabs = array_merge( $tab, $this->tabs );
			}

		}

		/**
		 * Remove a tab from the tabs of meta-box.
		 *
		 * @param string $tab_id The tab ID.
		 */
		public function remove_tab( $tab_id ) {
			if ( isset( $this->tabs[ $tab_id ] ) ) {
				unset( $this->tabs[ $tab_id ] );
			}
		}

		/**
		 * Add a field inside a tab of meta-box
		 *
		 * @param string $tab_id The id of the tabs where add the field.
		 * @param array  $args   The field to add.
		 * @param string $where  Where to insert the field: after or before the $refer.
		 * @param null   $refer  An existent field inside tab.
		 */
		public function add_field( $tab_id, $args, $where = 'after', $refer = null ) {
			if ( isset( $this->tabs[ $tab_id ] ) ) {

				$cf = $this->tabs[ $tab_id ]['fields'];
				if ( ! is_null( $refer ) ) {
					$ref_pos = array_search( $refer, array_keys( $cf ), true );
					if ( false !== $ref_pos ) {
						if ( 'after' === $where ) {
							$this->tabs[ $tab_id ]['fields'] = array_slice( $cf, 0, $ref_pos + 1, true ) + $args + array_slice( $cf, $ref_pos, count( $cf ) - 1, true );

						} elseif ( 'before' === $where ) {
							$this->tabs[ $tab_id ]['fields'] = array_slice( $cf, 0, $ref_pos, true ) + $args + array_slice( $cf, $ref_pos, count( $cf ), true );
						}
					}
				} else {
					if ( 'first' === $where ) {
						$this->tabs[ $tab_id ]['fields'] = $args + $cf;
					} else {
						$this->tabs[ $tab_id ]['fields'] = array_merge( $this->tabs[ $tab_id ]['fields'], $args );
					}
				}
			}
		}

		/**
		 * Remove a field from the meta-box, search inside the tabs and remove it if exists.
		 *
		 * @param string $field_id The field ID.
		 */
		public function remove_field( $field_id ) {
			foreach ( $this->tabs as $tab_name => $tab ) {
				if ( isset( $tab['fields'][ $field_id ] ) ) {
					unset( $this->tabs[ $tab_name ]['fields'][ $field_id ] );
				}
			}
		}

		/**
		 * Order tabs and fields and set id and name for each field.
		 */
		public function reorder_tabs() {
			foreach ( $this->tabs as $tab_name => $tab ) {
				foreach ( $tab['fields'] as $id_field => $field ) {
					$this->tabs[ $tab_name ]['fields'][ $id_field ]['private'] = ( isset( $field['private'] ) ) ? $field['private'] : true;
					if ( empty( $this->tabs[ $tab_name ]['fields'][ $id_field ]['id'] ) ) {
						$this->tabs[ $tab_name ]['fields'][ $id_field ]['id'] = $this->get_option_metabox_id( $id_field, $this->tabs[ $tab_name ]['fields'][ $id_field ]['private'] );
					}
					if ( empty( $this->tabs[ $tab_name ]['fields'][ $id_field ]['name'] ) ) {
						$this->tabs[ $tab_name ]['fields'][ $id_field ]['name'] = $this->get_option_metabox_name( $this->tabs[ $tab_name ]['fields'][ $id_field ]['id'] );
					}
				}
			}

		}

		/**
		 * Get the option key for a specific field
		 *
		 * @param string $field_id The field ID.
		 * @param bool   $private  If true, add an underscore before the ID.
		 *
		 * @return string
		 */
		public function get_option_metabox_id( $field_id, $private = true ) {
			if ( $private ) {
				return '_' . $field_id;
			} else {
				return $field_id;
			}
		}

		/**
		 * Get meta-box field name
		 * Return the name of the field, this name will be used as attribute name of the input field
		 *
		 * @param string $field_id The field ID.
		 * @param bool   $private  If true, add an underscore before the ID.
		 *
		 * @return string
		 */
		public function get_option_metabox_name( $field_id, $private = true ) {
			$db_name = apply_filters( 'yit_metaboxes_option_main_name', 'yit_metaboxes' );
			$return  = $db_name . '[';

			if ( ! strpos( $field_id, '[' ) ) {
				return $return . $field_id . ']';
			}
			$return .= substr( $field_id, 0, strpos( $field_id, '[' ) );
			$return .= ']';
			$return .= substr( $field_id, strpos( $field_id, '[' ) );

			return $return;
		}

		/**
		 * Register the meta-box
		 *
		 * @param string $post_type The post-type.
		 */
		public function register_metabox( $post_type ) {
			if ( in_array( $post_type, (array) $this->options['pages'], true ) ) {
				add_meta_box( $this->id, $this->options['label'], array( $this, 'show' ), $post_type, $this->options['context'], $this->options['priority'] );
			}
		}

		/**
		 * Show the meta-box
		 *
		 * @param WP_Post $post     The post.
		 * @param array   $meta_box The meta-box info array.
		 */
		public function show( $post, $meta_box ) {
			$this->reorder_tabs();

			$args = array(
				'tabs'        => $this->tabs,
				'class'       => isset( $this->options['class'] ) ? $this->options['class'] : '',
				'meta_box_id' => $this->id,
			);

			if ( isset( $meta_box, $meta_box['id'] ) ) {
				do_action( "yith_plugin_fw_metabox_before_render_{$meta_box['id']}", $post, $meta_box );
			}

			yit_plugin_get_template( YIT_CORE_PLUGIN_PATH, 'metaboxes/tab.php', $args );
		}

		/**
		 * Save the post data in the database when saving the post
		 *
		 * @param int $post_id The post ID.
		 *
		 * @return int
		 */
		public function save_postdata( $post_id ) {
			if ( ! isset( $_POST['yit_metaboxes_nonce'] ) || ! wp_verify_nonce( wp_unslash( $_POST['yit_metaboxes_nonce'] ), 'metaboxes-fields-nonce' ) ) { // phpcs:ignore WordPress.Security.ValidatedSanitizedInput.InputNotSanitized
				return $post_id;
			}

			$allow_ajax = isset( $_REQUEST['yith_metabox_allow_ajax_saving'] ) && sanitize_key( wp_unslash( $_REQUEST['yith_metabox_allow_ajax_saving'] ) ) === $this->id;
			if ( ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) || ( defined( 'DOING_AJAX' ) && DOING_AJAX && ! $allow_ajax ) ) {
				return $post_id;
			}

			if ( isset( $_POST['post_type'] ) ) {
				$post_type = sanitize_key( wp_unslash( $_POST['post_type'] ) );
			} else {
				return $post_id;
			}

			if ( 'page' === $post_type ) {
				if ( ! current_user_can( 'edit_page', $post_id ) ) {
					return $post_id;
				}
			} else {
				if ( ! current_user_can( 'edit_post', $post_id ) ) {
					return $post_id;
				}
			}

			if ( ! in_array( $post_type, (array) $this->options['pages'], true ) ) {
				return $post_id;
			}

			if ( isset( $_POST['yit_metaboxes'] ) ) {
				$yit_metabox_data = wp_unslash( $_POST['yit_metaboxes'] ); // phpcs:ignore WordPress.Security.ValidatedSanitizedInput.InputNotSanitized

				if ( is_array( $yit_metabox_data ) ) {
					foreach ( $yit_metabox_data as $field_name => $field_value ) {
						if ( ! add_post_meta( $post_id, $field_name, $field_value, true ) ) {
							update_post_meta( $post_id, $field_name, $field_value );
						}
					}
				}
			}

			$this->sanitize_and_save_fields( $post_id );

			return $post_id;
		}

		/**
		 * Sanitize fields
		 *
		 * @param int $post_id The post ID.
		 *
		 * @since      3.2.1
		 * @deprecated since 3.4.8
		 */
		public function sanitize_fields( $post_id ) {
			$this->sanitize_and_save_fields( $post_id );
		}

		/**
		 * Sanitize and save fields of the Meta-box.
		 *
		 * @param int $post_id The post ID.
		 *
		 * @since 3.4.8
		 */
		public function sanitize_and_save_fields( $post_id ) {
			// phpcs:disable WordPress.Security.NonceVerification.Recommended
			$this->reorder_tabs();
			$tabs_to_sanitize        = $this->tabs;
			$allow_ajax              = isset( $_REQUEST['yith_metabox_allow_ajax_saving'] ) && sanitize_key( wp_unslash( $_REQUEST['yith_metabox_allow_ajax_saving'] ) ) === $this->id;
			$ajax_partial_saving_tab = isset( $_REQUEST['yith_metabox_allow_ajax_partial_saving_tab'] ) ? sanitize_key( wp_unslash( $_REQUEST['yith_metabox_allow_ajax_partial_saving_tab'] ) ) : false;

			if ( defined( 'DOING_AJAX' ) && DOING_AJAX && ! $allow_ajax ) {
				return;
			} elseif ( $ajax_partial_saving_tab ) {
				if ( array_key_exists( $ajax_partial_saving_tab, $tabs_to_sanitize ) ) {
					$tabs_to_sanitize = array( $ajax_partial_saving_tab => $tabs_to_sanitize[ $ajax_partial_saving_tab ] );
				} else {
					return;
				}
			}

			foreach ( $tabs_to_sanitize as $tab ) {
				foreach ( $tab['fields'] as $field ) {
					$this->sanitize_and_save_field( $field, $post_id );
				}
			}
			// phpcs:enable
		}

		/**
		 * Sanitize and save a single field
		 *
		 * @param array $field   The field.
		 * @param int   $post_id The post ID.
		 *
		 * @since 3.4.8
		 */
		public function sanitize_and_save_field( $field, $post_id ) {
			// phpcs:disable WordPress.Security.NonceVerification.Missing
			if ( in_array( $field['type'], array( 'title' ), true ) ) {
				return;
			}

			$meta_box_data = isset( $_POST['yit_metaboxes'] ) ? wp_unslash( $_POST['yit_metaboxes'] ) : array(); // phpcs:ignore WordPress.Security.ValidatedSanitizedInput.InputNotSanitized

			if ( isset( $meta_box_data[ $field['id'] ] ) ) {
				if ( in_array( $field['type'], array( 'onoff', 'checkbox' ), true ) ) {
					update_post_meta( $post_id, $field['id'], '1' );
				} elseif ( in_array( $field['type'], array( 'toggle-element' ), true ) ) {
					if ( isset( $field['elements'] ) && $field['elements'] ) {
						$elements_value = $meta_box_data[ $field['id'] ];
						if ( $elements_value ) {
							if ( isset( $elements_value['box_id'] ) ) {
								unset( $elements_value['box_id'] );
							}

							foreach ( $field['elements'] as $element ) {
								foreach ( $elements_value as $key => $element_value ) {
									if ( isset( $field['onoff_field'] ) ) {
										$elements_value[ $key ][ $field['onoff_field']['id'] ] = ! isset( $element_value[ $field['onoff_field']['id'] ] ) ? 0 : $element_value[ $field['onoff_field']['id'] ];
									}
									if ( in_array( $element['type'], array( 'onoff', 'checkbox' ), true ) ) {
										$elements_value[ $key ][ $element['id'] ] = ! isset( $element_value[ $element['id'] ] ) ? 0 : 1;
									}

									if ( ! empty( $element['yith-sanitize-callback'] ) && is_callable( $element['yith-sanitize-callback'] ) ) {
										$elements_value[ $key ][ $element['id'] ] = call_user_func( $element['yith-sanitize-callback'], $elements_value[ $key ][ $element['id'] ] );
									}
								}
							}
						}

						update_post_meta( $post_id, $field['id'], maybe_serialize( $elements_value ) );
					}
				} else {
					$value = $meta_box_data[ $field['id'] ];
					if ( ! empty( $field['yith-sanitize-callback'] ) && is_callable( $field['yith-sanitize-callback'] ) ) {
						$value = call_user_func( $field['yith-sanitize-callback'], $value );
					}
					add_post_meta( $post_id, $field['id'], $value, true ) || update_post_meta( $post_id, $field['id'], $value );
				}
			} elseif ( in_array( $field['type'], array( 'onoff', 'checkbox' ), true ) ) {
				update_post_meta( $post_id, $field['id'], '0' );
			} elseif ( in_array( $field['type'], array( 'checkbox-array' ), true ) ) {
				update_post_meta( $post_id, $field['id'], array() );
			} else {
				delete_post_meta( $post_id, $field['id'] );
			}
			// phpcs:enable
		}

		/**
		 * Remove a list of fields from the meta-box, search inside the tabs and remove it if exists
		 *
		 * @param array $fields Fields.
		 *
		 * @since    2.0.0
		 * @author   Andrea Grillo <andrea.grillo@yithemes.com>
		 */
		public function remove_fields( $fields ) {
			foreach ( $fields as $k => $field ) {
				$this->remove_field( $field );
			}
		}

		/**
		 * Save the element toggle via AJAX.
		 *
		 * @since  3.2.1
		 * @author Emanuela Castorina
		 */
		public function save_toggle_element() {
			if ( ! isset( $_REQUEST['post_ID'] ) ) {
				return;
			}

			if ( ! isset( $_REQUEST['yit_metaboxes_nonce'] ) || ! wp_verify_nonce( wp_unslash( $_REQUEST['yit_metaboxes_nonce'] ), 'metaboxes-fields-nonce' ) ) { // phpcs:ignore WordPress.Security.ValidatedSanitizedInput.InputNotSanitized
				return;
			}

			$post_id = isset( $_REQUEST['post_ID'] ) ? absint( $_REQUEST['post_ID'] ) : false;
			if ( ! $post_id ) {
				return;
			}

			if ( isset( $_REQUEST['yit_metaboxes'], $_REQUEST['toggle_id'], $_REQUEST['metabox_tab'], $_REQUEST['yit_metaboxes'][ $_REQUEST['toggle_id'] ] ) ) {
				$meta_box_data = isset( $_REQUEST['yit_metaboxes'] ) ? wp_unslash( $_REQUEST['yit_metaboxes'] ) : array(); // phpcs:ignore WordPress.Security.ValidatedSanitizedInput.InputNotSanitized
				$metabox_tab   = sanitize_key( wp_unslash( $_REQUEST['metabox_tab'] ) );
				$field_id      = sanitize_key( wp_unslash( $_REQUEST['toggle_id'] ) );
				if ( strpos( $field_id, '_' ) === 0 ) {
					$field_id = substr( $field_id, 1 );
				}

				if ( is_array( $meta_box_data ) ) {
					$this->reorder_tabs();
					$tabs = $this->tabs;

					if ( isset( $tabs[ $metabox_tab ], $tabs[ $metabox_tab ]['fields'] ) && isset( $tabs[ $metabox_tab ]['fields'][ $field_id ] ) ) {
						$field = $tabs[ $metabox_tab ]['fields'][ $field_id ];
						if ( $field ) {
							$this->sanitize_and_save_field( $field, $post_id );
						}
					}
				}
			} elseif ( isset( $_REQUEST['toggle_id'] ) ) {
				$field_id = sanitize_key( wp_unslash( $_REQUEST['toggle_id'] ) );
				delete_post_meta( $post_id, $field_id );
			}
		}
	}
}

if ( ! function_exists( 'yit_metabox' ) ) {
	/**
	 * Return the meta-box instance.
	 *
	 * @param string $id The meta-box id.
	 *
	 * @return YIT_Metabox
	 */
	function yit_metabox( $id ) {
		return YIT_Metabox::instance( $id );
	}
}
PK`x1\G�|�2�21plugin-fw/includes/class-yith-post-type-admin.phpnu�[���<?php
/**
 * Post Type Admin
 *
 * @class   YITH_Post_Type_Admin
 * @package YITH\PluginFramework\Classes
 */

defined( 'ABSPATH' ) || exit; // Exit if accessed directly.

if ( ! class_exists( 'YITH_Post_Type_Admin' ) ) {
	/**
	 * YITH_Post_Type_Admin class.
	 *
	 * @author  Leanza Francesco <leanzafrancesco@gmail.com>
	 */
	abstract class YITH_Post_Type_Admin {

		/**
		 * The post type.
		 *
		 * @var string
		 */
		protected $post_type = '';

		/**
		 * The object to be shown for each row.
		 *
		 * @var object|null
		 */
		protected $object = null;

		/**
		 * The ID of the Post to be shown for each row.
		 *
		 * @var int|null
		 */
		protected $post_id = null;

		/**
		 * The single instance of the class.
		 *
		 * @var YITH_Post_Type_Admin[]
		 */
		private static $instances = array();

		/**
		 * Singleton implementation.
		 *
		 * @return YITH_Post_Type_Admin
		 */
		public static function instance() {
			$class = get_called_class();

			return ! empty( self::$instances[ $class ] ) ? self::$instances[ $class ] : self::$instances[ $class ] = new $class();
		}

		/**
		 * YITH_Admin_Post_List_Table constructor.
		 */
		protected function __construct() {
			if ( $this->post_type && $this->is_enabled() ) {
				if ( defined( 'DOING_AJAX' ) && DOING_AJAX ) {
					// use "admin_init" for AJAX calls, since in case of AJAX, "current_screen" is not fired.
					add_action( 'admin_init', array( $this, 'init_wp_list_handlers' ) );
				} else {
					add_action( 'current_screen', array( $this, 'init_wp_list_handlers' ) );
				}

				add_action( 'edit_form_top', array( $this, 'print_back_to_wp_list_button' ) );
			}
		}

		/**
		 * Return true if it's enabled.
		 *
		 * @return bool
		 */
		protected function is_enabled() {
			return is_admin();
		}

		/**
		 * Return true if you want to use the object when you render columns. False otherwise.
		 * This is useful if you have an object representing your Custom Post Type that handles the CRUD.
		 * Note: if you use the object, you should set it by overriding the YITH_Post_Type_Admin::prepare_row_data method.
		 *
		 * @return bool
		 */
		protected function use_object() {
			return true;
		}

		/**
		 * Return true if the wp-list handlers should be loaded.
		 *
		 * @return bool
		 */
		protected function should_wp_list_handlers_be_loaded() {
			$screen_id = false;

			if ( function_exists( 'get_current_screen' ) ) {
				$screen    = get_current_screen();
				$screen_id = isset( $screen, $screen->id ) ? $screen->id : '';
			}

			if ( ! empty( $_REQUEST['screen'] ) ) { // phpcs:ignore WordPress.Security.NonceVerification.Recommended
				$screen_id = sanitize_text_field( wp_unslash( $_REQUEST['screen'] ) ); // phpcs:ignore WordPress.Security.NonceVerification.Recommended
			}

			return ! ! $screen_id && ( 'edit-' . $this->post_type === $screen_id );
		}

		/**
		 * Initialize the WP List handlers.
		 */
		public function init_wp_list_handlers() {
			if ( $this->should_wp_list_handlers_be_loaded() ) {
				add_action( 'manage_posts_extra_tablenav', array( $this, 'maybe_render_blank_state' ) );

				add_action( 'restrict_manage_posts', array( $this, 'maybe_render_filters' ) );
				add_filter( 'request', array( $this, 'request_query' ) );

				add_filter( 'list_table_primary_column', array( $this, 'list_table_primary_column' ), 10, 2 );
				add_filter( 'post_row_actions', array( $this, 'row_actions' ), 100, 2 );

				add_filter( 'default_hidden_columns', array( $this, 'default_hidden_columns' ), 10, 2 );
				add_filter( 'manage_edit-' . $this->post_type . '_sortable_columns', array( $this, 'define_sortable_columns' ) );
				add_filter( 'manage_' . $this->post_type . '_posts_columns', array( $this, 'define_columns' ) );
				add_filter( 'bulk_actions-edit-' . $this->post_type, array( $this, 'define_bulk_actions' ) );

				add_action( 'manage_' . $this->post_type . '_posts_custom_column', array( $this, 'render_columns' ), 10, 2 );
				add_filter( 'handle_bulk_actions-edit-' . $this->post_type, array( $this, 'handle_bulk_actions' ), 10, 3 );

				add_action( 'disable_months_dropdown', array( $this, 'disable_months_dropdown' ), 10, 2 );
			}
		}

		/**
		 * --------------------------------------------------------------------------
		 * Getters and definers methods
		 * --------------------------------------------------------------------------
		 *
		 * Methods for getting data from the objects. Usually you need to override them in your class.
		 */

		/**
		 * Get actions to show in the list table as action-buttons
		 *
		 * @return array
		 */
		protected function get_item_actions() {
			return array();
		}

		/**
		 * Retrieve an array of parameters for blank state.
		 *
		 * @return array{
		 * @type string $icon       The YITH icon. You can use this one (to use an YITH icon) or icon_class or icon_url.
		 * @type string $icon_class The icon class. You can use this one (to use a custom class for your icon) or icon or icon_url.
		 * @type string $icon_url   The icon URL. You can use this one (to specify an icon URL) or icon_icon or icon_class.
		 * @type string $message    The message to be shown.
		 * @type string $cta        {
		 *            The call-to-action button params.
		 * @type string $title      The call-to-action button title.
		 * @type string $icon       The call-to-action button icon.
		 * @type string $url        The call-to-action button URL.
		 * @type string $class      The call-to-action button class.
		 *                            }
		 *              }
		 */
		protected function get_blank_state_params() {
			return array();
		}

		/**
		 * Define primary column.
		 *
		 * @return string
		 */
		protected function get_primary_column() {
			return '';
		}

		/**
		 * Define hidden columns.
		 *
		 * @return array
		 */
		protected function get_default_hidden_columns() {
			return array();
		}

		/**
		 * Define which columns are sortable.
		 *
		 * @param array $columns Existing columns.
		 *
		 * @return array
		 */
		public function define_sortable_columns( $columns ) {
			return $columns;
		}

		/**
		 * Define which columns to show on this screen.
		 *
		 * @param array $columns Existing columns.
		 *
		 * @return array
		 */
		public function define_columns( $columns ) {
			return $columns;
		}

		/**
		 * Define bulk actions.
		 *
		 * @param array $actions Existing actions.
		 *
		 * @return array
		 */
		public function define_bulk_actions( $actions ) {
			return $actions;
		}

		/**
		 * Pre-fetch any data for the row each column has access to it, by loading $this->object.
		 *
		 * @param int $post_id Post ID being shown.
		 */
		protected function prepare_row_data( $post_id ) {
		}

		/**
		 * Render any custom filters and search inputs for the list table.
		 */
		protected function render_filters() {
		}

		/**
		 * Handle any custom filters.
		 *
		 * @param array $query_vars Query vars.
		 *
		 * @return array
		 */
		protected function query_filters( $query_vars ) {
			return $query_vars;
		}

		/**
		 * Handle bulk actions.
		 *
		 * @param string $redirect_to URL to redirect to.
		 * @param string $action      Action name.
		 * @param array  $ids         List of ids.
		 *
		 * @return string
		 */
		public function handle_bulk_actions( $redirect_to, $action, $ids ) {
			return esc_url_raw( $redirect_to );
		}

		/**
		 * Has the months dropdown enabled?
		 *
		 * @return bool
		 */
		protected function has_months_dropdown_enabled() {
			return false;
		}

		/**
		 * Return the text of the "back to WP List" button.
		 * Return empty string if you want to hide the button.
		 *
		 * @return string
		 */
		protected function get_back_to_wp_list_text() {
			$post_type_object = get_post_type_object( $this->post_type );
			$name             = ! ! $post_type_object ? get_post_type_labels( $post_type_object )->name : '';

			// translators: %s is the name of the post type (example Back to "Membership Plans").
			return ! ! $name ? sprintf( __( 'Back to "%s"', 'yith-plugin-fw' ), $name ) : __( 'Back to the list', 'yith-plugin-fw' );
		}

		/**
		 * --------------------------------------------------------------------------
		 * Utils hook handlers
		 * --------------------------------------------------------------------------
		 *
		 * Methods for handling hooks.
		 */

		/**
		 * Adjust which columns are displayed by default.
		 *
		 * @param array  $hidden Current hidden columns.
		 * @param object $screen Current screen.
		 *
		 * @return array
		 */
		public function default_hidden_columns( $hidden, $screen ) {
			if ( isset( $screen->id ) && 'edit-' . $this->post_type === $screen->id ) {
				$hidden = array_merge( $hidden, $this->get_default_hidden_columns() );
			}

			return $hidden;
		}

		/**
		 * Set list table primary column.
		 *
		 * @param string $default   Default value.
		 * @param string $screen_id Current screen ID.
		 *
		 * @return string
		 */
		public function list_table_primary_column( $default, $screen_id ) {
			if ( 'edit-' . $this->post_type === $screen_id && $this->get_primary_column() ) {
				return $this->get_primary_column();
			}

			return $default;
		}

		/**
		 * Show blank slate.
		 *
		 * @param string $which String which table-nav is being shown.
		 */
		public function maybe_render_blank_state( $which ) {
			global $post_type;

			if ( $this->get_blank_state_params() && $post_type === $this->post_type && 'bottom' === $which ) {
				$counts = (array) wp_count_posts( $post_type );
				unset( $counts['auto-draft'] );
				$count = array_sum( $counts );

				if ( 0 < $count ) {
					return;
				}

				$this->render_blank_state();

				echo '<style type="text/css">#posts-filter .wp-list-table, #posts-filter .tablenav.top, .tablenav.bottom > *, .wrap .subsubsub  { display: none; } #posts-filter .tablenav.bottom { height: auto; display: block } </style>';
			}
		}

		/**
		 * Render blank state. Extend to add content.
		 */
		protected function render_blank_state() {
			$component         = $this->get_blank_state_params();
			$component['type'] = 'list-table-blank-state';

			yith_plugin_fw_get_component( $component, true );
		}

		/**
		 * Render individual columns.
		 *
		 * @param string $column  Column ID to render.
		 * @param int    $post_id Post ID being shown.
		 */
		public function render_columns( $column, $post_id ) {
			if ( empty( $this->post_id ) || $this->post_id !== $post_id ) {
				$this->post_id = $post_id;
				$this->prepare_row_data( $post_id );
			}

			if ( $this->use_object() && ! $this->object ) {
				return;
			}

			$render_method = 'render_' . str_replace( '-', '_', $column ) . '_column';

			if ( is_callable( array( $this, $render_method ) ) ) {
				$this->{$render_method}();
			}
		}

		/**
		 * Set row actions: remove row actions, since we show actions through action-buttons.
		 *
		 * @param array   $actions Array of actions.
		 * @param WP_Post $post    Current post object.
		 *
		 * @return array
		 */
		public function row_actions( $actions, $post ) {
			if ( $this->post_type === $post->post_type ) {
				return array();
			}

			return $actions;
		}

		/**
		 * See if we should render search filters or not.
		 */
		public function maybe_render_filters() {
			global $typenow;

			if ( $this->post_type === $typenow ) {
				$this->render_filters();
			}
		}

		/**
		 * Handle any filters.
		 *
		 * @param array $query_vars Query vars.
		 *
		 * @return array
		 */
		public function request_query( $query_vars ) {
			global $typenow;

			if ( $this->post_type === $typenow ) {
				return $this->query_filters( $query_vars );
			}

			return $query_vars;
		}

		/**
		 * Disable Months dropdown for Bookings
		 *
		 * @param bool   $disable   Set true to disable.
		 * @param string $post_type The post type.
		 *
		 * @return bool
		 */
		public function disable_months_dropdown( $disable, $post_type ) {
			if ( $this->post_type === $post_type ) {
				$disable = ! $this->has_months_dropdown_enabled();
			}

			return $disable;
		}

		/**
		 * Print the "Back to WP List" button in Edit Post pages
		 */
		public function print_back_to_wp_list_button() {
			$screen    = function_exists( 'get_current_screen' ) ? get_current_screen() : false;
			$screen_id = $screen ? $screen->id : false;

			if ( $screen_id === $this->post_type ) {
				$url  = add_query_arg( array( 'post_type' => $this->post_type ), admin_url( 'edit.php' ) );
				$text = $this->get_back_to_wp_list_text();
				if ( $text ) {
					?>
					<div id='yith-plugin-fw__back-to-wp-list__wrapper' class='yith-plugin-fw__back-to-wp-list__wrapper'>
						<a id='yith-plugin-fw__back-to-wp-list' class='yith-plugin-fw__back-to-wp-list' href='<?php echo esc_url( $url ); ?>'><?php echo esc_html( $text ); ?></a>
					</div>
					<script type="text/javascript">
						( function () {
							var wrap   = document.querySelector( '.wrap' ),
								backTo = document.querySelector( '#yith-plugin-fw__back-to-wp-list__wrapper' );

							wrap.insertBefore( backTo, wrap.childNodes[ 0 ] );
						} )();
					</script>
					<?php
				}
			}
		}

	}
}
PK`x1\�,ãgg0plugin-fw/includes/class-yit-plugin-subpanel.phpnu�[���<?php
/**
 * YITH Plugin Sub-panel Class.
 *
 * @class   YIT_Plugin_SubPanel
 * @package YITH\PluginFramework\Classes
 */

defined( 'ABSPATH' ) || exit; // Exit if accessed directly.

if ( ! class_exists( 'YIT_Plugin_SubPanel' ) ) {
	/**
	 * YIT_Plugin_SubPanel class.
	 *
	 * @author Emanuela Castorina <emanuela.castorina@yithemes.it>
	 */
	class YIT_Plugin_SubPanel extends YIT_Plugin_Panel {

		/**
		 * Version of the class.
		 *
		 * @var string
		 */
		public $version = '1.0.0';

		/**
		 * List of settings parameters.
		 *
		 * @var array
		 */
		public $settings = array();

		/**
		 * YIT_Plugin_SubPanel constructor.
		 *
		 * @param array $args The panel arguments.
		 */
		public function __construct( $args = array() ) {
			if ( ! empty( $args ) ) {
				$this->settings           = $args;
				$this->settings['parent'] = $this->settings['page'];
				$this->tabs_path_files    = $this->get_tabs_path_files();

				add_action( 'admin_init', array( $this, 'register_settings' ) );
				add_action( 'admin_menu', array( &$this, 'add_setting_page' ) );
				add_action( 'admin_bar_menu', array( &$this, 'add_admin_bar_menu' ), 100 );
				add_action( 'admin_init', array( &$this, 'add_fields' ) );
				add_action( 'admin_enqueue_scripts', array( $this, 'admin_enqueue_scripts' ) );
			}
		}

		/**
		 * Register Settings
		 * Generate wp-admin settings pages by registering your settings and using a few callbacks to control the output
		 *
		 * @author   Emanuela Castorina <emanuela.castorina@yithemes.it>
		 */
		public function register_settings() {
			register_setting( 'yit_' . $this->settings['page'] . '_options', 'yit_' . $this->settings['page'] . '_options', array( &$this, 'options_validate' ) );
		}


		/**
		 * Add Setting SubPage
		 * add Setting SubPage to WordPress administrator
		 *
		 * @author   Emanuela Castorina <emanuela.castorina@yithemes.it>
		 */
		public function add_setting_page() {
			global $admin_page_hooks;
			$logo = yith_plugin_fw_get_default_logo();

			$admin_logo = function_exists( 'yit_get_option' ) ? yit_get_option( 'admin-logo-menu' ) : '';

			if ( ! empty( $admin_logo ) ) {
				$logo = $admin_logo;
			}

			if ( ! isset( $admin_page_hooks['yith_plugin_panel'] ) ) {
				$position = apply_filters( 'yit_plugins_menu_item_position', '62.32' );
				add_menu_page( 'yith_plugin_panel', 'YITH', 'nosuchcapability', 'yith_plugin_panel', null, $logo, $position );
				// Prevent issues for backward compatibility.
				$admin_page_hooks['yith_plugin_panel'] = 'yith-plugins'; // phpcs:ignore WordPress.WP.GlobalVariablesOverride.Prohibited
			}

			add_submenu_page( 'yith_plugin_panel', $this->settings['label'], $this->settings['label'], 'manage_options', $this->settings['page'], array( $this, 'yit_panel' ) );
			remove_submenu_page( 'yith_plugin_panel', 'yith_plugin_panel' );
		}

		/**
		 * Show a tabbed panel to setting page
		 * a callback function called by add_setting_page => add_submenu_page
		 *
		 * @author   Emanuela Castorina <emanuela.castorina@yithemes.it>
		 */
		public function yit_panel() {
			$tabs        = '';
			$current_tab = $this->get_current_tab();
			$yit_options = $this->get_main_array_options();

			foreach ( $this->settings['admin-tabs'] as $tab => $tab_value ) {
				$active_class = $current_tab === $tab ? ' nav-tab-active' : '';
				$url          = '?page=' . $this->settings['page'] . '&tab=' . $tab;

				$tabs .= '<a class="nav-tab' . esc_attr( $active_class ) . '" href="' . esc_url( $url ) . '">' . wp_kses_post( $tab_value ) . '</a>';
			}
			?>
			<div id="icon-themes" class="icon32"><br/></div>
			<h2 class="nav-tab-wrapper">
				<?php echo $tabs; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>
			</h2>
			<?php
			$custom_tab_options = $this->get_custom_tab_options( $yit_options, $current_tab );
			if ( $custom_tab_options ) {
				$this->print_custom_tab( $custom_tab_options );

				return;
			}

			$panel_content_class = apply_filters( 'yit_admin_panel_content_class', 'yit-admin-panel-content-wrap' );
			?>
			<div id="wrap" class="yith-plugin-fw plugin-option yit-admin-panel-container">
				<?php $this->message(); ?>
				<div class="<?php echo esc_attr( $panel_content_class ); ?>">
					<h2><?php echo wp_kses_post( $this->get_tab_title() ); ?></h2>
					<?php if ( $this->is_show_form() ) : ?>
						<form id="yith-plugin-fw-panel" method="post" action="options.php">
							<?php do_settings_sections( 'yit' ); ?>
							<p>&nbsp;</p>
							<?php settings_fields( 'yit_' . $this->settings['parent'] . '_options' ); ?>
							<input type="hidden" name="<?php echo esc_attr( $this->get_name_field( 'current_tab' ) ); ?>" value="<?php echo esc_attr( $current_tab ); ?>"/>
							<input type="submit" class="button-primary" value="<?php esc_attr_e( 'Save Changes', 'yith-plugin-fw' ); ?>" style="float:left;margin-right:10px;"/>
						</form>
						<form method="post">
							<?php
							$reset_warning = __( 'If you continue with this action, you will reset all options in this page.', 'yith-plugin-fw' ) . '\n' . __( 'Are you sure?', 'yith-plugin-fw' );
							?>
							<input type="hidden" name="yit-action" value="reset"/>
							<input type="submit" name="yit-reset" class="button-secondary" value="<?php esc_attr_e( 'Reset to default', 'yith-plugin-fw' ); ?>"
									onclick="return confirm('<?php echo esc_attr( $reset_warning ); ?>');"/>
						</form>
						<p>&nbsp;</p>
					<?php endif ?>
				</div>
			</div>
			<?php
		}
	}
}
PK`x1\b��1�1*plugin-fw/includes/class-yit-gradients.phpnu�[���<?php
/**
 * YITH Plugin Gradients Class.
 *
 * @class   YIT_Gradients
 * @package YITH\PluginFramework\Classes
 */

defined( 'ABSPATH' ) || exit; // Exit if accessed directly.

if ( ! class_exists( 'YIT_Gradients' ) ) {

	/**
	 * YIT_Gradients class.
	 *
	 * @deprecated 3.5
	 */
	class YIT_Gradients {
		/**
		 * An array of colors to use for a gradient.
		 *
		 * @var     array
		 */
		public $colors_gradient = array();

		/**
		 * Set property
		 *
		 * @param string $key   The key.
		 * @param mixed  $value The value.
		 *
		 * @internal param array $colors_gradient
		 */
		public function set( $key, $value ) {
			if ( property_exists( $this, $key ) ) {
				$this->{$key} = $value;
			}
		}

		/**
		 * Get property
		 *
		 * @param string $key The key.
		 *
		 * @return mixed
		 */
		public function get( $key ) {
			if ( property_exists( $this, $key ) ) {
				return $this->{$key};
			}

			return false;
		}

		/**
		 * Add a color to use in a gradient.
		 *
		 * @param string $color    The color.
		 * @param int    $position The position.
		 */
		public function add_color_gradient( $color, $position ) {
			$the_color['color']    = $color;
			$the_color['position'] = $position;

			array_push( $this->colors_gradient, $the_color );
		}

		/**
		 * Generate the CSS code for a gradient.
		 *
		 * @param string $role      The role.
		 * @param string $direction The direction.
		 *
		 * @return string|bool
		 */
		public function gradient( $role, $direction ) {
			if ( ! empty( $this->colors_gradient ) ) {

				$css = array(
					'old'        => $this->make_old_gradient( $this->colors_gradient[0]['color'] ), // Old browsers support.
					'ff3'        => $this->make_modern_gradient( $this->colors_gradient, $direction, 'moz' ), // Firefox 3.6+ support.
					'chr_saf4'   => $this->make_chr_saf4_gradient( $this->colors_gradient, $direction ), // Chrome and safari4+ support.
					'chr10_saf5' => $this->make_modern_gradient( $this->colors_gradient, $direction, 'webkit' ), // Chrome10+ and safari5+ support.
					'opera'      => $this->make_modern_gradient( $this->colors_gradient, $direction, 'o' ), // Opera11.10+ support.
					'ie10'       => $this->make_modern_gradient( $this->colors_gradient, $direction, 'ms' ), // Internet explorer 10+ support.
					'w3c'        => $this->make_modern_gradient( $this->colors_gradient, $direction, 'w3c' ), // W3c support.
					'ie6_9'      => $this->make_ie6_gradient( $this->colors_gradient, $direction ), // Ie6-9 support.
				);

				$css = $role . '{' . implode( ';', $css ) . '}';

				$this->colors_gradient = array();

				return $css;
			}

			return '';
		}

		/**
		 * Reverse a gradient. This method should be used only before calling ::make_gradient(). Otherwise it will not works.
		 */
		public function reverse_gradient() {
			$colors_gradient       = array_reverse( $this->get( 'colors_gradient' ) );
			$colors_gradient_count = count( $colors_gradient );
			for ( $i = 0; $i < $colors_gradient_count; $i ++ ) {
				$colors_gradient[ $i ]['position'] = 100 - $colors_gradient[ $i ]['position'];
			}

			$this->set( 'colors_gradient', $colors_gradient );
		}

		/**
		 * Generate the CSS code for a gradient.
		 *
		 * @param string $role      The role.
		 * @param string $direction The direction.
		 *
		 * @return string|bool
		 */
		public function get_gradient( $role, $direction ) {
			return $this->gradient( $role, $direction );
		}

		/**
		 * Generate the CSS code for a gradient.
		 *
		 * @param string $role      The role.
		 * @param string $direction The direction.
		 */
		public function the_gradient( $role, $direction ) {
			echo esc_html( $this->get_gradient( $role, $direction ) );
		}

		/**
		 * Generate the CSS code for a gradient.
		 *
		 * @param string $role      The role.
		 * @param string $from      From color.
		 * @param string $to        To color.
		 * @param string $direction The direction.
		 *
		 * @return string|bool
		 */
		public function gradient_from_to( $role, $from, $to, $direction ) {

			$colors = array(
				array(
					'color'    => $from,
					'position' => 0,
				),
				array(
					'color'    => $to,
					'position' => 100,
				),
			);

			$this->set( 'colors_gradient', $colors );

			return $this->get_gradient( $role, $direction );
		}

		/**
		 * Generate the CSS code for a gradient.
		 *
		 * @param string     $role      The role.
		 * @param string     $color     The color.
		 * @param string     $direction The direction.
		 * @param int|string $factor    The factor.
		 *
		 * @return string|bool
		 */
		public function gradient_darker( $role, $color, $direction, $factor = 30 ) {

			$colors = array(
				array(
					'color'    => $color,
					'position' => 0,
				),
				array(
					'color'    => $this->hex_darker( $color, $factor ),
					'position' => 100,
				),
			);

			$this->set( 'colors_gradient', $colors );

			return $this->get_gradient( $role, $direction );
		}

		/**
		 * Generate the CSS code for a gradient.
		 *
		 * @param string     $role      The role.
		 * @param string     $color     The color.
		 * @param string     $direction The direction.
		 * @param int|string $factor    The factor.
		 *
		 * @return string|bool
		 * @since  1.0
		 */
		public function gradient_lighter( $role, $color, $direction, $factor = 30 ) {

			$colors = array(
				array(
					'color'    => $color,
					'position' => 0,
				),
				array(
					'color'    => $this->hex_lighter( $color, $factor ),
					'position' => 100,
				),
			);

			$this->set( 'colors_gradient', $colors );

			return $this->get_gradient( $role, $direction );
		}

		/**
		 * Generate the CSS code for a gradient that not supports gradients (add only a background color).
		 *
		 * @param string $color The color.
		 *
		 * @return string|bool
		 */
		private function make_old_gradient( $color ) {
			return 'background:' . $color;
		}

		/**
		 * Generate the CSS code for a gradient in IE6-9.
		 *
		 * @param array  $colors    The colors.
		 * @param string $direction The direction.
		 *
		 * @return string|bool
		 */
		private function make_ie6_gradient( $colors, $direction ) {
			$start  = $colors[0]['color'];
			$end    = $colors[ count( $colors ) - 1 ]['color'];
			$type   = 'horizontal' === $direction ? 1 : 0;
			$params = implode(
				',',
				array(
					"startColorstr='{$start}'",
					"endColorstr='{$end}'",
					"GradientType={$type}",
				)
			);

			return "filter:progid:DXImageTransform.Microsoft.gradient({$params})";
		}

		/**
		 * Make the CSS 3 for a gradient in modern browsers( FF3.6+, Chrome, Safari5+, Opera11.10+, IE10+ )
		 *
		 * @param array  $colors    The colors.
		 * @param string $direction The direction.
		 * @param string $browser   The browser.
		 *
		 * @return string
		 */
		private function make_modern_gradient( $colors, $direction, $browser ) {
			$css = 'background:';

			// Add the browser suffix.
			if ( 'w3c' !== $browser ) {
				$browser = '-' . $browser . '-';
			} else {
				$browser = '';
			}

			switch ( $direction ) {
				case 'vertical':
					$css .= $browser . 'linear-gradient(top,';
					break;
				case 'horizontal':
					$css .= $browser . 'linear-gradient(left,';
					break;
				case 'diagonal-bottom':
					$css .= $browser . 'linear-gradient(-45deg,';
					break;
				case 'diagonal-top':
					$css .= $browser . 'linear-gradient(45deg,';
					break;
				case 'radial':
					$css .= $browser . 'radial-gradient(center, ellipse cover,';
					break;
			}

			foreach ( $colors as $stop ) {
				$css .= $stop['color'] . ' ' . $stop['position'] . '%, ';
			}

			$css = rtrim( $css );
			$css = rtrim( $css, ',' );

			$css .= ')';

			return $css;
		}

		/**
		 * Make the CSS 3 for a gradient in Chrome and Safari 4+
		 *
		 * @param array  $colors    The colors.
		 * @param string $direction The direction.
		 *
		 * @return string
		 */
		private function make_chr_saf4_gradient( $colors, $direction ) {
			$css = 'background:';

			switch ( $direction ) {
				case 'vertical':
					$css .= '-webkit-gradient(linear,left top,left bottom,';
					break;
				case 'horizontal':
					$css .= '-webkit-gradient(linear,left top,right top,';
					break;
				case 'diagonal-bottom':
					$css .= '-webkit-gradient(linear,left top,right bottom,';
					break;
				case 'diagonal-top':
					$css .= '-webkit-gradient(linear,left bottom,right top,';
					break;
				case 'radial':
					$css .= '-webkit-gradient(radial,center center, 0px, center center, 100%,';
					break;
			}

			foreach ( $colors as $stop ) {
				$css .= 'color-stop(' . $stop['position'] . '%, ' . $stop['color'] . '), ';
			}

			$css = rtrim( $css );
			$css = rtrim( $css, ',' );

			$css .= ')';

			return $css;
		}

		/**
		 * Return an instance of the model called
		 *
		 * @param string $class The name of class that I want the instance.
		 *
		 * @return mixed
		 * @deprecated 3.5 | use YIT_Gradients::get_model instead
		 */
		public function getModel( $class ) {
			return $this->get_model( $class );
		}


		/**
		 * Return an instance of the model called
		 *
		 * @param string $class The name of class that I want the instance.
		 *
		 * @return mixed
		 * @since  3.5
		 */
		public function get_model( $class ) {
			return class_exists( 'YIT_Registry' ) ? YIT_Registry::get_instance()->$class : false;
		}


		/**
		 * Return a color darker then $color.
		 *
		 * @param string $color  The color.
		 * @param int    $factor The factor.
		 *
		 * @return  string
		 */
		public function hex_darker( $color, $factor = 30 ) {
			$color = str_replace( '#', '', $color );

			$base['R'] = hexdec( substr( $color, 0, 2 ) );
			$base['G'] = hexdec( substr( $color, 2, 2 ) );
			$base['B'] = hexdec( substr( $color, 4, 2 ) );

			$color = '#';

			foreach ( $base as $k => $v ) {
				$amount      = $v / 100;
				$amount      = round( $amount * $factor );
				$new_decimal = $v - $amount;

				$new_hex_component = dechex( $new_decimal );

				if ( strlen( $new_hex_component ) < 2 ) {
					$new_hex_component = '0' . $new_hex_component;
				}

				$color .= $new_hex_component;
			}

			return $color;
		}

		/**
		 * Return a color lighter then $color.
		 *
		 * @param string $color  The color.
		 * @param int    $factor The factor.
		 *
		 * @return  string
		 */
		public function hex_lighter( $color, $factor = 30 ) {
			$color = str_replace( '#', '', $color );

			$base['R'] = hexdec( $color[0] . $color[1] );
			$base['G'] = hexdec( $color[2] . $color[3] );
			$base['B'] = hexdec( $color[4] . $color[5] );

			$color = '#';

			foreach ( $base as $k => $v ) {
				$amount      = 255 - $v;
				$amount      = $amount / 100;
				$amount      = round( $amount * $factor );
				$new_decimal = $v + $amount;

				$new_hex_component = dechex( $new_decimal );

				if ( strlen( $new_hex_component ) < 2 ) {
					$new_hex_component = '0' . $new_hex_component;
				}

				$color .= $new_hex_component;
			}

			return $color;
		}

		/**
		 * Detect if we must use a color darker or lighter then the background.
		 *
		 * @param string $color The color.
		 * @param string $dark  The dark color.
		 * @param string $light The light color.
		 *
		 * @return  string
		 * @since   1.0
		 * @author  Andrea Grillo <andrea.grillo@yithemes.com>
		 */
		public function light_or_dark( $color, $dark = '#000000', $light = '#FFFFFF' ) {
			$hex = str_replace( '#', '', $color );

			$c_r        = hexdec( substr( $hex, 0, 2 ) );
			$c_g        = hexdec( substr( $hex, 2, 2 ) );
			$c_b        = hexdec( substr( $hex, 4, 2 ) );
			$brightness = ( ( $c_r * 299 ) + ( $c_g * 587 ) + ( $c_b * 114 ) ) / 1000;

			return ( $brightness > 155 ) ? $dark : $light;
		}

		/**
		 * Detect if we must use a color darker or lighter then the background.
		 *
		 * @param string $hex the Color.
		 *
		 * @return array Array with the rgb values.
		 */
		public function hex2rgb( $hex ) {
			$hex = str_replace( '#', '', $hex );

			if ( 3 === strlen( $hex ) ) {
				$r = hexdec( substr( $hex, 0, 1 ) . substr( $hex, 0, 1 ) );
				$g = hexdec( substr( $hex, 1, 1 ) . substr( $hex, 1, 1 ) );
				$b = hexdec( substr( $hex, 2, 1 ) . substr( $hex, 2, 1 ) );
			} else {
				$r = hexdec( substr( $hex, 0, 2 ) );
				$g = hexdec( substr( $hex, 2, 2 ) );
				$b = hexdec( substr( $hex, 4, 2 ) );
			}
			$rgb = array( $r, $g, $b );

			return $rgb;
		}

		/**
		 * Magic getter method
		 *
		 * @param string $prop The property.
		 *
		 * @return mixed
		 */
		public function __get( $prop ) {
			$value = null;
			if ( 'request' === $prop ) {
				if ( class_exists( 'YIT_Request' ) && ( ! isset( $this->request ) || ! $this->request instanceof YIT_Request ) ) {
					$value         = YIT_Registry::get_instance()->request;
					$this->request = $value;
				}
			}

			return $value;
		}
	}
}
PK`x1\�b��d�d/plugin-fw/includes/class-yith-system-status.phpnu�[���<?php
/**
 * YITH System Status Class
 * handle System Status panel
 *
 * @class   YITH_System_Status
 * @package YITH\PluginFramework\Classes
 */

defined( 'ABSPATH' ) || exit; // Exit if accessed directly.

if ( ! class_exists( 'YITH_System_Status' ) ) {
	/**
	 * YITH_System_Status class.
	 *
	 * @author     Alberto Ruggiero
	 */
	class YITH_System_Status {
		/**
		 * The page slug
		 *
		 * @var string
		 */
		protected $page = 'yith_system_info';

		/**
		 * Plugins requirements list
		 *
		 * @var array
		 */
		protected $plugins_requirements = array();

		/**
		 * Requirements labels
		 *
		 * @var array
		 */
		public $requirement_labels = array();

		/**
		 * Recommended memory amount 134217728 = 128M
		 *
		 * @var integer
		 */
		private $recommended_memory = 134217728;

		/**
		 * Single instance of the class
		 *
		 * @since 1.0.0
		 * @var YITH_System_Status
		 */
		protected static $instance = null;

		/**
		 * Main plugin Instance
		 *
		 * @return YITH_System_Status
		 * @since  1.0.0
		 * @author Alberto Ruggiero
		 */
		public static function instance() {
			if ( is_null( self::$instance ) ) {
				self::$instance = new self();
			}

			return self::$instance;
		}

		/**
		 * Constructor
		 *
		 * @return void
		 * @since  1.0.0
		 * @author Alberto Ruggiero
		 */
		public function __construct() {

			if ( ! is_admin() ) {
				return;
			}

			/**
			 * Add to prevent trigger admin_init called directly
			 * wp-admin/admin-post.php?page=yith_system_info
			 */
			if ( ! is_user_logged_in() ) {
				return;
			}

			add_action( 'admin_menu', array( $this, 'add_submenu_page' ), 99 );
			add_action( 'admin_init', array( $this, 'check_system_status' ) );
			add_action( 'admin_notices', array( $this, 'activate_system_notice' ), 15 );
			add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_scripts' ), 20 );
			add_action( 'init', array( $this, 'set_requirements_labels' ) );
			add_action( 'wp_ajax_yith_create_log_file', array( $this, 'create_log_file' ) );

		}

		/**
		 * Set requirements labels
		 *
		 * @return void
		 * @since  1.0.0
		 * @author Alberto Ruggiero
		 */
		public function set_requirements_labels() {

			$this->requirement_labels = array(
				'min_wp_version'    => esc_html__( 'WordPress Version', 'yith-plugin-fw' ),
				'min_wc_version'    => esc_html__( 'WooCommerce Version', 'yith-plugin-fw' ),
				'wp_memory_limit'   => esc_html__( 'Available Memory', 'yith-plugin-fw' ),
				'min_php_version'   => esc_html__( 'PHP Version', 'yith-plugin-fw' ),
				'min_tls_version'   => esc_html__( 'TLS Version', 'yith-plugin-fw' ),
				'wp_cron_enabled'   => esc_html__( 'WordPress Cron', 'yith-plugin-fw' ),
				'simplexml_enabled' => esc_html__( 'SimpleXML', 'yith-plugin-fw' ),
				'mbstring_enabled'  => esc_html__( 'MultiByte String', 'yith-plugin-fw' ),
				'imagick_version'   => esc_html__( 'ImageMagick Version', 'yith-plugin-fw' ),
				'gd_enabled'        => esc_html__( 'GD Library', 'yith-plugin-fw' ),
				'iconv_enabled'     => esc_html__( 'Iconv Module', 'yith-plugin-fw' ),
				'opcache_enabled'   => esc_html__( 'OPCache Save Comments', 'yith-plugin-fw' ),
				'url_fopen_enabled' => esc_html__( 'URL FOpen', 'yith-plugin-fw' ),
			);

		}

		/**
		 * Add "System Information" submenu page under YITH Plugins
		 *
		 * @return void
		 * @since  1.0.0
		 * @author Alberto Ruggiero
		 */
		public function add_submenu_page() {

			$system_info  = get_option( 'yith_system_info', array() );
			$error_notice = ( isset( $system_info['errors'] ) && true === $system_info['errors'] ? ' <span class="yith-system-info-menu update-plugins">!</span>' : '' );
			$settings     = array(
				'parent_page' => 'yith_plugin_panel',
				'page_title'  => esc_html__( 'System Status', 'yith-plugin-fw' ),
				'menu_title'  => esc_html__( 'System Status', 'yith-plugin-fw' ) . $error_notice,
				'capability'  => 'manage_options',
				'page'        => $this->page,
			);

			add_submenu_page(
				$settings['parent_page'],
				$settings['page_title'],
				$settings['menu_title'],
				$settings['capability'],
				$settings['page'],
				array( $this, 'show_information_panel' )
			);
		}

		/**
		 * Add "System Information" page template under YITH Plugins
		 *
		 * @return void
		 * @since  1.0.0
		 * @author Alberto Ruggiero
		 */
		public function show_information_panel() {

			$path = defined( 'YIT_CORE_PLUGIN_PATH' ) ? YIT_CORE_PLUGIN_PATH : get_template_directory() . '/core/plugin-fw/';

			require_once $path . '/templates/sysinfo/system-information-panel.php';

		}

		/**
		 * Perform system status check
		 *
		 * @return void
		 * @since  1.0.0
		 * @author Alberto Ruggiero
		 */
		public function check_system_status() {

			if ( '' === get_option( 'yith_system_info' ) || ( isset( $_GET['page'] ) && $_GET['page'] === $this->page ) ) { //phpcs:ignore

				$this->add_requirements(
					esc_html__( 'YITH Plugins', 'yith-plugin-fw' ),
					array(
						'min_wp_version'  => '5.6',
						'min_wc_version'  => '5.3',
						'min_php_version' => '7.0',
					)
				);
				$this->add_requirements(
					esc_html__( 'WooCommerce', 'yith-plugin-fw' ),
					array(
						'wp_memory_limit' => '64M',
					)
				);

				$system_info   = $this->get_system_info();
				$check_results = array();
				$errors        = 0;

				foreach ( $system_info as $key => $value ) {
					$check_results[ $key ] = array( 'value' => $value );

					if ( isset( $this->plugins_requirements[ $key ] ) ) {

						foreach ( $this->plugins_requirements[ $key ] as $plugin_name => $required_value ) {

							switch ( $key ) {
								case 'wp_cron_enabled':
								case 'mbstring_enabled':
								case 'simplexml_enabled':
								case 'gd_enabled':
								case 'iconv_enabled':
								case 'url_fopen_enabled':
								case 'opcache_enabled':
									if ( ! $value ) {
										$check_results[ $key ]['errors'][ $plugin_name ] = $required_value;
										$errors ++;
									}
									break;

								case 'wp_memory_limit':
									$required_memory = $this->memory_size_to_num( $required_value );

									if ( $required_memory > $value ) {
										$check_results[ $key ]['errors'][ $plugin_name ] = $required_value;
										$errors ++;

									} elseif ( $this->recommended_memory > $value && $value > $required_value ) {
										$check_results[ $key ]['warnings'] = 'yes';
									}
									break;

								default:
									if ( 'imagick_version' === $key ) {
										if ( ! version_compare( $value, $required_value, '>=' ) ) {
											$check_results[ $key ]['errors'][ $plugin_name ] = $required_value;
											$errors ++;
										}
									} else {
										if ( 'n/a' !== $value ) {
											if ( ! version_compare( $value, $required_value, '>=' ) ) {
												$check_results[ $key ]['errors'][ $plugin_name ] = $required_value;
												$errors ++;
											}
										} else {
											if ( 'min_wc_version' !== $key ) {
												$check_results[ $key ]['warnings'][ $plugin_name ] = $required_value;
											}
										}
									}
							}
						}
					}
				}

				update_option(
					'yith_system_info',
					array(
						'system_info' => $check_results,
						'errors'      => $errors > 0,
					)
				);

			}

		}

		/**
		 * Handle plugin requirements
		 *
		 * @param string $plugin_name  The name of the plugin.
		 * @param array  $requirements Array of plugin requirements.
		 *
		 * @return void
		 * @since  1.0.0
		 * @author Alberto Ruggiero
		 */
		public function add_requirements( $plugin_name, $requirements ) {

			$allowed_requirements = array_keys( $this->requirement_labels );

			foreach ( $requirements as $requirement => $value ) {

				if ( in_array( $requirement, $allowed_requirements, true ) ) {
					$this->plugins_requirements[ $requirement ][ $plugin_name ] = $value;
				}
			}

		}

		/**
		 * Manages notice dismissing
		 *
		 * @return  void
		 * @since   1.0.0
		 * @author  Alberto Ruggiero
		 */
		public function enqueue_scripts() {
			$script_path = defined( 'YIT_CORE_PLUGIN_URL' ) ? YIT_CORE_PLUGIN_URL : get_template_directory_uri() . '/core/plugin-fw';
			wp_register_script( 'yith-system-info', yit_load_js_file( $script_path . '/assets/js/yith-system-info.js' ), array( 'jquery' ), '1.0.0', true );

			if ( isset( $_GET['page'] ) && 'yith_system_info' === $_GET['page'] ) { //phpcs:ignore
				wp_enqueue_style( 'yit-plugin-style' );
				wp_enqueue_style( 'yith-plugin-fw-fields' );
				wp_enqueue_script( 'yith-system-info' );

				$params = array(
					'ajax_url' => admin_url( 'admin-ajax.php' ),
				);

				wp_localize_script( 'yith-system-info', 'yith_sysinfo', $params );

			}

		}

		/**
		 * Show system notice
		 *
		 * @return  void
		 * @since   1.0.0
		 * @author  Alberto Ruggiero
		 */
		public function activate_system_notice() {

			$system_info = get_option( 'yith_system_info', '' );

			if ( ( isset( $_GET['page'] ) && $_GET['page'] === $this->page ) || ( ! empty( $_COOKIE['hide_yith_system_alert'] ) && 'yes' === $_COOKIE['hide_yith_system_alert'] ) || ( '' === $system_info ) || ( '' !== $system_info && false === $system_info['errors'] ) ) { //phpcs:ignore
				return;
			}

			$show_notice = true;

			if ( true === $show_notice ) {
				wp_enqueue_script( 'yith-system-info' );
				?>
				<div id="yith-system-alert" class="notice notice-error is-dismissible" style="position: relative;">
					<p>
						<span class="yith-logo"><img src="<?php echo esc_attr( yith_plugin_fw_get_default_logo() ); ?>" /></span>
						<b>
							<?php esc_html_e( 'Warning!', 'yith-plugin-fw' ); ?>
						</b><br />
						<?php
						/* translators: %1$s open link tag, %2$s open link tag*/
						echo sprintf( esc_html__( 'The system check has detected some compatibility issues on your installation.%1$sClick here%2$s to know more', 'yith-plugin-fw' ), '<a href="' . esc_url( add_query_arg( array( 'page' => $this->page ), admin_url( 'admin.php' ) ) ) . '">', '</a>' );
						?>
					</p>
					<span class="notice-dismiss"></span>

				</div>
				<?php
			}
		}

		/**
		 * Get system information
		 *
		 * @return  array
		 * @since   1.0.0
		 * @author  Alberto Ruggiero
		 */
		public function get_system_info() {
			$tls             = $this->get_tls_version();
			$imagick_version = 'n/a';

			// Get PHP version.
			preg_match( '#^\d+(\.\d+)*#', PHP_VERSION, $match );
			$php_version = $match[0];

			// WP memory limit.
			$wp_memory_limit = $this->memory_size_to_num( WP_MEMORY_LIMIT );
			if ( function_exists( 'memory_get_usage' ) ) {
				$wp_memory_limit = max( $wp_memory_limit, $this->memory_size_to_num( @ini_get( 'memory_limit' ) ) ); //phpcs:ignore
			}

			if ( class_exists( 'Imagick' ) && is_callable( array( 'Imagick', 'getVersion' ) ) ) {
				preg_match( '/([0-9]+\.[0-9]+\.[0-9]+)/', Imagick::getVersion()['versionString'], $imatch );
				$imagick_version = $imatch[0];
			}

			return apply_filters(
				'yith_system_additional_check',
				array(
					'min_wp_version'    => get_bloginfo( 'version' ),
					'min_wc_version'    => function_exists( 'WC' ) ? WC()->version : 'n/a',
					'wp_memory_limit'   => $wp_memory_limit,
					'min_php_version'   => $php_version,
					'min_tls_version'   => $tls,
					'imagick_version'   => $imagick_version,
					'wp_cron_enabled'   => ( ! ( defined( 'DISABLE_WP_CRON' ) && DISABLE_WP_CRON ) || apply_filters( 'yith_system_status_server_cron', false ) ),
					'mbstring_enabled'  => extension_loaded( 'mbstring' ),
					'simplexml_enabled' => extension_loaded( 'simplexml' ),
					'gd_enabled'        => extension_loaded( 'gd' ) && function_exists( 'gd_info' ),
					'iconv_enabled'     => extension_loaded( 'iconv' ),
					'opcache_enabled'   => ini_get( 'opcache.save_comments' ),
					'url_fopen_enabled' => ini_get( 'allow_url_fopen' ),
				)
			);

		}

		/**
		 * Get log file
		 *
		 * @return  void
		 * @since   1.0.0
		 * @author  Alberto Ruggiero
		 */
		public function create_log_file() {
			try {

				global $wp_filesystem;

				if ( empty( $wp_filesystem ) ) {
					require_once ABSPATH . '/wp-admin/includes/file.php';
					WP_Filesystem();
				}

				$download_file  = false;
				$file_content   = '';
				$requested_file = $_POST['file']; //phpcs:ignore

				switch ( $requested_file ) {
					case 'error_log':
						$file_content = $wp_filesystem->get_contents( ABSPATH . 'error_log' );
						break;
					case 'debug.log':
						$file_content = $wp_filesystem->get_contents( WP_CONTENT_DIR . '/debug.log' );
						break;
				}

				if ( '' !== $file_content ) {
					$file          = wp_upload_dir()['basedir'] . '/' . $requested_file . '.txt';
					$download_file = wp_upload_dir()['baseurl'] . '/' . $requested_file . '.txt';
					$wp_filesystem->put_contents( $file, $file_content );
				}

				wp_send_json( array( 'file' => $download_file ) );
			} catch ( Exception $e ) {
				wp_send_json( array( 'file' => false ) );
			}
		}

		/**
		 * Convert size into number
		 *
		 * @param string $memory_size Memory size to convert.
		 *
		 * @return  integer
		 * @since   1.0.0
		 * @author  Alberto Ruggiero
		 */
		public function memory_size_to_num( $memory_size ) {
			$unit = strtoupper( substr( $memory_size, - 1 ) );
			$size = substr( $memory_size, 0, - 1 );

			$multiplier = array(
				'P' => 5,
				'T' => 4,
				'G' => 3,
				'M' => 2,
				'K' => 1,
			);

			if ( isset( $multiplier[ $unit ] ) ) {
				for ( $i = 1; $i <= $multiplier[ $unit ]; $i ++ ) {
					$size *= 1024;
				}
			}

			return $size;
		}

		/**
		 * Format requirement value
		 *
		 * @param string $key   Requirement Key.
		 * @param mixed  $value Requirement value.
		 *
		 * @return  void
		 * @since   1.0.0
		 * @author  Alberto Ruggiero
		 */
		public function format_requirement_value( $key, $value ) {

			if ( strpos( $key, '_enabled' ) !== false ) {
				echo esc_attr( $value ) ? esc_html__( 'Enabled', 'yith-plugin-fw' ) : esc_html__( 'Disabled', 'yith-plugin-fw' );
			} elseif ( 'wp_memory_limit' === $key ) {
				echo esc_html( size_format( $value ) );
			} else {
				if ( 'n/a' === $value ) {
					echo esc_html__( 'N/A', 'yith-plugin-fw' );
				} else {
					echo esc_attr( $value );
				}
			}

		}

		/**
		 * Print error messages
		 *
		 * @param string $key   Requirement key.
		 * @param array  $item  Requirement item.
		 * @param string $label Requirement label.
		 *
		 * @return  void
		 * @since   1.0.0
		 * @author  Alberto Ruggiero
		 */
		public function print_error_messages( $key, $item, $label ) {
			?>
			<ul>
				<?php foreach ( $item['errors'] as $plugin => $requirement ) : ?>
					<li>
						<?php
						if ( strpos( $key, '_enabled' ) !== false ) {
							/* translators: %1$s plugin name, %2$s requirement name */
							echo sprintf( esc_html__( '%1$s needs %2$s enabled', 'yith-plugin-fw' ), '<b>' . esc_attr( $plugin ) . '</b>', '<b>' . esc_attr( $label ) . '</b>' );
						} elseif ( 'wp_memory_limit' === $key ) {
							/* translators: %1$s plugin name, %2$s required memory amount */
							echo sprintf( esc_html__( '%1$s needs at least %2$s of available memory', 'yith-plugin-fw' ), '<b>' . esc_attr( $plugin ) . '</b>', '<span class="error">' . esc_html( size_format( $this->memory_size_to_num( $requirement ) ) ) . '</span>' );
						} else {
							/* translators: %1$s plugin name, %2$s version number */
							echo sprintf( esc_html__( '%1$s needs at least %2$s version', 'yith-plugin-fw' ), '<b>' . esc_attr( $plugin ) . '</b>', '<span class="error">' . esc_attr( $requirement ) . '</span>' );
						}
						?>
					</li>
				<?php endforeach; ?>
			</ul>
			<?php
		}

		/**
		 * Print solution suggestions
		 *
		 * @param string $key   Requirement key.
		 * @param array  $item  Requirement item.
		 * @param string $label Requirement label.
		 *
		 * @return  void
		 * @since   1.0.0
		 * @author  Alberto Ruggiero
		 */
		public function print_solution_suggestion( $key, $item, $label ) {
			switch ( $key ) {
				case 'min_wp_version':
				case 'min_wc_version':
					esc_html_e( 'Update it to the latest version in order to benefit of all new features and security updates.', 'yith-plugin-fw' );
					break;
				case 'min_php_version':
				case 'min_tls_version':
					esc_html_e( 'Contact your hosting company in order to update it.', 'yith-plugin-fw' );
					break;
				case 'imagick_version':
					if ( 'n/a' === $item['value'] ) {
						esc_html_e( 'Contact your hosting company in order to install it.', 'yith-plugin-fw' );
					} else {
						esc_html_e( 'Contact your hosting company in order to update it.', 'yith-plugin-fw' );
					}
					break;
				case 'wp_cron_enabled':
					/* translators: %1$s code, %2$s file name */
					echo sprintf( esc_html__( 'Remove %1$s from %2$s file', 'yith-plugin-fw' ), '<code>define( \'DISABLE_WP_CRON\', true );</code>', '<b>wp-config.php</b>' );
					break;
				case 'mbstring_enabled':
				case 'simplexml_enabled':
				case 'gd_enabled':
				case 'iconv_enabled':
				case 'opcache_enabled':
				case 'url_fopen_enabled':
					esc_html_e( 'Contact your hosting company in order to enable it.', 'yith-plugin-fw' );
					break;
				case 'wp_memory_limit':
					/* translators: %1$s opening link tag, %2$s closing link tag */
					echo sprintf( esc_html__( 'Read more %1$shere%2$s or contact your hosting company in order to increase it.', 'yith-plugin-fw' ), '<a href="https://codex.wordpress.org/Editing_wp-config.php#Increasing_memory_allocated_to_PHP" target="_blank">', '</a>' );
					break;
				default:
					echo esc_attr( apply_filters( 'yith_system_generic_message', '', $key, $item, $label ) );
			}
		}

		/**
		 * Print warning messages
		 *
		 * @param string $key Requirement Key.
		 *
		 * @return  void
		 * @since   1.0.0
		 * @author  Alberto Ruggiero
		 */
		public function print_warning_messages( $key ) {
			switch ( $key ) {
				case 'wp_memory_limit':
					/* translators: %s recommended memory amount */
					echo sprintf( esc_html__( 'For optimal functioning of our plugins, we suggest setting at least %s of available memory', 'yith-plugin-fw' ), '<span class="warning">' . esc_html( size_format( $this->recommended_memory ) ) . '</span>' );
					echo '<br/>';
					/* translators: %1$s opening link tag, %2$s closing link tag */
					echo sprintf( esc_html__( 'Read more %1$shere%2$s or contact your hosting company in order to increase it.', 'yith-plugin-fw' ), '<a href="https://codex.wordpress.org/Editing_wp-config.php#Increasing_memory_allocated_to_PHP" target="_blank">', '</a>' );
					break;
				case 'min_tls_version':
					if ( ! function_exists( 'curl_init' ) ) {
						/* translators: %1$s TLS label, %2$s cURL label */
						echo sprintf( esc_html__( 'The system check cannot determine which %1$s version is installed because %2$s module is disabled. Ask your hosting company to enable it.', 'yith-plugin-fw' ), '<b>TLS</b>', '<b>cURL</b>' );
					} else {
						/* translators: %1$s TLS label */
						echo sprintf( esc_html__( 'The system check cannot determine which %1$s version is installed due to a connection issue between your site and our server.', 'yith-plugin-fw' ), '<b>TLS</b>' );
					}
					break;
			}
		}

		/**
		 * Retrieve the TLS Version
		 *
		 * @return string
		 * @since 3.5
		 */
		public function get_tls_version() {
			$tls = get_transient( 'yith-plugin-fw-system-status-tls-version' );

			if ( ! $tls && apply_filters( 'yith_system_status_check_ssl', true ) ) {
				$services = array(
					array(
						'url'              => 'https://www.howsmyssl.com/a/check',
						'string_to_remove' => 'TLS ',
						'prop'             => 'tls_version',
					),
					array(
						'url'              => 'https://ttl-version.yithemes.workers.dev/',
						'string_to_remove' => 'TLSv',
						'prop'             => 'tlsVersion',
					),
				);
				$params   = array(
					'sslverify' => false,
					'timeout'   => 60,
					'headers'   => array( 'Content-Type' => 'application/json' ),
				);

				foreach ( $services as $service ) {
					$url              = $service['url'];
					$string_to_remove = $service['string_to_remove'];
					$prop             = $service['prop'];

					$response = wp_remote_get( $url, $params );

					if ( ! is_wp_error( $response ) && 200 === absint( $response['response']['code'] ) && 'OK' === $response['response']['message'] ) {
						$body    = json_decode( $response['body'] );
						$version = $body && is_object( $body ) && property_exists( $body, $prop ) ? $body->{$prop} : false;
						if ( $version ) {
							$tls = str_replace( $string_to_remove, '', $version );
							break;
						}
					}
				}
				$tls = ! ! $tls ? $tls : 'n/a';

				set_transient( 'yith-plugin-fw-system-status-tls-version', $tls, 300 );
			}

			return ! ! $tls ? $tls : 'n/a';
		}

		/**
		 * Retrieve the output IP Address.
		 *
		 * @return string
		 * @since 3.5
		 */
		public function get_output_ip() {
			$ip = get_transient( 'yith-plugin-fw-system-status-output-ip' );

			if ( ! $ip && apply_filters( 'yith_system_status_check_ip', true ) ) {
				$url    = 'https://ifconfig.co/ip';
				$params = array(
					'sslverify' => false,
					'timeout'   => 60,
				);

				$response = wp_remote_get( $url, $params );

				if ( ! is_wp_error( $response ) && 200 === absint( $response['response']['code'] ) && 'OK' === $response['response']['message'] ) {
					$body = $response['body'];

					// Check for IPv4.
					preg_match( '/((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])/', $body, $matches );
					// Check for IPv6.
					if ( empty( $matches ) ) {
						preg_match( '/(([0-9a-fA-F]{1,4}:){7,7}[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,7}:|([0-9a-fA-F]{1,4}:){1,6}:[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,5}(:[0-9a-fA-F]{1,4}){1,2}|([0-9a-fA-F]{1,4}:){1,4}(:[0-9a-fA-F]{1,4}){1,3}|([0-9a-fA-F]{1,4}:){1,3}(:[0-9a-fA-F]{1,4}){1,4}|([0-9a-fA-F]{1,4}:){1,2}(:[0-9a-fA-F]{1,4}){1,5}|[0-9a-fA-F]{1,4}:((:[0-9a-fA-F]{1,4}){1,6})|:((:[0-9a-fA-F]{1,4}){1,7}|:)|fe80:(:[0-9a-fA-F]{0,4}){0,4}%[0-9a-zA-Z]{1,}|::(ffff(:0{1,4}){0,1}:){0,1}((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])|([0-9a-fA-F]{1,4}:){1,4}:((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9]))/', $body, $matches );
					}

					$ip = ! empty( $matches ) ? $matches[0] : 'n/a';
				}

				$ip = ! ! $ip ? $ip : 'n/a';

				set_transient( 'yith-plugin-fw-system-status-output-ip', $ip, 300 );
			}

			return ! ! $ip ? $ip : 'n/a';
		}

		/**
		 * Retrieve plugin-fw info, such as version and loaded-by.
		 *
		 * @return array
		 */
		public function get_plugin_fw_info() {
			$version        = yith_plugin_fw_get_version();
			$loaded_by      = basename( dirname( YIT_CORE_PLUGIN_PATH ) );
			$loaded_by_init = trailingslashit( dirname( YIT_CORE_PLUGIN_PATH ) ) . 'init.php';
			if ( file_exists( $loaded_by_init ) ) {
				$plugin_data = get_plugin_data( $loaded_by_init );
				$loaded_by   = $plugin_data['Name'] ?? $loaded_by;
			}

			return compact( 'version', 'loaded_by' );
		}

		/**
		 * Retrieve database info, such as MySQL version and database size.
		 *
		 * @return array
		 */
		public function get_database_info() {

			global $wpdb;

			$database_version = $wpdb->get_row( //phpcs:ignore WordPress.DB.DirectDatabaseQuery.DirectQuery, WordPress.DB.DirectDatabaseQuery.NoCaching
				'SELECT
						@@GLOBAL.version_comment AS string,
						@@GLOBAL.version AS number',
				ARRAY_A
			);

			$tables        = array();
			$database_size = array();

			// It is not possible to get the database name from some classes that replace wpdb (e.g., HyperDB)
			// and that is why this if condition is needed.
			if ( defined( 'DB_NAME' ) ) {
				$database_table_information = $wpdb->get_results( //phpcs:ignore WordPress.DB.DirectDatabaseQuery.DirectQuery, WordPress.DB.DirectDatabaseQuery.NoCaching
					$wpdb->prepare(
						"SELECT
					    table_name AS 'name',
						engine AS 'engine',
					    round( ( data_length / 1024 / 1024 ), 2 ) 'data',
					    round( ( index_length / 1024 / 1024 ), 2 ) 'index',
       					round( ( data_free / 1024 / 1024 ), 2 ) 'free'
					FROM information_schema.TABLES
					WHERE table_schema = %s
					ORDER BY name ASC;",
						DB_NAME
					)
				);

				$database_size = array(
					'data'  => 0,
					'index' => 0,
					'free'  => 0,
				);

				$site_tables_prefix = $wpdb->get_blog_prefix( get_current_blog_id() );
				$global_tables      = $wpdb->tables( 'global', true );
				foreach ( $database_table_information as $table ) {
					// Only include tables matching the prefix of the current site, this is to prevent displaying all tables on a MS install not relating to the current.
					if ( is_multisite() && 0 !== strpos( $table->name, $site_tables_prefix ) && ! in_array( $table->name, $global_tables, true ) ) {
						continue;
					}

					$tables[ $table->name ] = array(
						'data'   => $table->data,
						'index'  => $table->index,
						'free'   => $table->free,
						'engine' => $table->engine,
					);

					$database_size['data']  += $table->data;
					$database_size['index'] += $table->index;
					$database_size['free']  += $table->free;
				}
			}

			return apply_filters(
				'yith_database_info',
				array(
					'mysql_version'        => $database_version['number'],
					'mysql_version_string' => $database_version['string'],
					'database_tables'      => $tables,
					'database_size'        => $database_size,
				)
			);
		}

	}
}

if ( ! function_exists( 'YITH_System_Status' ) ) {
	/**
	 * Single instance of YITH_System_Status
	 *
	 * @return YITH_System_Status
	 * @since  1.0
	 * @author Alberto Ruggiero
	 */
	function YITH_System_Status() { // phpcs:ignore WordPress.NamingConventions.ValidFunctionName.FunctionNameInvalid
		return YITH_System_Status::instance();
	}
}

YITH_System_Status();
PK`x1\�Ut�**&plugin-fw/includes/class-yit-video.phpnu�[���<?php
/**
 * YITH Video Class
 * manage videos from youtube, vimeo and other services.
 *
 * @class   YIT_Video
 * @package YITH\PluginFramework\Classes
 */

defined( 'ABSPATH' ) || exit; // Exit if accessed directly.

if ( ! class_exists( 'YIT_Video' ) ) {
	/**
	 * YIT_Video class.
	 *
	 * @deprecated 3.5
	 */
	class YIT_Video {

		/**
		 * Generate the HTML for a youtube video
		 *
		 * @param array $args Array of arguments to configure the video to generate.
		 *
		 * @return string
		 */
		public static function youtube( $args = array() ) {
			$defaults = array(
				'id'     => '',
				'url'    => '',
				'width'  => 425,
				'height' => 356,
				'echo'   => false,
			);
			$args     = wp_parse_args( $args, $defaults );

			$id     = $args['id'];
			$url    = $args['url'];
			$width  = $args['width'];
			$height = $args['height'];
			$echo   = $args['echo'];
			$html   = '';

			// Retrieve the video ID if we have only the URL.
			if ( ! $id && ! ! $url ) {
				$id = self::video_id_by_url( $url );
			}

			if ( $id ) {
				$id  = preg_replace( '/[&|&amp;]feature=([\w\-]*)/', '', $id );
				$id  = preg_replace( '/(youtube|vimeo):/', '', $id );
				$url = "https://www.youtube.com/embed/{$id}?wmode=transparent";

				$html = '<div class="post_video youtube">' .
						'<iframe wmode="transparent" width="' . esc_attr( $width ) . '" height="' . esc_attr( $height ) . '" src="' . esc_url( $url ) . '" frameborder="0" allowfullscreen></iframe>' .
						'</div>';
				$html = apply_filters( 'yit_video_youtube', $html );
			}

			if ( $echo ) {
				echo wp_kses_post( $html );
			}

			return $html;
		}

		/**
		 * Generate the HTML for a vimeo video
		 *
		 * @param array $args Array of arguments to configure the video to generate.
		 *
		 * @return string
		 */
		public static function vimeo( $args = array() ) {
			$defaults = array(
				'id'     => '',
				'url'    => '',
				'width'  => 425,
				'height' => 356,
				'echo'   => false,
			);
			$args     = wp_parse_args( $args, $defaults );

			$id     = $args['id'];
			$url    = $args['url'];
			$width  = $args['width'];
			$height = $args['height'];
			$echo   = $args['echo'];
			$html   = '';

			// Retrieve the video ID if we have only the URL.
			if ( ! $id && ! ! $url ) {
				$id = self::video_id_by_url( $url );
			}

			if ( $id ) {
				$id       = preg_replace( '/[&|&amp;]feature=([\w\-]*)/', '', $id );
				$id       = preg_replace( '/(youtube|vimeo):/', '', $id );
				$protocol = is_ssl() ? 'https' : 'http';
				$url      = "{$protocol}://player.vimeo.com/video/{$id}?title=0&amp;byline=0&amp;portrait=0";

				$html = '<div class="post_video youtube">' .
						'<iframe wmode="transparent" width="' . esc_attr( $width ) . '" height="' . esc_attr( $height ) . '" src="' . esc_url( $url ) . '" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>' .
						'</div>';
				$html = apply_filters( 'yit_video_vimeo', $html );
			}

			if ( $echo ) {
				echo wp_kses_post( $html );
			}

			return $html;
		}

		/**
		 * Retrieve video ID from URL
		 *
		 * @param string $url URL of the video.
		 *
		 * @return bool|string
		 */
		public static function video_id_by_url( $url ) {
			$parsed = wp_parse_url( esc_url( $url ) );
			$host   = isset( $parsed['host'] ) ? $parsed['host'] : false;

			switch ( $host ) {
				case 'youtube.com':
				case 'www.youtube.com':
				case 'youtu.be':
				case 'www.youtu.be':
					$id       = self::youtube_id_by_url( $url );
					$video_id = "youtube:$id";
					break;

				case 'www.vimeo.com':
				case 'vimeo.com':
					preg_match( '/http(s)?:\/\/(\w+.)?vimeo\.com\/(.*\/)?([0-9]+)/', $url, $matches );

					$id       = trim( $matches[4], '/' );
					$video_id = "vimeo:$id";
					break;

				default:
					$video_id = false;

			}

			return $video_id;
		}

		/**
		 * Retrieve video ID from URL
		 *
		 * @param string $url URL of the video.
		 *
		 * @return bool|string
		 */
		protected static function youtube_id_by_url( $url ) {
			if ( preg_match( '/http(s)?:\/\/youtu.be/', $url, $matches ) ) {
				$url = wp_parse_url( $url, PHP_URL_PATH );
				$url = str_replace( '/', '', $url );

				return $url;

			} elseif ( preg_match( '/watch/', $url, $matches ) ) {
				$arr = wp_parse_url( $url );
				$url = str_replace( 'v=', '', $arr['query'] );

				return $url;

			} elseif ( preg_match( '/http(s)?:\/\/(\w+.)?youtube.com\/v/', $url, $matches ) ) {
				$arr = wp_parse_url( $url );
				$url = str_replace( '/v/', '', $arr['path'] );

				return $url;

			} elseif ( preg_match( '/http(s)?:\/\/(\w+.)?youtube.com\/embed/', $url, $matches ) ) {
				$arr = wp_parse_url( $url );
				$url = str_replace( '/embed/', '', $arr['path'] );

				return $url;

			} elseif ( preg_match( "#(?<=v=)[a-zA-Z0-9-]+(?=&)|(?<=[0-9]/)[^&\n]+|(?<=v=)[^&\n]+#", $url, $matches ) ) {
				return $matches[0];

			} else {
				return false;
			}
		}

	}
}
PK`x1\eS	�.plugin-fw/includes/class-yit-theme-licence.phpnu�[���<?php
/**
 * YITH Theme License Class.
 *
 * @class   YIT_Theme_Licence
 * @package YITH\PluginFramework\Classes
 */

defined( 'ABSPATH' ) || exit; // Exit if accessed directly.

if ( ! class_exists( 'YIT_Theme_Licence' ) ) {
	/**
	 * YIT_Theme_Licence class.
	 *
	 * @author Andrea Grillo <andrea.grillo@yithemes.com>
	 */
	class YIT_Theme_Licence {
		/**
		 * The single instance of the class.
		 *
		 * @var YIT_Theme_Licence
		 */
		private static $instance;

		/**
		 * Singleton implementation.
		 *
		 * @return YIT_Theme_Licence
		 */
		public static function instance() {
			return ! is_null( self::$instance ) ? self::$instance : self::$instance = new self();
		}

		/**
		 * YIT_Theme_Licence constructor.
		 */
		private function __construct() {
			// Silence is golden.
		}

		/**
		 * Premium products registration.
		 *
		 * @param string $init       The product init identifier.
		 * @param string $secret_key The secret key.
		 * @param string $product_id The product ID.
		 *
		 * @return void
		 * @since    1.0
		 * @author   Andrea Grillo <andrea.grillo@yithemes.com>
		 */
		public function register( $init, $secret_key, $product_id ) {
			if ( ! function_exists( 'YITH_Theme_Licence' ) ) {
				// Try to load YITH_Theme_Licence class.
				yith_plugin_fw_load_update_and_licence_files();
			}

			if ( function_exists( 'YITH_Theme_Licence' ) && is_callable( array( YITH_Theme_Licence(), 'register' ) ) ) {
				YITH_Theme_Licence()->register( $init, $secret_key, $product_id );
			}
		}
	}
}

if ( ! function_exists( 'YIT_Theme_Licence' ) ) {
	/**
	 * Single instance of YIT_Theme_Licence
	 *
	 * @return YIT_Theme_Licence
	 */
	function YIT_Theme_Licence() { // phpcs:ignore WordPress.NamingConventions.ValidFunctionName.FunctionNameInvalid
		return YIT_Theme_Licence::instance();
	}
}
PK`x1\H+U�.plugin-fw/includes/class-yit-plugin-common.phpnu�[���<?php
/**
 * YITH Plugin Common Class.
 *
 * @class   YIT_Plugin_Common
 * @package YITH\PluginFramework\Classes
 */

defined( 'ABSPATH' ) || exit; // Exit if accessed directly.

if ( ! class_exists( 'YIT_Plugin_Common' ) ) {
	/**
	 * YIT_Plugin_Common class.
	 *
	 * @deprecated 3.5
	 */
	class YIT_Plugin_Common {

		/**
		 * Config array
		 *
		 * @var array
		 */
		public static $config = array(
			'slider'                => array( 'nivo', 'elegant' ),
			'awesome_icons'         => array(
				''     => 'no-icon',
				'f042' => 'adjust',
				'f170' => 'adn',
				'f037' => 'align-center',
				'f039' => 'align-justify',
				'f036' => 'align-left',
				'f038' => 'align-right',
				'f0f9' => 'ambulance',
				'f13d' => 'anchor',
				'f17b' => 'android',
				'f103' => 'angle-double-down',
				'f100' => 'angle-double-left',
				'f101' => 'angle-double-right',
				'f102' => 'angle-double-up',
				'f107' => 'angle-down',
				'f104' => 'angle-left',
				'f105' => 'angle-right',
				'f106' => 'angle-up',
				'f179' => 'apple',
				'f187' => 'archive',
				'f0ab' => 'arrow-circle-down',
				'f0a8' => 'arrow-circle-left',
				'f01a' => 'arrow-circle-o-down',
				'f190' => 'arrow-circle-o-left',
				'f18e' => 'arrow-circle-o-right',
				'f01b' => 'arrow-circle-o-up',
				'f0a9' => 'arrow-circle-right',
				'f0aa' => 'arrow-circle-up',
				'f063' => 'arrow-down',
				'f060' => 'arrow-left',
				'f061' => 'arrow-right',
				'f062' => 'arrow-up',
				'f047' => 'arrows',
				'f0b2' => 'arrows-alt',
				'f07e' => 'arrows-h',
				'f07d' => 'arrows-v',
				'f069' => 'asterisk',
				'f04a' => 'backward',
				'f05e' => 'ban',
				'f080' => 'bar-chart-o',
				'f02a' => 'barcode',
				'f0c9' => 'bars',
				'f0fc' => 'beer',
				'f0f3' => 'bell',
				'f0a2' => 'bell-o',
				'f171' => 'bitbucket',
				'f172' => 'bitbucket-square',
				'f032' => 'bold',
				'f0e7' => 'bolt',
				'f02d' => 'book',
				'f02e' => 'bookmark',
				'f097' => 'bookmark-o',
				'f0b1' => 'briefcase',
				'f15a' => 'btc',
				'f188' => 'bug',
				'f0f7' => 'building-o',
				'f0a1' => 'bullhorn',
				'f140' => 'bullseye',
				'f073' => 'calendar',
				'f133' => 'calendar-o',
				'f030' => 'camera',
				'f083' => 'camera-retro',
				'f0d7' => 'caret-down',
				'f0d9' => 'caret-left',
				'f0da' => 'caret-right',
				'f150' => 'caret-square-o-down',
				'f191' => 'caret-square-o-left',
				'f152' => 'caret-square-o-right',
				'f151' => 'caret-square-o-up',
				'f0d8' => 'caret-up',
				'f0a3' => 'certificate',
				'f127' => 'chain-broken',
				'f00c' => 'check',
				'f058' => 'check-circle',
				'f05d' => 'check-circle-o',
				'f14a' => 'check-square',
				'f046' => 'check-square-o',
				'f13a' => 'chevron-circle-down',
				'f137' => 'chevron-circle-left',
				'f138' => 'chevron-circle-right',
				'f139' => 'chevron-circle-up',
				'f078' => 'chevron-down',
				'f053' => 'chevron-left',
				'f054' => 'chevron-right',
				'f077' => 'chevron-up',
				'f10c' => 'circle-o',
				'f0ea' => 'clipboard',
				'f017' => 'clock-o',
				'f0c2' => 'cloud',
				'f0ed' => 'cloud-download',
				'f0ee' => 'cloud-upload',
				'f121' => 'code',
				'f126' => 'code-fork',
				'f0f4' => 'coffee',
				'f013' => 'cog',
				'f085' => 'cogs',
				'f0db' => 'columns',
				'f075' => 'comment',
				'f0e5' => 'comment-o',
				'f086' => 'comments',
				'f0e6' => 'comments-o',
				'f14e' => 'compass',
				'f066' => 'compress',
				'f09d' => 'credit-card',
				'f125' => 'crop',
				'f05b' => 'crosshairs',
				'f13c' => 'css3',
				'f0f5' => 'cutlery',
				'f108' => 'desktop',
				'f192' => 'dot-circle-o',
				'f019' => 'download',
				'f17d' => 'dribbble',
				'f16b' => 'dropbox',
				'f052' => 'eject',
				'f141' => 'ellipsis-h',
				'f142' => 'ellipsis-v',
				'f0e0' => 'envelope',
				'f003' => 'envelope-o',
				'f12d' => 'eraser',
				'f153' => 'eur',
				'f0ec' => 'exchange',
				'f12a' => 'exclamation',
				'f06a' => 'exclamation-circle',
				'f071' => 'exclamation-triangle',
				'f065' => 'expand',
				'f08e' => 'external-link',
				'f14c' => 'external-link-square',
				'f06e' => 'eye',
				'f070' => 'eye-slash',
				'f09a' => 'facebook',
				'f082' => 'facebook-square',
				'f049' => 'fast-backward',
				'f050' => 'fast-forward',
				'f182' => 'female',
				'f0fb' => 'fighter-jet',
				'f15b' => 'file',
				'f016' => 'file-o',
				'f15c' => 'file-text',
				'f0f6' => 'file-text-o',
				'f0c5' => 'files-o',
				'f008' => 'film',
				'f0b0' => 'filter',
				'f06d' => 'fire',
				'f134' => 'fire-extinguisher',
				'f024' => 'flag',
				'f11e' => 'flag-checkered',
				'f11d' => 'flag-o',
				'f0c3' => 'flask',
				'f16e' => 'flickr',
				'f0c7' => 'floppy-o',
				'f07b' => 'folder',
				'f114' => 'folder-o',
				'f07c' => 'folder-open',
				'f115' => 'folder-open-o',
				'f031' => 'font',
				'f04e' => 'forward',
				'f180' => 'foursquare',
				'f119' => 'frown-o',
				'f11b' => 'gamepad',
				'f0e3' => 'gavel',
				'f154' => 'gbp',
				'f06b' => 'gift',
				'f09b' => 'github',
				'f113' => 'github-alt',
				'f092' => 'github-square',
				'f184' => 'gittip',
				'f000' => 'glass',
				'f0ac' => 'globe',
				'f0d5' => 'google-plus',
				'f0d4' => 'google-plus-square',
				'f0fd' => 'h-square',
				'f0a7' => 'hand-o-down',
				'f0a5' => 'hand-o-left',
				'f0a4' => 'hand-o-right',
				'f0a6' => 'hand-o-up',
				'f0a0' => 'hdd-o',
				'f025' => 'headphones',
				'f004' => 'heart',
				'f08a' => 'heart-o',
				'f015' => 'home',
				'f0f8' => 'hospital-o',
				'f13b' => 'html5',
				'f01c' => 'inbox',
				'f03c' => 'indent',
				'f129' => 'info',
				'f05a' => 'info-circle',
				'f156' => 'inr',
				'f16d' => 'instagram',
				'f033' => 'italic',
				'f157' => 'jpy',
				'f084' => 'key',
				'f11c' => 'keyboard-o',
				'f159' => 'krw',
				'f109' => 'laptop',
				'f06c' => 'leaf',
				'f094' => 'lemon-o',
				'f149' => 'level-down',
				'f148' => 'level-up',
				'f0eb' => 'lightbulb-o',
				'f0c1' => 'link',
				'f0e1' => 'linkedin',
				'f08c' => 'linkedin-square',
				'f17c' => 'linux',
				'f03a' => 'list',
				'f022' => 'list-alt',
				'f0cb' => 'list-ol',
				'f0ca' => 'list-ul',
				'f124' => 'location-arrow',
				'f023' => 'lock',
				'f175' => 'long-arrow-down',
				'f177' => 'long-arrow-left',
				'f178' => 'long-arrow-right',
				'f176' => 'long-arrow-up',
				'f0d0' => 'magic',
				'f076' => 'magnet',
				'f183' => 'male',
				'f041' => 'map-marker',
				'f136' => 'maxcdn',
				'f0fa' => 'medkit',
				'f11a' => 'meh-o',
				'f130' => 'microphone',
				'f131' => 'microphone-slash',
				'f068' => 'minus',
				'f056' => 'minus-circle',
				'f146' => 'minus-square',
				'f147' => 'minus-square-o',
				'f10b' => 'mobile',
				'f0d6' => 'money',
				'f186' => 'moon-o',
				'f001' => 'music',
				'f03b' => 'outdent',
				'f18c' => 'pagelines',
				'f0c6' => 'paperclip',
				'f04c' => 'pause',
				'f040' => 'pencil',
				'f14b' => 'pencil-square',
				'f044' => 'pencil-square-o',
				'f095' => 'phone',
				'f098' => 'phone-square',
				'f03e' => 'picture-o',
				'f0d2' => 'pinterest',
				'f0d3' => 'pinterest-square',
				'f072' => 'plane',
				'f04b' => 'play',
				'f144' => 'play-circle',
				'f01d' => 'play-circle-o',
				'f067' => 'plus',
				'f055' => 'plus-circle',
				'f0fe' => 'plus-square',
				'f196' => 'plus-square-o',
				'f011' => 'power-off',
				'f02f' => 'print',
				'f12e' => 'puzzle-piece',
				'f029' => 'qrcode',
				'f128' => 'question',
				'f059' => 'question-circle',
				'f10d' => 'quote-left',
				'f10e' => 'quote-right',
				'f074' => 'random',
				'f021' => 'refresh',
				'f18b' => 'renren',
				'f01e' => 'repeat',
				'f112' => 'reply',
				'f122' => 'reply-all',
				'f079' => 'retweet',
				'f018' => 'road',
				'f135' => 'rocket',
				'f09e' => 'rss',
				'f143' => 'rss-square',
				'f158' => 'rub',
				'f0c4' => 'scissors',
				'f002' => 'search',
				'f010' => 'search-minus',
				'f00e' => 'search-plus',
				'f064' => 'share',
				'f14d' => 'share-square',
				'f045' => 'share-square-o',
				'f132' => 'shield',
				'f07a' => 'shopping-cart',
				'f090' => 'sign-in',
				'f08b' => 'sign-out',
				'f012' => 'signal',
				'f0e8' => 'sitemap',
				'f17e' => 'skype',
				'f118' => 'smile-o',
				'f0dc' => 'sort',
				'f15d' => 'sort-alpha-asc',
				'f15e' => 'sort-alpha-desc',
				'f160' => 'sort-amount-asc',
				'f161' => 'sort-amount-desc',
				'f0dd' => 'sort-asc',
				'f0de' => 'sort-desc',
				'f162' => 'sort-numeric-asc',
				'f163' => 'sort-numeric-desc',
				'f110' => 'spinner',
				'f0c8' => 'square',
				'f096' => 'square-o',
				'f18d' => 'stack-exchange',
				'f16c' => 'stack-overflow',
				'f005' => 'star',
				'f089' => 'star-half',
				'f123' => 'star-half-o',
				'f006' => 'star-o',
				'f048' => 'step-backward',
				'f051' => 'step-forward',
				'f0f1' => 'stethoscope',
				'f04d' => 'stop',
				'f0cc' => 'strikethrough',
				'f12c' => 'subscript',
				'f0f2' => 'suitcase',
				'f185' => 'sun-o',
				'f12b' => 'superscript',
				'f0ce' => 'table',
				'f10a' => 'tablet',
				'f0e4' => 'tachometer',
				'f02b' => 'tag',
				'f02c' => 'tags',
				'f0ae' => 'tasks',
				'f120' => 'terminal',
				'f034' => 'text-height',
				'f035' => 'text-width',
				'f00a' => 'th',
				'f009' => 'th-large',
				'f00b' => 'th-list',
				'f08d' => 'thumb-tack',
				'f165' => 'thumbs-down',
				'f088' => 'thumbs-o-down',
				'f087' => 'thumbs-o-up',
				'f164' => 'thumbs-up',
				'f145' => 'ticket',
				'f00d' => 'times',
				'f057' => 'times-circle',
				'f05c' => 'times-circle-o',
				'f043' => 'tint',
				'f014' => 'trash-o',
				'f181' => 'trello',
				'f091' => 'trophy',
				'f0d1' => 'truck',
				'f195' => 'try',
				'f173' => 'tumblr',
				'f174' => 'tumblr-square',
				'f099' => 'twitter',
				'f081' => 'twitter-square',
				'f0e9' => 'umbrella',
				'f0cd' => 'underline',
				'f0e2' => 'undo',
				'f09c' => 'unlock',
				'f13e' => 'unlock-alt',
				'f093' => 'upload',
				'f155' => 'usd',
				'f007' => 'user',
				'f0f0' => 'user-md',
				'f0c0' => 'users',
				'f03d' => 'video-camera',
				'f194' => 'vimeo-square',
				'f189' => 'vk',
				'f027' => 'volume-down',
				'f026' => 'volume-off',
				'f028' => 'volume-up',
				'f18a' => 'weibo',
				'f193' => 'wheelchair',
				'f17a' => 'windows',
				'f0ad' => 'wrench',
				'f168' => 'xing',
				'f169' => 'xing-square',
				'f167' => 'youtube',
				'f16a' => 'youtube-play',
				'f166' => 'youtube-square',
			),
			'awesome_icons2'        => array(
				'\f042' => 'adjust',
				'\f170' => 'adn',
				'\f037' => 'align-center',
				'\f039' => 'align-justify',
				'\f036' => 'align-left',
				'\f038' => 'align-right',
				'\f0f9' => 'ambulance',
				'\f13d' => 'anchor',
				'\f17b' => 'android',
				'\f209' => 'angellist',
				'\f103' => 'angle-double-down',
				'\f100' => 'angle-double-left',
				'\f101' => 'angle-double-right',
				'\f102' => 'angle-double-up',
				'\f107' => 'angle-down',
				'\f104' => 'angle-left',
				'\f105' => 'angle-right',
				'\f106' => 'angle-up',
				'\f179' => 'apple',
				'\f187' => 'archive',
				'\f1fe' => 'area-chart',
				'\f0ab' => 'arrow-circle-down',
				'\f0a8' => 'arrow-circle-left',
				'\f01a' => 'arrow-circle-o-down',
				'\f190' => 'arrow-circle-o-left',
				'\f18e' => 'arrow-circle-o-right',
				'\f01b' => 'arrow-circle-o-up',
				'\f0a9' => 'arrow-circle-right',
				'\f0aa' => 'arrow-circle-up',
				'\f063' => 'arrow-down',
				'\f060' => 'arrow-left',
				'\f061' => 'arrow-right',
				'\f062' => 'arrow-up',
				'\f047' => 'arrows',
				'\f0b2' => 'arrows-alt',
				'\f07e' => 'arrows-h',
				'\f07d' => 'arrows-v',
				'\f069' => 'asterisk',
				'\f1fa' => 'at',
				'\f04a' => 'backward',
				'\f05e' => 'ban',
				'\f02a' => 'barcode',
				'\f0fc' => 'beer',
				'\f1b4' => 'behance',
				'\f1b5' => 'behance-square',
				'\f0f3' => 'bell',
				'\f0a2' => 'bell-o',
				'\f1f6' => 'bell-slash',
				'\f1f7' => 'bell-slash-o',
				'\f206' => 'bicycle',
				'\f1e5' => 'binoculars',
				'\f1fd' => 'birthday-cake',
				'\f171' => 'bitbucket',
				'\f172' => 'bitbucket-square',
				'\f032' => 'bold',
				'\f1e2' => 'bomb',
				'\f02d' => 'book',
				'\f02e' => 'bookmark',
				'\f097' => 'bookmark-o',
				'\f0b1' => 'briefcase',
				'\f188' => 'bug',
				'\f1ad' => 'building',
				'\f0f7' => 'building-o',
				'\f0a1' => 'bullhorn',
				'\f140' => 'bullseye',
				'\f207' => 'bus',
				'\f20d' => 'buysellads',
				'\f1ec' => 'calculator',
				'\f073' => 'calendar',
				'\f133' => 'calendar-o',
				'\f030' => 'camera',
				'\f083' => 'camera-retro',
				'\f1b9' => 'car',
				'\f0d7' => 'caret-down',
				'\f0d9' => 'caret-left',
				'\f0da' => 'caret-right',
				'\f0d8' => 'caret-up',
				'\f218' => 'cart-arrow-down',
				'\f217' => 'cart-plus',
				'\f20a' => 'cc',
				'\f1f3' => 'cc-amex',
				'\f1f2' => 'cc-discover',
				'\f1f1' => 'cc-mastercard',
				'\f1f4' => 'cc-paypal',
				'\f1f5' => 'cc-stripe',
				'\f1f0' => 'cc-visa',
				'\f0a3' => 'certificate',
				'\f00c' => 'check',
				'\f058' => 'check-circle',
				'\f05d' => 'check-circle-o',
				'\f14a' => 'check-square',
				'\f046' => 'check-square-o',
				'\f13a' => 'chevron-circle-down',
				'\f137' => 'chevron-circle-left',
				'\f138' => 'chevron-circle-right',
				'\f139' => 'chevron-circle-up',
				'\f078' => 'chevron-down',
				'\f053' => 'chevron-left',
				'\f054' => 'chevron-right',
				'\f077' => 'chevron-up',
				'\f1ae' => 'child',
				'\f111' => 'circle',
				'\f10c' => 'circle-o',
				'\f1ce' => 'circle-o-notch',
				'\f017' => 'clock-o',
				'\f0c2' => 'cloud',
				'\f0ed' => 'cloud-download',
				'\f0ee' => 'cloud-upload',
				'\f121' => 'code',
				'\f126' => 'code-fork',
				'\f1cb' => 'codepen',
				'\f0f4' => 'coffee',
				'\f0db' => 'columns',
				'\f075' => 'comment',
				'\f0e5' => 'comment-o',
				'\f086' => 'comments',
				'\f0e6' => 'comments-o',
				'\f14e' => 'compass',
				'\f066' => 'compress',
				'\f20e' => 'connectdevelop',
				'\f1f9' => 'copyright',
				'\f09d' => 'credit-card',
				'\f125' => 'crop',
				'\f05b' => 'crosshairs',
				'\f13c' => 'css3',
				'\f1b2' => 'cube',
				'\f1b3' => 'cubes',
				'\f0f5' => 'cutlery',
				'\f210' => 'dashcube',
				'\f1c0' => 'database',
				'\f1a5' => 'delicious',
				'\f108' => 'desktop',
				'\f1bd' => 'deviantart',
				'\f219' => 'diamond',
				'\f1a6' => 'digg',
				'\f192' => 'dot-circle-o',
				'\f019' => 'download',
				'\f17d' => 'dribbble',
				'\f16b' => 'dropbox',
				'\f1a9' => 'drupal',
				'\f052' => 'eject',
				'\f141' => 'ellipsis-h',
				'\f142' => 'ellipsis-v',
				'\f0e0' => 'envelope',
				'\f003' => 'envelope-o',
				'\f199' => 'envelope-square',
				'\f12d' => 'eraser',
				'\f153' => 'euro',
				'\f0ec' => 'exchange',
				'\f12a' => 'exclamation',
				'\f06a' => 'exclamation-circle',
				'\f065' => 'expand',
				'\f08e' => 'external-link',
				'\f14c' => 'external-link-square',
				'\f06e' => 'eye',
				'\f070' => 'eye-slash',
				'\f1fb' => 'eyedropper',
				'\f09a' => 'facebook-f',
				'\f230' => 'facebook-official',
				'\f082' => 'facebook-square',
				'\f049' => 'fast-backward',
				'\f050' => 'fast-forward',
				'\f1ac' => 'fax',
				'\f182' => 'female',
				'\f0fb' => 'fighter-jet',
				'\f15b' => 'file',
				'\f1c9' => 'file-code-o',
				'\f1c3' => 'file-excel-o',
				'\f016' => 'file-o',
				'\f1c1' => 'file-pdf-o',
				'\f1c5' => 'file-picture-o',
				'\f1c4' => 'file-powerpoint-o',
				'\f1c7' => 'file-sound-o',
				'\f15c' => 'file-text',
				'\f0f6' => 'file-text-o',
				'\f1c8' => 'file-video-o',
				'\f1c2' => 'file-word-o',
				'\f1c6' => 'file-zip-o',
				'\f0c5' => 'files-o',
				'\f008' => 'film',
				'\f0b0' => 'filter',
				'\f06d' => 'fire',
				'\f134' => 'fire-extinguisher',
				'\f024' => 'flag',
				'\f11e' => 'flag-checkered',
				'\f11d' => 'flag-o',
				'\f0e7' => 'flash',
				'\f0c3' => 'flask',
				'\f16e' => 'flickr',
				'\f07b' => 'folder',
				'\f114' => 'folder-o',
				'\f07c' => 'folder-open',
				'\f115' => 'folder-open-o',
				'\f031' => 'font',
				'\f211' => 'forumbee',
				'\f04e' => 'forward',
				'\f180' => 'foursquare',
				'\f119' => 'frown-o',
				'\f11b' => 'gamepad',
				'\f154' => 'gbp',
				'\f1d1' => 'ge',
				'\f013' => 'gear',
				'\f085' => 'gears',
				'\f1db' => 'genderless',
				'\f06b' => 'gift',
				'\f1d3' => 'git',
				'\f1d2' => 'git-square',
				'\f09b' => 'github',
				'\f113' => 'github-alt',
				'\f092' => 'github-square',
				'\f000' => 'glass',
				'\f0ac' => 'globe',
				'\f1a0' => 'google',
				'\f0d5' => 'google-plus',
				'\f0d4' => 'google-plus-square',
				'\f1ee' => 'google-wallet',
				'\f184' => 'gratipay',
				'\f0fd' => 'h-square',
				'\f1d4' => 'hacker-news',
				'\f0a7' => 'hand-o-down',
				'\f0a5' => 'hand-o-left',
				'\f0a4' => 'hand-o-right',
				'\f0a6' => 'hand-o-up',
				'\f0a0' => 'hdd-o',
				'\f1dc' => 'header',
				'\f025' => 'headphones',
				'\f004' => 'heart',
				'\f08a' => 'heart-o',
				'\f21e' => 'heartbeat',
				'\f1da' => 'history',
				'\f015' => 'home',
				'\f0f8' => 'hospital-o',
				'\f236' => 'hotel',
				'\f13b' => 'html5',
				'\f01c' => 'inbox',
				'\f03c' => 'indent',
				'\f129' => 'info',
				'\f05a' => 'info-circle',
				'\f16d' => 'instagram',
				'\f208' => 'ioxhost',
				'\f033' => 'italic',
				'\f1aa' => 'joomla',
				'\f1cc' => 'jsfiddle',
				'\f084' => 'key',
				'\f11c' => 'keyboard-o',
				'\f1ab' => 'language',
				'\f109' => 'laptop',
				'\f202' => 'lastfm',
				'\f203' => 'lastfm-square',
				'\f06c' => 'leaf',
				'\f212' => 'leanpub',
				'\f0e3' => 'legal',
				'\f094' => 'lemon-o',
				'\f149' => 'level-down',
				'\f148' => 'level-up',
				'\f0eb' => 'lightbulb-o',
				'\f201' => 'line-chart',
				'\f0c1' => 'link',
				'\f0e1' => 'linkedin',
				'\f08c' => 'linkedin-square',
				'\f17c' => 'linux',
				'\f03a' => 'list',
				'\f022' => 'list-alt',
				'\f0cb' => 'list-ol',
				'\f0ca' => 'list-ul',
				'\f124' => 'location-arrow',
				'\f023' => 'lock',
				'\f175' => 'long-arrow-down',
				'\f177' => 'long-arrow-left',
				'\f178' => 'long-arrow-right',
				'\f176' => 'long-arrow-up',
				'\f0d0' => 'magic',
				'\f076' => 'magnet',
				'\f183' => 'male',
				'\f041' => 'map-marker',
				'\f222' => 'mars',
				'\f227' => 'mars-double',
				'\f229' => 'mars-stroke',
				'\f22b' => 'mars-stroke-h',
				'\f22a' => 'mars-stroke-v',
				'\f136' => 'maxcdn',
				'\f20c' => 'meanpath',
				'\f23a' => 'medium',
				'\f0fa' => 'medkit',
				'\f11a' => 'meh-o',
				'\f223' => 'mercury',
				'\f130' => 'microphone',
				'\f131' => 'microphone-slash',
				'\f068' => 'minus',
				'\f056' => 'minus-circle',
				'\f146' => 'minus-square',
				'\f147' => 'minus-square-o',
				'\f10b' => 'mobile-phone',
				'\f0d6' => 'money',
				'\f186' => 'moon-o',
				'\f19d' => 'mortar-board',
				'\f21c' => 'motorcycle',
				'\f001' => 'music',
				'\f22c' => 'neuter',
				'\f1ea' => 'newspaper-o',
				'\f19b' => 'openid',
				'\f03b' => 'outdent',
				'\f18c' => 'pagelines',
				'\f1fc' => 'paint-brush',
				'\f0c6' => 'paperclip',
				'\f1dd' => 'paragraph',
				'\f0ea' => 'paste',
				'\f04c' => 'pause',
				'\f1b0' => 'paw',
				'\f1ed' => 'paypal',
				'\f040' => 'pencil',
				'\f14b' => 'pencil-square',
				'\f044' => 'pencil-square-o',
				'\f095' => 'phone',
				'\f098' => 'phone-square',
				'\f03e' => 'picture-o',
				'\f200' => 'pie-chart',
				'\f1a7' => 'pied-piper',
				'\f1a8' => 'pied-piper-alt',
				'\f0d2' => 'pinterest',
				'\f231' => 'pinterest-p',
				'\f0d3' => 'pinterest-square',
				'\f072' => 'plane',
				'\f04b' => 'play',
				'\f144' => 'play-circle',
				'\f01d' => 'play-circle-o',
				'\f1e6' => 'plug',
				'\f067' => 'plus',
				'\f055' => 'plus-circle',
				'\f0fe' => 'plus-square',
				'\f196' => 'plus-square-o',
				'\f011' => 'power-off',
				'\f02f' => 'print',
				'\f12e' => 'puzzle-piece',
				'\f1d6' => 'qq',
				'\f029' => 'qrcode',
				'\f128' => 'question',
				'\f059' => 'question-circle',
				'\f10d' => 'quote-left',
				'\f10e' => 'quote-right',
				'\f074' => 'random',
				'\f1d0' => 'rebel',
				'\f1b8' => 'recycle',
				'\f1a1' => 'reddit',
				'\f1a2' => 'reddit-square',
				'\f021' => 'refresh',
				'\f18b' => 'renren',
				'\f0c9' => 'reorder',
				'\f112' => 'reply',
				'\f122' => 'reply-all',
				'\f079' => 'retweet',
				'\f018' => 'road',
				'\f135' => 'rocket',
				'\f01e' => 'rotate-right',
				'\f09e' => 'rss',
				'\f143' => 'rss-square',
				'\f158' => 'ruble',
				'\f156' => 'rupee',
				'\f0c7' => 'save',
				'\f0c4' => 'scissors',
				'\f002' => 'search',
				'\f010' => 'search-minus',
				'\f00e' => 'search-plus',
				'\f213' => 'sellsy',
				'\f1d8' => 'send',
				'\f1d9' => 'send-o',
				'\f233' => 'server',
				'\f064' => 'share',
				'\f1e0' => 'share-alt',
				'\f1e1' => 'share-alt-square',
				'\f14d' => 'share-square',
				'\f045' => 'share-square-o',
				'\f20b' => 'sheqel',
				'\f132' => 'shield',
				'\f21a' => 'ship',
				'\f214' => 'shirtsinbulk',
				'\f07a' => 'shopping-cart',
				'\f090' => 'sign-in',
				'\f08b' => 'sign-out',
				'\f012' => 'signal',
				'\f215' => 'simplybuilt',
				'\f0e8' => 'sitemap',
				'\f216' => 'skyatlas',
				'\f17e' => 'skype',
				'\f198' => 'slack',
				'\f1de' => 'sliders',
				'\f1e7' => 'slideshare',
				'\f118' => 'smile-o',
				'\f1e3' => 'soccer-ball-o',
				'\f15d' => 'sort-alpha-asc',
				'\f15e' => 'sort-alpha-desc',
				'\f160' => 'sort-amount-asc',
				'\f161' => 'sort-amount-desc',
				'\f0dd' => 'sort-down',
				'\f162' => 'sort-numeric-asc',
				'\f163' => 'sort-numeric-desc',
				'\f0de' => 'sort-up',
				'\f1be' => 'soundcloud',
				'\f197' => 'space-shuttle',
				'\f110' => 'spinner',
				'\f1b1' => 'spoon',
				'\f1bc' => 'spotify',
				'\f0c8' => 'square',
				'\f096' => 'square-o',
				'\f18d' => 'stack-exchange',
				'\f16c' => 'stack-overflow',
				'\f005' => 'star',
				'\f089' => 'star-half',
				'\f123' => 'star-half-o',
				'\f006' => 'star-o',
				'\f1b6' => 'steam',
				'\f1b7' => 'steam-square',
				'\f048' => 'step-backward',
				'\f051' => 'step-forward',
				'\f0f1' => 'stethoscope',
				'\f04d' => 'stop',
				'\f21d' => 'street-view',
				'\f0cc' => 'strikethrough',
				'\f1a4' => 'stumbleupon',
				'\f1a3' => 'stumbleupon-circle',
				'\f12c' => 'subscript',
				'\f239' => 'subway',
				'\f0f2' => 'suitcase',
				'\f185' => 'sun-o',
				'\f12b' => 'superscript',
				'\f1cd' => 'support',
				'\f0ce' => 'table',
				'\f10a' => 'tablet',
				'\f0e4' => 'tachometer',
				'\f02b' => 'tag',
				'\f02c' => 'tags',
				'\f0ae' => 'tasks',
				'\f1ba' => 'taxi',
				'\f1d5' => 'tencent-weibo',
				'\f120' => 'terminal',
				'\f034' => 'text-height',
				'\f035' => 'text-width',
				'\f00a' => 'th',
				'\f009' => 'th-large',
				'\f00b' => 'th-list',
				'\f08d' => 'thumb-tack',
				'\f165' => 'thumbs-down',
				'\f088' => 'thumbs-o-down',
				'\f087' => 'thumbs-o-up',
				'\f164' => 'thumbs-up',
				'\f145' => 'ticket',
				'\f00d' => 'times',
				'\f057' => 'times-circle',
				'\f05c' => 'times-circle-o',
				'\f043' => 'tint',
				'\f150' => 'toggle-down',
				'\f191' => 'toggle-left',
				'\f204' => 'toggle-off',
				'\f205' => 'toggle-on',
				'\f152' => 'toggle-right',
				'\f151' => 'toggle-up',
				'\f238' => 'train',
				'\f224' => 'transgender',
				'\f225' => 'transgender-alt',
				'\f1f8' => 'trash',
				'\f014' => 'trash-o',
				'\f1bb' => 'tree',
				'\f181' => 'trello',
				'\f091' => 'trophy',
				'\f0d1' => 'truck',
				'\f1e4' => 'tty',
				'\f173' => 'tumblr',
				'\f174' => 'tumblr-square',
				'\f195' => 'turkish-lira',
				'\f1e8' => 'twitch',
				'\f099' => 'twitter',
				'\f081' => 'twitter-square',
				'\f0e9' => 'umbrella',
				'\f0cd' => 'underline',
				'\f0e2' => 'undo',
				'\f19c' => 'university',
				'\f127' => 'unlink',
				'\f09c' => 'unlock',
				'\f13e' => 'unlock-alt',
				'\f0dc' => 'unsorted',
				'\f093' => 'upload',
				'\f155' => 'usd',
				'\f007' => 'user',
				'\f0f0' => 'user-md',
				'\f234' => 'user-plus',
				'\f21b' => 'user-secret',
				'\f235' => 'user-times',
				'\f0c0' => 'users',
				'\f221' => 'venus',
				'\f226' => 'venus-double',
				'\f228' => 'venus-mars',
				'\f237' => 'viacoin',
				'\f03d' => 'video-camera',
				'\f194' => 'vimeo-square',
				'\f1ca' => 'vine',
				'\f189' => 'vk',
				'\f027' => 'volume-down',
				'\f026' => 'volume-off',
				'\f028' => 'volume-up',
				'\f071' => 'warning',
				'\f18a' => 'weibo',
				'\f1d7' => 'weixin',
				'\f232' => 'whatsapp',
				'\f193' => 'wheelchair',
				'\f1eb' => 'wifi',
				'\f17a' => 'windows',
				'\f159' => 'won',
				'\f19a' => 'wordpress',
				'\f0ad' => 'wrench',
				'\f168' => 'xing',
				'\f169' => 'xing-square',
				'\f19e' => 'yahoo',
				'\f1e9' => 'yelp',
				'\f157' => 'yen',
				'\f167' => 'youtube',
				'\f16a' => 'youtube-play',
				'\f166' => 'youtube-square',
			),
			'awesome_icons_socials' => array(
				'f170' => 'adn',
				'f17b' => 'android',
				'f179' => 'apple',
				'f171' => 'bitbucket-square',
				'f02e' => 'bookmark',
				'f097' => 'bookmark-o',
				'f15a' => 'btc',
				'f13c' => 'css3',
				'f17d' => 'dribble',
				'f16b' => 'dropbox',
				'f09a' => 'facebook',
				'f082' => 'facebook-square',
				'f16e' => 'flickr',
				'f180' => 'foursquare',
				'f09b' => 'github',
				'f113' => 'github-alt',
				'f092' => 'github-square',
				'f184' => 'gittip',
				'f0d5' => 'google-plus',
				'f0d4' => 'google-plus-square',
				'f13b' => 'html5',
				'f16d' => 'instagram',
				'f0e1' => 'linkedin',
				'f08c' => 'linkedin-square',
				'f17c' => 'Linux',
				'f136' => 'maxcdn',
				'f18c' => 'pagelines',
				'f0d2' => 'pinterest',
				'f0d3' => 'pinterest-square',
				'f18b' => 'renren',
				'f09e' => 'rss',
				'f17e' => 'skype',
				'f18d' => 'stack-exchange',
				'f16c' => 'stack-overflow',
				'f181' => 'trello',
				'f173' => 'tumblr',
				'f174' => 'Tumblr Square',
				'f099' => 'twitter',
				'f081' => 'twitter-square',
				'f194' => 'vimeo-square',
				'f189' => 'vk',
				'f18a' => 'weibo',
				'f17a' => 'windows',
				'f168' => 'xing',
				'f169' => 'xing-square',
				'f167' => 'youtube',
			),
			'header_backgrounds'    => array(),
			'body_backgrounds'      => array(),
			// Tags used in theme options (e.g. %tag%) to have some common information.
			'tag'                   => array(), // Example: 'themeurl' => get_template_directory_uri().
			'cycle_fx'              => array(
				'blindX'      => 'blindX',
				'blindY'      => 'blindY',
				'blindZ'      => 'blindZ',
				'cover'       => 'cover',
				'curtainX'    => 'curtainX',
				'curtainY'    => 'curtainY',
				'fade'        => 'fade',
				'fadeZoom'    => 'fadeZoom',
				'growX'       => 'growX',
				'growY'       => 'growY',
				'scrollUp'    => 'scrollUp',
				'scrollDown'  => 'scrollDown',
				'scrollLeft'  => 'scrollLeft',
				'scrollRight' => 'scrollRight',
				'scrollHorz'  => 'scrollHorz',
				'shuffle'     => 'shuffle',
				'slideX'      => 'slideX',
				'slideY'      => 'slideY',
				'toss'        => 'toss',
				'turnUp'      => 'turnUp',
				'turnLeft'    => 'turnLeft',
				'turnRight'   => 'turnRight',
				'uncover'     => 'uncover',
				'wipe'        => 'wipe',
				'zoom'        => 'zoom',
				'none'        => 'none',
				'turnDown'    => 'turnDown',
				'scrollVert'  => 'scrollVert',
			),
			'animate'               => array(
				''                  => 'none',
				'bounce'            => 'bounce',
				'flash'             => 'flash',
				'pulse'             => 'pulse',
				'shake'             => 'shake',
				'swing'             => 'swing',
				'tada'              => 'tada',
				'wobble'            => 'wobble',
				'bounceIn'          => 'bounceIn',
				'bounceInDown'      => 'bounceInDown',
				'bounceInLeft'      => 'bounceInLeft',
				'bounceInRight'     => 'bounceInRight',
				'bounceInUp'        => 'bounceInUp',
				'fadeIn'            => 'fadeIn',
				'fadeInDown'        => 'fadeInDown',
				'fadeInDownBig'     => 'fadeInDownBig',
				'fadeInLeft'        => 'fadeInLeft',
				'fadeInLeftBig'     => 'fadeInLeftBig',
				'fadeInRight'       => 'fadeInRight',
				'fadeInRightBig'    => 'fadeInRightBig',
				'fadeInUp'          => 'fadeInUp',
				'fadeInUpBig'       => 'fadeInUpBig',
				'flip'              => 'flip',
				'flipInX'           => 'flipInX',
				'flipInY'           => 'flipInY',
				'lightSpeedIn'      => 'lightSpeedIn',
				'rotateIn'          => 'rotateIn',
				'rotateInDownLeft'  => 'rotateInDownLeft',
				'rotateInDownRight' => 'rotateInDownRight',
				'rotateInUpLeft'    => 'rotateInUpLeft',
				'rotateInUpRight'   => 'rotateInUpRight',
				'rollIn'            => 'rollIn',
			),
			'easings'               => array(
				false              => 'none',
				'easeInQuad'       => 'easeInQuad',
				'easeOutQuad'      => 'easeOutQuad',
				'easeInOutQuad'    => 'easeInOutQuad',
				'easeInCubic'      => 'easeInCubic',
				'easeOutCubic'     => 'easeOutCubic',
				'easeInOutCubic'   => 'easeInOutCubic',
				'easeInQuart'      => 'easeInQuart',
				'easeOutQuart'     => 'easeOutQuart',
				'easeInOutQuart'   => 'easeInOutQuart',
				'easeInQuint'      => 'easeInQuint',
				'easeOutQuint'     => 'easeOutQuint',
				'easeInOutQuint'   => 'easeInOutQuint',
				'easeInSine'       => 'easeInSine',
				'easeOutSine'      => 'easeOutSine',
				'easeInOutSine'    => 'easeInOutSine',
				'easeInExpo'       => 'easeInExpo',
				'easeOutExpo'      => 'easeOutExpo',
				'easeInOutExpo'    => 'easeInOutExpo',
				'easeInCirc'       => 'easeInCirc',
				'easeOutCirc'      => 'easeOutCirc',
				'easeInOutCirc'    => 'easeInOutCirc',
				'easeInElastic'    => 'easeInElastic',
				'easeOutElastic'   => 'easeOutElastic',
				'easeInOutElastic' => 'easeInOutElastic',
				'easeInBack'       => 'easeInBack',
				'easeOutBack'      => 'easeOutBack',
				'easeInOutBack'    => 'easeInOutBack',
				'easeInBounce'     => 'easeInBounce',
				'easeOutBounce'    => 'easeOutBounce',
				'easeInOutBounce'  => 'easeInOutBounce',
			),
		);

		/**
		 * Get configuration array
		 *
		 * @return array
		 */
		public static function load() {
			self::load_theme_info();

			return self::$config;
		}

		/**
		 * Return theme data
		 * First the method checks if the wp_get_theme() function exists (WP 3.4.0 at least).
		 * If not, the method calls the deprecated function get_template_directory()
		 */
		protected static function load_theme_info() {
			$theme = wp_get_theme();

			self::$config['theme'] = array(
				'name'        => $theme['Name'],
				'description' => $theme['Description'],
				'author'      => $theme['Author'],
				'authoruri'   => $theme['Author URI'],
				'version'     => $theme['Version'],
				'template'    => $theme['Template'],
				'status'      => $theme['Status'],
				'tags'        => $theme['Tags'],
			);
		}

		/**
		 * Init.
		 */
		public function init() {
			self::$config['header_backgrounds'] = apply_filters( 'yit_header_backgrounds', self::$config['header_backgrounds'] );
			self::$config['body_backgrounds']   = apply_filters( 'yit_body_backgrounds', self::$config['body_backgrounds'] );
		}

		/**
		 * Return the font awesome array icon
		 *
		 * @return array
		 */
		public static function get_awesome_icons() {
			return self::$config['awesome_icons'];
		}

		/**
		 * Return the font awesome array socials icon
		 *
		 * @return array
		 */
		public static function get_awesome_icons_socials() {
			return self::$config['awesome_icons_socials'];
		}


		/**
		 * Return the list of icons
		 *
		 * @return array
		 */
		public static function get_icon_list() {

			$standard_icon_list = array(
				'FontAwesome' => self::$config['awesome_icons2'],
			);

			return apply_filters( 'yit_icon_list', $standard_icon_list );
		}

		/**
		 * Return the data of icon
		 *
		 * @param string $icon The icon.
		 *
		 * @return string
		 */
		public static function get_icon( $icon ) {

			$icon_list = self::get_icon_list();
			$icon_data = '';
			if ( ! ! $icon ) {
				$ic        = explode( ':', $icon );
				$icon_code = array_search( $ic[1], $icon_list[ $ic[0] ], true );

				if ( $icon_code ) {
					$icon_code = ( strpos( $icon_code, '\\' ) === 0 ) ? '&#x' . substr( $icon_code, 1 ) . ';' : $icon_code;
				}

				$icon_data = 'data-font="' . $ic[0] . '" data-key="' . $ic[1] . '" data-icon="' . $icon_code . '"';
			}

			return $icon_data;
		}

		/**
		 * Return the code of the relative awesome class name
		 *
		 * @param string $icon_key The icon key.
		 *
		 * @return string
		 */
		public static function get_awesome_icons_code_by_value( $icon_key ) {
			$awesome_icons = self::$config['awesome_icons'];
			foreach ( $awesome_icons as $code => $key ) {
				if ( $icon_key === $key ) {
					return $code;
				}
			}

			return '';
		}
	}
}
PK`x1\���!�!'plugin-fw/includes/class-yit-assets.phpnu�[���<?php
/**
 * YITH Assets Class. Assets Handler.
 *
 * @class      YIT_Assets
 * @package    YITH\PluginFramework\Classes
 * @since      3.0.0
 */

defined( 'ABSPATH' ) || exit; // Exit if accessed directly.

if ( ! class_exists( 'YIT_Assets' ) ) {
	/**
	 * YIT_Assets class.
	 *
	 * @author     Leanza Francesco <leanzafrancesco@gmail.com>
	 */
	class YIT_Assets {
		/**
		 * The framework version
		 *
		 * @var string
		 */
		public $version = '1.0.0';

		/**
		 * The single instance of the class.
		 *
		 * @var YIT_Assets
		 */
		private static $instance;

		/**
		 * Singleton implementation.
		 *
		 * @return YIT_Assets
		 */
		public static function instance() {
			return ! is_null( self::$instance ) ? self::$instance : self::$instance = new self();
		}

		/**
		 * YIT_Assets constructor.
		 */
		private function __construct() {
			$this->version = yith_plugin_fw_get_version();
			add_action( 'admin_enqueue_scripts', array( $this, 'register_common_scripts' ) );
			add_action( 'wp_enqueue_scripts', array( $this, 'register_common_scripts' ) );
			add_action( 'elementor/editor/before_enqueue_styles', array( $this, 'register_common_scripts' ) );

			add_action( 'admin_enqueue_scripts', array( $this, 'register_styles_and_scripts' ) );
		}

		/**
		 * Register common scripts
		 */
		public function register_common_scripts() {
			wp_register_style( 'yith-plugin-fw-icon-font', YIT_CORE_PLUGIN_URL . '/assets/css/yith-icon.css', array(), $this->version );
			wp_register_style( 'yith-plugin-fw-elementor', YIT_CORE_PLUGIN_URL . '/assets/css/elementor.css', array(), $this->version );
		}

		/**
		 * Register styles and scripts
		 */
		public function register_styles_and_scripts() {
			global $wp_scripts, $woocommerce, $wp_version, $pagenow;

			$screen    = function_exists( 'get_current_screen' ) ? get_current_screen() : false;
			$screen_id = $screen && is_a( $screen, 'WP_Screen' ) ? $screen->id : '';
			$suffix    = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min';

			// Register scripts.
			wp_register_script( 'yith-ui', YIT_CORE_PLUGIN_URL . '/assets/js/yith-ui' . $suffix . '.js', array( 'jquery' ), $this->version, true );
			wp_register_script( 'yith-colorpicker', YIT_CORE_PLUGIN_URL . '/assets/js/yith-colorpicker.min.js', array( 'jquery', 'wp-color-picker' ), '3.0.0', true );
			wp_register_script( 'yith-plugin-fw-fields', YIT_CORE_PLUGIN_URL . '/assets/js/yith-fields' . $suffix . '.js', array( 'jquery', 'jquery-ui-datepicker', 'yith-colorpicker', 'jquery-ui-slider', 'jquery-ui-sortable', 'jquery-tiptip', 'yith-ui' ), $this->version, true );
			wp_register_script( 'yith-date-format', YIT_CORE_PLUGIN_URL . '/assets/js/yith-date-format' . $suffix . '.js', array( 'jquery', 'jquery-ui-datepicker' ), $this->version, true );

			wp_register_script( 'yit-metabox', YIT_CORE_PLUGIN_URL . '/assets/js/metabox' . $suffix . '.js', array( 'jquery', 'wp-color-picker', 'yith-plugin-fw-fields', 'yith-ui' ), $this->version, true );
			wp_register_script( 'yit-plugin-panel', YIT_CORE_PLUGIN_URL . '/assets/js/yit-plugin-panel' . $suffix . '.js', array( 'jquery', 'wp-color-picker', 'jquery-ui-sortable', 'yith-plugin-fw-fields', 'yith-ui' ), $this->version, true );
			wp_register_script( 'colorbox', YIT_CORE_PLUGIN_URL . '/assets/js/jquery.colorbox' . $suffix . '.js', array( 'jquery' ), '1.6.3', true );
			wp_register_script( 'yith_how_to', YIT_CORE_PLUGIN_URL . '/assets/js/how-to' . $suffix . '.js', array( 'jquery' ), $this->version, true );
			wp_register_script( 'yith-plugin-fw-wp-pages', YIT_CORE_PLUGIN_URL . '/assets/js/wp-pages' . $suffix . '.js', array( 'jquery' ), $this->version, false );

			// Register styles.
			wp_register_style( 'yith-plugin-ui', YIT_CORE_PLUGIN_URL . '/assets/css/yith-plugin-ui.css', array( 'yith-plugin-fw-icon-font' ), $this->version );
			wp_register_style( 'yit-plugin-style', YIT_CORE_PLUGIN_URL . '/assets/css/yit-plugin-panel.css', array( 'yith-plugin-ui' ), $this->version );
			wp_register_style( 'jquery-ui-style', YIT_CORE_PLUGIN_URL . '/assets/css/jquery-ui/jquery-ui.min.css', array(), '1.11.4' );
			wp_register_style( 'colorbox', YIT_CORE_PLUGIN_URL . '/assets/css/colorbox.css', array(), $this->version );
			wp_register_style( 'yit-upgrade-to-pro', YIT_CORE_PLUGIN_URL . '/assets/css/yit-upgrade-to-pro.css', array( 'colorbox' ), $this->version );
			wp_register_style( 'yit-plugin-metaboxes', YIT_CORE_PLUGIN_URL . '/assets/css/metaboxes.css', array( 'yith-plugin-ui' ), $this->version );
			wp_register_style( 'yith-plugin-fw-fields', YIT_CORE_PLUGIN_URL . '/assets/css/yith-fields.css', array( 'yith-plugin-ui' ), $this->version );

			wp_register_style( 'raleway-font', '//fonts.googleapis.com/css?family=Raleway:100,200,300,400,500,600,700,800,900', array(), $this->version );

			$wc_version_suffix = '';
			if ( function_exists( 'WC' ) || ! empty( $woocommerce ) ) {
				$woocommerce_version = function_exists( 'WC' ) ? WC()->version : $woocommerce->version;
				$wc_version_suffix   = version_compare( $woocommerce_version, '3.0.0', '>=' ) ? '' : '-wc-2.6';

				wp_register_style( 'woocommerce_admin_styles', $woocommerce->plugin_url() . '/assets/css/admin.css', array(), $woocommerce_version );
			} else {
				wp_register_script( 'jquery-tiptip', YIT_CORE_PLUGIN_URL . '/assets/js/jquery-tiptip/jquery.tipTip' . $suffix . '.js', array( 'jquery' ), '1.3', true );
				wp_register_script( 'select2', YIT_CORE_PLUGIN_URL . '/assets/js/select2/select2.min.js', array( 'jquery' ), '4.0.3', true );
				wp_register_style( 'yith-select2-no-wc', YIT_CORE_PLUGIN_URL . '/assets/css/yith-select2-no-wc.css', false, $this->version );
			}

			wp_register_script( 'yith-enhanced-select', YIT_CORE_PLUGIN_URL . '/assets/js/yith-enhanced-select' . $wc_version_suffix . $suffix . '.js', array( 'jquery', 'select2' ), $this->version, true );
			wp_localize_script(
				'yith-enhanced-select',
				'yith_framework_enhanced_select_params',
				array(
					'ajax_url'               => admin_url( 'admin-ajax.php' ),
					'search_posts_nonce'     => wp_create_nonce( 'search-posts' ),
					'search_terms_nonce'     => wp_create_nonce( 'search-terms' ),
					'search_customers_nonce' => wp_create_nonce( 'search-customers' ),
					'search_pages_nonce'     => wp_create_nonce( 'search-pages' ),
				)
			);

			wp_localize_script(
				'yith-plugin-fw-fields',
				'yith_framework_fw_fields',
				array(
					'admin_url' => admin_url( 'admin.php' ),
					'ajax_url'  => admin_url( 'admin-ajax.php' ),
				)
			);

			wp_localize_script(
				'yith-ui',
				'yith_plugin_fw_ui',
				array(
					'i18n' => array(
						'confirm' => _x( 'Confirm', 'Button text', 'yith-plugin-fw' ),
						'cancel'  => _x( 'Cancel', 'Button text', 'yith-plugin-fw' ),
					),
				)
			);

			wp_localize_script(
				'yith-plugin-fw-wp-pages',
				'yith_plugin_fw_wp_pages',
				array(
					'bulk_delete_confirmation_enabled' => ! ! apply_filters( "yith_plugin_fw_{$screen_id}_bulk_delete_confirmation_enabled", in_array( $pagenow, array( 'edit.php', 'edit-tags.php' ), true ) ),
					'i18n'                             => array(
						'bulk_trash_confirm_title'    => __( 'Confirm trash', 'yith-plugin-fw' ),
						'bulk_trash_confirm_message'  => __( 'Are you sure you want to trash the selected items?', 'yith-plugin-fw' ),
						'bulk_trash_confirm_button'   => _x( 'Yes, move to trash', 'Trash confirmation action', 'yith-plugin-fw' ),
						'bulk_trash_cancel_button'    => __( 'No', 'yith-plugin-fw' ),
						'bulk_delete_confirm_title'   => __( 'Confirm delete', 'yith-plugin-fw' ),
						'bulk_delete_confirm_message' => __( 'Are you sure you want to delete the selected items?', 'yith-plugin-fw' ) . '<br /><br />' . __( 'This action cannot be undone and you will not be able to recover this data.', 'yith-plugin-fw' ),
						'bulk_delete_confirm_button'  => _x( 'Yes, delete', 'Delete confirmation action', 'yith-plugin-fw' ),
						'bulk_delete_cancel_button'   => __( 'No', 'yith-plugin-fw' ),
					),
				)
			);

			// Localize color-picker to avoid issues with WordPress 5.5.
			if ( version_compare( $wp_version, '5.5-RC', '>=' ) ) {
				wp_localize_script(
					'yith-colorpicker',
					'wpColorPickerL10n',
					array(
						'clear'            => __( 'Clear' ),
						'clearAriaLabel'   => __( 'Clear color' ),
						'defaultString'    => __( 'Default' ),
						'defaultAriaLabel' => __( 'Select default color' ),
						'pick'             => __( 'Select Color' ),
						'defaultLabel'     => __( 'Color value' ),
					)
				);
			}

			wp_enqueue_style( 'yith-plugin-fw-admin', YIT_CORE_PLUGIN_URL . '/assets/css/admin.css', array(), $this->version );
		}
	}
}

YIT_Assets::instance();
PK`x1\�$ˎj�j9plugin-fw/includes/class-yit-plugin-panel-woocommerce.phpnu�[���<?php
/**
 * YITH Plugin Panel WooCommerce Class.
 *
 * @class   YIT_Plugin_Panel_WooCommerce
 * @package YITH\PluginFramework\Classes
 */

defined( 'ABSPATH' ) || exit; // Exit if accessed directly.

if ( ! class_exists( 'YIT_Plugin_Panel_WooCommerce' ) ) {
	/**
	 * YIT_Plugin_Panel_WooCommerce class.
	 *
	 * @author Andrea Grillo <andrea.grillo@yithemes.com>
	 * @author Antonio La Rocca <antonio.larocca@yithemes.com>
	 */
	class YIT_Plugin_Panel_WooCommerce extends YIT_Plugin_Panel {
		/**
		 * Version of the class.
		 *
		 * @var string
		 */
		public $version = '1.0.0';

		/**
		 * List of settings parameters.
		 *
		 * @var array
		 */
		public $settings = array();

		/**
		 * WooCommerce types.
		 *
		 * @var array
		 */
		public static $wc_type = array( 'checkbox', 'textarea', 'multiselect', 'multi_select_countries', 'image_width' );

		/**
		 * Body class.
		 *
		 * @var string
		 */
		public static $body_class = ' yith-plugin-fw-panel ';


		/**
		 * Tab Path Files.
		 *
		 * @var array
		 */
		protected $tabs_path_files;

		/**
		 * Are the actions initialized?
		 *
		 * @var bool
		 */
		protected static $actions_initialized = false;

		/**
		 * YIT_Plugin_Panel_WooCommerce constructor.
		 *
		 * @param array $args The panel arguments.
		 */
		public function __construct( $args = array() ) {
			$args = apply_filters( 'yit_plugin_fw_wc_panel_option_args', $args );
			if ( ! empty( $args ) ) {
				if ( isset( $args['parent_page'] ) && 'yit_plugin_panel' === $args['parent_page'] ) {
					$args['parent_page'] = 'yith_plugin_panel';
				}

				$this->settings        = $args;
				$this->tabs_path_files = $this->get_tabs_path_files();

				if ( isset( $this->settings['create_menu_page'] ) && $this->settings['create_menu_page'] ) {
					$this->add_menu_page();
				}

				if ( ! empty( $this->settings['links'] ) ) {
					$this->links = $this->settings['links'];
				}

				add_action( 'admin_init', array( $this, 'set_default_options' ) );
				add_action( 'admin_menu', array( $this, 'add_setting_page' ) );
				add_action( 'admin_menu', array( $this, 'add_premium_version_upgrade_to_menu' ), 100 );
				add_action( 'admin_bar_menu', array( $this, 'add_admin_bar_menu' ), 100 );
				add_action( 'admin_enqueue_scripts', array( $this, 'admin_enqueue_scripts' ) );
				add_action( 'admin_init', array( $this, 'woocommerce_update_options' ) );
				add_filter( 'woocommerce_screen_ids', array( $this, 'add_allowed_screen_id' ) );

				add_filter( 'woocommerce_admin_settings_sanitize_option', array( $this, 'maybe_unserialize_panel_data' ), 10, 3 );

				add_action( 'yith_plugin_fw_get_field_after', array( $this, 'add_yith_ui' ) );
				add_action( 'yith_plugin_fw_before_woocommerce_panel', array( $this, 'add_plugin_banner' ), 10, 1 );
				add_action( 'admin_action_yith_plugin_fw_save_toggle_element', array( $this, 'save_toggle_element_options' ) );
				add_filter( 'woocommerce_admin_settings_sanitize_option', array( $this, 'sanitize_onoff_value' ), 20, 3 );

				add_action( 'admin_enqueue_scripts', array( $this, 'init_wp_with_tabs' ), 11 );
				add_action( 'admin_init', array( $this, 'maybe_redirect_to_proper_wp_page' ) );

				// Init actions once to prevent multiple initialization.
				static::init_actions();
			}
		}

		/**
		 * Init actions.
		 *
		 * @since  3.0.0
		 * @author Leanza Francesco <leanzafrancesco@gmail.com>
		 */
		protected static function init_actions() {
			if ( ! static::$actions_initialized ) {
				add_action( 'woocommerce_admin_field_boxinfo', array( __CLASS__, 'add_infobox' ), 10, 1 );
				add_action( 'woocommerce_admin_field_yith-field', array( __CLASS__, 'add_yith_field' ), 10, 1 );
				add_filter( 'admin_body_class', array( __CLASS__, 'admin_body_class' ) );

				add_filter( 'woocommerce_admin_settings_sanitize_option', array( __CLASS__, 'sanitize_option' ), 10, 3 );

				// Sort plugins by name in YITH Plugins menu.
				add_action( 'admin_menu', array( __CLASS__, 'sort_plugins' ), 90 );

				add_filter( 'add_menu_classes', array( __CLASS__, 'add_menu_class_in_yith_plugin' ) );

				static::$actions_initialized = true;
			}
		}

		/**
		 * Show a tabbed panel to setting page
		 * a callback function called by add_setting_page => add_submenu_page
		 *
		 * @author   Andrea Grillo      <andrea.grillo@yithemes.com>
		 * @author   Antonio La Rocca   <antonio.larocca@yithemes.com>
		 */
		public function yit_panel() {
			$additional_info = array(
				'current_tab'     => $this->get_current_tab(),
				'current_sub_tab' => $this->get_current_sub_tab(),
				'available_tabs'  => $this->settings['admin-tabs'],
				'default_tab'     => $this->get_available_tabs( true ),
				'page'            => $this->settings['page'],
				'wrap_class'      => isset( $this->settings['class'] ) ? $this->settings['class'] : '',
			);

			$additional_info                    = apply_filters( 'yith_admin_tab_params', $additional_info );
			$additional_info['additional_info'] = $additional_info;

			extract( $additional_info ); // phpcs:ignore WordPress.PHP.DontExtract.extract_extract
			require YIT_CORE_PLUGIN_TEMPLATE_PATH . '/panel/woocommerce/woocommerce-panel.php';
		}

		/**
		 * Show a input fields to upload images
		 *
		 * @param string $option_value The option value.
		 *
		 * @return   string
		 * @author   Emanuela Castorina      <emanuela.castorina@yithemes.com>
		 */
		public function yit_upload_update( $option_value ) {
			return $option_value;
		}

		/**
		 * Show a input fields to upload images
		 *
		 * @param array $args The arguments.
		 *
		 * @author   Emanuela Castorina      <emanuela.castorina@yithemes.com>
		 */
		public function yit_upload( $args = array() ) {
			if ( ! empty( $args ) ) {
				$args['value'] = ( get_option( $args['id'] ) ) ? get_option( $args['id'] ) : $args['default'];
				extract( $args ); // phpcs:ignore WordPress.PHP.DontExtract.extract_extract

				include YIT_CORE_PLUGIN_TEMPLATE_PATH . '/panel/woocommerce/woocommerce-upload.php';
			}
		}

		/**
		 * Add the plugin woocommerce page settings in the screen ids of woocommerce
		 *
		 * @param array $screen_ids Screen IDs.
		 *
		 * @return array
		 * @author Antonino Scarfì <antonino.scarfi@yithemes.com>
		 */
		public function add_allowed_screen_id( $screen_ids ) {
			global $admin_page_hooks;

			if ( ! isset( $admin_page_hooks[ $this->settings['parent_page'] ] ) ) {
				return $screen_ids;
			}

			$screen_ids[] = $admin_page_hooks[ $this->settings['parent_page'] ] . '_page_' . $this->settings['page'];

			return $screen_ids;
		}

		/**
		 * Returns current active tab slug
		 *
		 * @return string
		 * @since    2.0.0
		 * @author   Andrea Grillo      <andrea.grillo@yithemes.com>
		 * @author   Antonio La Rocca   <antonio.larocca@yithemes.com>
		 */
		public function get_current_tab() {
			// phpcs:disable WordPress.Security.NonceVerification.Recommended
			global $pagenow;
			$tabs = $this->get_available_tabs();
			$tab  = $tabs[0];

			if ( 'admin.php' === $pagenow && isset( $_REQUEST['tab'] ) && in_array( $_REQUEST['tab'], $tabs, true ) ) {
				$tab = sanitize_key( wp_unslash( $_REQUEST['tab'] ) );
			} elseif ( isset( $_REQUEST['tab'] ) && 'help' === $_REQUEST['tab'] && ! empty( $this->settings['help_tab'] ) ) {
				$tab = 'help';
			}

			return apply_filters( 'yith_wc_plugin_panel_current_tab', $tab );
			// phpcs:enable
		}

		/**
		 * Return available tabs
		 * read all options and show sections and fields
		 *
		 * @param bool $default false for all tabs slug, true for current tab.
		 *
		 * @return mixed Array tabs | String current tab
		 * @author   Andrea Grillo      <andrea.grillo@yithemes.com>
		 * @author   Antonio La Rocca   <antonio.larocca@yithemes.com>
		 */
		public function get_available_tabs( $default = false ) {
			$tabs = array_keys( $this->settings['admin-tabs'] );

			return $default ? $tabs[0] : $tabs;
		}


		/**
		 * Add sections and fields to setting panel
		 * read all options and show sections and fields
		 *
		 * @return void
		 * @author   Andrea Grillo      <andrea.grillo@yithemes.com>
		 * @author   Antonio La Rocca   <antonio.larocca@yithemes.com>
		 */
		public function add_fields() {
			$yit_options = $this->get_main_array_options();
			$option_key  = $this->get_current_option_key();

			if ( ! $option_key ) {
				return;
			}

			woocommerce_admin_fields( $yit_options[ $option_key ] );
		}

		/**
		 * Print the panel content
		 * check if the tab is a wc options tab or custom tab and print the content
		 *
		 * @return void
		 * @author   Andrea Grillo      <andrea.grillo@yithemes.com>
		 * @author   Antonio La Rocca   <antonio.larocca@yithemes.com>
		 * @author   Leanza Francesco   <leanzafrancesco@gmail.com>
		 */
		public function print_panel_content() {
			$yit_options        = $this->get_main_array_options();
			$page               = $this->settings['page'];
			$option_key         = $this->get_current_option_key();
			$custom_tab_options = $this->get_custom_tab_options( $yit_options, $option_key );

			$this->print_tabs_nav();

			if ( $custom_tab_options ) {
				$this->print_custom_tab( $custom_tab_options );
			} elseif ( $this->is_help_tab() ) {
				$this->print_help_tab();
			} else {
				include YIT_CORE_PLUGIN_TEMPLATE_PATH . '/panel/woocommerce/woocommerce-form.php';
			}
		}

		/**
		 * Update options
		 *
		 * @return void
		 * @author   Andrea Grillo      <andrea.grillo@yithemes.com>
		 * @author   Antonio La Rocca   <antonio.larocca@yithemes.com>
		 * @see      woocommerce_update_options function
		 * @internal fire two action (before and after update): yit_panel_wc_before_update and yit_panel_wc_after_update
		 */
		public function woocommerce_update_options() {

			if ( isset( $_POST['yit_panel_wc_options_nonce'] ) && wp_verify_nonce( sanitize_key( wp_unslash( $_POST['yit_panel_wc_options_nonce'] ) ), 'yit_panel_wc_options_' . $this->settings['page'] ) ) {

				do_action( 'yit_panel_wc_before_update' );

				$yit_options = $this->get_main_array_options();
				$option_key  = $this->get_current_option_key();
				$yit_options = $this->check_for_save_single_option( $yit_options );

				if ( version_compare( WC()->version, '2.4.0', '>=' ) ) {
					if ( ! empty( $yit_options[ $option_key ] ) ) {
						foreach ( $yit_options[ $option_key ] as $option ) {
							if ( isset( $option['id'] ) && isset( $_POST[ $option['id'] ], $option['type'] ) && ! in_array( $option['type'], self::$wc_type, true ) && 'yith-field' !== $option['type'] ) {
								$_POST[ $option['id'] ] = maybe_serialize( $_POST[ $option['id'] ] ); // phpcs:ignore WordPress.Security.ValidatedSanitizedInput.MissingUnslash,WordPress.Security.ValidatedSanitizedInput.InputNotSanitized
							}
						}
					}
				}

				foreach ( $_POST as $name => $value ) {
					// Check if current POST var name ends with a specific needle and make some stuff here.
					$attachment_id_needle = '-yith-attachment-id';
					$pos                  = strlen( $name ) - strlen( $attachment_id_needle );
					$is_hidden_input      = $pos >= 0 && strpos( $name, $attachment_id_needle, $pos ) !== false;
					if ( $is_hidden_input ) {
						// Is an input element of type "hidden" coupled with an input element for selecting an element from the media gallery.
						$yit_options[ $option_key ][ $name ] = array(
							'type' => 'text',
							'id'   => $name,
						);
					}
				}

				woocommerce_update_options( $yit_options[ $option_key ] );

				do_action( 'yit_panel_wc_after_update' );

			} elseif (
				isset( $_REQUEST['yit-action'] ) && 'wc-options-reset' === sanitize_key( wp_unslash( $_REQUEST['yit-action'] ) )
				&&
				isset( $_POST['yith_wc_reset_options_nonce'] ) && wp_verify_nonce( sanitize_key( wp_unslash( $_POST['yith_wc_reset_options_nonce'] ) ), 'yith_wc_reset_options_' . $this->settings['page'] )
			) {

				do_action( 'yit_panel_wc_before_reset' );

				$yit_options = $this->get_main_array_options();
				$option_key  = $this->get_current_option_key();
				$yit_options = $this->check_for_save_single_option( $yit_options );

				// Collect an array of options to be saved as array and not as single option.
				$array_options = array();

				foreach ( $yit_options[ $option_key ] as $id => $option ) {
					// Make sure option id is not an array.
					$matches = array();
					isset( $option['id'] ) && preg_match( '/(.*)\[(.*)\]/', $option['id'], $matches );

					if ( ! empty( $matches ) && isset( $option['default'] ) ) {
						if ( ! empty( $matches[2] ) ) {
							$array_options[ $matches[1] ][ $matches[2] ] = $option['default'];
						} else {
							$array_options[ $matches[1] ][] = $option['default'];
						}
					} else {
						if ( isset( $option['yith-type'] ) && 'multi-colorpicker' === $option['yith-type'] && ! empty( $option['colorpickers'] ) ) {
							$default = array();
							foreach ( $option['colorpickers'] as $colorpicker ) {
								$default[ $colorpicker['id'] ] = isset( $colorpicker['default'] ) ? $colorpicker['default'] : '';
							}
							update_option( $option['id'], $default );
						} elseif ( isset( $option['default'] ) ) {
							update_option( $option['id'], $option['default'] );
						}
					}
				}

				// Save array options if any.
				foreach ( $array_options as $key => $value ) {
					update_option( $key, $value );
				}

				do_action( 'yit_panel_wc_after_reset' );
			}
		}

		/**
		 * Add Admin WC Style and Scripts
		 *
		 * @author   Andrea Grillo      <andrea.grillo@yithemes.com>
		 * @author   Antonio La Rocca   <antonio.larocca@yithemes.com>
		 * @author   Leanza Francesco   <leanzafrancesco@gmail.com>
		 */
		public function admin_enqueue_scripts() {
			global $woocommerce, $pagenow;

			if ( 'customize.php' !== $pagenow ) {
				wp_enqueue_style( 'wp-jquery-ui-dialog' );
			}

			$screen            = function_exists( 'get_current_screen' ) ? get_current_screen() : false;
			$assets_screen_ids = (array) apply_filters( 'yith_plugin_fw_wc_panel_screen_ids_for_assets', array() );

			if ( $screen && ( 'admin.php' === $pagenow && strpos( $screen->id, $this->settings['page'] ) !== false ) || in_array( $screen->id, $assets_screen_ids, true ) ) {
				$woocommerce_version       = function_exists( 'WC' ) ? WC()->version : $woocommerce->version;
				$woocommerce_settings_deps = array( 'jquery', 'jquery-ui-datepicker', 'jquery-ui-sortable', 'iris' );

				if ( version_compare( '2.5', $woocommerce_version, '<=' ) ) {
					$woocommerce_settings_deps[] = 'select2';
				} else {
					$woocommerce_settings_deps[] = 'jquery-ui-dialog';
					$woocommerce_settings_deps[] = 'chosen';
				}

				wp_enqueue_media();

				wp_enqueue_style( 'yith-plugin-fw-fields' );
				wp_enqueue_style( 'woocommerce_admin_styles' );
				wp_enqueue_style( 'raleway-font' );

				wp_enqueue_script( 'woocommerce_settings', $woocommerce->plugin_url() . '/assets/js/admin/settings.min.js', $woocommerce_settings_deps, $woocommerce_version, true );
				wp_localize_script(
					'woocommerce_settings',
					'woocommerce_settings_params',
					array(
						'i18n_nav_warning' => __( 'The changes you have made will be lost if you leave this page.', 'yith-plugin-fw' ),
					)
				);
				wp_enqueue_script( 'yith-plugin-fw-fields' );
			}

			if ( $screen && ( 'admin.php' === $pagenow && yith_plugin_fw_is_panel() ) || in_array( $screen->id, $assets_screen_ids, true ) ) {
				wp_enqueue_media();
				wp_enqueue_style( 'yit-plugin-style' );
				wp_enqueue_script( 'yit-plugin-panel' );
			}

			if ( $screen && 'admin.php' === $pagenow && strpos( $screen->id, 'yith_upgrade_premium_version' ) !== false ) {
				wp_enqueue_style( 'yit-upgrade-to-pro' );
				wp_enqueue_script( 'colorbox' );
			}
		}

		/**
		 * Default options
		 * Sets up the default options used on the settings page
		 */
		public function set_default_options() {
			// Check if the default options for this panel are already set.
			$page                = $this->settings['page'];
			$default_options_set = get_option( 'yit_plugin_fw_panel_wc_default_options_set', array() );
			if ( isset( $default_options_set[ $page ] ) && $default_options_set[ $page ] ) {
				return;
			}

			$default_options = $this->get_main_array_options();

			foreach ( $default_options as $section ) {
				foreach ( $section as $value ) {
					if ( ( isset( $value['std'] ) || isset( $value['default'] ) ) && isset( $value['id'] ) ) {
						$default_value = ( isset( $value['default'] ) ) ? $value['default'] : $value['std'];

						if ( 'image_width' === $value['type'] ) {
							add_option( $value['id'] . '_width', $default_value );
							add_option( $value['id'] . '_height', $default_value );
						} else {
							add_option( $value['id'], $default_value );
						}
					}
				}
			}

			// Set the flag for the default options of this panel.
			$default_options_set[ $page ] = true;
			update_option( 'yit_plugin_fw_panel_wc_default_options_set', $default_options_set );
		}

		/**
		 * Delete the "default options added" option
		 *
		 * @author   Leanza Francesco   <leanzafrancesco@gmail.com>
		 */
		public static function delete_default_options_set_option() {
			delete_option( 'yit_plugin_fw_panel_wc_default_options_set' );
		}

		/**
		 * Add the WooCommerce body class in plugin panel page
		 *
		 * @param string $admin_body_classes The body classes.
		 *
		 * @return string Filtered body classes
		 * @author Andrea Grillo <andrea.grillo@yithemes.com>
		 * @since  2.0
		 */
		public static function admin_body_class( $admin_body_classes ) {
			global $pagenow;

			$assets_screen_ids = (array) apply_filters( 'yith_plugin_fw_wc_panel_screen_ids_for_assets', array() );

			if ( ( 'admin.php' === $pagenow && ( strpos( get_current_screen()->id, 'yith-plugins_page' ) !== false || in_array( get_current_screen()->id, $assets_screen_ids, true ) ) ) ) {
				$admin_body_classes = ! substr_count( $admin_body_classes, self::$body_class ) ? $admin_body_classes . self::$body_class : $admin_body_classes;
				$admin_body_classes = ! substr_count( $admin_body_classes, 'woocommerce' ) ? $admin_body_classes . ' woocommerce ' : $admin_body_classes;
			}

			return $admin_body_classes;
		}

		/**
		 * Maybe unserialize panel data
		 *
		 * @param mixed  $value     Option value.
		 * @param mixed  $option    Option settings array.
		 * @param string $raw_value Raw option value.
		 *
		 * @return mixed Filtered return value
		 * @author Antonio La Rocca <antonio.larocca@yithemes.com>
		 * @since  2.0
		 */
		public function maybe_unserialize_panel_data( $value, $option, $raw_value ) {
			if ( ! version_compare( WC()->version, '2.4.0', '>=' ) || ! isset( $option['type'] ) || in_array( $option['type'], self::$wc_type, true ) || 'yith-field' === $option['type'] ) {
				return $value;
			}

			$yit_options = $this->get_main_array_options();
			$option_key  = $this->get_current_option_key();

			if ( ! empty( $yit_options[ $option_key ] ) ) {
				foreach ( $yit_options[ $option_key ] as $option_array ) {
					if ( isset( $option_array['id'] ) && isset( $option['id'] ) && $option_array['id'] === $option['id'] ) {
						return maybe_unserialize( $value );
					}
				}
			}

			return $value;
		}

		/**
		 * Sanitize Option
		 *
		 * @param mixed $value     Option value.
		 * @param mixed $option    Option settings array.
		 * @param mixed $raw_value Raw option value.
		 *
		 * @return mixed Filtered return value
		 * @author Leanza Francesco <leanzafrancesco@gmail.com>
		 * @since  3.0.0
		 */
		public static function sanitize_option( $value, $option, $raw_value ) {
			if ( isset( $option['type'] ) && 'yith-field' === $option['type'] ) {
				$value    = $raw_value; // We need the raw value to avoid the wc_clean. Note: the raw_value is already un-slashed.
				$type     = isset( $option['yith-type'] ) ? $option['yith-type'] : false;
				$multiple = ! empty( $option['multiple'] );

				switch ( $type ) {
					case 'checkbox':
					case 'onoff':
						$value = yith_plugin_fw_is_true( $value ) ? 'yes' : 'no';
						break;
					case 'checkbox-array':
						$value = ! ! $value && is_array( $value ) ? $value : array();
						break;
					case 'select-buttons':
						$value = ! empty( $value ) ? $value : array();
						break;
					case 'date-format':
						if ( '\c\u\s\t\o\m' === $value ) {
							// phpcs:ignore WordPress.Security.NonceVerification.Recommended
							$custom = isset( $_REQUEST[ $option['id'] . '_text' ] ) ? sanitize_text_field( wp_unslash( $_REQUEST[ $option['id'] . '_text' ] ) ) : $option['default'];
							$value  = $custom;
						}
						break;
					case 'toggle-element':
						if ( $value && isset( $option['elements'] ) && ! empty( $option['elements'] ) ) {

							if ( isset( $value['box_id'] ) ) {
								unset( $value['box_id'] );
							}

							foreach ( $value as $index => $single_toggle ) {

								if ( $value && isset( $option['onoff_field'] ) && ! empty( $option['onoff_field'] ) ) {
									$on_off              = $option['onoff_field'];
									$on_off['type']      = 'yith-field';
									$on_off['yith-type'] = 'onoff';
									$on_off_id           = $on_off['id'];

									$value[ $index ][ $on_off_id ] = isset( $single_toggle[ $on_off_id ] ) ? self::sanitize_option( $single_toggle[ $on_off_id ], $on_off, $single_toggle[ $on_off_id ] ) : 'no';
								}

								foreach ( $option['elements'] as $element ) {
									$element_value = isset( $value[ $index ][ $element['id'] ] ) ? $value[ $index ][ $element['id'] ] : false;
									// We don't need to un-slash the value, since it's already un-slashed.
									$value[ $index ][ $element['id'] ] = self::sanitize_option( $element_value, $element, $element_value );
								}
							}
						}
						break;
				}

				if ( $multiple && empty( $value ) ) {
					$value = array();
				}

				if ( ! empty( $option['yith-sanitize-callback'] ) && is_callable( $option['yith-sanitize-callback'] ) ) {
					$value = call_user_func( $option['yith-sanitize-callback'], $value );
				}
			}

			return apply_filters( 'yith_plugin_fw_wc_panel_sanitize_option', $value, $option, $raw_value );
		}

		/**
		 * Add YITH Fields.
		 *
		 * @param array $field The field.
		 *
		 * @return   void
		 * @since    3.0.0
		 * @author   Leanza Francesco <leanzafrancesco@gmail.com>
		 */
		public static function add_yith_field( $field = array() ) {
			if ( ! empty( $field ) && isset( $field['yith-type'] ) ) {
				$field['type'] = $field['yith-type'];
				unset( $field['yith-type'] );

				$field['id']      = isset( $field['id'] ) ? $field['id'] : '';
				$field['name']    = $field['id'];
				$field['default'] = isset( $field['default'] ) ? $field['default'] : '';

				$value = apply_filters( 'yith_plugin_fw_wc_panel_pre_field_value', null, $field );
				if ( is_null( $value ) ) {
					if ( 'toggle-element' === $field['type'] || 'toggle-element-fixed' === $field['type'] ) {
						$value = get_option( $field['id'], $field['default'] );
					} else {
						$value = WC_Admin_Settings::get_option( $field['id'], $field['default'] );
					}
				}
				$field['value'] = $value;

				// Let's filter field data just before print.
				$field = apply_filters( 'yith_plugin_fw_wc_panel_field_data', $field );

				require YIT_CORE_PLUGIN_TEMPLATE_PATH . '/panel/woocommerce/woocommerce-option-row.php';
			}
		}

		/**
		 *  Save the content of the toggle element present inside the panel.
		 *  Called by the action 'admin_action_yith_plugin_fw_save_toggle_element'
		 *  via Ajax
		 *
		 * @author Emanuela Castorina
		 */
		public function save_toggle_element_options() {

			check_ajax_referer( 'save-toggle-element', 'security' );

			if ( ! current_user_can( $this->settings['capability'] ) ) {
				wp_die( - 1 );
			}

			$posted      = $_POST;
			$tabs        = $this->get_available_tabs();
			$yit_options = $this->get_main_array_options();
			$current_tab = isset( $_REQUEST['tab'] ) ? sanitize_key( wp_unslash( $_REQUEST['tab'] ) ) : false;
			$current_tab = ! ! $current_tab && in_array( $current_tab, $tabs, true ) ? $current_tab : $tabs[0];
			$option_id   = isset( $_REQUEST['toggle_id'] ) ? sanitize_key( wp_unslash( $_REQUEST['toggle_id'] ) ) : '';
			$updated     = false;

			if ( ! empty( $yit_options[ $current_tab ] ) && ! empty( $option_id ) ) {
				$tab_options = $yit_options[ $current_tab ];
				foreach ( $tab_options as $key => $item ) {
					if ( ! isset( $item['id'] ) ) {
						unset( $tab_options[ $key ] );
					}
				}

				$option_array = array_combine( wp_list_pluck( $tab_options, 'id' ), $tab_options );
				if ( isset( $option_array[ $option_id ] ) ) {
					$value = isset( $posted[ $option_id ] ) ? $posted[ $option_id ] : '';

					// Drag and drop.
					$order_elements = isset( $posted['yith_toggle_elements_order_keys'] ) ? explode( ',', $posted['yith_toggle_elements_order_keys'] ) : false;
					if ( $order_elements ) {
						$i         = 0;
						$new_value = array();
						foreach ( $order_elements as $key ) {
							$index               = apply_filters( 'yith_toggle_elements_index', $i ++, $key );
							$new_value[ $index ] = $value[ $key ];
						}

						$value = $new_value;
					}

					$value   = wp_unslash( $value ); // The value must be un-slashed before using it in self::sanitize_option.
					$value   = self::sanitize_option( $value, $option_array[ $option_id ], $value );
					$updated = update_option( $option_id, $value );
				}
			}

			return $updated;
		}

		/**
		 * Print tabs navigation.
		 *
		 * @param array $args The arguments.
		 */
		public function print_tabs_nav( $args = array() ) {
			$defaults = array(
				'premium_class' => 'yith-premium',
				'parent_page'   => '',
				'wrapper_class' => 'nav-tab-wrapper woo-nav-tab-wrapper',
			);
			$args     = wp_parse_args( $args, $defaults );

			parent::print_tabs_nav( $args );
		}

		/**
		 * Sanitize OnOff Option
		 *
		 * @param mixed  $value     Option value.
		 * @param mixed  $option    Option settings array.
		 * @param string $raw_value Raw option value.
		 *
		 * @return mixed Filtered return value
		 * @author Andrea Grillo <andrea.grillo@yithemes.com>
		 * @since  3.0.0
		 */
		public static function sanitize_onoff_value( $value, $option, $raw_value ) {
			if ( isset( $option['type'] ) && in_array( $option['type'], array( 'checkbox', 'onoff' ), true ) ) {
				$value = yith_plugin_fw_is_true( $raw_value ) ? 'yes' : 'no';

				if ( ! empty( $option['yith-sanitize-callback'] ) && is_callable( $option['yith-sanitize-callback'] ) ) {
					$value = call_user_func( $option['yith-sanitize-callback'], $value );
				}
			}

			return $value;
		}

		/**
		 * Check if need to save the toggle element to a single options instead of an array
		 *
		 * @param array $yit_options Original options array.
		 *
		 * @return mixed|array New options array
		 * @author Andrea Grillo <andrea.grillo@yithemes.com>
		 * @since  3.0.0
		 */
		public function check_for_save_single_option( $yit_options ) {
			foreach ( $yit_options as $key => $options_list ) {
				foreach ( $options_list as $value ) {
					if ( ! empty( $value['yith-type'] ) && 'toggle-element-fixed' === $value['yith-type'] && isset( $value['save_single_options'] ) && true === $value['save_single_options'] ) {
						$yit_options[ $key ] = array_merge( $yit_options[ $key ], $value['elements'] );
					}
				}
			}

			return $yit_options;
		}
	}
}
PK`x1\ ��/�/)plugin-fw/includes/class-yit-pointers.phpnu�[���<?php
/**
 * YITH Pointers Class.
 *
 * @class   YIT_Pointers
 * @package YITH\PluginFramework\Classes
 */

defined( 'ABSPATH' ) || exit; // Exit if accessed directly.

if ( ! class_exists( 'YIT_Pointers' ) ) {
	/**
	 * YIT_Pointers class.
	 * Initializes the pointers.
	 */
	class YIT_Pointers {

		/**
		 * The single instance of the class.
		 *
		 * @var YIT_Pointers
		 */
		private static $instance;

		/**
		 * The screen IDs.
		 *
		 * @var array
		 */
		public $screen_ids = array();

		/**
		 * The pointers.
		 *
		 * @var array
		 */
		public $pointers = array();

		/**
		 * Special Screen Ids that require a particular action
		 *
		 * @var array|mixed|void
		 */
		public $special_screen = array();

		/**
		 * Default pointers.
		 *
		 * @var array|mixed
		 */
		protected $default_pointer = array();

		/**
		 * The default position
		 *
		 * @var string[]
		 */
		protected $default_position = array(
			'edge'  => 'left',
			'align' => 'center',
		);

		/**
		 * Singleton implementation.
		 *
		 * @return YIT_Pointers
		 */
		public static function instance() {
			return ! is_null( self::$instance ) ? self::$instance : self::$instance = new self();
		}

		/**
		 * Construct
		 *
		 * @author Andrea Grillo <andrea.grillo@yithemes.com>
		 * @since  1.0
		 */
		private function __construct() {

			$title            = __( 'Plugins Activated', 'yith-plugin-fw' );
			$message          = __( 'From now on, you can find all plugin options in YITH menu. Plugin customization settings will be available as a new entry in YITH menu.', 'yith-plugin-fw' );
			$discover_message = sprintf(
			// translators: 1. YITH site link; 2. WordPress site link.
				__( 'Discover all our plugins available on: %1$s and %2$s', 'yith-plugin-fw' ),
				'<a href="https://yithemes.com/product-category/plugins/" target="_blank">yithemes.com</a>',
				'<a href="https://profiles.wordpress.org/yithemes/" target="_blank">Wordpress.org</a>'
			);

			$this->default_pointer['plugins'] = array(
				'screen_id' => 'plugins',
				'options'   => array(
					'content' => "<h3>{$title}</h3><p>{$message}</p><p>{$discover_message}</p>",
				),
			);

			$title            = __( 'Plugins Upgraded', 'yith-plugin-fw' );
			$message          = __( 'From now on, you can find the option panel of YITH plugins in YITH menu. Every time one of our plugins is added, a new entry will be added to this menu. For example, after the update, plugin options (such as for YITH WooCommerce Wishlist, YITH WooCommerce Ajax Search, etc.) will be moved from previous location to YITH menu.', 'yith-plugin-fw' );
			$discover_message = sprintf(
			// translators: 1. YITH site link; 2. WordPress site link.
				__( 'Discover all our plugins available on: %1$s and %2$s', 'yith-plugin-fw' ),
				'<a href="https://yithemes.com/product-category/plugins/" target="_blank">yithemes.com</a>',
				'<a href="https://profiles.wordpress.org/yithemes/" target="_blank">Wordpress.org</a>'
			);

			$this->default_pointer['update'] = array(
				'screen_id' => 'update',
				'options'   => array(
					'content' => "<h3>{$title}</h3><p>{$message}</p><p>{$discover_message}</p>",
				),
			);

			$this->default_pointer = $this->parse_args( $this->default_pointer );

			// DEPRECATED 'yit-pointer-special-screen' filter since 3.5 | use yith_plugin_fw_pointers_special_screens instead.
			$this->special_screen = apply_filters( 'yit-pointer-special-screen', array( 'plugins', 'update' ) ); //phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores
			$this->special_screen = apply_filters( 'yith_plugin_fw_pointers_special_screens', array( 'plugins', 'update' ) );

			add_action( 'admin_enqueue_scripts', array( $this, 'pointer_load' ) );
			add_action( 'admin_init', array( $this, 'add_pointers' ), 100 );
		}

		/**
		 * Parse args for the default pointer.
		 *
		 * @param array $args The arguments to be parse.
		 *
		 * @return array
		 */
		public function parse_args( $args ) {
			$default = array(
				'pointer_id' => 'yith_default_pointer',
				'target'     => '#toplevel_page_yit_plugin_panel',
				'init'       => null,
			);

			foreach ( $args as $id => $pointer ) {
				$args[ $id ]                        = wp_parse_args( $pointer, $default );
				$args[ $id ]['options']['position'] = $this->default_position;
			}

			return $args;
		}

		/**
		 * Add pointers
		 */
		public function add_pointers() {
			if ( ! empty( $this->screen_ids ) ) {
				foreach ( $this->screen_ids as $screen_id ) {
					add_filter( "yit_pointers-{$screen_id}", array( $this, 'pointers' ) );
				}
			}
		}

		/**
		 * Register pointers.
		 *
		 * @param array $pointers The pointers.
		 */
		public function register( $pointers ) {
			foreach ( $pointers as $id => $pointer ) {
				$pointer_id = isset( $pointer['pointer_id'] ) ? $pointer['pointer_id'] : false;
				$target     = isset( $pointer['target'] ) ? $pointer['target'] : false;
				$content    = isset( $pointer['content'] ) ? $pointer['content'] : false;
				$position   = isset( $pointer['position'] ) ? $pointer['position'] : false;
				$screen_id  = isset( $pointer['screen_id'] ) ? $pointer['screen_id'] : false;
				$init       = isset( $pointer['init'] ) ? $pointer['init'] : false;

				if ( ! $pointer_id || ! $target || ! $content || ! $position || ! $screen_id ) {
					continue;
				}

				if ( ! in_array( $screen_id, $this->screen_ids, true ) ) {
					$this->screen_ids[] = $screen_id;
				}

				$this->pointers[ $screen_id ][ $pointer_id ] = array(
					'target'  => $target,
					'options' => array(
						'content'  => $content,
						'position' => $position,
					),
					'init'    => $init,
				);
			}
		}

		/**
		 * Retrieve the registered pointers array where the keys will be the plugin init(s).
		 *
		 * @param string $screen_id The screen ID.
		 *
		 * @return array
		 */
		public function get_plugins_init( $screen_id ) {

			$registered = array();

			foreach ( $this->pointers[ $screen_id ] as $pointer_id => $pointer ) {
				$registered[ $pointer['init'] ] = $pointer_id;
			}

			return $registered;
		}

		/**
		 * Load the pointer.
		 *
		 * @param bool $deprecated Deprecated param.
		 */
		public function pointer_load( $deprecated = false ) {
			// phpcs:disable WordPress.Security.NonceVerification.Recommended
			// phpcs:disable WordPress.Security.NonceVerification.Missing

			// Retrieve the pointers for the current screen.
			$screen   = get_current_screen();
			$pointers = apply_filters( "yit_pointers-{$screen->id}", array() ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores

			if ( ! $pointers || ! is_array( $pointers ) ) {
				return;
			}

			// Get dismissed pointers.
			$dismissed      = explode( ',', (string) get_user_meta( get_current_user_id(), 'dismissed_wp_pointers', true ) );
			$valid_pointers = array();

			// Show pointers only on plugin activate action.
			if ( in_array( $screen->id, $this->special_screen, true ) ) {
				$show              = false;
				$registered        = $this->get_plugins_init( $screen->id );
				$recently_activate = get_option( 'yit_recently_activated', array() );

				// For "plugins" screen.
				$is_single_activate = isset( $_GET['activate'] ) && 'true' === $_GET['activate'];
				$is_multi_activate  = isset( $_GET['activate-multi'] ) && 'true' === $_GET['activate-multi'];

				/**
				 * For "update" screen
				 * Single plugin update use GET method
				 * Multi update plugins with bulk action send two post args called "action" and "action2"
				 * action refer to first bulk action button (at the top of plugins table)
				 * action2 refer to last bulk action button (at the bottom of plugins table)
				 */
				$is_single_upgrade = isset( $_GET['action'] ) && 'upgrade-plugin' === $_GET['action'];
				$is_multi_upgrade  = ( isset( $_POST['action'] ) && 'update-selected' === $_POST['action'] ) || ( isset( $_POST['action2'] ) && 'update-selected' === $_POST['action2'] );

				if ( $is_single_activate || $is_single_upgrade ) {
					foreach ( $registered as $init => $p_id ) {
						if ( in_array( $init, $recently_activate, true ) ) {
							$point_id = $p_id;
							$pointer  = $pointers[ $point_id ];

							if ( ! ( in_array( $point_id, $dismissed, true ) || empty( $pointer ) || empty( $point_id ) || empty( $pointer['target'] ) || empty( $pointer['options'] ) ) ) {
								$pointer['pointer_id']        = $point_id;
								$valid_pointers['pointers'][] = $pointer;
								$show                         = true;
							}
							break;
						}
					}
				} elseif ( $is_multi_activate || $is_multi_upgrade ) {
					$point_id  = array();
					$screen_id = $screen->id;

					if ( $is_multi_upgrade && isset( $_POST['checked'] ) && ( count( $_POST['checked'] ) > 0 ) ) {
						$recently_activate = sanitize_file_name( wp_unslash( $_POST['checked'] ) );
						$screen_id         = 'update';
						$pointers          = apply_filters( "yit_pointers-{$screen_id}", array() ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores
					}

					foreach ( $registered as $init => $p_id ) {
						if ( in_array( $init, $recently_activate, true ) ) {
							$point_id[] = $p_id;
						}
					}

					/**
					 * Bulk Action: Activate Plugins
					 * count( $point_id ) is the number of YITH plugins that have registered specific pointers
					 * case 0   -> No pointers -> Exit
					 * case 1   -> Only one pointers to show -> Use the specific plugin pointer
					 * default  -> Two or more plugins need to show a pointer -> use a generic pointers
					 */
					switch ( count( $point_id ) ) {
						case 0:
							$show = false;
							break;

						case 1:
							$point_id = array_pop( $point_id );
							$pointer  = $pointers[ $point_id ];
							if ( ! ( in_array( $point_id, $dismissed, true ) || empty( $pointer ) || empty( $point_id ) || empty( $pointer['target'] ) || empty( $pointer['options'] ) ) ) {
								$pointer['pointer_id']        = $point_id;
								$valid_pointers['pointers'][] = $pointer;
								$show                         = true;
							}
							break;

						default:
							$valid_pointers['pointers'][] = $this->default_pointer[ $screen_id ];
							$show                         = true;
							break;
					}
				}

				update_option( 'yit_recently_activated', array() );

				if ( ! $show ) {
					return;
				}
			} else {
				// Check pointers and remove dismissed ones.
				foreach ( $pointers as $pointer_id => $pointer ) {

					if ( in_array( $pointer_id, $dismissed, true ) || empty( $pointer ) || empty( $pointer_id ) || empty( $pointer['target'] ) || empty( $pointer['options'] ) ) {
						continue;
					}

					$pointer['pointer_id'] = $pointer_id;

					$valid_pointers['pointers'][] = $pointer;
				}
			}

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

			$script_file = function_exists( 'yit_load_js_file' ) ? yit_load_js_file( 'yit-wp-pointer.js' ) : 'yit-wp-pointer.min.js';

			// Enqueue pointer scripts and styles.
			wp_enqueue_style( 'wp-pointer' );
			wp_enqueue_script( 'wp-pointer' );

			wp_enqueue_script( 'yit-wp-pointer', YIT_CORE_PLUGIN_URL . '/assets/js/' . $script_file, array( 'wp-pointer' ), yith_plugin_fw_get_version(), true );
			wp_localize_script( 'yit-wp-pointer', 'custom_pointer', $valid_pointers );

			// phpcs:enable
		}

		/**
		 * Filter pointers.
		 *
		 * @param array $pointers The pointers.
		 *
		 * @return array
		 */
		public function pointers( $pointers ) {
			$screen_id       = str_replace( 'yit_pointers-', '', current_filter() );
			$pointers_to_add = $this->get_pointers( $screen_id );

			return ! empty( $pointers_to_add ) ? array_merge( $pointers, $pointers_to_add ) : $pointers;
		}

		/**
		 * Retrieve pointers for the specified screen ID.
		 *
		 * @param string $screen_id The Screen ID.
		 *
		 * @return array|mixed
		 */
		public function get_pointers( $screen_id ) {
			return isset( $this->pointers[ $screen_id ] ) ? $this->pointers[ $screen_id ] : array();
		}
	}
}

if ( ! function_exists( 'YIT_Pointers' ) ) {

	/**
	 * Single instance of YIT_Pointers
	 *
	 * @return YIT_Pointers
	 */
	function YIT_Pointers() { // phpcs:ignore WordPress.NamingConventions.ValidFunctionName.FunctionNameInvalid
		return YIT_Pointers::instance();
	}
}

YIT_Pointers();
PK`x1\Ws�
��.plugin-fw/includes/class-yit-cpt-unlimited.phpnu�[���<?php
/**
 * YITH Custom-Post-Type Unlimited Class.
 * Deprecated! Kept only to prevent fatal errors if someone is using it.
 *
 * @class      YIT_CPT_Unlimited
 * @package    YITH\PluginFramework\Classes
 * @deprecated 3.5 | This will be removed, so please don't use it
 */

defined( 'ABSPATH' ) || exit; // Exit if accessed directly.

if ( ! class_exists( 'YIT_CPT_Unlimited' ) ) {

	/**
	 * Class YIT_CPT_Unlimited
	 *
	 * @deprecated 3.5 | This will be removed, so please don't use it
	 */
	class YIT_CPT_Unlimited {

		/**
		 * YIT_CPT_Unlimited constructor.
		 *
		 * @param array $args Configuration arguments of post type.
		 */
		public function __construct( $args = array() ) {

		}

		/**
		 * Avoid issues when calling a non-defined method
		 *
		 * @param string $name      Name of the missing method.
		 * @param array  $arguments Arguments.
		 *
		 * @return bool
		 */
		public function __call( $name, $arguments ) {
			return false;
		}

		/**
		 * Avoid issues when calling a non-defined attribute
		 *
		 * @param string $key Name of the missing attribute.
		 *
		 * @return bool
		 */
		public function __get( $key ) {
			return false;
		}
	}
}
PK`x1\�qt$��%plugin-fw/includes/class-yit-ajax.phpnu�[���<?php
/**
 * AJAX Class. AJAX Event Handler.
 *
 * @class   YIT_Ajax
 * @package YITH\PluginFramework\Classes
 */

defined( 'ABSPATH' ) || exit; // Exit if accessed directly.

if ( ! class_exists( 'YIT_Ajax' ) ) {
	/**
	 * YIT_Ajax class.
	 *
	 * @author  Leanza Francesco <leanzafrancesco@gmail.com>
	 */
	class YIT_Ajax {

		/**
		 * The single instance of the class.
		 *
		 * @var YIT_Ajax
		 */
		private static $instance;

		/**
		 * Singleton implementation.
		 *
		 * @return YIT_Ajax
		 */
		public static function instance() {
			return ! is_null( self::$instance ) ? self::$instance : self::$instance = new self();
		}

		/**
		 * YIT_Ajax constructor.
		 */
		private function __construct() {
			$ajax_actions = array(
				'json_search_posts',
				'json_search_products',
				'json_search_orders',
				'json_search_terms',
			);

			foreach ( $ajax_actions as $ajax_action ) {
				add_action( 'wp_ajax_yith_plugin_fw_' . $ajax_action, array( $this, $ajax_action ) );
				add_action( 'wp_ajax_nopriv_yith_plugin_fw_' . $ajax_action, array( $this, $ajax_action ) );
			}
		}

		/**
		 * Post Search
		 *
		 * @param array $request The request.
		 */
		public function json_search_posts( $request = array() ) {
			ob_start();

			// Make sure request is an array.
			$request = is_array( $request ) ? $request : array();

			if ( empty( $request ) ) {
				check_ajax_referer( 'search-posts', 'security' );
			}

			$term = isset( $request['term'] ) ? $request['term'] : ( isset( $_REQUEST['term'] ) ? (string) sanitize_text_field( wp_unslash( $_REQUEST['term'] ) ) : '' );
			if ( empty( $term ) ) {
				die();
			}

			$found_posts = array();
			$args        = array(
				'post_type'        => 'post',
				'post_status'      => 'publish',
				'numberposts'      => 20,
				'orderby'          => 'title',
				'order'            => 'asc',
				'suppress_filters' => 0,
				'include'          => '',
				'exclude'          => '',
			);

			foreach ( $args as $key => $default_value ) {
				if ( ! empty( $_REQUEST[ $key ] ) ) {
					$args[ $key ] = sanitize_text_field( wp_unslash( $_REQUEST[ $key ] ) );
				}
			}

			if ( isset( $_REQUEST['post_parent'] ) ) {
				$args['post_parent'] = intval( $_REQUEST['post_parent'] );
			}

			// Merge with passed request data.
			$args    = array_merge( $args, $request );
			$show_id = ! empty( $_REQUEST['show_id'] );

			$args['s']      = $term;
			$args['fields'] = 'ids';

			$posts = get_posts( $args );

			if ( ! empty( $posts ) ) {
				foreach ( $posts as $post_id ) {
					if ( ! current_user_can( 'read_post', $post_id ) ) {
						continue;
					}

					$the_title = yith_plugin_fw_get_post_formatted_name(
						$post_id,
						array(
							'post-type' => $args['post_type'],
							'show-id'   => $show_id,
						)
					);

					$found_posts[ $post_id ] = apply_filters( 'yith_plugin_fw_json_search_found_post_title', rawurldecode( wp_strip_all_tags( $the_title ) ), $post_id, $request );
				}
			}

			$found_posts = apply_filters( 'yith_plugin_fw_json_search_found_posts', $found_posts, $request );
			wp_send_json( $found_posts );
		}

		/**
		 * Product Search
		 */
		public function json_search_products() {
			check_ajax_referer( 'search-posts', 'security' );

			$term = isset( $_REQUEST['term'] ) ? (string) wc_clean( wp_unslash( $_REQUEST['term'] ) ) : false;
			if ( empty( $term ) ) {
				die();
			}

			$request         = array( 'post_type' => 'product' );
			$request_include = isset( $_REQUEST['include'] ) && ! is_array( $_REQUEST['include'] ) ? explode( ',', sanitize_text_field( wp_unslash( $_REQUEST['include'] ) ) ) : array();

			if ( ! empty( $_REQUEST['product_type'] ) ) {
				$product_type      = sanitize_text_field( wp_unslash( $_REQUEST['product_type'] ) );
				$product_type_term = get_term_by( 'slug', $product_type, 'product_type' );

				if ( $product_type_term ) {
					$posts_in = array_unique( (array) get_objects_in_term( $product_type_term->term_id, 'product_type' ) );
					if ( ! ! $request_include ) {
						$posts_in = array_intersect( $posts_in, $request_include );
					}

					if ( ! ! $posts_in ) {
						$request['include'] = implode( ',', $posts_in );
					} else {
						$request['include'] = '-1';
					}
				}
			}

			$request = apply_filters( 'yith_plugin_fw_json_search_products_request', $request );
			$this->json_search_posts( $request );
		}

		/**
		 * Order Search
		 */
		public function json_search_orders() {
			global $wpdb;
			ob_start();

			check_ajax_referer( 'search-posts', 'security' );

			$term = isset( $_REQUEST['term'] ) ? intval( $_REQUEST['term'] ) : false;

			if ( empty( $term ) ) {
				die();
			}

			$found_orders = array();
			$term         = apply_filters( 'yith_plugin_fw_json_search_order_number', $term );
			$search       = '%' . intval( $term ) . '%';

			$query_orders = $wpdb->get_results(
				$wpdb->prepare(
					"SELECT ID, post_title FROM {$wpdb->posts} AS posts WHERE posts.post_type = 'shop_order' AND posts.ID LIKE %s",
					$search
				)
			);

			if ( $query_orders ) {
				foreach ( $query_orders as $item ) {
					$order_number              = apply_filters( 'yith_plugin_fw_order_number', '#' . $item->ID, $item->ID );
					$found_orders[ $item->ID ] = esc_html( $order_number ) . ' &ndash; ' . esc_html( $item->post_title );
				}
			}

			wp_send_json( $found_orders );
		}

		/**
		 * Order Search
		 */
		public function json_search_terms() {
			ob_start();

			check_ajax_referer( 'search-terms', 'security' );

			$term = isset( $_REQUEST['term'] ) ? (string) sanitize_text_field( wp_unslash( $_REQUEST['term'] ) ) : false;

			if ( empty( $term ) ) {
				die();
			}

			$args = apply_filters(
				'yith_plugin_fw_json_search_terms_default_args',
				array(
					'taxonomy'     => 'category',
					'hide_empty'   => false,
					'order'        => 'ASC',
					'orderby'      => 'name',
					'include'      => '',
					'exclude'      => '',
					'exclude_tree' => '',
					'number'       => '',
					'hierarchical' => true,
					'child_of'     => 0,
					'parent'       => '',
					'term_field'   => 'id',
				)
			);

			foreach ( $args as $key => $default_value ) {
				if ( ! empty( $_REQUEST[ $key ] ) ) {
					$args[ $key ] = sanitize_text_field( wp_unslash( $_REQUEST[ $key ] ) );
				}
			}

			$args = apply_filters( 'yith_plugin_fw_json_search_terms_args', $args );

			$args['name__like'] = $term;
			$args['fields']     = 'id=>name';

			if ( ! taxonomy_exists( $args['taxonomy'] ) ) {
				die();
			}

			$terms = yith_get_terms( $args );

			if ( 'id' !== $args['term_field'] ) {
				$temp_terms = $terms;
				$terms      = array();
				foreach ( $temp_terms as $term_id => $term_name ) {
					$current_term_field           = get_term_field( $args['term_field'], $term_id, $args['taxonomy'] );
					$terms[ $current_term_field ] = $term_name;
				}
			}

			wp_send_json( $terms );
		}
	}
}

YIT_Ajax::instance();
PK`x1\��h�"	"	/plugin-fw/includes/class-yit-plugin-licence.phpnu�[���<?php
/**
 * YITH Plugin License Class.
 *
 * @class   YIT_Plugin_Licence
 * @package YITH\PluginFramework\Classes
 */

defined( 'ABSPATH' ) || exit; // Exit if accessed directly.

if ( ! class_exists( 'YIT_Plugin_Licence' ) ) {
	/**
	 * YIT_Plugin_Licence class.
	 * Set page to manage products.
	 *
	 * @author Andrea Grillo <andrea.grillo@yithemes.com>
	 */
	class YIT_Plugin_Licence {
		/**
		 * The single instance of the class.
		 *
		 * @var YIT_Plugin_Licence
		 */
		private static $instance;

		/**
		 * Singleton implementation.
		 *
		 * @return YIT_Plugin_Licence
		 */
		public static function instance() {
			return ! is_null( self::$instance ) ? self::$instance : self::$instance = new self();
		}

		/**
		 * YIT_Plugin_Licence constructor.
		 */
		private function __construct() {
			// Silence is golden.
		}

		/**
		 * Premium products registration
		 *
		 * @param string $init       The product identifier.
		 * @param string $secret_key The secret key.
		 * @param string $product_id The product id.
		 *
		 * @return void
		 */
		public function register( $init, $secret_key, $product_id ) {
			if ( ! function_exists( 'YITH_Plugin_Licence' ) ) {
				// Try to load YITH_Plugin_Licence class.
				yith_plugin_fw_load_update_and_licence_files();
			}

			if ( function_exists( 'YITH_Plugin_Licence' ) && is_callable( array( YITH_Plugin_Licence(), 'register' ) ) ) {
				YITH_Plugin_Licence()->register( $init, $secret_key, $product_id );
			}
		}

		/**
		 * Get license activation URL
		 *
		 * @param string $plugin_slug The plugin slug.
		 *
		 * @return string|false
		 * @since  3.0.17
		 */
		public static function get_license_activation_url( $plugin_slug = '' ) {
			return function_exists( 'YITH_Plugin_Licence' ) ? YITH_Plugin_Licence()->get_license_activation_url( $plugin_slug ) : false;
		}

		/**
		 * Retrieve the products
		 *
		 * @return array
		 */
		public function get_products() {
			return function_exists( 'YITH_Plugin_Licence' ) ? YITH_Plugin_Licence()->get_products() : array();
		}
	}
}

if ( ! function_exists( 'YIT_Plugin_Licence' ) ) {
	/**
	 * Single instance of YIT_Plugin_Licence
	 *
	 * @return YIT_Plugin_Licence
	 */
	function YIT_Plugin_Licence() { // phpcs:ignore WordPress.NamingConventions.ValidFunctionName.FunctionNameInvalid
		return YIT_Plugin_Licence::instance();
	}
}
PK`x1\l��%ZZ'plugin-fw/includes/class-yith-debug.phpnu�[���<?php
/**
 * YITH Debug Class.
 *
 * @class   YITH_Debug
 * @package YITH\PluginFramework\Classes
 */

defined( 'ABSPATH' ) || exit; // Exit if accessed directly.

if ( ! class_exists( 'YITH_Debug' ) ) {
	/**
	 * YITH_Debug class.
	 *
	 * @author     Leanza Francesco <leanzafrancesco@gmail.com>
	 * @deprecated 3.7.7
	 */
	class YITH_Debug {

		/**
		 * The single instance of the class.
		 *
		 * @var YITH_Debug
		 */
		private static $instance;

		/**
		 * Singleton implementation.
		 *
		 * @return YITH_Debug
		 */
		public static function instance() {
			return ! is_null( self::$instance ) ? self::$instance : self::$instance = new self();
		}

		/**
		 * Deprecated singleton implementation.
		 * Kept for backward compatibility.
		 *
		 * @return YITH_Debug
		 * @deprecated 3.5 | use YITH_Debug::get_instance() instead.
		 */
		public static function get_instance() {
			return self::instance();
		}

		/**
		 * YITH_Debug constructor.
		 */
		private function __construct() {

		}

		/**
		 * Init
		 */
		public function init() {

		}

		/**
		 * Add debug node in admin bar.
		 *
		 * @param WP_Admin_Bar $wp_admin_bar WP_Admin_Bar instance.
		 */
		public function add_debug_in_admin_bar( $wp_admin_bar ) {
			// Do nothing.
		}


		/**
		 * Return an array of debug information.
		 *
		 * @return array
		 */
		public function get_debug_information() {
			return array();
		}

		/**
		 * Return the current screen ID.
		 *
		 * @return string
		 */
		public function get_current_screen_info() {
			$screen = function_exists( 'get_current_screen' ) ? get_current_screen() : false;

			return ! ! $screen ? $screen->id : 'null';
		}

		/**
		 * Return the current theme name and version.
		 *
		 * @return string
		 */
		public function get_theme_info() {
			$theme = function_exists( 'wp_get_theme' ) ? wp_get_theme() : false;

			return ! ! $theme ? $theme->get( 'Name' ) . ' (' . $theme->get( 'Version' ) . ')' : 'null';
		}

		/**
		 * Return the WooCommerce version if active.
		 *
		 * @return string
		 */
		public function get_woocommerce_version_info() {
			return function_exists( 'WC' ) ? WC()->version : 'not active';
		}

		/**
		 * Return plugin framework information (version and loaded_by).
		 *
		 * @return string
		 */
		public function get_plugin_framework_info() {
			$plugin_fw_version   = yith_plugin_fw_get_version();
			$plugin_fw_loaded_by = basename( dirname( YIT_CORE_PLUGIN_PATH ) );

			return "$plugin_fw_version (by $plugin_fw_loaded_by)";
		}

		/**
		 * Return premium plugins list with versions.
		 *
		 * @return array
		 */
		public function get_premium_plugins_info() {
			$plugins      = YIT_Plugin_Licence()->get_products();
			$plugins_info = array();

			if ( ! ! $plugins ) {
				foreach ( $plugins as $plugin ) {
					$plugins_info[ $plugin['product_id'] ] = array( 'title' => $plugin['Name'] . ' (' . $plugin['Version'] . ')' );
				}

				sort( $plugins_info );
			}

			return $plugins_info;
		}
	}
}
if ( ! function_exists( 'yith_debug' ) ) {
	/**
	 * Single instance of YITH_Debug
	 *
	 * @return YITH_Debug
	 * @deprecated 3.7.7
	 */
	function yith_debug() {
		return YITH_Debug::instance();
	}
}
PK`x1\��pp+plugin-fw/includes/class-yith-dashboard.phpnu�[���<?php
/**
 * YITH Dashboard Class
 * handle WordPress Admin Dashboard
 *
 * @class   YITH_Dashboard
 * @package YITH\PluginFramework\Classes
 */

defined( 'ABSPATH' ) || exit; // Exit if accessed directly.

if ( ! class_exists( 'YITH_Dashboard' ) ) {
	/**
	 * YITH_Dashboard class.
	 */
	class YITH_Dashboard {
		/**
		 * Products Feed URL
		 *
		 * @var string
		 */
		private static $products_feed = 'https://yithemes.com/latest-updates/feeds/';

		/**
		 * Blog Feed URL
		 *
		 * @var string
		 */
		private static $blog_feed = 'https://yithemes.com/feed/';

		/**
		 * Dashboard widget setup.
		 */
		public static function dashboard_widget_setup() {
			wp_add_dashboard_widget( 'yith_dashboard_products_news', __( 'YITH Latest Updates', 'yith-plugin-fw' ), 'YITH_Dashboard::dashboard_products_news' );
			wp_add_dashboard_widget( 'yith_dashboard_blog_news', __( 'Latest news from YITH Blog', 'yith-plugin-fw' ), 'YITH_Dashboard::dashboard_blog_news' );
		}


		/**
		 * Product news Widget
		 */
		public static function dashboard_products_news() {
			$items = 10;
			$rss   = static::$products_feed;
			if ( is_string( $rss ) ) {
				$rss = fetch_feed( $rss );
			} elseif ( is_array( $rss ) && isset( $rss['url'] ) ) {
				$rss = fetch_feed( $rss['url'] );
			} elseif ( ! is_object( $rss ) ) {
				return;
			}

			if ( is_wp_error( $rss ) ) {
				if ( is_admin() || current_user_can( 'manage_options' ) ) {
					echo '<p><strong>' . esc_html__( 'RSS Error:', 'yith-plugin-fw' ) . '</strong> ' . wp_kses_post( $rss->get_error_message() ) . '</p>';
				}

				return;
			}

			if ( ! $rss->get_item_quantity() ) {
				echo '<ul><li>' . esc_html__( 'An error has occurred, which probably means the feed is down. Try again later.', 'yith-plugin-fw' ) . '</li></ul>';
				$rss->__destruct();
				unset( $rss );

				return;
			}

			/**
			 * The feed items.
			 *
			 * @var SimplePie_Item[] $last_updates
			 */
			$last_updates = $rss->get_items( 0, $items );
			$html_classes = 'rsswidget yith-update-feeds';
			$output       = '';

			if ( count( $last_updates ) > 0 ) {
				$output = '<ul class="yith-update-feeds">';
			}

			foreach ( $last_updates as $last_update ) {
				$output .= '<li class="yith-update-feed">';

				$date      = $last_update->get_date( 'U' );
				$date_i18n = ! empty( $date ) ? date_i18n( get_option( 'date_format' ), $date ) : '';
				$html_date = ! empty( $date_i18n ) ? ' <span class="rss-date">' . date_i18n( get_option( 'date_format' ), $date ) . '</span>' : '';

				$output .= sprintf( '<a target="_blank" href="%s" class="%s">%s</a> %s', $last_update->get_permalink(), $html_classes, $last_update->get_title(), $html_date );

				$changelog = $last_update->get_description();

				if ( ! empty( $changelog ) ) {
					$output .= ' - ';
					$output .= sprintf( '<a class="yith-last-changelog" href="#" data-changelogid="%s" data-plugininfo="%s">%s</a>', $last_update->get_id( true ), $last_update->get_title(), _x( 'View Changelog', 'Plugin FW', 'yith-plugin-fw' ) );
					$output .= sprintf( '<div style="display: none;" id="%s"><div style="display: table;"><img class="yith-feeds-logo" src="%s" /><h3 class="yith-feeds-plugin-name"><span style="font-weight: normal;">%s</span> %s</h3></div><p>%s</p></div>', $last_update->get_id( true ), yith_plugin_fw_get_default_logo(), _x( 'Latest update released on', 'Plugin FW', 'yith-plugin-fw' ), $date_i18n, $changelog );
				}

				$output .= '</li>';
			}

			if ( ! empty( $output ) ) {
				$output .= '</ul>';
			}

			echo wp_kses_post( $output );
			$rss->__destruct();
			unset( $rss );
		}

		/**
		 * Blog news Widget
		 */
		public static function dashboard_blog_news() {
			$args = array(
				'show_author'  => 0,
				'show_date'    => 1,
				'show_summary' => 1,
				'items'        => 3,
			);
			$feed = static::$blog_feed;
			wp_widget_rss_output( $feed, $args );
		}

		/**
		 * Enqueue Styles and Scripts for View Last Changelog widget
		 */
		public static function enqueue_scripts() {
			if ( function_exists( 'get_current_screen' ) && get_current_screen() && 'dashboard' === get_current_screen()->id ) {
				$script_path = defined( 'YIT_CORE_PLUGIN_URL' ) ? YIT_CORE_PLUGIN_URL : get_template_directory_uri() . '/core/plugin-fw';
				$suffix      = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min';
				wp_enqueue_script( 'yith-dashboard', $script_path . '/assets/js/yith-dashboard' . $suffix . '.js', array( 'jquery-ui-dialog' ), yith_plugin_fw_get_version(), true );
				wp_enqueue_style( 'wp-jquery-ui-dialog' );
				$l10n = array(
					'buttons' => array(
						'close' => _x( 'Close', 'Button label', 'yith-plugin-fw' ),
					),
				);
				wp_localize_script( 'yith-dashboard', 'yith_dashboard', $l10n );
			}
		}
	}

	if ( apply_filters( 'yith_plugin_fw_show_dashboard_widgets', true ) ) {
		add_action( 'wp_dashboard_setup', 'YITH_Dashboard::dashboard_widget_setup' );
		add_action( 'admin_enqueue_scripts', 'YITH_Dashboard::enqueue_scripts', 20 );
	}
}
PK`x1\'"��ˊˊ&plugin-fw/includes/class-yit-icons.phpnu�[���<?php
/**
 * YITH Icons Class.
 *
 * @class       YIT_Icons
 * @package     YITH\PluginFramework\Classes
 */

defined( 'ABSPATH' ) || exit; // Exit if accessed directly.

if ( ! class_exists( 'YIT_Icons' ) ) {
	/**
	 * YIT_Icons class.
	 *
	 * @author      Leanza Francesco <leanzafrancesco@gmail.com>
	 */
	class YIT_Icons {

		/**
		 * The single instance of the class.
		 *
		 * @var YIT_Icons
		 */
		private static $instance;

		/**
		 * Array of data
		 *
		 * @var array
		 */
		private $data
			= array(
				'font_awesome_version' => '4.6.3',
				'icons'                => array(
					'FontAwesome' => array(
						'\f000' => 'glass',
						'\f001' => 'music',
						'\f002' => 'search',
						'\f003' => 'envelope-o',
						'\f004' => 'heart',
						'\f005' => 'star',
						'\f006' => 'star-o',
						'\f007' => 'user',
						'\f008' => 'film',
						'\f009' => 'th-large',
						'\f00a' => 'th',
						'\f00b' => 'th-list',
						'\f00c' => 'check',
						'\f00d' => 'times',
						'\f00e' => 'search-plus',
						'\f010' => 'search-minus',
						'\f011' => 'power-off',
						'\f012' => 'signal',
						'\f013' => 'cog',
						'\f014' => 'trash-o',
						'\f015' => 'home',
						'\f016' => 'file-o',
						'\f017' => 'clock-o',
						'\f018' => 'road',
						'\f019' => 'download',
						'\f01a' => 'arrow-circle-o-down',
						'\f01b' => 'arrow-circle-o-up',
						'\f01c' => 'inbox',
						'\f01d' => 'play-circle-o',
						'\f01e' => 'repeat',
						'\f021' => 'refresh',
						'\f022' => 'list-alt',
						'\f023' => 'lock',
						'\f024' => 'flag',
						'\f025' => 'headphones',
						'\f026' => 'volume-off',
						'\f027' => 'volume-down',
						'\f028' => 'volume-up',
						'\f029' => 'qrcode',
						'\f02a' => 'barcode',
						'\f02b' => 'tag',
						'\f02c' => 'tags',
						'\f02d' => 'book',
						'\f02e' => 'bookmark',
						'\f02f' => 'print',
						'\f030' => 'camera',
						'\f031' => 'font',
						'\f032' => 'bold',
						'\f033' => 'italic',
						'\f034' => 'text-height',
						'\f035' => 'text-width',
						'\f036' => 'align-left',
						'\f037' => 'align-center',
						'\f038' => 'align-right',
						'\f039' => 'align-justify',
						'\f03a' => 'list',
						'\f03b' => 'outdent',
						'\f03c' => 'indent',
						'\f03d' => 'video-camera',
						'\f03e' => 'picture-o',
						'\f040' => 'pencil',
						'\f041' => 'map-marker',
						'\f042' => 'adjust',
						'\f043' => 'tint',
						'\f044' => 'pencil-square-o',
						'\f045' => 'share-square-o',
						'\f046' => 'check-square-o',
						'\f047' => 'arrows',
						'\f048' => 'step-backward',
						'\f049' => 'fast-backward',
						'\f04a' => 'backward',
						'\f04b' => 'play',
						'\f04c' => 'pause',
						'\f04d' => 'stop',
						'\f04e' => 'forward',
						'\f050' => 'fast-forward',
						'\f051' => 'step-forward',
						'\f052' => 'eject',
						'\f053' => 'chevron-left',
						'\f054' => 'chevron-right',
						'\f055' => 'plus-circle',
						'\f056' => 'minus-circle',
						'\f057' => 'times-circle',
						'\f058' => 'check-circle',
						'\f059' => 'question-circle',
						'\f05a' => 'info-circle',
						'\f05b' => 'crosshairs',
						'\f05c' => 'times-circle-o',
						'\f05d' => 'check-circle-o',
						'\f05e' => 'ban',
						'\f060' => 'arrow-left',
						'\f061' => 'arrow-right',
						'\f062' => 'arrow-up',
						'\f063' => 'arrow-down',
						'\f064' => 'share',
						'\f065' => 'expand',
						'\f066' => 'compress',
						'\f067' => 'plus',
						'\f068' => 'minus',
						'\f069' => 'asterisk',
						'\f06a' => 'exclamation-circle',
						'\f06b' => 'gift',
						'\f06c' => 'leaf',
						'\f06d' => 'fire',
						'\f06e' => 'eye',
						'\f070' => 'eye-slash',
						'\f071' => 'exclamation-triangle',
						'\f072' => 'plane',
						'\f073' => 'calendar',
						'\f074' => 'random',
						'\f075' => 'comment',
						'\f076' => 'magnet',
						'\f077' => 'chevron-up',
						'\f078' => 'chevron-down',
						'\f079' => 'retweet',
						'\f07a' => 'shopping-cart',
						'\f07b' => 'folder',
						'\f07c' => 'folder-open',
						'\f07d' => 'arrows-v',
						'\f07e' => 'arrows-h',
						'\f080' => 'bar-chart',
						'\f081' => 'twitter-square',
						'\f082' => 'facebook-square',
						'\f083' => 'camera-retro',
						'\f084' => 'key',
						'\f085' => 'cogs',
						'\f086' => 'comments',
						'\f087' => 'thumbs-o-up',
						'\f088' => 'thumbs-o-down',
						'\f089' => 'star-half',
						'\f08a' => 'heart-o',
						'\f08b' => 'sign-out',
						'\f08c' => 'linkedin-square',
						'\f08d' => 'thumb-tack',
						'\f08e' => 'external-link',
						'\f090' => 'sign-in',
						'\f091' => 'trophy',
						'\f092' => 'github-square',
						'\f093' => 'upload',
						'\f094' => 'lemon-o',
						'\f095' => 'phone',
						'\f096' => 'square-o',
						'\f097' => 'bookmark-o',
						'\f098' => 'phone-square',
						'\f099' => 'twitter',
						'\f09a' => 'facebook',
						'\f09b' => 'github',
						'\f09c' => 'unlock',
						'\f09d' => 'credit-card',
						'\f09e' => 'rss',
						'\f0a0' => 'hdd-o',
						'\f0a1' => 'bullhorn',
						'\f0a2' => 'bell-o',
						'\f0a3' => 'certificate',
						'\f0a4' => 'hand-o-right',
						'\f0a5' => 'hand-o-left',
						'\f0a6' => 'hand-o-up',
						'\f0a7' => 'hand-o-down',
						'\f0a8' => 'arrow-circle-left',
						'\f0a9' => 'arrow-circle-right',
						'\f0aa' => 'arrow-circle-up',
						'\f0ab' => 'arrow-circle-down',
						'\f0ac' => 'globe',
						'\f0ad' => 'wrench',
						'\f0ae' => 'tasks',
						'\f0b0' => 'filter',
						'\f0b1' => 'briefcase',
						'\f0b2' => 'arrows-alt',
						'\f0c0' => 'users',
						'\f0c1' => 'link',
						'\f0c2' => 'cloud',
						'\f0c3' => 'flask',
						'\f0c4' => 'scissors',
						'\f0c5' => 'files-o',
						'\f0c6' => 'paperclip',
						'\f0c7' => 'floppy-o',
						'\f0c8' => 'square',
						'\f0c9' => 'bars',
						'\f0ca' => 'list-ul',
						'\f0cb' => 'list-ol',
						'\f0cc' => 'strikethrough',
						'\f0cd' => 'underline',
						'\f0ce' => 'table',
						'\f0d0' => 'magic',
						'\f0d1' => 'truck',
						'\f0d2' => 'pinterest',
						'\f0d3' => 'pinterest-square',
						'\f0d4' => 'google-plus-square',
						'\f0d5' => 'google-plus',
						'\f0d6' => 'money',
						'\f0d7' => 'caret-down',
						'\f0d8' => 'caret-up',
						'\f0d9' => 'caret-left',
						'\f0da' => 'caret-right',
						'\f0db' => 'columns',
						'\f0dc' => 'sort',
						'\f0dd' => 'sort-desc',
						'\f0de' => 'sort-asc',
						'\f0e0' => 'envelope',
						'\f0e1' => 'linkedin',
						'\f0e2' => 'undo',
						'\f0e3' => 'gavel',
						'\f0e4' => 'tachometer',
						'\f0e5' => 'comment-o',
						'\f0e6' => 'comments-o',
						'\f0e7' => 'bolt',
						'\f0e8' => 'sitemap',
						'\f0e9' => 'umbrella',
						'\f0ea' => 'clipboard',
						'\f0eb' => 'lightbulb-o',
						'\f0ec' => 'exchange',
						'\f0ed' => 'cloud-download',
						'\f0ee' => 'cloud-upload',
						'\f0f0' => 'user-md',
						'\f0f1' => 'stethoscope',
						'\f0f2' => 'suitcase',
						'\f0f3' => 'bell',
						'\f0f4' => 'coffee',
						'\f0f5' => 'cutlery',
						'\f0f6' => 'file-text-o',
						'\f0f7' => 'building-o',
						'\f0f8' => 'hospital-o',
						'\f0f9' => 'ambulance',
						'\f0fa' => 'medkit',
						'\f0fb' => 'fighter-jet',
						'\f0fc' => 'beer',
						'\f0fd' => 'h-square',
						'\f0fe' => 'plus-square',
						'\f100' => 'angle-double-left',
						'\f101' => 'angle-double-right',
						'\f102' => 'angle-double-up',
						'\f103' => 'angle-double-down',
						'\f104' => 'angle-left',
						'\f105' => 'angle-right',
						'\f106' => 'angle-up',
						'\f107' => 'angle-down',
						'\f108' => 'desktop',
						'\f109' => 'laptop',
						'\f10a' => 'tablet',
						'\f10b' => 'mobile',
						'\f10c' => 'circle-o',
						'\f10d' => 'quote-left',
						'\f10e' => 'quote-right',
						'\f110' => 'spinner',
						'\f111' => 'circle',
						'\f112' => 'reply',
						'\f113' => 'github-alt',
						'\f114' => 'folder-o',
						'\f115' => 'folder-open-o',
						'\f118' => 'smile-o',
						'\f119' => 'frown-o',
						'\f11a' => 'meh-o',
						'\f11b' => 'gamepad',
						'\f11c' => 'keyboard-o',
						'\f11d' => 'flag-o',
						'\f11e' => 'flag-checkered',
						'\f120' => 'terminal',
						'\f121' => 'code',
						'\f122' => 'reply-all',
						'\f123' => 'star-half-o',
						'\f124' => 'location-arrow',
						'\f125' => 'crop',
						'\f126' => 'code-fork',
						'\f127' => 'chain-broken',
						'\f128' => 'question',
						'\f129' => 'info',
						'\f12a' => 'exclamation',
						'\f12b' => 'superscript',
						'\f12c' => 'subscript',
						'\f12d' => 'eraser',
						'\f12e' => 'puzzle-piece',
						'\f130' => 'microphone',
						'\f131' => 'microphone-slash',
						'\f132' => 'shield',
						'\f133' => 'calendar-o',
						'\f134' => 'fire-extinguisher',
						'\f135' => 'rocket',
						'\f136' => 'maxcdn',
						'\f137' => 'chevron-circle-left',
						'\f138' => 'chevron-circle-right',
						'\f139' => 'chevron-circle-up',
						'\f13a' => 'chevron-circle-down',
						'\f13b' => 'html5',
						'\f13c' => 'css3',
						'\f13d' => 'anchor',
						'\f13e' => 'unlock-alt',
						'\f140' => 'bullseye',
						'\f141' => 'ellipsis-h',
						'\f142' => 'ellipsis-v',
						'\f143' => 'rss-square',
						'\f144' => 'play-circle',
						'\f145' => 'ticket',
						'\f146' => 'minus-square',
						'\f147' => 'minus-square-o',
						'\f148' => 'level-up',
						'\f149' => 'level-down',
						'\f14a' => 'check-square',
						'\f14b' => 'pencil-square',
						'\f14c' => 'external-link-square',
						'\f14d' => 'share-square',
						'\f14e' => 'compass',
						'\f150' => 'caret-square-o-down',
						'\f151' => 'caret-square-o-up',
						'\f152' => 'caret-square-o-right',
						'\f153' => 'eur',
						'\f154' => 'gbp',
						'\f155' => 'usd',
						'\f156' => 'inr',
						'\f157' => 'jpy',
						'\f158' => 'rub',
						'\f159' => 'krw',
						'\f15a' => 'btc',
						'\f15b' => 'file',
						'\f15c' => 'file-text',
						'\f15d' => 'sort-alpha-asc',
						'\f15e' => 'sort-alpha-desc',
						'\f160' => 'sort-amount-asc',
						'\f161' => 'sort-amount-desc',
						'\f162' => 'sort-numeric-asc',
						'\f163' => 'sort-numeric-desc',
						'\f164' => 'thumbs-up',
						'\f165' => 'thumbs-down',
						'\f166' => 'youtube-square',
						'\f167' => 'youtube',
						'\f168' => 'xing',
						'\f169' => 'xing-square',
						'\f16a' => 'youtube-play',
						'\f16b' => 'dropbox',
						'\f16c' => 'stack-overflow',
						'\f16d' => 'instagram',
						'\f16e' => 'flickr',
						'\f170' => 'adn',
						'\f171' => 'bitbucket',
						'\f172' => 'bitbucket-square',
						'\f173' => 'tumblr',
						'\f174' => 'tumblr-square',
						'\f175' => 'long-arrow-down',
						'\f176' => 'long-arrow-up',
						'\f177' => 'long-arrow-left',
						'\f178' => 'long-arrow-right',
						'\f179' => 'apple',
						'\f17a' => 'windows',
						'\f17b' => 'android',
						'\f17c' => 'linux',
						'\f17d' => 'dribbble',
						'\f17e' => 'skype',
						'\f180' => 'foursquare',
						'\f181' => 'trello',
						'\f182' => 'female',
						'\f183' => 'male',
						'\f184' => 'gratipay',
						'\f185' => 'sun-o',
						'\f186' => 'moon-o',
						'\f187' => 'archive',
						'\f188' => 'bug',
						'\f189' => 'vk',
						'\f18a' => 'weibo',
						'\f18b' => 'renren',
						'\f18c' => 'pagelines',
						'\f18d' => 'stack-exchange',
						'\f18e' => 'arrow-circle-o-right',
						'\f190' => 'arrow-circle-o-left',
						'\f191' => 'caret-square-o-left',
						'\f192' => 'dot-circle-o',
						'\f193' => 'wheelchair',
						'\f194' => 'vimeo-square',
						'\f195' => 'try',
						'\f196' => 'plus-square-o',
						'\f197' => 'space-shuttle',
						'\f198' => 'slack',
						'\f199' => 'envelope-square',
						'\f19a' => 'wordpress',
						'\f19b' => 'openid',
						'\f19c' => 'university',
						'\f19d' => 'graduation-cap',
						'\f19e' => 'yahoo',
						'\f1a0' => 'google',
						'\f1a1' => 'reddit',
						'\f1a2' => 'reddit-square',
						'\f1a3' => 'stumbleupon-circle',
						'\f1a4' => 'stumbleupon',
						'\f1a5' => 'delicious',
						'\f1a6' => 'digg',
						'\f1a7' => 'pied-piper-pp',
						'\f1a8' => 'pied-piper-alt',
						'\f1a9' => 'drupal',
						'\f1aa' => 'joomla',
						'\f1ab' => 'language',
						'\f1ac' => 'fax',
						'\f1ad' => 'building',
						'\f1ae' => 'child',
						'\f1b0' => 'paw',
						'\f1b1' => 'spoon',
						'\f1b2' => 'cube',
						'\f1b3' => 'cubes',
						'\f1b4' => 'behance',
						'\f1b5' => 'behance-square',
						'\f1b6' => 'steam',
						'\f1b7' => 'steam-square',
						'\f1b8' => 'recycle',
						'\f1b9' => 'car',
						'\f1ba' => 'taxi',
						'\f1bb' => 'tree',
						'\f1bc' => 'spotify',
						'\f1bd' => 'deviantart',
						'\f1be' => 'soundcloud',
						'\f1c0' => 'database',
						'\f1c1' => 'file-pdf-o',
						'\f1c2' => 'file-word-o',
						'\f1c3' => 'file-excel-o',
						'\f1c4' => 'file-powerpoint-o',
						'\f1c5' => 'file-image-o',
						'\f1c6' => 'file-archive-o',
						'\f1c7' => 'file-audio-o',
						'\f1c8' => 'file-video-o',
						'\f1c9' => 'file-code-o',
						'\f1ca' => 'vine',
						'\f1cb' => 'codepen',
						'\f1cc' => 'jsfiddle',
						'\f1cd' => 'life-ring',
						'\f1ce' => 'circle-o-notch',
						'\f1d0' => 'rebel',
						'\f1d1' => 'empire',
						'\f1d2' => 'git-square',
						'\f1d3' => 'git',
						'\f1d4' => 'hacker-news',
						'\f1d5' => 'tencent-weibo',
						'\f1d6' => 'qq',
						'\f1d7' => 'weixin',
						'\f1d8' => 'paper-plane',
						'\f1d9' => 'paper-plane-o',
						'\f1da' => 'history',
						'\f1db' => 'circle-thin',
						'\f1dc' => 'header',
						'\f1dd' => 'paragraph',
						'\f1de' => 'sliders',
						'\f1e0' => 'share-alt',
						'\f1e1' => 'share-alt-square',
						'\f1e2' => 'bomb',
						'\f1e3' => 'futbol-o',
						'\f1e4' => 'tty',
						'\f1e5' => 'binoculars',
						'\f1e6' => 'plug',
						'\f1e7' => 'slideshare',
						'\f1e8' => 'twitch',
						'\f1e9' => 'yelp',
						'\f1ea' => 'newspaper-o',
						'\f1eb' => 'wifi',
						'\f1ec' => 'calculator',
						'\f1ed' => 'paypal',
						'\f1ee' => 'google-wallet',
						'\f1f0' => 'cc-visa',
						'\f1f1' => 'cc-mastercard',
						'\f1f2' => 'cc-discover',
						'\f1f3' => 'cc-amex',
						'\f1f4' => 'cc-paypal',
						'\f1f5' => 'cc-stripe',
						'\f1f6' => 'bell-slash',
						'\f1f7' => 'bell-slash-o',
						'\f1f8' => 'trash',
						'\f1f9' => 'copyright',
						'\f1fa' => 'at',
						'\f1fb' => 'eyedropper',
						'\f1fc' => 'paint-brush',
						'\f1fd' => 'birthday-cake',
						'\f1fe' => 'area-chart',
						'\f200' => 'pie-chart',
						'\f201' => 'line-chart',
						'\f202' => 'lastfm',
						'\f203' => 'lastfm-square',
						'\f204' => 'toggle-off',
						'\f205' => 'toggle-on',
						'\f206' => 'bicycle',
						'\f207' => 'bus',
						'\f208' => 'ioxhost',
						'\f209' => 'angellist',
						'\f20a' => 'cc',
						'\f20b' => 'ils',
						'\f20c' => 'meanpath',
						'\f20d' => 'buysellads',
						'\f20e' => 'connectdevelop',
						'\f210' => 'dashcube',
						'\f211' => 'forumbee',
						'\f212' => 'leanpub',
						'\f213' => 'sellsy',
						'\f214' => 'shirtsinbulk',
						'\f215' => 'simplybuilt',
						'\f216' => 'skyatlas',
						'\f217' => 'cart-plus',
						'\f218' => 'cart-arrow-down',
						'\f219' => 'diamond',
						'\f21a' => 'ship',
						'\f21b' => 'user-secret',
						'\f21c' => 'motorcycle',
						'\f21d' => 'street-view',
						'\f21e' => 'heartbeat',
						'\f221' => 'venus',
						'\f222' => 'mars',
						'\f223' => 'mercury',
						'\f224' => 'transgender',
						'\f225' => 'transgender-alt',
						'\f226' => 'venus-double',
						'\f227' => 'mars-double',
						'\f228' => 'venus-mars',
						'\f229' => 'mars-stroke',
						'\f22a' => 'mars-stroke-v',
						'\f22b' => 'mars-stroke-h',
						'\f22c' => 'neuter',
						'\f22d' => 'genderless',
						'\f230' => 'facebook-official',
						'\f231' => 'pinterest-p',
						'\f232' => 'whatsapp',
						'\f233' => 'server',
						'\f234' => 'user-plus',
						'\f235' => 'user-times',
						'\f236' => 'bed',
						'\f237' => 'viacoin',
						'\f238' => 'train',
						'\f239' => 'subway',
						'\f23a' => 'medium',
						'\f23b' => 'y-combinator',
						'\f23c' => 'optin-monster',
						'\f23d' => 'opencart',
						'\f23e' => 'expeditedssl',
						'\f240' => 'battery-full',
						'\f241' => 'battery-three-quarters',
						'\f242' => 'battery-half',
						'\f243' => 'battery-quarter',
						'\f244' => 'battery-empty',
						'\f245' => 'mouse-pointer',
						'\f246' => 'i-cursor',
						'\f247' => 'object-group',
						'\f248' => 'object-ungroup',
						'\f249' => 'sticky-note',
						'\f24a' => 'sticky-note-o',
						'\f24b' => 'cc-jcb',
						'\f24c' => 'cc-diners-club',
						'\f24d' => 'clone',
						'\f24e' => 'balance-scale',
						'\f250' => 'hourglass-o',
						'\f251' => 'hourglass-start',
						'\f252' => 'hourglass-half',
						'\f253' => 'hourglass-end',
						'\f254' => 'hourglass',
						'\f255' => 'hand-rock-o',
						'\f256' => 'hand-paper-o',
						'\f257' => 'hand-scissors-o',
						'\f258' => 'hand-lizard-o',
						'\f259' => 'hand-spock-o',
						'\f25a' => 'hand-pointer-o',
						'\f25b' => 'hand-peace-o',
						'\f25c' => 'trademark',
						'\f25d' => 'registered',
						'\f25e' => 'creative-commons',
						'\f260' => 'gg',
						'\f261' => 'gg-circle',
						'\f262' => 'tripadvisor',
						'\f263' => 'odnoklassniki',
						'\f264' => 'odnoklassniki-square',
						'\f265' => 'get-pocket',
						'\f266' => 'wikipedia-w',
						'\f267' => 'safari',
						'\f268' => 'chrome',
						'\f269' => 'firefox',
						'\f26a' => 'opera',
						'\f26b' => 'internet-explorer',
						'\f26c' => 'television',
						'\f26d' => 'contao',
						'\f26e' => '500px',
						'\f270' => 'amazon',
						'\f271' => 'calendar-plus-o',
						'\f272' => 'calendar-minus-o',
						'\f273' => 'calendar-times-o',
						'\f274' => 'calendar-check-o',
						'\f275' => 'industry',
						'\f276' => 'map-pin',
						'\f277' => 'map-signs',
						'\f278' => 'map-o',
						'\f279' => 'map',
						'\f27a' => 'commenting',
						'\f27b' => 'commenting-o',
						'\f27c' => 'houzz',
						'\f27d' => 'vimeo',
						'\f27e' => 'black-tie',
						'\f280' => 'fonticons',
						'\f281' => 'reddit-alien',
						'\f282' => 'edge',
						'\f283' => 'credit-card-alt',
						'\f284' => 'codiepie',
						'\f285' => 'modx',
						'\f286' => 'fort-awesome',
						'\f287' => 'usb',
						'\f288' => 'product-hunt',
						'\f289' => 'mixcloud',
						'\f28a' => 'scribd',
						'\f28b' => 'pause-circle',
						'\f28c' => 'pause-circle-o',
						'\f28d' => 'stop-circle',
						'\f28e' => 'stop-circle-o',
						'\f290' => 'shopping-bag',
						'\f291' => 'shopping-basket',
						'\f292' => 'hashtag',
						'\f293' => 'bluetooth',
						'\f294' => 'bluetooth-b',
						'\f295' => 'percent',
						'\f296' => 'gitlab',
						'\f297' => 'wpbeginner',
						'\f298' => 'wpforms',
						'\f299' => 'envira',
						'\f29a' => 'universal-access',
						'\f29b' => 'wheelchair-alt',
						'\f29c' => 'question-circle-o',
						'\f29d' => 'blind',
						'\f29e' => 'audio-description',
						'\f2a0' => 'volume-control-phone',
						'\f2a1' => 'braille',
						'\f2a2' => 'assistive-listening-systems',
						'\f2a3' => 'american-sign-language-interpreting',
						'\f2a4' => 'deaf',
						'\f2a5' => 'glide',
						'\f2a6' => 'glide-g',
						'\f2a7' => 'sign-language',
						'\f2a8' => 'low-vision',
						'\f2a9' => 'viadeo',
						'\f2aa' => 'viadeo-square',
						'\f2ab' => 'snapchat',
						'\f2ac' => 'snapchat-ghost',
						'\f2ad' => 'snapchat-square',
						'\f2ae' => 'pied-piper',
						'\f2b0' => 'first-order',
						'\f2b1' => 'yoast',
						'\f2b2' => 'themeisle',
						'\f2b3' => 'google-plus-official',
						'\f2b4' => 'font-awesome',
					),
					'Dashicons'   => array(
						'\f100' => 'admin-appearance',
						'\f101' => 'admin-comments',
						'\f102' => 'admin-home',
						'\f104' => 'admin-media',
						'\f105' => 'admin-page',
						'\f106' => 'admin-plugins',
						'\f107' => 'admin-tools',
						'\f108' => 'admin-settings',
						'\f110' => 'admin-users',
						'\f111' => 'admin-generic',
						'\f112' => 'admin-network',
						'\f115' => 'welcome-view-site',
						'\f116' => 'welcome-widgets-menus',
						'\f117' => 'welcome-comments',
						'\f118' => 'welcome-learn-more',
						'\f120' => 'wordpress',
						'\f122' => 'format-quote',
						'\f123' => 'format-aside',
						'\f125' => 'format-chat',
						'\f126' => 'format-video',
						'\f127' => 'format-audio',
						'\f128' => 'format-image',
						'\f130' => 'format-status',
						'\f132' => 'plus',
						'\f133' => 'welcome-add-page',
						'\f134' => 'align-center',
						'\f135' => 'align-left',
						'\f136' => 'align-right',
						'\f138' => 'align-none',
						'\f139' => 'arrow-right',
						'\f140' => 'arrow-down',
						'\f141' => 'arrow-left',
						'\f142' => 'arrow-up',
						'\f145' => 'calendar',
						'\f147' => 'yes',
						'\f148' => 'admin-collapse',
						'\f153' => 'dismiss',
						'\f154' => 'star-empty',
						'\f155' => 'star-filled',
						'\f156' => 'sort',
						'\f157' => 'pressthis',
						'\f158' => 'no',
						'\f159' => 'marker',
						'\f160' => 'lock',
						'\f161' => 'format-gallery',
						'\f163' => 'list-view',
						'\f165' => 'image-crop',
						'\f166' => 'image-rotate-left',
						'\f167' => 'image-rotate-right',
						'\f168' => 'image-flip-vertical',
						'\f169' => 'image-flip-horizontal',
						'\f171' => 'undo',
						'\f172' => 'redo',
						'\f173' => 'post-status',
						'\f174' => 'cart',
						'\f175' => 'feedback',
						'\f176' => 'cloud',
						'\f177' => 'visibility',
						'\f178' => 'vault',
						'\f179' => 'search',
						'\f180' => 'screenoptions',
						'\f181' => 'slides',
						'\f183' => 'analytics',
						'\f184' => 'chart-pie',
						'\f185' => 'chart-bar',
						'\f200' => 'editor-bold',
						'\f201' => 'editor-italic',
						'\f203' => 'editor-ul',
						'\f204' => 'editor-ol',
						'\f205' => 'editor-quote',
						'\f206' => 'editor-alignleft',
						'\f207' => 'editor-aligncenter',
						'\f208' => 'editor-alignright',
						'\f209' => 'editor-insertmore',
						'\f210' => 'editor-spellcheck',
						'\f212' => 'editor-kitchensink',
						'\f213' => 'editor-underline',
						'\f214' => 'editor-justify',
						'\f215' => 'editor-textcolor',
						'\f216' => 'editor-paste-word',
						'\f217' => 'editor-paste-text',
						'\f218' => 'editor-removeformatting',
						'\f219' => 'editor-video',
						'\f220' => 'editor-customchar',
						'\f221' => 'editor-outdent',
						'\f222' => 'editor-indent',
						'\f223' => 'editor-help',
						'\f224' => 'editor-strikethrough',
						'\f225' => 'editor-unlink',
						'\f226' => 'dashboard',
						'\f227' => 'flag',
						'\f229' => 'leftright',
						'\f230' => 'location',
						'\f231' => 'location-alt',
						'\f232' => 'images-alt',
						'\f233' => 'images-alt2',
						'\f234' => 'video-alt',
						'\f235' => 'video-alt2',
						'\f236' => 'video-alt3',
						'\f237' => 'share1',
						'\f238' => 'chart-line',
						'\f239' => 'chart-area',
						'\f240' => 'share-alt',
						'\f242' => 'share-alt2',
						'\f301' => 'twitter',
						'\f303' => 'rss',
						'\f304' => 'facebook',
						'\f305' => 'facebook-alt',
						'\f306' => 'camera',
						'\f307' => 'groups',
						'\f308' => 'hammer',
						'\f309' => 'art',
						'\f310' => 'migrate',
						'\f311' => 'performance',
						'\f312' => 'products',
						'\f313' => 'awards',
						'\f314' => 'forms',
						'\f316' => 'download',
						'\f317' => 'upload',
						'\f318' => 'category',
						'\f319' => 'admin-site',
						'\f320' => 'editor-rtl',
						'\f321' => 'backup',
						'\f322' => 'portfolio',
						'\f323' => 'tag',
						'\f324' => 'wordpress-alt',
						'\f325' => 'networking',
						'\f326' => 'translation',
						'\f328' => 'smiley',
						'\f330' => 'book',
						'\f331' => 'book-alt',
						'\f332' => 'shield',
						'\f333' => 'menu',
						'\f334' => 'shield-alt',
						'\f335' => 'no-alt',
						'\f336' => 'id',
						'\f337' => 'id-alt',
						'\f338' => 'businessman',
						'\f339' => 'lightbulb',
						'\f340' => 'arrow-left-alt',
						'\f341' => 'arrow-left-alt2',
						'\f342' => 'arrow-up-alt',
						'\f343' => 'arrow-up-alt2',
						'\f344' => 'arrow-right-alt',
						'\f345' => 'arrow-right-alt2',
						'\f346' => 'arrow-down-alt',
						'\f347' => 'arrow-down-alt2',
						'\f348' => 'info',
						'\f459' => 'star-half',
						'\f460' => 'minus',
						'\f462' => 'googleplus',
						'\f463' => 'update',
						'\f464' => 'edit',
						'\f465' => 'email',
						'\f466' => 'email-alt',
						'\f468' => 'sos',
						'\f469' => 'clock',
						'\f470' => 'smartphone',
						'\f471' => 'tablet',
						'\f472' => 'desktop',
						'\f473' => 'testimonial',
						'\f474' => 'editor-break',
						'\f475' => 'editor-code',
						'\f476' => 'editor-paragraph',
						'\f478' => 'text',
						'\f479' => 'tagcloud',
						'\f480' => 'archive',
						'\f481' => 'clipboard',
						'\f482' => 'microphone',
						'\f483' => 'universal-access',
						'\f484' => 'nametag',
						'\f486' => 'tickets',
						'\f487' => 'heart',
						'\f488' => 'megaphone',
						'\f489' => 'schedule',
						'\f490' => 'media-video',
						'\f491' => 'media-text',
						'\f492' => 'playlist-audio',
						'\f493' => 'playlist-video',
						'\f495' => 'media-spreadsheet',
						'\f496' => 'media-interactive',
						'\f497' => 'media-document',
						'\f498' => 'media-default',
						'\f499' => 'media-code',
						'\f500' => 'media-audio',
						'\f501' => 'media-archive',
						'\f502' => 'plus-alt',
						'\f503' => 'randomize',
						'\f504' => 'external',
						'\f506' => 'editor-contract',
						'\f507' => 'universal-access-alt',
						'\f508' => 'calendar-alt',
						'\f509' => 'grid-view',
						'\f510' => 'index-card',
						'\f511' => 'carrot',
						'\f512' => 'building',
						'\f513' => 'store',
						'\f514' => 'album',
						'\f515' => 'controls-repeat',
						'\f516' => 'controls-skipback',
						'\f517' => 'controls-skipforward',
						'\f518' => 'controls-back',
						'\f519' => 'controls-forward',
						'\f520' => 'controls-volumeoff',
						'\f521' => 'controls-volumeon',
						'\f522' => 'controls-play',
						'\f523' => 'controls-pause',
						'\f524' => 'tickets-alt',
						'\f525' => 'phone',
						'\f526' => 'money',
						'\f527' => 'palmtree',
						'\f528' => 'unlock',
						'\f529' => 'thumbs-up',
						'\f530' => 'hidden',
						'\f531' => 'image-rotate',
						'\f533' => 'image-filter',
						'\f534' => 'warning',
						'\f535' => 'editor-table',
						'\f536' => 'filter',
						'\f537' => 'sticky',
						'\f538' => 'layout',
						'\f540' => 'admin-customizer',
						'\f541' => 'admin-multisite',
						'\f542' => 'thumbs-down',
						'\f543' => 'plus-alt2',
						'\f545' => 'move',
						'\f546' => 'paperclip',
						'\f547' => 'laptop',
					),
				),
			);


		/**
		 * Singleton implementation.
		 *
		 * @return YIT_Icons
		 */
		public static function instance() {
			return ! is_null( self::$instance ) ? self::$instance : self::$instance = new self();
		}

		/**
		 * Deprecated singleton implementation.
		 * Kept for backward compatibility.
		 *
		 * @return YIT_Icons
		 * @deprecated 3.5 | use YIT_Icons::get_instance() instead.
		 */
		public static function get_instance() {
			return self::instance();
		}

		/**
		 * YIT_Icons constructor.
		 */
		private function __construct() {
			add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_scripts' ), 99 );
			add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_scripts' ), 99 );
		}

		/**
		 * __get function.
		 *
		 * @param string $key The key.
		 *
		 * @return mixed
		 */
		public function __get( $key ) {
			$value = isset( $this->data[ $key ] ) ? $this->data[ $key ] : false;

			return $value;
		}

		/**
		 * __isset function.
		 *
		 * @param string $key The key.
		 *
		 * @return bool
		 */
		public function __isset( $key ) {
			return isset( $this->data[ $key ] );
		}

		/**
		 * Get the icons.
		 *
		 * @param string $filter_suffix The filter suffix.
		 *
		 * @return false|mixed|void
		 */
		public function get_icons( $filter_suffix = '' ) {
			$icons = $this->icons;
			if ( ! empty( $filter_suffix ) ) {
				$icons = apply_filters( 'yith_plugin_fw_icons_field_icons_' . sanitize_key( $filter_suffix ), $icons );
			}

			return $icons;
		}

		/**
		 * Get the icon data
		 *
		 * @param string $icon_string   The icon string.
		 * @param string $filter_suffix The filter suffix.
		 *
		 * @return string
		 */
		public function get_icon_data( $icon_string, $filter_suffix = '' ) {
			return yith_plugin_fw_html_data_to_string( $this->get_icon_data_array( $icon_string, $filter_suffix ) );
		}

		/**
		 * Get the icon data array
		 *
		 * @param string $icon_string   The icon string.
		 * @param string $filter_suffix The filter suffix.
		 *
		 * @return array
		 */
		public function get_icon_data_array( $icon_string, $filter_suffix = '' ) {
			$icon_data = array();
			if ( $icon_string ) {
				$icon_array = explode( ':', $icon_string );

				if ( count( $icon_array ) < 2 ) {
					return $icon_data;
				}

				$font_name = $icon_array[0];
				$icon_name = $icon_array[1];

				$icons = $this->get_icons( $filter_suffix );
				if ( array_key_exists( $font_name, $icons ) ) {
					$icon_key  = array_search( $icon_name, $icons[ $font_name ], true );
					$icon_code = '&#x' . str_replace( '\\', '', $icon_key );
					$icon_data = array(
						'font' => $font_name,
						'name' => $icon_name,
						'key'  => $icon_key,
						'icon' => $icon_code,
					);
				}
			}

			return $icon_data;
		}

		/**
		 * Retrieves the font awesome array
		 * the first time retrieves the array by the Font Awesome CSS
		 * [utility method]
		 *
		 * @return array
		 */
		private function get_font_awesome_array() {
			$font_awesome_list    = get_option( 'yit_font_awesome_list', array() );
			$font_awesome_version = $this->font_awesome_version;

			$font_awesome_array = array();

			if ( ! empty( $font_awesome_list[ $font_awesome_version ] ) ) {
				$font_awesome_array = $font_awesome_list[ $font_awesome_version ];
			} else {
				// Retrieve the array by the CSS file.
				$font_awesome_uri = "https://maxcdn.bootstrapcdn.com/font-awesome/{$font_awesome_version}/css/font-awesome.min.css";
				$pattern          = '/\.(fa-(?:\w+(?:-)?)+):before{content:"\\\\(....)"}/';

				$response = wp_remote_get( $font_awesome_uri );

				if ( ! is_wp_error( $response ) && 200 === absint( $response['response']['code'] ) && 'OK' === $response['response']['message'] ) {
					$body = $response['body'];

					preg_match_all( $pattern, $body, $matches, PREG_SET_ORDER );
					foreach ( $matches as $match ) {
						$font_awesome_array[ $match[2] ] = $match[1];
					}
					ksort( $font_awesome_array );

					$font_awesome_list[ $font_awesome_version ] = $font_awesome_array;
					update_option( 'yit_font_awesome_list', $font_awesome_list );
				}
			}

			return $font_awesome_array;
		}

		/**
		 * Retrieves the Dashicons array
		 * the first time retrieves the array by the Dashicons CSS
		 * [utility method]
		 *
		 * @return array
		 */
		private function get_dashicons_array() {
			$dashicons_list = get_option( 'yit_dashicons_list', array() );

			$dashicons_array = array();
			if ( ! empty( $dashicons_list ) ) {
				$dashicons_array = $dashicons_list;
			} else {
				// Retrieve the array by the CSS file.
				$uri     = 'https://s.w.org/wp-includes/css/dashicons.min.css';
				$pattern = '/\.dashicons-((?:\w+(?:-)?)+):before{content:"\\\\(....)"/';
				$pattern = '/\.dashicons-((?:\w+(?:-)?)+):before.............../';

				$response = wp_remote_get( $uri );

				if ( ! is_wp_error( $response ) && 200 === absint( $response['response']['code'] ) && 'OK' === $response['response']['message'] ) {
					$body = $response['body'];

					preg_match_all( $pattern, $body, $matches, PREG_SET_ORDER );

					foreach ( $matches as $match ) {
						$code = str_replace( '.dashicons-' . $match[1] . ':before{content:"\\', '', $match[0] );
						if ( 4 === strlen( $code ) ) {
							$dashicons_array[ $code ] = $match[1];
						}
					}
					ksort( $dashicons_array );
				}
			}

			return $dashicons_array;
		}

		/**
		 * Enqueue Scripts
		 */
		public function enqueue_scripts() {
			wp_register_style( 'font-awesome', "https://maxcdn.bootstrapcdn.com/font-awesome/{$this->font_awesome_version}/css/font-awesome.min.css", array(), $this->font_awesome_version );

			wp_add_inline_style( 'font-awesome', $this->get_inline_style( 'font-awesome' ) );

			wp_add_inline_style( 'dashicons', $this->get_inline_style( 'dashicons' ) );
		}

		/**
		 * Return the icon HTML from icon_string passed
		 *
		 * @param string|array $icon The icon.
		 * @param array        $args Array of arguments (such as html_tag, class, style, filter_suffix).
		 *
		 * @return string
		 */
		public function get_icon( $icon = '', $args = array() ) {
			$icon      = is_array( $icon ) && isset( $icon['icon'] ) ? $icon['icon'] : $icon;
			$icon_html = '';
			if ( $icon ) {
				$default_args = array(
					'html_tag'      => 'span',
					'class'         => '',
					'style'         => '',
					'filter_suffix' => '',
				);
				$args         = wp_parse_args( $args, $default_args );

				// back-ward compatibility: 'filter_icons' argument is deprecated; use 'filter_suffix' instead!
				if ( ! empty( $args['filter_icons'] ) && ! $args['filter_suffix'] ) {
					$args['filter_suffix'] = $args['filter_icons'];
				}

				$html_tag      = $args['html_tag'];
				$class         = $args['class'];
				$style         = $args['style'];
				$filter_suffix = $args['filter_suffix'];

				$icon_data = $this->get_icon_data( $icon, $filter_suffix );

				if ( $icon_data ) {
					$icon_html = "<$html_tag class=\"$class\" style=\"$style\" $icon_data></$html_tag>";
				}
			}

			return $icon_html;
		}

		/**
		 * Get inline style.
		 *
		 * @param string $handle The handle.
		 *
		 * @return string
		 */
		public function get_inline_style( $handle ) {
			$css = '';
			switch ( $handle ) {
				case 'font-awesome':
					$css = '[data-font="FontAwesome"]:before {font-family: \'FontAwesome\' !important;content: attr(data-icon) !important;speak: none !important;font-weight: normal !important;font-variant: normal !important;text-transform: none !important;line-height: 1 !important;font-style: normal !important;-webkit-font-smoothing: antialiased !important;-moz-osx-font-smoothing: grayscale !important;}';
					break;
				case 'dashicons':
					$css = '[data-font="Dashicons"]:before {font-family: \'Dashicons\' !important;content: attr(data-icon) !important;speak: none !important;font-weight: normal !important;font-variant: normal !important;text-transform: none !important;line-height: 1 !important;font-style: normal !important;-webkit-font-smoothing: antialiased !important;-moz-osx-font-smoothing: grayscale !important;}';
			}

			return $css;
		}

		/**
		 * Get inline style
		 * Deprecated for typo
		 *
		 * @param string $handle The handle.
		 *
		 * @return string
		 * @deprecated 3.5 | use YIT_Icons::get_inline_style()
		 */
		public function get_inline_scripts( $handle ) {
			return $this->get_inline_style( $handle );
		}

	}
}
if ( ! function_exists( 'yit_icons' ) ) {
	/**
	 * Return instance of YIT_Icons class.
	 *
	 * @return YIT_Icons
	 */
	function yit_icons() {
		return YIT_Icons::instance();
	}
}

yit_icons();
PK`x1\�E_́!�!	README.mdnu�[���<p align="center"><a href="https://yithemes.com/"><img src="https://docs.yithemes.com/wp-content/uploads/2018/02/logo-1.png" alt="yithemes.com"></a></p>

<p align="center">
<img src="https://img.shields.io/github/v/release/yithemes/yith-woocommerce-wishlist?label=stable" alt="Latest release">
<img src="https://img.shields.io/github/license/yithemes/yith-woocommerce-wishlist" alt="License">
<img src="https://img.shields.io/github/last-commit/yithemes/yith-woocommerce-wishlist" alt="Last commit">
<img src="https://img.shields.io/github/languages/code-size/yithemes/yith-woocommerce-wishlist" alt="Code size">
</p>

Welcome to the YITH WooCommerce Wishlist repository on GitHub. Here you can browse the source, look at open issues and keep track of the development.

If you are not a developer, please, use the [YITH WooCommerce Wishlist plugin page](https://wordpress.org/plugins/yith-woocommerce-wishlist/) on WordPress.org.

## About plugin

The wishlist is one of the most powerful and popular tools in an ecommerce shop. Thanks to the wishlist, users can:

* Save their favourite products, find them quickly and easily at a later time and buy them.
* Share the wishlist with relatives and friends for Christmas, birthdays and similar occasions so they can buy them one of the products from the list.
* Share the wishlist on social networks and get indirect advertising for your store.

This means that you’ll be able to loyalise customers, push them to buy and attract new customers any time a wishlist is shared. Not bad for one plugin only, don’t you think?

Our YITH WooCommerce Wishlist has more than **900,000 active installations** and that’s why it’s **the most popular wishlist plugin ever.**

To celebrate this record and say thanks to all the plugin users, we’ve decided to release a new 3.0 version that has improved the design tremendously  and added many new options.

**If you like the new design, please, [leave a review](https://wordpress.org/support/plugin/yith-woocommerce-wishlist/reviews/#new-post) to help the plugin grow!**

[Free version live demo >](https://plugins.yithemes.com/yith-woocommerce-wishlist-free/)
[Documentation >](https://docs.yithemes.com/yith-woocommerce-wishlist)

### Basic features

* Select a page for your wishlist
* Select where to show the shortcode ‘Add to wishlist’
* Show the ‘Remove from wishlist’ button when the product is in the Wishlist
* Show the ‘Add to wishlist’ button also on the Shop page
* Customise columns that will be displayed in the wishlist table
* Product variation support (if the user selects a specific color or size and then adds it to the wishlist, this details will be saved)

### Premium features

[Premium version live demo >](https://plugins.yithemes.com/yith-woocommerce-wishlist/)

The free version of our plugin works like a charm, but the premium one is an even more powerful tool to increase sales and conversions. By upgrading to the premium version, you can:

* View the wishlists created by logged-in customers
* View a list of popular products (added to wishlists)
* Send promotionals email to users who have added a specific product to their wishlist
* Show the ‘Ask for an estimate’ button to let customers send the content of their wishlist to the admin and get a quotation
* Add optional notes to the quote request
* Enable/disable the wishlist features for unlogged users
* Show a notice to unlogged users: invite them to log in to benefit from all the wishlist functionalities
* Allow users to create as many wishlists as they want
* Allow users to manage wishlists, rename and delete them, add or remove items
* Allow users to search and see registered wishlists
* Allow users to set visibility options for each wishlist, by making them either public (visible to everyone), private (visible to the owner only) or shared (visible only to people it has been shared with)
* Allow users to manage the item quantity in the wishlist
* Show multiple ‘Add to Cart’ buttons in the wishlist table
* Show product price variations (Amazon style)
* Allow users to move an element from one wishlist to another, right from the wishlist table
* Allow users to drag and drop products to arrange their order in the wishlist
* Choose modern & beautiful layouts for the wishlist page and tables
* Provide your customers with nice widgets to help them find their wishlist quickly and easily.

[GET THE PREMIUM VERSION HERE with a 100% Money Back guarantee >](https://yithemes.com/themes/plugins/yith-woocommerce-wishlist/)

## Getting started

* [Installation Guide](#quick-guide)
* [Languages](#available-languages)
* [Documentation](#documentation)
* [FAQ](#faq)
* [Changelog](#changelog)
* [Support](#support)
* [Reporting Security Issue](#reporting-security-issues)

## Installation guide

Clone the plugin directly into `wp-content/plugins/` directory of your WordPress site.

Otherwise, you can 

1. Download the repository .zip file.
2. Unzip the downloaded package.
3. Upload the plugin folder into the `wp-content/plugins/` directory of your WordPress site.

Finally, you'll need to activate `YITH WooCommerce Wishlist` from Plugins page.

## Available Languages

* Chinese - CHINA
* Chinese - TAIWAN
* Croatian - CROATIA
* Danish - DENMARK
* Dutch - NETHERLANDS
* English - UNITED KINGDOM (Default)
* French - FRANCE
* German - GERMANY
* Hebrew - ISRAEL
* Italian - ITALY
* Korean - KOREA
* Persian - IRAN, ISLAMIC REPUBLIC OF
* Polish - POLAND
* Portuguese - BRAZIL
* Portuguese - PORTUGAL
* Russian - RUSSIAN FEDERATION
* Spanish - ARGENTINA
* Spanish - SPAIN
* Spanish - MEXICO
* Swedish - SWEDEN
* Turkish - TURKEY
* Ukrainian - UKRAINE

## Documentation

You can find the official documentation of the plugin [here](https://docs.yithemes.com/yith-woocommerce-wishlist/)

We're also working hard to release a developer guide; please, follow our [social channels](http://twitter.com/yithemes) to be informed about any update.

## FAQ

**Does YITH WooCommerce Wishlist allows adding an “add to wishlist” button on the products on shop page and archive pages?**

Yes, from version 3.0 the plugin also allows showing the Add to wishlist button on your **shop page, category pages, product shortcodes, product sliders,** and all the other places where the WooCommerce products’ loop is used.

**Can I customize the wishlist page?**

Yes, the page is a simple template and you can override it by putting the file template "wishlist.php" inside the "woocommerce" folder of the theme folder.

**Can I move the position of "Add to wishlist" button?**

Yes, you can move the button to another default position or you can also use the shortcode inside your theme code.

**Can I change the style of "Add to wishlist" button?**

Yes, you can change the colors of background, text and border or apply a custom css. You can also use a link or a button for the "Add to wishlist" feature.

**Wishlist page returns a 404 error?**

Try to regenerate permalinks from Settings -> Permalinks by simply saving them again.

**Have you encountered anomalies after plugin update, that did not exist in the previous version?**

This might depend on the fact that your theme overrides plugin templates. Check if the developer of your theme has released a compatibility update with version 3.0 or later of YITH WooCommerce Wishlist. As an alternative you can try the plugin in WordPress default theme to leave out any possible influences by the theme.

**I am currently using Wishlist plugin with Catalog Mode enabled in my site. Prices for products should disappear, yet they still appear in the wishlist page. Can I remove them?**

Yes, of course you can. To avoid Wishlist page to show product prices, you can hide price column from wishlist table. Go to YITH -> Wishlist -> Wishlist Page Options and disable option "Product price".

## Changelog

### 3.3.0 - Released on 11 November 2021

* New: support for WooCommerce 5.9
* Update: YITH plugin framework
* Dev: added yith_wcwl_table_product_show_add_to_cart filter to wishlist-view-mobile.php template

## Support

This repository should be considered as a development tool.
Please, post any support request about this plugin on [wp.org support forum](https://wordpress.org/support/plugin/yith-woocommerce-wishlist/)

If you have purchased the premium version and need support, please, refer to our [support desk](https://yithemes.com/my-account/support/dashboard/)

## Reporting Security Issues
To disclose a security issue to our team, please, contact us from our [contact form](https://yithemes.com/contact-form/).PK`x1\�]�۰�
uninstall.phpnu�[���PK`x1\�W)�templates/wishlist-view-footer-mobile.phpnu�[���PK`x1\���Xtemplates/wishlist.phpnu�[���PK`x1\���2�2*n#templates/admin/wishlist-panel-premium.phpnu�[���PK`x1\۰I%
%
"�Vtemplates/wishlist-view-header.phpnu�[���PK`x1\�GWT		$ atemplates/add-to-wishlist-browse.phpnu�[���PK`x1\Ҙ�+6+6�jtemplates/wishlist-view.phpnu�[���PK`x1\$�		��templates/add-to-wishlist.phpnu�[���PK`x1\��w[**"L�templates/wishlist-view-mobile.phpnu�[���PK`x1\/��~		#�templates/add-to-wishlist-added.phpnu�[���PK`x1\\i�**x�templates/share.phpnu�[���PK`x1\�_F_$�templates/add-to-wishlist-remove.phpnu�[���PK`x1\p�g���"Ttemplates/wishlist-view-footer.phpnu�[���PK`x1\��O��$utemplates/add-to-wishlist-button.phpnu�[���PK`x1\���%init.phpnu�[���PK`x1\Yr��� �=plugin-options/lists-options.phpnu�[���PK`x1\�|�mm"�Bplugin-options/premium-options.phpnu�[���PK`x1\�ڳ��n�n(kDplugin-options/wishlist_page-options.phpnu�[���PK`x1\�w�99#��plugin-options/settings-options.phpnu�[���PK`x1\w��x�1�1*�plugin-options/add_to_wishlist-options.phpnu�[���PK`x1\M\ٖ����
q�README.txtnu�[���PK`x1\<Th&��includes/class-yith-wcwl-exception.phpnu�[���PK`x1\���=jj�includes/class-yith-wcwl.phpnu�[���PK`x1\
B
V�V�%]�includes/class-yith-wcwl-frontend.phpnu�[���PK`x1\X]ܼ)�includes/class-yith-wcwl-form-handler.phpnu�[���PK`x1\��~r?r?*u�includes/class-yith-wcwl-wishlist-item.phpnu�[���PK`x1\�q��Y�Y%A�includes/class-yith-wcwl-wishlist.phpnu�[���PK`x1\��!��.?Tincludes/legacy/functions-yith-wcwl-legacy.phpnu�[���PK`x1\�a	a	!xXincludes/class-yith-wcwl-cron.phpnu�[���PK`x1\6G�/"W"WA*bincludes/data-stores/class-yith-wcwl-wishlist-item-data-store.phpnu�[���PK`x1\���ҋҋ<��includes/data-stores/class-yith-wcwl-wishlist-data-store.phpnu�[���PK`x1\�?��11)�Eincludes/class-yith-wcwl-ajax-handler.phpnu�[���PK`x1\}��b#b#$nwincludes/class-yith-wcwl-session.phpnu�[���PK`x1\e|�.ssH$�includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.phpnu�[���PK`x1\�,(��A�includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.phpnu�[���PK`x1\��T%%$8�includes/class-yith-wcwl-install.phpnu�[���PK`x1\y�qh(h("��includes/class-yith-wcwl-admin.phpnu�[���PK`x1\�[\��$�$$\includes/class-yith-wcwl-privacy.phpnu�[���PK`x1\n�yy&�4includes/class-yith-wcwl-shortcode.phpnu�[���PK`x1\��J̰2�2-�includes/class-yith-wcwl-wishlist-factory.phpnu�[���PK`x1\��U0PTPT ��includes/functions-yith-wcwl.phpnu�[���PK`x1\^�3�CC�5wpml-config.xmlnu�[���PK`x1\5�z�O:O:!9assets/js/jquery.selectBox.min.jsnu�[���PK`x1\6VD�(.(. �sassets/js/admin/yith-wcwl.min.jsnu�[���PK`x1\��"NXNX$,�assets/js/admin/yith-wcwl-icons.jsonnu�[���PK`x1\"����`�`!�assets/js/jquery.yith-wcwl.min.jsnu�[���PK`x1\�~h�~�~�(�[assets/js/unminified/jquery.yith-wcwl.jsnu�[���PK`x1\{5����(�J	assets/js/unminified/jquery.selectBox.jsnu�[���PK`x1\�/���m�m'��	assets/js/unminified/admin/yith-wcwl.jsnu�[���PK`x1\����F
F
�O
assets/css/jquery.selectBox.cssnu�[���PK`x1\$�����Z
assets/css/admin.cssnu�[���PK`x1\�?r����t
assets/css/unminified/admin.cssnu�[���PK`x1\�ʼ&�&�&ٔ
assets/css/unminified/font-awesome.cssnu�[���PK`x1\^i^b��(U'assets/css/unminified/themes/oceanwp.cssnu�[���PK`x1\�6�j-�)assets/css/unminified/themes/twentytwenty.cssnu�[���PK`x1\��S+.assets/css/unminified/themes/storefront.cssnu�[���PK`x1\S���
�
*`1assets/css/unminified/jquery.selectBox.cssnu�[���PK`x1\~{�������?assets/css/unminified/style.cssnu�[���PK`x1\��Y�� ��assets/css/themes/storefront.cssnu�[���PK`x1\=x_��assets/css/themes/oceanwp.cssnu�[���PK`x1\1͑z��"�assets/css/themes/twentytwenty.cssnu�[���PK`x1\�E�q�w�w��assets/css/font-awesome.cssnu�[���PK`x1\-��oErEr�Jassets/css/style.cssnu�[���PK`x1\\�DŬ���$X�assets/fonts/fontawesome-webfont.ttfnu�[���PK`x1\��Uh-h-&XDassets/fonts/fontawesome-webfont.woff2nu�[���PK`x1\3{��~�~%rassets/fonts/fontawesome-webfont.woffnu�[���PK`x1\1��˜�S�assets/fonts/FontAwesome.otfnu�[���PK`x1\Op�n�n�$7assets/fonts/fontawesome-webfont.eotnu�[���PK`x1\��;_����$��assets/fonts/fontawesome-webfont.svgnu�[���PK`x1\��M�@@((Passets/images/jquery.selectBox-arrow.gifnu�[���PK`x1\�9\�

!�Passets/images/ajax-loader-alt.svgnu�[���PK`x1\gـ��^assets/images/whatsapp.pngnu�[���PK`x1\�]K��2�2%cassets/images/googleplus.jpgnu�[���PK`x1\�8K��L�assets/images/twitter.pngnu�[���PK`x1\��.uu&�assets/images/ajax-loader.gifnu�[���PK`x1\���(���assets/images/pinterest.jpgnu�[���PK`x1\5�۴�	�	ݤassets/images/email.jpgnu�[���PK`x1\��h�ڮassets/images/facebook.pngnu�[���PK`x1\#��.��4�assets/images/logo.pngnu�[���PK`x1\���a��g�assets/images/landing/05.pngnu�[���PK`x1\�}YZ�Z���assets/images/landing/02.pngnu�[���PK`x1\��b:�Q�Q5R!assets/images/landing/03.pngnu�[���PK`x1\J�%�����"assets/images/landing/04.pngnu�[���PK`x1\:tt-2�2�Jz$assets/images/landing/07.pngnu�[���PK`x1\�|�K�$�$�s'assets/images/landing/09.pngnu�[���PK`x1\�(	=�=���)assets/images/landing/10.pngnu�[���PK`x1\��&_[_[5++assets/images/landing/08.pngnu�[���PK`x1\Oض=00�.assets/images/landing/01.pngnu�[���PK`x1\��G�����E�0assets/images/landing/06.pngnu�[���PK`x1\����1`3assets/images/wpspin_light.gifnu�[���PK`x1\��[���� i3assets/images/video-thumb.jpgnu�[���PK`x1\Cߧ
RR(-Q4assets/images/jquery.selectBox-arrow.pngnu�[���PK`x1\��)O�����U4license.txtnu�[���PK`x1\ګ
|�|�)��4languages/yith-woocommerce-wishlist-hr.ponu�[���PK`x1\����
�
,��5languages/yith-woocommerce-wishlist-es_AR.monu�[���PK`x1\鹵>��,�5languages/yith-woocommerce-wishlist-da_DK.monu�[���PK`x1\�՚&����,
�5languages/yith-woocommerce-wishlist-zh_CN.ponu�[���PK`x1\Cn��
�
,X6languages/yith-woocommerce-wishlist-pt_BR.monu�[���PK`x1\���듯��,�b6languages/yith-woocommerce-wishlist-uk_UA.ponu�[���PK`x1\{[�Ԣ���,�7languages/yith-woocommerce-wishlist-zh_TW.ponu�[���PK`x1\���r�r,��7languages/yith-woocommerce-wishlist-it_IT.monu�[���PK`x1\Z��N�N�,�58languages/yith-woocommerce-wishlist-ko_KR.ponu�[���PK`x1\�dL�n�n,��8languages/yith-woocommerce-wishlist-nl_NL.monu�[���PK`x1\.��D
D
,�Z9languages/yith-woocommerce-wishlist-de_DE.monu�[���PK`x1\1��[�[�,ph9languages/yith-woocommerce-wishlist-es_ES.ponu�[���PK`x1\! ���,'P:languages/yith-woocommerce-wishlist-he_IL.ponu�[���PK`x1\�ȉ�

,m;languages/yith-woocommerce-wishlist-tr_TR.monu�[���PK`x1\U��,ԬԬ'�;languages/yith-woocommerce-wishlist.potnu�[���PK`x1\�o�e��,��;languages/yith-woocommerce-wishlist-pl_PL.ponu�[���PK`x1\��q��,\l<languages/yith-woocommerce-wishlist-fa_IR.monu�[���PK`x1\��5<i�i�,�y<languages/yith-woocommerce-wishlist-fr_FR.ponu�[���PK`x1\KF��
�
,{/>languages/yith-woocommerce-wishlist-es_MX.monu�[���PK`x1\c�V�JJ,�:>languages/yith-woocommerce-wishlist-sv_SE.monu�[���PK`x1\
�@}
}
,{G>languages/yith-woocommerce-wishlist-pt_PT.monu�[���PK`x1\O��&����,TR>languages/yith-woocommerce-wishlist-ru_RU.ponu�[���PK`x1\a�ff,Z?languages/yith-woocommerce-wishlist-zh_CN.monu�[���PK`x1\�[��,
?languages/yith-woocommerce-wishlist-uk_UA.monu�[���PK`x1\V�I2��,5?languages/yith-woocommerce-wishlist-pt_BR.ponu�[���PK`x1\�tm�ff,��?languages/yith-woocommerce-wishlist-zh_TW.monu�[���PK`x1\�R�nW�W�,j�?languages/yith-woocommerce-wishlist-it_IT.ponu�[���PK`x1\-6J�����,�@languages/yith-woocommerce-wishlist-nl_NL.ponu�[���PK`x1\R��F����,k�Alanguages/yith-woocommerce-wishlist-de_DE.ponu�[���PK`x1\���,zABlanguages/yith-woocommerce-wishlist-ko_KR.monu�[���PK`x1\�)(��)�RBlanguages/yith-woocommerce-wishlist-hr.monu�[���PK`x1\_+ߐK�K�,�bBlanguages/yith-woocommerce-wishlist-da_DK.ponu�[���PK`x1\hҗ[O�O�,�Clanguages/yith-woocommerce-wishlist-es_AR.ponu�[���PK`x1\�"X�X�,/�Clanguages/yith-woocommerce-wishlist-fa_IR.ponu�[���PK`x1\�2��	�	,�vDlanguages/yith-woocommerce-wishlist-pl_PL.monu�[���PK`x1\��ыj�j�,;�Dlanguages/yith-woocommerce-wishlist-fr_FR.monu�[���PK`x1\����,Elanguages/yith-woocommerce-wishlist-sv_SE.ponu�[���PK`x1\���Q�Q�,Y�Elanguages/yith-woocommerce-wishlist-es_MX.ponu�[���PK`x1\�(I{{,lFlanguages/yith-woocommerce-wishlist-ru_RU.monu�[���PK`x1\��4��,�sFlanguages/yith-woocommerce-wishlist-pt_PT.ponu�[���PK`x1\���mumu,;%Glanguages/yith-woocommerce-wishlist-es_ES.monu�[���PK`x1\�>e����,�Glanguages/yith-woocommerce-wishlist-tr_TR.ponu�[���PK`x1\�<w�
�
,YLHlanguages/yith-woocommerce-wishlist-he_IL.monu�[���PK`x1\��ܵ��WHplugin-fw/init.phpnu�[���PK`x1\��z WW+�fHplugin-fw/yit-woocommerce-compatibility.phpnu�[���PK`x1\��,Կ���Hplugin-fw/phpcs.xmlnu�[���PK`x1\�ej}��!��Hplugin-fw/yit-deactive-plugin.phpnu�[���PK`x1\K$fGG+	�Hplugin-fw/languages/yith-plugin-fw-nl_NL.monu�[���PK`x1\U)R'�G�G+vIplugin-fw/languages/yith-plugin-fw-it_IT.monu�[���PK`x1\�jx}�Z�Z&u[Iplugin-fw/languages/yith-plugin-fw.potnu�[���PK`x1\����;t;t+L�Iplugin-fw/languages/yith-plugin-fw-es_ES.ponu�[���PK`x1\MgA��x�x(�*Jplugin-fw/languages/yith-plugin-fw-el.ponu�[���PK`x1\��4�@r@r+�Jplugin-fw/languages/yith-plugin-fw-nl_NL.ponu�[���PK`x1\$��b�r�r+�Kplugin-fw/languages/yith-plugin-fw-it_IT.ponu�[���PK`x1\;�@II+�Kplugin-fw/languages/yith-plugin-fw-es_ES.monu�[���PK`x1\�ym�t=t=(A�Kplugin-fw/languages/yith-plugin-fw-el.monu�[���PK`x1\��0"��#
Lplugin-fw/lib/yit-plugin-common.phpnu�[���PK`x1\������#ELplugin-fw/lib/yit-theme-licence.phpnu�[���PK`x1\B�����}Lplugin-fw/lib/yit-icons.phpnu�[���PK`x1\(�sh�� �Lplugin-fw/lib/yith-dashboard.phpnu�[���PK`x1\�#����%�Lplugin-fw/lib/yit-plugin-panel-wc.phpnu�[���PK`x1\�8!��Lplugin-fw/lib/yit-metabox.phpnu�[���PK`x1\�>����&HLplugin-fw/lib/yit-plugin-gradients.phpnu�[���PK`x1\�����$Lplugin-fw/lib/yith-system-status.phpnu�[���PK`x1\�+_���Lplugin-fw/lib/yit-video.phpnu�[���PK`x1\��N/���Lplugin-fw/lib/yit-ajax.phpnu�[���PK`x1\xL��� Lplugin-fw/lib/yith-gutenberg.phpnu�[���PK`x1\'8����%LLplugin-fw/lib/privacy/yit-privacy.phpnu�[���PK`x1\��_��5�Lplugin-fw/lib/privacy/yit-privacy-plugin-abstract.phpnu�[���PK`x1\��:��#� Lplugin-fw/lib/yit-cpt-unlimited.phpnu�[���PK`x1\�Ե��$"Lplugin-fw/lib/yit-upgrade.phpnu�[���PK`x1\.�>���P#Lplugin-fw/lib/yit-debug.phpnu�[���PK`x1\�Q���y$Lplugin-fw/lib/yit-pointers.phpnu�[���PK`x1\�3�C���%Lplugin-fw/lib/yit-assets.phpnu�[���PK`x1\�jO���%�&Lplugin-fw/lib/yit-plugin-subpanel.phpnu�[���PK`x1\������"
(Lplugin-fw/lib/yit-plugin-panel.phpnu�[���PK`x1\c�Y��$C)Lplugin-fw/lib/yit-plugin-licence.phpnu�[���PK`x1\�{�"njnj}*Lplugin-fw/LICENSE.txtnu�[���PK`x1\���L�5�5$��Lplugin-fw/assets/fonts/yith-icon.ttfnu�[���PK`x1\�J�5��&��Lplugin-fw/assets/fonts/yith-icon.woff2nu�[���PK`x1\A�Gt6t6$�Mplugin-fw/assets/fonts/yith-icon.eotnu�[���PK`x1\R�m�

3�?Mplugin-fw/assets/images/ui-icons_222222_256x240.pngnu�[���PK`x1\���*[Mplugin-fw/assets/images/double-sidebar.pngnu�[���PK`x1\���7dd,0_Mplugin-fw/assets/images/colorbox/loading.gifnu�[���PK`x1\��hpp,�wMplugin-fw/assets/images/colorbox/border2.pngnu�[���PK`x1\���*uu,�xMplugin-fw/assets/images/colorbox/border1.pngnu�[���PK`x1\P���&�{Mplugin-fw/assets/images/no-sidebar.pngnu�[���PK`x1\Դ;WW3�Mplugin-fw/assets/images/ui-icons_888888_256x240.pngnu�[���PK`x1\
��&G�Mplugin-fw/assets/images/arrow_down.svgnu�[���PK`x1\;?nn)��Mplugin-fw/assets/images/licence-error.pngnu�[���PK`x1\�o�$PP3e�Mplugin-fw/assets/images/ui-icons_454545_256x240.pngnu�[���PK`x1\<�V��#�Mplugin-fw/assets/images/spinner.pngnu�[���PK`x1\O����3�Mplugin-fw/assets/images/ui-icons_2e83ff_256x240.pngnu�[���PK`x1\K%���%,�Mplugin-fw/assets/images/yith-icon.svgnu�[���PK`x1\c]8Ѽ�)f�Mplugin-fw/assets/images/yithemes-icon.pngnu�[���PK`x1\򹡉��({�Mplugin-fw/assets/images/sidebar-left.pngnu�[���PK`x1\@�������Mplugin-fw/assets/images/x.pngnu�[���PK`x1\]�F/��)��Mplugin-fw/assets/images/sidebar-right.pngnu�[���PK`x1\��d!+!+*��Mplugin-fw/assets/images/banner-premium.pngnu�[���PK`x1\���uu!SNplugin-fw/assets/images/sleep.pngnu�[���PK`x1\¨Rp~~Nplugin-fw/assets/css/admin.cssnu�[���PK`x1\�a���%�/Nplugin-fw/assets/css/yit-upgrader.cssnu�[���PK`x1\ۻ4�pmpm)�1Nplugin-fw/assets/css/yit-plugin-panel.cssnu�[���PK`x1\�LRAA"��Nplugin-fw/assets/css/yith-icon.cssnu�[���PK`x1\q�*s--'�Nplugin-fw/assets/css/yith-plugin-ui.cssnu�[���PK`x1\�����$��Oplugin-fw/assets/css/yith-fields.cssnu�[���PK`x1\
�����!��Pplugin-fw/assets/css/colorbox.cssnu�[���PK`x1\iS�Zee+�Qplugin-fw/assets/css/yit-upgrade-to-pro.cssnu�[���PK`x1\�ZLULU+iQplugin-fw/assets/css/yith-select2-no-wc.cssnu�[���PK`x1\����bubu0eQplugin-fw/assets/css/jquery-ui/jquery-ui.min.cssnu�[���PK`x1\�y�\��A��Qplugin-fw/assets/css/jquery-ui/images/ui-icons_888888_256x240.pngnu�[���PK`x1\[�YcooE�Qplugin-fw/assets/css/jquery-ui/images/ui-bg_glass_55_fbf9ee_1x400.pngnu�[���PK`x1\�
UIRRE��Qplugin-fw/assets/css/jquery-ui/images/ui-bg_glass_65_ffffff_1x400.pngnu�[���PK`x1\�>NYYE��Qplugin-fw/assets/css/jquery-ui/images/ui-bg_glass_75_e6e6e6_1x400.pngnu�[���PK`x1\Ѷ�ۿ�A}�Qplugin-fw/assets/css/jquery-ui/images/ui-icons_222222_256x240.pngnu�[���PK`x1\Ud%s��A��Qplugin-fw/assets/css/jquery-ui/images/ui-icons_cd0a0a_256x240.pngnu�[���PK`x1\��VVN�
Rplugin-fw/assets/css/jquery-ui/images/ui-bg_highlight-soft_75_cccccc_1x100.pngnu�[���PK`x1\w�JJE�Rplugin-fw/assets/css/jquery-ui/images/ui-bg_flat_75_ffffff_40x100.pngnu�[���PK`x1\�?${VVDrRplugin-fw/assets/css/jquery-ui/images/ui-bg_flat_0_aaaaaa_40x100.pngnu�[���PK`x1\¾͜nnE<
Rplugin-fw/assets/css/jquery-ui/images/ui-bg_glass_95_fef1ec_1x400.pngnu�[���PK`x1\���YYERplugin-fw/assets/css/jquery-ui/images/ui-bg_glass_75_dadada_1x400.pngnu�[���PK`x1\�qNL��A�Rplugin-fw/assets/css/jquery-ui/images/ui-icons_454545_256x240.pngnu�[���PK`x1\v����ARplugin-fw/assets/css/jquery-ui/images/ui-icons_2e83ff_256x240.pngnu�[���PK`x1\lk�-�=�="Q-Rplugin-fw/assets/css/metaboxes.cssnu�[���PK`x1\�΢��.IkRplugin-fw/assets/css/codemirror/codemirror.cssnu�[���PK`x1\0ѪG!!"O�Rplugin-fw/assets/css/elementor.cssnu�[���PK`x1\�u��55+‡Rplugin-fw/assets/js/yith-system-info.min.jsnu�[���PK`x1\	�L	L	"R�Rplugin-fw/assets/js/metabox.min.jsnu�[���PK`x1\��_z�J�J&�Rplugin-fw/assets/js/yith-fields.min.jsnu�[���PK`x1\�%W���%5�Rplugin-fw/assets/js/yith-dashboard.jsnu�[���PK`x1\?��!!2^�Rplugin-fw/assets/js/yith-enhanced-select-wc-2.6.jsnu�[���PK`x1\�k�vS(S(+�Splugin-fw/assets/js/yith-enhanced-select.jsnu�[���PK`x1\���		(�,Splugin-fw/assets/js/yit-cpt-unlimited.jsnu�[���PK`x1\,�@�-.-.*f6Splugin-fw/assets/js/jquery.colorbox.min.jsnu�[���PK`x1\����%�dSplugin-fw/assets/js/yit-wp-pointer.jsnu�[���PK`x1\M+��#�#�qSplugin-fw/assets/js/yith-ui.jsnu�[���PK`x1\���I��+	�Splugin-fw/assets/js/yith-colorpicker.min.jsnu�[���PK`x1\��II%�Splugin-fw/assets/js/yith-promo.min.jsnu�[���PK`x1\٧Qauu"��Splugin-fw/assets/js/yith-ui.min.jsnu�[���PK`x1\]�����Splugin-fw/assets/js/wp-pages.jsnu�[���PK`x1\��#���!}�Splugin-fw/assets/js/yith-promo.jsnu�[���PK`x1\��88+��Splugin-fw/assets/js/yit-plugin-panel.min.jsnu�[���PK`x1\.@`1#1#'6�Splugin-fw/assets/js/yit-plugin-panel.jsnu�[���PK`x1\�˿4�!�!(�	Tplugin-fw/assets/js/multisite-updater.jsnu�[���PK`x1\�za����+Tplugin-fw/assets/js/metabox.jsnu�[���PK`x1\���kk)@Tplugin-fw/assets/js/yith-dashboard.min.jsnu�[���PK`x1\	�!�pp#�BTplugin-fw/assets/js/wp-pages.min.jsnu�[���PK`x1\�h���*�ITplugin-fw/assets/js/select2/select2.min.jsnu�[���PK`x1\O����q�q&�MUplugin-fw/assets/js/jquery.colorbox.jsnu�[���PK`x1\,=�dd!̿Uplugin-fw/assets/js/how-to.min.jsnu�[���PK`x1\sJH66.��Uplugin-fw/assets/js/yith-update-plugins.min.jsnu�[���PK`x1\cͥ�%%/�Uplugin-fw/assets/js/yith-enhanced-select.min.jsnu�[���PK`x1\���C��)��Uplugin-fw/assets/js/yit-wp-pointer.min.jsnu�[���PK`x1\O�o6�
�
6��Uplugin-fw/assets/js/jquery-tiptip/jquery.tipTip.min.jsnu�[���PK`x1\Y@˶�2��Uplugin-fw/assets/js/jquery-tiptip/jquery.tipTip.jsnu�[���PK`x1\bY�aa+�Uplugin-fw/assets/js/yith-date-format.min.jsnu�[���PK`x1\�>n�cc,�Vplugin-fw/assets/js/multisite-updater.min.jsnu�[���PK`x1\���Vplugin-fw/assets/js/how-to.jsnu�[���PK`x1\0k%,�Vplugin-fw/assets/js/yit-cpt-unlimited.min.jsnu�[���PK`x1\Di�X��-Vplugin-fw/assets/js/javascript-md5/md5.min.jsnu�[���PK`x1\�8o�\�\,Vplugin-fw/assets/js/codemirror/javascript.jsnu�[���PK`x1\�(2I�t�t,P|Vplugin-fw/assets/js/codemirror/codemirror.jsnu�[���PK`x1\Pg�DN�N�"��Yplugin-fw/assets/js/yith-fields.jsnu�[���PK`x1\�.1''uZplugin-fw/assets/js/yith-date-format.jsnu�[���PK`x1\�~<�vv'�|Zplugin-fw/assets/js/yith-system-info.jsnu�[���PK`x1\CV(^99*W�Zplugin-fw/assets/js/yith-update-plugins.jsnu�[���PK`x1\.�/w	w	6�Zplugin-fw/assets/js/yith-enhanced-select-wc-2.6.min.jsnu�[���PK`x1\��\�bbǖZplugin-fw/yit-functions.phpnu�[���PK`x1\�Q�qq*t�[plugin-fw/yit-plugin-registration-hook.phpnu�[���PK`x1\����(?�[plugin-fw/dist/gutenberg/index.asset.phpnu�[���PK`x1\(P��=�=!y�[plugin-fw/dist/gutenberg/index.jsnu�[���PK`x1\S���(��[plugin-fw/dist/gutenberg/style-index.cssnu�[���PK`x1\lְe)��[plugin-fw/templates/upgrade/changelog.phpnu�[���PK`x1\i��W
W
%5�[plugin-fw/templates/upgrade/error.phpnu�[���PK`x1\Dx�H��8�[plugin-fw/templates/sysinfo/system-information-panel.phpnu�[���PK`x1\��*�...�\plugin-fw/templates/sysinfo/tabs/error-log.phpnu�[���PK`x1\��Gjj)�\plugin-fw/templates/sysinfo/tabs/main.phpnu�[���PK`x1\���-C&\plugin-fw/templates/sysinfo/tabs/php-info.phpnu�[���PK`x1\���JJ&�*\plugin-fw/templates/panel/help-tab.phpnu�[���PK`x1\}���(BJ\plugin-fw/templates/panel/custom-tab.phpnu�[���PK`x1\?�*��*|P\plugin-fw/templates/panel/sub-tabs-nav.phpnu�[���PK`x1\Hz~MM@�V\plugin-fw/templates/panel/woocommerce/woocommerce-option-row.phpnu�[���PK`x1\�s3;	;	<?^\plugin-fw/templates/panel/woocommerce/woocommerce-upload.phpnu�[���PK`x1\?����;�g\plugin-fw/templates/panel/woocommerce/woocommerce-panel.phpnu�[���PK`x1\euVL^	^	:Gk\plugin-fw/templates/panel/woocommerce/woocommerce-form.phpnu�[���PK`x1\�TSS3u\plugin-fw/templates/panel/panel-field-container.phpnu�[���PK`x1\����%�z\plugin-fw/templates/panel/infobox.phpnu�[���PK`x1\i6���3�}\plugin-fw/templates/privacy/html-policy-content.phpnu�[���PK`x1\�)�~~%��\plugin-fw/templates/metaboxes/tab.phpnu�[���PK`x1\!�4_+Ҟ\plugin-fw/templates/metaboxes/field-row.phpnu�[���PK`x1\�o�6��)3�\plugin-fw/templates/fields/dimensions.phpnu�[���PK`x1\�>�\�	�	,
�\plugin-fw/templates/fields/inline-fields.phpnu�[���PK`x1\���I�6�6-c�\plugin-fw/templates/fields/toggle-element.phpnu�[���PK`x1\l�ͨ�,��\plugin-fw/templates/fields/select-images.phpnu�[���PK`x1\$����.�]plugin-fw/templates/fields/textarea-editor.phpnu�[���PK`x1\?�-�%�]plugin-fw/templates/fields/custom.phpnu�[���PK`x1\[	�zJJ0?
]plugin-fw/templates/fields/resources/select2.phpnu�[���PK`x1\���@��7�]plugin-fw/templates/fields/resources/select2-wc-2.6.phpnu�[���PK`x1\
`s�\\0�]plugin-fw/templates/fields/copy-to-clipboard.phpnu�[���PK`x1\=�]���&�]plugin-fw/templates/fields/buttons.phpnu�[���PK`x1\��a:66/�#]plugin-fw/templates/fields/image-dimensions.phpnu�[���PK`x1\�8�L,,'=)]plugin-fw/templates/fields/textarea.phpnu�[���PK`x1\MNy		-�-]plugin-fw/templates/fields/country-select.phpnu�[���PK`x1\��ŷ$$)27]plugin-fw/templates/fields/datepicker.phpnu�[���PK`x1\\>]��%�:]plugin-fw/templates/fields/hidden.phpnu�[���PK`x1\��LJJ,�>]plugin-fw/templates/fields/ajax-products.phpnu�[���PK`x1\���dd'�A]plugin-fw/templates/fields/sidebars.phpnu�[���PK`x1\���X)?S]plugin-fw/templates/fields/customtabs.phpnu�[���PK`x1\*<|���3�h]plugin-fw/templates/fields/toggle-element-fixed.phpnu�[���PK`x1\
WlZ##-�u]plugin-fw/templates/fields/checkbox-array.phpnu�[���PK`x1\�����%g{]plugin-fw/templates/fields/upload.phpnu�[���PK`x1\�%�LL)A�]plugin-fw/templates/fields/ajax-terms.phpnu�[���PK`x1\���oo+�]plugin-fw/templates/fields/multi-select.phpnu�[���PK`x1\�L���&��]plugin-fw/templates/fields/preview.phpnu�[���PK`x1\��]..$ɚ]plugin-fw/templates/fields/icons.phpnu�[���PK`x1\o��kk2K�]plugin-fw/templates/fields/textarea-codemirror.phpnu�[���PK`x1\�&��*�]plugin-fw/templates/fields/date-format.phpnu�[���PK`x1\����jj/�]plugin-fw/templates/fields/select-mailchimp.phpnu�[���PK`x1\_S1��)ɽ]plugin-fw/templates/fields/list-table.phpnu�[���PK`x1\ڧ��MM"��]plugin-fw/templates/fields/sep.phpnu�[���PK`x1\�x$E��$_�]plugin-fw/templates/fields/onoff.phpnu�[���PK`x1\��$���%9�]plugin-fw/templates/fields/number.phpnu�[���PK`x1\��,,$�]plugin-fw/templates/fields/radio.phpnu�[���PK`x1\�����,��]plugin-fw/templates/fields/image-gallery.phpnu�[���PK`x1\��Z;;%��]plugin-fw/templates/fields/slider.phpnu�[���PK`x1\��'V�]plugin-fw/templates/fields/checkbox.phpnu�[���PK`x1\$�]��*��]plugin-fw/templates/fields/sidebarlist.phpnu�[���PK`x1\�.�		)��]plugin-fw/templates/fields/text-array.phpnu�[���PK`x1\��g���0G�]plugin-fw/templates/fields/multi-colorpicker.phpnu�[���PK`x1\��m�uu#j^plugin-fw/templates/fields/html.phpnu�[���PK`x1\#�Www#2^plugin-fw/templates/fields/text.phpnu�[���PK`x1\��(hh-�	^plugin-fw/templates/fields/select-buttons.phpnu�[���PK`x1\���B
B
)�^plugin-fw/templates/fields/ajax-posts.phpnu�[���PK`x1\f�E

-\^plugin-fw/templates/fields/ajax-customers.phpnu�[���PK`x1\�8|���*�)^plugin-fw/templates/fields/simple-text.phpnu�[���PK`x1\�;���'�,^plugin-fw/templates/fields/password.phpnu�[���PK`x1\b��v�	�	%K1^plugin-fw/templates/fields/select.phpnu�[���PK`x1\"_x���$ ;^plugin-fw/templates/fields/title.phpnu�[���PK`x1\3x�*8>^plugin-fw/templates/fields/text-button.phpnu�[���PK`x1\)r���*�D^plugin-fw/templates/fields/colorpicker.phpnu�[���PK`x1\Ҋҟ��?�I^plugin-fw/templates/components/resources/action-button-menu.phpnu�[���PK`x1\dK���	�	0�R^plugin-fw/templates/components/action-button.phpnu�[���PK`x1\�Ckk9]^plugin-fw/templates/components/list-table-blank-state.phpnu�[���PK`x1\�1���e^plugin-fw/yit-plugin.phpnu�[���PK`x1\%H}&&(݅^plugin-fw/includes/class-yit-upgrade.phpnu�[���PK`x1\a�cb��*[�^plugin-fw/includes/class-yit-help-desk.phpnu�[���PK`x1\�e������-L�^plugin-fw/includes/class-yit-plugin-panel.phpnu�[���PK`x1\�Aü�%�%>�~_plugin-fw/includes/builders/gutenberg/class-yith-gutenberg.phpnu�[���PK`x1\�`jM�7�7E��_plugin-fw/includes/builders/elementor/class-yith-elementor-widget.phpnu�[���PK`x1\��r>��_plugin-fw/includes/builders/elementor/class-yith-elementor.phpnu�[���PK`x1\�#7���1�_plugin-fw/includes/privacy/class-yith-privacy.phpnu�[���PK`x1\��-�kkAU�_plugin-fw/includes/privacy/class-yith-privacy-plugin-abstract.phpnu�[���PK`x1\L''��C�C(1�_plugin-fw/includes/class-yit-metabox.phpnu�[���PK`x1\G�|�2�21�A`plugin-fw/includes/class-yith-post-type-admin.phpnu�[���PK`x1\�,ãgg0�t`plugin-fw/includes/class-yit-plugin-subpanel.phpnu�[���PK`x1\b��1�1*��`plugin-fw/includes/class-yit-gradients.phpnu�[���PK`x1\�b��d�d/ȼ`plugin-fw/includes/class-yith-system-status.phpnu�[���PK`x1\�Ut�**&�!aplugin-fw/includes/class-yit-video.phpnu�[���PK`x1\eS	�.`5aplugin-fw/includes/class-yit-theme-licence.phpnu�[���PK`x1\H+UЬ�.�<aplugin-fw/includes/class-yit-plugin-common.phpnu�[���PK`x1\���!�!'ؼaplugin-fw/includes/class-yit-assets.phpnu�[���PK`x1\�$ˎj�j9�aplugin-fw/includes/class-yit-plugin-panel-woocommerce.phpnu�[���PK`x1\ ��/�/)Jbplugin-fw/includes/class-yit-pointers.phpnu�[���PK`x1\Ws�
��.6zbplugin-fw/includes/class-yit-cpt-unlimited.phpnu�[���PK`x1\�qt$��%!bplugin-fw/includes/class-yit-ajax.phpnu�[���PK`x1\��h�"	"	/i�bplugin-fw/includes/class-yit-plugin-licence.phpnu�[���PK`x1\l��%ZZ'�bplugin-fw/includes/class-yith-debug.phpnu�[���PK`x1\��pp+��bplugin-fw/includes/class-yith-dashboard.phpnu�[���PK`x1\'"��ˊˊ&f�bplugin-fw/includes/class-yit-icons.phpnu�[���PK`x1\�E_́!�!	�OcREADME.mdnu�[���PKkk�Aqc

Youez - 2016 - github.com/yon3zu
LinuXploit